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/restRequest.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/restRequest.py') diff --git a/src/restRequest.py b/src/restRequest.py index fdfe633..3098c1a 100644 --- a/src/restRequest.py +++ b/src/restRequest.py @@ -79,6 +79,9 @@ class restRequest: if "images" in json_param: self.images = json_param["images"] + if "image" in json_param: + self.images = json_param["image"] + if "disk" in json_param: self.disk = json_param["disk"] -- cgit v1.2.3-18-g5258