root / pykota / trunk / bin / autopykota @ 3260

Revision 3260, 6.6 kB (checked in by jerome, 16 years ago)

Changed license to GNU GPL v3 or later.
Changed Python source encoding from ISO-8859-15 to UTF-8 (only ASCII
was used anyway).

  • Property svn:eol-style set to native
  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
RevLine 
[1758]1#! /usr/bin/env python
[3260]2# -*- coding: UTF-8 -*-
[1758]3#
[3260]4# PyKota : Print Quotas for CUPS
[1758]5#
[3133]6# (c) 2003, 2004, 2005, 2006, 2007 Jerome Alet <alet@librelogiciel.com>
[3260]7# This program is free software: you can redistribute it and/or modify
[1758]8# it under the terms of the GNU General Public License as published by
[3260]9# the Free Software Foundation, either version 3 of the License, or
[1758]10# (at your option) any later version.
[3260]11#
[1758]12# This program is distributed in the hope that it will be useful,
13# but WITHOUT ANY WARRANTY; without even the implied warranty of
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15# GNU General Public License for more details.
16#
17# You should have received a copy of the GNU General Public License
[3260]18# along with this program.  If not, see <http://www.gnu.org/licenses/>.
[1758]19#
[3260]20#
[1758]21# $Id$
22#
[2028]23#
[1758]24
25import sys
26import os
27
[2512]28from pykota.tool import PyKotaTool, PyKotaToolError, PyKotaCommandLineError, crashed, N_
[1758]29
[2344]30__doc__ = N_("""autopykota v%(__version__)s (c) %(__years__)s %(__author__)s
[2267]31
[1758]32A tool to automate user account creation and initial balance setting.
33
34THIS TOOL MUST NOT BE USED IF YOU WANT TO LIMIT YOUR USERS BY PAGE QUOTA !
35
36command line usage :
37
38  THIS TOOL MUST NOT BE USED FROM THE COMMAND LINE BUT ONLY AS PART
39  OF AN external policy IN pykota.conf
40 
41  autopykota { -i | --initbalance value }
42
43options :
44
[1801]45  -v | --version       Prints autopykota's version number then exits.
[1758]46  -h | --help          Prints this message then exits.
47 
48  -i | --initbalance b Sets the user's account initial balance value to b.
49                       If the user already exists, actual balance is left
[1780]50                       unmodified. If unset, the default value is 0.
[3130]51
[3201]52  -e | --email addr    Sets the user's e-mail address.
[3130]53 
[2344]54""")
[1758]55
56class AutoPyKota(PyKotaTool) :
57    """A class for the automat."""
58    def main(self, arguments, options) :
59        """Main entry point."""
60        username = os.environ.get("PYKOTAUSERNAME")
61        printername = os.environ.get("PYKOTAPRINTERNAME")
62        if (username is None) or (printername is None) :
63            raise PyKotaToolError, "Either the username or the printername is undefined. Fatal Error."
64        else :
[2447]65            printer = self.storage.getPrinter(printername)
[2744]66            if not printer.Exists :
67                self.logdebug("Creating printer %s which doesn't exist yet." % printername)
68                os.system('pkprinters --add --description "printer created from autopykota" "%s"' % printername)
69                printer = self.storage.getPrinterFromBackend(printername)
70                if printer.Exists :
71                    self.logdebug("Printer %s created successfully." % printername)
72                else :   
73                    self.logdebug("Impossible to create printer %s." % printername)
74                printernames = [printername]
75            else :   
76                printernames = [printer.Name] + [p.Name for p in self.storage.getParentPrinters(printer)]
77           
[1758]78            user = self.storage.getUser(username)
[2744]79            if not user.Exists :
80                self.logdebug("Creating user %s which doesn't exist yet." % username)
[3130]81                if (options["email"] is None) :
82                    os.system('pkusers --add --limitby balance --balance "%s" --description "user created from autopykota" "%s"' % (options["initbalance"], username))
83                else :
84                    os.system('pkusers --add --limitby balance --balance "%s" --email "%s" --description "user created from autopykota" "%s"' % (options["initbalance"], options["email"], username))
[3132]85                   
[2744]86                user = self.storage.getUserFromBackend(username)
87                if user.Exists :
88                    self.logdebug("User %s created successfully." % username)
89                else :   
90                    self.logdebug("Impossible to create user %s." % username)
91               
92            if user.Exists and printer.Exists :   
93                userpquota = self.storage.getUserPQuota(user, printer)
94                if not userpquota.Exists :
95                    self.logdebug("Creating a print quota entry for user %s on printers %s" % (username, printernames))
96                    os.system('edpykota --add --printer "%s" "%s"' % (','.join(printernames), username))
97                    userpquota = self.storage.getUserPQuotaFromBackend(user, printer)
[1758]98                    if userpquota.Exists :
[2744]99                        self.logdebug("User %s's print quota entry on printer %s created successfully." % (username, printername))
[1758]100                        return 0
101                    else :   
[2744]102                        self.logdebug("Impossible to create user %s's print quota entry on printer %s." % (username, printername))
103                        return -1
[1758]104                else :
[2744]105                    self.logdebug("User %s's print quota entry on printer %s already exists. Nothing to do." % (username, printername))
106                    return 0
107            else :       
108                return -1
109               
[1758]110if __name__ == "__main__" :   
111    retcode = 0
112    try :
113        defaults = { \
[1780]114                     "initbalance" : 0.0
[1758]115                   }
[3130]116        short_options = "vhi:e:"
117        long_options = ["help", "version", "initbalance=", "email="]
[1758]118       
119        # Initializes the command line tool
120        automat = AutoPyKota(doc=__doc__)
[2210]121        automat.deferredInit()
[1758]122       
123        # parse and checks the command line
124        (options, args) = automat.parseCommandline(sys.argv[1:], short_options, long_options)
125       
126        # sets long options
127        options["help"] = options["h"] or options["help"]
128        options["version"] = options["v"] or options["version"]
[1780]129        options["initbalance"] = options["i"] or options["initbalance"] or defaults["initbalance"]
[3130]130        options["email"] = options["e"] or options["email"]
[1758]131       
132        if options["help"] :
133            automat.display_usage_and_quit()
134        elif options["version"] :
135            automat.display_version_and_quit()
136        elif args :   
[2512]137            raise PyKotaCommandLineError, "autopykota doesn't accept non option arguments !"
[1758]138        else :
139            retcode = automat.main(args, options)
[2216]140    except KeyboardInterrupt :       
141        sys.stderr.write("\nInterrupted with Ctrl+C !\n")
[2609]142        retcode = -3
[2512]143    except PyKotaCommandLineError, msg :   
144        sys.stderr.write("%s : %s\n" % (sys.argv[0], msg))
[2609]145        retcode = -2
[1758]146    except SystemExit :       
147        pass
148    except :
149        try :
150            automat.crashed("autopykota failed")
151        except :   
152            crashed("autopykota failed")
153        retcode = -1
154
155    try :
156        automat.storage.close()
157    except (TypeError, NameError, AttributeError) :   
158        pass
159       
160    sys.exit(retcode)   
Note: See TracBrowser for help on using the browser.