root / pykota / trunk / bin / edpykota @ 2258

Revision 2258, 26.6 kB (checked in by jerome, 19 years ago)

A fix for the fix ! (Hoping all will be fixed someday)

  • 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# -*- coding: ISO-8859-15 -*-
3
4# PyKota Print Quota Editor
5#
6# PyKota - Print Quotas for CUPS and LPRng
7#
8# (c) 2003, 2004, 2005 Jerome Alet <alet@librelogiciel.com>
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.
13#
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
21# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
22#
23# $Id$
24#
25#
26
27import sys
28import os
29import pwd
30import grp
31from pykota.tool import PyKotaTool, PyKotaToolError, crashed, N_
32from pykota.config import PyKotaConfigError
33from pykota.storage import PyKotaStorageError
34
35__doc__ = N_("""edpykota v%s (c) 2003, 2004, 2005 C@LL - Conseil Internet & Logiciels Libres
36A Print Quota editor for PyKota.
37
38command line usage :
39
40  edpykota [options] user1 user2 ... userN
41 
42  edpykota [options] group1 group2 ... groupN
43
44options :
45
46  -v | --version       Prints edpykota's version number then exits.
47  -h | --help          Prints this message then exits.
48 
49  -a | --add           Adds users and/or printers if they don't
50                       exist on the Quota Storage Server.
51                       
52  -d | --delete        Deletes users/groups from the quota storage.
53                       Printers are never deleted.
54                       
55  -c | --charge p[,j]  Sets the price per page and per job to charge
56                       for a particular printer. Job price is optional.
57                       If both are to be set, separate them with a comma.
58                       Floating point values are allowed.
59                       
60  -o | --overcharge f  Sets the overcharging factor applied to the user
61                       when computing the cost of a print job. Positive or
62                       negative floating point values are allowed,
63                       this allows you to do some really creative
64                       things like giving money to an user whenever
65                       he prints. The number of pages in a print job
66                       is not modified by this coefficient, only the
67                       cost of the job for a particular user.
68                       Only users have a coefficient.
69 
70  -i | --ingroups g1[,g2...]  Puts the users into each of the groups
71                              listed, separated by commas. The groups
72                              must already exist in the Quota Storage.
73 
74  -u | --users         Edit users print quotas, this is the default.
75 
76  -P | --printer p     Edit quotas on printer p only. Actually p can
77                       use wildcards characters to select only
78                       some printers. The default value is *, meaning
79                       all printers.
80                       You can specify several names or wildcards,
81                       by separating them with commas.
82 
83  -G | --pgroups pg1[,pg2...] Adds the printer(s) to the printer groups
84                       pg1, pg2, etc... which must already exist.
85                       A printer group is just like a normal printer,
86                       only that it is usually unknown from the printing
87                       system. Create printer groups exactly the same
88                       way that you create printers, then add other
89                       printers to them with this option.
90                       Accounting is done on a printer and on all
91                       the printer groups it belongs to, quota checking
92                       is done on a printer and on all the printer groups
93                       it belongs to.
94 
95  -g | --groups        Edit users groups print quotas instead of users.
96                         
97  -p | --prototype u|g Uses user u or group g as a prototype to set
98                       print quotas
99                       
100  -n | --noquota       Doesn't set a quota but only does accounting.
101 
102  -r | --reset         Resets the actual page counter for the user
103                       or group to zero on the specified printers.
104                       The life time page counter is kept unchanged.
105                       
106  -R | --hardreset     Resets the actual and life time page counters
107                       for the user or group to zero on the specified
108                       printers. This is a shortcut for '--used 0'.
109                       
110  -l | --limitby l     Choose if the user/group is limited in printing                     
111                       by its account balance or by its page quota.
112                       The default value is 'quota'. Allowed values
113                       are 'quota' 'balance' 'quota-then-balance' and
114                       'balance-then-quota'.
115                       WARNING : quota-then-balance and balance-then-quota
116                       are not yet implemented.
117                       
118  -b | --balance b     Sets the user's account balance to b.                     
119                       Account balance may be increase or decreased
120                       if b is prefixed with + or -.
121                       WARNING : when decreasing account balance,
122                       the total paid so far by the user is decreased
123                       too.
124                       Groups don't have a real balance, but the
125                       sum of their users' account balance.
126                       
127  -S | --softlimit sl  Sets the quota soft limit to sl pages.                       
128 
129  -H | --hardlimit hl  Sets the quota hard limit to hl pages.
130
131  -U | --used usage    Sets the pagecounters for the user to usage pages;
132                       useful for migrating users from a different system
133                       where they have already used some pages. Actual
134                       and Life Time page counters may be increased or decreased
135                       if usage is prefixed with + or -.
136                       WARNING : BOTH page counters are modified in all cases,
137                       so be careful.
138                       NB : if 'usage' equals '0', then the action taken is
139                       the same as if --hardreset was used.
140
141  user1 through userN and group1 through groupN can use wildcards
142  if the --add option is not set.
143 
144examples :                             
145
146  $ edpykota --add -p jerome john paul george ringo/ringo@example.com
147 
148  This will add users john, paul, george and ringo to the quota
149  database, and set their print quotas to the same values than user
150  jerome. User jerome must already exist.
151  User ringo's email address will also be set to 'ringo@example.com'
152 
153  $ edpykota --printer lp -S 50 -H 60 jerome
154 
155  This will set jerome's print quota on the lp printer to a soft limit
156  of 50 pages, and a hard limit of 60 pages. If either user jerome or
157  printer lp doesn't exist on the Quota Storage Server then nothing is done.
158
159  $ edpykota --add --printer lp --ingroups coders,it -S 50 -H 60 jerome
160 
161  Same as above, but if either user jerome or printer lp doesn't exist
162  on the Quota Storage Server they are automatically added. Also
163  user jerome is put into the groups "coders" and "it" which must
164  already exist in the Quota Storage.
165           
166  $ edpykota -g -S 500 -H 550 financial support           
167 
168  This will set print quota soft limit to 500 pages and hard limit
169  to 550 pages for groups financial and support on all printers.
170 
171  $ edpykota --reset jerome "jo*"
172 
173  This will reset jerome's page counter to zero on all printers, as
174  well as every user whose name begins with 'jo'.
175  Their life time page counter on each printer will be kept unchanged.
176  You can also reset the life time page counters by using the
177  --hardreset | -R command line option.
178 
179  $ edpykota --printer hpcolor --noquota jerome
180 
181  This will tell PyKota to not limit jerome when printing on the
182  hpcolor printer. All his jobs will be allowed on this printer, but
183  accounting of the pages he prints will still be kept.
184  Print Quotas for jerome on other printers are unchanged.
185 
186  $ edpykota --limitby balance jerome
187 
188  This will tell PyKota to limit jerome by his account's balance
189  when printing.
190 
191  $ edpykota --balance +10.0 jerome
192 
193  This will increase jerome's account balance by 10.0 (in your
194  own currency). You can decrease the account balance with a
195  dash prefix, and set it to a fixed amount with no prefix.
196 
197  $ edpykota --delete jerome rachel
198 
199  This will completely delete jerome and rachel from the Quota Storage
200  database. All their quotas and jobs will be deleted too.
201 
202  $ edpykota --printer lp --charge 0.1
203 
204  This will set the page price for printer lp to 0.1. Job price
205  will not be changed.
206 
207  $ edpykota --printer hplj1,hplj2 --pgroups Laser,HP
208 
209  This will put printers hplj1 and hplj2 in printers groups Laser and HP.
210  When printing either on hplj1 or hplj2, print quota will also be
211  checked and accounted for on virtual printers Laser and HP.
212 
213  $ edpykota --overcharge 2.5 poorstudent
214 
215  This will overcharge the poorstudent user by a factor of 2.5.
216 
217  $ edpykota --overcharge -1 jerome
218 
219  User jerome will actually earn money whenever he prints.
220 
221  $ edpykota --overcharge 0 boss
222 
223  User boss can print at will, it won't cost him anything because the
224  cost of each print job will be multiplied by zero before charging
225  his account.
226
227This program is free software; you can redistribute it and/or modify
228it under the terms of the GNU General Public License as published by
229the Free Software Foundation; either version 2 of the License, or
230(at your option) any later version.
231
232This program is distributed in the hope that it will be useful,
233but WITHOUT ANY WARRANTY; without even the implied warranty of
234MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
235GNU General Public License for more details.
236
237You should have received a copy of the GNU General Public License
238along with this program; if not, write to the Free Software
239Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
240
241Please e-mail bugs to: %s""") 
242       
243class EdPyKota(PyKotaTool) :       
244    """A class for edpykota."""
245    def main(self, names, options) :
246        """Edit user or group quotas."""
247        if not self.config.isAdmin :
248            raise PyKotaToolError, "%s : %s" % (pwd.getpwuid(os.geteuid())[0], _("You're not allowed to use this command."))
249       
250        suffix = (options["groups"] and "Group") or "User"       
251       
252        softlimit = hardlimit = None
253
254        used = options["used"]
255        if used :
256            used = used.strip()
257            try :
258                int(used)
259            except ValueError :
260                raise PyKotaToolError, _("Invalid used value %s.") % used
261
262        if not options["noquota"] :
263            if options["softlimit"] :
264                try :
265                    softlimit = int(options["softlimit"].strip())
266                except ValueError :   
267                    raise PyKotaToolError, _("Invalid softlimit value %s.") % options["softlimit"]
268            if options["hardlimit"] :
269                try :
270                    hardlimit = int(options["hardlimit"].strip())
271                except ValueError :   
272                    raise PyKotaToolError, _("Invalid hardlimit value %s.") % options["hardlimit"]
273            if (softlimit is not None) and (hardlimit is not None) and (hardlimit < softlimit) :       
274                # error, exchange them
275                self.printInfo(_("Hard limit %i is less than soft limit %i, values will be exchanged.") % (hardlimit, softlimit))
276                (softlimit, hardlimit) = (hardlimit, softlimit)
277           
278        overcharge = options["overcharge"]
279        if overcharge :
280            try :
281                overcharge = float(overcharge.strip())
282            except (ValueError, AttributeError) :   
283                raise PyKotaToolError, _("Invalid overcharge value %s") % options["overcharge"]
284               
285        balance = options["balance"]
286        if balance :
287            balance = balance.strip()
288            try :
289                balancevalue = float(balance)
290            except ValueError :   
291                raise PyKotaToolError, _("Invalid balance value %s") % options["balance"]
292           
293        if options["charge"] :
294            try :
295                charges = [float(part) for part in options["charge"].split(',', 1)]
296            except ValueError :   
297                raise PyKotaToolError, _("Invalid charge amount value %s") % options["charge"]
298            else :   
299                if len(charges) > 2 :
300                    charges = charges[:2]
301                if len(charges) != 2 :
302                    charges = [charges[0], None]
303                   
304        limitby = options["limitby"]
305        if limitby :
306            limitby = limitby.strip().lower()
307        if limitby and (limitby not in ('quota', 'balance', 'quota-then-balance', 'balance-then-quota')) :   
308            raise PyKotaToolError, _("Invalid limitby value %s") % options["limitby"]
309           
310        if options["ingroups"] :   
311            groupnames = [gname.strip() for gname in options["ingroups"].split(',')]
312        else :   
313            groupnames = []
314           
315        rejectunknown = self.config.getRejectUnknown()   
316        printeradded = 0
317        printers = self.storage.getMatchingPrinters(options["printer"])
318        if not printers :
319            pname = options["printer"]
320            if options["add"] and pname :
321                if self.isValidName(pname) :
322                    printers = [ self.storage.addPrinter(pname) ]
323                    if printers[0].Exists :
324                        printeradded = 1
325                    else :   
326                        raise PyKotaToolError, _("Impossible to add printer %s") % pname
327                else :   
328                    raise PyKotaToolError, _("Invalid printer name %s") % pname
329            else :
330                raise PyKotaToolError, _("There's no printer matching %s") % pname
331        if not names :   
332            if options["delete"] :   
333                raise PyKotaToolError, _("You have to pass user or group names on the command line")
334            else :
335                names = getattr(self.storage, "getAll%ssNames" % suffix)() # all users or groups
336               
337        printersgroups = []       
338        if options["pgroups"] :       
339            printersgroups = self.storage.getMatchingPrinters(options["pgroups"])
340           
341        if options["prototype"] :   
342            protoentry = getattr(self.storage, "get%s" % suffix)(options["prototype"])
343            if not protoentry.Exists :
344                raise PyKotaToolError, _("Prototype object %s not found in Quota Storage.") % protoentry.Name
345            else :   
346                limitby = protoentry.LimitBy
347                balancevalue = protoentry.AccountBalance
348                if balancevalue is not None :
349                    balance = str(abs(balancevalue))
350                else :   
351                    balance = None
352                overcharge = getattr(protoentry, "OverCharge", None)
353           
354        todelete = {}   
355        changed = {} # tracks changes made at the user/group level
356        for printer in printers :
357            for pgroup in printersgroups :
358                pgroup.addPrinterToGroup(printer)   
359               
360            if options["charge"] :
361                (perpage, perjob) = charges
362                printer.setPrices(perpage, perjob)   
363               
364            if options["prototype"] :
365                protoquota = getattr(self.storage, "get%sPQuota" % suffix)(protoentry, printer)
366                if not protoquota.Exists :
367                    self.printInfo(_("Prototype %s not found in Quota Storage for printer %s.") % (protoentry.Name, printer.Name))
368                else :   
369                    (softlimit, hardlimit) = (protoquota.SoftLimit, protoquota.HardLimit)
370                   
371            if not options["noquota"] :   
372                if hardlimit is None :   
373                    hardlimit = softlimit
374                    if hardlimit is not None :
375                        self.printInfo(_("Undefined hard limit set to soft limit (%s) on printer %s.") % (str(hardlimit), printer.Name))
376                if softlimit is None :   
377                    softlimit = hardlimit
378                    if softlimit is not None :
379                        self.printInfo(_("Undefined soft limit set to hard limit (%s) on printer %s.") % (str(softlimit), printer.Name))
380                       
381            if options["add"] :   
382                allentries = []   
383                for name in names :
384                    email = ""
385                    if not options["groups"] :
386                        splitname = name.split('/', 1)     # username/email
387                        if len(splitname) == 1 :
388                            splitname.append("")
389                        (name, email) = splitname
390                        if email and (email.count('@') != 1) :
391                            self.printInfo(_("Invalid email address %s") % email)
392                            email = ""
393                    entry = getattr(self.storage, "get%s" % suffix)(name)
394                    if email and not options["groups"] :
395                        entry.Email = email
396                    entrypquota = getattr(self.storage, "get%sPQuota" % suffix)(entry, printer)
397                    allentries.append((entry, entrypquota))
398            else :   
399                allentries = getattr(self.storage, "getPrinter%ssAndQuotas" % suffix)(printer, names)
400               
401            for (entry, entrypquota) in allentries :
402                if not changed.has_key(entry.Name) :
403                    changed[entry.Name] = {}
404                    if not options["groups"] :
405                        changed[entry.Name]["ingroups"] = []
406                       
407                if not entry.Exists :       
408                    # not found
409                    if options["add"] :
410                        # In case we want to add something, it is crucial
411                        # that we DON'T check with the system accounts files
412                        # like /etc/passwd because users may be defined
413                        # only remotely
414                        if self.isValidName(entry.Name) :
415                            reject = 0
416                            if rejectunknown :
417                                if options["groups"] :
418                                    try :
419                                        grp.getgrnam(entry.Name)
420                                    except KeyError :   
421                                        self.printInfo(_("Unknown group %s") % entry.Name, "error")
422                                        reject = 1
423                                else :   
424                                    try :
425                                        pwd.getpwnam(entry.Name)
426                                    except KeyError :   
427                                        self.printInfo(_("Unknown user %s") % entry.Name, "error")
428                                        reject = 1
429                            if not reject :       
430                                entry = getattr(self.storage, "add%s" % suffix)(entry)
431                        else :   
432                            if options["groups"] :
433                                self.printInfo(_("Invalid group name %s") % entry.Name)
434                            else :   
435                                self.printInfo(_("Invalid user name %s") % entry.Name)
436                elif options["delete"] :               
437                    todelete[entry.Name] = entry
438                               
439                if entry.Exists and (not entrypquota.Exists) :
440                    # not found
441                    if options["add"] :
442                        entrypquota = getattr(self.storage, "add%sPQuota" % suffix)(entry, printer)
443                       
444                if not entrypquota.Exists :     
445                    self.printInfo(_("Quota not found for object %s on printer %s.") % (entry.Name, printer.Name))
446                else :   
447                    if options["noquota"] or options["prototype"] or ((softlimit is not None) and (hardlimit is not None)) :
448                        entrypquota.setLimits(softlimit, hardlimit)
449                    if limitby :
450                        if changed[entry.Name].get("limitby") is None :
451                            entry.setLimitBy(limitby)
452                            changed[entry.Name]["limitby"] = limitby
453                   
454                    if options["reset"] :
455                        entrypquota.reset()
456                       
457                    if options["hardreset"] :   
458                        entrypquota.hardreset()
459                       
460                    if not options["groups"] :
461                        if used :
462                            entrypquota.setUsage(used)
463                           
464                        if overcharge is not None :   
465                            if changed[entry.Name].get("overcharge") is None :
466                                entry.setOverChargeFactor(overcharge)
467                                changed[entry.Name]["overcharge"] = overcharge
468                               
469                        if balance :
470                            if changed[entry.Name].get("balance") is None :
471                                if balance.startswith("+") or balance.startswith("-") :
472                                    newbalance = float(entry.AccountBalance or 0.0) + balancevalue
473                                    newlifetimepaid = float(entry.LifeTimePaid or 0.0) + balancevalue
474                                    entry.setAccountBalance(newbalance, newlifetimepaid)
475                                else :
476                                    diff = balancevalue - float(entry.AccountBalance or 0.0)
477                                    newlifetimepaid = float(entry.LifeTimePaid or 0.0) + diff
478                                    entry.setAccountBalance(balancevalue, newlifetimepaid)
479                                changed[entry.Name]["balance"] = balance
480                               
481                        for groupname in groupnames :       
482                            # not executed if option --ingroups is not used
483                            if groupname not in changed[entry.Name]["ingroups"] :
484                                group = self.storage.getGroup(groupname)
485                                if group.Exists :
486                                    self.storage.addUserToGroup(entry, group)
487                                    changed[entry.Name]["ingroups"].append(groupname)
488                                else :
489                                    self.printInfo(_("Group %s not found in the PyKota Storage.") % groupname)
490                       
491        # Now delete what has to be deleted               
492        for (name, entry) in todelete.items() :               
493            entry.delete()
494                     
495if __name__ == "__main__" : 
496    retcode = 0
497    try :
498        defaults = { \
499                     "printer" : "*", \
500                   }
501        short_options = "vhdo:c:l:b:i:naugrp:P:S:H:G:RU:"
502        long_options = ["help", "version", "overcharge=", "charge=", "delete", "limitby=", "balance=", "ingroups=", "noquota", "add", "users", "groups", "reset", "hardreset", "prototype=", "printer=", "softlimit=", "hardlimit=", "pgroups=", "used="]
503       
504        # Initializes the command line tool
505        editor = EdPyKota(doc=__doc__)
506        editor.deferredInit()
507       
508        # parse and checks the command line
509        (options, args) = editor.parseCommandline(sys.argv[1:], short_options, long_options)
510       
511        # sets long options
512        options["help"] = options["h"] or options["help"]
513        options["version"] = options["v"] or options["version"]
514        options["add"] = options["a"] or options["add"]
515        options["users"] = options["u"] or options["users"]
516        options["groups"] = options["g"] or options["groups"]
517        options["prototype"] = options["p"] or options["prototype"]
518        options["printer"] = options["P"] or options["printer"] or defaults["printer"]
519        options["softlimit"] = options["S"] or options["softlimit"]
520        options["hardlimit"] = options["H"] or options["hardlimit"] 
521        options["reset"] = options["r"] or options["reset"] 
522        options["noquota"] = options["n"] or options["noquota"]
523        options["limitby"] = options["l"] or options["limitby"]
524        options["balance"] = options["b"] or options["balance"] 
525        options["delete"] = options["d"] or options["delete"] 
526        options["ingroups"] = options["i"] or options["ingroups"]
527        options["charge"] = options["c"] or options["charge"]
528        options["pgroups"] = options["G"] or options["pgroups"]
529        options["hardreset"] = options["R"] or options["hardreset"] 
530        options["used"] = options["U"] or options["used"]
531        options["overcharge"] = options["o"] or options["overcharge"]
532       
533        if options["help"] :
534            editor.display_usage_and_quit()
535        elif options["version"] :
536            editor.display_version_and_quit()
537        elif options["users"] and options["groups"] :   
538            raise PyKotaToolError, _("incompatible options, see help.")
539        elif (options["add"] or options["prototype"]) and options["delete"] :   
540            raise PyKotaToolError, _("incompatible options, see help.")
541        elif (options["reset"] or options["hardreset"] or options["limitby"] or options["used"] or options["balance"] or options["overcharge"] or options["softlimit"] or options["hardlimit"]) and options["prototype"] :
542            raise PyKotaToolError, _("incompatible options, see help.")
543        elif options["noquota"] and (options["prototype"] or options["hardlimit"] or options["softlimit"]) :
544            raise PyKotaToolError, _("incompatible options, see help.")
545        elif options["groups"] and (options["balance"] or options["ingroups"] or options["used"] or options["overcharge"]) :
546            raise PyKotaToolError, _("incompatible options, see help.")
547        else :
548            retcode = editor.main(args, options)
549    except KeyboardInterrupt :       
550        sys.stderr.write("\nInterrupted with Ctrl+C !\n")
551    except SystemExit :       
552        pass
553    except :
554        try :
555            editor.crashed("edpykota failed")
556        except :   
557            crashed("edpykota failed")
558        retcode = -1
559
560    try :
561        editor.storage.close()
562    except (TypeError, NameError, AttributeError) :   
563        pass
564       
565    sys.exit(retcode)   
Note: See TracBrowser for help on using the browser.