summaryrefslogtreecommitdiffstats
path: root/src/ogRest.py
diff options
context:
space:
mode:
authorOpenGnSys Support Team <soporte-og@soleta.eu>2020-02-26 17:57:58 +0100
committerAlvaro Neira Ayuso <aneira@soleta.eu>2020-02-26 17:58:15 +0100
commita85c113ee7aeaf7348de83fe3aa4dcd9d525a8bf (patch)
treecb47863acc07f6ace6dc562ffc37d3557af743c3 /src/ogRest.py
parent8e81b8091ebabd7b98e443432d3a7f5044ed2538 (diff)
Rename operation to method
As defined by the HTTP standard.
Diffstat (limited to 'src/ogRest.py')
-rw-r--r--src/ogRest.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ogRest.py b/src/ogRest.py
index f6b8ca4..c68eb0e 100644
--- a/src/ogRest.py
+++ b/src/ogRest.py
@@ -236,8 +236,8 @@ class ogRest():
self.terminated = False
self.state = ThreadState.IDLE
- def processOperation(self, request, client):
- op = request.getRequestOP()
+ def process_request(self, request, client):
+ method = request.get_method()
URI = request.getURI()
if (not "stop" in URI and
@@ -251,7 +251,7 @@ class ogRest():
else:
self.state = ThreadState.BUSY
- if ("GET" in op):
+ if ("GET" in method):
if "hardware" in URI:
self.process_hardware(client)
elif ("run/schedule" in URI):
@@ -261,7 +261,7 @@ class ogRest():
else:
response = restResponse(ogResponses.BAD_REQUEST)
client.send(response.get())
- elif ("POST" in op):
+ elif ("POST" in method):
if ("poweroff" in URI):
self.process_poweroff(client)
elif "probe" in URI: