Commit cb08c275 authored by Ad Schellevis's avatar Ad Schellevis

(Captiveportal, new) add wrapper class for config.xml (read user template code)

parent f22f4ad0
......@@ -26,6 +26,7 @@
"""
import os.path
import stat
import xml.etree.ElementTree
from ConfigParser import ConfigParser
class Config(object):
......@@ -75,3 +76,29 @@ class Config(object):
else:
result[zoneid]['allowedmacaddresses'] = list()
return result
class OPNSenseConfig(object):
""" Read configuration data from config.xml
"""
def __init__(self):
self.load_config()
def load_config(self):
""" load config.xml
"""
tree = xml.etree.ElementTree.parse('/conf/config.xml')
self.rootNode = tree.getroot()
def get_template(self, fileid):
""" fetch template content from config.xml
:param fileid: internal fileid (field in template node)
:return: string, bse64 encoded data or None if not found
"""
templates = self.rootNode.findall("./OPNsense/captiveportal/templates/template")
if templates is not None:
for template in templates:
if template.find('fileid') is not None and template.find('content') is not None :
if template.find('fileid').text == fileid:
return template.find('content').text
return None
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment