* Copyright (C) 2006-2017 Laurent Destailleur * Copyright (C) 2009-2012 Regis Houssin * * 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 . */ /** * \file htdocs/public/onlinesign/newonlinesign.php * \ingroup core * \brief File to offer a way to make an online signature for a particular Dolibarr entity * Example of URL: https://localhost/public/onlinesign/newonlinesign.php?ref=PR... */ if (!defined('NOLOGIN')) { define("NOLOGIN", 1); // This means this output page does not require to be logged. } if (!defined('NOCSRFCHECK')) { define("NOCSRFCHECK", 1); // We accept to go on this page from external web site. } if (!defined('NOIPCHECK')) { define('NOIPCHECK', '1'); // Do not check IP defined into conf $dolibarr_main_restrict_ip } if (!defined('NOBROWSERNOTIF')) { define('NOBROWSERNOTIF', '1'); } // For MultiCompany module. // Do not use GETPOST here, function is not defined and define must be done before including main.inc.php // Because 2 entities can have the same ref. $entity = (!empty($_GET['entity']) ? (int) $_GET['entity'] : (!empty($_POST['entity']) ? (int) $_POST['entity'] : 1)); if (is_numeric($entity)) { define("DOLENTITY", $entity); } // Load Dolibarr environment require '../../main.inc.php'; require_once DOL_DOCUMENT_ROOT.'/core/lib/company.lib.php'; require_once DOL_DOCUMENT_ROOT.'/core/lib/payments.lib.php'; require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php'; require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php'; require_once DOL_DOCUMENT_ROOT.'/product/class/product.class.php'; // Load translation files $langs->loadLangs(array("main", "other", "dict", "bills", "companies", "errors", "members", "paybox", "propal", "commercial")); // Security check // No check on module enabled. Done later according to $validpaymentmethod // Get parameters $action = GETPOST('action', 'aZ09'); $cancel = GETPOST('cancel', 'alpha'); $confirm = GETPOST('confirm', 'alpha'); $refusepropal = GETPOST('refusepropal', 'alpha'); $message = GETPOST('message', 'aZ09'); // Input are: // type ('invoice','order','contractline'), // id (object id), // amount (required if id is empty), // tag (a free text, required if type is empty) // currency (iso code) $suffix = GETPOST("suffix", 'aZ09'); $source = GETPOST("source", 'alpha'); $ref = $REF = GETPOST("ref", 'alpha'); $urlok = ''; $urlko = ''; if (empty($source)) { $source = 'proposal'; } if (!empty($refusepropal)) { $action = "refusepropal"; } // Define $urlwithroot //$urlwithouturlroot=preg_replace('/'.preg_quote(DOL_URL_ROOT,'/').'$/i','',trim($dolibarr_main_url_root)); //$urlwithroot=$urlwithouturlroot.DOL_URL_ROOT; // This is to use external domain name found into config file $urlwithroot = DOL_MAIN_URL_ROOT; // This is to use same domain name than current. For Paypal payment, we can use internal URL like localhost. // Complete urls for post treatment $SECUREKEY = GETPOST("securekey"); // Secure key if (!empty($source)) { $urlok .= 'source='.urlencode($source).'&'; $urlko .= 'source='.urlencode($source).'&'; } if (!empty($REF)) { $urlok .= 'ref='.urlencode($REF).'&'; $urlko .= 'ref='.urlencode($REF).'&'; } if (!empty($SECUREKEY)) { $urlok .= 'securekey='.urlencode($SECUREKEY).'&'; $urlko .= 'securekey='.urlencode($SECUREKEY).'&'; } if (!empty($entity)) { $urlok .= 'entity='.urlencode($entity).'&'; $urlko .= 'entity='.urlencode($entity).'&'; } $urlok = preg_replace('/&$/', '', $urlok); // Remove last & $urlko = preg_replace('/&$/', '', $urlko); // Remove last & $creditor = $mysoc->name; $type = $source; if (!$action) { if ($source && !$ref) { httponly_accessforbidden($langs->trans('ErrorBadParameters')." - ref missing", 400, 1); } } // Check securitykey $securekeyseed = ''; if ($source == 'proposal') { $securekeyseed = getDolGlobalString('PROPOSAL_ONLINE_SIGNATURE_SECURITY_TOKEN'); } elseif ($source == 'contract') { $securekeyseed = getDolGlobalString('CONTRACT_ONLINE_SIGNATURE_SECURITY_TOKEN'); } elseif ($source == 'fichinter') { $securekeyseed = getDolGlobalString('FICHINTER_ONLINE_SIGNATURE_SECURITY_TOKEN'); } if (!dol_verifyHash($securekeyseed.$type.$ref.(isModEnabled('multicompany') ? $entity : ''), $SECUREKEY, '0')) { httponly_accessforbidden('Bad value for securitykey. Value provided '.dol_escape_htmltag($SECUREKEY).' does not match expected value for ref='.dol_escape_htmltag($ref), 403, 1); } if ($source == 'proposal') { require_once DOL_DOCUMENT_ROOT.'/comm/propal/class/propal.class.php'; $object = new Propal($db); $result= $object->fetch(0, $ref, '', $entity); } elseif ($source == 'contract') { require_once DOL_DOCUMENT_ROOT.'/contrat/class/contrat.class.php'; $object = new Contrat($db); $result= $object->fetch(0, $ref); } elseif ($source == 'fichinter') { require_once DOL_DOCUMENT_ROOT.'/fichinter/class/fichinter.class.php'; $object = new Fichinter($db); $result= $object->fetch(0, $ref); } else { httponly_accessforbidden($langs->trans('ErrorBadParameters')." - Bad value for source", 400, 1); } /* * Actions */ if ($action == 'confirm_refusepropal' && $confirm == 'yes') { $db->begin(); $sql = "UPDATE ".MAIN_DB_PREFIX."propal"; $sql .= " SET fk_statut = ".((int) $object::STATUS_NOTSIGNED).", note_private = '".$db->escape($object->note_private)."', date_signature='".$db->idate(dol_now())."'"; $sql .= " WHERE rowid = ".((int) $object->id); dol_syslog(__METHOD__, LOG_DEBUG); $resql = $db->query($sql); if (!$resql) { $error++; } if (!$error) { $db->commit(); $message = 'refused'; setEventMessages("PropalRefused", null, 'warnings'); if (method_exists($object, 'call_trigger')) { // Online customer is not a user, so we use the use that validates the documents $user = new User($db); $user->fetch($object->user_valid_id); $object->context = array('closedfromonlinesignature' => 'closedfromonlinesignature'); $result = $object->call_trigger('PROPAL_CLOSE_REFUSED', $user); if ($result < 0) { $error++; } } } else { $db->rollback(); } $object->fetch(0, $ref); } /* * View */ $form = new Form($db); $head = ''; if (!empty($conf->global->MAIN_SIGN_CSS_URL)) { $head = ''."\n"; } $conf->dol_hide_topmenu = 1; $conf->dol_hide_leftmenu = 1; $replacemainarea = (empty($conf->dol_hide_leftmenu) ? '
' : '').'
'; llxHeader($head, $langs->trans("OnlineSignature"), '', '', 0, 0, '', '', '', 'onlinepaymentbody', $replacemainarea, 1); if ($action == 'refusepropal') { print $form->formconfirm($_SERVER["PHP_SELF"].'?ref='.urlencode($ref).'&securekey='.urlencode($SECUREKEY).(isModEnabled('multicompany')?'&entity='.$entity:''), $langs->trans('RefusePropal'), $langs->trans('ConfirmRefusePropal', $object->ref), 'confirm_refusepropal', '', '', 1); } // Check link validity for param 'source' to avoid use of the examples as value if (!empty($source) && in_array($ref, array('member_ref', 'contractline_ref', 'invoice_ref', 'order_ref', 'proposal_ref', ''))) { $langs->load("errors"); dol_print_error_email('BADREFINONLINESIGNFORM', $langs->trans("ErrorBadLinkSourceSetButBadValueForRef", $source, $ref)); // End of page llxFooter(); $db->close(); exit; } print ''."\n"; print '
'."\n"; print '
'."\n"; print ''."\n"; print ''."\n"; print ''."\n"; print ''."\n"; print ''."\n"; print ''; print ''; print "\n"; print ''."\n"; print ''."\n"; // Show logo (search order: logo defined by ONLINE_SIGN_LOGO_suffix, then ONLINE_SIGN_LOGO_, then small company logo, large company logo, theme logo, common logo) // Define logo and logosmall $logosmall = $mysoc->logo_small; $logo = $mysoc->logo; $paramlogo = 'ONLINE_SIGN_LOGO_'.$suffix; if (!empty($conf->global->$paramlogo)) { $logosmall = $conf->global->$paramlogo; } elseif (!empty($conf->global->ONLINE_SIGN_LOGO)) { $logosmall = $conf->global->ONLINE_SIGN_LOGO; } //print ''."\n"; // Define urllogo $urllogo = ''; $urllogofull = ''; if (!empty($logosmall) && is_readable($conf->mycompany->dir_output.'/logos/thumbs/'.$logosmall)) { $urllogo = DOL_URL_ROOT.'/viewimage.php?modulepart=mycompany&entity='.$conf->entity.'&file='.urlencode('logos/thumbs/'.$logosmall); $urllogofull = $dolibarr_main_url_root.'/viewimage.php?modulepart=mycompany&entity='.$conf->entity.'&file='.urlencode('logos/thumbs/'.$logosmall); } elseif (!empty($logo) && is_readable($conf->mycompany->dir_output.'/logos/'.$logo)) { $urllogo = DOL_URL_ROOT.'/viewimage.php?modulepart=mycompany&entity='.$conf->entity.'&file='.urlencode('logos/'.$logo); $urllogofull = $dolibarr_main_url_root.'/viewimage.php?modulepart=mycompany&entity='.$conf->entity.'&file='.urlencode('logos/'.$logo); } // Output html code for logo if ($urllogo) { print '
'; print '
'; print ''; print '
'; if (empty($conf->global->MAIN_HIDE_POWERED_BY)) { print ''; } print '
'; } if ($source == 'proposal' && !empty($conf->global->PROPOSAL_IMAGE_PUBLIC_SIGN)) { print '
'; print ''; print '
'; } // Output introduction text $text = ''; if (!empty($conf->global->ONLINE_SIGN_NEWFORM_TEXT)) { $reg = array(); if (preg_match('/^\((.*)\)$/', $conf->global->ONLINE_SIGN_NEWFORM_TEXT, $reg)) { $text .= $langs->trans($reg[1])."
\n"; } else { $text .= $conf->global->ONLINE_SIGN_NEWFORM_TEXT."
\n"; } $text = ''."\n"; } if (empty($text)) { if ($source == 'proposal') { $text .= ''."\n"; $text .= ''."\n"; } elseif ($source == 'contract') { $text .= ''."\n"; $text .= ''."\n"; } elseif ($source == 'fichinter') { $text .= ''."\n"; $text .= ''."\n"; } } print $text; // Output payment summary form print ''."\n"; print ''."\n"; print '

'.$text.'

'.$langs->trans("WelcomeOnOnlineSignaturePageProposal", $mysoc->name).'
'.$langs->trans("ThisScreenAllowsYouToSignDocFromProposal", $creditor).'


'.$langs->trans("WelcomeOnOnlineSignaturePageContract", $mysoc->name).'
'.$langs->trans("ThisScreenAllowsYouToSignDocFromContract", $creditor).'


'.$langs->trans("WelcomeOnOnlineSignaturePageFichinter", $mysoc->name).'
'.$langs->trans("ThisScreenAllowsYouToSignDocFromFichinter", $creditor).'

'; print ''; if ($source == 'proposal') { print ''."\n"; } elseif ($source == 'contract') { print ''."\n"; } elseif ($source == 'fichinter') { print ''."\n"; } $found = false; $error = 0; // Signature on commercial proposal if ($source == 'proposal') { $found = true; $langs->load("proposal"); $result = $object->fetch_thirdparty($object->socid); // Creditor print ''."\n"; // Debitor print ''."\n"; // Amount print ''."\n"; // Object $text = ''.$langs->trans("SignatureProposalRef", $object->ref).''; print ''."\n"; } elseif ($source == 'contract') { // Signature on contract $found = true; $langs->load("contract"); $result = $object->fetch_thirdparty($object->socid); // Proposer print ''."\n"; // Target print ''."\n"; // Object $text = ''.$langs->trans("SignatureContractRef", $object->ref).''; print ''."\n"; } elseif ($source == 'fichinter') { // Signature on fichinter $found = true; $langs->load("fichinter"); $result = $object->fetch_thirdparty($object->socid); // Proposer print ''."\n"; // Target print ''."\n"; // Object $text = ''.$langs->trans("SignatureFichinterRef", $object->ref).''; print ''."\n"; } if (!$found && !$mesg) { $mesg = $langs->transnoentitiesnoconv("ErrorBadParameters"); } if ($mesg) { print ''."\n"; } print '
'.$langs->trans("ThisIsInformationOnDocumentToSignProposal").' :
'.$langs->trans("ThisIsInformationOnDocumentToSignContract").' :
'.$langs->trans("ThisIsInformationOnDocumentToSignFichinter").' :
'.$langs->trans("Creditor"); print ''; print img_picto('', 'company', 'class="pictofixedwidth"'); print ''.$creditor.''; print ''; print '
'.$langs->trans("ThirdParty"); print ''; print img_picto('', 'company', 'class="pictofixedwidth"'); print ''.$object->thirdparty->name.''; print '
'.$langs->trans("Amount"); print ''; print ''.price($object->total_ttc, 0, $langs, 1, -1, -1, $conf->currency).''; print '
'.$langs->trans("Designation"); print ''.$text; $last_main_doc_file = $object->last_main_doc; if ($object->status == $object::STATUS_VALIDATED) { if (empty($last_main_doc_file) || !dol_is_file(DOL_DATA_ROOT.'/'.$object->last_main_doc)) { // It seems document has never been generated, or was generated and then deleted. // So we try to regenerate it with its default template. $defaulttemplate = ''; // We force the use an empty string instead of $object->model_pdf to be sure to use a "main" default template and not the last one used. $object->generateDocument($defaulttemplate, $langs); } $directdownloadlink = $object->getLastMainDocLink('proposal'); if ($directdownloadlink) { print '
'; print img_mime($object->last_main_doc, ''); print $langs->trans("DownloadDocument").''; } } else { if ($object->status == $object::STATUS_NOTSIGNED) { $directdownloadlink = $object->getLastMainDocLink('proposal'); if ($directdownloadlink) { print '
'; print img_mime($last_main_doc_file, ''); print $langs->trans("DownloadDocument").''; } } elseif ($object->status == $object::STATUS_SIGNED || $object->status == $object::STATUS_BILLED) { if (preg_match('/_signed-(\d+)/', $last_main_doc_file)) { // If the last main doc has been signed $last_main_doc_file_not_signed = preg_replace('/_signed-(\d+)/', '', $last_main_doc_file); $datefilesigned = dol_filemtime($last_main_doc_file); $datefilenotsigned = dol_filemtime($last_main_doc_file_not_signed); if (empty($datefilenotsigned) || $datefilesigned > $datefilenotsigned) { $directdownloadlink = $object->getLastMainDocLink('proposal'); if ($directdownloadlink) { print '
'; print img_mime($object->last_main_doc, ''); print $langs->trans("DownloadDocument").''; } } } } } print ''; print ''; print '
'.$langs->trans("Proposer"); print ''; print img_picto('', 'company', 'class="pictofixedwidth"'); print ''.$creditor.''; print ''; print '
'.$langs->trans("ThirdParty"); print ''; print img_picto('', 'company', 'class="pictofixedwidth"'); print ''.$object->thirdparty->name.''; print '
'.$langs->trans("Designation"); print ''.$text; $last_main_doc_file = $object->last_main_doc; if (empty($last_main_doc_file) || !dol_is_file(DOL_DATA_ROOT.'/'.$object->last_main_doc)) { // It seems document has never been generated, or was generated and then deleted. // So we try to regenerate it with its default template. $defaulttemplate = ''; // We force the use an empty string instead of $object->model_pdf to be sure to use a "main" default template and not the last one used. $object->generateDocument($defaulttemplate, $langs); } $directdownloadlink = $object->getLastMainDocLink('contract'); if ($directdownloadlink) { print '
'; print img_mime($object->last_main_doc, ''); if ($message == "signed") { print $langs->trans("DownloadSignedDocument").''; } else { print $langs->trans("DownloadDocument").''; } } print ''; print ''; print '
'.$langs->trans("Proposer"); print ''; print img_picto('', 'company', 'class="pictofixedwidth"'); print ''.$creditor.''; print ''; print '
'.$langs->trans("ThirdParty"); print ''; print img_picto('', 'company', 'class="pictofixedwidth"'); print ''.$object->thirdparty->name.''; print '
'.$langs->trans("Designation"); print ''.$text; $last_main_doc_file = $object->last_main_doc; if (empty($last_main_doc_file) || !dol_is_file(DOL_DATA_ROOT.'/'.$object->last_main_doc)) { // It seems document has never been generated, or was generated and then deleted. // So we try to regenerate it with its default template. $defaulttemplate = ''; // We force the use an empty string instead of $object->model_pdf to be sure to use a "main" default template and not the last one used. $object->generateDocument($defaulttemplate, $langs); } $directdownloadlink = $object->getLastMainDocLink('fichinter'); if ($directdownloadlink) { print '
'; print img_mime($object->last_main_doc, ''); if ($message == "signed") { print $langs->trans("DownloadSignedDocument").''; } else { print $langs->trans("DownloadDocument").''; } } print ''; print ''; print '

'.dol_escape_htmltag($mesg).'
'."\n"; print "\n"; if ($action != 'dosign') { if ($found && !$error) { // We are in a management option and no error } else { dol_print_error_email('ERRORNEWONLINESIGN'); } } else { // Print } print '
'; if ($action == "dosign" && empty($cancel)) { print '
'; print ''; print '
'; print '
'; // Do not use class="reposition" here: It breaks the submit and there is a message on top to say it's ok, so going back top is better. print ''; print ''; // Add js code managed into the div #signature print ' '; } else { if ($source == 'proposal') { if ($object->status == $object::STATUS_SIGNED) { print '
'; if ($message == 'signed') { print ''.$langs->trans("PropalSigned").''; } else { print ''.$langs->trans("PropalAlreadySigned").''; } } elseif ($object->status == $object::STATUS_NOTSIGNED) { print '
'; if ($message == 'refused') { print ''.$langs->trans("PropalRefused").''; } else { print ''.$langs->trans("PropalAlreadyRefused").''; } } else { print ''; print ''; } } elseif ($source == 'contract') { if ($message == 'signed') { print ''.$langs->trans("ContractSigned").''; } else { print ''; } } elseif ($source == 'fichinter') { if ($message == 'signed') { print ''.$langs->trans("FichinterSigned").''; } else { print ''; } } } print '
'."\n"; print '
'."\n"; print '
'."\n"; print '
'; htmlPrintOnlinePaymentFooter($mysoc, $langs); llxFooter('', 'public'); $db->close();