]>
git.ipfire.org Git - ddns.git/blob - src/ddns/__init__.py
2 ###############################################################################
4 # ddns - A dynamic DNS client for IPFire #
5 # Copyright (C) 2012 IPFire development team #
7 # This program is free software: you can redistribute it and/or modify #
8 # it under the terms of the GNU General Public License as published by #
9 # the Free Software Foundation, either version 3 of the License, or #
10 # (at your option) any later version. #
12 # This program is distributed in the hope that it will be useful, #
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of #
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
15 # GNU General Public License for more details. #
17 # You should have received a copy of the GNU General Public License #
18 # along with this program. If not, see <http://www.gnu.org/licenses/>. #
20 ###############################################################################
23 import logging
.handlers
28 logger
= logging
.getLogger("ddns.core")
31 from . import database
32 from . import providers
35 from .system
import DDNSSystem
39 rootlogger
= logging
.getLogger("ddns")
40 rootlogger
.setLevel(logging
.INFO
)
42 # Setup a logger that logs to syslog.
43 handler
= logging
.handlers
.SysLogHandler(address
="/dev/log",
44 facility
=logging
.handlers
.SysLogHandler
.LOG_DAEMON
46 formatter
= logging
.Formatter("ddns[%(process)d]: %(message)s")
47 handler
.setFormatter(formatter
)
48 handler
.setLevel(logging
.INFO
)
49 rootlogger
.addHandler(handler
)
51 handler
= logging
.StreamHandler()
52 rootlogger
.addHandler(handler
)
56 class DDNSCore(object):
57 def __init__(self
, debug
=False):
58 # In debug mode, enable debug logging.
60 rootlogger
= logging
.getLogger("ddns")
61 rootlogger
.setLevel(logging
.DEBUG
)
63 logger
.debug(_("Debugging mode enabled"))
65 # Initialize the settings array.
68 # Dict with all providers, that are supported.
69 self
.providers
= providers
.get()
71 for handle
, provider
in sorted(self
.providers
.items()):
72 logger
.debug("Registered new provider: %s (%s)" % (provider
.name
, provider
.handle
))
74 # List of configuration entries.
77 # Add the system class.
78 self
.system
= DDNSSystem(self
)
81 self
.db
= database
.DDNSDatabase(self
, "/var/lib/ddns.db")
83 def get_provider_names(self
):
85 Returns a list of names of all registered providers.
87 return sorted(self
.providers
.keys())
89 def get_provider_with_token_support(self
):
91 Returns a list with names of all registered providers
92 which support token based authtentication.
97 for handle
, provider
in sorted(self
.providers
.items()):
98 if provider
.supports_token_auth
is True:
99 token_provider
.append(handle
)
101 return sorted(token_provider
)
103 def load_configuration(self
, filename
):
104 logger
.debug(_("Loading configuration file %s") % filename
)
106 configs
= configparser
.RawConfigParser()
107 configs
.read([filename
,])
109 # First apply all global configuration settings.
111 for k
, v
in configs
.items("config"):
114 # Allow missing config section
115 except configparser
.NoSectionError
:
118 for entry
in configs
.sections():
119 # Skip the special config section.
120 if entry
== "config":
124 for k
, v
in configs
.items(entry
):
126 settings
["hostname"] = entry
128 # Get the name of the provider.
129 provider
= settings
.get("provider", None)
131 logger
.warning("Entry '%s' lacks a provider setting. Skipping." % entry
)
134 # Try to find the provider with the wanted name.
136 provider
= self
.providers
[provider
]
138 logger
.warning("Could not find provider '%s' for entry '%s'." % (provider
, entry
))
141 # Check if the provider is actually supported and if there are
142 # some dependencies missing on this system.
143 if not provider
.supported():
144 logger
.warning("Provider '%s' is known, but not supported on this machine" % provider
.name
)
147 # Create an instance of the provider object with settings from the
148 # configuration file.
149 entry
= provider(self
, **settings
)
151 # Add new entry to list (if not already exists).
152 if not entry
in self
.entries
:
153 self
.entries
.append(entry
)
155 def updateone(self
, hostname
, **kwargs
):
156 for entry
in self
.entries
:
157 if not entry
.hostname
== hostname
:
160 return self
._update
(entry
, **kwargs
)
162 raise DDNSHostNotFoundError(hostname
)
164 def updateall(self
, **kwargs
):
166 Update all configured entries.
168 # If there are no entries, there is nothing to do.
170 logger
.debug(_("Found no entries in the configuration file. Exiting."))
173 for entry
in self
.entries
:
174 self
._update
(entry
, **kwargs
)
176 def _update(self
, entry
, force
=False):
180 except DDNSError
as e
:
181 logger
.error(_("Dynamic DNS update for %(hostname)s (%(provider)s) failed:") %
182 {"hostname": entry
.hostname
, "provider": entry
.name
})
183 logger
.error(" %s: %s" % (e
.__class
__.__name
__, e
.reason
))
185 logger
.error(" %s" % e
.message
)
188 logger
.error(_("Dynamic DNS update for %(hostname)s (%(provider)s) threw an unhandled exception:") %
189 {"hostname": entry
.hostname
, "provider": entry
.name
}, exc_info
=True)