diff options
author | Alvaro Neira Ayuso <aneira@soleta.eu> | 2019-12-13 12:56:11 +0100 |
---|---|---|
committer | Alvaro Neira Ayuso <alvaroneay@gmail.com> | 2020-01-19 19:50:44 +0100 |
commit | 694bc492a2cb42179d6341be8d7ad4098a2ac9ce (patch) | |
tree | 5dc08fcf85adc17400186e4141b9d95e15b23cfa /src/ogClient.py | |
parent | 7548870a923db820380d352f65ff2e05de2ef65d (diff) |
Add ogRest class to generate API Rest Responses
This class now, allow us to generate API Rest responses. In the future, the idea
is to complete this class with get and post messages if it's needed.
Diffstat (limited to 'src/ogClient.py')
-rw-r--r-- | src/ogClient.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/ogClient.py b/src/ogClient.py index 4fbdfab..c1a911d 100644 --- a/src/ogClient.py +++ b/src/ogClient.py @@ -12,6 +12,7 @@ from enum import Enum class State(Enum):
CONNECTING = 0
RECEIVING = 1
+ FORCE_DISCONNECTED = 2
class ogClient:
def __init__(self, ip, port):
@@ -84,10 +85,8 @@ class ogClient: if self.trailer and len(self.data) >= self.content_len:
httpparser.parser(self.data)
- if not ogprocess.processOperation(httpparser.getRequestOP(), httpparser.getURI()):
- self.sock.send(bytes('HTTP/1.0 400 Bad request\r\n\r\n', 'utf-8'))
- else:
- self.sock.send(bytes('HTTP/1.0 200 OK\r\n\r\n', 'utf-8'))
+ if not ogprocess.processOperation(httpparser.getRequestOP(), httpparser.getURI(), self.sock):
+ self.state = State.FORCE_DISCONNECTED
# Cleanup state information from request
self.data = ""
@@ -102,6 +101,8 @@ class ogClient: if state == State.CONNECTING:
readset = [ sock ]
writeset = [ sock ]
+ elif state == State.FORCE_DISCONNECTED:
+ return 0
else:
readset = [ sock ]
writeset = [ ]
|