1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
|
import { ValidatedMethod } from 'meteor/mdg:validated-method';
import * as R from 'ramda';
import { ScheduledScans } from './scheduled-scans';
export const insert = new ValidatedMethod({
name: 'scheduled-scans.insert',
validate: ScheduledScans.simpleSchema()
.pick([
'environment',
'object_id',
'log_level',
'clear',
'loglevel',
'scan_only_inventory',
'scan_only_links',
'scan_only_cliques',
'freq',
]).validator({ clean: true, filter: false }),
run({
environment,
object_id,
log_level,
clear,
loglevel,
scan_only_inventory,
scan_only_links,
scan_only_cliques,
freq,
}) {
let scan = ScheduledScans.schema.clean({ });
scan = R.merge(scan, {
environment,
object_id,
log_level,
clear,
loglevel,
scan_only_inventory,
scan_only_links,
scan_only_cliques,
freq,
submit_timestamp: Date.now()
});
ScheduledScans.insert(scan);
},
});
export const update = new ValidatedMethod({
name: 'scheduled_scans.update',
validate: ScheduledScans.simpleSchema()
.pick([
'_id',
'environment',
'object_id',
'log_level',
'clear',
'loglevel',
'scan_only_inventory',
'scan_only_links',
'scan_only_cliques',
'freq',
]).validator({ clean: true, filter: false }),
run({
_id,
environment,
object_id,
log_level,
clear,
loglevel,
scan_only_inventory,
scan_only_links,
scan_only_cliques,
freq,
}) {
let item = ScheduledScans.findOne({ _id: _id });
console.log('scheduled scan for update: ', item);
item = R.merge(R.pick([
'environment',
'object_id',
'log_level',
'clear',
'loglevel',
'scan_only_inventory',
'scan_only_links',
'scan_only_cliques',
'submit_timestamp',
'freq',
], item), {
environment,
object_id,
log_level,
clear,
loglevel,
scan_only_inventory,
scan_only_links,
scan_only_cliques,
freq,
submit_timestamp: Date.now()
});
ScheduledScans.update({ _id: _id }, { $set: item });
}
});
export const remove = new ValidatedMethod({
name: 'scheduled_scans.remove',
validate: ScheduledScans.simpleSchema()
.pick([
'_id',
]).validator({ clean: true, filter: false }),
run({
_id
}) {
let item = ScheduledScans.findOne({ _id: _id });
console.log('scheduled scan for remove: ', item);
ScheduledScans.remove({ _id: _id });
}
});
|