@plutonhq/core-backend 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (840) hide show
  1. package/CHANGELOG.md +3 -0
  2. package/LICENSE +202 -0
  3. package/README.md +1 -0
  4. package/dist/controllers/BackupController.d.ts +14 -0
  5. package/dist/controllers/BackupController.d.ts.map +1 -0
  6. package/dist/controllers/BackupController.js +1 -0
  7. package/dist/controllers/BackupController.js.map +1 -0
  8. package/dist/controllers/DeviceController.d.ts +14 -0
  9. package/dist/controllers/DeviceController.d.ts.map +1 -0
  10. package/dist/controllers/DeviceController.js +1 -0
  11. package/dist/controllers/DeviceController.js.map +1 -0
  12. package/dist/controllers/PlanController.d.ts +20 -0
  13. package/dist/controllers/PlanController.d.ts.map +1 -0
  14. package/dist/controllers/PlanController.js +1 -0
  15. package/dist/controllers/PlanController.js.map +1 -0
  16. package/dist/controllers/RestoreController.d.ts +15 -0
  17. package/dist/controllers/RestoreController.d.ts.map +1 -0
  18. package/dist/controllers/RestoreController.js +1 -0
  19. package/dist/controllers/RestoreController.js.map +1 -0
  20. package/dist/controllers/SettingsController.d.ts +13 -0
  21. package/dist/controllers/SettingsController.d.ts.map +1 -0
  22. package/dist/controllers/SettingsController.js +1 -0
  23. package/dist/controllers/SettingsController.js.map +1 -0
  24. package/dist/controllers/StorageController.d.ts +15 -0
  25. package/dist/controllers/StorageController.d.ts.map +1 -0
  26. package/dist/controllers/StorageController.js +1 -0
  27. package/dist/controllers/StorageController.js.map +1 -0
  28. package/dist/controllers/UserController.d.ts +7 -0
  29. package/dist/controllers/UserController.d.ts.map +1 -0
  30. package/dist/controllers/UserController.js +1 -0
  31. package/dist/controllers/UserController.js.map +1 -0
  32. package/dist/createApp.d.ts +5 -0
  33. package/dist/createApp.d.ts.map +1 -0
  34. package/dist/createApp.js +1 -0
  35. package/dist/createApp.js.map +1 -0
  36. package/dist/db/index.d.ts +1758 -0
  37. package/dist/db/index.d.ts.map +1 -0
  38. package/dist/db/index.js +1 -0
  39. package/dist/db/index.js.map +1 -0
  40. package/dist/db/migrate.d.ts +2 -0
  41. package/dist/db/migrate.d.ts.map +1 -0
  42. package/dist/db/migrate.js +1 -0
  43. package/dist/db/migrate.js.map +1 -0
  44. package/dist/db/schema/backups.d.ts +1702 -0
  45. package/dist/db/schema/backups.d.ts.map +1 -0
  46. package/dist/db/schema/backups.js +1 -0
  47. package/dist/db/schema/backups.js.map +1 -0
  48. package/dist/db/schema/devices.d.ts +1424 -0
  49. package/dist/db/schema/devices.d.ts.map +1 -0
  50. package/dist/db/schema/devices.js +1 -0
  51. package/dist/db/schema/devices.js.map +1 -0
  52. package/dist/db/schema/plans.d.ts +1280 -0
  53. package/dist/db/schema/plans.d.ts.map +1 -0
  54. package/dist/db/schema/plans.js +1 -0
  55. package/dist/db/schema/plans.js.map +1 -0
  56. package/dist/db/schema/restores.d.ts +1354 -0
  57. package/dist/db/schema/restores.d.ts.map +1 -0
  58. package/dist/db/schema/restores.js +1 -0
  59. package/dist/db/schema/restores.js.map +1 -0
  60. package/dist/db/schema/settings.d.ts +373 -0
  61. package/dist/db/schema/settings.d.ts.map +1 -0
  62. package/dist/db/schema/settings.js +1 -0
  63. package/dist/db/schema/settings.js.map +1 -0
  64. package/dist/db/schema/storages.d.ts +763 -0
  65. package/dist/db/schema/storages.d.ts.map +1 -0
  66. package/dist/db/schema/storages.js +1 -0
  67. package/dist/db/schema/storages.js.map +1 -0
  68. package/dist/index.d.ts +6 -0
  69. package/dist/index.d.ts.map +1 -0
  70. package/dist/index.js +1 -0
  71. package/dist/index.js.map +1 -0
  72. package/dist/jobs/JobProcessor.d.ts +64 -0
  73. package/dist/jobs/JobProcessor.d.ts.map +1 -0
  74. package/dist/jobs/JobProcessor.js +1 -0
  75. package/dist/jobs/JobProcessor.js.map +1 -0
  76. package/dist/jobs/JobQueue.d.ts +62 -0
  77. package/dist/jobs/JobQueue.d.ts.map +1 -0
  78. package/dist/jobs/JobQueue.js +1 -0
  79. package/dist/jobs/JobQueue.js.map +1 -0
  80. package/dist/jobs/SystemTaskManager.d.ts +26 -0
  81. package/dist/jobs/SystemTaskManager.d.ts.map +1 -0
  82. package/dist/jobs/SystemTaskManager.js +1 -0
  83. package/dist/jobs/SystemTaskManager.js.map +1 -0
  84. package/dist/jobs/index.d.ts +1 -0
  85. package/dist/jobs/index.d.ts.map +1 -0
  86. package/dist/jobs/index.js +1 -0
  87. package/dist/jobs/index.js.map +1 -0
  88. package/dist/jobs/systemJobs.d.ts +3 -0
  89. package/dist/jobs/systemJobs.d.ts.map +1 -0
  90. package/dist/jobs/systemJobs.js +1 -0
  91. package/dist/jobs/systemJobs.js.map +1 -0
  92. package/dist/jobs/tasks/AbstractTask.d.ts +6 -0
  93. package/dist/jobs/tasks/AbstractTask.d.ts.map +1 -0
  94. package/dist/jobs/tasks/AbstractTask.js +1 -0
  95. package/dist/jobs/tasks/AbstractTask.js.map +1 -0
  96. package/dist/jobs/tasks/BackupTask.d.ts +10 -0
  97. package/dist/jobs/tasks/BackupTask.d.ts.map +1 -0
  98. package/dist/jobs/tasks/BackupTask.js +1 -0
  99. package/dist/jobs/tasks/BackupTask.js.map +1 -0
  100. package/dist/jobs/tasks/CleanDownloadsTask.d.ts +7 -0
  101. package/dist/jobs/tasks/CleanDownloadsTask.d.ts.map +1 -0
  102. package/dist/jobs/tasks/CleanDownloadsTask.js +1 -0
  103. package/dist/jobs/tasks/CleanDownloadsTask.js.map +1 -0
  104. package/dist/jobs/tasks/PruneDatabaseTask.d.ts +1 -0
  105. package/dist/jobs/tasks/PruneDatabaseTask.d.ts.map +1 -0
  106. package/dist/jobs/tasks/PruneDatabaseTask.js +1 -0
  107. package/dist/jobs/tasks/PruneDatabaseTask.js.map +1 -0
  108. package/dist/jobs/tasks/RestoreTask.d.ts +10 -0
  109. package/dist/jobs/tasks/RestoreTask.d.ts.map +1 -0
  110. package/dist/jobs/tasks/RestoreTask.js +1 -0
  111. package/dist/jobs/tasks/RestoreTask.js.map +1 -0
  112. package/dist/jobs/tasks/UpdateDevicesTask.d.ts +1 -0
  113. package/dist/jobs/tasks/UpdateDevicesTask.d.ts.map +1 -0
  114. package/dist/jobs/tasks/UpdateDevicesTask.js +1 -0
  115. package/dist/jobs/tasks/UpdateDevicesTask.js.map +1 -0
  116. package/dist/managers/BaseBackupManager.d.ts +93 -0
  117. package/dist/managers/BaseBackupManager.d.ts.map +1 -0
  118. package/dist/managers/BaseBackupManager.js +1 -0
  119. package/dist/managers/BaseBackupManager.js.map +1 -0
  120. package/dist/managers/BaseRestoreManager.d.ts +24 -0
  121. package/dist/managers/BaseRestoreManager.d.ts.map +1 -0
  122. package/dist/managers/BaseRestoreManager.js +1 -0
  123. package/dist/managers/BaseRestoreManager.js.map +1 -0
  124. package/dist/managers/BaseSnapshotManager.d.ts +36 -0
  125. package/dist/managers/BaseSnapshotManager.d.ts.map +1 -0
  126. package/dist/managers/BaseSnapshotManager.js +1 -0
  127. package/dist/managers/BaseSnapshotManager.js.map +1 -0
  128. package/dist/managers/BaseStorageManager.d.ts +16 -0
  129. package/dist/managers/BaseStorageManager.d.ts.map +1 -0
  130. package/dist/managers/BaseStorageManager.js +1 -0
  131. package/dist/managers/BaseStorageManager.js.map +1 -0
  132. package/dist/managers/BaseSystemManager.d.ts +86 -0
  133. package/dist/managers/BaseSystemManager.d.ts.map +1 -0
  134. package/dist/managers/BaseSystemManager.js +1 -0
  135. package/dist/managers/BaseSystemManager.js.map +1 -0
  136. package/dist/managers/CronManager.d.ts +35 -0
  137. package/dist/managers/CronManager.d.ts.map +1 -0
  138. package/dist/managers/CronManager.js +1 -0
  139. package/dist/managers/CronManager.js.map +1 -0
  140. package/dist/managers/ProcessManager.d.ts +9 -0
  141. package/dist/managers/ProcessManager.d.ts.map +1 -0
  142. package/dist/managers/ProcessManager.js +1 -0
  143. package/dist/managers/ProcessManager.js.map +1 -0
  144. package/dist/managers/ProgressManager.d.ts +85 -0
  145. package/dist/managers/ProgressManager.d.ts.map +1 -0
  146. package/dist/managers/ProgressManager.js +1 -0
  147. package/dist/managers/ProgressManager.js.map +1 -0
  148. package/dist/managers/RestoreStatsManager.d.ts +9 -0
  149. package/dist/managers/RestoreStatsManager.d.ts.map +1 -0
  150. package/dist/managers/RestoreStatsManager.js +1 -0
  151. package/dist/managers/RestoreStatsManager.js.map +1 -0
  152. package/dist/managers/SecurityKeyManager.d.ts +16 -0
  153. package/dist/managers/SecurityKeyManager.d.ts.map +1 -0
  154. package/dist/managers/SecurityKeyManager.js +1 -0
  155. package/dist/managers/SecurityKeyManager.js.map +1 -0
  156. package/dist/managers/handlers/BackupHandler.d.ts +124 -0
  157. package/dist/managers/handlers/BackupHandler.d.ts.map +1 -0
  158. package/dist/managers/handlers/BackupHandler.js +1 -0
  159. package/dist/managers/handlers/BackupHandler.js.map +1 -0
  160. package/dist/managers/handlers/DownloadHandler.d.ts +13 -0
  161. package/dist/managers/handlers/DownloadHandler.d.ts.map +1 -0
  162. package/dist/managers/handlers/DownloadHandler.js +1 -0
  163. package/dist/managers/handlers/DownloadHandler.js.map +1 -0
  164. package/dist/managers/handlers/PruneHandler.d.ts +11 -0
  165. package/dist/managers/handlers/PruneHandler.d.ts.map +1 -0
  166. package/dist/managers/handlers/PruneHandler.js +1 -0
  167. package/dist/managers/handlers/PruneHandler.js.map +1 -0
  168. package/dist/managers/handlers/RestoreHandler.d.ts +67 -0
  169. package/dist/managers/handlers/RestoreHandler.d.ts.map +1 -0
  170. package/dist/managers/handlers/RestoreHandler.js +1 -0
  171. package/dist/managers/handlers/RestoreHandler.js.map +1 -0
  172. package/dist/managers/index.d.ts +3 -0
  173. package/dist/managers/index.d.ts.map +1 -0
  174. package/dist/managers/index.js +1 -0
  175. package/dist/managers/index.js.map +1 -0
  176. package/dist/middlewares/authMiddleware.d.ts +4 -0
  177. package/dist/middlewares/authMiddleware.d.ts.map +1 -0
  178. package/dist/middlewares/authMiddleware.js +1 -0
  179. package/dist/middlewares/authMiddleware.js.map +1 -0
  180. package/dist/middlewares/errorHandlerMiddleware.d.ts +5 -0
  181. package/dist/middlewares/errorHandlerMiddleware.d.ts.map +1 -0
  182. package/dist/middlewares/errorHandlerMiddleware.js +1 -0
  183. package/dist/middlewares/errorHandlerMiddleware.js.map +1 -0
  184. package/dist/middlewares/versionMiddleware.d.ts +6 -0
  185. package/dist/middlewares/versionMiddleware.d.ts.map +1 -0
  186. package/dist/middlewares/versionMiddleware.js +1 -0
  187. package/dist/middlewares/versionMiddleware.js.map +1 -0
  188. package/dist/notifications/BackupNotification.d.ts +24 -0
  189. package/dist/notifications/BackupNotification.d.ts.map +1 -0
  190. package/dist/notifications/BackupNotification.js +1 -0
  191. package/dist/notifications/BackupNotification.js.map +1 -0
  192. package/dist/notifications/BaseNotification.d.ts +20 -0
  193. package/dist/notifications/BaseNotification.d.ts.map +1 -0
  194. package/dist/notifications/BaseNotification.js +1 -0
  195. package/dist/notifications/BaseNotification.js.map +1 -0
  196. package/dist/notifications/NotificationChannel.d.ts +8 -0
  197. package/dist/notifications/NotificationChannel.d.ts.map +1 -0
  198. package/dist/notifications/NotificationChannel.js +1 -0
  199. package/dist/notifications/NotificationChannel.js.map +1 -0
  200. package/dist/notifications/NotificationManager.d.ts +8 -0
  201. package/dist/notifications/NotificationManager.d.ts.map +1 -0
  202. package/dist/notifications/NotificationManager.js +1 -0
  203. package/dist/notifications/NotificationManager.js.map +1 -0
  204. package/dist/notifications/channels/NotificationChannelResolver.d.ts +10 -0
  205. package/dist/notifications/channels/NotificationChannelResolver.d.ts.map +1 -0
  206. package/dist/notifications/channels/NotificationChannelResolver.js +1 -0
  207. package/dist/notifications/channels/NotificationChannelResolver.js.map +1 -0
  208. package/dist/notifications/channels/SMTPChannel.d.ts +14 -0
  209. package/dist/notifications/channels/SMTPChannel.d.ts.map +1 -0
  210. package/dist/notifications/channels/SMTPChannel.js +1 -0
  211. package/dist/notifications/channels/SMTPChannel.js.map +1 -0
  212. package/dist/notifications/templates/email/backup/BackupFailedNotification.d.ts +22 -0
  213. package/dist/notifications/templates/email/backup/BackupFailedNotification.d.ts.map +1 -0
  214. package/dist/notifications/templates/email/backup/BackupFailedNotification.js +1 -0
  215. package/dist/notifications/templates/email/backup/BackupFailedNotification.js.map +1 -0
  216. package/dist/notifications/templates/email/backup/BackupStartedNotification.d.ts +20 -0
  217. package/dist/notifications/templates/email/backup/BackupStartedNotification.d.ts.map +1 -0
  218. package/dist/notifications/templates/email/backup/BackupStartedNotification.js +1 -0
  219. package/dist/notifications/templates/email/backup/BackupStartedNotification.js.map +1 -0
  220. package/dist/notifications/templates/email/backup/BackupSuccessNotification.d.ts +21 -0
  221. package/dist/notifications/templates/email/backup/BackupSuccessNotification.d.ts.map +1 -0
  222. package/dist/notifications/templates/email/backup/BackupSuccessNotification.js +1 -0
  223. package/dist/notifications/templates/email/backup/BackupSuccessNotification.js.map +1 -0
  224. package/dist/notifications/templates/email/test-email/TestEmailNotification.d.ts +14 -0
  225. package/dist/notifications/templates/email/test-email/TestEmailNotification.d.ts.map +1 -0
  226. package/dist/notifications/templates/email/test-email/TestEmailNotification.js +1 -0
  227. package/dist/notifications/templates/email/test-email/TestEmailNotification.js.map +1 -0
  228. package/dist/routes/backups.d.ts +4 -0
  229. package/dist/routes/backups.d.ts.map +1 -0
  230. package/dist/routes/backups.js +1 -0
  231. package/dist/routes/backups.js.map +1 -0
  232. package/dist/routes/devices.d.ts +4 -0
  233. package/dist/routes/devices.d.ts.map +1 -0
  234. package/dist/routes/devices.js +1 -0
  235. package/dist/routes/devices.js.map +1 -0
  236. package/dist/routes/health.d.ts +3 -0
  237. package/dist/routes/health.d.ts.map +1 -0
  238. package/dist/routes/health.js +1 -0
  239. package/dist/routes/health.js.map +1 -0
  240. package/dist/routes/index.d.ts +9 -0
  241. package/dist/routes/index.d.ts.map +1 -0
  242. package/dist/routes/index.js +1 -0
  243. package/dist/routes/index.js.map +1 -0
  244. package/dist/routes/plans.d.ts +4 -0
  245. package/dist/routes/plans.d.ts.map +1 -0
  246. package/dist/routes/plans.js +1 -0
  247. package/dist/routes/plans.js.map +1 -0
  248. package/dist/routes/restores.d.ts +4 -0
  249. package/dist/routes/restores.d.ts.map +1 -0
  250. package/dist/routes/restores.js +1 -0
  251. package/dist/routes/restores.js.map +1 -0
  252. package/dist/routes/settings.d.ts +4 -0
  253. package/dist/routes/settings.d.ts.map +1 -0
  254. package/dist/routes/settings.js +1 -0
  255. package/dist/routes/settings.js.map +1 -0
  256. package/dist/routes/storages.d.ts +4 -0
  257. package/dist/routes/storages.d.ts.map +1 -0
  258. package/dist/routes/storages.js +1 -0
  259. package/dist/routes/storages.js.map +1 -0
  260. package/dist/routes/users.d.ts +4 -0
  261. package/dist/routes/users.d.ts.map +1 -0
  262. package/dist/routes/users.js +1 -0
  263. package/dist/routes/users.js.map +1 -0
  264. package/dist/services/BackupServices.d.ts +40 -0
  265. package/dist/services/BackupServices.d.ts.map +1 -0
  266. package/dist/services/BackupServices.js +1 -0
  267. package/dist/services/BackupServices.js.map +1 -0
  268. package/dist/services/ConfigService.d.ts +40 -0
  269. package/dist/services/ConfigService.d.ts.map +1 -0
  270. package/dist/services/ConfigService.js +1 -0
  271. package/dist/services/ConfigService.js.map +1 -0
  272. package/dist/services/DeviceService.d.ts +47 -0
  273. package/dist/services/DeviceService.d.ts.map +1 -0
  274. package/dist/services/DeviceService.js +1 -0
  275. package/dist/services/DeviceService.js.map +1 -0
  276. package/dist/services/PlanService.d.ts +71 -0
  277. package/dist/services/PlanService.d.ts.map +1 -0
  278. package/dist/services/PlanService.js +1 -0
  279. package/dist/services/PlanService.js.map +1 -0
  280. package/dist/services/RestoreService.d.ts +74 -0
  281. package/dist/services/RestoreService.d.ts.map +1 -0
  282. package/dist/services/RestoreService.js +1 -0
  283. package/dist/services/RestoreService.js.map +1 -0
  284. package/dist/services/SettingsService.d.ts +20 -0
  285. package/dist/services/SettingsService.d.ts.map +1 -0
  286. package/dist/services/SettingsService.js +1 -0
  287. package/dist/services/SettingsService.js.map +1 -0
  288. package/dist/services/StorageService.d.ts +34 -0
  289. package/dist/services/StorageService.d.ts.map +1 -0
  290. package/dist/services/StorageService.js +1 -0
  291. package/dist/services/StorageService.js.map +1 -0
  292. package/dist/services/events/BackupEventService.d.ts +32 -0
  293. package/dist/services/events/BackupEventService.d.ts.map +1 -0
  294. package/dist/services/events/BackupEventService.js +1 -0
  295. package/dist/services/events/BackupEventService.js.map +1 -0
  296. package/dist/services/events/RestoreEventService.d.ts +17 -0
  297. package/dist/services/events/RestoreEventService.d.ts.map +1 -0
  298. package/dist/services/events/RestoreEventService.js +1 -0
  299. package/dist/services/events/RestoreEventService.js.map +1 -0
  300. package/dist/services/listeners/BackupEventListener.d.ts +41 -0
  301. package/dist/services/listeners/BackupEventListener.d.ts.map +1 -0
  302. package/dist/services/listeners/BackupEventListener.js +1 -0
  303. package/dist/services/listeners/BackupEventListener.js.map +1 -0
  304. package/dist/services/listeners/DownloadEventListener.d.ts +12 -0
  305. package/dist/services/listeners/DownloadEventListener.d.ts.map +1 -0
  306. package/dist/services/listeners/DownloadEventListener.js +1 -0
  307. package/dist/services/listeners/DownloadEventListener.js.map +1 -0
  308. package/dist/services/listeners/RestoreEventListener.d.ts +19 -0
  309. package/dist/services/listeners/RestoreEventListener.d.ts.map +1 -0
  310. package/dist/services/listeners/RestoreEventListener.js +1 -0
  311. package/dist/services/listeners/RestoreEventListener.js.map +1 -0
  312. package/dist/stores/BackupStore.d.ts +16 -0
  313. package/dist/stores/BackupStore.d.ts.map +1 -0
  314. package/dist/stores/BackupStore.js +1 -0
  315. package/dist/stores/BackupStore.js.map +1 -0
  316. package/dist/stores/DeviceStore.d.ts +16 -0
  317. package/dist/stores/DeviceStore.d.ts.map +1 -0
  318. package/dist/stores/DeviceStore.js +1 -0
  319. package/dist/stores/DeviceStore.js.map +1 -0
  320. package/dist/stores/PlanStore.d.ts +42 -0
  321. package/dist/stores/PlanStore.d.ts.map +1 -0
  322. package/dist/stores/PlanStore.js +1 -0
  323. package/dist/stores/PlanStore.js.map +1 -0
  324. package/dist/stores/RestoreStore.d.ts +16 -0
  325. package/dist/stores/RestoreStore.d.ts.map +1 -0
  326. package/dist/stores/RestoreStore.js +1 -0
  327. package/dist/stores/RestoreStore.js.map +1 -0
  328. package/dist/stores/SettingsStore.d.ts +85 -0
  329. package/dist/stores/SettingsStore.d.ts.map +1 -0
  330. package/dist/stores/SettingsStore.js +1 -0
  331. package/dist/stores/SettingsStore.js.map +1 -0
  332. package/dist/stores/StorageStore.d.ts +16 -0
  333. package/dist/stores/StorageStore.d.ts.map +1 -0
  334. package/dist/stores/StorageStore.js +1 -0
  335. package/dist/stores/StorageStore.js.map +1 -0
  336. package/dist/strategies/backup/BackupStrategy.d.ts +55 -0
  337. package/dist/strategies/backup/BackupStrategy.d.ts.map +1 -0
  338. package/dist/strategies/backup/BackupStrategy.js +1 -0
  339. package/dist/strategies/backup/BackupStrategy.js.map +1 -0
  340. package/dist/strategies/backup/LocalStrategy.d.ts +57 -0
  341. package/dist/strategies/backup/LocalStrategy.d.ts.map +1 -0
  342. package/dist/strategies/backup/LocalStrategy.js +1 -0
  343. package/dist/strategies/backup/LocalStrategy.js.map +1 -0
  344. package/dist/strategies/backup/RemoteStrategy.d.ts +60 -0
  345. package/dist/strategies/backup/RemoteStrategy.d.ts.map +1 -0
  346. package/dist/strategies/backup/RemoteStrategy.js +1 -0
  347. package/dist/strategies/backup/RemoteStrategy.js.map +1 -0
  348. package/dist/strategies/backup/index.d.ts +4 -0
  349. package/dist/strategies/backup/index.d.ts.map +1 -0
  350. package/dist/strategies/backup/index.js +1 -0
  351. package/dist/strategies/backup/index.js.map +1 -0
  352. package/dist/strategies/restore/LocalStrategy.d.ts +27 -0
  353. package/dist/strategies/restore/LocalStrategy.d.ts.map +1 -0
  354. package/dist/strategies/restore/LocalStrategy.js +1 -0
  355. package/dist/strategies/restore/LocalStrategy.js.map +1 -0
  356. package/dist/strategies/restore/RemoteStrategy.d.ts +37 -0
  357. package/dist/strategies/restore/RemoteStrategy.d.ts.map +1 -0
  358. package/dist/strategies/restore/RemoteStrategy.js +1 -0
  359. package/dist/strategies/restore/RemoteStrategy.js.map +1 -0
  360. package/dist/strategies/restore/RestoreStrategy.d.ts +31 -0
  361. package/dist/strategies/restore/RestoreStrategy.d.ts.map +1 -0
  362. package/dist/strategies/restore/RestoreStrategy.js +1 -0
  363. package/dist/strategies/restore/RestoreStrategy.js.map +1 -0
  364. package/dist/strategies/restore/index.d.ts +4 -0
  365. package/dist/strategies/restore/index.d.ts.map +1 -0
  366. package/dist/strategies/restore/index.js +1 -0
  367. package/dist/strategies/restore/index.js.map +1 -0
  368. package/dist/strategies/snapshot/LocalStrategy.d.ts +35 -0
  369. package/dist/strategies/snapshot/LocalStrategy.d.ts.map +1 -0
  370. package/dist/strategies/snapshot/LocalStrategy.js +1 -0
  371. package/dist/strategies/snapshot/LocalStrategy.js.map +1 -0
  372. package/dist/strategies/snapshot/RemoteStrategy.d.ts +44 -0
  373. package/dist/strategies/snapshot/RemoteStrategy.d.ts.map +1 -0
  374. package/dist/strategies/snapshot/RemoteStrategy.js +1 -0
  375. package/dist/strategies/snapshot/RemoteStrategy.js.map +1 -0
  376. package/dist/strategies/snapshot/SnapshotStrategy.d.ts +47 -0
  377. package/dist/strategies/snapshot/SnapshotStrategy.d.ts.map +1 -0
  378. package/dist/strategies/snapshot/SnapshotStrategy.js +1 -0
  379. package/dist/strategies/snapshot/SnapshotStrategy.js.map +1 -0
  380. package/dist/strategies/snapshot/index.d.ts +4 -0
  381. package/dist/strategies/snapshot/index.d.ts.map +1 -0
  382. package/dist/strategies/snapshot/index.js +1 -0
  383. package/dist/strategies/snapshot/index.js.map +1 -0
  384. package/dist/strategies/system/LocalStrategy.d.ts +63 -0
  385. package/dist/strategies/system/LocalStrategy.d.ts.map +1 -0
  386. package/dist/strategies/system/LocalStrategy.js +1 -0
  387. package/dist/strategies/system/LocalStrategy.js.map +1 -0
  388. package/dist/strategies/system/RemoteStrategy.d.ts +67 -0
  389. package/dist/strategies/system/RemoteStrategy.d.ts.map +1 -0
  390. package/dist/strategies/system/RemoteStrategy.js +1 -0
  391. package/dist/strategies/system/RemoteStrategy.js.map +1 -0
  392. package/dist/strategies/system/SystemStrategy.d.ts +69 -0
  393. package/dist/strategies/system/SystemStrategy.d.ts.map +1 -0
  394. package/dist/strategies/system/SystemStrategy.js +1 -0
  395. package/dist/strategies/system/SystemStrategy.js.map +1 -0
  396. package/dist/strategies/system/index.d.ts +4 -0
  397. package/dist/strategies/system/index.d.ts.map +1 -0
  398. package/dist/strategies/system/index.js +1 -0
  399. package/dist/strategies/system/index.js.map +1 -0
  400. package/dist/types/backups.d.ts +68 -0
  401. package/dist/types/backups.d.ts.map +1 -0
  402. package/dist/types/backups.js +1 -0
  403. package/dist/types/backups.js.map +1 -0
  404. package/dist/types/devices.d.ts +205 -0
  405. package/dist/types/devices.d.ts.map +1 -0
  406. package/dist/types/devices.js +1 -0
  407. package/dist/types/devices.js.map +1 -0
  408. package/dist/types/events.d.ts +86 -0
  409. package/dist/types/events.d.ts.map +1 -0
  410. package/dist/types/events.js +1 -0
  411. package/dist/types/events.js.map +1 -0
  412. package/dist/types/global.d.ts +8 -0
  413. package/dist/types/global.d.ts.map +1 -0
  414. package/dist/types/global.js +1 -0
  415. package/dist/types/global.js.map +1 -0
  416. package/dist/types/notifications.d.ts +19 -0
  417. package/dist/types/notifications.d.ts.map +1 -0
  418. package/dist/types/notifications.js +1 -0
  419. package/dist/types/notifications.js.map +1 -0
  420. package/dist/types/plans.d.ts +219 -0
  421. package/dist/types/plans.d.ts.map +1 -0
  422. package/dist/types/plans.js +1 -0
  423. package/dist/types/plans.js.map +1 -0
  424. package/dist/types/rclone.d.ts +10 -0
  425. package/dist/types/rclone.d.ts.map +1 -0
  426. package/dist/types/rclone.js +1 -0
  427. package/dist/types/rclone.js.map +1 -0
  428. package/dist/types/restic.d.ts +63 -0
  429. package/dist/types/restic.d.ts.map +1 -0
  430. package/dist/types/restic.js +1 -0
  431. package/dist/types/restic.js.map +1 -0
  432. package/dist/types/restores.d.ts +54 -0
  433. package/dist/types/restores.d.ts.map +1 -0
  434. package/dist/types/restores.js +1 -0
  435. package/dist/types/restores.js.map +1 -0
  436. package/dist/types/settings.d.ts +87 -0
  437. package/dist/types/settings.d.ts.map +1 -0
  438. package/dist/types/settings.js +1 -0
  439. package/dist/types/settings.js.map +1 -0
  440. package/dist/types/source.d.ts +72 -0
  441. package/dist/types/source.d.ts.map +1 -0
  442. package/dist/types/source.js +1 -0
  443. package/dist/types/source.js.map +1 -0
  444. package/dist/types/strategy.d.ts +7 -0
  445. package/dist/types/strategy.d.ts.map +1 -0
  446. package/dist/types/strategy.js +1 -0
  447. package/dist/types/strategy.js.map +1 -0
  448. package/dist/utils/AppError.d.ts +37 -0
  449. package/dist/utils/AppError.d.ts.map +1 -0
  450. package/dist/utils/AppError.js +1 -0
  451. package/dist/utils/AppError.js.map +1 -0
  452. package/dist/utils/AppPaths.d.ts +36 -0
  453. package/dist/utils/AppPaths.d.ts.map +1 -0
  454. package/dist/utils/AppPaths.js +1 -0
  455. package/dist/utils/AppPaths.js.map +1 -0
  456. package/dist/utils/asyncHandler.d.ts +4 -0
  457. package/dist/utils/asyncHandler.d.ts.map +1 -0
  458. package/dist/utils/asyncHandler.js +1 -0
  459. package/dist/utils/asyncHandler.js.map +1 -0
  460. package/dist/utils/binaryPathResolver.d.ts +10 -0
  461. package/dist/utils/binaryPathResolver.d.ts.map +1 -0
  462. package/dist/utils/binaryPathResolver.js +1 -0
  463. package/dist/utils/binaryPathResolver.js.map +1 -0
  464. package/dist/utils/copyFiles.d.ts +12 -0
  465. package/dist/utils/copyFiles.d.ts.map +1 -0
  466. package/dist/utils/copyFiles.js +1 -0
  467. package/dist/utils/copyFiles.js.map +1 -0
  468. package/dist/utils/docker.d.ts +32 -0
  469. package/dist/utils/docker.d.ts.map +1 -0
  470. package/dist/utils/docker.js +1 -0
  471. package/dist/utils/docker.js.map +1 -0
  472. package/dist/utils/executeUserScript.d.ts +15 -0
  473. package/dist/utils/executeUserScript.d.ts.map +1 -0
  474. package/dist/utils/executeUserScript.js +1 -0
  475. package/dist/utils/executeUserScript.js.map +1 -0
  476. package/dist/utils/formatter.d.ts +39 -0
  477. package/dist/utils/formatter.d.ts.map +1 -0
  478. package/dist/utils/formatter.js +1 -0
  479. package/dist/utils/formatter.js.map +1 -0
  480. package/dist/utils/getBackupSourceFiles.d.ts +7 -0
  481. package/dist/utils/getBackupSourceFiles.d.ts.map +1 -0
  482. package/dist/utils/getBackupSourceFiles.js +1 -0
  483. package/dist/utils/getBackupSourceFiles.js.map +1 -0
  484. package/dist/utils/helpers.d.ts +35 -0
  485. package/dist/utils/helpers.d.ts.map +1 -0
  486. package/dist/utils/helpers.js +1 -0
  487. package/dist/utils/helpers.js.map +1 -0
  488. package/dist/utils/initSetup.d.ts +4 -0
  489. package/dist/utils/initSetup.d.ts.map +1 -0
  490. package/dist/utils/initSetup.js +1 -0
  491. package/dist/utils/initSetup.js.map +1 -0
  492. package/dist/utils/intervalToCron.d.ts +24 -0
  493. package/dist/utils/intervalToCron.d.ts.map +1 -0
  494. package/dist/utils/intervalToCron.js +1 -0
  495. package/dist/utils/intervalToCron.js.map +1 -0
  496. package/dist/utils/logger.d.ts +43 -0
  497. package/dist/utils/logger.d.ts.map +1 -0
  498. package/dist/utils/logger.js +1 -0
  499. package/dist/utils/logger.js.map +1 -0
  500. package/dist/utils/providers/_features.d.ts +648 -0
  501. package/dist/utils/providers/_features.d.ts.map +1 -0
  502. package/dist/utils/providers/_features.js +1 -0
  503. package/dist/utils/providers/_features.js.map +1 -0
  504. package/dist/utils/providers/_s3Options.d.ts +19 -0
  505. package/dist/utils/providers/_s3Options.d.ts.map +1 -0
  506. package/dist/utils/providers/_s3Options.js +1 -0
  507. package/dist/utils/providers/_s3Options.js.map +1 -0
  508. package/dist/utils/providers/arvan.d.ts +28 -0
  509. package/dist/utils/providers/arvan.d.ts.map +1 -0
  510. package/dist/utils/providers/arvan.js +1 -0
  511. package/dist/utils/providers/arvan.js.map +1 -0
  512. package/dist/utils/providers/azureblob.d.ts +30 -0
  513. package/dist/utils/providers/azureblob.d.ts.map +1 -0
  514. package/dist/utils/providers/azureblob.js +1 -0
  515. package/dist/utils/providers/azureblob.js.map +1 -0
  516. package/dist/utils/providers/azurefiles.d.ts +19 -0
  517. package/dist/utils/providers/azurefiles.d.ts.map +1 -0
  518. package/dist/utils/providers/azurefiles.js +1 -0
  519. package/dist/utils/providers/azurefiles.js.map +1 -0
  520. package/dist/utils/providers/b2.d.ts +30 -0
  521. package/dist/utils/providers/b2.d.ts.map +1 -0
  522. package/dist/utils/providers/b2.js +1 -0
  523. package/dist/utils/providers/b2.js.map +1 -0
  524. package/dist/utils/providers/boxCom.d.ts +30 -0
  525. package/dist/utils/providers/boxCom.d.ts.map +1 -0
  526. package/dist/utils/providers/boxCom.js +1 -0
  527. package/dist/utils/providers/boxCom.js.map +1 -0
  528. package/dist/utils/providers/ceph.d.ts +28 -0
  529. package/dist/utils/providers/ceph.d.ts.map +1 -0
  530. package/dist/utils/providers/ceph.js +1 -0
  531. package/dist/utils/providers/ceph.js.map +1 -0
  532. package/dist/utils/providers/dreamobjects.d.ts +44 -0
  533. package/dist/utils/providers/dreamobjects.d.ts.map +1 -0
  534. package/dist/utils/providers/dreamobjects.js +1 -0
  535. package/dist/utils/providers/dreamobjects.js.map +1 -0
  536. package/dist/utils/providers/dropbox.d.ts +39 -0
  537. package/dist/utils/providers/dropbox.d.ts.map +1 -0
  538. package/dist/utils/providers/dropbox.js +1 -0
  539. package/dist/utils/providers/dropbox.js.map +1 -0
  540. package/dist/utils/providers/fichier.d.ts +30 -0
  541. package/dist/utils/providers/fichier.d.ts.map +1 -0
  542. package/dist/utils/providers/fichier.js +1 -0
  543. package/dist/utils/providers/fichier.js.map +1 -0
  544. package/dist/utils/providers/filesCom.d.ts +21 -0
  545. package/dist/utils/providers/filesCom.d.ts.map +1 -0
  546. package/dist/utils/providers/filesCom.js +1 -0
  547. package/dist/utils/providers/filesCom.js.map +1 -0
  548. package/dist/utils/providers/ftp.d.ts +39 -0
  549. package/dist/utils/providers/ftp.d.ts.map +1 -0
  550. package/dist/utils/providers/ftp.js +1 -0
  551. package/dist/utils/providers/ftp.js.map +1 -0
  552. package/dist/utils/providers/gcs.d.ts +39 -0
  553. package/dist/utils/providers/gcs.d.ts.map +1 -0
  554. package/dist/utils/providers/gcs.js +1 -0
  555. package/dist/utils/providers/gcs.js.map +1 -0
  556. package/dist/utils/providers/gdrive.d.ts +39 -0
  557. package/dist/utils/providers/gdrive.d.ts.map +1 -0
  558. package/dist/utils/providers/gdrive.js +1 -0
  559. package/dist/utils/providers/gdrive.js.map +1 -0
  560. package/dist/utils/providers/gofile.d.ts +21 -0
  561. package/dist/utils/providers/gofile.d.ts.map +1 -0
  562. package/dist/utils/providers/gofile.js +1 -0
  563. package/dist/utils/providers/gofile.js.map +1 -0
  564. package/dist/utils/providers/gphotos.d.ts +39 -0
  565. package/dist/utils/providers/gphotos.d.ts.map +1 -0
  566. package/dist/utils/providers/gphotos.js +1 -0
  567. package/dist/utils/providers/gphotos.js.map +1 -0
  568. package/dist/utils/providers/hdfs.d.ts +21 -0
  569. package/dist/utils/providers/hdfs.d.ts.map +1 -0
  570. package/dist/utils/providers/hdfs.js +1 -0
  571. package/dist/utils/providers/hdfs.js.map +1 -0
  572. package/dist/utils/providers/hidrive.d.ts +39 -0
  573. package/dist/utils/providers/hidrive.d.ts.map +1 -0
  574. package/dist/utils/providers/hidrive.js +1 -0
  575. package/dist/utils/providers/hidrive.js.map +1 -0
  576. package/dist/utils/providers/http.d.ts +30 -0
  577. package/dist/utils/providers/http.d.ts.map +1 -0
  578. package/dist/utils/providers/http.js +1 -0
  579. package/dist/utils/providers/http.js.map +1 -0
  580. package/dist/utils/providers/ibmcos.d.ts +58 -0
  581. package/dist/utils/providers/ibmcos.d.ts.map +1 -0
  582. package/dist/utils/providers/ibmcos.js +1 -0
  583. package/dist/utils/providers/ibmcos.js.map +1 -0
  584. package/dist/utils/providers/idrive.d.ts +28 -0
  585. package/dist/utils/providers/idrive.d.ts.map +1 -0
  586. package/dist/utils/providers/idrive.js +1 -0
  587. package/dist/utils/providers/idrive.js.map +1 -0
  588. package/dist/utils/providers/internetarchive.d.ts +30 -0
  589. package/dist/utils/providers/internetarchive.d.ts.map +1 -0
  590. package/dist/utils/providers/internetarchive.js +1 -0
  591. package/dist/utils/providers/internetarchive.js.map +1 -0
  592. package/dist/utils/providers/ionos.d.ts +44 -0
  593. package/dist/utils/providers/ionos.d.ts.map +1 -0
  594. package/dist/utils/providers/ionos.js +1 -0
  595. package/dist/utils/providers/ionos.js.map +1 -0
  596. package/dist/utils/providers/jottacloud.d.ts +39 -0
  597. package/dist/utils/providers/jottacloud.d.ts.map +1 -0
  598. package/dist/utils/providers/jottacloud.js +1 -0
  599. package/dist/utils/providers/jottacloud.js.map +1 -0
  600. package/dist/utils/providers/koofr.d.ts +46 -0
  601. package/dist/utils/providers/koofr.d.ts.map +1 -0
  602. package/dist/utils/providers/koofr.js +1 -0
  603. package/dist/utils/providers/koofr.js.map +1 -0
  604. package/dist/utils/providers/leviia.d.ts +28 -0
  605. package/dist/utils/providers/leviia.d.ts.map +1 -0
  606. package/dist/utils/providers/leviia.js +1 -0
  607. package/dist/utils/providers/leviia.js.map +1 -0
  608. package/dist/utils/providers/liara.d.ts +28 -0
  609. package/dist/utils/providers/liara.d.ts.map +1 -0
  610. package/dist/utils/providers/liara.js +1 -0
  611. package/dist/utils/providers/liara.js.map +1 -0
  612. package/dist/utils/providers/linkbox.d.ts +21 -0
  613. package/dist/utils/providers/linkbox.d.ts.map +1 -0
  614. package/dist/utils/providers/linkbox.js +1 -0
  615. package/dist/utils/providers/linkbox.js.map +1 -0
  616. package/dist/utils/providers/linode.d.ts +44 -0
  617. package/dist/utils/providers/linode.d.ts.map +1 -0
  618. package/dist/utils/providers/linode.js +1 -0
  619. package/dist/utils/providers/linode.js.map +1 -0
  620. package/dist/utils/providers/local.d.ts +11 -0
  621. package/dist/utils/providers/local.d.ts.map +1 -0
  622. package/dist/utils/providers/local.js +1 -0
  623. package/dist/utils/providers/local.js.map +1 -0
  624. package/dist/utils/providers/lyvecloud.d.ts +44 -0
  625. package/dist/utils/providers/lyvecloud.d.ts.map +1 -0
  626. package/dist/utils/providers/lyvecloud.js +1 -0
  627. package/dist/utils/providers/lyvecloud.js.map +1 -0
  628. package/dist/utils/providers/magalu.d.ts +44 -0
  629. package/dist/utils/providers/magalu.d.ts.map +1 -0
  630. package/dist/utils/providers/magalu.js +1 -0
  631. package/dist/utils/providers/magalu.js.map +1 -0
  632. package/dist/utils/providers/mailru.d.ts +30 -0
  633. package/dist/utils/providers/mailru.d.ts.map +1 -0
  634. package/dist/utils/providers/mailru.js +1 -0
  635. package/dist/utils/providers/mailru.js.map +1 -0
  636. package/dist/utils/providers/mega.d.ts +30 -0
  637. package/dist/utils/providers/mega.d.ts.map +1 -0
  638. package/dist/utils/providers/mega.js +1 -0
  639. package/dist/utils/providers/mega.js.map +1 -0
  640. package/dist/utils/providers/minio.d.ts +28 -0
  641. package/dist/utils/providers/minio.d.ts.map +1 -0
  642. package/dist/utils/providers/minio.js +1 -0
  643. package/dist/utils/providers/minio.js.map +1 -0
  644. package/dist/utils/providers/netstorage.d.ts +21 -0
  645. package/dist/utils/providers/netstorage.d.ts.map +1 -0
  646. package/dist/utils/providers/netstorage.js +1 -0
  647. package/dist/utils/providers/netstorage.js.map +1 -0
  648. package/dist/utils/providers/obs.d.ts +44 -0
  649. package/dist/utils/providers/obs.d.ts.map +1 -0
  650. package/dist/utils/providers/obs.js +1 -0
  651. package/dist/utils/providers/obs.js.map +1 -0
  652. package/dist/utils/providers/onedrive.d.ts +46 -0
  653. package/dist/utils/providers/onedrive.d.ts.map +1 -0
  654. package/dist/utils/providers/onedrive.js +1 -0
  655. package/dist/utils/providers/onedrive.js.map +1 -0
  656. package/dist/utils/providers/opendrive.d.ts +21 -0
  657. package/dist/utils/providers/opendrive.d.ts.map +1 -0
  658. package/dist/utils/providers/opendrive.js +1 -0
  659. package/dist/utils/providers/opendrive.js.map +1 -0
  660. package/dist/utils/providers/oracle.d.ts +30 -0
  661. package/dist/utils/providers/oracle.d.ts.map +1 -0
  662. package/dist/utils/providers/oracle.js +1 -0
  663. package/dist/utils/providers/oracle.js.map +1 -0
  664. package/dist/utils/providers/oss.d.ts +58 -0
  665. package/dist/utils/providers/oss.d.ts.map +1 -0
  666. package/dist/utils/providers/oss.js +1 -0
  667. package/dist/utils/providers/oss.js.map +1 -0
  668. package/dist/utils/providers/outscale.d.ts +44 -0
  669. package/dist/utils/providers/outscale.d.ts.map +1 -0
  670. package/dist/utils/providers/outscale.js +1 -0
  671. package/dist/utils/providers/outscale.js.map +1 -0
  672. package/dist/utils/providers/pcloud.d.ts +30 -0
  673. package/dist/utils/providers/pcloud.d.ts.map +1 -0
  674. package/dist/utils/providers/pcloud.js +1 -0
  675. package/dist/utils/providers/pcloud.js.map +1 -0
  676. package/dist/utils/providers/petabox.d.ts +28 -0
  677. package/dist/utils/providers/petabox.d.ts.map +1 -0
  678. package/dist/utils/providers/petabox.js +1 -0
  679. package/dist/utils/providers/petabox.js.map +1 -0
  680. package/dist/utils/providers/pikpak.d.ts +30 -0
  681. package/dist/utils/providers/pikpak.d.ts.map +1 -0
  682. package/dist/utils/providers/pikpak.js +1 -0
  683. package/dist/utils/providers/pikpak.js.map +1 -0
  684. package/dist/utils/providers/pixeldrain.d.ts +21 -0
  685. package/dist/utils/providers/pixeldrain.d.ts.map +1 -0
  686. package/dist/utils/providers/pixeldrain.js +1 -0
  687. package/dist/utils/providers/pixeldrain.js.map +1 -0
  688. package/dist/utils/providers/premiumizeme.d.ts +30 -0
  689. package/dist/utils/providers/premiumizeme.d.ts.map +1 -0
  690. package/dist/utils/providers/premiumizeme.js +1 -0
  691. package/dist/utils/providers/premiumizeme.js.map +1 -0
  692. package/dist/utils/providers/protondrive.d.ts +30 -0
  693. package/dist/utils/providers/protondrive.d.ts.map +1 -0
  694. package/dist/utils/providers/protondrive.js +1 -0
  695. package/dist/utils/providers/protondrive.js.map +1 -0
  696. package/dist/utils/providers/putio.d.ts +30 -0
  697. package/dist/utils/providers/putio.d.ts.map +1 -0
  698. package/dist/utils/providers/putio.js +1 -0
  699. package/dist/utils/providers/putio.js.map +1 -0
  700. package/dist/utils/providers/qingstor.d.ts +30 -0
  701. package/dist/utils/providers/qingstor.d.ts.map +1 -0
  702. package/dist/utils/providers/qingstor.js +1 -0
  703. package/dist/utils/providers/qingstor.js.map +1 -0
  704. package/dist/utils/providers/qiniu.d.ts +58 -0
  705. package/dist/utils/providers/qiniu.d.ts.map +1 -0
  706. package/dist/utils/providers/qiniu.js +1 -0
  707. package/dist/utils/providers/qiniu.js.map +1 -0
  708. package/dist/utils/providers/quatrix.d.ts +30 -0
  709. package/dist/utils/providers/quatrix.d.ts.map +1 -0
  710. package/dist/utils/providers/quatrix.js +1 -0
  711. package/dist/utils/providers/quatrix.js.map +1 -0
  712. package/dist/utils/providers/r2.d.ts +28 -0
  713. package/dist/utils/providers/r2.d.ts.map +1 -0
  714. package/dist/utils/providers/r2.js +1 -0
  715. package/dist/utils/providers/r2.js.map +1 -0
  716. package/dist/utils/providers/rackcorp.d.ts +58 -0
  717. package/dist/utils/providers/rackcorp.d.ts.map +1 -0
  718. package/dist/utils/providers/rackcorp.js +1 -0
  719. package/dist/utils/providers/rackcorp.js.map +1 -0
  720. package/dist/utils/providers/rclone.d.ts +28 -0
  721. package/dist/utils/providers/rclone.d.ts.map +1 -0
  722. package/dist/utils/providers/rclone.js +1 -0
  723. package/dist/utils/providers/rclone.js.map +1 -0
  724. package/dist/utils/providers/s3.d.ts +51 -0
  725. package/dist/utils/providers/s3.d.ts.map +1 -0
  726. package/dist/utils/providers/s3.js +1 -0
  727. package/dist/utils/providers/s3.js.map +1 -0
  728. package/dist/utils/providers/scaleway.d.ts +58 -0
  729. package/dist/utils/providers/scaleway.d.ts.map +1 -0
  730. package/dist/utils/providers/scaleway.js +1 -0
  731. package/dist/utils/providers/scaleway.js.map +1 -0
  732. package/dist/utils/providers/seafile.d.ts +39 -0
  733. package/dist/utils/providers/seafile.d.ts.map +1 -0
  734. package/dist/utils/providers/seafile.js +1 -0
  735. package/dist/utils/providers/seafile.js.map +1 -0
  736. package/dist/utils/providers/seaweedfs.d.ts +28 -0
  737. package/dist/utils/providers/seaweedfs.d.ts.map +1 -0
  738. package/dist/utils/providers/seaweedfs.js +1 -0
  739. package/dist/utils/providers/seaweedfs.js.map +1 -0
  740. package/dist/utils/providers/selectel.d.ts +28 -0
  741. package/dist/utils/providers/selectel.d.ts.map +1 -0
  742. package/dist/utils/providers/selectel.js +1 -0
  743. package/dist/utils/providers/selectel.js.map +1 -0
  744. package/dist/utils/providers/sftp.d.ts +30 -0
  745. package/dist/utils/providers/sftp.d.ts.map +1 -0
  746. package/dist/utils/providers/sftp.js +1 -0
  747. package/dist/utils/providers/sftp.js.map +1 -0
  748. package/dist/utils/providers/sharefile.d.ts +30 -0
  749. package/dist/utils/providers/sharefile.d.ts.map +1 -0
  750. package/dist/utils/providers/sharefile.js +1 -0
  751. package/dist/utils/providers/sharefile.js.map +1 -0
  752. package/dist/utils/providers/sia.d.ts +21 -0
  753. package/dist/utils/providers/sia.d.ts.map +1 -0
  754. package/dist/utils/providers/sia.js +1 -0
  755. package/dist/utils/providers/sia.js.map +1 -0
  756. package/dist/utils/providers/smb.d.ts +30 -0
  757. package/dist/utils/providers/smb.d.ts.map +1 -0
  758. package/dist/utils/providers/smb.js +1 -0
  759. package/dist/utils/providers/smb.js.map +1 -0
  760. package/dist/utils/providers/spaces.d.ts +44 -0
  761. package/dist/utils/providers/spaces.d.ts.map +1 -0
  762. package/dist/utils/providers/spaces.js +1 -0
  763. package/dist/utils/providers/spaces.js.map +1 -0
  764. package/dist/utils/providers/storj.d.ts +36 -0
  765. package/dist/utils/providers/storj.d.ts.map +1 -0
  766. package/dist/utils/providers/storj.js +1 -0
  767. package/dist/utils/providers/storj.js.map +1 -0
  768. package/dist/utils/providers/sugarsync.d.ts +30 -0
  769. package/dist/utils/providers/sugarsync.d.ts.map +1 -0
  770. package/dist/utils/providers/sugarsync.js +1 -0
  771. package/dist/utils/providers/sugarsync.js.map +1 -0
  772. package/dist/utils/providers/swift.d.ts +46 -0
  773. package/dist/utils/providers/swift.d.ts.map +1 -0
  774. package/dist/utils/providers/swift.js +1 -0
  775. package/dist/utils/providers/swift.js.map +1 -0
  776. package/dist/utils/providers/synologyc2.d.ts +44 -0
  777. package/dist/utils/providers/synologyc2.d.ts.map +1 -0
  778. package/dist/utils/providers/synologyc2.js +1 -0
  779. package/dist/utils/providers/synologyc2.js.map +1 -0
  780. package/dist/utils/providers/tencent.d.ts +28 -0
  781. package/dist/utils/providers/tencent.d.ts.map +1 -0
  782. package/dist/utils/providers/tencent.js +1 -0
  783. package/dist/utils/providers/tencent.js.map +1 -0
  784. package/dist/utils/providers/ulozto.d.ts +21 -0
  785. package/dist/utils/providers/ulozto.d.ts.map +1 -0
  786. package/dist/utils/providers/ulozto.js +1 -0
  787. package/dist/utils/providers/ulozto.js.map +1 -0
  788. package/dist/utils/providers/wasabi.d.ts +58 -0
  789. package/dist/utils/providers/wasabi.d.ts.map +1 -0
  790. package/dist/utils/providers/wasabi.js +1 -0
  791. package/dist/utils/providers/wasabi.js.map +1 -0
  792. package/dist/utils/providers/webdav.d.ts +19 -0
  793. package/dist/utils/providers/webdav.d.ts.map +1 -0
  794. package/dist/utils/providers/webdav.js +1 -0
  795. package/dist/utils/providers/webdav.js.map +1 -0
  796. package/dist/utils/providers/yandex.d.ts +39 -0
  797. package/dist/utils/providers/yandex.d.ts.map +1 -0
  798. package/dist/utils/providers/yandex.js +1 -0
  799. package/dist/utils/providers/yandex.js.map +1 -0
  800. package/dist/utils/providers/zoho.d.ts +30 -0
  801. package/dist/utils/providers/zoho.d.ts.map +1 -0
  802. package/dist/utils/providers/zoho.js +1 -0
  803. package/dist/utils/providers/zoho.js.map +1 -0
  804. package/dist/utils/providers.d.ts +37 -0
  805. package/dist/utils/providers.d.ts.map +1 -0
  806. package/dist/utils/providers.js +1 -0
  807. package/dist/utils/providers.js.map +1 -0
  808. package/dist/utils/rclone/helpers.d.ts +6 -0
  809. package/dist/utils/rclone/helpers.d.ts.map +1 -0
  810. package/dist/utils/rclone/helpers.js +1 -0
  811. package/dist/utils/rclone/helpers.js.map +1 -0
  812. package/dist/utils/rclone/parsers.d.ts +5 -0
  813. package/dist/utils/rclone/parsers.d.ts.map +1 -0
  814. package/dist/utils/rclone/parsers.js +1 -0
  815. package/dist/utils/rclone/parsers.js.map +1 -0
  816. package/dist/utils/rclone/rclone.d.ts +2 -0
  817. package/dist/utils/rclone/rclone.d.ts.map +1 -0
  818. package/dist/utils/rclone/rclone.js +1 -0
  819. package/dist/utils/rclone/rclone.js.map +1 -0
  820. package/dist/utils/restic/helpers.d.ts +4 -0
  821. package/dist/utils/restic/helpers.d.ts.map +1 -0
  822. package/dist/utils/restic/helpers.js +1 -0
  823. package/dist/utils/restic/helpers.js.map +1 -0
  824. package/dist/utils/restic/restic.d.ts +15 -0
  825. package/dist/utils/restic/restic.d.ts.map +1 -0
  826. package/dist/utils/restic/restic.js +1 -0
  827. package/dist/utils/restic/restic.js.map +1 -0
  828. package/dist/utils/runCommand.d.ts +23 -0
  829. package/dist/utils/runCommand.d.ts.map +1 -0
  830. package/dist/utils/runCommand.js +1 -0
  831. package/dist/utils/runCommand.js.map +1 -0
  832. package/dist/utils/sanitizeStoragePath.d.ts +9 -0
  833. package/dist/utils/sanitizeStoragePath.d.ts.map +1 -0
  834. package/dist/utils/sanitizeStoragePath.js +1 -0
  835. package/dist/utils/sanitizeStoragePath.js.map +1 -0
  836. package/dist/utils/versions.d.ts +17 -0
  837. package/dist/utils/versions.d.ts.map +1 -0
  838. package/dist/utils/versions.js +1 -0
  839. package/dist/utils/versions.js.map +1 -0
  840. package/package.json +106 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,3 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
package/LICENSE ADDED
@@ -0,0 +1,202 @@
1
+
2
+ Apache License
3
+ Version 2.0, January 2004
4
+ http://www.apache.org/licenses/
5
+
6
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7
+
8
+ 1. Definitions.
9
+
10
+ "License" shall mean the terms and conditions for use, reproduction,
11
+ and distribution as defined by Sections 1 through 9 of this document.
12
+
13
+ "Licensor" shall mean the copyright owner or entity authorized by
14
+ the copyright owner that is granting the License.
15
+
16
+ "Legal Entity" shall mean the union of the acting entity and all
17
+ other entities that control, are controlled by, or are under common
18
+ control with that entity. For the purposes of this definition,
19
+ "control" means (i) the power, direct or indirect, to cause the
20
+ direction or management of such entity, whether by contract or
21
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
22
+ outstanding shares, or (iii) beneficial ownership of such entity.
23
+
24
+ "You" (or "Your") shall mean an individual or Legal Entity
25
+ exercising permissions granted by this License.
26
+
27
+ "Source" form shall mean the preferred form for making modifications,
28
+ including but not limited to software source code, documentation
29
+ source, and configuration files.
30
+
31
+ "Object" form shall mean any form resulting from mechanical
32
+ transformation or translation of a Source form, including but
33
+ not limited to compiled object code, generated documentation,
34
+ and conversions to other media types.
35
+
36
+ "Work" shall mean the work of authorship, whether in Source or
37
+ Object form, made available under the License, as indicated by a
38
+ copyright notice that is included in or attached to the work
39
+ (an example is provided in the Appendix below).
40
+
41
+ "Derivative Works" shall mean any work, whether in Source or Object
42
+ form, that is based on (or derived from) the Work and for which the
43
+ editorial revisions, annotations, elaborations, or other modifications
44
+ represent, as a whole, an original work of authorship. For the purposes
45
+ of this License, Derivative Works shall not include works that remain
46
+ separable from, or merely link (or bind by name) to the interfaces of,
47
+ the Work and Derivative Works thereof.
48
+
49
+ "Contribution" shall mean any work of authorship, including
50
+ the original version of the Work and any modifications or additions
51
+ to that Work or Derivative Works thereof, that is intentionally
52
+ submitted to Licensor for inclusion in the Work by the copyright owner
53
+ or by an individual or Legal Entity authorized to submit on behalf of
54
+ the copyright owner. For the purposes of this definition, "submitted"
55
+ means any form of electronic, verbal, or written communication sent
56
+ to the Licensor or its representatives, including but not limited to
57
+ communication on electronic mailing lists, source code control systems,
58
+ and issue tracking systems that are managed by, or on behalf of, the
59
+ Licensor for the purpose of discussing and improving the Work, but
60
+ excluding communication that is conspicuously marked or otherwise
61
+ designated in writing by the copyright owner as "Not a Contribution."
62
+
63
+ "Contributor" shall mean Licensor and any individual or Legal Entity
64
+ on behalf of whom a Contribution has been received by Licensor and
65
+ subsequently incorporated within the Work.
66
+
67
+ 2. Grant of Copyright License. Subject to the terms and conditions of
68
+ this License, each Contributor hereby grants to You a perpetual,
69
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70
+ copyright license to reproduce, prepare Derivative Works of,
71
+ publicly display, publicly perform, sublicense, and distribute the
72
+ Work and such Derivative Works in Source or Object form.
73
+
74
+ 3. Grant of Patent License. Subject to the terms and conditions of
75
+ this License, each Contributor hereby grants to You a perpetual,
76
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77
+ (except as stated in this section) patent license to make, have made,
78
+ use, offer to sell, sell, import, and otherwise transfer the Work,
79
+ where such license applies only to those patent claims licensable
80
+ by such Contributor that are necessarily infringed by their
81
+ Contribution(s) alone or by combination of their Contribution(s)
82
+ with the Work to which such Contribution(s) was submitted. If You
83
+ institute patent litigation against any entity (including a
84
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
85
+ or a Contribution incorporated within the Work constitutes direct
86
+ or contributory patent infringement, then any patent licenses
87
+ granted to You under this License for that Work shall terminate
88
+ as of the date such litigation is filed.
89
+
90
+ 4. Redistribution. You may reproduce and distribute copies of the
91
+ Work or Derivative Works thereof in any medium, with or without
92
+ modifications, and in Source or Object form, provided that You
93
+ meet the following conditions:
94
+
95
+ (a) You must give any other recipients of the Work or
96
+ Derivative Works a copy of this License; and
97
+
98
+ (b) You must cause any modified files to carry prominent notices
99
+ stating that You changed the files; and
100
+
101
+ (c) You must retain, in the Source form of any Derivative Works
102
+ that You distribute, all copyright, patent, trademark, and
103
+ attribution notices from the Source form of the Work,
104
+ excluding those notices that do not pertain to any part of
105
+ the Derivative Works; and
106
+
107
+ (d) If the Work includes a "NOTICE" text file as part of its
108
+ distribution, then any Derivative Works that You distribute must
109
+ include a readable copy of the attribution notices contained
110
+ within such NOTICE file, excluding those notices that do not
111
+ pertain to any part of the Derivative Works, in at least one
112
+ of the following places: within a NOTICE text file distributed
113
+ as part of the Derivative Works; within the Source form or
114
+ documentation, if provided along with the Derivative Works; or,
115
+ within a display generated by the Derivative Works, if and
116
+ wherever such third-party notices normally appear. The contents
117
+ of the NOTICE file are for informational purposes only and
118
+ do not modify the License. You may add Your own attribution
119
+ notices within Derivative Works that You distribute, alongside
120
+ or as an addendum to the NOTICE text from the Work, provided
121
+ that such additional attribution notices cannot be construed
122
+ as modifying the License.
123
+
124
+ You may add Your own copyright statement to Your modifications and
125
+ may provide additional or different license terms and conditions
126
+ for use, reproduction, or distribution of Your modifications, or
127
+ for any such Derivative Works as a whole, provided Your use,
128
+ reproduction, and distribution of the Work otherwise complies with
129
+ the conditions stated in this License.
130
+
131
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
132
+ any Contribution intentionally submitted for inclusion in the Work
133
+ by You to the Licensor shall be under the terms and conditions of
134
+ this License, without any additional terms or conditions.
135
+ Notwithstanding the above, nothing herein shall supersede or modify
136
+ the terms of any separate license agreement you may have executed
137
+ with Licensor regarding such Contributions.
138
+
139
+ 6. Trademarks. This License does not grant permission to use the trade
140
+ names, trademarks, service marks, or product names of the Licensor,
141
+ except as required for reasonable and customary use in describing the
142
+ origin of the Work and reproducing the content of the NOTICE file.
143
+
144
+ 7. Disclaimer of Warranty. Unless required by applicable law or
145
+ agreed to in writing, Licensor provides the Work (and each
146
+ Contributor provides its Contributions) on an "AS IS" BASIS,
147
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148
+ implied, including, without limitation, any warranties or conditions
149
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150
+ PARTICULAR PURPOSE. You are solely responsible for determining the
151
+ appropriateness of using or redistributing the Work and assume any
152
+ risks associated with Your exercise of permissions under this License.
153
+
154
+ 8. Limitation of Liability. In no event and under no legal theory,
155
+ whether in tort (including negligence), contract, or otherwise,
156
+ unless required by applicable law (such as deliberate and grossly
157
+ negligent acts) or agreed to in writing, shall any Contributor be
158
+ liable to You for damages, including any direct, indirect, special,
159
+ incidental, or consequential damages of any character arising as a
160
+ result of this License or out of the use or inability to use the
161
+ Work (including but not limited to damages for loss of goodwill,
162
+ work stoppage, computer failure or malfunction, or any and all
163
+ other commercial damages or losses), even if such Contributor
164
+ has been advised of the possibility of such damages.
165
+
166
+ 9. Accepting Warranty or Additional Liability. While redistributing
167
+ the Work or Derivative Works thereof, You may choose to offer,
168
+ and charge a fee for, acceptance of support, warranty, indemnity,
169
+ or other liability obligations and/or rights consistent with this
170
+ License. However, in accepting such obligations, You may act only
171
+ on Your own behalf and on Your sole responsibility, not on behalf
172
+ of any other Contributor, and only if You agree to indemnify,
173
+ defend, and hold each Contributor harmless for any liability
174
+ incurred by, or claims asserted against, such Contributor by reason
175
+ of your accepting any such warranty or additional liability.
176
+
177
+ END OF TERMS AND CONDITIONS
178
+
179
+ APPENDIX: How to apply the Apache License to your work.
180
+
181
+ To apply the Apache License to your work, attach the following
182
+ boilerplate notice, with the fields enclosed by brackets "[]"
183
+ replaced with your own identifying information. (Don't include
184
+ the brackets!) The text should be enclosed in the appropriate
185
+ comment syntax for the file format. We also recommend that a
186
+ file or class name and description of purpose be included on the
187
+ same "printed page" as the copyright notice for easier
188
+ identification within third-party archives.
189
+
190
+ Copyright [yyyy] [name of copyright owner]
191
+
192
+ Licensed under the Apache License, Version 2.0 (the "License");
193
+ you may not use this file except in compliance with the License.
194
+ You may obtain a copy of the License at
195
+
196
+ http://www.apache.org/licenses/LICENSE-2.0
197
+
198
+ Unless required by applicable law or agreed to in writing, software
199
+ distributed under the License is distributed on an "AS IS" BASIS,
200
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
201
+ See the License for the specific language governing permissions and
202
+ limitations under the License.
package/README.md ADDED
@@ -0,0 +1 @@
1
+ This Pluton Core Backend Package is used to extend the Pluton Pro Edition.
@@ -0,0 +1,14 @@
1
+ import { Request, Response } from 'express';
2
+ import { BackupService } from '../services/BackupServices';
3
+ export declare class BackupController {
4
+ protected backupService: BackupService;
5
+ constructor(backupService: BackupService);
6
+ getBackupDownload(req: Request, res: Response): Promise<void>;
7
+ generateBackupDownload(req: Request, res: Response): Promise<void>;
8
+ getSnapshotFiles(req: Request, res: Response): Promise<void>;
9
+ cancelBackupDownload(req: Request, res: Response): Promise<void>;
10
+ deleteBackup(req: Request, res: Response): Promise<void>;
11
+ getBackupProgress(req: Request, res: Response): Promise<void>;
12
+ cancelBackup(req: Request, res: Response): Promise<void>;
13
+ }
14
+ //# sourceMappingURL=BackupController.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"BackupController.d.ts","sourceRoot":"","sources":["../../src/controllers/BackupController.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAC;AAC5C,OAAO,EAAE,aAAa,EAAE,MAAM,4BAA4B,CAAC;AAE3D,qBAAa,gBAAgB;IAChB,SAAS,CAAC,aAAa,EAAE,aAAa;gBAA5B,aAAa,EAAE,aAAa;IAE5C,iBAAiB,CAAC,GAAG,EAAE,OAAO,EAAE,GAAG,EAAE,QAAQ,GAAG,OAAO,CAAC,IAAI,CAAC;IA8B7D,sBAAsB,CAAC,GAAG,EAAE,OAAO,EAAE,GAAG,EAAE,QAAQ,GAAG,OAAO,CAAC,IAAI,CAAC;IAqBlE,gBAAgB,CAAC,GAAG,EAAE,OAAO,EAAE,GAAG,EAAE,QAAQ,GAAG,OAAO,CAAC,IAAI,CAAC;IAqB5D,oBAAoB,CAAC,GAAG,EAAE,OAAO,EAAE,GAAG,EAAE,QAAQ,GAAG,OAAO,CAAC,IAAI,CAAC;IAuBhE,YAAY,CAAC,GAAG,EAAE,OAAO,EAAE,GAAG,EAAE,QAAQ,GAAG,OAAO,CAAC,IAAI,CAAC;IAqBxD,iBAAiB,CAAC,GAAG,EAAE,OAAO,EAAE,GAAG,EAAE,QAAQ,GAAG,OAAO,CAAC,IAAI,CAAC;IAqB7D,YAAY,CAAC,GAAG,EAAE,OAAO,EAAE,GAAG,EAAE,QAAQ,GAAG,OAAO,CAAC,IAAI,CAAC;CAwB9D"}
@@ -0,0 +1 @@
1
+ export class BackupController{backupService;constructor(backupService){this.backupService=backupService}async getBackupDownload(req,res){if(req.params.id)try{const downloadResult=await this.backupService.getBackupDownload(req.params.id),{fileName:fileName,fileStream:fileStream}=downloadResult;res.setHeader("Content-Type","application/x-tar"),res.setHeader("Content-Disposition",`attachment; filename=${fileName}`),res.setHeader("Transfer-Encoding","chunked"),fileStream.pipe(res)}catch(error){res.status(500).json({success:!1,error:"Failed to get Downloaded file. "+(error.message||"")})}else res.status(400).json({success:!1,error:"Backup ID is required"})}async generateBackupDownload(req,res){if(req.params.id)try{const downloadResult=await this.backupService.generateBackupDownload(req.params.id);res.status(200).json({success:!0,result:downloadResult})}catch(error){res.status(500).json({success:!1,error:"Failed to generate Download Link. "+(error.message||"")})}else res.status(400).json({success:!1,error:"Backup ID is required"})}async getSnapshotFiles(req,res){if(req.params.id)try{const snapshotFiles=await this.backupService.getSnapshotFiles(req.params.id);res.status(200).json({success:!0,result:snapshotFiles})}catch(error){res.status(500).json({success:!1,error:"Failed to get Snapshot Files. "+(error.message||"")})}else res.status(400).json({success:!1,error:"Backup ID is required"})}async cancelBackupDownload(req,res){if(req.params.id)try{const downloadResult=await this.backupService.cancelBackupDownload(req.query.planId,req.params.id);res.status(200).json({success:!0,result:downloadResult})}catch(error){res.status(500).json({success:!1,error:"Failed to cancel Download Generation. "+(error.message||"")})}else res.status(400).json({success:!1,error:"Backup ID is required"})}async deleteBackup(req,res){try{if(!req.params.id)return void res.status(400).json({success:!1,error:"Backup ID is required"});const removeSnapshot=!0;await this.backupService.deleteBackup(req.params.id,removeSnapshot),res.status(200).json({success:!0,result:"Removed"})}catch(error){return void res.status(500).json({success:!1,error:error?.message||"Failed to delete backup"})}}async getBackupProgress(req,res){if(req.params.id&&req.query.sourceId&&req.query.sourceType)try{const progressRes=await this.backupService.getBackupProgress(req.params.id);res.status(200).json(progressRes)}catch(error){return void res.status(500).json({success:!1,error:error?.message||"Failed to retrieve Backup Progress"})}else res.status(400).json({success:!1,error:"Backup ID or Device ID is required"})}async cancelBackup(req,res){if(req.params.id&&req.query.planId)try{const cancelResult=await this.backupService.cancelBackup(req.query.planId,req.params.id);return void res.status(200).json(cancelResult)}catch(error){return void res.status(500).json({success:!1,error:error.message||"Unknown Error"})}else res.status(400).json({success:!1,error:"Backup ID is required"})}}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"BackupController.js","sourceRoot":"","sources":["../../src/controllers/BackupController.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,14 @@
1
+ import { Request, Response } from 'express';
2
+ import { DeviceService } from '../services/DeviceService';
3
+ export declare class DeviceController {
4
+ protected deviceService: DeviceService;
5
+ constructor(deviceService: DeviceService);
6
+ getDevices(req: Request, res: Response): Promise<void>;
7
+ getDevice(req: Request, res: Response): Promise<void>;
8
+ updateDevice(req: Request, res: Response): Promise<void>;
9
+ getMetrics(req: Request, res: Response): Promise<void>;
10
+ getBrowsePath(req: Request, res: Response): Promise<void>;
11
+ updateRestic(req: Request, res: Response): Promise<void>;
12
+ updateRclone(req: Request, res: Response): Promise<void>;
13
+ }
14
+ //# sourceMappingURL=DeviceController.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DeviceController.d.ts","sourceRoot":"","sources":["../../src/controllers/DeviceController.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAC;AAC5C,OAAO,EAAE,aAAa,EAAE,MAAM,2BAA2B,CAAC;AAE1D,qBAAa,gBAAgB;IAChB,SAAS,CAAC,aAAa,EAAE,aAAa;gBAA5B,aAAa,EAAE,aAAa;IAE5C,UAAU,CAAC,GAAG,EAAE,OAAO,EAAE,GAAG,EAAE,QAAQ,GAAG,OAAO,CAAC,IAAI,CAAC;IAYtD,SAAS,CAAC,GAAG,EAAE,OAAO,EAAE,GAAG,EAAE,QAAQ,GAAG,OAAO,CAAC,IAAI,CAAC;IAiCrD,YAAY,CAAC,GAAG,EAAE,OAAO,EAAE,GAAG,EAAE,QAAQ,GAAG,OAAO,CAAC,IAAI,CAAC;IA4BxD,UAAU,CAAC,GAAG,EAAE,OAAO,EAAE,GAAG,EAAE,QAAQ,GAAG,OAAO,CAAC,IAAI,CAAC;IAmBtD,aAAa,CAAC,GAAG,EAAE,OAAO,EAAE,GAAG,EAAE,QAAQ,GAAG,OAAO,CAAC,IAAI,CAAC;IAqBzD,YAAY,CAAC,GAAG,EAAE,OAAO,EAAE,GAAG,EAAE,QAAQ,GAAG,OAAO,CAAC,IAAI,CAAC;IAsBxD,YAAY,CAAC,GAAG,EAAE,OAAO,EAAE,GAAG,EAAE,QAAQ,GAAG,OAAO,CAAC,IAAI,CAAC;CAqB9D"}
@@ -0,0 +1 @@
1
+ export class DeviceController{deviceService;constructor(deviceService){this.deviceService=deviceService}async getDevices(req,res){try{const devicesRes=await this.deviceService.getDevices();res.json({success:!0,result:devicesRes})}catch(error){res.status(500).json({success:!1,error:"Failed to fetch devices"})}}async getDevice(req,res){try{if(!req.params.id)return void res.status(400).json({success:!1,error:"Device ID is required"});const metrics="true"===req.query.metrics,deviceRes=await this.deviceService.getDevice(req.params.id,metrics);if(!deviceRes.device)return void res.status(404).json({success:!1,error:"Device not found"});res.status(200).json({success:!0,result:deviceRes})}catch(error){const notFound=error?.message.includes("not found");return void res.status(notFound?404:500).json({success:!1,error:"Failed to fetch device"})}}async updateDevice(req,res){try{if(!req.params.id)return void res.status(400).json({success:!1,error:"Device ID is required"});const{name:name,settings:settings,tags:tags}=req.body,deviceRes=await this.deviceService.updateDevice(req.params.id,{name:name,settings:settings,tags:tags});return void res.json({success:!0,result:deviceRes})}catch(error){return void res.status(500).json({success:!1,error:error?.message||"Failed to update device"})}}async getMetrics(req,res){if(req.params.id)try{const response=await this.deviceService.getMetrics(req.params.id);res.json({success:!0,result:response})}catch(error){res.status(500).json({success:!1,error:error?.message||"Failed to fetch system metrics"})}else res.status(400).json({success:!1,error:"Device ID is missing"})}async getBrowsePath(req,res){if(req.params.id)try{const requestedPath=req.query.path?decodeURIComponent(req.query.path):"",response=await this.deviceService.getBrowsePath(req.params.id,requestedPath);res.json(response)}catch(error){res.status(500).json({success:!1,error:error?.message||"Failed to read directory contents"})}else res.status(400).json({success:!1,error:"Device ID is missing"})}async updateRestic(req,res){if(req.params.id&&req.query.version)try{const response=await this.deviceService.updateRestic(req.params.id,req.query.version);res.json({success:!0,result:response})}catch(error){res.status(500).json({success:!1,error:error?.message||"Failed to update restic"})}else res.status(400).json({success:!1,error:"Device ID and Restic version is required"})}async updateRclone(req,res){if(req.params.id&&req.query.version)try{const updatedVersion=await this.deviceService.updateRclone(req.params.id,req.query.version);res.json({success:!0,result:updatedVersion})}catch(error){res.status(500).json({success:!1,error:error?.message||"Failed to update rclone"})}else res.status(400).json({success:!1,error:"Device ID and Rclone version is required"})}}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DeviceController.js","sourceRoot":"","sources":["../../src/controllers/DeviceController.ts"],"names":[],"mappings":"AAGA,MAAM,OAAO,gBAAgB;IACN;IAAtB,YAAsB,aAA4B;QAA5B,kBAAa,GAAb,aAAa,CAAe;IAAG,CAAC;IAEtD,KAAK,CAAC,UAAU,CAAC,GAAY,EAAE,GAAa;QAC3C,IAAI,CAAC;YACJ,MAAM,UAAU,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,UAAU,EAAE,CAAC;YACzD,GAAG,CAAC,IAAI,CAAC,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,EAAE,UAAU,EAAE,CAAC,CAAC;QACjD,CAAC;QAAC,OAAO,KAAU,EAAE,CAAC;YACrB,GAAG,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC;gBACpB,OAAO,EAAE,KAAK;gBACd,KAAK,EAAE,yBAAyB;aAChC,CAAC,CAAC;QACJ,CAAC;IACF,CAAC;IAED,KAAK,CAAC,SAAS,CAAC,GAAY,EAAE,GAAa;QAC1C,IAAI,CAAC;YACJ,IAAI,CAAC,GAAG,CAAC,MAAM,CAAC,EAAE,EAAE,CAAC;gBACpB,GAAG,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC;oBACpB,OAAO,EAAE,KAAK;oBACd,KAAK,EAAE,uBAAuB;iBAC9B,CAAC,CAAC;gBACH,OAAO;YACR,CAAC;YACD,MAAM,OAAO,GAAG,GAAG,CAAC,KAAK,CAAC,OAAO,KAAK,MAAM,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK,CAAC;YAC5D,MAAM,SAAS,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,SAAS,CAAC,GAAG,CAAC,MAAM,CAAC,EAAE,EAAE,OAAO,CAAC,CAAC;YAC7E,IAAI,CAAC,SAAS,CAAC,MAAM,EAAE,CAAC;gBACvB,GAAG,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC;oBACpB,OAAO,EAAE,KAAK;oBACd,KAAK,EAAE,kBAAkB;iBACzB,CAAC,CAAC;gBACH,OAAO;YACR,CAAC;YACD,GAAG,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC;gBACpB,OAAO,EAAE,IAAI;gBACb,MAAM,EAAE,SAAS;aACjB,CAAC,CAAC;QACJ,CAAC;QAAC,OAAO,KAAU,EAAE,CAAC;YACrB,OAAO,CAAC,GAAG,CAAC,SAAS,EAAE,KAAK,CAAC,CAAC;YAC9B,MAAM,QAAQ,GAAG,KAAK,EAAE,OAAO,CAAC,QAAQ,CAAC,WAAW,CAAC,CAAC;YACtD,GAAG,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC;gBACrC,OAAO,EAAE,KAAK;gBACd,KAAK,EAAE,wBAAwB;aAC/B,CAAC,CAAC;YACH,OAAO;QACR,CAAC;IACF,CAAC;IAED,KAAK,CAAC,YAAY,CAAC,GAAY,EAAE,GAAa;QAC7C,IAAI,CAAC;YACJ,IAAI,CAAC,GAAG,CAAC,MAAM,CAAC,EAAE,EAAE,CAAC;gBACpB,GAAG,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC;oBACpB,OAAO,EAAE,KAAK;oBACd,KAAK,EAAE,uBAAuB;iBAC9B,CAAC,CAAC;gBACH,OAAO;YACR,CAAC;YAED,MAAM,EAAE,IAAI,EAAE,QAAQ,EAAE,IAAI,EAAE,GAAG,GAAG,CAAC,IAAI,CAAC;YAC1C,MAAM,SAAS,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,YAAY,CAAC,GAAG,CAAC,MAAM,CAAC,EAAE,EAAE;gBACtE,IAAI;gBACJ,QAAQ;gBACR,IAAI;aACJ,CAAC,CAAC;YAEH,GAAG,CAAC,IAAI,CAAC,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,EAAE,SAAS,EAAE,CAAC,CAAC;YAC/C,OAAO;QACR,CAAC;QAAC,OAAO,KAAU,EAAE,CAAC;YACrB,GAAG,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC;gBACpB,OAAO,EAAE,KAAK;gBACd,KAAK,EAAE,KAAK,EAAE,OAAO,IAAI,yBAAyB;aAClD,CAAC,CAAC;YACH,OAAO;QACR,CAAC;IACF,CAAC;IAED,KAAK,CAAC,UAAU,CAAC,GAAY,EAAE,GAAa;QAC3C,IAAI,CAAC,GAAG,CAAC,MAAM,CAAC,EAAE,EAAE,CAAC;YACpB,GAAG,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC;gBACpB,OAAO,EAAE,KAAK;gBACd,KAAK,EAAE,sBAAsB;aAC7B,CAAC,CAAC;YACH,OAAO;QACR,CAAC;QACD,IAAI,CAAC;YACJ,MAAM,QAAQ,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,UAAU,CAAC,GAAG,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC;YACpE,GAAG,CAAC,IAAI,CAAC,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,CAAC,CAAC;QAC/C,CAAC;QAAC,OAAO,KAAU,EAAE,CAAC;YACrB,GAAG,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC;gBACpB,OAAO,EAAE,KAAK;gBACd,KAAK,EAAE,KAAK,EAAE,OAAO,IAAI,gCAAgC;aACzD,CAAC,CAAC;QACJ,CAAC;IACF,CAAC;IAED,KAAK,CAAC,aAAa,CAAC,GAAY,EAAE,GAAa;QAC9C,IAAI,CAAC,GAAG,CAAC,MAAM,CAAC,EAAE,EAAE,CAAC;YACpB,GAAG,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC;gBACpB,OAAO,EAAE,KAAK;gBACd,KAAK,EAAE,sBAAsB;aAC7B,CAAC,CAAC;YACH,OAAO;QACR,CAAC;QACD,IAAI,CAAC;YACJ,MAAM,aAAa,GAAG,GAAG,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,kBAAkB,CAAC,GAAG,CAAC,KAAK,CAAC,IAAc,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC;YACzF,MAAM,QAAQ,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,aAAa,CAAC,GAAG,CAAC,MAAM,CAAC,EAAE,EAAE,aAAa,CAAC,CAAC;YACtF,GAAG,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;QACpB,CAAC;QAAC,OAAO,KAAU,EAAE,CAAC;YACrB,OAAO,CAAC,GAAG,CAAC,SAAS,EAAE,KAAK,CAAC,CAAC;YAC9B,GAAG,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC;gBACpB,OAAO,EAAE,KAAK;gBACd,KAAK,EAAE,KAAK,EAAE,OAAO,IAAI,mCAAmC;aAC5D,CAAC,CAAC;QACJ,CAAC;IACF,CAAC;IAED,KAAK,CAAC,YAAY,CAAC,GAAY,EAAE,GAAa;QAC7C,IAAI,CAAC,GAAG,CAAC,MAAM,CAAC,EAAE,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,OAAO,EAAE,CAAC;YAC1C,GAAG,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC;gBACpB,OAAO,EAAE,KAAK;gBACd,KAAK,EAAE,0CAA0C;aACjD,CAAC,CAAC;YACH,OAAO;QACR,CAAC;QACD,IAAI,CAAC;YACJ,MAAM,QAAQ,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,YAAY,CACrD,GAAG,CAAC,MAAM,CAAC,EAAE,EACb,GAAG,CAAC,KAAK,CAAC,OAAiB,CAC3B,CAAC;YACF,GAAG,CAAC,IAAI,CAAC,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,CAAC,CAAC;QAC/C,CAAC;QAAC,OAAO,KAAU,EAAE,CAAC;YACrB,GAAG,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC;gBACpB,OAAO,EAAE,KAAK;gBACd,KAAK,EAAE,KAAK,EAAE,OAAO,IAAI,yBAAyB;aAClD,CAAC,CAAC;QACJ,CAAC;IACF,CAAC;IAED,KAAK,CAAC,YAAY,CAAC,GAAY,EAAE,GAAa;QAC7C,IAAI,CAAC,GAAG,CAAC,MAAM,CAAC,EAAE,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,OAAO,EAAE,CAAC;YAC1C,GAAG,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC;gBACpB,OAAO,EAAE,KAAK;gBACd,KAAK,EAAE,0CAA0C;aACjD,CAAC,CAAC;YACH,OAAO;QACR,CAAC;QACD,IAAI,CAAC;YACJ,MAAM,cAAc,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,YAAY,CAC3D,GAAG,CAAC,MAAM,CAAC,EAAE,EACb,GAAG,CAAC,KAAK,CAAC,OAAiB,CAC3B,CAAC;YACF,GAAG,CAAC,IAAI,CAAC,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,EAAE,cAAc,EAAE,CAAC,CAAC;QACrD,CAAC;QAAC,OAAO,KAAU,EAAE,CAAC;YACrB,GAAG,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC;gBACpB,OAAO,EAAE,KAAK;gBACd,KAAK,EAAE,KAAK,EAAE,OAAO,IAAI,yBAAyB;aAClD,CAAC,CAAC;QACJ,CAAC;IACF,CAAC;CACD"}
@@ -0,0 +1,20 @@
1
+ import { Request, Response } from 'express';
2
+ import { PlanService } from '../services/PlanService';
3
+ export declare class PlanController {
4
+ protected planService: PlanService;
5
+ constructor(planService: PlanService);
6
+ getPlans(req: Request, res: Response): Promise<void>;
7
+ getPlan(req: Request, res: Response): Promise<void>;
8
+ checkActiveBackups(req: Request, res: Response): Promise<void>;
9
+ createPlan(req: Request, res: Response): Promise<void>;
10
+ updatePlan(req: Request, res: Response): Promise<void>;
11
+ deletePlan(req: Request, res: Response): Promise<void>;
12
+ performBackup(req: Request, res: Response): Promise<void>;
13
+ pauseBackup(req: Request, res: Response): Promise<void>;
14
+ resumeBackup(req: Request, res: Response): Promise<void>;
15
+ pruneBackup(req: Request, res: Response): Promise<void>;
16
+ unlockRepo(req: Request, res: Response): Promise<void>;
17
+ getLogs(req: Request, res: Response): Promise<void>;
18
+ downloadLogs(req: Request, res: Response): Promise<void>;
19
+ }
20
+ //# sourceMappingURL=PlanController.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"PlanController.d.ts","sourceRoot":"","sources":["../../src/controllers/PlanController.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAC;AAE5C,OAAO,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;AAGtD,qBAAa,cAAc;IACd,SAAS,CAAC,WAAW,EAAE,WAAW;gBAAxB,WAAW,EAAE,WAAW;IAExC,QAAQ,CAAC,GAAG,EAAE,OAAO,EAAE,GAAG,EAAE,QAAQ,GAAG,OAAO,CAAC,IAAI,CAAC;IAgBpD,OAAO,CAAC,GAAG,EAAE,OAAO,EAAE,GAAG,EAAE,QAAQ,GAAG,OAAO,CAAC,IAAI,CAAC;IAoBnD,kBAAkB,CAAC,GAAG,EAAE,OAAO,EAAE,GAAG,EAAE,QAAQ,GAAG,OAAO,CAAC,IAAI,CAAC;IAoB9D,UAAU,CAAC,GAAG,EAAE,OAAO,EAAE,GAAG,EAAE,QAAQ,GAAG,OAAO,CAAC,IAAI,CAAC;IAgCtD,UAAU,CAAC,GAAG,EAAE,OAAO,EAAE,GAAG,EAAE,QAAQ,GAAG,OAAO,CAAC,IAAI,CAAC;IAgCtD,UAAU,CAAC,GAAG,EAAE,OAAO,EAAE,GAAG,EAAE,QAAQ,GAAG,OAAO,CAAC,IAAI,CAAC;IAwBtD,aAAa,CAAC,GAAG,EAAE,OAAO,EAAE,GAAG,EAAE,QAAQ,GAAG,OAAO,CAAC,IAAI,CAAC;IAqBzD,WAAW,CAAC,GAAG,EAAE,OAAO,EAAE,GAAG,EAAE,QAAQ,GAAG,OAAO,CAAC,IAAI,CAAC;IAqBvD,YAAY,CAAC,GAAG,EAAE,OAAO,EAAE,GAAG,EAAE,QAAQ,GAAG,OAAO,CAAC,IAAI,CAAC;IAqBxD,WAAW,CAAC,GAAG,EAAE,OAAO,EAAE,GAAG,EAAE,QAAQ,GAAG,OAAO,CAAC,IAAI,CAAC;IAqBvD,UAAU,CAAC,GAAG,EAAE,OAAO,EAAE,GAAG,EAAE,QAAQ,GAAG,OAAO,CAAC,IAAI,CAAC;IAwBtD,OAAO,CAAC,GAAG,EAAE,OAAO,EAAE,GAAG,EAAE,QAAQ,GAAG,OAAO,CAAC,IAAI,CAAC;IAsBnD,YAAY,CAAC,GAAG,EAAE,OAAO,EAAE,GAAG,EAAE,QAAQ,GAAG,OAAO,CAAC,IAAI,CAAC;CAsB9D"}
@@ -0,0 +1 @@
1
+ export class PlanController{planService;constructor(planService){this.planService=planService}async getPlans(req,res){try{const allPlans=await this.planService.getAllPlans();res.status(200).json({success:!0,result:allPlans||[]})}catch(error){const appError=error;res.status(appError.statusCode||500).json({success:!1,error:"Internal Server Error. Details: "+(appError?.message||"Unknown Error")})}}async getPlan(req,res){if(req.params.id)try{const thePlan=await this.planService.getPlan(req.params.id,!0);res.status(200).json({success:!0,result:thePlan})}catch(error){const appError=error;res.status(appError.statusCode||500).json({success:!1,error:appError?.message||"Internal Server Error"})}else res.status(400).json({success:!1,error:"Plan ID is required"})}async checkActiveBackups(req,res){if(req.params.id)try{const hasActiveBackup=await this.planService.checkActiveBackups(req.params.id);res.status(200).json({success:!0,result:hasActiveBackup})}catch(error){const appError=error;res.status(appError.statusCode||500).json({success:!1,error:"Internal Server Error. Details: "+(appError?.message||"Unknown Error")})}else res.status(400).json({success:!1,error:"Plan ID is required"})}async createPlan(req,res){const planPayload=req.body;try{if(!(planPayload&&planPayload.settings&&planPayload.settings.interval&&planPayload.storage.id&&planPayload.sourceType&&planPayload.sourceConfig))return void res.status(400).json({success:!1,error:"Required fields missing: interval, storage Id, sourceId, sourceType, sourceConfig"});const plan=await this.planService.createPlan(planPayload);res.status(201).json({success:!0,result:plan})}catch(error){const appError=error;return void res.status(appError.statusCode||500).json({success:!1,error:appError?.message||"Failed to create plan"})}}async updatePlan(req,res){const planPayload=req.body.plan;try{if(!req.params.id)return void res.status(400).json({success:!1,error:"Plan ID is required."});if(!planPayload)return void res.status(400).json({success:!1,error:"Payload Missing."});const updatedPlan=await this.planService.updatePlan(req.params.id,planPayload);res.status(200).json({success:!0,result:updatedPlan})}catch(error){const appError=error;res.status(appError.statusCode||500).json({success:!1,error:appError?.message||"Failed to update plan"})}}async deletePlan(req,res){try{if(!req.params.id)return void res.status(400).json({success:!1,error:"Plan ID is required"});const removeRemoteData=!!req.params.removeData;await this.planService.deletePlan(req.params.id,removeRemoteData),res.status(200).json({success:!0,message:"Plan deleted successfully"})}catch(error){const appError=error;res.status(appError.statusCode||500).json({success:!1,error:appError?.message||"Failed to delete plan"})}}async performBackup(req,res){try{if(!req.params.id)return void res.status(400).json({success:!1,error:"Plan ID is required"});await this.planService.performBackup(req.params.id),res.status(200).json({success:!0,message:"Backup initiated successfully"})}catch(error){const appError=error;res.status(appError.statusCode||500).json({success:!1,error:appError?.message||"Failed to initiate backup"})}}async pauseBackup(req,res){try{if(!req.params.id)return void res.status(400).json({success:!1,error:"Plan ID is required"});await this.planService.pauseBackup(req.params.id),res.status(200).json({success:!0,message:"Backup paused successfully"})}catch(error){const appError=error;res.status(appError.statusCode||500).json({success:!1,error:appError.message||"Failed to pause backup"})}}async resumeBackup(req,res){try{if(!req.params.id)return void res.status(400).json({success:!1,error:"Plan ID is required"});await this.planService.resumeBackup(req.params.id),res.status(200).json({success:!0,message:"Backup resumed successfully"})}catch(error){const appError=error;res.status(appError.statusCode||500).json({success:!1,error:appError.message||"Failed to pause backup"})}}async pruneBackup(req,res){try{if(!req.params.id)return void res.status(400).json({success:!1,error:"Plan ID is required"});const pruneResult=await this.planService.pruneBackups(req.params.id);res.status(200).json({success:!0,message:pruneResult||"Backup pruned successfully"})}catch(error){const appError=error;res.status(appError.statusCode||500).json({success:!1,error:appError.message||"Failed to prune backups"})}}async unlockRepo(req,res){try{if(!req.params.id)return void res.status(400).json({success:!1,error:"Plan ID is required"});const result=await this.planService.unlockRepo(req.params.id);res.status(result.success?200:500).json(result)}catch(error){const appError=error;res.status(appError.statusCode||500).json({success:!1,error:appError.message||"Failed to unlock repository"})}}async getLogs(req,res){try{if(!req.params.id)return void res.status(400).json({success:!1,error:"Plan ID is required"});const logs=await this.planService.getPlanLogs(req.params.id);res.status(200).json({success:!0,logs:logs})}catch(error){const appError=error;return void res.status(appError.statusCode||500).json({success:!1,error:"Failed to get logs: "+appError.message})}}async downloadLogs(req,res){try{if(!req.params.id)return void res.status(400).json({success:!1,error:"Plan ID is required"});const fileStream=await this.planService.downloadPlanLogs(req.params.id);res.setHeader("Content-Type","text/plain"),res.setHeader("Content-Disposition",'attachment; filename="plan.log"'),fileStream.pipe(res)}catch(error){const appError=error;res.status(appError.statusCode||500).json({success:!1,error:`Failed to download logs: ${appError.message}`})}}}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"PlanController.js","sourceRoot":"","sources":["../../src/controllers/PlanController.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,15 @@
1
+ import { Request, Response } from 'express';
2
+ import { RestoreService } from '../services/RestoreService';
3
+ export declare class RestoreController {
4
+ protected restoreService: RestoreService;
5
+ constructor(restoreService: RestoreService);
6
+ listRestores(req: Request, res: Response): Promise<void>;
7
+ getRestore(req: Request, res: Response): Promise<void>;
8
+ getRestoreStats(req: Request, res: Response): Promise<void>;
9
+ deleteRestore(req: Request, res: Response): Promise<void>;
10
+ performDryRestore(req: Request, res: Response): Promise<void>;
11
+ performRestore(req: Request, res: Response): Promise<void>;
12
+ getRestoreProgress(req: Request, res: Response): Promise<void>;
13
+ cancelRestore(req: Request, res: Response): Promise<void>;
14
+ }
15
+ //# sourceMappingURL=RestoreController.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"RestoreController.d.ts","sourceRoot":"","sources":["../../src/controllers/RestoreController.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAC;AAC5C,OAAO,EAAE,cAAc,EAAE,MAAM,4BAA4B,CAAC;AAY5D,qBAAa,iBAAiB;IACjB,SAAS,CAAC,cAAc,EAAE,cAAc;gBAA9B,cAAc,EAAE,cAAc;IAE9C,YAAY,CAAC,GAAG,EAAE,OAAO,EAAE,GAAG,EAAE,QAAQ,GAAG,OAAO,CAAC,IAAI,CAAC;IASxD,UAAU,CAAC,GAAG,EAAE,OAAO,EAAE,GAAG,EAAE,QAAQ,GAAG,OAAO,CAAC,IAAI,CAAC;IAiBtD,eAAe,CAAC,GAAG,EAAE,OAAO,EAAE,GAAG,EAAE,QAAQ,GAAG,OAAO,CAAC,IAAI,CAAC;IAqB3D,aAAa,CAAC,GAAG,EAAE,OAAO,EAAE,GAAG,EAAE,QAAQ,GAAG,OAAO,CAAC,IAAI,CAAC;IAazD,iBAAiB,CAAC,GAAG,EAAE,OAAO,EAAE,GAAG,EAAE,QAAQ,GAAG,OAAO,CAAC,IAAI,CAAC;IA8B7D,cAAc,CAAC,GAAG,EAAE,OAAO,EAAE,GAAG,EAAE,QAAQ,GAAG,OAAO,CAAC,IAAI,CAAC;IA+B1D,kBAAkB,CAAC,GAAG,EAAE,OAAO,EAAE,GAAG,EAAE,QAAQ,GAAG,OAAO,CAAC,IAAI,CAAC;IAqB9D,aAAa,CAAC,GAAG,EAAE,OAAO,EAAE,GAAG,EAAE,QAAQ,GAAG,OAAO,CAAC,IAAI,CAAC;CAoB/D"}
@@ -0,0 +1 @@
1
+ export class RestoreController{restoreService;constructor(restoreService){this.restoreService=restoreService}async listRestores(req,res){try{const result=await this.restoreService.getAllRestores();res.json({success:!0,result:result})}catch(error){res.status(500).json({success:!1,error:"Failed to fetch restores"})}}async getRestore(req,res){try{req.params.id||res.status(400).json({success:!1,error:"Restore ID is required"});const restore=await this.restoreService.getRestore(req.params.id);if(!restore)return void res.status(404).json({success:!1,error:"Restore not found"});res.json({success:!0,result:restore})}catch(error){res.status(500).json({success:!1,error:"Failed to fetch restore"})}}async getRestoreStats(req,res){try{if(!req.params.id)return void res.status(400).json({success:!1,error:"Restore ID is required"});const statsRes=await this.restoreService.getRestoreStats(req.params.id);statsRes.success?res.json({success:!0,result:statsRes.result}):res.status(404).json({success:!1,error:"string"==typeof statsRes.result?statsRes.result:"Restore stats not found"})}catch(error){res.status(500).json({success:!1,error:"Failed to fetch restore stats"})}}async deleteRestore(req,res){try{req.params.id||res.status(400).json({success:!1,error:"Restore ID is required"}),await this.restoreService.deleteRestore(req.params.id),res.json({success:!0})}catch(error){res.status(500).json({success:!1,error:"Failed to delete restore"})}}async performDryRestore(req,res){const restorePayload=req.body;if(restorePayload&&restorePayload.backupId&&restorePayload.planId)try{const restoreResult=await this.restoreService.dryRestoreBackup(restorePayload.backupId,{target:restorePayload.target,overwrite:restorePayload.overwrite,includes:restorePayload.includes||[],excludes:restorePayload.excludes||[],delete:restorePayload.delete||!1});res.status(200).json({success:!0,result:restoreResult})}catch(error){res.status(500).json({success:!1,error:"Failed to restore plan"})}else res.status(400).json({success:!1,error:"Required fields missing: backupId, planId"})}async performRestore(req,res){const restorePayload=req.body;if(restorePayload&&restorePayload.backupId&&restorePayload.planId)try{const restoreResult=await this.restoreService.restoreBackup(restorePayload.backupId,{target:restorePayload.target,overwrite:restorePayload.overwrite,includes:restorePayload.includes||[],excludes:restorePayload.excludes||[],delete:restorePayload.delete||!1});res.status(200).json({success:!0,result:restoreResult})}catch(error){res.status(500).json({success:!1,error:"Failed to restore backup"})}else res.status(400).json({success:!1,error:"Required fields missing: Backup or Plan Id."})}async getRestoreProgress(req,res){if(req.params.id&&req.query.sourceId&&req.query.sourceType&&req.query.planId)try{const progressRes=await this.restoreService.getRestoreProgress(req.params.id);res.status(200).json(progressRes)}catch(error){res.status(500).json({success:!1,error:"Failed to retrieve Backup Progress"})}else res.status(400).json({success:!1,error:"Backup, Device or Plan ID is missing"})}async cancelRestore(req,res){if(req.params.id)try{const cancelResult=await this.restoreService.cancelRestore(req.params.id);return void res.status(200).json(cancelResult)}catch(error){res.status(500).json({success:!1,error:"Failed to cancel Download Generation. "+(error.message||"")})}else res.status(400).json({success:!1,error:"Backup ID or Restore ID is required"})}}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"RestoreController.js","sourceRoot":"","sources":["../../src/controllers/RestoreController.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,13 @@
1
+ import { Request, Response } from 'express';
2
+ import { SettingsService } from '../services/SettingsService';
3
+ export declare class SettingsController {
4
+ protected settingsService: SettingsService;
5
+ constructor(settingsService: SettingsService);
6
+ getMainSettings(req: Request, res: Response): Promise<void>;
7
+ getSettings(req: Request, res: Response): Promise<void>;
8
+ updateSettings(req: Request, res: Response): Promise<void>;
9
+ validateIntegration(req: Request, res: Response): Promise<void>;
10
+ getAppLogs(req: Request, res: Response): Promise<void>;
11
+ downloadAppLogs(req: Request, res: Response): Promise<void>;
12
+ }
13
+ //# sourceMappingURL=SettingsController.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SettingsController.d.ts","sourceRoot":"","sources":["../../src/controllers/SettingsController.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAC;AAC5C,OAAO,EAAE,eAAe,EAAE,MAAM,6BAA6B,CAAC;AAG9D,qBAAa,kBAAkB;IAClB,SAAS,CAAC,eAAe,EAAE,eAAe;gBAAhC,eAAe,EAAE,eAAe;IAEhD,eAAe,CAAC,GAAG,EAAE,OAAO,EAAE,GAAG,EAAE,QAAQ,GAAG,OAAO,CAAC,IAAI,CAAC;IAgB3D,WAAW,CAAC,GAAG,EAAE,OAAO,EAAE,GAAG,EAAE,QAAQ,GAAG,OAAO,CAAC,IAAI,CAAC;IAuBvD,cAAc,CAAC,GAAG,EAAE,OAAO,EAAE,GAAG,EAAE,QAAQ,GAAG,OAAO,CAAC,IAAI,CAAC;IA6B1D,mBAAmB,CAAC,GAAG,EAAE,OAAO,EAAE,GAAG,EAAE,QAAQ,GAAG,OAAO,CAAC,IAAI,CAAC;IAiC/D,UAAU,CAAC,GAAG,EAAE,OAAO,EAAE,GAAG,EAAE,QAAQ,GAAG,OAAO,CAAC,IAAI,CAAC;IAsBtD,eAAe,CAAC,GAAG,EAAE,OAAO,EAAE,GAAG,EAAE,QAAQ,GAAG,OAAO,CAAC,IAAI,CAAC;CA6BjE"}
@@ -0,0 +1 @@
1
+ export class SettingsController{settingsService;constructor(settingsService){this.settingsService=settingsService}async getMainSettings(req,res){try{const appSettings=await this.settingsService.getMainSettings();return void res.status(appSettings?200:404).json({success:!0,result:appSettings})}catch(error){res.status(500).json({success:!1,error:"couldn't Retrieve App settings."})}}async getSettings(req,res){if(req.params.id)try{const appSettings=await this.settingsService.getSettings(parseInt(req.params.id,10));res.status(appSettings?200:404).json({success:!0,result:appSettings})}catch(error){res.status(500).json({success:!1,error:"couldn't Retrieve settings for the given ID."})}else res.status(400).json({success:!1,error:"Settings ID is required"})}async updateSettings(req,res){if(!req.params.id||!req.body.settings)return void res.status(400).json({success:!1,error:"Settings ID or Settings Data Missing"});const appSettings=req.body.settings;try{const updatedSettings=await this.settingsService.updateSettings(parseInt(req.params.id,10),appSettings);return void res.status(updatedSettings?200:404).json({success:!0,result:updatedSettings})}catch(error){return void res.status(500).json({success:!1,error:error instanceof Error?error.message:"Failed to update settings"})}}async validateIntegration(req,res){if(!(req.body.settingsID&&req.body.type&&req.body.settings&&req.body.test))return void res.status(400).json({success:!1,error:"Integration Payload Missing."});const appSettings=req.body.settings,integrationType=req.body.type;try{return await this.settingsService.validateIntegration(parseInt(req.body.settingsID,10),integrationType,req.body.test,appSettings),void res.status(200).json({success:!0,result:"Email Sent Successfully"})}catch(error){return void res.status(500).json({success:!1,error:error instanceof Error?error.message:`Failed to send test email using ${integrationType}.`})}}async getAppLogs(req,res){try{if(!req.params.id)return void res.status(400).json({success:!1,error:"Settings ID is required"});const logs=await this.settingsService.getAppLogs(parseInt(req.params.id,10));return void res.status(200).json({success:!0,result:logs})}catch(error){return void res.status(500).json({success:!1,error:"Failed to get logs: "+error.message})}}async downloadAppLogs(req,res){if(req.params.id)try{const logFileStream=await this.settingsService.getAppLogsFile();return res.setHeader("Content-Type","text/plain"),res.setHeader("Content-Disposition",'attachment; filename="app.log"'),void logFileStream.pipe(res)}catch(error){return void res.status(500).json({success:!1,error:`Failed to download logs: ${error.message}`})}else res.status(400).json({success:!1,error:"Settings ID is required"})}}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SettingsController.js","sourceRoot":"","sources":["../../src/controllers/SettingsController.ts"],"names":[],"mappings":"AAIA,MAAM,OAAO,kBAAkB;IACR;IAAtB,YAAsB,eAAgC;QAAhC,oBAAe,GAAf,eAAe,CAAiB;IAAG,CAAC;IAE1D,KAAK,CAAC,eAAe,CAAC,GAAY,EAAE,GAAa;QAChD,IAAI,CAAC;YACJ,MAAM,WAAW,GAAG,MAAM,IAAI,CAAC,eAAe,CAAC,eAAe,EAAE,CAAC;YACjE,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC;gBACxC,OAAO,EAAE,IAAI;gBACb,MAAM,EAAE,WAAW;aACnB,CAAC,CAAC;YACH,OAAO;QACR,CAAC;QAAC,OAAO,KAAU,EAAE,CAAC;YACrB,GAAG,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC;gBACpB,OAAO,EAAE,KAAK;gBACd,KAAK,EAAE,iCAAiC;aACxC,CAAC,CAAC;QACJ,CAAC;IACF,CAAC;IAED,KAAK,CAAC,WAAW,CAAC,GAAY,EAAE,GAAa;QAC5C,IAAI,CAAC,GAAG,CAAC,MAAM,CAAC,EAAE,EAAE,CAAC;YACpB,GAAG,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC;gBACpB,OAAO,EAAE,KAAK;gBACd,KAAK,EAAE,yBAAyB;aAChC,CAAC,CAAC;YACH,OAAO;QACR,CAAC;QAED,IAAI,CAAC;YACJ,MAAM,WAAW,GAAG,MAAM,IAAI,CAAC,eAAe,CAAC,WAAW,CAAC,QAAQ,CAAC,GAAG,CAAC,MAAM,CAAC,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC;YACxF,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC;gBACxC,OAAO,EAAE,IAAI;gBACb,MAAM,EAAE,WAAW;aACnB,CAAC,CAAC;QACJ,CAAC;QAAC,OAAO,KAAU,EAAE,CAAC;YACrB,GAAG,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC;gBACpB,OAAO,EAAE,KAAK;gBACd,KAAK,EAAE,8CAA8C;aACrD,CAAC,CAAC;QACJ,CAAC;IACF,CAAC;IAED,KAAK,CAAC,cAAc,CAAC,GAAY,EAAE,GAAa;QAC/C,IAAI,CAAC,GAAG,CAAC,MAAM,CAAC,EAAE,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,QAAQ,EAAE,CAAC;YAC1C,GAAG,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC;gBACpB,OAAO,EAAE,KAAK;gBACd,KAAK,EAAE,sCAAsC;aAC7C,CAAC,CAAC;YACH,OAAO;QACR,CAAC;QACD,MAAM,WAAW,GAAG,GAAG,CAAC,IAAI,CAAC,QAAuB,CAAC;QAErD,IAAI,CAAC;YACJ,MAAM,eAAe,GAAG,MAAM,IAAI,CAAC,eAAe,CAAC,cAAc,CAChE,QAAQ,CAAC,GAAG,CAAC,MAAM,CAAC,EAAE,EAAE,EAAE,CAAC,EAC3B,WAAW,CACX,CAAC;YACF,GAAG,CAAC,MAAM,CAAC,eAAe,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC;gBAC5C,OAAO,EAAE,IAAI;gBACb,MAAM,EAAE,eAAe;aACvB,CAAC,CAAC;YACH,OAAO;QACR,CAAC;QAAC,OAAO,KAAU,EAAE,CAAC;YACrB,GAAG,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC;gBACpB,OAAO,EAAE,KAAK;gBACd,KAAK,EAAE,KAAK,YAAY,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,2BAA2B;aAC3E,CAAC,CAAC;YACH,OAAO;QACR,CAAC;IACF,CAAC;IAED,KAAK,CAAC,mBAAmB,CAAC,GAAY,EAAE,GAAa;QACpD,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,UAAU,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,IAAI,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,QAAQ,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,IAAI,EAAE,CAAC;YACpF,OAAO,CAAC,GAAG,CAAC,YAAY,EAAE,GAAG,CAAC,IAAI,CAAC,CAAC;YACpC,GAAG,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC;gBACpB,OAAO,EAAE,KAAK;gBACd,KAAK,EAAE,8BAA8B;aACrC,CAAC,CAAC;YACH,OAAO;QACR,CAAC;QACD,MAAM,WAAW,GAAG,GAAG,CAAC,IAAI,CAAC,QAAuB,CAAC;QACrD,MAAM,eAAe,GAAG,GAAG,CAAC,IAAI,CAAC,IAAwB,CAAC;QAE1D,IAAI,CAAC;YACJ,MAAM,IAAI,CAAC,eAAe,CAAC,mBAAmB,CAC7C,QAAQ,CAAC,GAAG,CAAC,IAAI,CAAC,UAAU,EAAE,EAAE,CAAC,EACjC,eAAe,EACf,GAAG,CAAC,IAAI,CAAC,IAAI,EACb,WAAW,CACX,CAAC;YACF,GAAG,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,EAAE,yBAAyB,EAAE,CAAC,CAAC;YAC3E,OAAO;QACR,CAAC;QAAC,OAAO,KAAc,EAAE,CAAC;YACzB,GAAG,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC;gBACpB,OAAO,EAAE,KAAK;gBACd,KAAK,EACJ,KAAK,YAAY,KAAK;oBACrB,CAAC,CAAC,KAAK,CAAC,OAAO;oBACf,CAAC,CAAC,mCAAmC,eAAe,GAAG;aACzD,CAAC,CAAC;YACH,OAAO;QACR,CAAC;IACF,CAAC;IAED,KAAK,CAAC,UAAU,CAAC,GAAY,EAAE,GAAa;QAC3C,IAAI,CAAC;YACJ,IAAI,CAAC,GAAG,CAAC,MAAM,CAAC,EAAE,EAAE,CAAC;gBACpB,GAAG,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC;oBACpB,OAAO,EAAE,KAAK;oBACd,KAAK,EAAE,yBAAyB;iBAChC,CAAC,CAAC;gBACH,OAAO;YACR,CAAC;YAED,MAAM,IAAI,GAAG,MAAM,IAAI,CAAC,eAAe,CAAC,UAAU,CAAC,QAAQ,CAAC,GAAG,CAAC,MAAM,CAAC,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC;YAChF,GAAG,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC,CAAC;YACtD,OAAO;QACR,CAAC;QAAC,OAAO,KAAU,EAAE,CAAC;YACrB,GAAG,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC;gBACpB,OAAO,EAAE,KAAK;gBACd,KAAK,EAAE,sBAAsB,GAAG,KAAK,CAAC,OAAO;aAC7C,CAAC,CAAC;YACH,OAAO;QACR,CAAC;IACF,CAAC;IAED,KAAK,CAAC,eAAe,CAAC,GAAY,EAAE,GAAa;QAChD,IAAI,CAAC,GAAG,CAAC,MAAM,CAAC,EAAE,EAAE,CAAC;YACpB,GAAG,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC;gBACpB,OAAO,EAAE,KAAK;gBACd,KAAK,EAAE,yBAAyB;aAChC,CAAC,CAAC;YACH,OAAO;QACR,CAAC;QAED,IAAI,CAAC;YACJ,MAAM,aAAa,GAAG,MAAM,IAAI,CAAC,eAAe,CAAC,cAAc,EAAE,CAAC;YAElE,gCAAgC;YAChC,GAAG,CAAC,SAAS,CAAC,cAAc,EAAE,YAAY,CAAC,CAAC;YAC5C,GAAG,CAAC,SAAS,CAAC,qBAAqB,EAAE,gCAAgC,CAAC,CAAC;YAEvE,2CAA2C;YAC3C,aAAa,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;YAExB,gEAAgE;YAChE,OAAO;QACR,CAAC;QAAC,OAAO,KAAU,EAAE,CAAC;YACrB,GAAG,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC;gBACpB,OAAO,EAAE,KAAK;gBACd,KAAK,EAAE,4BAA4B,KAAK,CAAC,OAAO,EAAE;aAClD,CAAC,CAAC;YACH,OAAO;QACR,CAAC;IACF,CAAC;CACD"}
@@ -0,0 +1,15 @@
1
+ import { Request, Response } from 'express';
2
+ import { StorageService } from '../services/StorageService';
3
+ export declare class StorageController {
4
+ protected storageService: StorageService;
5
+ constructor(storageService: StorageService);
6
+ listStorages(req: Request, res: Response): Promise<void>;
7
+ listAvailableStorageTypes(req: Request, res: Response): Promise<void>;
8
+ getStorage(req: Request, res: Response): Promise<void>;
9
+ createStorage(req: Request, res: Response): Promise<void>;
10
+ updateStorage(req: Request, res: Response): Promise<void>;
11
+ deleteStorage(req: Request, res: Response): Promise<void>;
12
+ verifyStorage(req: Request, res: Response): Promise<void>;
13
+ authorizeStorage(req: Request, res: Response): Promise<void>;
14
+ }
15
+ //# sourceMappingURL=StorageController.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"StorageController.d.ts","sourceRoot":"","sources":["../../src/controllers/StorageController.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAC;AAE5C,OAAO,EAAE,cAAc,EAAE,MAAM,4BAA4B,CAAC;AAE5D,qBAAa,iBAAiB;IACjB,SAAS,CAAC,cAAc,EAAE,cAAc;gBAA9B,cAAc,EAAE,cAAc;IAE9C,YAAY,CAAC,GAAG,EAAE,OAAO,EAAE,GAAG,EAAE,QAAQ,GAAG,OAAO,CAAC,IAAI,CAAC;IASxD,yBAAyB,CAAC,GAAG,EAAE,OAAO,EAAE,GAAG,EAAE,QAAQ,GAAG,OAAO,CAAC,IAAI,CAAC;IASrE,UAAU,CAAC,GAAG,EAAE,OAAO,EAAE,GAAG,EAAE,QAAQ,GAAG,OAAO,CAAC,IAAI,CAAC;IAiBtD,aAAa,CAAC,GAAG,EAAE,OAAO,EAAE,GAAG,EAAE,QAAQ,GAAG,OAAO,CAAC,IAAI,CAAC;IAezD,aAAa,CAAC,GAAG,EAAE,OAAO,EAAE,GAAG,EAAE,QAAQ,GAAG,OAAO,CAAC,IAAI,CAAC;IAqBzD,aAAa,CAAC,GAAG,EAAE,OAAO,EAAE,GAAG,EAAE,QAAQ,GAAG,OAAO,CAAC,IAAI,CAAC;IAkBzD,aAAa,CAAC,GAAG,EAAE,OAAO,EAAE,GAAG,EAAE,QAAQ,GAAG,OAAO,CAAC,IAAI,CAAC;IAczD,gBAAgB,CAAC,GAAG,EAAE,OAAO,EAAE,GAAG,EAAE,QAAQ,GAAG,OAAO,CAAC,IAAI,CAAC;CAYlE"}
@@ -0,0 +1 @@
1
+ import{StorageLogger}from"../utils/logger";export class StorageController{storageService;constructor(storageService){this.storageService=storageService}async listStorages(req,res){try{const allStorages=await this.storageService.getStorages();res.json({success:!0,result:allStorages})}catch(error){res.status(500).json({success:!1,error:"Failed to fetch storages"})}}async listAvailableStorageTypes(req,res){try{const result=await this.storageService.getAvailableStorageTypes();res.json({success:!0,result:result})}catch(error){res.status(500).json({success:!1,error:"Failed to fetch available storages"})}}async getStorage(req,res){try{if(!req.params.id)return void res.status(400).json({success:!1,error:"Storage ID is required"});const storage=await this.storageService.getStorage(req.params.id);res.json({success:!0,result:storage})}catch(error){const notFound=error?.message.includes("not found");res.status(notFound?404:500).json({success:!1,error:error?.message||"Failed to fetch storage"})}}async createStorage(req,res){try{if(!(req.body.name&&req.body.type&&req.body.settings&&req.body.credentials))return void res.status(400).json({success:!1,error:"Name, type, credentials and settings are required"});const newStorage=await this.storageService.createStorage(req.body);res.status(201).json({success:!0,result:newStorage})}catch(error){res.status(500).json({success:!1,error:error?.message||"Failed to create storage"})}}async updateStorage(req,res){try{if(!req.params.id)return void res.status(400).json({success:!1,error:"Storage ID is required"});const result=await this.storageService.updateStorage(req.params.id,req.body);res.json({success:!0,result:result})}catch(error){StorageLogger.error(`Error updating storage #${req.params.id}. Reason : ${error?.message.toString()||"Unknown Error"}`),res.status(500).json({success:!1,error:"Failed to update storage"})}}async deleteStorage(req,res){try{if(!req.params.id)return void res.status(400).json({success:!1,error:"Storage ID is required"});await this.storageService.deleteStorage(req.params.id),res.json({success:!0})}catch(error){StorageLogger.error(`Error deleting storage #${req.params.id}. Reason : ${error?.message.toString()||"Unknown Error"}`),res.status(500).json({success:!1,error:"Failed to delete storage"})}}async verifyStorage(req,res){try{if(!req.params.id)return void res.status(400).json({success:!1,error:"Storage ID is required"});const result=await this.storageService.verifyStorage(req.params.id);res.json({success:!0,result:result})}catch(error){res.status(500).json({success:!1,error:"Failed to verify storage"})}}async authorizeStorage(req,res){try{if(!req.query.type)return void res.status(400).json({success:!1,error:"Storage type is required"});const rcloneAuthResp=await this.storageService.authorizeStorage(req.query.type);res.status(200).json({success:!0,result:rcloneAuthResp})}catch(error){res.status(500).json({success:!1,error:"Failed to authorize storage"})}}}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"StorageController.js","sourceRoot":"","sources":["../../src/controllers/StorageController.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,7 @@
1
+ import { Request, Response } from 'express';
2
+ export declare class UserController {
3
+ validateUser(req: Request, res: Response): Promise<void>;
4
+ loginUser(req: Request, res: Response): Promise<void>;
5
+ logoutUser(req: Request, res: Response): Promise<void>;
6
+ }
7
+ //# sourceMappingURL=UserController.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"UserController.d.ts","sourceRoot":"","sources":["../../src/controllers/UserController.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAC;AAG5C,qBAAa,cAAc;IACpB,YAAY,CAAC,GAAG,EAAE,OAAO,EAAE,GAAG,EAAE,QAAQ,GAAG,OAAO,CAAC,IAAI,CAAC;IAIxD,SAAS,CAAC,GAAG,EAAE,OAAO,EAAE,GAAG,EAAE,QAAQ,GAAG,OAAO,CAAC,IAAI,CAAC;IA6BrD,UAAU,CAAC,GAAG,EAAE,OAAO,EAAE,GAAG,EAAE,QAAQ,GAAG,OAAO,CAAC,IAAI,CAAC;CAW5D"}
@@ -0,0 +1 @@
1
+ import{configService}from"../services/ConfigService";import jwt from"jsonwebtoken";export class UserController{async validateUser(req,res){res.status(200).json({success:!0})}async loginUser(req,res){const{username:username,password:password}=req.body;if(!username||!password)return void res.status(401).json({error:"Username & Password Missing"});const theUserName=configService.config.USER_NAME;if(username===theUserName&&password===configService.config.USER_PASSWORD){const token=jwt.sign({user:theUserName},configService.config.SECRET),sessionDuration=configService.config.SESSION_DURATION||7;return res.cookie("token",token,{httpOnly:!0,sameSite:"lax",maxAge:24*sessionDuration*60*60*1e3}),void res.status(200).json({success:!0,error:null})}const error=username!==theUserName?"Incorrect Username":"Incorrect Password";res.status(401).json({success:!1,error:error})}async logoutUser(req,res){res.clearCookie("token",{httpOnly:!0,sameSite:"lax"}),res.status(200).json({success:!0,message:"Logged out successfully"})}}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"UserController.js","sourceRoot":"","sources":["../../src/controllers/UserController.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,2BAA2B,CAAC;AAE1D,OAAO,GAAG,MAAM,cAAc,CAAC;AAE/B,MAAM,OAAO,cAAc;IAC1B,KAAK,CAAC,YAAY,CAAC,GAAY,EAAE,GAAa;QAC7C,GAAG,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,EAAE,OAAO,EAAE,IAAI,EAAE,CAAC,CAAC;IACzC,CAAC;IAED,KAAK,CAAC,SAAS,CAAC,GAAY,EAAE,GAAa;QAC1C,MAAM,EAAE,QAAQ,EAAE,QAAQ,EAAE,GAAG,GAAG,CAAC,IAAI,CAAC;QACxC,IAAI,CAAC,QAAQ,IAAI,CAAC,QAAQ,EAAE,CAAC;YAC5B,GAAG,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,EAAE,KAAK,EAAE,6BAA6B,EAAE,CAAC,CAAC;YAC/D,OAAO;QACR,CAAC;QAED,MAAM,WAAW,GAAG,aAAa,CAAC,MAAM,CAAC,SAAS,CAAC;QAEnD,IAAI,QAAQ,KAAK,WAAW,IAAI,QAAQ,KAAK,aAAa,CAAC,MAAM,CAAC,aAAa,EAAE,CAAC;YACjF,MAAM,KAAK,GAAG,GAAG,CAAC,IAAI,CAAC,EAAE,IAAI,EAAE,WAAW,EAAE,EAAE,aAAa,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;YAE3E,iCAAiC;YACjC,MAAM,eAAe,GAAG,aAAa,CAAC,MAAM,CAAC,gBAAgB,IAAI,CAAC,CAAC;YACnE,GAAG,CAAC,MAAM,CAAC,OAAO,EAAE,KAAK,EAAE;gBAC1B,QAAQ,EAAE,IAAI;gBACd,QAAQ,EAAE,KAAK;gBACf,MAAM,EAAE,eAAe,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,IAAI;aAC7C,CAAC,CAAC;YAEH,GAAG,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,EAAE,OAAO,EAAE,IAAI,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC,CAAC;YACrD,OAAO;QACR,CAAC;QAED,MAAM,KAAK,GAAG,QAAQ,KAAK,WAAW,CAAC,CAAC,CAAC,oBAAoB,CAAC,CAAC,CAAC,oBAAoB,CAAC;QACrF,GAAG,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,EAAE,OAAO,EAAE,KAAK,EAAE,KAAK,EAAE,CAAC,CAAC;QAChD,OAAO;IACR,CAAC;IAED,KAAK,CAAC,UAAU,CAAC,GAAY,EAAE,GAAa;QAC3C,GAAG,CAAC,WAAW,CAAC,OAAO,EAAE;YACxB,QAAQ,EAAE,IAAI;YACd,QAAQ,EAAE,KAAK;SACf,CAAC,CAAC;QAEH,GAAG,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC;YACpB,OAAO,EAAE,IAAI;YACb,OAAO,EAAE,yBAAyB;SAClC,CAAC,CAAC;IACJ,CAAC;CACD"}
@@ -0,0 +1,5 @@
1
+ import { type Express } from 'express';
2
+ export declare function createApp(): Promise<{
3
+ app: Express;
4
+ }>;
5
+ //# sourceMappingURL=createApp.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"createApp.d.ts","sourceRoot":"","sources":["../src/createApp.ts"],"names":[],"mappings":"AAEA,OAAgB,EAAE,KAAK,OAAO,EAAE,MAAM,SAAS,CAAC;AA8ChD,wBAAsB,SAAS,IAAI,OAAO,CAAC;IAAE,GAAG,EAAE,OAAO,CAAA;CAAE,CAAC,CAwI3D"}
@@ -0,0 +1 @@
1
+ import path from"path";import{fileURLToPath}from"url";import express from"express";import cors from"cors";import rateLimit from"express-rate-limit";import{db}from"./db";import{createPlanRouter}from"./routes/plans";import{createDeviceRouter}from"./routes/devices";import{createStorageRouter}from"./routes/storages";import{createRestoreRouter}from"./routes/restores";import{createUserRouter}from"./routes/users";import{createSettingsRouter}from"./routes/settings";import{createHealthRouter}from"./routes/health";import{PlanController}from"./controllers/PlanController";import{DeviceController}from"./controllers/DeviceController";import{StorageController}from"./controllers/StorageController";import{RestoreController}from"./controllers/RestoreController";import{UserController}from"./controllers/UserController";import{SettingsController}from"./controllers/SettingsController";import{createBackupRouter}from"./routes/backups";import{BackupController}from"./controllers/BackupController";import versionMiddleware from"./middlewares/versionMiddleware";import{PlanStore}from"./stores/PlanStore";import{BackupStore}from"./stores/BackupStore";import{PlanService}from"./services/PlanService";import{RestoreStore}from"./stores/RestoreStore";import{SettingsStore}from"./stores/SettingsStore";import{StorageStore}from"./stores/StorageStore";import{DeviceStore}from"./stores/DeviceStore";import{BaseBackupManager}from"./managers";import{BackupEventListener}from"./services/listeners/BackupEventListener";import{BackupService}from"./services/BackupServices";import{BaseSnapshotManager}from"./managers/BaseSnapshotManager";import{RestoreService}from"./services/RestoreService";import{RestoreEventListener}from"./services/listeners/RestoreEventListener";import{DownloadEventListener}from"./services/listeners/DownloadEventListener";import{DeviceService}from"./services/DeviceService";import{BaseSystemManager}from"./managers/BaseSystemManager";import{BaseStorageManager}from"./managers/BaseStorageManager";import{StorageService}from"./services/StorageService";import{SettingsService}from"./services/SettingsService";import{systemTaskManager}from"./jobs/SystemTaskManager";import{jobProcessor}from"./jobs/JobProcessor";import{initializeLogger}from"./utils/logger";import{configService}from"./services/ConfigService";import{BaseRestoreManager}from"./managers/BaseRestoreManager";export async function createApp(){initializeLogger();const planStore=new PlanStore(db),backupStore=new BackupStore(db),storageStore=new StorageStore(db),deviceStore=new DeviceStore(db),restoreStore=new RestoreStore(db),settingsStore=new SettingsStore(db),localPlanAgent=new BaseBackupManager,localBackupAgent=new BaseSnapshotManager,localRestoreAgent=new BaseRestoreManager,localSystemAgent=new BaseSystemManager,localStorageAgent=new BaseStorageManager;new BackupEventListener(localPlanAgent,planStore,backupStore),new RestoreEventListener(localRestoreAgent,planStore,backupStore,restoreStore),new DownloadEventListener(localBackupAgent,backupStore);const planService=new PlanService(localPlanAgent,planStore,backupStore,storageStore,deviceStore,null),backupService=new BackupService(localBackupAgent,localPlanAgent,planStore,backupStore,restoreStore,storageStore,null),restoreService=new RestoreService(localRestoreAgent,planStore,backupStore,restoreStore,storageStore,null),deviceService=new DeviceService(localSystemAgent,deviceStore,planStore,storageStore,null),storageService=new StorageService(localStorageAgent,localSystemAgent,storageStore,planStore,null),settingsService=new SettingsService(settingsStore),planController=new PlanController(planService),backupController=new BackupController(backupService),restoreController=new RestoreController(restoreService),deviceController=new DeviceController(deviceService),storageController=new StorageController(storageService),settingsController=new SettingsController(settingsService),userController=new UserController,app=express();app.use(cors({origin:[process.env.APP_URL,configService.config.APP_URL||"http://mypluton.com"],credentials:!0,methods:["GET","POST","PUT","DELETE","OPTIONS"],exposedHeaders:["X-App-Version","X-Server-OS"]})),app.use(versionMiddleware),app.use(express.json());const __filename=fileURLToPath(import.meta.url),__dirname=path.dirname(__filename),publicPath=path.join(__dirname,"..","public");app.use(express.static(publicPath));const apiLimiter=rateLimit({windowMs:9e5,max:500,standardHeaders:!0,legacyHeaders:!1});return app.use("/api/",apiLimiter),app.use("/api/user",createUserRouter(userController)),app.use("/api/plans",createPlanRouter(planController)),app.use("/api/backups",createBackupRouter(backupController)),app.use("/api/devices",createDeviceRouter(deviceController)),app.use("/api/storages",createStorageRouter(storageController)),app.use("/api/restores",createRestoreRouter(restoreController)),app.use("/api/settings",createSettingsRouter(settingsController)),app.use("/api/health",createHealthRouter()),app.get("*",(req,res)=>{res.sendFile(path.join(publicPath,"index.html"))}),systemTaskManager.initialize(),jobProcessor.registerTasks({backupManager:localPlanAgent,restoreManager:localRestoreAgent}),jobProcessor.start(),{app:app}}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"createApp.js","sourceRoot":"","sources":["../src/createApp.ts"],"names":[],"mappings":"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"}