]> git.decadent.org.uk Git - dak.git/blob - dak/acl.py
dak/acl.py: include fingerprint of person who granted upload permission
[dak.git] / dak / acl.py
1 #! /usr/bin/env python
2 #
3 # Copyright (C) 2012, Ansgar Burchardt <ansgar@debian.org>
4 #
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2 of the License, or
8 # (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License along
16 # with this program; if not, write to the Free Software Foundation, Inc.,
17 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18
19 import apt_pkg
20 import sys
21
22 from daklib.config import Config
23 from daklib.dbconn import DBConn, Fingerprint, Uid, ACL
24
25 def usage():
26     print """Usage:
27   dak acl set-fingerprints <acl-name>
28   dak acl export-per-source <acl-name>
29
30   set-fingerprints:
31     Reads list of fingerprints from stdin and sets the ACL <acl-name> to these.
32     Accepted input formats are "uid:<uid>", "name:<name>" and
33     "fpr:<fingerprint>".
34
35   export-per-source:
36     Export per source upload rights for ACL <acl-name>.
37 """
38
39 def get_fingerprint(entry, session):
40     """get fingerprint for given ACL entry
41
42     The entry is a string in one of these formats::
43
44         uid:<uid>
45         name:<name>
46         fpr:<fingerprint>
47
48     @type  entry: string
49     @param entry: ACL entry
50
51     @param session: database session
52
53     @rtype:  L{daklib.dbconn.Fingerprint} or C{None}
54     @return: fingerprint for the entry
55     """
56     field, value = entry.split(":", 1)
57     q = session.query(Fingerprint)
58
59     if field == 'uid':
60         q = q.join(Fingerprint.uid).filter(Uid.uid == value)
61     elif field == 'name':
62         q = q.join(Fingerprint.uid).filter(Uid.name == value)
63     elif field == 'fpr':
64         q = q.filter(Fingerprint.fingerprint == value)
65
66     return q.all()
67
68 def acl_set_fingerprints(acl_name, entries):
69     session = DBConn().session()
70     acl = session.query(ACL).filter_by(name=acl_name).one()
71
72     acl.fingerprints.clear()
73     for entry in entries:
74         entry = entry.strip()
75         fps = get_fingerprint(entry, session)
76         if len(fps) == 0:
77             print "Unknown key for '{0}'".format(entry)
78         else:
79             acl.fingerprints.update(fps)
80
81     session.commit()
82
83 def acl_export_per_source(acl_name):
84     session = DBConn().session()
85     acl = session.query(ACL).filter_by(name=acl_name).one()
86
87     query = r"""
88       SELECT
89         f.fingerprint,
90         (SELECT COALESCE(u.name, '') || ' <' || u.uid || '>'
91            FROM uid u
92            JOIN fingerprint f2 ON u.id = f2.uid
93           WHERE f2.id = f.id) AS name,
94         STRING_AGG(
95           a.source
96           || COALESCE(' (' || (SELECT fingerprint FROM fingerprint WHERE id = a.created_by_id) || ')', ''),
97           E',\n ' ORDER BY a.source)
98       FROM acl_per_source a
99       JOIN fingerprint f ON a.fingerprint_id = f.id
100       LEFT JOIN uid u ON f.uid = u.id
101       WHERE a.acl_id = :acl_id
102       GROUP BY f.id, f.fingerprint
103       ORDER BY name
104       """
105
106     for row in session.execute(query, {'acl_id': acl.id}):
107         print "Fingerprint:", row[0]
108         print "Uid:", row[1]
109         print "Allow:", row[2]
110         print
111
112     session.rollback()
113     session.close()
114
115 def main(argv=None):
116     if argv is None:
117         argv = sys.argv
118
119     if len(argv) != 3:
120         usage()
121         sys.exit(1)
122
123     if argv[1] == 'set-fingerprints':
124         acl_set_fingerprints(argv[2], sys.stdin)
125     elif argv[1] == 'export-per-source':
126         acl_export_per_source(argv[2])
127     else:
128         usage()
129         sys.exit(1)