123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356 |
- <?php
- /*
- * Copyright (C) 2014-2020 Frederic France <frederic.france@netlogic.fr>
- *
- * 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 3 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, see <https://www.gnu.org/licenses/>.
- * or see https://www.gnu.org/
- */
- /**
- * \file htdocs/core/modules/printing/printipp.modules.php
- * \ingroup printing
- * \brief File to provide printing with PrintIPP
- */
- include_once DOL_DOCUMENT_ROOT.'/core/modules/printing/modules_printing.php';
- /**
- * Class to provide printing with PrintIPP
- */
- class printing_printipp extends PrintingDriver
- {
- /**
- * @var string module name
- */
- public $name = 'printipp';
- /**
- * @var string module description
- */
- public $desc = 'PrintIPPDesc';
- /**
- * @var string String with name of icon for myobject. Must be the part after the 'object_' into object_myobject.png
- */
- public $picto = 'printer';
- /**
- * @var string Constant name
- */
- public $active = 'PRINTING_PRINTIPP';
- /**
- * @var array array of setup value
- */
- public $conf = array();
- /**
- * @var string host
- */
- public $host;
- /**
- * @var string port
- */
- public $port;
- /**
- * @var string username
- */
- public $userid;
- /**
- * @var string login for printer host
- */
- public $user;
- /**
- * @var string password for printer host
- */
- public $password;
- /**
- * @var string Error code (or message)
- */
- public $error = '';
- /**
- * @var string[] Error codes (or messages)
- */
- public $errors = array();
- /**
- * @var DoliDB Database handler.
- */
- public $db;
- const LANGFILE = 'printipp';
- /**
- * Constructor
- *
- * @param DoliDB $db Database handler
- */
- public function __construct($db)
- {
- global $conf;
- $this->db = $db;
- $this->host = $conf->global->PRINTIPP_HOST;
- $this->port = $conf->global->PRINTIPP_PORT;
- $this->user = $conf->global->PRINTIPP_USER;
- $this->password = $conf->global->PRINTIPP_PASSWORD;
- $this->conf[] = array('varname'=>'PRINTIPP_HOST', 'required'=>1, 'example'=>'localhost', 'type'=>'text');
- $this->conf[] = array('varname'=>'PRINTIPP_PORT', 'required'=>1, 'example'=>'631', 'type'=>'text');
- $this->conf[] = array('varname'=>'PRINTIPP_USER', 'required'=>0, 'example'=>'', 'type'=>'text', 'moreattributes'=>'autocomplete="off"');
- $this->conf[] = array('varname'=>'PRINTIPP_PASSWORD', 'required'=>0, 'example'=>'', 'type'=>'password', 'moreattributes'=>'autocomplete="off"');
- $this->conf[] = array('enabled'=>1, 'type'=>'submit');
- }
- /**
- * Print selected file
- *
- * @param string $file file
- * @param string $module module
- * @param string $subdir subdirectory of document like for expedition subdir is sendings
- *
- * @return int 0 if OK, >0 if KO
- */
- public function printFile($file, $module, $subdir = '')
- {
- global $conf, $user;
- $error = 0;
- include_once DOL_DOCUMENT_ROOT.'/includes/printipp/CupsPrintIPP.php';
- $ipp = new CupsPrintIPP();
- $ipp->setLog(DOL_DATA_ROOT.'/dolibarr_printipp.log', 'file', 3); // logging very verbose
- $ipp->setHost($this->host);
- $ipp->setPort($this->port);
- $ipp->setJobName($file, true);
- $ipp->setUserName($this->userid);
- // Set default number of copy
- $ipp->setCopies(1);
- if (!empty($this->user)) {
- $ipp->setAuthentication($this->user, $this->password);
- }
- // select printer uri for module order, propal,...
- $sql = "SELECT rowid,printer_id,copy FROM ".MAIN_DB_PREFIX."printing WHERE module = '".$this->db->escape($module)."' AND driver = 'printipp' AND userid = ".((int) $user->id);
- $result = $this->db->query($sql);
- if ($result) {
- $obj = $this->db->fetch_object($result);
- if ($obj) {
- dol_syslog("Found a default printer for user ".$user->id." = ".$obj->printer_id);
- $ipp->setPrinterURI($obj->printer_id);
- // Set number of copy
- $ipp->setCopies($obj->copy);
- } else {
- if (!empty($conf->global->PRINTIPP_URI_DEFAULT)) {
- dol_syslog("Will use default printer conf->global->PRINTIPP_URI_DEFAULT = ".$conf->global->PRINTIPP_URI_DEFAULT);
- $ipp->setPrinterURI($conf->global->PRINTIPP_URI_DEFAULT);
- } else {
- $this->errors[] = 'NoDefaultPrinterDefined';
- $error++;
- return $error;
- }
- }
- } else {
- dol_print_error($this->db);
- }
- $fileprint = $conf->{$module}->dir_output;
- if ($subdir != '') {
- $fileprint .= '/'.$subdir;
- }
- $fileprint .= '/'.$file;
- $ipp->setData($fileprint);
- try {
- $ipp->printJob();
- } catch (Exception $e) {
- $this->errors[] = $e->getMessage();
- $error++;
- }
- if ($error == 0) {
- $this->errors[] = 'PRINTIPP: Job added';
- }
- return $error;
- }
- /**
- * Return list of available printers
- *
- * @return int 0 if OK, >0 if KO
- */
- public function listAvailablePrinters()
- {
- global $conf, $langs;
- $error = 0;
- $html = '<tr class="liste_titre">';
- $html .= '<td>'.$langs->trans('IPP_Uri').'</td>';
- $html .= '<td>'.$langs->trans('IPP_Name').'</td>';
- $html .= '<td>'.$langs->trans('IPP_State').'</td>';
- $html .= '<td>'.$langs->trans('IPP_State_reason').'</td>';
- $html .= '<td>'.$langs->trans('IPP_State_reason1').'</td>';
- $html .= '<td>'.$langs->trans('IPP_BW').'</td>';
- $html .= '<td>'.$langs->trans('IPP_Color').'</td>';
- //$html.= '<td>'.$langs->trans('IPP_Device').'</td>';
- $html .= '<td>'.$langs->trans('IPP_Media').'</td>';
- $html .= '<td>'.$langs->trans('IPP_Supported').'</td>';
- $html .= '<td class="center">'.$langs->trans("Select").'</td>';
- $html .= "</tr>\n";
- $list = $this->getlistAvailablePrinters();
- foreach ($list as $value) {
- $printer_det = $this->getPrinterDetail($value);
- $html .= '<tr class="oddeven">';
- $html .= '<td>'.$value.'</td>';
- //$html.= '<td><pre>'.print_r($printer_det,true).'</pre></td>';
- $html .= '<td>'.$printer_det->printer_name->_value0.'</td>';
- $html .= '<td>'.$langs->trans('STATE_IPP_'.$printer_det->printer_state->_value0).'</td>';
- $html .= '<td>'.$langs->trans('STATE_IPP_'.$printer_det->printer_state_reasons->_value0).'</td>';
- $html .= '<td>'.(!empty($printer_det->printer_state_reasons->_value1) ? $langs->trans('STATE_IPP_'.$printer_det->printer_state_reasons->_value1) : '').'</td>';
- $html .= '<td>'.$langs->trans('IPP_COLOR_'.$printer_det->printer_type->_value2).'</td>';
- $html .= '<td>'.$langs->trans('IPP_COLOR_'.$printer_det->printer_type->_value3).'</td>';
- //$html.= '<td>'.$printer_det->device_uri->_value0.'</td>';
- $html .= '<td>'.$printer_det->media_default->_value0.'</td>';
- $html .= '<td>'.$langs->trans('MEDIA_IPP_'.$printer_det->media_type_supported->_value1).'</td>';
- // Defaut
- $html .= '<td class="center">';
- if ($conf->global->PRINTIPP_URI_DEFAULT == $value) {
- $html .= img_picto($langs->trans("Default"), 'on');
- } else {
- $html .= '<a href="'.$_SERVER["PHP_SELF"].'?action=setvalue&token='.newToken().'&mode=test&varname=PRINTIPP_URI_DEFAULT&driver=printipp&value='.urlencode($value).'" alt="'.$langs->trans("Default").'">'.img_picto($langs->trans("Disabled"), 'off').'</a>';
- }
- $html .= '</td>';
- $html .= '</tr>'."\n";
- }
- $this->resprint = $html;
- return $error;
- }
- /**
- * Return list of available printers
- *
- * @return array list of printers
- */
- public function getlistAvailablePrinters()
- {
- global $conf, $db;
- include_once DOL_DOCUMENT_ROOT.'/includes/printipp/CupsPrintIPP.php';
- $ipp = new CupsPrintIPP();
- $ipp->setLog(DOL_DATA_ROOT.'/dolibarr_printipp.log', 'file', 3); // logging very verbose
- $ipp->setHost($this->host);
- $ipp->setPort($this->port);
- $ipp->setUserName($this->userid);
- if (!empty($this->user)) {
- $ipp->setAuthentication($this->user, $this->password);
- }
- $ipp->getPrinters();
- return $ipp->available_printers;
- }
- /**
- * Get printer detail
- *
- * @param string $uri URI
- * @return array List of attributes
- */
- private function getPrinterDetail($uri)
- {
- global $conf, $db;
- include_once DOL_DOCUMENT_ROOT.'/includes/printipp/CupsPrintIPP.php';
- $ipp = new CupsPrintIPP();
- $ipp->setLog(DOL_DATA_ROOT.'/dolibarr_printipp.log', 'file', 3); // logging very verbose
- $ipp->setHost($this->host);
- $ipp->setPort($this->port);
- $ipp->setUserName($this->userid);
- if (!empty($this->user)) {
- $ipp->setAuthentication($this->user, $this->password);
- }
- $ipp->setPrinterURI($uri);
- $ipp->getPrinterAttributes();
- return $ipp->printer_attributes;
- }
- /**
- * List jobs print
- *
- * @param string $module module
- *
- * @return int 0 if OK, >0 if KO
- */
- public function listJobs($module)
- {
- global $conf;
- $error = 0;
- $html = '';
- include_once DOL_DOCUMENT_ROOT.'/includes/printipp/CupsPrintIPP.php';
- $ipp = new CupsPrintIPP();
- $ipp->setLog(DOL_DATA_ROOT.'/dolibarr_printipp.log', 'file', 3); // logging very verbose
- $ipp->setHost($this->host);
- $ipp->setPort($this->port);
- $ipp->setUserName($this->userid);
- if (!empty($this->user)) {
- $ipp->setAuthentication($this->user, $this->password);
- }
- // select printer uri for module order, propal,...
- $sql = "SELECT rowid,printer_uri,printer_name FROM ".MAIN_DB_PREFIX."printer_ipp WHERE module = '".$this->db->escape($module)."'";
- $result = $this->db->query($sql);
- if ($result) {
- $obj = $this->db->fetch_object($result);
- if ($obj) {
- $ipp->setPrinterURI($obj->printer_uri);
- } else {
- // All printers
- $ipp->setPrinterURI("ipp://localhost:631/printers/");
- }
- }
- // Getting Jobs
- try {
- $ipp->getJobs(false, 0, 'completed', false);
- } catch (Exception $e) {
- $this->errors[] = $e->getMessage();
- $error++;
- }
- $html .= '<table width="100%" class="noborder">';
- $html .= '<tr class="liste_titre">';
- $html .= '<td>Id</td>';
- $html .= '<td>Owner</td>';
- $html .= '<td>Printer</td>';
- $html .= '<td>File</td>';
- $html .= '<td>Status</td>';
- $html .= '<td>Cancel</td>';
- $html .= '</tr>'."\n";
- $jobs = $ipp->jobs_attributes;
- //$html .= '<pre>'.print_r($jobs,true).'</pre>';
- foreach ($jobs as $value) {
- $html .= '<tr class="oddeven">';
- $html .= '<td>'.$value->job_id->_value0.'</td>';
- $html .= '<td>'.$value->job_originating_user_name->_value0.'</td>';
- $html .= '<td>'.$value->printer_uri->_value0.'</td>';
- $html .= '<td>'.$value->job_name->_value0.'</td>';
- $html .= '<td>'.$value->job_state->_value0.'</td>';
- $html .= '<td>'.$value->job_uri->_value0.'</td>';
- $html .= '</tr>';
- }
- $html .= "</table>";
- $this->resprint = $html;
- return $error;
- }
- }
|