[696] | 1 | #! /usr/bin/env python |
---|
[1144] | 2 | # -*- coding: ISO-8859-15 -*- |
---|
[696] | 3 | |
---|
[728] | 4 | # PyKota Print Quota Warning sender |
---|
[696] | 5 | # |
---|
[952] | 6 | # PyKota - Print Quotas for CUPS and LPRng |
---|
[696] | 7 | # |
---|
[2028] | 8 | # (c) 2003, 2004, 2005 Jerome Alet <alet@librelogiciel.com> |
---|
[873] | 9 | # This program is free software; you can redistribute it and/or modify |
---|
| 10 | # it under the terms of the GNU General Public License as published by |
---|
| 11 | # the Free Software Foundation; either version 2 of the License, or |
---|
| 12 | # (at your option) any later version. |
---|
[696] | 13 | # |
---|
[873] | 14 | # This program is distributed in the hope that it will be useful, |
---|
| 15 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 16 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 17 | # GNU General Public License for more details. |
---|
| 18 | # |
---|
| 19 | # You should have received a copy of the GNU General Public License |
---|
| 20 | # along with this program; if not, write to the Free Software |
---|
[2303] | 21 | # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
---|
[696] | 22 | # |
---|
| 23 | # $Id$ |
---|
| 24 | # |
---|
[2028] | 25 | # |
---|
[696] | 26 | |
---|
[728] | 27 | import sys |
---|
[1041] | 28 | import os |
---|
| 29 | import pwd |
---|
[728] | 30 | |
---|
[2512] | 31 | from pykota.tool import PyKotaTool, PyKotaToolError, PyKotaCommandLineError, crashed, N_ |
---|
[975] | 32 | from pykota.config import PyKotaConfigError |
---|
| 33 | from pykota.storage import PyKotaStorageError |
---|
[728] | 34 | |
---|
[2344] | 35 | __doc__ = N_("""warnpykota v%(__version__)s (c) %(__years__)s %(__author__)s |
---|
[728] | 36 | |
---|
[730] | 37 | Sends mail to users over print quota. |
---|
| 38 | |
---|
[728] | 39 | command line usage : |
---|
| 40 | |
---|
[1041] | 41 | warnpykota [options] [names] |
---|
[728] | 42 | |
---|
| 43 | options : |
---|
| 44 | |
---|
| 45 | -v | --version Prints warnpykota's version number then exits. |
---|
| 46 | -h | --help Prints this message then exits. |
---|
| 47 | |
---|
[866] | 48 | -u | --users Warns users over their print quota, this is the |
---|
| 49 | default. |
---|
[728] | 50 | |
---|
[934] | 51 | -g | --groups Warns users whose groups quota are over limit. |
---|
[728] | 52 | |
---|
| 53 | -P | --printer p Verify quotas on this printer only. Actually p can |
---|
| 54 | use wildcards characters to select only |
---|
| 55 | some printers. The default value is *, meaning |
---|
| 56 | all printers. |
---|
[1156] | 57 | You can specify several names or wildcards, |
---|
| 58 | by separating them with commas. |
---|
[728] | 59 | |
---|
| 60 | examples : |
---|
| 61 | |
---|
| 62 | $ warnpykota --printer lp |
---|
| 63 | |
---|
| 64 | This will warn all users of the lp printer who have exceeded their |
---|
| 65 | print quota. |
---|
| 66 | |
---|
| 67 | $ warnpykota |
---|
| 68 | |
---|
| 69 | This will warn all users who have exceeded their print quota on |
---|
| 70 | any printer. |
---|
| 71 | |
---|
[1041] | 72 | $ warnpykota --groups --printer "laserjet*" "dev*" |
---|
[728] | 73 | |
---|
[1041] | 74 | This will warn all users of groups which names begins with "dev" and |
---|
| 75 | who have exceeded their print quota on any printer which name begins |
---|
| 76 | with "laserjet" |
---|
| 77 | |
---|
[1785] | 78 | If launched by an user who is not a PyKota administrator, additionnal |
---|
| 79 | arguments representing users or groups names are ignored, and only the |
---|
| 80 | current user/group is reported. |
---|
[2344] | 81 | """) |
---|
[728] | 82 | |
---|
| 83 | class WarnPyKota(PyKotaTool) : |
---|
| 84 | """A class for warnpykota.""" |
---|
[1041] | 85 | def main(self, ugnames, options) : |
---|
[728] | 86 | """Warn users or groups over print quota.""" |
---|
[1785] | 87 | if self.config.isAdmin : |
---|
| 88 | # PyKota administrator |
---|
[1041] | 89 | if not ugnames : |
---|
| 90 | # no username, means all usernames |
---|
| 91 | ugnames = [ "*" ] |
---|
| 92 | else : |
---|
[1785] | 93 | # not a PyKota administrator |
---|
[1041] | 94 | # warns only the current user |
---|
| 95 | # the utility of this is discutable, but at least it |
---|
| 96 | # protects other users from mail bombing if they are |
---|
| 97 | # over quota. |
---|
[1785] | 98 | username = pwd.getpwuid(os.geteuid())[0] |
---|
[1041] | 99 | if options["groups"] : |
---|
[1071] | 100 | user = self.storage.getUser(username) |
---|
| 101 | if user.Exists : |
---|
| 102 | ugnames = [ g.Name for g in self.storage.getUserGroups(user) ] |
---|
| 103 | else : |
---|
| 104 | ugnames = [ ] |
---|
[1041] | 105 | else : |
---|
[1071] | 106 | ugnames = [ username ] |
---|
[1041] | 107 | |
---|
[900] | 108 | printers = self.storage.getMatchingPrinters(options["printer"]) |
---|
| 109 | if not printers : |
---|
[2512] | 110 | raise PyKotaCommandLineError, _("There's no printer matching %s") % options["printer"] |
---|
[1810] | 111 | alreadydone = {} |
---|
[1041] | 112 | for printer in printers : |
---|
[890] | 113 | if options["groups"] : |
---|
[1041] | 114 | for (group, grouppquota) in self.storage.getPrinterGroupsAndQuotas(printer, ugnames) : |
---|
| 115 | self.warnGroupPQuota(grouppquota) |
---|
[890] | 116 | else : |
---|
[1041] | 117 | for (user, userpquota) in self.storage.getPrinterUsersAndQuotas(printer, ugnames) : |
---|
[1806] | 118 | # we only want to warn users who have ever printed something |
---|
| 119 | # and don't want to warn users who have never printed |
---|
| 120 | if (user.AccountBalance and (user.AccountBalance != user.LifeTimePaid)) or \ |
---|
| 121 | userpquota.PageCounter or userpquota.LifePageCounter or \ |
---|
| 122 | self.storage.getUserNbJobsFromHistory(user) : |
---|
[1808] | 123 | done = alreadydone.get(user.Name) |
---|
[2547] | 124 | if (user.LimitBy == 'quota') or not done : |
---|
[1808] | 125 | action = self.warnUserPQuota(userpquota) |
---|
| 126 | if not done : |
---|
| 127 | alreadydone[user.Name] = (action in ('WARN', 'DENY')) |
---|
[728] | 128 | |
---|
| 129 | if __name__ == "__main__" : |
---|
[1113] | 130 | retcode = 0 |
---|
[728] | 131 | try : |
---|
| 132 | defaults = { \ |
---|
| 133 | "printer" : "*", \ |
---|
| 134 | } |
---|
| 135 | short_options = "vhugP:" |
---|
| 136 | long_options = ["help", "version", "users", "groups", "printer="] |
---|
| 137 | |
---|
| 138 | # Initializes the command line tool |
---|
| 139 | sender = WarnPyKota(doc=__doc__) |
---|
[2210] | 140 | sender.deferredInit() |
---|
[728] | 141 | |
---|
| 142 | # parse and checks the command line |
---|
[729] | 143 | (options, args) = sender.parseCommandline(sys.argv[1:], short_options, long_options, allownothing=1) |
---|
[728] | 144 | |
---|
| 145 | # sets long options |
---|
| 146 | options["help"] = options["h"] or options["help"] |
---|
| 147 | options["version"] = options["v"] or options["version"] |
---|
[895] | 148 | options["users"] = options["u"] or options["users"] |
---|
| 149 | options["groups"] = options["g"] or options["groups"] |
---|
[728] | 150 | options["printer"] = options["P"] or options["printer"] or defaults["printer"] |
---|
| 151 | |
---|
| 152 | if options["help"] : |
---|
| 153 | sender.display_usage_and_quit() |
---|
| 154 | elif options["version"] : |
---|
| 155 | sender.display_version_and_quit() |
---|
| 156 | elif options["users"] and options["groups"] : |
---|
[2512] | 157 | raise PyKotaCommandLineError, _("incompatible options, see help.") |
---|
[728] | 158 | else : |
---|
[1113] | 159 | retcode = sender.main(args, options) |
---|
[2216] | 160 | except KeyboardInterrupt : |
---|
| 161 | sys.stderr.write("\nInterrupted with Ctrl+C !\n") |
---|
[2512] | 162 | except PyKotaCommandLineError, msg : |
---|
| 163 | sys.stderr.write("%s : %s\n" % (sys.argv[0], msg)) |
---|
[1526] | 164 | except SystemExit : |
---|
| 165 | pass |
---|
[1517] | 166 | except : |
---|
| 167 | try : |
---|
| 168 | sender.crashed("warnpykota failed") |
---|
| 169 | except : |
---|
[1546] | 170 | crashed("warnpykota failed") |
---|
[1113] | 171 | retcode = -1 |
---|
| 172 | |
---|
| 173 | try : |
---|
| 174 | sender.storage.close() |
---|
| 175 | except (TypeError, NameError, AttributeError) : |
---|
| 176 | pass |
---|
| 177 | |
---|
| 178 | sys.exit(retcode) |
---|