[docs]classTuoniFile:""" A class that provides data and functionality for a stored files. Attributes: fileId (GUID): The unique identifier (GUID) for the file. originalFileName (str): The original filename. size (int): Size of the file. filePaths (list): List of filepaths downloadHref (str): A download path. """def__init__(self,conf,c2):""" Constructor for the alias class. Args: conf (dict): Data from the server. c2 (TuoniC2): The related server object that manages communication. """self._load_conf(conf)self.c2=c2def_load_conf(self,conf):self.fileId=conf["fileId"]self.originalFileName=conf["originalFileName"]self.size=conf["size"]self.filePaths=conf["filePaths"]self.downloadHref=conf["downloadHref"]
[docs]defreload(self):""" Reload the file data from the C2 server. """ifself.fileIdisNone:raiseExceptionTuoniDeleted("")data=self.c2.request_get("/api/v1/file/%s"%self.fileId)self._load_conf(data)
[docs]defdelete(self):""" Delete the file. """ifself.fileIdisNone:raiseExceptionTuoniDeleted("")data=self.c2.request_delete("/api/v1/file/%s"%self.fileId)self._load_conf(data)