]> git.decadent.org.uk Git - dak.git/blob - julia
read all configs when utils is imported, allowing utils to make use ofconfig values...
[dak.git] / julia
1 #!/usr/bin/env python
2
3 # Sync PostgreSQL with (LDAP-generated) passwd file
4 # Copyright (C) 2001  James Troup <james@nocrew.org>
5 # $Id: julia,v 1.4 2001-11-18 19:57:58 rmurray Exp $
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 2 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, write to the Free Software
19 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
20
21 ################################################################################
22
23 # <aj> ARRRGGGHHH
24 # <aj> what's wrong with me!?!?!?
25 # <aj> i was just nice to some mormon doorknockers!!!
26 # <Omnic> AJ?!?!
27 # <aj> i know!!!!!
28 # <Omnic> I'm gonna have to kick your ass when you come over
29 # <Culus> aj: GET THE HELL OUT OF THE CABAL! :P
30
31 ################################################################################
32
33 import os, pg, string, sys;
34 import utils;
35 import apt_pkg;
36
37 ################################################################################
38
39 Cnf = None;
40 projectB = None;
41 ################################################################################
42
43 def usage (exit_code=0):
44     print """Usage: julia [OPTION]... PASSWD_FILE
45 Sync PostgreSQL's pg_user with PASSWD_FILE.
46
47   -q, --quiet                be quiet about what is being done
48   -v, --verbose              explain what is being done
49   -h, --help                 show this help and exit"""
50     sys.exit(exit_code)
51
52 ################################################################################
53
54 def main ():
55     global Cnf, projectB;
56
57     Cnf = utils.get_conf()
58
59     Arguments = [('q',"quiet","Julia::Options::Quiet"),
60                  ('v',"verbose","Julia::Options::Verbose"),
61                  ('h',"help","Julia::Options::Help")];
62     for i in ["quiet", "verbose", "help" ]:
63         if not Cnf.has_key("Julia::Options::%s" % (i)):
64             Cnf["Julia::Options::%s" % (i)] = "";
65
66     arguments = apt_pkg.ParseCommandLine(Cnf,Arguments,sys.argv);
67     Options = Cnf.SubTree("Julia::Options")
68
69     if Options["Help"]:
70         usage();
71     if not arguments:
72         utils.warn("julia needs the name of the passwd file to sync with as an argument.");
73         usage(1);
74     elif len(arguments) > 1:
75         utils.warn("julia only takes one non-option argument, the passwd file to sync with.");
76         usage(1);
77
78     passwd = arguments[0];
79     projectB = pg.connect(Cnf["DB::Name"], Cnf["DB::Host"], int(Cnf["DB::Port"]));
80     valid_gid = Cnf.get("Julia::ValidGID","");
81
82     passwd_unames = {};
83     passwd_file = utils.open_file(passwd);
84     for line in passwd_file.readlines():
85         split = string.split(line, ':');
86         uname = split[0];
87         gid = split[3];
88         if valid_gid and gid != valid_gid:
89             if Options["Verbose"]:
90                 print "Skipping %s (GID %s != Valid GID %s)." % (uname, gid, valid_gid);
91             continue;
92         passwd_unames[uname] = "";
93
94     postgres_unames = {};
95     q = projectB.query("SELECT usename FROM pg_user");
96     ql = q.getresult();
97     for i in ql:
98         uname = i[0];
99         postgres_unames[uname] = "";
100
101     known_postgres_unames = {};
102     for i in string.split(Cnf.get("Julia::KnownPostgres",""),","):
103         uname = string.strip(i);
104         known_postgres_unames[uname] = "";
105
106     keys = postgres_unames.keys()
107     keys.sort();
108     for uname in keys:
109         if not passwd_unames.has_key(uname)and not known_postgres_unames.has_key(uname):
110             print "W: %s is in Postgres but not the passwd file or list of known Postgres users." % (uname);
111
112     keys = passwd_unames.keys()
113     keys.sort();
114     for uname in keys:
115         if not postgres_unames.has_key(uname):
116             if not Options["Quiet"]:
117                 print "Creating %s user in Postgres." % (uname);
118             q = projectB.query('CREATE USER "%s"' % (uname));
119
120 #######################################################################################
121
122 if __name__ == '__main__':
123     main()
124