root / pykota / trunk / pykota / storages / sql.py @ 719

Revision 719, 6.0 kB (checked in by jalet, 21 years ago)

edpykota should be ok, minus some typos

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1# PyKota
2#
3# PyKota : Print Quotas for CUPS
4#
5# (c) 2003 Jerome Alet <alet@librelogiciel.com>
6# You're welcome to redistribute this software under the
7# terms of the GNU General Public Licence version 2.0
8# or, at your option, any higher version.
9#
10# You can read the complete GNU GPL in the file COPYING
11# which should come along with this software, or visit
12# the Free Software Foundation's WEB site http://www.fsf.org
13#
14# $Id$
15#
16# $Log$
17# Revision 1.7  2003/02/06 14:28:59  jalet
18# edpykota should be ok, minus some typos
19#
20# Revision 1.6  2003/02/06 09:19:02  jalet
21# More robust behavior (hopefully) when the user or printer is not managed
22# correctly by the Quota System : e.g. cupsFilter added in ppd file, but
23# printer and/or user not 'yet?' in storage.
24#
25# Revision 1.5  2003/02/05 23:26:22  jalet
26# Incorrect handling of grace delay
27#
28# Revision 1.4  2003/02/05 23:02:10  jalet
29# Typo
30#
31# Revision 1.3  2003/02/05 23:00:12  jalet
32# Forgotten import
33# Bad datetime conversion
34#
35# Revision 1.2  2003/02/05 22:28:38  jalet
36# More robust storage
37#
38# Revision 1.1  2003/02/05 21:28:17  jalet
39# Initial import into CVS
40#
41#
42#
43
44class SQLStorage :   
45    def getMatchingPrinters(self, printerpattern) :
46        """Returns the list of all printer names which match a certain pattern."""
47        printerslist = []
48        # We 'could' do a SELECT printername FROM printers WHERE printername LIKE ...
49        # but we don't because other storages semantics may be different, so every
50        # storage should use fnmatch to match patterns and be storage agnostic
51        result = self.doQuery("SELECT printername FROM printers;")
52        result = self.doParseResult()
53        if result is not None :
54            for printer in result :
55                if fnmatch.fnmatchcase(printer["printername"], printerpattern) :
56                    printerslist.append(printer["printername"])
57        return printerslist       
58           
59    def getUserId(self, username) :
60        """Returns a userid given a username."""
61        result = self.doQuery("SELECT id FROM users WHERE username=%s;" % self.doQuote(username))
62        try :
63            return self.doParseResult(result)[0]["id"]
64        except TypeError :      # Not found
65            return
66           
67    def getPrinterId(self, printername) :       
68        """Returns a printerid given a printername."""
69        result = self.doQuery("SELECT id FROM printers WHERE printername=%s;" % self.doQuote(printername))
70        try :
71            return self.doParseResult(result)[0]["id"]
72        except TypeError :      # Not found   
73            return
74           
75    def getPrinterPageCounter(self, printername) :
76        """Returns the last page counter value for a printer given its name."""
77        result = self.doQuery("SELECT pagecounter, lastusername FROM printers WHERE printername=%s;" % self.doQuote(printername))
78        try :
79            return self.doParseResult(result)[0]
80        except TypeError :      # Not found
81            return
82       
83    def updatePrinterPageCounter(self, printername, username, pagecount) :
84        """Updates the last page counter information for a printer given its name, last username and pagecount."""
85        return self.doQuery("UPDATE printers SET pagecounter=%s, lastusername=%s WHERE printername=%s;" % (self.doQuote(pagecount), self.doQuote(username), self.doQuote(printername)))
86       
87    def addUserPQuota(self, username, printername) :
88        (userid, printerid) = self.getUPIds(username, printername)
89        if printerid is None :   
90            self.doQuery("INSERT INTO printers (printername) VALUES (%s);" % self.doQuote(printername))
91        if userid is None :   
92            self.doQuery("INSERT INTO users (username) VALUES (%s);" % self.doQuote(username))
93        (userid, printerid) = self.getUPIds(username, printername)
94        if (userid is not None) and (printerid is not None) :
95            return self.doQuery("INSERT INTO userpquota (userid, printerid) VALUES (%s, %s);" % (self.doQuote(userid), self.doQuote(printerid)))
96       
97    def getUPIds(self, username, printername) :   
98        """Returns a tuple (userid, printerid) given a username and a printername."""
99        return (self.getUserId(username), self.getPrinterId(printername))
100       
101    def getUserPQuota(self, username, printername) :
102        """Returns the Print Quota information for a given (username, printername)."""
103        (userid, printerid) = self.getUPIds(username, printername)
104        if (userid is not None) and (printerid is not None) :
105            result = self.doQuery("SELECT pagecounter, softlimit, hardlimit, datelimit FROM userpquota WHERE userid=%s AND printerid=%s;" % (self.doQuote(userid), self.doQuote(printerid)))
106            try :
107                return self.doParseResult(result)[0]
108            except TypeError :      # Not found   
109                pass
110       
111    def setUserPQuota(self, username, printername, softlimit, hardlimit) :
112        """Sets soft and hard limits for a user quota on a specific printer given (username, printername)."""
113        (userid, printerid) = self.getUPIds(username, printername)
114        if (userid is not None) and (printerid is not None) :
115            self.doQuery("UPDATE userpquota SET softlimit=%s, hardlimit=%s, datelimit=NULL WHERE userid=%s AND printerid=%s;" % (self.doQuote(softlimit), self.doQuote(hardlimit), self.doQuote(userid), self.doQuote(printerid)))
116       
117    def updateUserPQuota(self, username, printername, pagecount) :
118        """Updates the used user Quota information given (username, printername) and a job size in pages."""
119        (userid, printerid) = self.getUPIds(username, printername)
120        if (userid is not None) and (printerid is not None) :
121            self.doQuery("UPDATE userpquota SET pagecounter=pagecounter+(%s) WHERE userid=%s AND printerid=%s;" % (self.doQuote(pagecount), self.doQuote(userid), self.doQuote(printerid)))
122       
123    def buyUserPQuota(self, username, printername, pagebought) :
124        """Buys pages for a given (username, printername)."""
125        self.updateUserPQuota(username, printername, -pagebought)
126       
Note: See TracBrowser for help on using the browser.