Changeset 3406 for pykota

Show
Ignore:
Timestamp:
08/20/08 23:41:53 (16 years ago)
Author:
jerome
Message:

Added a class to fake command line options in the CGI script. Fixes #3.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/cgi-bin/dumpykota.cgi

    r3333 r3406  
    128128                        version.__version__, _("PyKota Data Dumper"), \ 
    129129                        _("Dump"), _("Please click on the above button")) ] 
    130         content.append(self.htmlListDataTypes(self.options.get("data", ""))) 
    131         content.append(u"<br />") 
    132         content.append(self.htmlListFormats(self.options.get("format", ""))) 
     130        content.append(self.htmlListDataTypes(self.options.data)) 
     131        content.append(u"<br />") 
     132        content.append(self.htmlListFormats(self.options.format)) 
    133133        content.append(u"<br />") 
    134134        content.append(self.htmlFilterInput(" ".join(self.arguments))) 
    135135        content.append(u"<br />") 
    136         content.append(self.htmlOrderbyInput(self.options.get("orderby", ""))) 
    137         content.append(u"<br />") 
    138         content.append(self.htmlSumCheckbox(self.options.get("sum", ""))) 
     136        content.append(self.htmlOrderbyInput(self.options.orderby)) 
     137        content.append(u"<br />") 
     138        content.append(self.htmlSumCheckbox(self.options.sum)) 
    139139        content.append(footer % (_("Dump"),  
    140140                                 version.__doc__,  
     
    190190                try : 
    191191                    if self.form.has_key("datatype") : 
    192                         self.options["data"] = self.form["datatype"].value 
     192                        self.options.data = self.form["datatype"].value 
    193193                    if self.form.has_key("format") : 
    194                         self.options["format"] = self.form["format"].value 
     194                        self.options.format = self.form["format"].value 
    195195                    if self.form.has_key("filter") :     
    196196                        self.arguments = self.form["filter"].value.split() 
    197197                    if self.form.has_key("sum") :     
    198                         self.options["sum"] = self.form["sum"].value 
     198                        self.options.sum = self.form["sum"].value 
    199199                    if self.form.has_key("orderby") :     
    200                         self.options["orderby"] = self.form["orderby"].value 
     200                        self.options.orderby = self.form["orderby"].value 
    201201                    # when no authentication is done, or when the remote username     
    202202                    # is 'root' (even if not run as root of course), then unrestricted 
     
    212212                        # can not dump any data as they like, we restrict them 
    213213                        # to their own datas. 
    214                         if self.options["data"] not in ["printers", "pmembers", "groups", "gpquotas"] : 
     214                        if self.options.data not in ["printers", "pmembers", "groups", "gpquotas"] : 
    215215                            self.arguments.append("username=%s" % remuser) 
    216216                         
    217217                    fname = "error"     
    218218                    ctype = "text/plain" 
    219                     if self.options["format"] in ("csv", "ssv") : 
     219                    if self.options.format in ("csv", "ssv") : 
    220220                        #ctype = "application/vnd.sun.xml.calc"     # OpenOffice.org 
    221221                        ctype = "text/comma-separated-values" 
    222222                        fname = "dump.csv" 
    223                     elif self.options["format"] == "tsv" : 
     223                    elif self.options.format == "tsv" : 
    224224                        #ctype = "application/vnd.sun.xml.calc"     # OpenOffice.org 
    225225                        ctype = "text/tab-separated-values" 
    226226                        fname = "dump.tsv" 
    227                     elif self.options["format"] == "xml" : 
     227                    elif self.options.format == "xml" : 
    228228                        ctype = "text/xml" 
    229229                        fname = "dump.xml" 
    230                     elif self.options["format"] == "cups" : 
     230                    elif self.options.format == "cups" : 
    231231                        ctype = "text/plain" 
    232232                        fname = "page_log" 
     
    240240                self.guiDisplay() 
    241241             
     242class FakeCommandLineOptions :             
     243    """A class to fake command line options.""" 
     244    output = "-" 
     245    data = "history" 
     246    format = "cups" 
     247    sum = None 
     248    orderby = None 
     249     
    242250if __name__ == "__main__" : 
    243251    utils.reinitcgilocale() 
     
    245253    admin.deferredInit() 
    246254    admin.form = cgi.FieldStorage() 
    247     admin.options = { "output" : "-", 
    248                 "data" : "history", 
    249                 "format" : "cups", 
    250                 "sum" : None, 
    251                 "orderby" : None, 
    252               } 
     255    admin.options = FakeCommandLineOptions() 
    253256    admin.arguments = [] 
    254257    admin.guiAction()