|
26 | 26 |
|
27 | 27 | RecursionDepth = contextvars.ContextVar('RecursionDepth', default=0)
|
28 | 28 |
|
29 |
| -# TODO: standardize locations for form/prop/tags regex |
30 |
| - |
31 |
| -tagrestr = r'((\w+|\*|\*\*)\.)*(\w+|\*|\*\*)' # tag with optional single or double * as segment |
32 |
| -_tagre, _formre, _propre = (f'^{re}$' for re in (tagrestr, s_grammar.formrestr, s_grammar.proporunivrestr)) |
33 |
| - |
34 |
| -TrigSchema = { |
35 |
| - 'type': 'object', |
36 |
| - 'properties': { |
37 |
| - 'iden': {'type': 'string', 'pattern': s_config.re_iden}, |
38 |
| - 'user': {'type': 'string', 'pattern': s_config.re_iden}, |
39 |
| - 'creator': {'type': 'string', 'pattern': s_config.re_iden}, |
40 |
| - 'view': {'type': 'string', 'pattern': s_config.re_iden}, |
41 |
| - 'form': {'type': 'string', 'pattern': _formre}, |
42 |
| - 'n2form': {'type': 'string', 'pattern': _formre}, |
43 |
| - 'tag': {'type': 'string', 'pattern': _tagre}, |
44 |
| - 'prop': {'type': 'string', 'pattern': _propre}, |
45 |
| - 'verb': {'type': 'string', }, |
46 |
| - 'name': {'type': 'string', }, |
47 |
| - 'doc': {'type': 'string', }, |
48 |
| - 'cond': {'enum': ['node:add', 'node:del', 'tag:add', 'tag:del', 'prop:set', 'edge:add', 'edge:del']}, |
49 |
| - 'storm': {'type': 'string'}, |
50 |
| - 'async': {'type': 'boolean'}, |
51 |
| - 'enabled': {'type': 'boolean'}, |
52 |
| - 'created': {'type': 'integer', 'minimum': 0}, |
53 |
| - }, |
54 |
| - 'additionalProperties': True, |
55 |
| - 'required': ['iden', 'user', 'storm', 'enabled', 'creator'], |
56 |
| - 'allOf': [ |
57 |
| - { |
58 |
| - 'if': {'properties': {'cond': {'const': 'node:add'}}}, |
59 |
| - 'then': {'required': ['form']}, |
60 |
| - }, |
61 |
| - { |
62 |
| - 'if': {'properties': {'cond': {'const': 'node:del'}}}, |
63 |
| - 'then': {'required': ['form']}, |
64 |
| - }, |
65 |
| - { |
66 |
| - 'if': {'properties': {'cond': {'const': 'tag:add'}}}, |
67 |
| - 'then': {'required': ['tag']}, |
68 |
| - }, |
69 |
| - { |
70 |
| - 'if': {'properties': {'cond': {'const': 'tag:del'}}}, |
71 |
| - 'then': {'required': ['tag']}, |
72 |
| - }, |
73 |
| - { |
74 |
| - 'if': {'properties': {'cond': {'const': 'prop:set'}}}, |
75 |
| - 'then': {'required': ['prop']}, |
76 |
| - }, |
77 |
| - { |
78 |
| - 'if': {'properties': {'cond': {'const': 'edge:add'}}}, |
79 |
| - 'then': {'required': ['verb']}, |
80 |
| - }, |
81 |
| - { |
82 |
| - 'if': {'properties': {'cond': {'const': 'edge:del'}}}, |
83 |
| - 'then': {'required': ['verb']}, |
84 |
| - }, |
85 |
| - ], |
86 |
| -} |
87 |
| -TrigSchemaValidator = s_config.getJsValidator(TrigSchema) |
88 |
| - |
89 |
| -def reqValidTdef(conf): |
90 |
| - TrigSchemaValidator(conf) |
91 |
| - |
92 | 29 | class Triggers:
|
93 | 30 | '''
|
94 | 31 | Manages "triggers", conditions where changes in data result in new storm queries being executed.
|
|
0 commit comments