X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=dak%2Ffind_null_maintainers.py;h=6074dbee44f1e19292595206de559e989f991fd0;hb=ea46d5070c3e5b20aa3f5eeef55f3c0ce82828e0;hp=de5e029159b35632d155828ea028b1b8ad0b39bf;hpb=7aaaad3135c9164390af5897925660842368660b;p=dak.git diff --git a/dak/find_null_maintainers.py b/dak/find_null_maintainers.py index de5e0291..6074dbee 100755 --- a/dak/find_null_maintainers.py +++ b/dak/find_null_maintainers.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -# Check for users with no packages in the archive +""" Check for users with no packages in the archive """ # Copyright (C) 2003, 2006 James Troup # This program is free software; you can redistribute it and/or modify @@ -19,14 +19,11 @@ ################################################################################ -import ldap, pg, sys, time +import ldap, sys, time import apt_pkg -import dak.lib.utils as utils -################################################################################ - -Cnf = None -projectB = None +from daklib.dbconn import * +from daklib.config import Config ################################################################################ @@ -48,47 +45,41 @@ def get_ldap_value(entry, value): return ret[0] def main(): - global Cnf, projectB + cnf = Config() - Cnf = utils.get_conf() Arguments = [('h',"help","Find-Null-Maintainers::Options::Help")] for i in [ "help" ]: - if not Cnf.has_key("Find-Null-Maintainers::Options::%s" % (i)): - Cnf["Find-Null-Maintainers::Options::%s" % (i)] = "" + if not cnf.has_key("Find-Null-Maintainers::Options::%s" % (i)): + cnf["Find-Null-Maintainers::Options::%s" % (i)] = "" - apt_pkg.ParseCommandLine(Cnf, Arguments, sys.argv) + apt_pkg.ParseCommandLine(cnf.Cnf, Arguments, sys.argv) - Options = Cnf.SubTree("Find-Null-Maintainers::Options") + Options = cnf.SubTree("Find-Null-Maintainers::Options") if Options["Help"]: - usage() + usage() - projectB = pg.connect(Cnf["DB::Name"], Cnf["DB::Host"], int(Cnf["DB::Port"])) + session = DBConn().session() - before = time.time() - sys.stderr.write("[Getting info from the LDAP server...") - LDAPDn = Cnf["Import-LDAP-Fingerprints::LDAPDn"] - LDAPServer = Cnf["Import-LDAP-Fingerprints::LDAPServer"] + print "Getting info from the LDAP server..." + LDAPDn = cnf["Import-LDAP-Fingerprints::LDAPDn"] + LDAPServer = cnf["Import-LDAP-Fingerprints::LDAPServer"] l = ldap.open(LDAPServer) l.simple_bind_s("","") Attrs = l.search_s(LDAPDn, ldap.SCOPE_ONELEVEL, - "(&(keyfingerprint=*)(gidnumber=%s))" % (Cnf["Import-Users-From-Passwd::ValidGID"]), - ["uid", "cn", "mn", "sn", "createtimestamp"]) - sys.stderr.write("done. (%d seconds)]\n" % (int(time.time()-before))) + "(&(keyfingerprint=*)(gidnumber=%s))" % (cnf["Import-Users-From-Passwd::ValidGID"]), + ["uid", "cn", "mn", "sn", "createTimestamp"]) db_uid = {} db_unstable_uid = {} - before = time.time() - sys.stderr.write("[Getting UID info for entire archive...") - q = projectB.query("SELECT DISTINCT u.uid FROM uid u, fingerprint f WHERE f.uid = u.id;") - sys.stderr.write("done. (%d seconds)]\n" % (int(time.time()-before))) - for i in q.getresult(): + print "Getting UID info for entire archive..." + q = session.execute("SELECT DISTINCT u.uid FROM uid u, fingerprint f WHERE f.uid = u.id") + for i in q.fetchall(): db_uid[i[0]] = "" - before = time.time() - sys.stderr.write("[Getting UID info for unstable...") - q = projectB.query(""" + print "Getting UID info for unstable..." + q = session.execute(""" SELECT DISTINCT u.uid FROM suite su, src_associations sa, source s, fingerprint f, uid u WHERE f.uid = u.id AND sa.source = s.id AND sa.suite = su.id AND su.suite_name = 'unstable' AND s.sig_fpr = f.id @@ -96,8 +87,7 @@ UNION SELECT DISTINCT u.uid FROM suite su, bin_associations ba, binaries b, fingerprint f, uid u WHERE f.uid = u.id AND ba.bin = b.id AND ba.suite = su.id AND su.suite_name = 'unstable' AND b.sig_fpr = f.id""") - sys.stderr.write("done. (%d seconds)]\n" % (int(time.time()-before))) - for i in q.getresult(): + for i in q.fetchall(): db_unstable_uid[i[0]] = "" now = time.time() @@ -105,7 +95,7 @@ SELECT DISTINCT u.uid FROM suite su, bin_associations ba, binaries b, fingerprin for i in Attrs: entry = i[1] uid = entry["uid"][0] - created = time.mktime(time.strptime(entry["createtimestamp"][0][:8], '%Y%m%d')) + created = time.mktime(time.strptime(entry["createTimestamp"][0][:8], '%Y%m%d')) diff = now - created # 31536000 is 1 year in seconds, i.e. 60 * 60 * 24 * 365 if diff < 31536000 / 2: