faster demagify
This commit is contained in:
parent
695f204ee4
commit
606a60b1c0
1 changed files with 5 additions and 3 deletions
8
nodes.py
8
nodes.py
|
@ -1,5 +1,6 @@
|
|||
from os import walk
|
||||
from os.path import join, basename, splitext
|
||||
from re import search
|
||||
|
||||
converters = {
|
||||
'32_random_bytes_as_base64_for': lambda x: vault.random_bytes_as_base64_for(x, length=32),
|
||||
|
@ -10,9 +11,10 @@ converters = {
|
|||
|
||||
def demagify(data):
|
||||
if isinstance(data, str):
|
||||
for name, converter in converters.items():
|
||||
if data.startswith(f'!{name}:'):
|
||||
return converter(data[len(name) + 2:])
|
||||
match = search(r'^\!([0-9a-zA-Z_-]{,255})\:(.*)$', data)
|
||||
if match:
|
||||
magicstring, content = match.groups()
|
||||
return converters[magicstring](content)
|
||||
else:
|
||||
return data
|
||||
elif isinstance(data, dict):
|
||||
|
|
Loading…
Reference in a new issue