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
Line 
1#! /usr/bin/env python
2# -*- coding: UTF-8 -*-
3#
4# PyKota : Print Quotas for CUPS
5#
6# (c) 2003, 2004, 2005, 2006, 2007 Jerome Alet <alet@librelogiciel.com>
7# This program is free software: you can redistribute it and/or modify
8# it under the terms of the GNU General Public License as published by
9# the Free Software Foundation, either version 3 of the License, or
10# (at your option) any later version.
11#
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
18# along with this program.  If not, see <http://www.gnu.org/licenses/>.
19#
20#
21# $Id$
22#
23#
24
25import sys
26import os
27
28from pykota.tool import PyKotaTool, PyKotaToolError, PyKotaCommandLineError, crashed, N_
29
30__doc__ = N_("""autopykota v%(__version__)s (c) %(__years__)s %(__author__)s
31
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
45  -v | --version       Prints autopykota's version number then exits.
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
50                       unmodified. If unset, the default value is 0.
51
52  -e | --email addr    Sets the user's e-mail address.
53 
54""")
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 :
65            printer = self.storage.getPrinter(printername)
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           
78            user = self.storage.getUser(username)
79            if not user.Exists :
80                self.logdebug("Creating user %s which doesn't exist yet." % username)
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))
85                   
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)
98                    if userpquota.Exists :
99                        self.logdebug("User %s's print quota entry on printer %s created successfully." % (username, printername))
100                        return 0
101                    else :   
102                        self.logdebug("Impossible to create user %s's print quota entry on printer %s." % (username, printername))
103                        return -1
104                else :
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               
110if __name__ == "__main__" :   
111    retcode = 0
112    try :
113        defaults = { \
114                     "initbalance" : 0.0
115                   }
116        short_options = "vhi:e:"
117        long_options = ["help", "version", "initbalance=", "email="]
118       
119        # Initializes the command line tool
120        automat = AutoPyKota(doc=__doc__)
121        automat.deferredInit()
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"]
129        options["initbalance"] = options["i"] or options["initbalance"] or defaults["initbalance"]
130        options["email"] = options["e"] or options["email"]
131       
132        if options["help"] :
133            automat.display_usage_and_quit()
134        elif options["version"] :
135            automat.display_version_and_quit()
136        elif args :   
137            raise PyKotaCommandLineError, "autopykota doesn't accept non option arguments !"
138        else :
139            retcode = automat.main(args, options)
140    except KeyboardInterrupt :       
141        sys.stderr.write("\nInterrupted with Ctrl+C !\n")
142        retcode = -3
143    except PyKotaCommandLineError, msg :   
144        sys.stderr.write("%s : %s\n" % (sys.argv[0], msg))
145        retcode = -2
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.