from pymin.services.util import Restorable, ConfigWriter, InitdHandler, \
TransactionalHandler, ParametersHandler
+import crypt
+
__ALL__ = ('ProxyHandler', 'Error', 'HostError', 'HostAlreadyExistsError',
'HostNotFoundError')
handler_help = u"Manage proxy hosts"
- def __init__(self, hosts):
- self.hosts = hosts
+ def __init__(self, parent):
+ self.parent = parent
@handler(u'Adds a host')
def add(self, ip):
- if ip in self.hosts:
+ if ip in self.parent.hosts:
raise HostAlreadyExistsError(ip)
- self.hosts[ip] = Host(ip)
+ self.parent.hosts[ip] = Host(ip)
@handler(u'Deletes a host')
def delete(self, ip):
- if not ip in self.hosts:
+ if not ip in self.parent.hosts:
raise HostNotFoundError(ip)
- del self.hosts[ip]
+ del self.parent.hosts[ip]
@handler(u'Shows all hosts')
def list(self):
- return self.hosts.keys()
+ return self.parent.hosts.keys()
@handler(u'Get information about all hosts')
def show(self):
- return self.hosts.items()
-
+ return self.parent.hosts.items()
+
+
+class UserHandler(Handler):
+
+ def __init__(self, parent):
+ self.parent = parent
+
+ @handler('Adds a user')
+ def add(self, user, password):
+ if user in self.parent.users:
+ raise UserAlreadyExistsError(user)
+ self.parent.users[user] = crypt.crypt(password,'BA')
+
+ @handler('Deletes a user')
+ def delete(self, user):
+ if not user in self.parent.users:
+ raise UserNotFound(user)
+ del self.parent.users[user]
class ProxyHandler(Restorable, ConfigWriter, InitdHandler,
TransactionalHandler, ParametersHandler):
_initd_name = 'squid'
- _persistent_attrs = ('params', 'hosts')
+ _persistent_attrs = ('params', 'hosts', 'users')
_restorable_defaults = dict(
hosts = dict(),
ip = '192.168.0.1',
port = '8080',
),
+ users = dict(),
)
- _config_writer_files = 'squid.conf'
+ _config_writer_files = ('squid.conf','users.conf')
_config_writer_tpl_dir = path.join(path.dirname(__file__), 'templates')
def __init__(self, pickle_dir='.', config_dir='.'):
self._config_writer_cfg_dir = config_dir
self._config_build_templates()
self._restore()
- self.host = HostHandler(self.hosts)
+ self.host = HostHandler(self)
+ self.user = UserHandler(self)
def _get_config_vars(self, config_file):
- return dict(hosts=self.hosts.values(), **self.params)
+ if config_file == 'squid.conf':
+ return dict(hosts=self.hosts.values(), **self.params)
+ return dict(users=self.users)
if __name__ == '__main__':
px.host.add('192.168.0.25.26')
px.host.add('192.168.0.25.27')
px.host.delete('192.168.0.25.27')
- px.commit()
\ No newline at end of file
+ px.user.add('lala','soronga')
+ px.user.add('culo','sarasa')
+ px.commit()