diff options
Diffstat (limited to 'src/ogRest.py')
-rw-r--r-- | src/ogRest.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/ogRest.py b/src/ogRest.py index 4a734f7..fc46e8d 100644 --- a/src/ogRest.py +++ b/src/ogRest.py @@ -228,6 +228,19 @@ class ogThread(): client.send(response.get()) ogRest.state = ThreadState.IDLE + def cache_fetch(client, request, ogRest): + try: + out = ogRest.operations.cache_fetch(request, ogRest) + except Exception as e: + ogRest.send_internal_server_error(client, exc=e) + return + + json_body = jsonBody(out) + + response = restResponse(ogResponses.OK, json_body, seq=client.seq) + client.send(response.get()) + ogRest.state = ThreadState.IDLE + def refresh(client, ogRest): try: out = ogRest.operations.refresh(ogRest) @@ -343,6 +356,8 @@ class ogRest(): self.process_imagecreate(client, request) elif ("cache/delete" in URI): self.process_cache_delete(client, request) + elif ("cache/fetch" in URI): + self.process_cache_fetch(client, request) else: logging.warn('Unsupported request: %s', URI[:ogRest.LOG_LENGTH]) @@ -448,5 +463,8 @@ class ogRest(): def process_cache_delete(self, client, request): threading.Thread(target=ogThread.cache_delete, args=(client, request, self,)).start() + def process_cache_fetch(self, client, request): + threading.Thread(target=ogThread.cache_fetch, args=(client, request, self,)).start() + def process_refresh(self, client): threading.Thread(target=ogThread.refresh, args=(client, self,)).start() |