root / pykota / trunk / bin / warnpykota @ 952

Revision 952, 6.6 kB (checked in by jalet, 21 years ago)

Preliminary support for LPRng added BUT STILL UNTESTED.

  • Property svn:eol-style set to native
  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
Line 
1#! /usr/bin/env python
2
3# PyKota Print Quota Warning sender
4#
5# PyKota - Print Quotas for CUPS and LPRng
6#
7# (c) 2003 Jerome Alet <alet@librelogiciel.com>
8# This program is free software; you can redistribute it and/or modify
9# it under the terms of the GNU General Public License as published by
10# the Free Software Foundation; either version 2 of the License, or
11# (at your option) any later version.
12#
13# This program is distributed in the hope that it will be useful,
14# but WITHOUT ANY WARRANTY; without even the implied warranty of
15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16# GNU General Public License for more details.
17#
18# You should have received a copy of the GNU General Public License
19# along with this program; if not, write to the Free Software
20# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
21#
22# $Id$
23#
24# $Log$
25# Revision 1.18  2003/04/23 22:13:56  jalet
26# Preliminary support for LPRng added BUT STILL UNTESTED.
27#
28# Revision 1.17  2003/04/17 13:32:17  jalet
29# bad documentation string
30#
31# Revision 1.16  2003/04/16 12:35:49  jalet
32# Groups quota work now !
33#
34# Revision 1.15  2003/04/10 21:47:20  jalet
35# Job history added. Upgrade script neutralized for now !
36#
37# Revision 1.14  2003/04/08 21:31:39  jalet
38# (anything or 0) = anything !!! Go back to school Jerome !
39#
40# Revision 1.13  2003/04/08 21:13:44  jalet
41# Prepare --groups option to work.
42#
43# Revision 1.12  2003/04/08 21:10:18  jalet
44# Checks --groups option presence instead of --users because --users is the default.
45#
46# Revision 1.11  2003/03/29 13:45:27  jalet
47# GPL paragraphs were incorrectly (from memory) copied into the sources.
48# Two README files were added.
49# Upgrade script for PostgreSQL pre 1.01 schema was added.
50#
51# Revision 1.10  2003/03/25 11:45:32  jalet
52# Clearer help.
53#
54# Revision 1.9  2003/03/09 23:39:14  jalet
55# Simplified translations.
56#
57# Revision 1.8  2003/02/10 12:07:30  jalet
58# Now repykota should output the recorded total page number for each printer too.
59#
60# Revision 1.7  2003/02/09 13:40:29  jalet
61# typo
62#
63# Revision 1.6  2003/02/09 12:56:53  jalet
64# Internationalization begins...
65#
66# Revision 1.5  2003/02/07 23:24:38  jalet
67# Empty line deleted
68#
69# Revision 1.4  2003/02/06 23:25:40  jalet
70# Cleaner docstring
71#
72# Revision 1.3  2003/02/06 23:20:02  jalet
73# warnpykota doesn't need any user/group name argument, mimicing the
74# warnquota disk quota tool.
75#
76# Revision 1.2  2003/02/06 22:54:33  jalet
77# warnpykota should be ok
78#
79#
80#
81
82import sys
83
84from pykota import version
85from pykota.tool import PyKotaTool, PyKotaToolError
86
87__doc__ = """warnpykota v%s (C) 2003 C@LL - Conseil Internet & Logiciels Libres
88
89Sends mail to users over print quota.
90
91command line usage :
92
93  warnpykota [options]
94
95options :
96
97  -v | --version       Prints warnpykota's version number then exits.
98  -h | --help          Prints this message then exits.
99 
100  -u | --users         Warns users over their print quota, this is the
101                       default.
102 
103  -g | --groups        Warns users whose groups quota are over limit.
104 
105  -P | --printer p     Verify quotas on this printer only. Actually p can
106                       use wildcards characters to select only
107                       some printers. The default value is *, meaning
108                       all printers.
109 
110examples :                             
111
112  $ warnpykota --printer lp
113 
114  This will warn all users of the lp printer who have exceeded their
115  print quota.
116
117  $ warnpykota
118 
119  This will warn all users  who have exceeded their print quota on
120  any printer.
121
122  $ warnpykota --groups --printer "laserjet*"
123 
124  This will warn all users of groups which have exceeded
125  their print quota on any printer which name begins with "laserjet"
126
127This program is free software; you can redistribute it and/or modify
128it under the terms of the GNU General Public License as published by
129the Free Software Foundation; either version 2 of the License, or
130(at your option) any later version.
131
132This program is distributed in the hope that it will be useful,
133but WITHOUT ANY WARRANTY; without even the implied warranty of
134MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
135GNU General Public License for more details.
136
137You should have received a copy of the GNU General Public License
138along with this program; if not, write to the Free Software
139Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
140
141Please e-mail bugs to: %s""" % (version.__version__, version.__author__)
142       
143class WarnPyKota(PyKotaTool) :       
144    """A class for warnpykota."""
145    def main(self, options) :
146        """Warn users or groups over print quota."""
147        printers = self.storage.getMatchingPrinters(options["printer"])
148        if not printers :
149            raise PyKotaToolError, _("There's no printer matching %s") % options["printer"]
150        for (printerid, printer) in printers :
151            if options["groups"] :
152                for (ident, name) in self.storage.getPrinterGroups(printerid) :
153                    self.warnGroupPQuota(name, printer)
154            else :
155                for (ident, name) in self.storage.getPrinterUsers(printerid) :
156                    self.warnUserPQuota(name, printer)
157                     
158if __name__ == "__main__" : 
159    try :
160        defaults = { \
161                     "printer" : "*", \
162                   }
163        short_options = "vhugP:"
164        long_options = ["help", "version", "users", "groups", "printer="]
165       
166        # Initializes the command line tool
167        sender = WarnPyKota(doc=__doc__)
168       
169        # parse and checks the command line
170        (options, args) = sender.parseCommandline(sys.argv[1:], short_options, long_options, allownothing=1)
171       
172        # sets long options
173        options["help"] = options["h"] or options["help"]
174        options["version"] = options["v"] or options["version"]
175        options["users"] = options["u"] or options["users"]
176        options["groups"] = options["g"] or options["groups"]
177        options["printer"] = options["P"] or options["printer"] or defaults["printer"]
178       
179        if options["help"] :
180            sender.display_usage_and_quit()
181        elif options["version"] :
182            sender.display_version_and_quit()
183        elif options["users"] and options["groups"] :   
184            raise PyKotaToolError, _("incompatible options, see help.")
185        elif args :   
186            raise PyKotaToolError, _("unused arguments [%s]. Aborting.") % ", ".join(args)
187        else :
188            sys.exit(sender.main(options))
189    except PyKotaToolError, msg :           
190        sys.stderr.write("%s\n" % msg)
191        sys.stderr.flush()
192        sys.exit(-1)
Note: See TracBrowser for help on using the browser.