]> git.llucax.com Git - software/pymin.git/blob - pymin/services/proxy/__init__.py
Create a package named pymin with all the pymin modules.
[software/pymin.git] / pymin / services / proxy / __init__.py
1 # vim: set encoding=utf-8 et sw=4 sts=4 :
2
3 from os import path
4
5 from pymin.seqtools import Sequence
6 from pymin.dispatcher import Handler, handler, HandlerError
7 from pymin.services.util import Restorable, ConfigWriter, InitdHandler, \
8                                 TransactionalHandler, ParametersHandler
9
10 __ALL__ = ('ProxyHandler', 'Error', 'HostError', 'HostAlreadyExistsError',
11             'HostNotFoundError')
12
13 class Error(HandlerError):
14     r"""
15     Error(command) -> Error instance :: Base DnsHandler exception class.
16
17     All exceptions raised by the DnsHandler inherits from this one, so you can
18     easily catch any DnsHandler exception.
19
20     message - A descriptive error message.
21     """
22
23     def __init__(self, message):
24         r"Initialize the Error object. See class documentation for more info."
25         self.message = message
26
27     def __str__(self):
28         return self.message
29
30 class HostError(Error, KeyError):
31     r"""
32     HostError(hostname) -> HostError instance
33
34     This is the base exception for all host related errors.
35     """
36
37     def __init__(self, hostname):
38         r"Initialize the object. See class documentation for more info."
39         self.message = 'Host error: "%s"' % hostname
40
41 class HostAlreadyExistsError(HostError):
42     r"""
43     HostAlreadyExistsError(hostname) -> HostAlreadyExistsError instance
44
45     This exception is raised when trying to add a hostname that already exists.
46     """
47
48     def __init__(self, hostname):
49         r"Initialize the object. See class documentation for more info."
50         self.message = 'Host already exists: "%s"' % hostname
51
52 class HostNotFoundError(HostError):
53     r"""
54     HostNotFoundError(hostname) -> HostNotFoundError instance
55
56     This exception is raised when trying to operate on a hostname that doesn't
57     exists.
58     """
59
60     def __init__(self, hostname):
61         r"Initialize the object. See class documentation for more info."
62         self.message = 'Host not found: "%s"' % hostname
63
64
65 class Host(Sequence):
66
67     def __init__(self,ip):
68         self.ip = ip
69
70     def as_tuple(self):
71         return (self.ip)
72
73 class HostHandler(Handler):
74
75     def __init__(self, hosts):
76         self.hosts = hosts
77
78     @handler(u'Adds a host')
79     def add(self, ip):
80         if ip in self.hosts:
81             raise HostAlreadyExistsError(ip)
82         self.hosts[ip] = Host(ip)
83
84     @handler(u'Deletes a host')
85     def delete(self, ip):
86         if not ip in self.hosts:
87             raise HostNotFoundError(ip)
88         del self.hosts[ip]
89
90     @handler(u'Shows all hosts')
91     def list(self):
92         return self.hosts.keys()
93
94     @handler(u'Get information about all hosts')
95     def show(self):
96         return self.hosts.items()
97
98
99 class ProxyHandler(Restorable, ConfigWriter, InitdHandler,
100                    TransactionalHandler, ParametersHandler):
101
102     _initd_name = 'squid'
103
104     _persistent_attrs = ('params', 'hosts')
105
106     _restorable_defaults = dict(
107             hosts = dict(),
108             params  = dict(
109                 ip   = '192.168.0.1',
110                 port = '8080',
111             ),
112     )
113
114     _config_writer_files = 'squid.conf'
115     _config_writer_tpl_dir = path.join(path.dirname(__file__), 'templates')
116
117     def __init__(self, pickle_dir='.', config_dir='.'):
118         r"Initialize DhcpHandler object, see class documentation for details."
119         self._persistent_dir = pickle_dir
120         self._config_writer_cfg_dir = config_dir
121         self._config_build_templates()
122         self._restore()
123         self.host = HostHandler(self.hosts)
124
125     def _get_config_vars(self, config_file):
126         return dict(hosts=self.hosts.values(), **self.params)
127
128
129 if __name__ == '__main__':
130
131     px = ProxyHandler()
132     px.set('ip','192.66.66.66')
133     px.set('port','666')
134     px.host.add('192.168.0.25.25')
135     px.host.add('192.168.0.25.26')
136     px.host.add('192.168.0.25.27')
137     px.host.delete('192.168.0.25.27')
138     px.commit()