Skip to content

Commit 64c67ad

Browse files
authored
Merge branch 'master' into epiphyte-storm-http-errs
2 parents 68bb43b + ce4c7be commit 64c67ad

5 files changed

+40
-1
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
desc: Added missing permission declarations for light edges and queues.
3+
prs: []
4+
type: bug
5+
...
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
desc: Deprecated the ``modules`` Cortex configuration option.
3+
prs: []
4+
type: deprecation
5+
...

synapse/cortex.py

+14-1
Original file line numberDiff line numberDiff line change
@@ -815,7 +815,7 @@ class Cortex(s_oauth.OAuthMixin, s_cell.Cell): # type: ignore
815815
},
816816
'modules': {
817817
'default': [],
818-
'description': 'A list of module classes to load.',
818+
'description': 'Deprecated. A list of module classes to load.',
819819
'type': 'array'
820820
},
821821
'storm:log': {
@@ -1397,6 +1397,16 @@ def _initCorePerms(self):
13971397
{'perm': ('node', 'del', '<form>'), 'gate': 'layer',
13981398
'desc': 'Controls removing a specific form of node in a layer.'},
13991399

1400+
{'perm': ('node', 'edge', 'add'), 'gate': 'layer',
1401+
'desc': 'Controls adding light edges to a node.'},
1402+
{'perm': ('node', 'edge', 'del'), 'gate': 'layer',
1403+
'desc': 'Controls adding light edges to a node.'},
1404+
1405+
{'perm': ('node', 'edge', 'add', '<verb>'), 'gate': 'layer',
1406+
'desc': 'Controls adding a specific light edge to a node.'},
1407+
{'perm': ('node', 'edge', 'del', '<verb>'), 'gate': 'layer',
1408+
'desc': 'Controls adding a specific light edge to a node.'},
1409+
14001410
{'perm': ('node', 'tag'), 'gate': 'layer',
14011411
'desc': 'Controls editing any tag on any node in a layer.'},
14021412
{'perm': ('node', 'tag', 'add'), 'gate': 'layer',
@@ -6372,6 +6382,9 @@ async def _preLoadCoreModule(self, ctor, mods, cmds, mdefs, custom=False):
63726382
if isinstance(ctor, (list, tuple)):
63736383
ctor, conf = ctor
63746384

6385+
if not ctor.startswith('synapse.tests'):
6386+
s_common.deprecated("'modules' Cortex config value", curv='2.206.0')
6387+
63756388
modu = self._loadCoreModule(ctor, conf=conf)
63766389
if modu is None:
63776390
return

synapse/lib/stormtypes.py

+10
Original file line numberDiff line numberDiff line change
@@ -3933,6 +3933,16 @@ class LibQueue(Lib):
39333933
'returns': {'type': 'list',
39343934
'desc': 'A list of queue definitions the current user is allowed to interact with.', }}},
39353935
)
3936+
_storm_lib_perms = (
3937+
{'perm': ('queue', 'add'), 'gate': 'cortex',
3938+
'desc': 'Permits a user to create a named queue.'},
3939+
{'perm': ('queue', 'get'), 'gate': 'queue',
3940+
'desc': 'Permits a user to access a queue. This allows the user to read from the queue and remove items from it.'},
3941+
{'perm': ('queue', 'put'), 'gate': 'queue',
3942+
'desc': 'Permits a user to put items into a queue.'},
3943+
{'perm': ('cron', 'del'), 'gate': 'queue',
3944+
'desc': 'Permits a user to delete a queue.'},
3945+
)
39363946
_storm_lib_path = ('queue',)
39373947

39383948
def getObjLocals(self):

synapse/tests/test_cortex.py

+6
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,12 @@ async def test_cortex_basics(self):
8484

8585
await core.nodes('[ inet:ipv4=1.2.3.4 :asn=99 .seen=now +#foo:score=10 ]')
8686

87+
conf = {'modules': [('NewpModule', {})]}
88+
warn = '''"'modules' Cortex config value" is deprecated'''
89+
with self.assertWarnsRegex(DeprecationWarning, warn) as cm:
90+
async with self.getTestCore(dirn=dirn) as core:
91+
pass
92+
8793
async def test_cortex_cellguid(self):
8894
iden = s_common.guid()
8995
conf = {'cell:guid': iden}

0 commit comments

Comments
 (0)