root / pykota / trunk / bin / pykota @ 1257

Revision 1257, 12.0 kB (checked in by jalet, 20 years ago)

Copyright year changed.

  • 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 accounting filter
5#
6# PyKota - Print Quotas for CUPS and LPRng
7#
8# (c) 2003-2004 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# $Log$
26# Revision 1.49  2004/01/08 14:10:32  jalet
27# Copyright year changed.
28#
29# Revision 1.48  2003/12/27 16:49:25  uid67467
30# Should be ok now.
31#
32# Revision 1.47  2003/11/26 19:17:35  jalet
33# Printing on a printer not present in the Quota Storage now results
34# in the job being stopped or cancelled depending on the system.
35#
36# Revision 1.46  2003/11/24 14:25:02  jalet
37# Missing import in pykota filter
38#
39# Revision 1.45  2003/11/19 23:19:37  jalet
40# Code refactoring work.
41# Explicit redirection to /dev/null has to be set in external policy now, just
42# like in external mailto.
43#
44# Revision 1.44  2003/11/08 16:05:31  jalet
45# CUPS backend added for people to experiment.
46#
47# Revision 1.43  2003/11/06 22:33:25  jalet
48# French variable name
49#
50# Revision 1.42  2003/10/08 21:41:38  jalet
51# External policies for printers works !
52# We can now auto-add users on first print, and do other useful things if needed.
53#
54# Revision 1.41  2003/10/07 09:07:27  jalet
55# Character encoding added to please latest version of Python
56#
57# Revision 1.40  2003/09/04 08:38:56  jalet
58# Added an exception catch to ensure clean close of database even in
59# case of TypeError too.
60#
61# Revision 1.39  2003/08/18 16:35:28  jalet
62# New pychecker pass, on the tools this time.
63#
64# Revision 1.38  2003/08/18 16:20:59  jalet
65# Improvement of the printing system detection code.
66#
67# Revision 1.37  2003/07/29 20:55:17  jalet
68# 1.14 is out !
69#
70# Revision 1.36  2003/07/10 06:09:52  jalet
71# Incorrect documentation string
72#
73# Revision 1.35  2003/06/25 14:10:01  jalet
74# Hey, it may work (edpykota --reset excepted) !
75#
76# Revision 1.34  2003/06/13 18:54:17  jalet
77# Bug with remote jobs and LPRng fixed.
78#
79# Revision 1.33  2003/05/28 13:51:38  jalet
80# Better handling of errors
81#
82# Revision 1.32  2003/05/27 23:00:20  jalet
83# Big rewrite of external accounting methods.
84# Should work well now.
85#
86# Revision 1.31  2003/04/30 13:36:39  jalet
87# Stupid accounting method was added.
88#
89# Revision 1.30  2003/04/29 22:03:38  jalet
90# Better error handling.
91#
92# Revision 1.29  2003/04/29 18:37:54  jalet
93# Pluggable accounting methods (actually doesn't support external scripts)
94#
95# Revision 1.28  2003/04/26 08:41:24  jalet
96# Small code reorganisation (UNTESTED) to allow pluggable accounting
97# methods in the future.
98#
99# Revision 1.27  2003/04/25 09:23:47  jalet
100# Debug message passed through !
101#
102# Revision 1.26  2003/04/25 08:23:23  jalet
103# Multiple tries to get the printer's internal page counter, waits for
104# one minute maximum for the printer to warm up, actually.
105#
106# Revision 1.25  2003/04/24 11:53:48  jalet
107# Default policy for unknown users/groups is to DENY printing instead
108# of the previous default to ALLOW printing. This is to solve an accuracy
109# problem. If you set the policy to ALLOW, jobs printed by in nexistant user
110# (from PyKota's POV) will be charged to the next user who prints on the
111# same printer.
112#
113# Revision 1.24  2003/04/23 22:13:56  jalet
114# Preliminary support for LPRng added BUT STILL UNTESTED.
115#
116# Revision 1.23  2003/04/15 11:30:57  jalet
117# More work done on money print charging.
118# Minor bugs corrected.
119# All tools now access to the storage as priviledged users, repykota excepted.
120#
121# Revision 1.22  2003/04/15 11:09:04  jalet
122# Small bug was fixed when a printer was never used and its internal
123# page counter is not accessible.
124#
125# Revision 1.21  2003/04/12 17:20:14  jalet
126# Better formula for HP workaround
127#
128# Revision 1.20  2003/04/12 16:58:28  jalet
129# The workaround for HP printers was not correct, and there's probably no
130# correct way to workaround the problem because we can't save the internal
131# page counter in real time. The last job's size is unconditionnally set to
132# 5 pages in this case.
133#
134# Revision 1.19  2003/04/11 08:56:49  jalet
135# Comment
136#
137# Revision 1.18  2003/04/11 08:50:39  jalet
138# Workaround for the HP "feature" of saving the page counter to NVRAM
139# only every time 10 new pages are printed...
140# Workaround for printers with volatile page counters.
141#
142# Revision 1.17  2003/04/10 21:47:20  jalet
143# Job history added. Upgrade script neutralized for now !
144#
145# Revision 1.16  2003/04/08 20:38:08  jalet
146# The last job Id is saved now for each printer, this will probably
147# allow other accounting methods in the future.
148#
149# Revision 1.15  2003/03/29 13:45:27  jalet
150# GPL paragraphs were incorrectly (from memory) copied into the sources.
151# Two README files were added.
152# Upgrade script for PostgreSQL pre 1.01 schema was added.
153#
154# Revision 1.14  2003/03/07 22:16:57  jalet
155# Algorithmically incorrect : last user quota wasn't updated if current
156# user wasn't allowed to print.
157#
158# Revision 1.13  2003/02/27 23:59:28  jalet
159# Stupid bug wrt exception handlingand value conversion
160#
161# Revision 1.12  2003/02/27 23:48:41  jalet
162# Correctly maps PyKota's log levels to syslog log levels
163#
164# Revision 1.11  2003/02/27 22:55:20  jalet
165# WARN log priority doesn't exist.
166#
167# Revision 1.10  2003/02/27 22:43:21  jalet
168# Missing import
169#
170# Revision 1.9  2003/02/27 22:40:26  jalet
171# Correctly handles cases where the printer is off.
172#
173# Revision 1.8  2003/02/09 12:56:53  jalet
174# Internationalization begins...
175#
176# Revision 1.7  2003/02/07 10:23:48  jalet
177# Avoid a possible future name clash
178#
179# Revision 1.6  2003/02/06 22:54:33  jalet
180# warnpykota should be ok
181#
182# Revision 1.5  2003/02/05 22:45:25  jalet
183# Forgotten import
184#
185# Revision 1.4  2003/02/05 22:42:51  jalet
186# Typo
187#
188# Revision 1.3  2003/02/05 22:38:39  jalet
189# Typo
190#
191# Revision 1.2  2003/02/05 22:16:20  jalet
192# DEVICE_URI is undefined outside of CUPS, i.e. for normal command line tools
193#
194# Revision 1.1  2003/02/05 21:28:17  jalet
195# Initial import into CVS
196#
197#
198#
199
200import sys
201import os
202
203from pykota.tool import PyKotaFilterOrBackend, PyKotaToolError
204from pykota.config import PyKotaConfigError
205from pykota.storage import PyKotaStorageError
206from pykota.accounter import PyKotaAccounterError
207from pykota.requester import PyKotaRequesterError
208
209class PyKotaFilter(PyKotaFilterOrBackend) :       
210    """A class for the pykota filter."""
211    def acceptJob(self) :       
212        """Returns the exit code needed by the printing backend to accept the job and print it."""
213        if self.printingsystem == "CUPS" :
214            return 0
215        elif self.printingsystem == "LPRNG" :   
216            return 0
217        else :   
218            # UNKNOWN
219            return -1
220           
221    def removeJob(self) :           
222        """Returns the exit code needed by the printing backend to refuse the job and remove it."""
223        if self.printingsystem == "CUPS" :
224            return 1
225        elif self.printingsystem == "LPRNG" :   
226            return 3
227        else :   
228            # UNKNOWN
229            return -1
230           
231def main(thefilter) :   
232    """Do it, and do it right !"""
233    #
234    # If this is a CUPS filter, we should act and die like a CUPS filter when needed
235    if thefilter.printingsystem == "CUPS" :
236        if len(sys.argv) not in (6, 7) :   
237            sys.stderr.write("ERROR: %s job-id user title copies options [file]\n" % sys.argv[0])
238            return thefilter.removeJob()
239   
240    # Get the last page counter and last username from the Quota Storage backend
241    printer = thefilter.storage.getPrinter(thefilter.printername)
242    if not printer.Exists :
243        # The printer is unknown from the Quota Storage perspective.
244        # we just cancel the job.
245        thefilter.logger.log_message(_("Printer %s not registered in the PyKota system") % thefilter.printername, "error")
246        return thefilter.removeJob()
247    else :   
248        for dummy in range(2) :
249            user = thefilter.storage.getUser(thefilter.username)
250            if user.Exists :
251                break
252            else :   
253                # The user is unknown from the Quota Storage perspective
254                # Depending on the default policy for this printer, we
255                # either let the job pass through or reject it, but we
256                # log a message in any case.
257                (policy, args) = thefilter.config.getPrinterPolicy(thefilter.printername)
258                if policy == "ALLOW" :
259                    action = "POLICY_ALLOW"
260                elif policy == "EXTERNAL" :   
261                    commandline = thefilter.formatCommandLine(args, user, printer)
262                    thefilter.logger.log_message(_("User %s not registered in the PyKota system, applying external policy (%s) for printer %s") % (thefilter.username, commandline, thefilter.printername), "info")
263                    if os.system(commandline) :
264                        thefilter.logger.log_message(_("External policy %s for printer %s produced an error. Job rejected. Please check PyKota's configuration files.") % (commandline, thefilter.printername), "error")
265                        return thefilter.removeJob()
266                    else :   
267                        # here we try a second time, because the goal
268                        # of the external action was to add the user
269                        # in the database.
270                        continue 
271                else :   
272                    action = "POLICY_DENY"
273                thefilter.logger.log_message(_("User %s not registered in the PyKota system, applying default policy (%s) for printer %s") % (thefilter.username, action, thefilter.printername), "warn")
274                if action == "POLICY_DENY" :
275                    return thefilter.removeJob()
276                # when we get there, the printer policy allows the job to pass
277                break   
278                   
279        # if user exists, do accounting
280        if user.Exists :
281            # Now does the accounting and act depending on the result
282            thefilter.logdebug("Does accounting for user %s on printer %s." % (user.Name, printer.Name))
283            action = thefilter.accounter.doAccounting(printer, user)
284       
285            # if not allowed to print then die, else proceed.
286            if action == "DENY" :
287                # No, just die cleanly
288                thefilter.logdebug("Printing is denied.")
289                return thefilter.removeJob()
290        elif policy == "EXTERNAL" :               
291            thefilter.logger.log_message(_("External policy %s for printer %s couldn't add user %s. Job rejected.") % (commandline, thefilter.printername, thefilter.username), "error")
292            return thefilter.removeJob()
293       
294        # pass the job untouched to the underlying layer
295        thefilter.logdebug("Passing input data to next filter.")
296        thefilter.accounter.filterInput(thefilter.inputfile)     
297   
298        return thefilter.acceptJob()
299
300if __name__ == "__main__" :   
301    retcode = -1
302    try :
303        # Initializes the current tool
304        kotafilter = PyKotaFilter()   
305        retcode = main(kotafilter)
306    except (PyKotaToolError, PyKotaConfigError, PyKotaStorageError, PyKotaAccounterError, PyKotaRequesterError, AttributeError, KeyError, IndexError, ValueError, TypeError, IOError), msg :
307        sys.stderr.write("ERROR : PyKota filter failed (%s)\n" % msg)
308        sys.stderr.flush()
309        try :
310            retcode = kotafilter.removeJob()
311        except :
312            retcode = -1
313
314    try :
315        kotafilter.storage.close()
316    except (TypeError, NameError, AttributeError) :   
317        pass
318       
319    sys.exit(retcode)   
Note: See TracBrowser for help on using the browser.