/usr/share/pyshared/reconfigure/items/ajenti.py is in python-reconfigure 0.1.29-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | import json
from reconfigure.nodes import Node, PropertyNode
from reconfigure.items.bound import BoundData, BoundDictionary
class AjentiData (BoundData):
pass
class HttpData (BoundData):
pass
class SSLData (BoundData):
pass
class UserData (BoundData):
def template(self):
return Node('unnamed',
PropertyNode('configs', {}),
PropertyNode('password', ''),
PropertyNode('permissions', []),
)
class ConfigData (BoundData):
def template(self):
return PropertyNode('', '{}')
AjentiData.bind_property('authentication', 'authentication')
AjentiData.bind_property('installation_id', 'installation_id')
AjentiData.bind_property('enable_feedback', 'enable_feedback')
AjentiData.bind_child('http_binding', lambda x: x.get('bind'), item_class=HttpData)
AjentiData.bind_child('ssl', lambda x: x.get('ssl'), item_class=SSLData)
AjentiData.bind_collection('users', path=lambda x: x.get('users'), item_class=UserData, collection_class=BoundDictionary, key=lambda x: x.name)
HttpData.bind_property('host', 'host')
HttpData.bind_property('port', 'port')
SSLData.bind_property('certificate_path', 'certificate_path')
SSLData.bind_property('enable', 'enable')
ConfigData.bind_name('name')
UserData.bind_name('name')
UserData.bind_property('password', 'password')
UserData.bind_property('permissions', 'permissions')
UserData.bind_collection('configs', lambda x: x.get('configs'), item_class=ConfigData, collection_class=BoundDictionary, key=lambda x: x.name)
ConfigData.bind_attribute('value', 'data', getter=json.loads, setter=json.dumps)
|