From fe40f9c5d66916cad4cee8d5b2d9e172fc1c0477 Mon Sep 17 00:00:00 2001 From: Alejandro Sirgo Rica Date: Thu, 8 Aug 2024 10:26:06 +0200 Subject: src: add POST cache/fetch method Add API REST method to fetch an image. Consolidate image fetch loging for cache/fetch and image/restore. Resquest payload structure: { 'image': 'linux.img' 'type': 'TIPTORRENT' 'repository': '12.141.10.2' } The client will try to fetch'image' from 'repository' into cache. Resquest response structure: { 'cache': [ {'name': 'windows.img', 'size': 2432370213, checksum: '5d4dcc677bc19f40a647d0002f4ade90'}, {'name': 'linux.img', 'size': 243234534213, checksum: '3eb22f888f88a55ad954f55644e1192e'} ] } --- src/windows/ogOperations.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/windows') diff --git a/src/windows/ogOperations.py b/src/windows/ogOperations.py index d0230eb..45413ba 100644 --- a/src/windows/ogOperations.py +++ b/src/windows/ogOperations.py @@ -113,6 +113,9 @@ class OgWindowsOperations: def cache_delete(self, request, ogRest): raise NotImplementedError + def cache_fetch(self, request, ogRest): + raise NotImplementedError + def refresh(self, ogRest): return {"status": "WIN"} -- cgit v1.2.3-18-g5258