root / pykota / trunk / pykota / reporters / html.py @ 3568

Revision 3568, 4.1 kB (checked in by jerome, 11 years ago)

Don't output reports anymore for printers without any print quota entry.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1# -*- coding: utf-8 -*-
2#
3# PyKota : Print Quotas for CUPS
4#
5# (c) 2003-2013 Jerome Alet <alet@librelogiciel.com>
6# This program is free software: you can redistribute it and/or modify
7# it under the terms of the GNU General Public License as published by
8# the Free Software Foundation, either version 3 of the License, or
9# (at your option) any later version.
10#
11# This program is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14# GNU General Public License for more details.
15#
16# You should have received a copy of the GNU General Public License
17# along with this program.  If not, see <http://www.gnu.org/licenses/>.
18#
19# $Id$
20#
21#
22
23"""This module defines a class for HTML reporting."""
24
25import os
26import urllib
27
28from pykota.reporter import BaseReporter
29
30class Reporter(BaseReporter) :
31    """HTML reporter."""
32    def generateReport(self) :
33        """Produces a simple HTML report."""
34        self.report = []
35        if self.isgroup :
36            prefix = "Group"
37        else :
38            prefix = "User"
39        for printer in self.printers :
40            entries = getattr(self.tool.storage, "getPrinter%ssAndQuotas" % prefix)(printer, self.ugnames)
41            if entries :
42                phistoryurl = { "printername" : printer.Name, "history" : 1 }
43                self.report.append('<a href="%s?%s"><h2 class="printername">%s</h2></a>' % (os.environ.get("SCRIPT_NAME", ""), urllib.urlencode(phistoryurl), self.getPrinterTitle(printer)))
44                self.report.append('<h3 class="printergracedelay">%s</h3>' % self.getPrinterGraceDelay(printer))
45                (pjob, ppage) = self.getPrinterPrices(printer)
46                self.report.append('<h4 class="priceperjob">%s</h4>' % pjob)
47                self.report.append('<h4 class="priceperpage">%s</h4>' % ppage)
48                total = 0
49                totalmoney = 0.0
50                self.report.append('<table class="pykotatable" border="1">')
51                headers = self.getReportHeader().split()
52                headers.insert(1, "LimitBy")
53                self.report.append('<tr class="pykotacolsheader">%s</tr>' % "".join(["<th>%s</th>" % h for h in headers]))
54                oddeven = 0
55                for (entry, entrypquota) in entries :
56                    oddeven += 1
57                    if oddeven % 2 :
58                        oddevenclass = "odd"
59                    else :
60                        oddevenclass = "even"
61                    (pages, money, name, reached, pagecounter, soft, hard, balance, datelimit, lifepagecounter, lifetimepaid, overcharge, warncount) = self.getQuota(entry, entrypquota)
62                    if datelimit :
63                        if datelimit == "DENY" :
64                            oddevenclass = "deny"
65                        else :
66                            oddevenclass = "warn"
67                    if (not self.tool.config.getDisableHistory()) and (not self.isgroup) :
68                        name = '<a href="%s?username=%s&printername=%s&history=1">%s</a>' % (os.environ.get("SCRIPT_NAME", ""), name, printer.Name, name)
69                    self.report.append('<tr class="%s">%s</tr>' % (oddevenclass, "".join(["<td>%s</td>" % h for h in (name, reached, overcharge, pagecounter, soft, hard, balance, datelimit or "&nbsp;", lifepagecounter, lifetimepaid, warncount)])))
70                    total += pages
71                    totalmoney += money
72
73                if total or totalmoney :
74                    (tpage, tmoney) = self.getTotals(total, totalmoney)
75                    self.report.append('<tr class="totals"><td colspan="8">&nbsp;</td><td align="right">%s</td><td align="right">%s</td><td>&nbsp;</td></tr>' % (tpage, tmoney))
76                self.report.append('<tr class="realpagecounter"><td colspan="8">&nbsp;</td><td align="right">%s</td><td>&nbsp;</td></tr>' % self.getPrinterRealPageCounter(printer))
77                self.report.append('</table>')
78        if self.isgroup :
79            self.report.append('<p class="warning">%s</p>' % _("Totals may be inaccurate if some users are members of several groups."))
80        return "\n".join(self.report)
Note: See TracBrowser for help on using the browser.