]> git.ipfire.org Git - oddments/ddns.git/blob - ddns.in
Add a basic command line interface.
[oddments/ddns.git] / ddns.in
1 #!/usr/bin/python
2 ###############################################################################
3 # #
4 # ddns - A dynamic DNS client for IPFire #
5 # Copyright (C) 2012 IPFire development team #
6 # #
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. #
11 # #
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. #
16 # #
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/>. #
19 # #
20 ###############################################################################
21
22 import argparse
23
24 import ddns
25
26 from ddns.i18n import _
27
28 CONFIGURATION_FILE = "@configsdir@/ddns.conf"
29
30 def main():
31 # Parse command line
32 p = argparse.ArgumentParser(description=_("Dynamic DNS Updater"))
33
34 p.add_argument("-d", "--debug", action="store_true",
35 help=_("Enable debugging output"))
36
37 p.add_argument("-c", "--config", default=CONFIGURATION_FILE,
38 help=_("Load configuration file (Default: %s)") % CONFIGURATION_FILE)
39
40 # Create subparsers for commands.
41 subparsers = p.add_subparsers(help=_("Sub-command help"),
42 dest="subparsers_name")
43
44 # update
45 p_update = subparsers.add_parser("update", help=_("Update DNS record"))
46 p_update.add_argument("hostname")
47 p_update.add_argument("--force", action="store_true",
48 help=_("Execute update even if the record is already up to date"))
49
50 # update-all
51 p_update_all = subparsers.add_parser("update-all", help=_("Update all DNS records"))
52 p_update_all.add_argument("--force", action="store_true",
53 help=_("Execute update even if the record is already up to date"))
54
55 args = p.parse_args()
56
57 # Initialise the DDNSCore module.
58 d = ddns.DDNSCore(debug=args.debug)
59
60 # Load configuration.
61 if args.config:
62 d.load_configuration(args.config)
63
64 # Handle commands...
65 if args.subparsers_name == "update":
66 d.updateone(hostname=args.hostname, force=args.force)
67
68 elif args.subparsers_name == "update-all":
69 d.updateall(force=args.force)
70
71 else:
72 raise RuntimeError("Unhandled command: %s" % args.subparsers_name)
73
74 main()