!c99Shell v. 1.0 pre-release build #16!

Software: Apache/2.2.3 (CentOS). PHP/5.1.6 

uname -a: Linux mx-ll-110-164-51-230.static.3bb.co.th 2.6.18-194.el5PAE #1 SMP Fri Apr 2 15:37:44
EDT 2010 i686
 

uid=48(apache) gid=48(apache) groups=48(apache) 

Safe-mode: OFF (not secure)

/usr/share/hplip/ui/   drwxr-xr-x
Free 50.63 GB of 127.8 GB (39.62%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     faxsendjobform.py (35.8 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
# -*- coding: utf-8 -*-
#
# (c) Copyright 2003-2006 Hewlett-Packard Development Company, L.P.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
#
# Author: Don Welch
#

# Std Lib
import glob, Queue, socket, struct

# Local
from base.g import *
from base import utils, device, magic, pml, service, msg

try:
    from fax import fax
except ImportError:
    # This can fail on Python < 2.3 due to the datetime module
    log.error("Fax send disabled - Python 2.3+ required.")
    sys.exit(1)

from prnt import cups

# Qt/UI
from qt import *
from faxsendjobform_base import FaxSendJobForm_base
from waitform import WaitForm
from faxsettingsform import FaxSettingsForm
from faxallowabletypesdlg import FaxAllowableTypesDlg

try:
    import reportlab
except ImportError:
    coverpages_enabled = False
else:
    from fax import coverpages
    from coverpageform import CoverpageForm
    coverpages_enabled = True

# Used to store MIME types for files
# added directly in interface.
job_types = {} # { job_id : "mime_type", ...}


class FileListViewItem(QListViewItem):
    def __init__(self, parent, title, mime_type_desc, path, str_pages):
        QListViewItem.__init__(self, parent, title, mime_type_desc, str_pages)
        self.path = path


class FaxSendJobForm(FaxSendJobForm_base):

    def __init__(self, sock, device_uri, printer_name, args, 
                 parent=None, name=None, 
                 modal=0, fl=0):

        FaxSendJobForm_base.__init__(self, parent, name, modal, fl)
        icon = QPixmap(os.path.join(prop.image_dir, 'HPmenu.png'))
        self.setIcon(icon)
        self.sock = sock
        self.init_failed = False
        self.device_uri = device_uri
        self.dev = None
        self.printer_name = printer_name
        bus = 'cups'
        self.document_num = 1
        self.filename = ''
        self.waitdlg = None
        self.recipient_list = []
        self.username = prop.username
        self.args = args

        self.update_queue = Queue.Queue() # UI updates from send thread
        self.event_queue = Queue.Queue() # UI events (from hpssd) to send thread

        pix = QPixmap(os.path.join(prop.image_dir, 'folder_remove.png'))
        self.delFileButton.setPixmap(pix)

        pix = QPixmap(os.path.join(prop.image_dir, 'status_refresh.png'))
        self.refreshToolButton.setPixmap(pix)

        pix = QPixmap(os.path.join(prop.image_dir, 'up.png'))
        self.upFileButton.setPixmap(pix)

        pix = QPixmap(os.path.join(prop.image_dir, 'down.png'))
        self.downFileButton.setPixmap(pix)

        self.fileListView.setSorting(-1)

        # TODO: Hook these up. Need to read current settings
        # from PDD file for the current device queue
        #self.paperSizeButtonGroup.setEnabled(False)
        #self.qualityButtonGroup.setEnabled(False)

        self.addCoverpagePushButton.setEnabled(coverpages_enabled)
        self.cover_page_func, cover_page_png = None, None
        self.cover_page_message = ''
        self.cover_page_re = ''
        self.cover_page_name = ''

        self.event_handler = self.addFileFromJob

        self.file_list = []

        self.db =  fax.FaxAddressBook() # kirbybase instance

        self.allowable_mime_types = cups.getAllowableMIMETypes()
        self.allowable_mime_types.append("application/hplip-fax")
        self.allowable_mime_types.append("application/x-python")

        log.debug(self.allowable_mime_types)

        self.MIME_TYPES_DESC = \
        {
            "application/pdf" : (self.__tr("PDF Document"), '.pdf'),
            "application/postscript" : (self.__tr("Postscript Document"), '.ps'),
            "application/vnd.hp-HPGL" : (self.__tr("HP Graphics Language File"), '.hgl, .hpg, .plt, .prn'),
            "application/x-cshell" : (self.__tr("C Shell Script"), '.csh'),
            "application/x-perl" : (self.__tr("Perl Script"), '.pl'),
            "application/x-python" : (self.__tr("Python Program"), '.py'),
            "application/x-shell" : (self.__tr("Shell Script"), '.sh'),
            "text/plain" : (self.__tr("Plain Text"), '.txt, .log, etc'),
            "text/html" : (self.__tr("HTML Dcoument"), '.htm, .html'),
            "image/gif" : (self.__tr("GIF Image"), '.gif'),
            "image/png" : (self.__tr("PNG Image"), '.png'),
            "image/jpeg" : (self.__tr("JPEG Image"), '.jpg, .jpeg'),
            "image/tiff" : (self.__tr("TIFF Image"), '.tif, .tiff'),
            "image/x-bitmap" : (self.__tr("Bitmap (BMP) Image"), '.bmp'),
            "image/x-photocd" : (self.__tr("Photo CD Image"), '.pcd'),
            "image/x-portable-anymap" : (self.__tr("Portable Image (PNM)"), '.pnm'),
            "image/x-portable-bitmap" : (self.__tr("Portable B&W Image (PBM)"), '.pbm'),
            "image/x-portable-graymap" : (self.__tr("Portable Grayscale Image (PGM)"), '.pgm'),
            "image/x-portable-pixmap" : (self.__tr("Portable Color Image (PPM)"), '.ppm'),
            "image/x-sgi-rgb" : (self.__tr("SGI RGB"), '.rgb'),
            "image/x-xbitmap" : (self.__tr("X11 Bitmap (XBM)"), '.xbm'),
            "image/x-xpixmap" : (self.__tr("X11 Pixmap (XPM)"), '.xpm'),
            "image/x-sun-raster" : (self.__tr("Sucoverpages_enabledn Raster Format"), '.ras'),
            "application/hplip-fax" : (self.__tr("HP Fax"), '.g3'),
            "application/hplip-fax-coverpage" : (self.__tr("HP Fax Coverpage"), 'n/a'),
        }

        if self.device_uri and self.printer_name:
            log.error("You may not specify both a printer (-p) and a device (-d).")
            self.FailureUI(self.__tr("<p><b>You may not specify both a printer (-p) and a device (-d)."))
            self.device_uri, self.printer_name = None, None
            self.init_failed = True

        self.cups_printers = cups.getPrinters()
        log.debug(self.cups_printers)

        if not self.device_uri and not self.printer_name:
            t = device.probeDevices(self.sock, bus=bus, filter='fax')
            probed_devices = []

            for d in t:
                probed_devices.append(d.replace('hp:/', 'hpfax:/'))

            probed_devices = utils.uniqueList(probed_devices)
            log.debug(probed_devices)

            max_deviceid_size, x, devices = 0, 0, {}

            for d in probed_devices:
                printers = []
                for p in self.cups_printers:
                    if p.device_uri == d:
                        printers.append(p.name)
                devices[x] = (d, printers)
                x += 1
                max_deviceid_size = max(len(d), max_deviceid_size)

            if x == 0:
                from nodevicesform import NoDevicesForm
                self.FailureUI(self.__tr("<p><b>No devices found.</b><p>Please make sure your device is properly installed and try again."))
                self.init_failed = True

            elif x == 1:
                log.info(utils.bold("Using device: %s" % devices[0][0]))
                self.device_uri = devices[0][0]

            else:
                from chooseprinterdlg import ChoosePrinterDlg
                dlg = ChoosePrinterDlg(self.cups_printers, ['hpfax'])
                if dlg.exec_loop() == QDialog.Accepted:
                    self.device_uri = dlg.device_uri
                else:
                    self.init_failed = True

        cmd_print, cmd_scan, cmd_pcard, \
            cmd_copy, cmd_fax, cmd_fab = utils.deviceDefaultFunctions()

        self.cmd_fab = user_cfg.commands.fab or cmd_fab
        log.debug("FAB command: %s" % self.cmd_fab)
        
        if not coverpages_enabled:
            log.warn("Coverpages disabled. Reportlab not installed.")

        QTimer.singleShot(0, self.InitialUpdate)


    # ************************************** Device status
    def InitialUpdate(self):
        if self.init_failed:
            self.close()
            return      

        self.printer_list = []

        self.dev = fax.FaxDevice(device_uri=self.device_uri, 
                                 printer_name=self.printer_name)

        self.device_uri = self.dev.device_uri

        log.debug("Device URI=%s" %self.device_uri)
        self.DeviceURIText.setText(self.device_uri)

        for p in self.cups_printers:
            if p.device_uri == self.device_uri:
                self.printer_list.append(p.name)

        if not self.printer_list:
            self.FailureUI(self.__tr("<b>No appropriate CUPS fax queue is setup.</b><p>Please install a CUPS queue for device '%1' using the HPLIP Fax PPD file. (You could use 'hp-setup' to do this.)").arg(self.device_uri))
            self.close()
            return

        for p in self.printer_list:
            self.printerNameComboBox.insertItem(p)

        self.UpdatePrinterStatus()

        if self.printer_name is None:
            self.printerNameComboBox.setCurrentItem(0)
        elif self.printer_name in self.printer_list:
            self.printerNameComboBox.setCurrentText(self.printer_name)

        self.current_printer = str(self.printerNameComboBox.currentText())

        self.UpdatePrinterInfo()

        self.UpdateIndividualList()
        self.UpdateGroupList()
        self.CheckSendButtons()
        self.selection = []

        if len(self.args):
            for a in self.args:
                if os.path.exists(a):
                    self.processFile(a, a)
                else:
                    self.FailureUI(self.__tr("<b>File not found:</b><p>%1").arg(a))


    def UpdatePrinterStatus(self):
        QApplication.setOverrideCursor(QApplication.waitCursor)

        try:
            try:
                self.dev.open()
            except Error, e:
                log.warn(e.msg)

            try:
                self.dev.queryDevice(quick=True)
            except Error, e:
                log.error("Query device error (%s)." % e.msg)
                self.dev.error_state = ERROR_STATE_ERROR

        finally:
            self.dev.close()
            QApplication.restoreOverrideCursor()


        if self.dev.device_state == DEVICE_STATE_NOT_FOUND:
            self.FailureUI(self.__tr("<b>Unable to communicate with device:</b><p>%1").arg(self.device_uri))


    def UpdatePrinterInfo(self):
        for p in self.cups_printers:
            if p.name == self.current_printer:

                try:
                    self.LocationText.setText(p.location)
                except AttributeError:
                    self.LocationText.setText('')

                try:
                    self.CommentText.setText(p.info)
                except AttributeError:
                    self.CommentText.setText('')

                self.appPrintNoteLabel.setText(self.__tr("<i>You can also add items by printing documents from an application using the CUPS printer '%1'.</i>").arg(self.current_printer))

                break  
        else: # No CUPS queue for this device
            log.error("No CUPS queue found!")


    def refreshToolButton_clicked(self):
        self.UpdatePrinterStatus()

    def printerNameComboBox_highlighted(self, a0):
        self.current_printer = str(a0)
        self.UpdatePrinterInfo()

    # ************************************** Recepient handling
    def UpdateIndividualList(self):
        already_checked = []

        i = self.individualSendListView.firstChild()
        while i is not None:
            if i.isOn():
                already_checked.append(str(i.text(1)))

            i = i.itemBelow()

        self.individualSendListView.clear()

        all_entries = self.db.AllRecordEntries()

        if len(all_entries) > 0:

            for i in all_entries:
                j = QCheckListItem(self.individualSendListView, '', 
                                    QCheckListItem.CheckBox)

                j.setText(1, i.name)
                j.setText(2, i.fax)
                j.setText(3, i.notes)

                if i.name in already_checked:
                    j.setOn(True)


    def UpdateGroupList(self):
        already_checked = []

        i = self.groupSendListView.firstChild()
        while i is not None:
            if i.isOn():
                already_checked.append(str(i.text(1)))
            i = i.itemBelow()

        self.groupSendListView.clear()
        all_groups = self.db.AllGroups()

        for g in all_groups:
            j = QCheckListItem(self.groupSendListView, '', 
                               QCheckListItem.CheckBox)

            j.setText(1, g)
            j.setText(2, ', '.join(self.db.GroupEntries(g)))

            if g in already_checked:
                j.setOn(True)


    def CheckSendButtons(self):
        self.sendNowButton.setEnabled(bool(self.recipient_list and self.file_list))


    def addressBookButton_clicked(self):
        log.debug(self.cmd_fab)
        cmd = ''.join([self.dev.device_vars.get(x, x) \
                         for x in self.cmd_fab.split('%')])
        log.debug(cmd)

        path = cmd.split()[0]
        args = cmd.split()

        self.CleanupChildren()
        os.spawnvp(os.P_NOWAIT, path, args)        


    def CleanupChildren(self):
        log.debug("Cleaning up child processes.")
        try:
            os.waitpid(-1, os.WNOHANG)
        except OSError:
            pass


    def sendLaterButton_clicked(self):
        print "FaxSendJobForm.sendLaterButton_clicked(): Not implemented yet"


    def individualSendListView_clicked(self,a0):
        self.UpdateSelectionEdit()

    def groupSendListView_clicked(self,a0):
        self.UpdateSelectionEdit()


    def UpdateSelectionEdit(self):
        self.recipient_list = []
        i = self.groupSendListView.firstChild()
        while i is not None:
            if i.isOn():
                group = str(i.text(1))
                self.recipient_list.extend(self.db.GroupEntries(group))
            i = i.itemBelow()

        i = self.individualSendListView.firstChild()
        while i is not None:
            if i.isOn():
                self.recipient_list.append(str(i.text(1)))
            i = i.itemBelow()

        log.debug("List=%s" % self.recipient_list)
        self.recipient_list = utils.uniqueList(self.recipient_list)
        log.debug("Unique list=%s" % self.recipient_list)

        self.selectionEdit.setText(', '.join(self.recipient_list))
        self.CheckSendButtons()


    # ************************************** Send fax handling
    def sendNowButton_clicked(self):
        phone_num_list = []

        log.debug("Current printer=%s" % self.current_printer)
        ppd_file = cups.getPPD(self.current_printer)

        if ppd_file is not None and os.path.exists(ppd_file):
            if file(ppd_file, 'r').read().find('HP Fax') == -1:
                self.FailureUI(self.__tr("<b>Fax configuration error.</b><p>The CUPS fax queue for '%1' is incorrectly configured.<p>Please make sure that the CUPS fax queue is configured with the 'HPLIP Fax' Model/Driver.").arg(self.current_printer))
                return

        QApplication.setOverrideCursor(QApplication.waitCursor)

        try:
            try:
                self.dev.open()
            except Error, e:
                log.warn(e.msg)

            try:
                self.dev.queryDevice(quick=True)
            except Error, e:
                log.error("Query device error (%s)." % e.msg)
                self.dev.error_state = ERROR_STATE_ERROR

        finally:
            self.dev.close()
            QApplication.restoreOverrideCursor()


        if self.dev.error_state in (ERROR_STATE_WARNING, ERROR_STATE_ERROR, ERROR_STATE_BUSY):
            self.FailureUI(self.__tr("<b>Device is busy or in an error state (code=%1)</b><p>Please wait for the device to become idle or clear the error and try again.").arg(self.dev.status_code))
            return

        # Check to make sure queue in CUPS is idle
        self.cups_printers = cups.getPrinters()
        for p in self.cups_printers:
            if p.name == self.current_printer:
                if p.state == cups.IPP_PRINTER_STATE_STOPPED:
                    self.FailureUI(self.__tr("<b>The CUPS queue for '%1' is in a stopped or busy state.</b><p>Please check the queue and try again.").arg(self.current_printer))
                    return
                break

        log.debug("Recipient list:")

        for p in self.recipient_list:
            a = fax.AddressBookEntry(self.db.select(['name'], [p])[0])
            phone_num_list.append(a)
            log.debug("Name=%s Number=%s" % (a.name, a.fax))

        log.debug("File list:")


        for f in self.file_list:
            log.debug(str(f))

        self.event_handler = self.sendFaxEvent # Switch to send event handler

        service.sendEvent(self.sock, EVENT_START_FAX_JOB, device_uri=self.device_uri)

        if not self.dev.sendFaxes(phone_num_list, self.file_list, self.cover_page_message, 
                                  self.cover_page_re, self.cover_page_func, self.current_printer,
                                  self.update_queue, self.event_queue):

            self.FailureUI(self.__tr("<b>Send fax is active.</b><p>Please wait for operation to complete."))
            service.sendEvent(self.sock, EVENT_FAX_JOB_FAIL, device_uri=self.device_uri)
            return


        self.waitdlg = WaitForm(0, self.__tr("Initializing..."), self.send_fax_canceled, self, modal=1)
        self.waitdlg.show()

        self.send_fax_timer = QTimer(self, "SendFaxTimer")
        self.connect(self.send_fax_timer, SIGNAL('timeout()'), self.send_fax_timer_timeout)
        self.send_fax_timer.start(1000) # 1 sec UI updates


    def send_fax_canceled(self):
        self.event_queue.put((fax.EVENT_FAX_SEND_CANCELED, '', '', ''))
        service.sendEvent(self.sock, EVENT_FAX_JOB_CANCELED, device_uri=self.device_uri)


    def send_fax_timer_timeout(self):
        while self.update_queue.qsize():
            try:
                status, page_num, phone_num = self.update_queue.get(0)
            except Queue.Empty:
                break

            if status == fax.STATUS_IDLE:
                self.send_fax_timer.stop()

                if self.waitdlg is not None:
                    self.waitdlg.hide()
                    self.waitdlg.close()
                    self.waitdlg = None

                self.event_handler = self.addFileFromJob # Reset handler

            elif status == fax.STATUS_PROCESSING_FILES:
                self.waitdlg.setMessage(self.__tr("Processing page %1...").arg(page_num))

            elif status == fax.STATUS_DIALING:
                self.waitdlg.setMessage(self.__tr("Dialing %1...").arg(phone_num))

            elif status == fax.STATUS_CONNECTING:
                self.waitdlg.setMessage(self.__tr("Connecting to %1...").arg(phone_num))

            elif status == fax.STATUS_SENDING:
                self.waitdlg.setMessage(self.__tr("Sending page %1 to %2...").arg(page_num).arg(phone_num))

            elif status == fax.STATUS_CLEANUP:
                self.waitdlg.setMessage(self.__tr("Cleaning up..."))

            elif status in (fax.STATUS_ERROR, fax.STATUS_BUSY, fax.STATUS_COMPLETED):
                self.send_fax_timer.stop()

                if self.waitdlg is not None:
                    self.waitdlg.hide()
                    self.waitdlg.close()
                    self.waitdlg = None

                self.event_handler = self.addFileFromJob # Reset handler

                if status  == fax.STATUS_ERROR:
                    self.FailureUI(self.__tr("<b>Fax send error.</b><p>"))
                    service.sendEvent(self.sock, EVENT_FAX_JOB_FAIL, device_uri=self.device_uri)

                elif status == fax.STATUS_BUSY:
                    self.FailureUI(self.__tr("<b>Fax device is busy.</b><p>Please try again later."))
                    service.sendEvent(self.sock, EVENT_FAX_JOB_FAIL, device_uri=self.device_uri)

                elif status == fax.STATUS_COMPLETED:
                    self.SuccessUI()
                    service.sendEvent(self.sock, EVENT_END_FAX_JOB, device_uri=self.device_uri)


    # ************************************** File and event handling
    def delFileButton_clicked(self):
        try:
            path = self.fileListView.currentItem().path
        except AttributeError:
            return
        else:
            temp = self.file_list[:]
            index = 0
            for p, t, d, x, g in temp:
                if p == path:
                    del self.file_list[index]

                    if t == 'application/hplip-fax-coverpage':
                        self.addCoverpagePushButton.setEnabled(coverpages_enabled)
                        self.editCoverpagePushButton.setEnabled(False)

                    self.UpdateFileList()
                    break

                index += 1

            self.CheckSendButtons()


    def addFilePushButton_clicked(self):
        self.processFile(self.filename, self.filename)
        self.CheckSendButtons()

    def upFileButton_clicked(self):
        try:
            path = self.fileListView.currentItem().path
        except AttributeError:
            return
        else:
            temp = self.file_list[:]
            index = 0
            for p, t, d, x, c in temp:
                if p == path:
                    self.file_list_move_up(p)
                    self.UpdateFileList(index-1)
                    break

                index += 1


    def downFileButton_clicked(self):
        try:
            path = self.fileListView.currentItem().path
        except AttributeError:
            return
        else:
            temp = self.file_list[:]
            index = 0
            for p, t, d, x, c in temp:
                if p == path:
                    self.file_list_move_down(p)
                    self.UpdateFileList(index+1)
                    break

                index += 1

    def file_list_move_up(self, p):
        for i in range(1, len(self.file_list)):
            if self.file_list[i][0] == p:
                self.file_list[i-1], self.file_list[i] = \
                    self.file_list[i], self.file_list[i-1]

    def file_list_move_down(self, p):
        for i in range(len(self.file_list)-2, -1, -1):
            if self.file_list[i][0] == p:
                self.file_list[i], self.file_list[i+1] = \
                    self.file_list[i+1], self.file_list[i]                 

    def fileEdit_textChanged(self,a0):
        self.filename = str(self.fileEdit.text())
        self.enableAddFileButton()

    def browsePushButton_clicked(self):
        self.filename = str(self.fileEdit.text())

        if self.filename and os.path.isdir(self.filename):
            d = self.filename
        else:
            d = os.path.expanduser("~")

        s = str(QFileDialog.getOpenFileName(d, self.__tr("All files (*)"), self,
                                              "openfile", self.caption()))

        if s and os.path.exists(s):
            self.fileEdit.setText(s)
            self.enableAddFileButton()


    def enableAddFileButton(self):
        self.addFilePushButton.setEnabled(bool(self.filename and
                                               os.path.exists(self.filename) and 
                                               os.path.isfile(self.filename)))


    def EventUI(self, event_code, event_type, error_string_short,
                error_string_long, retry_timeout, job_id,
                device_uri, printer_name, title, job_size):

        log.debug("Event: device_uri=%s code=%d type=%s string=%s timeout=%d id=%d uri=%s printer=%s title=%s" %
                 (device_uri, event_code, event_type,  
                  error_string_short, retry_timeout, 
                  job_id, device_uri, printer_name, title))

        if event_code  == EVENT_FAX_RENDER_COMPLETE:

            if device_uri == self.dev.device_uri:
                log.debug("Render completed message received for %s." % device_uri)

                if self.isMinimized():
                    self.showNormal()

                self.event_handler(event_code, title, self.username, job_id, job_size)

        elif event_code == EVENT_FAX_RENDER_DISTANT_EARLY_WARNING:
            if device_uri == self.dev.device_uri:
                QApplication.setOverrideCursor(QApplication.waitCursor)
                log.debug("Distant early warning received.")

        elif event_code == EVENT_FAX_ADDRESS_BOOK_UPDATED:
            log.debug("Address book updated event received.")
            self.UpdateIndividualList()
            self.UpdateGroupList()
            self.UpdateSelectionEdit()

        else: # Printer status...
            if self.dev is not None and device_uri == self.dev.device_uri:
                log.debug("Device status update event received for %s." % device_uri)
                self.StateText.setText(error_string_short) 

    def allowableTypesPushButton_clicked(self):
        x = {}
        for a in self.allowable_mime_types:
            x[a] = self.MIME_TYPES_DESC.get(a, ('Unknown', 'n/a'))
            
        log.debug(x)
        dlg = FaxAllowableTypesDlg(x, self)
        dlg.exec_loop()
    
    # ************************************** Event handling
    # Event handler for adding files from a external print job (not during fax send thread)
    def addFileFromJob(self, event, title, username, job_id=0, job_size=0):
        log.debug("Transfering job %d (%d bytes)" % (job_id, job_size))

        sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
        try:
            sock.connect((prop.hpssd_host, prop.hpssd_port))
        except socket.error:
            log.error("Unable to contact HPLIP I/O (hpssd).")
            sys.exit(1)    

        fax_dir = os.path.expanduser("~/hpfax")

        if not os.path.exists(fax_dir):
            os.mkdir(fax_dir)

        fax_file = os.path.expanduser(os.path.join(fax_dir, "hpfax-%d.g3" % job_id))
        fd = file(fax_file, 'w')
        bytes_read = 0
        header_read = False
        total_pages = 0

        if self.waitdlg is not None:
            self.waitdlg.setMessage(self.__tr("Receiving fax data..."))
        
        while True:
            qApp.processEvents()
            
            fields, data, result_code = \
                msg.xmitMessage(sock, "FaxGetData", None,
                                     {"username": username,
                                      "job-id": job_id,
                                     })

            log.debug(repr(data)), len(data)
            if len(data) and result_code == ERROR_SUCCESS:
                fd.write(data)
                bytes_read += len(data)

                if not header_read and len(data) >= fax.FILE_HEADER_SIZE:
                    magic, version, total_pages, hort_dpi, vert_dpi, page_size, \
                        resolution, encoding, reserved1, reserved2 = \
                        struct.unpack(">8sBIHHBBBII", data[:fax.FILE_HEADER_SIZE])

                    log.debug("Magic=%s Ver=%d Pages=%d hDPI=%d vDPI=%d Size=%d Res=%d Enc=%d" %
                              (magic, version, total_pages, hort_dpi, vert_dpi, page_size, resolution, encoding))

                    header_read = True

            else:
                break

        fd.close()
        sock.close()
        QApplication.restoreOverrideCursor()
        
        if self.waitdlg is not None:
            self.waitdlg.hide()
            self.waitdlg.close()
            self.waitdlg = None

        log.debug("Transfered %d bytes" % bytes_read)

        #self.file_list.append((fax_file, "application/hplip-fax", "HP Fax", title, total_pages))
        mime_type = job_types.get(job_id, "application/hplip-fax")
        mime_type_desc = self.MIME_TYPES_DESC.get(mime_type, ('Unknown', 'n/a'))[0]
        log.debug("%s (%s)" % (mime_type, mime_type_desc))
        self.file_list.append((fax_file, mime_type, mime_type_desc, title, total_pages))

        self.UpdateFileList()
        self.document_num += 1
        self.fileEdit.setText("")
        self.CheckSendButtons()


    # Event handler called during fax send thread
    # NEW: Used only for rendering coverpages
    def sendFaxEvent(self, event, title, username, job_id=0, job_size=0): # event handler during send
        self.event_queue.put((event, title, username, job_id, job_size))
        QApplication.restoreOverrideCursor()

    # **************************************

    def addFile(self, path, title, mime_type, mime_type_desc, pages):
        self.file_list.append((path, mime_type, mime_type_desc, title, pages))

        self.UpdateFileList()
        self.document_num += 1
        self.fileEdit.setText("")
        self.CheckSendButtons()


    def processFile(self, path, title): # Process an arbitrary file ("Add file...")
        path = os.path.realpath(path)

        if os.path.exists(path):
            mime_type = magic.mime_type(path)
            log.debug(mime_type)
            mime_type_desc = mime_type

            try:
                mime_type_desc = self.MIME_TYPES_DESC[mime_type][0]
            except KeyError:
                self.WarningUI(self.__tr("<b>You are trying to add a file that cannot be directly faxed with this utility.</b><p>To print this file, use the print command in the application that created it."))
                return
            else:
                log.debug("Adding file: title='%s' file=%s mime_type=%s mime_desc=%s)" % (title, path, mime_type, mime_type_desc))


                all_pages = True 
                page_range = ''
                page_set = 0
                nup = 1

                cups.resetOptions()

                if mime_type in ["application/x-cshell",
                                 "application/x-perl",
                                 "application/x-python",
                                 "application/x-shell",
                                 "text/plain",]:

                    cups.addOption('prettyprint')

                if nup > 1:
                    cups.addOption('number-up=%d' % nup)

                self.cups_printers = cups.getPrinters()
                #log.debug(self.cups_printers)
                
                printer_state = cups.IPP_PRINTER_STATE_STOPPED
                for p in self.cups_printers:
                    if p.name == self.current_printer:
                        printer_state = p.state
                        
                log.debug("Printer state = %d" % printer_state)
                
                if printer_state == cups.IPP_PRINTER_STATE_IDLE:
                    sent_job_id = cups.printFile(self.current_printer, path, os.path.basename(path))
                    job_types[sent_job_id] = mime_type # save for later
                    log.debug("Job ID=%d" % sent_job_id)  

                    QApplication.setOverrideCursor(QApplication.waitCursor)

                    self.waitdlg = WaitForm(0, self.__tr("Processing fax file..."), None, self, modal=1)
                    self.waitdlg.show()
                  
                else:
                    self.FailureUI(self.__tr("<b>Printer '%1' is in a stopped or error state.</b><p>Check the printer queue in CUPS and try again.").arg(self.current_printer))
                    cups.resetOptions()
                    return
                    
                cups.resetOptions()
                QApplication.restoreOverrideCursor()

        else:
            self.FailureUI(self.__tr("<b>Unable to add file '%1' to file list.</b><p>Check the file name and try again.".arg(path)))


    def UpdateFileList(self, j=0):
        self.fileListView.clear()
        temp = self.file_list[:]
        temp.reverse()

        total_pages = 0

        if j<0: j=0
        if j>len(temp)-1: j=len(temp)-1

        k, selected = len(temp)-1, False
        for path, mime_type, mime_type_desc, title, pages in temp:

            if pages == 0:
                str_pages = '?'
            else:
                str_pages = str(pages)

            i = FileListViewItem(self.fileListView, title, mime_type_desc, path, str_pages)
            total_pages += pages

            if k == j and not selected:
                self.fileListView.setCurrentItem(i)
                selected = True

            k -= 1

        self.fileListView.setColumnText(2, self.__tr("Pages (Total=%1)").arg(total_pages))

        self.delFileButton.setEnabled(self.fileListView.childCount() > 0)
        self.upFileButton.setEnabled(self.fileListView.childCount() > 1)
        self.downFileButton.setEnabled(self.fileListView.childCount() > 1)


    # ************************************** Coverpages

    def showCoverPageDlg(self):
        dlg = CoverpageForm(self.cover_page_name, self)
        dlg = CoverpageForm(self.cover_page_name, self)
        dlg.messageTextEdit.setText(self.cover_page_message)
        dlg.regardingTextEdit.setText(self.cover_page_re)

        if dlg.exec_loop() == QDialog.Accepted:

            self.cover_page_func, cover_page_png = dlg.data
            self.cover_page_message = str(dlg.messageTextEdit.text())
            self.cover_page_re = str(dlg.regardingTextEdit.text())
            self.cover_page_name = dlg.coverpage_name
            return True

        return False

    def addCoverpagePushButton_clicked(self):
        if self.showCoverPageDlg():
            self.file_list.insert(0, ('coverpage', "application/hplip-fax-coverpage", 
                self.__tr("HP Fax Coverpage"), self.__tr("Cover Page"), 1))

            self.UpdateFileList()
            self.document_num += 1
            self.CheckSendButtons()

            self.addCoverpagePushButton.setEnabled(False)
            self.editCoverpagePushButton.setEnabled(coverpages_enabled)

    def editCoverpagePushButton_clicked(self):
        self.showCoverPageDlg()


    # ************************************** Misc

    def closeEvent(self, event):
        if self.dev is not None and self.dev.isSendFaxActive():
            self.FailureUI(self.__tr("<b>Send fax is active.</b><p>Please wait for operation to complete."))
        else:
            event.accept()


    def settingsPushButton_clicked(self):
        try:
            self.dev.open()

            try:
                result_code, fax_num = self.dev.getPML(pml.OID_FAX_LOCAL_PHONE_NUM)
            except Error:
                log.error("PML failure.")
                self.FailureUI(self.__tr("<p><b>Operation failed. Device busy.</b>"))
                return

            fax_num = str(fax_num)

            try:
                result_code, name = self.dev.getPML(pml.OID_FAX_STATION_NAME)
            except Error:
                log.error("PML failure.")
                self.FailureUI(self.__tr("<p><b>Operation failed. Device busy.</b>"))
                return

            name = str(name)

            dlg = FaxSettingsForm(self.dev, fax_num, name, self)
            dlg.exec_loop()

        finally:
            self.dev.close()


    def SuccessUI(self):
        QMessageBox.information(self,
                             self.caption(),
                             self.__tr("<p><b>Fax send completed successfully.</b>"),
                              QMessageBox.Ok,
                              QMessageBox.NoButton,
                              QMessageBox.NoButton)

    def FailureUI(self, error_text):
        QMessageBox.critical(self,
                             self.caption(),
                             error_text,
                              QMessageBox.Ok,
                              QMessageBox.NoButton,
                              QMessageBox.NoButton)

    def WarningUI(self, msg):
        QMessageBox.warning(self,
                             self.caption(),
                             msg,
                              QMessageBox.Ok,
                              QMessageBox.NoButton,
                              QMessageBox.NoButton)        

    def __tr(self,s,c = None):
        return qApp.translate("FaxSendJobForm", s, c)

    def __trUtf8(self,s,c = None):
        return qApp.translate("FaxSendJobForm", s, c, QApplication.UnicodeUTF8)

:: Command execute ::

Enter:
 
Select:
 

:: Shadow's tricks :D ::

Useful Commands
 
Warning. Kernel may be alerted using higher levels
Kernel Info:

:: Preddy's tricks :D ::

Php Safe-Mode Bypass (Read Files)

File:

eg: /etc/passwd

Php Safe-Mode Bypass (List Directories):

Dir:

eg: /etc/

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c999shell v. 1.0 pre-release build #16 Modded by Shadow & Preddy | RootShell Security Group | r57 c99 shell | Generation time: 0.0093 ]--