aboutsummaryrefslogtreecommitdiff
path: root/modern/src/reports/common
diff options
context:
space:
mode:
Diffstat (limited to 'modern/src/reports/common')
-rw-r--r--modern/src/reports/common/scheduleReport.js27
1 files changed, 27 insertions, 0 deletions
diff --git a/modern/src/reports/common/scheduleReport.js b/modern/src/reports/common/scheduleReport.js
new file mode 100644
index 00000000..169190e2
--- /dev/null
+++ b/modern/src/reports/common/scheduleReport.js
@@ -0,0 +1,27 @@
+export default async (deviceIds, groupIds, report) => {
+ console.log(JSON.stringify(report));
+ const response = await fetch('/api/reports', {
+ method: 'POST',
+ headers: { 'Content-Type': 'application/json' },
+ body: JSON.stringify(report),
+ });
+ if (response.ok) {
+ report = await response.json();
+ if (deviceIds.length) {
+ await fetch('/api/permissions/bulk', {
+ method: 'POST',
+ headers: { 'Content-Type': 'application/json' },
+ body: JSON.stringify(deviceIds.map((id) => ({ deviceId: id, reportId: report.id }))),
+ });
+ }
+ if (groupIds.length) {
+ await fetch('/api/permissions/bulk', {
+ method: 'POST',
+ headers: { 'Content-Type': 'application/json' },
+ body: JSON.stringify(groupIds.map((id) => ({ groupId: id, reportId: report.id }))),
+ });
+ }
+ return null;
+ }
+ return response.text();
+};