diff --git a/apps/maarch_entreprise/cas_connect.php b/apps/maarch_entreprise/cas_connect.php deleted file mode 100755 index d6848fd399913545590b90f24adf9002ac30e843..0000000000000000000000000000000000000000 --- a/apps/maarch_entreprise/cas_connect.php +++ /dev/null @@ -1,127 +0,0 @@ -<?php - -include_once('apps/maarch_entreprise/tools/phpCAS/CAS.php'); -require_once('core' . DIRECTORY_SEPARATOR . 'class' . DIRECTORY_SEPARATOR . 'class_request.php'); -require_once('core' . DIRECTORY_SEPARATOR . 'class' . DIRECTORY_SEPARATOR . 'class_history.php'); -require_once('core' . DIRECTORY_SEPARATOR . 'class' . DIRECTORY_SEPARATOR . 'class_core_tools.php'); -$core = new core_tools(); - -/**** RECUPERATION DU FICHIER DE CONFIG ****/ -if (file_exists($_SESSION['config']['corepath'] . 'custom' . - DIRECTORY_SEPARATOR . $_SESSION['custom_override_id'] . - DIRECTORY_SEPARATOR . 'apps' . DIRECTORY_SEPARATOR . - $_SESSION['config']['app_id'] . DIRECTORY_SEPARATOR . 'xml' . - DIRECTORY_SEPARATOR . 'cas_config.xml') -) { - $xmlPath = $_SESSION['config']['corepath'] . 'custom' . DIRECTORY_SEPARATOR - . $_SESSION['custom_override_id'] . DIRECTORY_SEPARATOR . 'apps' - . DIRECTORY_SEPARATOR . $_SESSION['config']['app_id'] - . DIRECTORY_SEPARATOR . 'xml' . DIRECTORY_SEPARATOR . 'cas_config.xml'; -} elseif (file_exists($_SESSION['config']['corepath'] . 'apps' - . DIRECTORY_SEPARATOR . $_SESSION['config']['app_id'] - . DIRECTORY_SEPARATOR . 'xml' . DIRECTORY_SEPARATOR . - 'cas_config.xml') -) { - $xmlPath = $_SESSION['config']['corepath'] . DIRECTORY_SEPARATOR . 'apps' - . DIRECTORY_SEPARATOR . $_SESSION['config']['app_id'] - . DIRECTORY_SEPARATOR . 'xml' . DIRECTORY_SEPARATOR . 'cas_config.xml'; -} else { - echo _XML_FILE_NOT_EXISTS; - exit; -} - -$xmlconfig = simplexml_load_file($xmlPath); -$loginRequestArray = array(); -$loginRequestArray = $core->object2array($xmlconfig); - -// Les paramètres du serveur CAS -$cas_serveur = $loginRequestArray['WEB_CAS_URL']; -$cas_port = $loginRequestArray['WEB_CAS_PORT']; -$cas_context = $loginRequestArray['WEB_CAS_CONTEXT']; -$id_separator = $loginRequestArray['ID_SEPARATOR']; -$certificate = $loginRequestArray['PATH_CERTIFICATE']; - -$_SESSION['cas_version'] = $loginRequestArray['CAS_VERSION']; -$_SESSION['cas_serveur'] = $cas_serveur; -$_SESSION['cas_port'] = $cas_port; -$_SESSION['cas_context'] = $cas_context; -$_SESSION['cas_certificate'] = $certificate; -$_SESSION['cas_id_separator'] = $id_separator; - -phpCAS::setDebug(); -phpCAS::setVerbose(true); - -// Initialisation phpCAS -if ($loginRequestArray['CAS_VERSION'] == 'CAS_VERSION_3_0') { - $changeSessionId = false; -} else { - $changeSessionId = true; -} - -phpCAS::client(constant($loginRequestArray['CAS_VERSION']), $cas_serveur, (int)$cas_port, $cas_context, $changeSessionId); - -// Le certificat de l'autorité racine -if (!empty($certificate)) { - phpCAS::setCasServerCACert($certificate); -} else { - phpCAS::setNoCasServerValidation(); -} - -// L'authentification. -phpCAS::forceAuthentication(); - -if (in_array($loginRequestArray['CAS_VERSION'], ['CAS_VERSION_2_0', 'CAS_VERSION_3_0'])) { - // Lecture identifiant utilisateur (courriel) - $Id = phpCAS::getUser(); - echo 'Identifiant : ' . phpCAS::getUser(); - echo '<br/> phpCAS version : ' . phpCAS::getVersion(); - if (!empty($id_separator)) { - $tmpId = explode($id_separator, $Id); - $userId = $tmpId[0]; - } else { - $userId = $Id; - } -} elseif ($loginRequestArray['CAS_VERSION'] == 'SAML_VERSION_1_1') { - // $attrSAML = phpCAS::getAttributes(); - echo _CAS_SAML_NOT_SUPPORTED; - exit; -} else { - echo _PROTOCOL_NOT_SUPPORTED; - exit; -} - -$db = new Database(); -$query = "SELECT user_id FROM users WHERE lower(user_id) = lower(?)"; -$stmt = $db->query($query, array($userId)); - -if ($stmt->rowCount() == 0) { - echo '<br>' . _USER_NOT_EXIST; - exit; -} - -$loginArray['password'] = 'maarch'; - -$protocol = 'http://'; -if ((int)$cas_port == 443) { - $protocol = 'https://'; -} - -$_SESSION['web_cas_url'] = $protocol. $cas_serveur . $cas_context .'/logout'; - -/**** CONNECTION A MAARCH ****/ -$trace = new history(); -header("location: log.php"); - -//Traces fonctionnelles -$trace->add( - "users", - $userId, - "LOGIN", - "userlogin", - _CONNECTION_CAS_OK, - $_SESSION['config']['databasetype'], - "ADMIN", - false, 'ok', 'DEBUG', $userId -); - -exit(); diff --git a/apps/maarch_entreprise/export.php b/apps/maarch_entreprise/export.php deleted file mode 100755 index c48749c5c2542241319a70b919190201ea605f6e..0000000000000000000000000000000000000000 --- a/apps/maarch_entreprise/export.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php -if ($_REQUEST['origin'] != 'graph') { - require_once('core/class/ExportControler.php'); - $export = new ExportControler(); -} -if (!empty($_SESSION['error'])) { - ?> - <script language="javascript" > - window.opener.location.reload(); - window.close(); - </script> - <?php -} else { - header('Pragma: public'); - header('Expires: 0'); - header('Cache-Control: must-revalidate, post-check=0, pre-check=0'); - //header('Cache-Control: public'); - //header('Content-Description: File Transfer'); - header('Content-Type: application/vnd.ms-excel'); - header('Content-Disposition: inline; filename=export_maarch.csv;'); - //header('Content-Transfer-Encoding: binary'); - readfile($_SESSION['config']['tmppath'] . $_SESSION['export']['filename']); - unlink($_SESSION['config']['tmppath'] . $_SESSION['export']['filename']); - exit; -} diff --git a/apps/maarch_entreprise/fulltext_search_help.php b/apps/maarch_entreprise/fulltext_search_help.php deleted file mode 100755 index a52717c4f47b72d7d10d2015d293d6b651752a2a..0000000000000000000000000000000000000000 --- a/apps/maarch_entreprise/fulltext_search_help.php +++ /dev/null @@ -1,65 +0,0 @@ -<?php -/** -* File : fulltext_search_help.php -* -* Help for fulltext search -* -* @package Maarch Entreprise 1.3 -* @version 1.3 -* @since 04/2012 -* @license GPL -* @author Sébastien NANA <dev@maarch.org> -*/ - -function show_helper($mode) -{ - $core_tools = new core_tools(); - $core_tools->load_lang(); - $core_tools->load_html(); - ?> - <div class="block small_text" > - - - <h3><i class="fa fa-info-circle fa-2x"></i> <?php echo _TIPS_FULLTEXT;?></h3> - <?php - - echo "<p align='right'>"; - //echo "<b><u>"._TIPS_CHARACTER.":</u></b><br/><br/>"; - echo "</p>"; - echo "<p> <br/><br/> </p>"; - echo "<p align='justify'>"; - echo "<p><b> * : </b><em>"._TIPS_KEYWORD1."</em></p>"; - echo "<div style='border:1px black solid; padding:3px;'>"._HELP_FULLTEXT_SEARCH_EXEMPLE1."</div>"; - echo "<p><b> \" \" : </b><em>"._TIPS_KEYWORD2."</em></p>"; - echo "<div style='border:1px black solid; padding:3px;'>"._HELP_FULLTEXT_SEARCH_EXEMPLE2."</div>"; - echo "<p><b> ~ : </b><em>"._TIPS_KEYWORD3."</em><br/></p>"; - echo "<div style='border:1px black solid; padding:3px;'>"._HELP_FULLTEXT_SEARCH_EXEMPLE3."</div>"; - echo "<p> <br/> </p>"; - echo "<p><em>"._TIPS_FULLTEXT_TEXT."</em></p>"; - echo "</p>"; - echo "</div>"; - echo "<div class='block_end'> </div>"; - if($mode == 'popup') - { - echo '<br/><div align="center"><input type="button" class="button" name="close" value="'._CLOSE_WINDOW.'" onclick="self.close();"</div>'; - } -} - -if(isset($_REQUEST['mode'])) -{ - $mode = trim($_REQUEST['mode']); -} -else -{ - $mode = ''; -} - -$core_tools = new core_tools(); -$core_tools->load_lang(); -$core_tools->load_html(); -$core_tools->load_header(); -echo '<div id="header">'; -show_helper($mode); -echo '</div></body></html>'; - - diff --git a/apps/maarch_entreprise/indexing_searching/documents_list_mlb_search_adv.php b/apps/maarch_entreprise/indexing_searching/documents_list_mlb_search_adv.php deleted file mode 100755 index 29b2c9ae78aeb6dbc1689eb4c1a29a0f6999f778..0000000000000000000000000000000000000000 --- a/apps/maarch_entreprise/indexing_searching/documents_list_mlb_search_adv.php +++ /dev/null @@ -1,1020 +0,0 @@ -<?php -/* -* -* Copyright 2008,2012 Maarch -* -* This file is part of Maarch Framework. -* -* Maarch Framework 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. -* -* Maarch Framework 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 Maarch Framework. If not, see <http://www.gnu.org/licenses/>. -*/ - -/** - * @brief Displays document list in search mode - * - * @file - * - * @author Yves Christian Kpakpo <dev@maarch.org> - * @date $date$ - * - * @version $Revision$ - * @ingroup apps - */ -require_once 'core'.DIRECTORY_SEPARATOR.'class'.DIRECTORY_SEPARATOR.'class_request.php'; -require_once 'core'.DIRECTORY_SEPARATOR.'class'.DIRECTORY_SEPARATOR.'class_security.php'; -require_once 'core'.DIRECTORY_SEPARATOR.'class'.DIRECTORY_SEPARATOR.'class_manage_status.php'; -require_once 'apps'.DIRECTORY_SEPARATOR.$_SESSION['config']['app_id'].DIRECTORY_SEPARATOR - .'class'.DIRECTORY_SEPARATOR.'class_lists.php'; - -$status_obj = new manage_status(); -$sec = new security(); -$core_tools = new core_tools(); -$request = new request(); -$list = new lists(); - -//Labels -if ($core_tools->is_module_loaded('labels')) { - require_once 'modules'.DIRECTORY_SEPARATOR.'labels'.DIRECTORY_SEPARATOR - .'class'.DIRECTORY_SEPARATOR - .'class_modules_tools.php'; - $labels = new labels(); -} - -//Include definition fields -include_once 'apps'.DIRECTORY_SEPARATOR.$_SESSION['config']['app_id'].DIRECTORY_SEPARATOR.'definition_mail_categories.php'; - -//Parameters -$urlParameters = ''; - //Mode - $mode = 'normal'; - if (isset($_REQUEST['mode']) && !empty($_REQUEST['mode'])) { - $mode = $core_tools->wash($_REQUEST['mode'], 'alphanum', _MODE); - } - $urlParameters .= '&mode='.$mode; - //No details - $showIconDetails = true; - if (isset($_REQUEST['nodetails'])) { - $showIconDetails = false; - $urlParameters .= '&nodetails'; - } - //module - if (isset($_REQUEST['modulename'])) { - $urlParameters .= '&modulename='.$_REQUEST['modulename']; - } - - //Form - if (isset($_REQUEST['action_form'])) { - $urlParameters .= '&action_form='.$_REQUEST['action_form']; - } - -//Start -if ($mode == 'normal') { - $saveTool = true; - $useTemplate = true; - $exportTool = true; - $printTool = true; - $bigPageTitle = true; - $standaloneForm = false; - $radioButton = false; - - //Templates - $defaultTemplate = 'documents_list_search_adv'; - $selectedTemplate = $list->getTemplate(); - if (empty($selectedTemplate)) { - if (!empty($defaultTemplate)) { - $list->setTemplate($defaultTemplate); - $selectedTemplate = $list->getTemplate(); - } - } - $template_list = array(); - array_push($template_list, 'documents_list_search_adv'); - - //For status icon - $extension_icon = ''; - if ($selectedTemplate != 'none') { - $extension_icon = '_big'; - } - - //error and search url - $url_error = $_SESSION['config']['businessappurl'].'index.php?page=search_adv_error&dir=indexing_searching'; - $url_search = $_SESSION['config']['businessappurl'].'index.php?page=search_adv&dir=indexing_searching'; - - //error - $_SESSION['error_search'] = '<p style="text-align:center;color:red;"><i class="fa fa-times fa-2x"></i><br />' - ._NO_RESULTS.'</p><br/><br/><div align="center"><strong><a href="javascript://" ' - .' onclick = "window.top.location.href=\''.$url_search.'\'">'._MAKE_NEW_SEARCH.'</a></strong></div>'; -} elseif ($mode == 'popup' || $mode == 'frame') { - $core_tools->load_html(); - $core_tools->load_header('', true, false); - $core_tools->load_js(); - $time = $core_tools->get_session_time_expire(); ?> - -<body> - <div id="container" style="height:auto;"> - <div class="error" id="main_error"> - <?php functions::xecho($_SESSION['error']); ?> - </div> - <div class="info" id="main_info"> - <?php functions::xecho($_SESSION['info']); ?> - </div> - <div id="divList"><?php - - $saveTool = false; - $useTemplate = false; - $exportTool = false; - $printTool = false; - $bigPageTitle = false; - $radioButton = true; - - if ($mode == 'popup') { - //Form object - $standaloneForm = true; - $formMethod = 'get'; - $hiddenFormFields = array(); - array_push($hiddenFormFields, array('ID' => 'display', 'NAME' => 'display', 'VALUE' => 'true')); - array_push($hiddenFormFields, array('ID' => 'page', 'NAME' => 'page', 'VALUE' => $_REQUEST['action_form'])); - if (isset($_REQUEST['modulename']) && !empty($_REQUEST['modulename'])) { - array_push($hiddenFormFields, array('ID' => 'module', 'NAME' => 'module', 'VALUE' => $_REQUEST['modulename'])); - $formAction = $_SESSION['config']['businessappurl'] - .'index.php?display=true&page=' - .$_REQUEST['action_form'].'&module='.$_REQUEST['modulename']; - } else { - $formAction = $_SESSION['config']['businessappurl'] - .'index.php?display=true&page=' - .$_REQUEST['action_form']; - } - - $buttons = array(); - if (isset($_REQUEST['fromValidateMail'])) { - array_push( - $buttons, - array('ID' => 'valid', - 'LABEL' => _VALIDATE, - 'ACTION' => 'formList.submit();opener.$(\'to_link\').click();', - ) - ); - } elseif ($_SESSION['fromValidateMail'] == 'ok') { - array_push( - $buttons, - array('ID' => 'valid', - 'LABEL' => _VALIDATE, - 'ACTION' => 'formList.submit();', - ) - ); - } else { - array_push( - $buttons, - array('ID' => 'valid', - 'LABEL' => _VALIDATE, - //'ACTION' => 'formList.submit();opener.$(\'attach\').click();' - 'ACTION' => 'formList.submit();', - ) - ); - } - - array_push( - $buttons, - array('ID' => 'close', - 'LABEL' => _CLOSE_WINDOW, - 'ACTION' => 'window.top.close();', - ) - ); - } - - //error and search url - - if ($_REQUEST['mode'] == 'popup') { - $url_error = $_SESSION['config']['businessappurl'] - .'index.php?page=search_adv_error' - .'&dir=indexing_searching&display=true&mode='.$_REQUEST['mode']; - } else { - $url_error = $_SESSION['config']['businessappurl'] - .'index.php?page=search_adv_error' - .'&dir=indexing_searching'; - } - - if (isset($_REQUEST['exclude'])) { - $_SESSION['excludeId'] = $_REQUEST['exclude']; - } - if ($_REQUEST['mode'] == 'popup' && isset($_SESSION['excludeId'])) { - $urlParameters .= '&exclude='.$_SESSION['excludeId']; - } - - $url_search = $_SESSION['config']['businessappurl'] - .'index.php?display=true&dir=indexing_searching' - .'&page=search_adv&load&mode='.$mode.$urlParameters; - - //Displayed error text - $_SESSION['error_search'] = '<p style="color:red;text-align:center;"><i class="fa fa-times fa-2x"></i><br />' - ._NO_RESULTS.'</p><br/><br/><div align="center"><strong><a href="javascript://" ' - .' onclick = "window.top.location.href=\''.$url_search.'\'">'._MAKE_NEW_SEARCH.'</a></strong></div>'; -} - -/************Construction de la requete*******************/ -//Table or view - $_SESSION['collection_id_choice'] = 'letterbox_coll'; - $view = $sec->retrieve_view_from_coll_id($_SESSION['collection_id_choice']); - $select = array(); - $select[$view] = array(); - -//Fields - //Documents - array_push( - $select[$view], - 'res_id', - 'res_id as is_labeled', - 'alt_identifier', - 'priority', - 'status', - 'subject', - 'category_id as category_img', - 'category_id', - 'dest_user', - 'type_label', - 'creation_date', - 'entity_label', - 'res_id as count_attachment', - 'filename', - 'res_id as real_dest' - ); -//Where clause - $where_tab = array(); - $arrayPDO = array(); - //From search - if (!empty($_SESSION['searching']['where_request'])) { - $where_tab[] = $_SESSION['searching']['where_request'].'(1=1)'; - $arrayPDO = array_merge($arrayPDO, $_SESSION['searching']['where_request_parameters']); - } - - if (isset($_REQUEST['exclude'])) { - $_SESSION['excludeId'] = $_REQUEST['exclude']; - } - - //From popup excluding some id - if ($_REQUEST['mode'] == 'popup' && isset($_SESSION['excludeId'])) { - $where_tab[] = 'res_id <> :excludeId and ' - .'(res_id not in (SELECT res_parent FROM res_linked WHERE res_child = :excludeId) and ' - .'res_id not in (SELECT res_child FROM res_linked WHERE res_parent = :excludeId))'; - $arrayPDO = array_merge($arrayPDO, array(':excludeId' => $_SESSION['excludeId'])); - unset($_SESSION['excludeId']); - } - - $status = $status_obj->get_not_searchable_status(); - - if (count($status) > 0) { - $status_tab = array(); - // $status_str = ''; - for ($i = 0; $i < count($status); ++$i) { - array_push($status_tab, $status[$i]['ID']); - } - // $status_str = implode(' ,', $status_tab); - $where_tab[] = 'status not in (:statustab)'; - $arrayPDO = array_merge($arrayPDO, array(':statustab' => $status_tab)); - } - - if (isset($_SESSION['where_from_contact_check']) && $_SESSION['where_from_contact_check'] != '' && (isset($_REQUEST['fromContactCheck']) || $_SESSION['fromContactCheck'] == 'ok')) { - for ($ind_bask = 0; $ind_bask < count($_SESSION['user']['baskets']); ++$ind_bask) { - if ($_SESSION['user']['baskets'][$ind_bask]['coll_id'] == $_SESSION['collection_id_choice']) { - if (isset($_SESSION['user']['baskets'][$ind_bask]['clause']) && trim($_SESSION['user']['baskets'][$ind_bask]['clause']) != '') { - $_SESSION['searching']['comp_query'] .= ' or ('.$_SESSION['user']['baskets'][$ind_bask]['clause'].')'; - } - } - } - $_SESSION['searching']['comp_query'] = preg_replace('/^ or/', '', $_SESSION['searching']['comp_query']); - } - //From searching comp query - if (isset($_SESSION['searching']['comp_query']) && trim($_SESSION['searching']['comp_query']) != '') { - $where_clause = $sec->get_where_clause_from_coll_id($_SESSION['collection_id_choice']); - - $whereFolders = 'res_id in (select res_id from resources_folders, folders, entities_folders '; - $whereFolders .= 'where folders.id = entities_folders.folder_id AND folders.id = resources_folders.folder_id AND (user_id = :userSerialId OR entity_id in (:userEntitiesId)))'; - $user = \User\models\UserModel::getByLogin(['login' => $_SESSION['user']['UserId'], 'select' => ['id']]); - $arrayPDO[':userSerialId'] = $user['id']; - $arrayPDO[':userEntitiesId'] = $entities; - if (count($where_tab) != 0) { - $where = implode(' and ', $where_tab); - $where_request = '('.$where.') and (('.$where_clause.') or ('.$_SESSION['searching']['comp_query'].") OR ({$whereFolders}))"; - } else { - $where_request = '('.$where_clause.' or '.$_SESSION['searching']['comp_query']. " OR ({$whereFolders}))"; - } - - $add_security = false; - } else { - $where_request = implode(' and ', $where_tab); - $add_security = true; - } - -//Order - $order = $order_field = ''; - $order = $list->getOrder(); - $order_field = $list->getOrderField(); - $_SESSION['save_list']['order'] = $order; - $_SESSION['save_list']['order_field'] = $order_field; - - if (!empty($order_field) && !empty($order)) { - if ($_REQUEST['order_field'] == 'alt_identifier') { - $orderstr = 'order by order_alphanum(alt_identifier)'.' '.$order; - } elseif ($_REQUEST['order_field'] == 'priority') { - $where_request .= ' and '.$view.'.priority = priorities.id'; - $select['priorities'] = ['order', 'id']; - $orderstr = 'order by priorities.order '.$order; - } else { - $orderstr = 'order by '.$order_field.' '.$order; - } - } else { - $list->setOrder(); - $list->setOrderField('res_id'); - $orderstr = 'order by res_id desc'; - } - -//URL extra Parameters - $parameters = ''; - $start = $list->getStart(); - if (!empty($order_field) && !empty($order)) { - $parameters .= '&order='.$order.'&order_field='.$order_field; - } - if (!empty($what)) { - $parameters .= '&what='.$what; - } - if (!empty($selectedTemplate)) { - $parameters .= '&template='.$selectedTemplate; - } - - $parameters .= '&start='.$start; - $_SESSION['save_list']['start'] = $start; - - if (isset($_SESSION['where_from_contact_check']) && $_SESSION['where_from_contact_check'] != '' && (isset($_REQUEST['fromContactCheck']) || $_SESSION['fromContactCheck'] == 'ok')) { - $_SESSION['fromContactCheck'] = 'ok'; - $where_request .= $_SESSION['where_from_contact_check']; - } - if (isset($_REQUEST['lines'])) { - $limit = $_REQUEST['lines']; - } else { - $limit = 'default'; - } -//Query - $tab = $request->PDOselect($select, $where_request, $arrayPDO, $orderstr, $_SESSION['config']['databasetype'], $limit, false, '', '', '', $add_security, false, false, $_SESSION['save_list']['start']); - // $request->show(); -//Result array - $tabI = count($tab); - - $resIdList = []; - - for ($i = 0; $i < $tabI; ++$i) { - $tabJ = count($tab[$i]); - for ($j = 0; $j < $tabJ; ++$j) { - foreach (array_keys($tab[$i][$j]) as $value) { - if ($tab[$i][$j][$value] == 'is_labeled' - && $core_tools->is_module_loaded('labels') - && (isset($_SESSION['user']['services']['labels']) - && $_SESSION['user']['services']['labels'] === true) - ) { - $str_label = $labels->get_labels_resid($tab[$i][$j]['value'], $_SESSION['collection_id_choice']); - if (!empty($str_label)) { - $tab[$i][$j]['value'] = ''; - } else { - $tab[$i][$j]['value'] = ' '; - } - $tab[$i][$j]['label'] = _LABELS; - $tab[$i][$j]['size'] = '4'; - $tab[$i][$j]['label_align'] = 'left'; - $tab[$i][$j]['align'] = 'left'; - $tab[$i][$j]['valign'] = 'bottom'; - $tab[$i][$j]['show'] = true; - $tab[$i][$j]['order'] = false; - } - - if ($tab[$i][$j][$value] == 'res_id') { - $resIdList[] = intval($tab[$i][$j]['value']); - $tab[$i][$j]['res_id'] = $tab[$i][$j]['value']; - $tab[$i][$j]['label'] = _GED_NUM; - $tab[$i][$j]['size'] = '4'; - $tab[$i][$j]['label_align'] = 'left'; - $tab[$i][$j]['align'] = 'left'; - $tab[$i][$j]['valign'] = 'bottom'; - if ($_REQUEST['mode'] == 'popup') { - $tab[$i][$j]['show'] = false; - } else { - $tab[$i][$j]['show'] = true; - } - $tab[$i][$j]['value_export'] = $tab[$i][$j]['value']; - $tab[$i][$j]['order'] = 'res_id'; - $_SESSION['mlb_search_current_res_id'] = $tab[$i][$j]['value']; - // notes - $db = new Database(); - - $arrayPDO = array(); - $query = 'SELECT '; - $query .= 'notes.id '; - $query .= 'FROM '; - $query .= 'notes '; - $query .= 'left join '; - $query .= 'note_entities '; - $query .= 'on '; - $query .= 'notes.id = note_entities.note_id '; - $query .= 'WHERE '; - $query .= 'identifier = ? '; - $arrayPDO = array($tab[$i][$j]['value']); - - $query .= 'AND '; - $query .= '( '; - $query .= '( '; - $query .= 'item_id IN ('; - - if (!empty($_SESSION['user']['entities'])) { - foreach ($_SESSION['user']['entities'] as $entitiestmpnote) { - $query .= '?, '; - $arrayPDO = array_merge($arrayPDO, array($entitiestmpnote['ENTITY_ID'])); - } - $query = substr($query, 0, -2); - } else { - $query .= "''"; - } - - $query .= ') '; - $query .= 'OR '; - $query .= 'item_id IS NULL '; - $query .= ') '; - $query .= 'OR '; - $query .= 'user_id = ? '; - $query .= ') '; - $user = \User\models\UserModel::getByLogin(['login' => $_SESSION['user']['UserId'], 'select' => ['id']]); - $arrayPDO = array_merge($arrayPDO, array($user['id'])); - - $stmt = $db->query($query, $arrayPDO); - $tab[$i][$j]['hasNotes'] = $stmt->fetchObject(); - $tab[$i][$j]['res_multi_contacts'] = $_SESSION['mlb_search_current_res_id']; - } - if ($tab[$i][$j][$value] == 'alt_identifier') { - $target_chrono = $_SESSION['searching']['where_request_parameters'][':chrono']; - $target_chrono = str_replace('%', '', $target_chrono); - $chrono = $tab[$i][$j]['value']; - $chrono = str_replace($target_chrono, '<i style="background: #135F7F none repeat scroll 0 0;border-radius: 4px;color: white;padding: 3px;" title="mot cible">'.$target_chrono.'</i>', $chrono); - $tab[$i][$j]['res_id'] = $tab[$i][$j]['value']; - $tab[$i][$j]['label']=_CHRONO_NUMBER; - $tab[$i][$j]['value'] = $chrono; - $tab[$i][$j]['size'] = '10'; - $tab[$i][$j]['label_align'] = 'left'; - $tab[$i][$j]['align'] = 'left'; - $tab[$i][$j]['valign'] = 'bottom'; - $tab[$i][$j]['show'] = true; - $tab[$i][$j]['order'] = 'alt_identifier'; - } - if ($tab[$i][$j][$value] == 'type_label') { - if (!empty($_SESSION['searching']['where_request_parameters'][':doctypesChosen'])) { - $doctype = '<i style="background: #135F7F none repeat scroll 0 0;border-radius: 4px;color: white;padding: 3px;" title="mot cible">'.$tab[$i][$j]['value'].'</i>'; - } else { - $doctype = $tab[$i][$j]['value']; - } - $tab[$i][$j]['label'] = _TYPE; - $tab[$i][$j]['value'] = $doctype; - $tab[$i][$j]['size'] = '15'; - $tab[$i][$j]['label_align'] = 'left'; - $tab[$i][$j]['align'] = 'left'; - $tab[$i][$j]['valign'] = 'bottom'; - $tab[$i][$j]['show'] = true; - $tab[$i][$j]['value_export'] = $tab[$i][$j]['value']; - $tab[$i][$j]['order'] = 'type_label'; - } - - if ($tab[$i][$j][$value] == 'status') { - $style = "style='color:".$_SESSION['mail_priorities_color'][$fakeId].";font-size:36px'"; - - $tab[$i][$j]['label'] = _STATUS; - $res_status = $status_obj->get_status_data($tab[$i][$j]['value'], $extension_icon); - $statusCmp = $tab[$i][$j]['value']; - $img_class = substr($res_status['IMG_SRC'], 0, 2); - // $tab[$i][$j]['value'] = '<img src = "'.$res_status['IMG_SRC'].'" alt = "'.$res_status['LABEL'].'" title = "'.$res_status['LABEL'].'">'; - if (!isset($res_status['IMG_SRC']) || empty($res_status['IMG_SRC'])) { - $tab[$i][$j]['value'] = '<i '.$style." class = 'fm fm-letter-status-new fm-3x' alt = '".$res_status['LABEL']."' title = '".$res_status['LABEL']."'></i>"; - } else { - $tab[$i][$j]['value'] = '<i '.$style." class = '".$img_class.' '.$res_status['IMG_SRC'].' '.$img_class."-3x' alt = '".$res_status['LABEL']."' title = '".$res_status['LABEL']."'></i>"; - } - $tab[$i][$j]['size'] = '5'; - $tab[$i][$j]['label_align'] = 'left'; - $tab[$i][$j]['align'] = 'left'; - $tab[$i][$j]['valign'] = 'bottom'; - $tab[$i][$j]['show'] = true; - $tab[$i][$j]['value_export'] = $tab[$i][$j]['value']; - $tab[$i][$j]['order'] = 'status'; - } - - if ($tab[$i][$j][$value] == 'subject') { - mb_internal_encoding('UTF-8'); - - $target_subj = $_SESSION['searching']['where_request_parameters'][':subject']; - - $target_subj = str_replace('%', '', trim($target_subj)); - - if (!empty($target_subj)) { - $subj = $request->cut_string($request->show_string($tab[$i][$j]['value']), 250); - - $subj_no_accent = functions::normalize($subj); - - $begin_pos_subj = mb_strpos($subj_no_accent, $target_subj); - - if ($begin_pos_subj != false || $begin_pos_subj === 0) { - $result = strlen($subj) - strlen($subj_no_accent); - - $subj_length = mb_strlen($target_subj); - - $target_subj_new = mb_substr($subj, $begin_pos_subj, $subj_length); - - $subj = str_replace($target_subj_new, '<i style="background: #135F7F none repeat scroll 0 0;border-radius: 4px;color: white;padding: 3px;" title="mot cible">'.$target_subj_new.'</i>', $subj); - } else { - $subj = $request->show_string($tab[$i][$j]['value']); - } - } else { - $subj = $request->show_string($tab[$i][$j]['value']); - } - - $tab[$i][$j]['label'] = _SUBJECT; - $tab[$i][$j]['value'] = $subj; - $tab[$i][$j]['size'] = '25'; - $tab[$i][$j]['label_align'] = 'left'; - $tab[$i][$j]['align'] = 'left'; - $tab[$i][$j]['valign'] = 'bottom'; - $tab[$i][$j]['show'] = true; - $tab[$i][$j]['value_export'] = $tab[$i][$j]['value']; - $tab[$i][$j]['order'] = 'subject'; - } - - if ($tab[$i][$j][$value] == 'creation_date') { - $tab[$i][$j]['label'] = _REG_DATE; - $tab[$i][$j]['size'] = '10'; - $tab[$i][$j]['label_align'] = 'left'; - $tab[$i][$j]['align'] = 'left'; - $tab[$i][$j]['valign'] = 'bottom'; - $tab[$i][$j]['show'] = true; - $tab[$i][$j]['value_export'] = $tab[$i][$j]['value']; - $tab[$i][$j]['value'] = $request->format_date_db($tab[$i][$j]['value'], false); - $tab[$i][$j]['order'] = 'creation_date'; - } - - if ($tab[$i][$j][$value] == 'entity_label') { - if (!empty($_SESSION['searching']['where_request_parameters'][':serviceChosen'])) { - $service = '<i style="background: #135F7F none repeat scroll 0 0;border-radius: 4px;color: white;padding: 3px;" title="mot cible">'.$tab[$i][$j]['value'].'</i>'; - } else { - $service = $tab[$i][$j]['value']; - } - $tab[$i][$j]['label'] = _ENTITY; - $tab[$i][$j]['value'] = $request->show_string($service); - $tab[$i][$j]['size'] = '10'; - $tab[$i][$j]['label_align'] = 'left'; - $tab[$i][$j]['align'] = 'left'; - $tab[$i][$j]['valign'] = 'bottom'; - $tab[$i][$j]['show'] = false; - $tab[$i][$j]['value_export'] = $tab[$i][$j]['value']; - $tab[$i][$j]['order'] = 'entity_label'; - } - - if ($tab[$i][$j][$value] == 'category_id') { - if (!empty($_SESSION['searching']['where_request_parameters'][':category'])) { - $cat = '<i style="background: #135F7F none repeat scroll 0 0;border-radius: 4px;color: white;padding: 3px;" title="mot cible">'.$_SESSION['coll_categories']['letterbox_coll'][$tab[$i][$j]['value']].'</i>'; - } else { - $cat = $_SESSION['coll_categories']['letterbox_coll'][$tab[$i][$j]['value']]; - } - $categoryId = $tab[$i][$j]['value']; - $_SESSION['mlb_search_current_category_id'] = $tab[$i][$j]['value']; - $tab[$i][$j]['value'] = $cat; - $tab[$i][$j]['label'] = _CATEGORY; - $tab[$i][$j]['size'] = '10'; - $tab[$i][$j]['label_align'] = 'left'; - $tab[$i][$j]['align'] = 'left'; - $tab[$i][$j]['valign'] = 'bottom'; - $tab[$i][$j]['show'] = true; - $tab[$i][$j]['value_export'] = $tab[$i][$j]['value']; - $tab[$i][$j]['order'] = 'category_id'; - } - - if ($tab[$i][$j][$value] == 'category_img') { - $tab[$i][$j]['label'] = _CATEGORY; - $tab[$i][$j]['size'] = '10'; - $tab[$i][$j]['label_align'] = 'left'; - $tab[$i][$j]['align'] = 'left'; - $tab[$i][$j]['valign'] = 'bottom'; - $tab[$i][$j]['show'] = false; - $tab[$i][$j]['value_export'] = $tab[$i][$j]['value']; - $my_imgcat = get_img_cat($tab[$i][$j]['value'], $extension_icon); - $tab[$i][$j]['value'] = $my_imgcat; - $tab[$i][$j]['value'] = $tab[$i][$j]['value']; - $tab[$i][$j]['order'] = 'category_id'; - } - - if ($tab[$i][$j][$value] == 'priority') { - $fakeId = null; - foreach ($_SESSION['mail_priorities_id'] as $key => $prioValue) { - if ($prioValue == $tab[$i][$j]['value']) { - $fakeId = $key; - } - } - - $priority = $_SESSION['mail_priorities'][$fakeId]; - if (!empty($_SESSION['searching']['where_request_parameters'][':priorityChosen'])) { - $priority = '<i style="background: #009dc5 none repeat scroll 0 0;border-radius: 4px;color: white;padding: 3px;" title="mot cible">'.$_SESSION['mail_priorities'][$fakeId].'</i>'; - } - $tab[$i][$j]['value'] = $priority; - $tab[$i][$j]['label'] = _PRIORITY; - $tab[$i][$j]['size'] = '10'; - $tab[$i][$j]['label_align'] = 'left'; - $tab[$i][$j]['align'] = 'left'; - $tab[$i][$j]['valign'] = 'bottom'; - $tab[$i][$j]['show'] = false; - $tab[$i][$j]['order'] = 'priority'; - } - - if ($tab[$i][$j][$value] == 'dest_user') { - if (!empty($_SESSION['searching']['where_request_parameters'][':destinataireChosen'])) { - foreach ($_SESSION['searching']['where_request_parameters'][':destinataireChosen'] as $key => $value) { - if ($value == $tab[$i][$j]['value']) { - $user = \User\models\UserModel::getByLogin(['login' => $value, 'select' => ['firstname', 'lastname']]); - $target_dest = $value; - $target_dest = str_replace('%', '', $target_dest); - $dest = $tab[$i][$j]['value']; - $dest = str_replace($user['firstname'] . ' ' . $user['lastname'], '<i style="background: #135F7F none repeat scroll 0 0;border-radius: 4px;color: white;padding: 3px;" title="mot cible">'.$user['firstname'] . ' ' . $user['lastname'].'</i>', $user['firstname'] . ' ' . $user['lastname']); - break; - } - } - } else { - if (!empty($tab[$i][$j]['value'])) { - $user = \User\models\UserModel::getByLogin(['login' => $tab[$i][$j]['value'], 'select' => ['firstname', 'lastname']]); - $dest = $tab[$i][$j]['value']; - $dest = $user['firstname'] . ' ' . $user['lastname']; - } else { - $dest = '<i style="opacity:0.5;">'._UNDEFINED_DATA.'</i>'; - } - } - - $tab[$i][$j]["label"]=_DEST_USER; - $tab[$i][$j]["size"]="10"; - $tab[$i][$j]['label_align'] = 'left'; - $tab[$i][$j]["value"]=$dest; - $tab[$i][$j]['align'] = 'left'; - $tab[$i][$j]['valign'] = 'bottom'; - $tab[$i][$j]['show'] = false; - $tab[$i][$j]['value_export'] = $tab[$i][$j]['value']; - if ($categoryId == 'outgoing') { - $tab[$i][$j]['value'] = '<b>'._WRITTEN_BY.' : </b>'.$tab[$i][$j]['value']; - } else { - $tab[$i][$j]['value'] = '<b>'._PROCESSED_BY.' : </b>'.$tab[$i][$j]['value']; - } - $tab[$i][$j]['order'] = false; - } - - if ($tab[$i][$j][$value] == 'count_attachment') { - $query = "SELECT count(res_id) as total FROM res_attachments - WHERE res_id_master = ? - AND status NOT IN ('DEL', 'OBS') AND (status <> 'TMP' or (typist = ? and status = 'TMP'))"; - $arrayPDO = array($tab[$i][0]['res_id'], $_SESSION['user']['UserId']); - $stmt2 = $db->query($query, $arrayPDO); - $return_count = $stmt2->fetchObject(); - - $tab[$i][$j]['label'] = _ATTACHMENTS; - $tab[$i][$j]['size'] = '12'; - $tab[$i][$j]['label_align'] = 'left'; - $tab[$i][$j]['align'] = 'left'; - $tab[$i][$j]['valign'] = 'bottom'; - $tab[$i][$j]['value'] = "$return_count->total"; - $tab[$i][$j]['show'] = false; - $tab[$i][$j]['order'] = 'count_attachment'; - } - -// if ($tab[$i][$j][$value] == 'contact_firstname') { -// $contact_firstname = $tab[$i][$j]['value']; -// $tab[$i][$j]['show'] = false; -// } -// if ($tab[$i][$j][$value] == 'contact_lastname') { -// $contact_lastname = $tab[$i][$j]['value']; -// $tab[$i][$j]['show'] = false; -// } -// if ($tab[$i][$j][$value] == 'contact_society') { -// $contact_society = $tab[$i][$j]['value']; -// $tab[$i][$j]['show'] = false; -// } -// if ($tab[$i][$j][$value] == 'user_firstname') { -// $user_firstname = $tab[$i][$j]['value']; -// $tab[$i][$j]['show'] = false; -// } -// if ($tab[$i][$j][$value] == 'user_lastname') { -// $user_lastname = $tab[$i][$j]['value']; -// $tab[$i][$j]['show'] = false; -// } -// -// if ($tab[$i][$j][$value] == 'is_multicontacts') { -// if ($tab[$i][$j]['value'] == 'Y') { -// $tab[$i][$j]['label'] = _CONTACT; -// $tab[$i][$j]['size'] = '10'; -// $tab[$i][$j]['label_align'] = 'left'; -// $tab[$i][$j]['align'] = 'left'; -// $tab[$i][$j]['valign'] = 'bottom'; -// $tab[$i][$j]['show'] = false; -// if ($_SESSION['mlb_search_current_category_id'] == 'incoming') { -// $prefix = '<b>'._TO_CONTACT_C.'</b>'; -// } elseif ($_SESSION['mlb_search_current_category_id'] == 'outgoing' || $_SESSION['mlb_search_current_category_id'] == 'internal') { -// $prefix = '<b>'._FOR_CONTACT_C.'</b>'; -// } else { -// $prefix = ''; -// } -// $tab[$i][$j]['value_export'] = $tab[$i][$j]['value']; -// $tab[$i][$j]['value'] = $prefix.' '._MULTI_CONTACT; -// $tab[$i][$j]['order'] = false; -// $tab[$i][$j]['is_multi_contacts'] = 'Y'; -// $tab[$itContactI][$itContactJ]['value'] = null; -// } -// } - - if ($tab[$i][$j][$value] == 'folder_name') { - $tab[$i][$j]['label'] = _FOLDER; - $tab[$i][$j]['size'] = '10'; - $tab[$i][$j]['label_align'] = 'left'; - $tab[$i][$j]['align'] = 'left'; - $tab[$i][$j]['valign'] = 'bottom'; - $tab[$i][$j]['show'] = true; - $tab[$i][$j]['value_export'] = $tab[$i][$j]['value']; - $tab[$i][$j]['order'] = 'folder_name'; - } - - // ------------------------------------------------------------- -// if ($tab[$i][$j][$value] == 'address_id') { -// $addressId = $tab[$i][$j]['value']; -// $tab[$i][$j]['show'] = false; -// } -// if ($tab[$i][$j][$value] == 'exp_user_id') { -// $itContactI = $i; -// $itContactJ = $j; -// -// if (empty($contact_lastname) && empty($contact_firstname) && empty($user_lastname) && empty($user_firstname) && !empty($addressId)) { -// $query = 'SELECT ca.firstname, ca.lastname FROM contact_addresses ca WHERE ca.id = ?'; -// $arrayPDO = array($addressId); -// $stmt2 = $db->query($query, $arrayPDO); -// $return_contact = $stmt2->fetchObject(); -// -// if (!empty($return_contact)) { -// $contact_firstname = $return_contact->firstname; -// $contact_lastname = $return_contact->lastname; -// } -// } -// -// $tab[$i][$j]['label'] = _CONTACT; -// $tab[$i][$j]['size'] = '10'; -// $tab[$i][$j]['label_align'] = 'left'; -// $tab[$i][$j]['align'] = 'left'; -// $tab[$i][$j]['valign'] = 'bottom'; -// $tab[$i][$j]['show'] = false; -// $tab[$i][$j]['value_export'] = $tab[$i][$j]['value']; -// if (empty($contact_lastname) && empty($contact_firstname) && empty($user_lastname) && empty($user_firstname) && empty($contact_society)) { -// $tab[$i][$j]['value'] = '<i style="opacity:0.5;">'._UNDEFINED_DATA.'</i>'; -// } else { -// $tab[$i][$j]['value'] = $contact->get_contact_information_from_view($_SESSION['mlb_search_current_category_id'], $contact_lastname, $contact_firstname, $contact_society, $user_lastname, $user_firstname); -// } -// -// $tab[$i][$j]['order'] = false; -// } - - - // Contacts - if ($tab[$i][$j][$value] == 'real_dest') { - $resId = $tab[$i][$j]['value']; - $recipientList = \Contact\controllers\ContactController::getFormattedContacts(['resId' => $resId, 'mode' => 'recipient', 'onlyContact' => true]); - - $senderList = \Contact\controllers\ContactController::getFormattedContacts(['resId' => $resId, 'mode' => 'sender', 'onlyContact' => true]); - - $tab[$i][$j]['value'] = ''; - - $formattedRecipients = ''; - $formattedSenders = ''; - - if (!empty($senderList)) { - if (count($senderList) >= 2) { - $formattedSenders = count($senderList) . ' ' . _SENDERS - . ' <i class="fa fa-book fa-2x" style="cursor: pointer;" title="' - . _VIEW_CONTACTS.'"onclick="' - . "loadContactsList(".$resId.", 'sender');" - . '"></i>'; - } else { - $formattedSenders = implode("<br>", $senderList); - } - $formattedSenders = '<b>'._TO_CONTACT_C.'</b>'.$formattedSenders; - $tab[$i][$j]['value'] .= $formattedSenders; - - if (!empty($recipientList)) { - $tab[$i][$j]['value'] .= "<br>"; - } - } - if (!empty($recipientList)) { - if (count($recipientList) >= 2) { - $formattedRecipients = count($recipientList) . ' ' . _RECIPIENTS - . ' <i class="fa fa-book fa-2x" style="cursor: pointer;" title="' - . _VIEW_CONTACTS.'"onclick="' - . "loadContactsList(".$resId.", 'recipient');" - . '"></i>';; - } else { - $formattedRecipients = implode("<br>", $recipientList); - } - $formattedRecipients = '<b>'._FOR_CONTACT_C.'</b>'.$formattedRecipients; - $tab[$i][$j]['value'] .= $formattedRecipients; - } - - $tab[$i][$j]['order'] = false; - } - } - } - } - -$nbTab = $_SESSION['save_list']['full_count']; -if ($nbTab > 0) { - /************Construction de la liste*******************/ - //Clé de la liste - $listKey = 'res_id'; - - //Initialiser le tableau de paramètres - $paramsTab = array(); - $paramsTab['bool_modeReturn'] = false; //Desactivation du mode return (vs echo) - $paramsTab['listCss'] = 'listing largerList spec'; //css - $paramsTab['urlParameters'] = $urlParameters.'&dir=indexing_searching'; //Parametres supplémentaires - $paramsTab['pageTitle'] = _RESULTS.' : '.$nbTab.' '._FOUND_DOCS; //Titre de la page - $paramsTab['pagePicto'] = 'search'; //Image de la page - $paramsTab['bool_bigPageTitle'] = $bigPageTitle; //Titre de la page en grand - $paramsTab['bool_showIconDocument'] = true; //Affichage de l'icone du document - $paramsTab['bool_showIconDetails'] = $showIconDetails; //Affichage de l'icone de la page de details - $paramsTab['bool_showAttachment'] = true; //Affichage du nombre de document attaché (mode étendu) - if ($radioButton) { //Boutton radio - $paramsTab['bool_radioButton'] = $radioButton; - } - $paramsTab['defaultTemplate'] = $defaultTemplate; //Default template - if ($useTemplate && count($template_list) > 0) { //Templates - $paramsTab['templates'] = array(); - $paramsTab['templates'] = $template_list; - } - $paramsTab['bool_showTemplateDefaultList'] = true; //Default list (no template) - - //Form attributs - //Standalone form - $paramsTab['bool_standaloneForm'] = $standaloneForm; - //Method - if (isset($formMethod) && !empty($formMethod)) { - $paramsTab['formMethod'] = $formMethod; - } - //Action - if (isset($formAction) && !empty($formAction)) { - $paramsTab['formAction'] = $formAction; - } - //Hiden fields - if (isset($hiddenFormFields) && count($hiddenFormFields) > 0) { //Champs hidden supplémentaire | mots clés = id, name, value - $paramsTab['hiddenFormFields'] = array(); - $paramsTab['hiddenFormFields'] = $hiddenFormFields; - } - //Buttons - if (isset($buttons) && count($buttons) > 0) { //Liste des boutons de formulaire - $paramsTab['buttons'] = array(); - $paramsTab['buttons'] = $buttons; - } - $paramsTab['start'] = $_SESSION['save_list']['start']; - //Toolbar - $paramsTab['tools'] = array(); //Icones dans la barre d'outils - - if ($saveTool) { - $save = array( - 'script' => "createModal(form_txt);window.location.href='#top';", - 'icon' => 'save', - 'tooltip' => _SAVE_QUERY, - 'disabledRules' => $nbTab.' == 0', - ); - array_push($paramsTab['tools'], $save); - } - - if ($exportTool) { - $export = array( - 'script' => "window.open('".$_SESSION['config']['businessappurl']."index.php?display=true&page=export', '_blank');", - 'icon' => 'file-excel', - 'tooltip' => _EXPORT_LIST, - 'disabledRules' => $nbTab.' == 0', - ); - array_push($paramsTab['tools'], $export); - $export2 = array( - 'script' => "print_current_result_list('".$_SESSION['config']['businessappurl']."');", - 'icon' => 'print', - 'tooltip' => _PRINT_LIST, - 'disabledRules' => $nbTab.' == 0', - ); - array_push($paramsTab['tools'], $export2); - } - - if ($printTool) { - $resIdList = json_encode($resIdList); - $urlPrint = $_SESSION['config']['businessappurl'] . '../../rest/resourcesList/summarySheets?resources=' . $resIdList; - $print = array( -// 'script' => "window.open('".$_SESSION['config']['businessappurl']."index.php?display=true&page=print', '_blank');", - 'script' => "window.open('" . $urlPrint . "', '_blank');", - 'icon' => 'link', - 'tooltip' => _PRINT_DOC_FROM_LIST, - 'disabledRules' => $nbTab.' == 0', - ); - array_push($paramsTab['tools'], $print); - } - - //Afficher la liste - $list->showList($tab, $paramsTab, $listKey); - // $list->debug(); - - /*************************Extra javascript***********************/ ?> - <script type="text/javascript"> - var form_txt = '<form name="frm_save_query" id="frm_save_query" action="#" method="post" class="forms" onsubmit="send_request(this.id, <?php echo "\'creation\'"; ?>);" ><h2><?php - echo _SAVE_QUERY_TITLE; ?></h2><p><label for="query_name"><?php echo _QUERY_NAME; ?></label><input type="text" name="query_name" id="query_name" style="width:200px;" value=""/></p><br/><p class="buttons"><input type="submit" name="submit" id="submit" value="<?php - echo _VALIDATE; ?>" class="button"/> <input type="button" name="cancel" id="cancel" value="<?php echo _CANCEL; ?>" class="button" onclick="destroyModal();"/></p></form>'; - - function send_request(form_id, form_action) { - if (form_action == 'creation_ok') { - var q_name = form_id; - var q_creation = form_action; - $('modal').innerHTML = '<i class="fa fa-spinner fa-2x"></i>'; - - new Ajax.Request('<?php echo $_SESSION['config']['businessappurl']; ?>index.php?display=true&dir=indexing_searching&page=manage_query', { - method: 'post', - parameters: { - action: q_creation - }, - onSuccess: function(answer) { - eval("response = " + answer.responseText) - if (response.status == 0) { - $('modal').innerHTML = '<h2><?php echo _QUERY_SAVED; ?></h2><br/><input type="button" name="close" value="<?php echo _CLOSE_WINDOW; ?>" onclick="destroyModal();" class="button" />'; - } else if (response.status == 2) { - $('modal').innerHTML = '<div class="error"><?php echo _SQL_ERROR; ?></div>' + form_txt; - form.query_name.value = this.name; - } else if (response.status == 3) { - $('modal').innerHTML = '<div class="error"><?php echo _QUERY_NAME.' '._IS_EMPTY; ?></div>' + form_txt; - form.query_name.value = this.name; - } else { - $('modal').innerHTML = '<div class="error"><?php echo _SERVER_ERROR; ?></div>' + form_txt; - form.query_name.value = this.name; - } - }, - onFailure: function() { - $('modal').innerHTML = '<div class="error"><?php echo _SERVER_ERROR; ?></div>' + form_txt; - form.query_name.value = this.name; - } - }); - - - } - var form = $(form_id); - if (form) { - var q_name = form.query_name.value; - var q_creation = form_action; - $('modal').innerHTML = '<i class="fa fa-spinner fa-2x"></i>'; - - new Ajax.Request('<?php echo $_SESSION['config']['businessappurl']; ?>index.php?display=true&dir=indexing_searching&page=manage_query', { - method: 'post', - parameters: { - name: q_name, - action: q_creation - }, - onSuccess: function(answer) { - eval("response = " + answer.responseText) - if (response.status == 0) { - $('modal').innerHTML = '<h2><?php echo _QUERY_SAVED; ?></h2><br/><input type="button" name="close" value="<?php echo _CLOSE_WINDOW; ?>" onclick="destroyModal();" class="button" />'; - } else if (response.status == 2) { - $('modal').innerHTML = '<div class="error"><?php echo _SQL_ERROR; ?></div>' + form_txt; - form.query_name.value = this.name; - } else if (response.status == 3) { - $('modal').innerHTML = '<div class="error"><?php echo _QUERY_NAME.' '._IS_EMPTY; ?></div>' + form_txt; - form.query_name.value = this.name; - } else if (response.status == 4) { - $('modal').innerHTML = '<form name="frm_save_query" id="<?php echo $_SESSION['seekName']; ?>" action="#" method="post" class="forms" onsubmit="send_request(this.id, <?php echo "\'creation_ok\'"; ?>);" ><h2><?php - echo _SAVE_CONFIRM; ?></h2><p><b><?php echo _SAVED_ALREADY_EXIST; ?></b></p><p><?php echo _OK_FOR_CONFIRM; ?></p><br/><p class="buttons"><input type="submit" name="submit" id="submit" value="<?php - echo _VALIDATE; ?>" class="button"/> <input type="button" name="cancel" id="cancel" value="<?php echo _CANCEL; ?>" class="button" onclick="destroyModal();"/></p></form>'; - } else { - $('modal').innerHTML = '<div class="error"><?php echo _SERVER_ERROR; ?></div>' + form_txt; - form.query_name.value = this.name; - } - }, - onFailure: function() { - $('modal').innerHTML = '<div class="error"><?php echo _SERVER_ERROR; ?></div>' + form_txt; - form.query_name.value = this.name; - } - }); - } - } - </script> - <?php - exit(); -} else { - echo '<script type="text/javascript">window.top.location.href=\''.$url_error.'\';</script>'; - exit(); -} - -if ($mode == 'popup' || $mode == 'frame') { - echo '</div>'; - echo '</div>'; - echo '</body>'; -} diff --git a/apps/maarch_entreprise/indexing_searching/list_results_mlb.php b/apps/maarch_entreprise/indexing_searching/list_results_mlb.php deleted file mode 100755 index 26b40feac3f5da2312f85593416a06848a677dbc..0000000000000000000000000000000000000000 --- a/apps/maarch_entreprise/indexing_searching/list_results_mlb.php +++ /dev/null @@ -1,126 +0,0 @@ -<?php -/* -* -* Copyright 2008,2012 Maarch -* -* This file is part of Maarch Framework. -* -* Maarch Framework 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. -* -* Maarch Framework 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 Maarch Framework. If not, see <http://www.gnu.org/licenses/>. -*/ - -/** -* @brief Displays document list in search mode -* -* @file -* @author Yves Christian Kpakpo <dev@maarch.org> -* @date $date$ -* @version $Revision$ -* @ingroup basket -*/ - -require_once "apps".DIRECTORY_SEPARATOR.$_SESSION['config']['app_id'].DIRECTORY_SEPARATOR - ."class".DIRECTORY_SEPARATOR."class_lists.php"; - -$core_tools = new core_tools(); -$list = new lists(); - -//reset session current_basket clause -$_SESSION['current_basket']['clause']=''; - -//Parameters -$urlParameters = ''; - //Mode - $mode = 'normal'; - if(isset($_REQUEST['mode'])&& !empty($_REQUEST['mode'])) - { - $mode = $core_tools->wash($_REQUEST['mode'], "alphanum", _MODE); - - } - $urlParameters .= '&mode='.$mode; - - //No details - if(isset($_REQUEST['nodetails'])) { - $urlParameters .= '&nodetails'; - } - - //module - if(isset($_REQUEST['modulename'])) { - $urlParameters .= '&modulename='.$_REQUEST['modulename']; - } - - //Form - if(isset($_REQUEST['action_form'])) { - $urlParameters .= '&action_form='.$_REQUEST['action_form']; - } - - if($_SESSION['save_list']['fromDetail'] == "true") { - $urlParameters .= '&start='.$_SESSION['save_list']['start']; - $urlParameters .= '&lines='.$_SESSION['save_list']['lines']; - $urlParameters .= '&order='.$_SESSION['save_list']['order']; - $urlParameters .= '&order_field='.$_SESSION['save_list']['order_field']; - if ($_SESSION['save_list']['template'] <> "") { - $urlParameters .= '&template='.$_SESSION['save_list']['template']; - } - $_SESSION['save_list']['fromDetail'] = "false"; - $_SESSION['save_list']['url'] = $urlParameters; - } - $_SESSION['save_list']['start'] = 0; - $_SESSION['save_list']['lines'] = ""; - $_SESSION['save_list']['order'] = ""; - $_SESSION['save_list']['order_field'] = ""; - $_SESSION['save_list']['template'] = ""; - -//Begin -if($mode == 'normal') { - /****************Management of the location bar ************/ - $init = false; - if(isset($_REQUEST['reinit']) && $_REQUEST['reinit'] == "true") - { - $init = true; - } - $level = ""; - if(isset($_REQUEST['level']) && ($_REQUEST['level'] == 2 || $_REQUEST['level'] == 3 || $_REQUEST['level'] == 4 || $_REQUEST['level'] == 1)) - { - $level = $_REQUEST['level']; - } - $page_path = $_SESSION['config']['businessappurl'].'index.php?page=list_results_mlb&dir=indexing_searching'; - $page_label = _RESULTS; - $page_id = "search_adv_result_mlb"; - $core_tools->manage_location_bar($page_path, $page_label, $page_id, $init, $level); - /***********************************************************/ - - $saveTool = true; - $useTemplate = true; - $exportTool = true; - -} else { - $core_tools->load_html(); - $core_tools->load_header('', true, false); - $time = $core_tools->get_session_time_expire(); - ?> - <body> - <div id="container"> - <?php - $core_tools->load_js(); -} - -//List -$target = $_SESSION['config']['businessappurl'].'index.php?page=documents_list_mlb_search_adv&dir=indexing_searching'.$urlParameters; -$listContent = $list->loadList($target, true, 'divList', 'false'); -echo '<br /><br />'.$listContent; - -if($mode == 'popup' || $mode == 'frame') -{ - echo '</div></body></html>'; -} \ No newline at end of file diff --git a/apps/maarch_entreprise/indexing_searching/search_adv.php b/apps/maarch_entreprise/indexing_searching/search_adv.php deleted file mode 100755 index 4e4a21d62617a622f0493f8248d98339293b06c5..0000000000000000000000000000000000000000 --- a/apps/maarch_entreprise/indexing_searching/search_adv.php +++ /dev/null @@ -1,716 +0,0 @@ -<?php -/* -* Copyright 2008,2009 Maarch -* -* This file is part of Maarch Framework. -* -* Maarch Framework 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. -* -* Maarch Framework 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 Maarch Framework. If not, see <http://www.gnu.org/licenses/>. -*/ - -/** - * @brief Advanced search form - * - * @file search_adv.php - * - * @author Claire Figueras <dev@maarch.org> - * @author Loïc Vinet <dev@maarch.org> - * @date $date$ - * - * @version $Revision$ - * @ingroup indexing_searching_mlb - */ -require_once 'core'.DIRECTORY_SEPARATOR.'class'.DIRECTORY_SEPARATOR.'class_request.php'; -require_once 'core'.DIRECTORY_SEPARATOR.'class'.DIRECTORY_SEPARATOR.'class_security.php'; -require_once 'core'.DIRECTORY_SEPARATOR.'class'.DIRECTORY_SEPARATOR.'class_manage_status.php'; -require_once 'core'.DIRECTORY_SEPARATOR.'class'.DIRECTORY_SEPARATOR.'usergroups_controler.php'; -require_once 'apps'.DIRECTORY_SEPARATOR.$_SESSION['config']['app_id'].DIRECTORY_SEPARATOR.'class'.DIRECTORY_SEPARATOR.'class_indexing_searching_app.php'; -$core_tools = new core_tools(); -$core_tools->test_user(); -$core_tools->load_lang(); - -$_SESSION['search']['plain_text'] = ''; -$_SESSION['fromContactCheck'] = ''; - -if (isset($_REQUEST['fromValidateMail'])) { - $_SESSION['fromValidateMail'] = 'ok'; -} else { - $_SESSION['fromValidateMail'] = ''; -} - -$func = new functions(); -$conn = new Database(); - -$search_obj = new indexing_searching_app(); -$status_obj = new manage_status(); -$sec = new security(); -$_SESSION['indexation'] = false; - -if (isset($_REQUEST['exclude'])) { - $_SESSION['excludeId'] = $_REQUEST['exclude']; -} - -$mode = 'normal'; -if (isset($_REQUEST['mode']) && !empty($_REQUEST['mode'])) { - $mode = $func->wash($_REQUEST['mode'], 'alphanum', _MODE); -} -if ($mode == 'normal') { - $core_tools->test_service('adv_search_mlb', 'apps'); - /****************Management of the location bar ************/ - $init = false; - if (isset($_REQUEST['reinit']) && $_REQUEST['reinit'] == 'true') { - $init = true; - $_SESSION['current_search_query'] = ''; - } - $level = ''; - if (isset($_REQUEST['level']) && ($_REQUEST['level'] == 2 || $_REQUEST['level'] == 3 || $_REQUEST['level'] == 4 || $_REQUEST['level'] == 1)) { - $level = $_REQUEST['level']; - } - $page_path = $_SESSION['config']['businessappurl'].'index.php?page=search_adv&dir=indexing_searching'; - $page_label = _SEARCH_ADV_SHORT; - $page_id = 'search_adv_mlb'; - $core_tools->manage_location_bar($page_path, $page_label, $page_id, $init, $level); -/***********************************************************/ -} elseif ($mode == 'popup' || $mode == 'frame') { - $core_tools->load_html(); - $core_tools->load_header('', true, false); - $core_tools->load_js(); - $time = $core_tools->get_session_time_expire(); - $_SESSION['stockCheckbox'] = ''; ?> - -<body> - <div id="container" style="height:auto;"> - - <div class="error" id="main_error"> - <?php functions::xecho($_SESSION['error']); ?> - </div> - <div class="info" id="main_info"> - <?php functions::xecho($_SESSION['info']); ?> - </div> - <?php -} - -// load saved queries for the current user in an array -$stmt = $conn->query('SELECT query_id, query_name FROM '.$_SESSION['tablename']['saved_queries'].' WHERE user_id = ? order by query_name', array($_SESSION['user']['UserId'])); -$queries = array(); -while ($res = $stmt->fetchObject()) { - array_push($queries, array('ID' => $res->query_id, 'LABEL' => $res->query_name)); -} - -$stmt = $conn->query('SELECT user_id, firstname, lastname, status FROM '.$_SESSION['tablename']['users']." WHERE status != 'SPD' and status != 'DEL' order by lastname asc"); -$users_list = array(); -while ($res = $stmt->fetchObject()) { - array_push($users_list, array('ID' => functions::show_string($res->user_id), 'NOM' => functions::show_string($res->lastname), 'PRENOM' => functions::show_string($res->firstname), 'STATUT' => $res->status)); -} - -$coll_id = 'letterbox_coll'; -$view = $sec->retrieve_view_from_coll_id($coll_id); -$where = $sec->get_where_clause_from_coll_id($coll_id); -if (!empty($where)) { - $where = ' where '.$where; -} - -$browser_ie = 'false'; -$class_for_form = 'forms'; -$hr = ''; -$size = ''; - -// building of the parameters array used to pre-load the category list and the search elements -$param = array(); - -// Custom fields -$customFields = \CustomField\models\CustomFieldModel::get(['where' => ['type != ?'], 'data' => ['banAutocomplete'], 'orderBy' => ['label']]); -foreach ($customFields as $customField) { - $field = 'indexingCustomField_'.$customField['id']; - - if (in_array($customField['type'], ['select', 'radio', 'checkbox'])) { - $arr_tmp = array(); - array_push($arr_tmp, array('VALUE' => '', 'LABEL' => _CHOOSE.'...')); - $customValues = json_decode($customField['values'], true); - if (!empty($customValues['table'])) { - $customValues = \CustomField\models\CustomFieldModel::getValuesSQL($customValues); - foreach ($customValues as $customInfo) { - array_push($arr_tmp, array('VALUE' => $customInfo['key'], 'LABEL' => $customInfo['label'])); - } - } else { - foreach ($customValues as $customValue) { - array_push($arr_tmp, array('VALUE' => $customValue, 'LABEL' => $customValue)); - } - } - $arr_tmp2 = array('label' => $customField['label'], 'type' => 'select_simple', 'param' => array('field_label' => $customField['label'], 'default_label' => '', 'options' => $arr_tmp)); - } elseif ($customField['type'] == 'date') { - $arr_tmp2 = array('label' => $customField['label'], 'type' => 'date_range', 'param' => array('field_label' => $customField['label'], 'id1' => $field.'_from', 'id2' => $field.'_to')); - } elseif ($customField['type'] == 'string') { - $arr_tmp2 = array('label' => $customField['label'], 'type' => 'input_text', 'param' => array('field_label' => $customField['label'], 'other' => '')); - } else { // integer - $arr_tmp2 = array('label' => $customField['label'], 'type' => 'num_range', 'param' => array('field_label' => $customField['label'], 'id1' => $field.'_min', 'id2' => $field.'_max')); - } - $param[$field] = $arr_tmp2; -} - -//Coming date -$arr_tmp2 = array('label' => _DATE_START, 'type' => 'date_range', 'param' => array('field_label' => _DATE_START, 'id1' => 'admission_date_from', 'id2' => 'admission_date_to')); -$param['admission_date'] = $arr_tmp2; - -//Loaded date -$arr_tmp2 = array('label' => _REG_DATE, 'type' => 'date_range', 'param' => array('field_label' => _REG_DATE, 'id1' => 'creation_date_from', 'id2' => 'creation_date_to')); -$param['creation_date'] = $arr_tmp2; - -//Closing date -$arr_tmp2 = array('label' => _CLOSING_DATE, 'type' => 'date_range', 'param' => array('field_label' => _CLOSING_DATE, 'id1' => 'closing_date_from', 'id2' => 'closing_date_to')); -$param['closing_date'] = $arr_tmp2; - -//Departure date -$arr_tmp2 = array('label' => _EXP_DATE, 'type' => 'date_range', 'param' => array('field_label' => _EXP_DATE, 'id1' => 'exp_date_from', 'id2' =>'exp_date_to')); -$param['exp_date'] = $arr_tmp2; - -//Document date -$arr_tmp2 = array('label' => _DOC_DATE, 'type' => 'date_range', 'param' => array('field_label' => _DOC_DATE, 'id1' => 'doc_date_from', 'id2' => 'doc_date_to')); -$param['doc_date'] = $arr_tmp2; - -//Process limit date -$arr_tmp2 = array('label' => _LIMIT_DATE_PROCESS, 'type' => 'date_range', 'param' => array('field_label' => _LIMIT_DATE_PROCESS, 'id1' => 'process_limit_date_from', 'id2' => 'process_limit_date_to')); -$param['process_limit_date'] = $arr_tmp2; - -//Creation date pj -$arr_tmp2 = array('label' => '('._PJ.') '._CREATION_DATE, 'type' => 'date_range', 'param' => array('field_label' => '('._PJ.') '._CREATION_DATE, 'id1' => 'creation_date_pj_from', 'id2' => 'creation_date_pj_to')); -$param['creation_date_pj'] = $arr_tmp2; - -//destinataire -$arr_tmp = array(); -for ($i = 0; $i < count($users_list); ++$i) { - array_push($arr_tmp, array('VALUE' => $users_list[$i]['ID'], 'LABEL' => $users_list[$i]['NOM'].' '.$users_list[$i]['PRENOM'])); -} -$arr_tmp2 = array('label' => _ASSIGNEE . ' / ' . _REDACTOR, 'type' => 'select_multiple', 'param' => array('field_label' => _ASSIGNEE . ' / ' . _REDACTOR, 'label_title' => _CHOOSE_RECIPIENT_SEARCH_TITLE, -'id' => 'destinataire', 'options' => $arr_tmp, )); -$param['destinataire'] = $arr_tmp2; - -//priority -$arr_tmp = array(); -foreach (array_keys($_SESSION['mail_priorities']) as $priority) { - array_push($arr_tmp, array('VALUE' => $_SESSION['mail_priorities_id'][$priority], 'LABEL' => $_SESSION['mail_priorities'][$priority])); -} -$arr_tmp2 = array('label' => _PRIORITY, 'type' => 'select_multiple', 'param' => array('field_label' => _MAIL_PRIORITY, 'default_label' => addslashes(_CHOOSE_PRIORITY), 'id' => 'priority','options' => $arr_tmp, 'label_title' => _CHOOSE_PRIORITY)); -$param['priority'] = $arr_tmp2; - -//Type de pièce jointe -$arr_tmp = array(); -foreach (array_keys($_SESSION['attachment_types']) as $attachment_types) { - array_push($arr_tmp, array('VALUE' => $attachment_types, 'LABEL' => $_SESSION['attachment_types'][$attachment_types])); -} -$arr_tmp2 = array('label' => '('._PJ.') '._ATTACHMENT_TYPES, 'type' => 'select_simple', 'param' => array('field_label' => '('._PJ.') '._ATTACHMENT_TYPES, 'default_label' => addslashes(_CHOOSE_ATTACHMENT_TYPE), 'options' => $arr_tmp)); -$param['attachment_types'] = $arr_tmp2; - -// dest -/*$arr_tmp2 = array('label' => _DEST, 'type' => 'input_text', 'param' => array('field_label' => _DEST, 'other' => $size)); -$param['dest'] = $arr_tmp2; - -//shipper -$arr_tmp2 = array('label' => _SHIPPER, 'type' => 'input_text', 'param' => array('field_label' => _SHIPPER, 'other' => $size)); -$param['shipper'] = $arr_tmp2; -*/ -if ($_SESSION['features']['search_notes'] == 'true') { - //annotations - $arr_tmp2 = array('label' => _NOTES, 'type' => 'textarea', 'param' => array('field_label' => _NOTES, 'other' => $size)); - $param['doc_notes'] = $arr_tmp2; -} - -//tags -if ($core_tools->is_module_loaded('tags')) { - $arr_tmptag = array(); - require_once 'modules/tags/class/TagControler.php'; - require_once 'modules/tags/tags_tables_definition.php'; - $tag = new tag_controler(); - $tag_return_value = $tag->get_all_tags($coll_id); - - if ($tag_return_value) { - foreach ($tag_return_value as $tagelem) { - array_push($arr_tmptag, array('VALUE' => functions::protect_string_db($tagelem['tag_id']), 'LABEL' => $tagelem['tag_label'])); - } - } else { - array_push($arr_tmptag, array('VALUE' => '', 'LABEL' => _TAGNONE)); - } - $param['tag_mu'] = array('label' => _TAG_SEARCH, 'type' => 'select_multiple', 'param' => array('field_label' => _TAG_SEARCH, 'label_title' => _CHOOSE_TAG, - 'id' => 'tags', 'options' => $arr_tmptag, )); -} - -//destination (department) -if ($core_tools->is_module_loaded('entities')) { - $where = $sec->get_where_clause_from_coll_id($coll_id); - $table = $sec->retrieve_view_from_coll_id($coll_id); - if (empty($table)) { - $table = $sec->retrieve_table_from_coll($coll_id); - } - if (!empty($where)) { - $where = ' where '.$where; - } - - $stmt = $conn->query('SELECT DISTINCT '.$table.'.destination, e.short_label FROM '.$table.' join '.$_SESSION['tablename']['ent_entities'].' e on e.entity_id = '.$table.'.destination - '.$where.' group by e.short_label, '.$table.'.destination order by e.short_label'); - - $arr_tmp = array(); - while ($res = $stmt->fetchObject()) { - array_push($arr_tmp, array('VALUE' => $res->destination, 'LABEL' => $res->short_label)); - } - - $param['destination_mu'] = array('label' => _DESTINATION_SEARCH, 'type' => 'select_multiple', 'param' => array('field_label' => _DESTINATION_SEARCH, 'label_title' => _CHOOSE_ENTITES_SEARCH_TITLE, - 'id' => 'services', 'options' => $arr_tmp, )); - //Initiator - $stmt = $conn->query("SELECT DISTINCT ".$table.".initiator, e.short_label FROM ".$table." join ".$_SESSION['tablename']['ent_entities']." e on e.entity_id = ".$table.".initiator - ".$where." group by e.short_label, ".$table.".initiator order by e.short_label"); - - $arr_tmp = array(); - while ($res = $stmt->fetchObject()) { - array_push($arr_tmp, array('VALUE' => $res->initiator, 'LABEL' => $res->short_label)); - } - - $param['initiator_mu'] = array('label' => _INITIATORS, 'type' => 'select_multiple', 'param' => array('field_label' => _INITIATORS, 'label_title' => _CHOOSE_ENTITES_SEARCH_TITLE, - 'id' => 'initiatorServices', 'options' => $arr_tmp, )); -} - -// Folder -$arr_tmp2 = array('label' => _PROJECT, 'type' => 'input_text', 'param' => array('field_label' => _PROJECT, 'other' => $size)); -$param['folder'] = $arr_tmp2; - -// Department number -$arr_tmp = array(); -foreach (\Resource\controllers\DepartmentController::FRENCH_DEPARTMENTS as $key => $value) { - array_push($arr_tmp, array('VALUE' => $key, 'LABEL' => $key . " - " . $value)); -} - -$param['department_number_mu'] = array('label' => _DEPARTMENT_NUMBER, 'type' => 'select_multiple', 'param' => array('field_label' => _DEPARTMENT_NUMBER, 'label_title' => _CHOOSE_DEPARTMENT_NUMBER, -'id' => 'department_number','options' => $arr_tmp)); - -// GED Number -$arr_tmp2 = array('label' => _N_GED, 'type' => 'input_text', 'param' => array('field_label' => _N_GED, 'other' => $size)); -$param['numged'] = $arr_tmp2; - -//status -$status = $status_obj->get_searchable_status(); -$arr_tmp = array(); -for ($i = 0; $i < count($status); ++$i) { - array_push($arr_tmp, array('VALUE' => $status[$i]['ID'], 'LABEL' => $status[$i]['LABEL'])); -} - -/* TO DO : bug a corriger, ne prendre pas en compte les autres statuts selectionnes */ -/*array_push($arr_tmp, array('VALUE'=> 'REL1', 'LABEL' =>_FIRST_WARNING)); -array_push($arr_tmp, array('VALUE'=> 'REL2', 'LABEL' =>_SECOND_WARNING)); -array_push($arr_tmp, array('VALUE'=> 'LATE', 'LABEL' =>_LATE));*/ - -// Sorts the $param['status'] array -function cmp_status($a, $b) -{ - return strcmp(strtolower($a['LABEL']), strtolower($b['LABEL'])); -} -usort($arr_tmp, 'cmp_status'); -$arr_tmp2 = array('label' => _STATUS_PLUR, 'type' => 'select_multiple', 'param' => array('field_label' => _STATUS, 'label_title' => _CHOOSE_STATUS_SEARCH_TITLE, 'id' => 'status', 'options' => $arr_tmp)); -$param['status'] = $arr_tmp2; - -//confidentifality -$arr_tmp = array(); -array_push($arr_tmp, array('VALUE' => 'Y', 'LABEL' => _YES)); -array_push($arr_tmp, array('VALUE' => 'N', 'LABEL' => _NO)); -$arr_tmp2 = array('label' => _CONFIDENTIALITY, 'type' => 'select_simple', 'param' => array('field_label' => _CONFIDENTIALITY, 'id' => 'confidentiality', 'options' => $arr_tmp)); -$param['confidentiality'] = $arr_tmp2; - -//doc_type -$stmt = $conn->query( - 'SELECT type_id, description FROM ' - .$_SESSION['tablename']['doctypes']." WHERE enabled = 'Y' order by description asc", [] -); -$arr_tmp = array(); -while ($res = $stmt->fetchObject()) { - array_push($arr_tmp, array('VALUE' => $res->type_id, 'LABEL' => functions::show_string($res->description))); -} -$arr_tmp2 = array('label' => _DOCTYPES_MAIL, 'type' => 'select_multiple', 'param' => array('field_label' => _DOCTYPES_MAIL, 'label_title' => _CHOOSE_DOCTYPES_MAIL_SEARCH_TITLE, 'id' => 'doctypes', 'options' => $arr_tmp)); -$param['doctype'] = $arr_tmp2; - -//category -$arr_tmp = array(); -array_push($arr_tmp, array('VALUE' => '', 'LABEL' => _CHOOSE_CATEGORY)); -foreach (array_keys($_SESSION['coll_categories']['letterbox_coll']) as $cat_id) { - if ($cat_id != 'default_category') { - array_push( - $arr_tmp, - array( - 'VALUE' => $cat_id, - 'LABEL' => $_SESSION['coll_categories']['letterbox_coll'][$cat_id], - ) - ); - } -} -$arr_tmp2 = array('label' => _CATEGORY, 'type' => 'select_simple', 'param' => array('field_label' => _CATEGORY, 'default_label' => '', 'options' => $arr_tmp)); -$param['category'] = $arr_tmp2; - -$usergroups_controler = new usergroups_controler(); -$array_groups = $usergroups_controler->getAllUsergroups('', false); - -//signatory group -$arr_tmp = array(); -for ($iGroups = 0; $iGroups < count($array_groups); ++$iGroups) { - array_push($arr_tmp, array('VALUE' => $array_groups[$iGroups]->group_id, 'LABEL' => $array_groups[$iGroups]->group_desc)); -} -$arr_tmp2 = array('label' => _SIGNATORY_GROUP, 'type' => 'select_simple', 'param' => array('field_label' => _SIGNATORY_GROUP, 'default_label' => addslashes(_CHOOSE_GROUP), 'options' => $arr_tmp)); -$param['signatory_group'] = $arr_tmp2; - -//Visa user -$arr_tmp2 = array('label' => _VISA_USER_SEARCH_MIN, 'type' => 'input_text', 'param' => array('field_label' => _VISA_USER_SEARCH_MIN, 'other' => $size, 'autocompletion' => true)); -$param['visa_user'] = $arr_tmp2; - -// Sorts the param array -function cmp($a, $b) -{ - return strcmp(strtolower($a['label']), strtolower($b['label'])); -} -uasort($param, 'cmp'); - -$tab = $search_obj->send_criteria_data($param); - -// criteria list options -$src_tab = $tab[0]; - -//$core_tools->show_array($param); -?> -<script type="text/javascript" src="<?php echo $_SESSION['config']['businessappurl']; ?>static.php?filename=search_adv.js" ></script> -<script type="text/javascript"> -<!-- -var valeurs = { <?php echo $tab[1]; ?>}; -var loaded_query = <?php if (isset($_SESSION['current_search_query']) && !empty($_SESSION['current_search_query'])) { - echo $_SESSION['current_search_query']; -} else { - echo '{}'; -}?>; - -function del_query_confirm() -{ - if(confirm('<?php echo _REALLY_DELETE.' '._THIS_SEARCH.'?'; ?>')) - { - del_query_db($('query').options[$('query').selectedIndex], 'select_criteria', 'frmsearch2', '<?php echo _SQL_ERROR; ?>', '<?php echo _SERVER_ERROR; ?>', '<?php echo $_SESSION['config']['businessappurl'].'index.php?display=true&dir=indexing_searching&page=manage_query'; ?>'); - return false; - } -} ---> -</script> -<?php if ($_GET['mode'] != 'popup') { - ?> -<h1> - <i class="fa fa-search fa-2x"></i> <?php echo _ADV_SEARCH_MLB; ?> -</h1> -<?php -} ?> -<div id="inner_content"> - -<?php if (count($queries) > 0) { - ?> -<form name="choose_query" id="choose_query" action="#" method="post" > -<div align="center" style="display:block;" id="div_query"> - -<label for="query"><?php echo _MY_SEARCHES; ?> : </label> -<select name="query" id="query" onchange="load_query_db(this.options[this.selectedIndex].value, 'select_criteria', 'parameters_tab', '<?php echo _SQL_ERROR; ?>', '<?php echo _SERVER_ERROR; ?>', '<?php echo $_SESSION['config']['businessappurl'].'index.php?display=true&dir=indexing_searching&page=manage_query'; ?>');return false;" > - <option id="default_query" value=""><?php echo _CHOOSE_SEARCH; ?></option> - <?php for ($i = 0; $i < count($queries); ++$i) { - ?><option value="<?php functions::xecho($queries[$i]['ID']); ?>" id="query_<?php functions::xecho($queries[$i]['ID']); ?>"><?php functions::xecho($queries[$i]['LABEL']); ?></option><?php - } ?> -</select> - -<input name="del_query" id="del_query" value="<?php echo _DELETE_QUERY; ?>" type="button" onclick="del_query_confirm();" class="button" style="display:none" /> -</div> -</form> -<?php - } ?> -<form name="frmsearch2" method="post" action="<?php - if ($mode == 'normal') { - //echo $_SESSION['config']['businessappurl'] . 'index.php'; - echo $_SESSION['config']['businessappurl'] - .'index.php?display=true&dir=indexing_searching&page=search_adv_result'; - } elseif ($mode == 'frame' || $mode == 'popup') { - echo $_SESSION['config']['businessappurl'] - .'index.php?display=true&dir=indexing_searching&page=search_adv_result'; - }?>" id="frmsearch2" class="<?php functions::xecho($class_for_form); ?>"> -<input type="hidden" name="dir" value="indexing_searching" /> - <input type="hidden" name="page" value="search_adv_result" /> -<input type="hidden" name="mode" value="<?php functions::xecho($mode); ?>" /> -<?php if ($mode == 'frame' || $mode == 'popup') { - ?> - <input type="hidden" name="display" value="true" /> - <input type="hidden" name="action_form" value="<?php functions::xecho($_REQUEST['action_form']); ?>" /> - <input type="hidden" name="modulename" value="<?php functions::xecho($_REQUEST['modulename']); ?>" /> -<?php - } -if (isset($_REQUEST['nodetails'])) { - ?> -<input type="hidden" name="nodetails" value="true" /> -<?php -}?> -<table align="center" border="0" width="100%"> - <tr> - <td> - <a href="#" onclick="clear_search_form('frmsearch2','select_criteria');clear_q_list();erase_contact_external_id('recipient', 'recipient_id');erase_contact_external_id('recipient', 'recipient_type');erase_contact_external_id('sender', 'sender_id');erase_contact_external_id('sender', 'sender_type');erase_contact_external_id('signatory_name', 'ac_signatory_name');"> - <i class="fa fa-sync fa-4x" title="<?php echo _CLEAR_SEARCH; ?>"></i> - </a> - </td> - <td align="right"> - <span style="display:none;"> - <input name="imageField" type="submit" value="" onclick="valid_search_form('frmsearch2');this.form.submit();" /> - </span> - <a href="#" onclick="valid_search_form('frmsearch2');$('frmsearch2').submit();"> - <i class="fa fa-search fa-4x" title="<?php echo _SEARCH; ?>"></i> - </a> - </td> - </tr> -</table> -<table align="center" border="0" width="100%"> - <tr> - <td> -<?php -if ($core_tools->is_module_loaded('basket') == true) { - ?> - <div class="block"> - <h2><?php echo _SEARCH_SCOPE; ?> - </h2> - - <div class="adv_search_field_content"> - <div class="adv_search_field"> - <label for="baskets_clause" class="bold"><?php echo _SPREAD_SEARCH_TO_BASKETS; ?> : </label> - </div> - <div class="adv_search_field"> - <input type="hidden" name="meta[]" value="baskets_clause#baskets_clause#select_simple" /> - <select name="baskets_clause" id="baskets_clause"> - <option id="true" value="true"><?php echo _ALL_BASKETS; ?> - </option> - <?php - $aSearchBasket = []; - if ($_REQUEST['mode'] != 'popup') { - for ($i = 0; $i < count($_SESSION['user']['baskets']); ++$i) { - if ($_SESSION['user']['baskets'][$i]['coll_id'] == $coll_id - && $_SESSION['user']['baskets'][$i]['id'] != 'EmailsToQualify' - && $_SESSION['user']['baskets'][$i]['id'] != 'InitBasket' - && $_SESSION['user']['baskets'][$i]['id'] != 'RetourCourrier' - && $_SESSION['user']['baskets'][$i]['id'] != 'QualificationBasket' - && empty($aSearchBasket[$_SESSION['user']['baskets'][$i]['id']])) { - ?> - <option id="<?php echo functions::xecho($_SESSION['user']['baskets'][$i]['id']); ?>" value="<?php echo functions::xecho($_SESSION['user']['baskets'][$i]['id']); ?>">[<?php echo _BASKET; ?>] <?php echo functions::xecho($_SESSION['user']['baskets'][$i]['name']); ?> - </option>'; - <?php - $aSearchBasket[$_SESSION['user']['baskets'][$i]['id']] = true; - } - } - } ?> - </select> - </div> - <div class="adv_search_field"> - <em><?php echo _SEARCH_SCOPE_HELP; ?></em> - </div> - </div> - </div> - <?php - } -?> -</td> -</tr> -</table> -<table align="center" border="0" width="100%"> - <tr> - <td colspan="2" ></td> - </tr> - <tr > - <td > - <div class="block"> - <h2><?php echo _LETTER_INFO; ?></h2> - <div class="adv_search_field_content"> - <div class="adv_search_field"> - <label for="subject" class="bold" ><?php echo _MAIL_OBJECT; ?></label> - </div> - <div class="adv_search_field"> - <input type="text" name="subject" id="subject" <?php functions::xecho($size); ?> /> - <input type="hidden" name="meta[]" value="subject#subject#input_text" /><span class="green_asterisk"><i class="fa fa-star"></i></span> - </div> - <div class="adv_search_field"> - <em><?php echo _MAIL_OBJECT_HELP; ?></em> - </div> - </div> - <div class="adv_search_field_content"> - <div class="adv_search_field"> - <label for="chrono" class="bold"><?php echo _CHRONO_NUMBER;?></label> - </div> - <div class="adv_search_field"> - <input type="text" name="chrono" id="chrono" <?php functions::xecho($size); ?> /> - <input type="hidden" name="meta[]" value="chrono#chrono#input_text" /><span class="green_asterisk"><i class="fa fa-star"></i></span> - </div> - <div class="adv_search_field"> - <em><?php echo _CHRONO_NUMBER_HELP; ?></em> - </div> - </div> - <div class="adv_search_field_content"> - <div class="adv_search_field"> - <label for="barcode" class="bold"><?php echo _BARCODE;?></label> - </div> - <div class="adv_search_field"> - <input type="text" name="barcode" id="barcode" <?php echo $size; ?> /> - <input type="hidden" name="meta[]" value="barcode#barcode#input_text" /> - </div> - <div class="adv_search_field"> - <em><?php echo _BARCODE_HELP; ?></em> - </div> - </div> - <div class="adv_search_field_content"> - <div class="adv_search_field"> - <label for="sender" class="bold"><?php echo _SENDER; ?></label> - </div> - <div class="adv_search_field indexing_field"> - <span style="position:relative;"> - <div class="typeahead__container"><div class="typeahead__field"> - <span class="typeahead__query"> - <input name="sender" type="text" id="sender" autocomplete="off" placeholder="<?php echo _CONTACTS_USERS_SEARCH; ?>" title="<?php echo _CONTACTS_USERS_SEARCH; ?>"/> - <input type="hidden" name="meta[]" value="sender#sender#input_text" /> - </span> - </div></div> - </span> - <script type="text/javascript"> - initSenderRecipientAutocomplete('sender','contactsUsers', true); - </script> - <input type="hidden" name="sender_id" id="sender_id" /> - <input type="hidden" name="sender_type" id="sender_type" /> - </div> - <div class="adv_search_field"> - - </div> - </div> - <div class="adv_search_field_content"> - <div class="adv_search_field"> - <label for="recipient" class="bold"><?php echo _DEST; ?></label> - </div> - <div class="adv_search_field indexing_field"> - <span style="position:relative;"> - <div class="typeahead__container"><div class="typeahead__field"> - <span class="typeahead__query"> - <input name="recipient" type="text" id="recipient" autocomplete="off" placeholder="<?php echo _CONTACTS_USERS_SEARCH; ?>" title="<?php echo _CONTACTS_USERS_SEARCH; ?>"/> - <span class="green_asterisk" style="position: absolute;right: -10px;top: 0px;"><i class="fa fa-star"></i></span> - <input type="hidden" name="meta[]" value="recipient#recipient#input_text" /> - </span> - </div></div> - </span> - <script type="text/javascript"> - initSenderRecipientAutocomplete('recipient', 'contactsUsers', true); - </script> - <input type="hidden" name="recipient_id" id="recipient_id" /> - <input type="hidden" name="recipient_type" id="recipient_type" /> - </div> - <div class="adv_search_field"> - - </div> - </div> - <div class="adv_search_field_content"> - <div class="adv_search_field"> - <label for="signatory_name" class="bold"><?php echo _SIGNATORY_NAME;?></label> - </div> - <div class="adv_search_field"> - <input type="text" name="signatory_name" id="signatory_name" onkeyup="erase_contact_external_id('signatory_name', 'ac_signatory_name');"/> - <input type="hidden" name="meta[]" value="signatory_name#signatory_name#input_text" /> - <div id="signatoryNameList" class="autocomplete"></div> - <script type="text/javascript"> - initList_hidden_input('signatory_name', 'signatoryNameList', '<?php - echo $_SESSION['config']['businessappurl'];?>index.php?display=true&dir=indexing_searching&page=users_list_by_name_search', 'what', '2', 'ac_signatory_name'); - </script> - <input id="ac_signatory_name" name="ac_signatory_name" type="hidden" /> - </div> - <div class="adv_search_field"> - - </div> - </div> - <div class="adv_search_field_content"> - <div class="adv_search_field"> - <label for="fulltext" class="bold" ><?php echo _FULLTEXT; ?></label> - </div> - <div class="adv_search_field"> - <input type="text" name="fulltext" id="fulltext" <?php functions::xecho($size); ?> /> - <input type="hidden" name="meta[]" value="fulltext#fulltext#input_text" /> - <a href="javascript::" onclick='$j("#iframe_fulltext_help").slideToggle("fast");'><i class="fa fa-search" title="<?php echo _HELP_FULLTEXT_SEARCH; ?>"></i></a> - </div> - <div class="adv_search_field"> - <em><?php echo _FULLTEXT_HELP; ?></em> - </div> - </div> - <div class="adv_search_field_content" id="iframe_fulltext_help" style="display:none;"> - <iframe src="<?php echo $_SESSION['config']['businessappurl'] - .'index.php?display=true&page=fulltext_search_help'; ?>" frameborder="0" width="100%" height="240px"> - </iframe> - </div> - <div class="adv_search_field_content"> - <div class="adv_search_field"> - <label for="multifield" class="bold" ><?php echo _MULTI_FIELD; ?></label> - </div> - <div class="adv_search_field"> - <input type="text" name="multifield" id="multifield" <?php functions::xecho($size); ?> /> - <input type="hidden" name="meta[]" value="multifield#multifield#input_text" /> - </div> - <div class="adv_search_field"> - <em><?php echo _MULTI_FIELD_HELP; ?></em> - </div> - </div> - </div> - </td> - </tr> - <tr> - <td><span class="green_asterisk"><i class="fa fa-star" style="vertical-align:50%"></i></span><?php echo _SEARCH_INDICATION; ?></td> - </tr> - <tr><td colspan="2"> </td></tr> -<tr> -<td > -<div class="block"> -<h2><?php echo _ADD_PARAMETERS; ?> : <select name="select_criteria" id="select_criteria" style="display:inline;" onchange="add_criteria(this.options[this.selectedIndex].id, 'parameters_tab', <?php - echo $browser_ie; ?>, '<?php echo _ERROR_IE_SEARCH; ?>');window.location.href = '#bottom';"> - <?php echo $src_tab; ?> - </select></h2> -<table border = "0" width="100%" class="content" id="parameters_tab"> - <tr> - <td width="100%" colspan="3" style="text-align:center;"><em><?php echo _ADD_PARAMETERS_HELP; ?></em></td> - </tr> - </table> - </div> -</td></tr> -</table> - -<table align="center" border="0" width="100%"> - <tr> - <td> - <a href="#" onclick="clear_search_form('frmsearch2','select_criteria');clear_q_list();erase_contact_external_id('recipient', 'recipient_id');erase_contact_external_id('recipient', 'recipient_type');erase_contact_external_id('sender', 'sender_id');erase_contact_external_id('sender', 'sender_type');erase_contact_external_id('signatory_name', 'ac_signatory_name');"> - <i class="fa fa-sync fa-4x" title="<?php echo _CLEAR_FORM; ?>"></i> - </a> - </td> - <td align="right"> - <a href="#" onclick="valid_search_form('frmsearch2');$('frmsearch2').submit();"> - <i class="fa fa-search fa-4x" title="<?php echo _SEARCH; ?>"></i> - </a> - </td> - </tr> -</table> - -</form> -<br/> -</div> - -<script type="text/javascript"> -load_query(valeurs, loaded_query, 'parameters_tab', '<?php echo $browser_ie; ?>', '<?php echo _ERROR_IE_SEARCH; ?>'); -<?php if (isset($_REQUEST['init_search'])) { - ?>clear_search_form('frmsearch2','select_criteria');clear_q_list();erase_contact_external_id('recipient', 'recipient_id');erase_contact_external_id('recipient', 'recipient_type');erase_contact_external_id('sender', 'sender_id');erase_contact_external_id('sender', 'sender_type');erase_contact_external_id('signatory_name', 'ac_signatory_name') <?php - }?> -</script> - -<?php if ($mode == 'popup' || $mode == 'frame') { - echo '</div>'; - if ($mode == 'popup') { - ?><br/><div align="center"><input type="button" name="close" class="button" value="<?php echo _CLOSE_WINDOW; ?>" onclick="self.close();" /></div> <?php - } - echo '</body></html>'; - } diff --git a/apps/maarch_entreprise/indexing_searching/search_adv_result.php b/apps/maarch_entreprise/indexing_searching/search_adv_result.php deleted file mode 100755 index 2578dd495e2b0d3f5f904c59704c1d40e3bdd16a..0000000000000000000000000000000000000000 --- a/apps/maarch_entreprise/indexing_searching/search_adv_result.php +++ /dev/null @@ -1,823 +0,0 @@ -<?php - -/* -* Copyright 2008 - 2015 Maarch -* -* This file is part of Maarch Framework. -* -* Maarch Framework 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. -* -* Maarch Framework 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 Maarch Framework. If not, see <http://www.gnu.org/licenses/>. -*/ - -/** -* @brief Advanced search form management -* -* @file search_adv_result.php -* @author Claire Figueras <dev@maarch.org> -* @date $date$ -* @version $Revision$ -* @ingroup indexing_searching_mlb -*/ - -require_once('core/class/class_request.php'); -require_once('core/class/class_security.php'); -require_once('apps/' . $_SESSION['config']['app_id'] . '/class/class_indexing_searching_app.php'); -$core_tools = new core_tools(); -$core_tools->test_user(); -$core_tools->load_lang(); -$is = new indexing_searching_app(); -$func = new functions(); -$req = new request(); -$fields = ""; -$orderby = ""; - -$baskets_clause = ''; -$coll_id = 'letterbox_coll'; -$_SESSION['error_search'] = ''; -$_SESSION['searching']['comp_query'] = ''; -$_SESSION['save_list']['fromDetail'] = "false"; -$_SESSION['fullTextAttachments'] = []; - - -// define the row of the start -if (isset($_REQUEST['start'])) { - $start = $_REQUEST['start']; -} else { - $start = 0; -} - -if (isset($_REQUEST['mode']) && $_REQUEST['mode'] == 'frame') { - $mode = 'frame'; -} elseif (isset($_REQUEST['mode']) && $_REQUEST['mode'] == 'popup') { - $mode = 'popup'; -} else { - $mode = 'normal'; - $core_tools->test_service('adv_search_mlb', 'apps'); -} -$where_request = ""; -$arrayPDO = array(); - $_ENV['date_pattern'] = "/^[0-3][0-9]-[0-1][0-9]-[1-2][0-9][0-9][0-9]$/"; -$json_txt = '{'; - -/** - * Array $_REQUEST['meta'] exemple -( - [0] => copies#copies_false,copies_true#radio - [1] => objet#objet#input_text - [2] => numged#numged#input_text - [3] => multifield#multifield#input_text - [4] => category#category#select_simple - [5] => doc_date#doc_date_from,doc_date_to#date_range -) -**/ -//$func->show_array($_REQUEST['meta']);exit; -$nbMeta = count($_REQUEST['meta']); -if ($nbMeta > 0) { - //Verif for parms sended by url - if ($_GET['meta']) { - for ($m=0; $m < $nbMeta; $m++) { - if (strstr($_REQUEST['meta'][$m], '||') == true) { - $_REQUEST['meta'][$m] = str_replace('||', '#', $_REQUEST['meta'][$m]); - } - } - } - $opt_indexes = array(); - $_SESSION['meta_search'] = $_REQUEST['meta']; - for ($i=0; $i < $nbMeta; $i++) { - $tab = explode('#', $_REQUEST['meta'][$i]); - if ($tab[0] == 'welcome') { - $tab[0] = 'multifield'; - $tab[2] = 'input_text'; - } - $id_val = $tab[0]; - $json_txt .= "'".$tab[0]."' : { 'type' : '".$tab[2]."', 'fields' : {"; - $tab_id_fields = explode(',', $tab[1]); - //$func->show_array($tab_id_fields); - $nbFields = count($tab_id_fields); - for ($j=0; $j < $nbFields; $j++) { - // ENTITIES - if ($tab_id_fields[$j] == 'services_chosen' && isset($_REQUEST['services_chosen'])) { - $json_txt .= " 'services_chosen' : ["; - - for ($get_i = 0; $get_i <count($_REQUEST['services_chosen']); $get_i++) { - $json_txt .= "'".$_REQUEST['services_chosen'][$get_i]."',"; - } - $json_txt = substr($json_txt, 0, -1); - $where_request .= " destination IN (:serviceChosen) "; - $where_request .=" and "; - $arrayPDO = array_merge($arrayPDO, array(":serviceChosen" => $_REQUEST['services_chosen'])); - $json_txt .= '],'; - } elseif ($tab_id_fields[$j] == 'initiatorServices_chosen' && isset($_REQUEST['initiatorServices_chosen'])) { - $json_txt .= " 'initiatorServices_chosen' : ["; - - for ($get_i = 0; $get_i <count($_REQUEST['initiatorServices_chosen']); $get_i++) { - $json_txt .= "'".$_REQUEST['initiatorServices_chosen'][$get_i]."',"; - } - $json_txt = substr($json_txt, 0, -1); - $where_request .= " initiator IN (:initiatorServiceChosen) "; - $where_request .=" and "; - $arrayPDO = array_merge($arrayPDO, array(":initiatorServiceChosen" => $_REQUEST['initiatorServices_chosen'])); - $json_txt .= '],'; - } elseif ($tab_id_fields[$j] == 'multifield' && !empty($_REQUEST['multifield'])) { - // MULTIFIELD : subject, process notes - $multifield = trim($_REQUEST['multifield']); - $json_txt .= "'multifield' : ['".addslashes(trim($multifield))."'],"; - - $where_request .= "(REGEXP_REPLACE(lower(translate(subject,'ÀÃÂÃÄÅÆÇÈÉÊËÌÃÃŽÃÃÑÒÓÔÕÖØÙÚÛÜÃÞßà áâãäåæçèéêëìÃîïðñòóôõöøùúûýýþÿŔŕ','aaaaaaaceeeeiiiidnoooooouuuuybsaaaaaaaceeeeiiiidnoooooouuuyybyRr')),'( ){2,}', ' ') like lower(:multifield) " - ."or (lower(translate(alt_identifier,'/','')) like lower(:multifield) OR lower(alt_identifier) like lower(:multifield)) " - ."or lower(barcode) LIKE lower(:multifield) " - ."or res_id in (select identifier from notes where lower(translate(note_text,'ÀÃÂÃÄÅÆÇÈÉÊËÌÃÃŽÃÃÑÒÓÔÕÖØÙÚÛÜÃÞßà áâãäåæçèéêëìÃîïðñòóôõöøùúûýýþÿŔŕ','aaaaaaaceeeeiiiidnoooooouuuuybsaaaaaaaceeeeiiiidnoooooouuuyybyRr')) like lower(:multifield)) " - ."or res_id in (select res_id_master from res_attachments where (lower(translate(identifier,'/','')) like lower(:multifield) OR lower(identifier) like lower(:multifield) AND status NOT IN ('DEL','OBS','TMP')))) "; - if (ctype_digit($_REQUEST['multifield'])) { - $where_request .= "or res_id = :multifield2 "; - $arrayPDO = array_merge($arrayPDO, array(":multifield2" => $multifield)); - } - - $multifield = \SrcCore\models\TextFormatModel::normalize(['string' => $multifield]); - $multifield = preg_replace('/\s+/', ' ', $multifield); - $arrayPDO = array_merge($arrayPDO, array(":multifield" => "%".$multifield."%")); - - $where_request .=" and "; - } elseif ($tab_id_fields[$j] == 'chrono' && !empty($_REQUEST['chrono'])) { - $json_txt .= " 'chrono' : ['".addslashes(trim($_REQUEST['chrono']))."'],"; - $chrono = $func->wash($_REQUEST['chrono'], "no", _CHRONO_NUMBER, "no"); - $where_request .= " (lower(alt_identifier) like lower(:chrono) or (res_id in (SELECT res_id_master FROM res_attachments WHERE lower(identifier) like lower(:chrono) AND status NOT IN ('DEL','OBS','TMP'))))"; - $arrayPDO = array_merge($arrayPDO, array(":chrono" => "%".$chrono."%")); - $where_request .=" and "; - } - - // CODE A BARRES - elseif ($tab_id_fields[$j] == 'barcode' && !empty($_REQUEST['barcode'])) { - $json_txt .= " 'barcode' : ['".addslashes(trim($_REQUEST['barcode']))."'],"; - $barcode = $func->wash($_REQUEST['barcode'], "no", _BARCODE, "no"); - $where_request .= " lower(barcode) like lower(:barcode) "; - $arrayPDO = array_merge($arrayPDO, array(":barcode" => "%".$barcode."%")); - $where_request .=" and "; - } - // PRIORITY - elseif ($tab_id_fields[$j] == 'priority_chosen' && isset($_REQUEST['priority_chosen'])) { - $json_txt .= " 'priority_chosen' : ["; - - for ($get_i = 0; $get_i <count($_REQUEST['priority_chosen']); $get_i++) { - $json_txt .= "'".$_REQUEST['priority_chosen'][$get_i]."',"; - } - $json_txt = substr($json_txt, 0, -1); - $where_request .= " priority IN (:priorityChosen) "; - $where_request .=" and "; - $arrayPDO = array_merge($arrayPDO, array(":priorityChosen" => $_REQUEST['priority_chosen'])); - $json_txt .= '],'; - } - // SIGNATORY GROUP - elseif ($tab_id_fields[$j] == 'signatory_group' && !empty($_REQUEST['signatory_group'])) { - $json_txt .= " 'signatory_group' : ['".addslashes(trim($_REQUEST['signatory_group']))."'],"; - - $where_request .= " (res_id in (select res_id from listinstance where item_id in (select user_id from users where id in (select user_id from usergroup_content where group_id = :signatoryGroup)) " - ."and item_mode = 'sign' and difflist_type = 'VISA_CIRCUIT')) "; - $group = \Group\models\GroupModel::getByGroupId(['groupId' => $_REQUEST['signatory_group'], 'select' => ['id']]); - $arrayPDO = array_merge($arrayPDO, array(":signatoryGroup" => $group['id'])); - $where_request .=" and "; - } - - // TYPE D'ATTACHEMENT - elseif ($tab_id_fields[$j] == 'attachment_types' && !empty($_REQUEST['attachment_types'])) { - $json_txt .= " 'attachment_types' : ['".addslashes(trim($_REQUEST['attachment_types']))."'],"; - $where_request .= " (res_id in (SELECT res_id_master FROM res_attachments WHERE attachment_type = :attachmentTypes AND status NOT IN ('DEL','OBS','TMP')) )"; - $arrayPDO = array_merge($arrayPDO, array(":attachmentTypes" => $_REQUEST['attachment_types'])); - $where_request .=" and "; - } - // DEPARTMENT NUMBER - elseif ($tab_id_fields[$j] == 'department_number_chosen' && !empty($_REQUEST['department_number_chosen'])) { - $json_txt .= " 'department_number_chosen' : ["; - - for ($get_i = 0; $get_i <count($_REQUEST['department_number_chosen']); $get_i++) { - $json_txt .= "'".$_REQUEST['department_number_chosen'][$get_i]."',"; - } - - $json_txt = substr($json_txt, 0, -1); - $json_txt .= '],'; - - $sDepartment = join('|', $_REQUEST['department_number_chosen']); - $sDepartment = str_replace(['2A', '2B'], '20', $sDepartment); - - $where_request .= " ((res_id in (SELECT res_id FROM resource_contacts rc LEFT JOIN contacts ON rc.item_id = contacts.id - WHERE type = 'contact' AND mode = 'sender' AND (address_country ILIKE 'FRANCE' OR address_country = '' OR address_country IS NULL) - AND address_postcode similar to :department_number))) and "; - $arrayPDO = array_merge($arrayPDO, array(":department_number" => '('.$sDepartment . ')%')); - } - // NOTES - elseif ($tab_id_fields[$j] == 'doc_notes' && !empty($_REQUEST['doc_notes'])) { - $json_txt .= " 'doc_notes' : ['".addslashes(trim($_REQUEST['doc_notes']))."'],"; - $s_doc_notes = $func->wash($_REQUEST['doc_notes'], "no", _NOTES, "no"); - $where_request .= " res_id in(select identifier from ".$_SESSION['tablename']['not_notes']." where lower(note_text) LIKE lower(:noteText)) and "; - $arrayPDO = array_merge($arrayPDO, array(":noteText" => "%".$s_doc_notes."%")); - } - // Folder - elseif ($tab_id_fields[$j] == 'folder' && !empty($_REQUEST['folder'])) { - $json_txt .= " 'folder' : ['".addslashes(trim($_REQUEST['folder']))."'],"; - $folder = $func->wash($_REQUEST['folder'], "no", _MARKET, "no"); - - $where_request .= " res_id in ( "; - - $where_request .= "select res_id -from resources_folders - left join folders on resources_folders.folder_id = folders.id -where lower(translate(folders.label , 'ÀÃÂÃÄÅÆÇÈÉÊËÌÃÃŽÃÃÑÒÓÔÕÖØÙÚÛÜÃÞßà áâãäåæçèéêëìÃîïðñòóôõöøùúûýýþÿŔŕ', - 'aaaaaaaceeeeiiiidnoooooouuuuybsaaaaaaaceeeeiiiidnoooooouuuyybyRr')) ilike - lower(translate(:label_folders, 'ÀÃÂÃÄÅÆÇÈÉÊËÌÃÃŽÃÃÑÒÓÔÕÖØÙÚÛÜÃÞßà áâãäåæçèéêëìÃîïðñòóôõöøùúûýýþÿŔŕ', - 'aaaaaaaceeeeiiiidnoooooouuuuybsaaaaaaaceeeeiiiidnoooooouuuyybyRr')) - and ( - folders.id in ( - select folders.id - from folders - left join users on folders.user_id = users.id - where users.user_id = :user_id_folders - ) or folders.id in ( - select entities_folders.folder_id - from entities_folders - left join entities on entities_folders.entity_id = entities.id - left join users_entities on entities.entity_id = users_entities.entity_id - where users_entities.user_id = :user_id_folders OR entities_folders.keyword = 'ALL_ENTITIES' - ) - )"; - - $where_request .=" ) and "; - - $arrayPDO = array_merge($arrayPDO, array(":label_folders" => "%".$folder."%", ":user_id_folders" => $_SESSION['user']['UserId'])); - } - // GED NUM - elseif ($tab_id_fields[$j] == 'numged' && !empty($_REQUEST['numged'])) { - $json_txt .= " 'numged' : ['".addslashes(trim($_REQUEST['numged']))."'],"; - require_once('core/class/class_security.php'); - $sec = new security(); - $view = $sec->retrieve_view_from_coll_id($_SESSION['collection_id_choice']); - if ($view <> '') { - $view .= '.'; - } - $where_request .= $view . "res_id = :numGed and "; - $arrayPDO = array_merge($arrayPDO, array(":numGed" => $_REQUEST['numged'])); - - if (!is_numeric($_REQUEST['numged'])) { - $_SESSION['error_search'] = _NUMERO_GED; - } - } - // DEST_USER - elseif ($tab_id_fields[$j] == 'destinataire_chosen' && !empty($_REQUEST['destinataire_chosen'])) { - $json_txt .= " 'destinataire_chosen' : ["; - - for ($get_i = 0; $get_i <count($_REQUEST['destinataire_chosen']); $get_i++) { - $json_txt .= "'".$_REQUEST['destinataire_chosen'][$get_i]."',"; - } - - $json_txt = substr($json_txt, 0, -1); - - $where_request .= " (dest_user IN (:destinataireChosen) or res_id in (select res_id from ".$_SESSION['tablename']['ent_listinstance']." where item_id in (:destinataireChosen) and item_mode = 'dest')) "; - $where_request .=" and "; - $arrayPDO = array_merge($arrayPDO, array(":destinataireChosen" => $_REQUEST['destinataire_chosen'])); - $json_txt .= '],'; - } - // SUBJECT - elseif ($tab_id_fields[$j] == 'subject' && !empty($_REQUEST['subject'])) { - $subject = trim($_REQUEST['subject']); - $subject = preg_replace('/\s+/', ' ', $func->normalize($subject)); - $json_txt .= " 'subject' : ['".addslashes(trim($subject))."'],"; - - $where_request .= " (REGEXP_REPLACE(lower(translate(subject,'ÀÃÂÃÄÅÆÇÈÉÊËÌÃÃŽÃÃÑÒÓÔÕÖØÙÚÛÜÃÞßà áâãäåæçèéêëìÃîïðñòóôõöøùúûýýþÿŔŕ','aaaaaaaceeeeiiiidnoooooouuuuybsaaaaaaaceeeeiiiidnoooooouuuyybyRr')),'( ){2,}', ' ') like lower(:subject) " - ."or (res_id in (SELECT res_id_master FROM res_attachments WHERE lower(translate(title,'ÀÃÂÃÄÅÆÇÈÉÊËÌÃÃŽÃÃÑÒÓÔÕÖØÙÚÛÜÃÞßà áâãäåæçèéêëìÃîïðñòóôõöøùúûýýþÿŔŕ','aaaaaaaceeeeiiiidnoooooouuuuybsaaaaaaaceeeeiiiidnoooooouuuyybyRr')) like lower(:subject) AND status NOT IN ('DEL','OBS','TMP') ))) and "; - $arrayPDO = array_merge($arrayPDO, array(":subject" => "%".$subject."%")); - } elseif ($tab_id_fields[$j] == 'fulltext' && !empty($_REQUEST['fulltext']) - ) { - $query_fulltext = explode(" ", trim($_REQUEST['fulltext'])); - $error_fulltext = false; - - foreach ($query_fulltext as $value) { - if (strpos($value, "*") !== false && - (strlen(substr($value, 0, strpos($value, "*"))) < 3 || preg_match("([,':!+])", $value) === 1) - ) { - $error_fulltext = true; - break; - } - } - - if ($error_fulltext == true) { - $_SESSION['error_search'] = _FULLTEXT_ERROR; - } else { - // FULLTEXT - $fulltext_request = $func->normalize($_REQUEST['fulltext']); - $json_txt .= " 'fulltext' : ['" - . addslashes(trim($_REQUEST['fulltext'])) . "'],"; - set_include_path( - 'apps' . DIRECTORY_SEPARATOR - . $_SESSION['config']['app_id'] - . DIRECTORY_SEPARATOR . 'tools' - . DIRECTORY_SEPARATOR . PATH_SEPARATOR . get_include_path() - ); - require_once('Zend/Search/Lucene.php'); - Zend_Search_Lucene_Analysis_Analyzer::setDefault( - new Zend_Search_Lucene_Analysis_Analyzer_Common_Utf8Num_CaseInsensitive() // we need utf8 for accents - ); - Zend_Search_Lucene_Search_QueryParser::setDefaultOperator(Zend_Search_Lucene_Search_QueryParser::B_AND); - Zend_Search_Lucene_Search_QueryParser::setDefaultEncoding('utf-8'); - - $_SESSION['search']['plain_text'] = $_REQUEST['fulltext']; - - foreach (['letterbox_coll', 'attachments_coll'] as $key => $tmpCollection) { - $fullTextDocserver = \Docserver\models\DocserverModel::getCurrentDocserver(['collId' => $tmpCollection, 'typeId' => 'FULLTEXT']); - - $path_to_lucene_index = $fullTextDocserver['path_template']; - - if (is_dir($path_to_lucene_index)) { - if (!$func->isDirEmpty($path_to_lucene_index)) { - $index = Zend_Search_Lucene::open($path_to_lucene_index); - $hits = $index->find(urldecode($fulltext_request)); - $Liste_Ids = "0"; - $cptIds = 0; - foreach ($hits as $hit) { - if ($cptIds < 500) { - $Liste_Ids .= ", '". $hit->Id ."'"; - } else { - break; - } - $cptIds ++; - } - - if ($tmpCollection == 'attachments_coll') { - $tmpArray = preg_split("/[,' ]/", $Liste_Ids); - array_splice($tmpArray, 0, 1); - $_SESSION['fullTextAttachments']['attachments'] = array_filter($tmpArray); - $db = new Database(); - $stmt = $db->query("SELECT DISTINCT res_id_master FROM res_attachments WHERE res_id IN ($Liste_Ids) AND status NOT IN ('DEL','OBS','TMP')"); - $idMasterDatas = []; - while ($tmp = $stmt->fetchObject()) { - $idMasterDatas[] = $tmp; - } - - $Liste_Ids = '0'; - foreach ($idMasterDatas as $tmpIdMaster) { - $Liste_Ids .= ", '{$tmpIdMaster->res_id_master}'"; - $_SESSION['fullTextAttachments']['letterbox'][] = $tmpIdMaster->res_id_master; - } - } - - if ($key == 0) { - $where_request .= ' ('; - } - - $where_request .= " res_id IN ($Liste_Ids) "; - - if ($key == 1) { - $where_request .= ') and '; - } else { - $where_request .= ' or '; - } - } else { - if ($key == 0) { - $where_request .= ' ('; - } - - $where_request .= " 1=-1 "; - - if ($key == 1) { - $where_request .= ') and '; - } else { - $where_request .= ' or '; - } - } - } else { - if ($key == 0) { - $where_request .= ' ('; - } - - $where_request .= " 1=-1 "; - - if ($key == 1) { - $where_request .= ') and '; - } else { - $where_request .= ' or '; - } - } - } - } - } - // TAGS - elseif ($tab_id_fields[$j] == 'tags_chosen' && !empty($_REQUEST['tags_chosen'])) { - include_once("modules".DIRECTORY_SEPARATOR."tags". - DIRECTORY_SEPARATOR."tags_search.php"); - } - //WELCOME PAGE - elseif ($tab_id_fields[$j] == 'welcome' && (!empty($_REQUEST['welcome']))) { - $welcome = trim($_REQUEST['welcome']); - $json_txt .= "'multifield' : ['".addslashes($welcome)."'],"; - if (ctype_digit($_REQUEST['welcome'])) { - $where_request_welcome .= "(res_id = :resIdWelcome) or "; - $arrayPDO = array_merge($arrayPDO, array(":resIdWelcome" => $welcome)); - } - $where_request_welcome .= "( REGEXP_REPLACE(lower(translate(subject,'ÀÃÂÃÄÅÆÇÈÉÊËÌÃÃŽÃÃÑÒÓÔÕÖØÙÚÛÜÃÞßà áâãäåæçèéêëìÃîïðñòóôõöøùúûýýþÿŔŕ','aaaaaaaceeeeiiiidnoooooouuuuybsaaaaaaaceeeeiiiidnoooooouuuyybyRr')),'( ){2,}', ' ') like lower(:multifieldWelcome) " - ."or (lower(translate(alt_identifier,'/','')) like lower(:multifieldWelcome) OR lower(alt_identifier) like lower(:multifieldWelcome)) " - ."or lower(barcode) LIKE lower(:multifieldWelcome) " - ."or res_id in (select identifier from notes where lower(translate(note_text,'ÀÃÂÃÄÅÆÇÈÉÊËÌÃÃŽÃÃÑÒÓÔÕÖØÙÚÛÜÃÞßà áâãäåæçèéêëìÃîïðñòóôõöøùúûýýþÿŔŕ','aaaaaaaceeeeiiiidnoooooouuuuybsaaaaaaaceeeeiiiidnoooooouuuyybyRr')) like lower(:multifieldWelcome)) " - ."or res_id in (select res_id_master from res_attachments where (lower(translate(identifier,'/','')) like lower(:multifieldWelcome) OR lower(identifier) like lower(:multifieldWelcome)) AND status NOT IN ('DEL','OBS','TMP')))"; - - $multifieldWelcome = \SrcCore\models\TextFormatModel::normalize(['string' => $welcome]); - $multifieldWelcome = preg_replace('/\s+/', ' ', $multifieldWelcome); - $arrayPDO = array_merge($arrayPDO, array(":multifieldWelcome" => "%".$multifieldWelcome."%")); - set_include_path( - 'apps' . DIRECTORY_SEPARATOR - . $_SESSION['config']['app_id'] - . DIRECTORY_SEPARATOR . 'tools' - . DIRECTORY_SEPARATOR . PATH_SEPARATOR . get_include_path() - ); - } - - // CONFIDENTIALITY - elseif ($tab_id_fields[$j] == 'confidentiality' && ($_REQUEST['confidentiality'] <> "")) { - $json_txt .= " 'confidentiality' : ['".addslashes(trim($_REQUEST['confidentiality']))."'],"; - $where_request .= " confidentiality = :confidentiality and "; - $arrayPDO = array_merge($arrayPDO, array(":confidentiality" => $_REQUEST['confidentiality'])); - } - // DOCTYPES - elseif ($tab_id_fields[$j] == 'doctypes_chosen' && !empty($_REQUEST['doctypes_chosen'])) { - $json_txt .= " 'doctypes_chosen' : ["; - - for ($get_i = 0; $get_i <count($_REQUEST['doctypes_chosen']); $get_i++) { - $json_txt .= "'".$_REQUEST['doctypes_chosen'][$get_i]."',"; - } - - $json_txt = substr($json_txt, 0, -1); - - $where_request .= " type_id IN (:doctypesChosen) "; - $where_request .=" and "; - $arrayPDO = array_merge($arrayPDO, array(":doctypesChosen" => $_REQUEST['doctypes_chosen'])); - $json_txt .= '],'; - } - - // CREATION DATE PJ : FROM - elseif ($tab_id_fields[$j] == 'creation_date_pj_from' && !empty($_REQUEST['creation_date_pj_from'])) { - if (preg_match($_ENV['date_pattern'], $_REQUEST['creation_date_pj_from'])==false) { - $_SESSION['error'] .= _WRONG_DATE_FORMAT.' : '.$_REQUEST['creation_date_pj_from']; - } else { - $where_request .= " res_id in (SELECT res_id_master FROM res_attachments WHERE (".$req->extract_date("creation_date")." >= :creationDatePjFrom) AND status NOT IN ('DEL','OBS','TMP') ) and "; - $arrayPDO = array_merge($arrayPDO, array(":creationDatePjFrom" => $func->format_date_db($_REQUEST['creation_date_pj_from']))); - $json_txt .= " 'creation_date_pj_from' : ['".trim($_REQUEST['creation_date_pj_from'])."'],"; - } - } - // CREATION DATE PJ : TO - elseif ($tab_id_fields[$j] == 'creation_date_pj_to' && !empty($_REQUEST['creation_date_pj_to'])) { - if (preg_match($_ENV['date_pattern'], $_REQUEST['creation_date_pj_to'])==false) { - $_SESSION['error'] .= _WRONG_DATE_FORMAT.' : '.$_REQUEST['creation_date_pj_to']; - } else { - $where_request .= " res_id in (SELECT res_id_master FROM res_attachments WHERE (".$req->extract_date("creation_date")." <= :creationDatePjTo) AND status NOT IN ('DEL','OBS','TMP') ) and "; - $arrayPDO = array_merge($arrayPDO, array(":creationDatePjTo" => $func->format_date_db($_REQUEST['creation_date_pj_to']))); - $json_txt .= " 'creation_date_pj_to' : ['".trim($_REQUEST['creation_date_pj_to'])."'],"; - } - } - // CREATION DATE : FROM - elseif ($tab_id_fields[$j] == 'creation_date_from' && !empty($_REQUEST['creation_date_from'])) { - if (preg_match($_ENV['date_pattern'], $_REQUEST['creation_date_from'])==false) { - $_SESSION['error'] .= _WRONG_DATE_FORMAT.' : '.$_REQUEST['creation_date_from']; - } else { - $where_request .= " (".$req->extract_date("creation_date")." >= :creationDateFrom) and "; - $arrayPDO = array_merge($arrayPDO, array(":creationDateFrom" => $func->format_date_db($_REQUEST['creation_date_from']))); - $json_txt .= " 'creation_date_from' : ['".trim($_REQUEST['creation_date_from'])."'],"; - } - } - // CREATION DATE : TO - elseif ($tab_id_fields[$j] == 'creation_date_to' && !empty($_REQUEST['creation_date_to'])) { - if (preg_match($_ENV['date_pattern'], $_REQUEST['creation_date_to'])==false) { - $_SESSION['error'] .= _WRONG_DATE_FORMAT.' : '.$_REQUEST['creation_date_to']; - } else { - $where_request .= " (".$req->extract_date("creation_date")." <= :creationDateTo) and "; - $arrayPDO = array_merge($arrayPDO, array(":creationDateTo" => $func->format_date_db($_REQUEST['creation_date_to']))); - $json_txt .= " 'creation_date_to' : ['".trim($_REQUEST['creation_date_to'])."'],"; - } - } - // EXP DATE : FROM - elseif ($tab_id_fields[$j] == 'exp_date_from' && !empty($_REQUEST['exp_date_from'])) { - if (preg_match($_ENV['date_pattern'], $_REQUEST['exp_date_from'])==false) { - $_SESSION['error'] .= _WRONG_DATE_FORMAT.' : '.$_REQUEST['exp_date_from']; - } else { - $where_request .= " (".$req->extract_date("departure_date")." >= :expDateFrom) and "; - $arrayPDO = array_merge($arrayPDO, array(":expDateFrom" => $func->format_date_db($_REQUEST['exp_date_from']))); - $json_txt .= " 'exp_date_from' : ['".trim($_REQUEST['exp_date_from'])."'],"; - } - } - // EXP DATE : TO - elseif ($tab_id_fields[$j] == 'exp_date_to' && !empty($_REQUEST['exp_date_to'])) { - if (preg_match($_ENV['date_pattern'], $_REQUEST['exp_date_to'])==false) { - $_SESSION['error'] .= _WRONG_DATE_FORMAT.' : '.$_REQUEST['exp_date_to']; - } else { - $where_request .= " (".$req->extract_date("departure_date")." <= :expDateTo) and "; - $arrayPDO = array_merge($arrayPDO, array(":expDateTo" => $func->format_date_db($_REQUEST['exp_date_to']))); - $json_txt .= " 'exp_date_to' : ['".trim($_REQUEST['exp_date_to'])."'],"; - } - } - // PROCESS DATE : FROM (closing_date) - elseif ($tab_id_fields[$j] == 'closing_date_from' && !empty($_REQUEST['closing_date_from'])) { - if (preg_match($_ENV['date_pattern'], $_REQUEST['closing_date_from'])==false) { - $_SESSION['error'] .= _WRONG_DATE_FORMAT.' : '.$_REQUEST['closing_date_from']; - } else { - $where_request .= " (".$req->extract_date("closing_date")." >= :closingDateFrom) and "; - $arrayPDO = array_merge($arrayPDO, array(":closingDateFrom" => $func->format_date_db($_REQUEST['closing_date_from']))); - $json_txt .= "'closing_date_from' : ['".trim($_REQUEST['closing_date_from'])."'],"; - } - } - // CLOSING DATE : TO - elseif ($tab_id_fields[$j] == 'closing_date_to' && !empty($_REQUEST['closing_date_to'])) { - if (preg_match($_ENV['date_pattern'], $_REQUEST['closing_date_to'])==false) { - $_SESSION['error'] = _WRONG_DATE_FORMAT.' : '.$_REQUEST['closing_date_to']; - } else { - $where_request .= " (".$req->extract_date("closing_date")." <= :closingDateTo) and "; - $arrayPDO = array_merge($arrayPDO, array(":closingDateTo" => $func->format_date_db($_REQUEST['closing_date_to']))); - $json_txt .= "'closing_date_to' : ['".trim($_REQUEST['closing_date_to'])."'],"; - } - } - // PROCESS LIMIT DATE : FROM - elseif ($tab_id_fields[$j] == 'process_limit_date_from' && !empty($_REQUEST['process_limit_date_from'])) { - if (preg_match($_ENV['date_pattern'], $_REQUEST['process_limit_date_from'])==false) { - $_SESSION['error'] = _WRONG_DATE_FORMAT.' : '.$_REQUEST['process_limit_date_from']; - } else { - $where_request .= " (".$req->extract_date("process_limit_date")." >= :processLimitDateFrom) and "; - $arrayPDO = array_merge($arrayPDO, array(":processLimitDateFrom" => $func->format_date_db($_REQUEST['process_limit_date_from']))); - $json_txt .= "'process_limit_date_from' : ['".trim($_REQUEST['process_limit_date_from'])."'],"; - } - } - // PROCESS LIMIT DATE : TO - elseif ($tab_id_fields[$j] == 'process_limit_date_to' && !empty($_REQUEST['process_limit_date_to'])) { - if (preg_match($_ENV['date_pattern'], $_REQUEST['process_limit_date_to'])==false) { - $_SESSION['error'] = _WRONG_DATE_FORMAT.' : '.$_REQUEST['process_limit_date_to']; - } else { - $where_request .= " (".$req->extract_date("process_limit_date")." <= :processLimitDateTo) and "; - $arrayPDO = array_merge($arrayPDO, array(":processLimitDateTo" => $func->format_date_db($_REQUEST['process_limit_date_to']))); - $json_txt .= "'process_limit_date_to' : ['".trim($_REQUEST['process_limit_date_to'])."'],"; - } - } - // STATUS - elseif ($tab_id_fields[$j] == 'status_chosen' && isset($_REQUEST['status_chosen'])) { - $json_txt .= " 'status_chosen' : ["; - $where_request .="( "; - for ($get_i = 0; $get_i <count($_REQUEST['status_chosen']); $get_i++) { - $json_txt .= "'".$_REQUEST['status_chosen'][$get_i]."',"; - $where_request .= " ( status = :statusChosen_".$get_i.") or "; - $arrayPDO = array_merge($arrayPDO, array(":statusChosen_".$get_i => $_REQUEST['status_chosen'][$get_i])); - } - $where_request = preg_replace("/or $/", "", $where_request); - $json_txt = substr($json_txt, 0, -1); - $where_request .=") and "; - $json_txt .= '],'; - } - // MAIL CATEGORY - elseif ($tab_id_fields[$j] == 'category' && !empty($_REQUEST['category'])) { - $where_request .= " category_id = :category AND "; - $arrayPDO = array_merge($arrayPDO, array(":category" => $_REQUEST['category'])); - $json_txt .= "'category' : ['".addslashes($_REQUEST['category'])."'],"; - } - // ADMISSION DATE : FROM - elseif ($tab_id_fields[$j] == 'admission_date_from' && !empty($_REQUEST['admission_date_from'])) { - if (preg_match($_ENV['date_pattern'], $_REQUEST['admission_date_from'])==false) { - $_SESSION['error'] .= _WRONG_DATE_FORMAT.' : '.$_REQUEST['admission_date_from']; - } else { - $where_request .= " (".$req->extract_date("admission_date")." >= :admissionDateFrom) and "; - $arrayPDO = array_merge($arrayPDO, array(":admissionDateFrom" => $func->format_date_db($_REQUEST['admission_date_from']))); - $json_txt .= " 'admission_date_from' : ['".trim($_REQUEST['admission_date_from'])."'],"; - } - } - // ADMISSION DATE : TO - elseif ($tab_id_fields[$j] == 'admission_date_to' && !empty($_REQUEST['admission_date_to'])) { - if (preg_match($_ENV['date_pattern'], $_REQUEST['admission_date_to'])==false) { - $_SESSION['error'] .= _WRONG_DATE_FORMAT.' : '.$_REQUEST['admission_date_to']; - } else { - $where_request .= " (".$req->extract_date("admission_date")." <= :admissionDateTo) and "; - $arrayPDO = array_merge($arrayPDO, array(":admissionDateTo" => $func->format_date_db($_REQUEST['admission_date_to']))); - $json_txt .= " 'admission_date_to' : ['".trim($_REQUEST['admission_date_to'])."'],"; - } - } - // DOC DATE : FROM - elseif ($tab_id_fields[$j] == 'doc_date_from' && !empty($_REQUEST['doc_date_from'])) { - if (preg_match($_ENV['date_pattern'], $_REQUEST['doc_date_from'])==false) { - $_SESSION['error'] .= _WRONG_DATE_FORMAT.' : '.$_REQUEST['doc_date_from']; - } else { - $where_request .= " (".$req->extract_date("doc_date")." >= :docDateFrom) and "; - $arrayPDO = array_merge($arrayPDO, array(":docDateFrom" => $func->format_date_db($_REQUEST['doc_date_from']))); - $json_txt .= " 'doc_date_from' : ['".trim($_REQUEST['doc_date_from'])."'],"; - } - } - // DOC DATE : TO - elseif ($tab_id_fields[$j] == 'doc_date_to' && !empty($_REQUEST['doc_date_to'])) { - if (preg_match($_ENV['date_pattern'], $_REQUEST['doc_date_to'])==false) { - $_SESSION['error'] .= _WRONG_DATE_FORMAT.' : '.$_REQUEST['doc_date_to']; - } else { - $where_request .= " (".$req->extract_date("doc_date")." <= :docDateTo) and "; - $arrayPDO = array_merge($arrayPDO, array(":docDateTo" => $func->format_date_db($_REQUEST['doc_date_to']))); - $json_txt .= " 'doc_date_to' : ['".trim($_REQUEST['doc_date_to'])."'],"; - } - } - // Senders - elseif ($tab_id_fields[$j] == 'sender' && !empty($_REQUEST['sender_type']) && !empty($_REQUEST['sender_id'])) { - $json_txt .= " 'sender' : ['".addslashes(trim($_REQUEST['sender']))."'], 'sender_id' : ['".addslashes(trim($_REQUEST['sender_id']))."'], 'sender_type' : ['".addslashes(trim($_REQUEST['sender_type']))."']"; - - $recipientType = $_REQUEST['sender_type'] == 'onlyContact' ? 'contact' : $_REQUEST['sender_type']; - - $where_request .= " ((res_id in (select res_id from resource_contacts where item_id = :senderId and type = :senderType and mode = 'sender'))"; - - $arrayPDO = array_merge($arrayPDO, [":senderId" => $_REQUEST['sender_id']]); - $arrayPDO = array_merge($arrayPDO, [":senderType" => $recipientType]); - - $where_request .= ') and '; - } - // Recipients - elseif ($tab_id_fields[$j] == 'recipient' && !empty($_REQUEST['recipient_type']) && !empty($_REQUEST['recipient_id'])) { - $json_txt .= " 'recipient' : ['".addslashes(trim($_REQUEST['recipient']))."'], 'recipient_id' : ['".addslashes(trim($_REQUEST['recipient_id']))."'], 'recipient_type' : ['".addslashes(trim($_REQUEST['recipient_type']))."']"; - - $recipientType = $_REQUEST['recipient_type'] == 'onlyContact' ? 'contact' : $_REQUEST['recipient_type']; - - $where_request .= " ((res_id in (select res_id from resource_contacts where item_id = :recipientId and type = :recipientType and mode = 'recipient'))"; - $arrayPDO = array_merge($arrayPDO, [":recipientId" => $_REQUEST['recipient_id']]); - $arrayPDO = array_merge($arrayPDO, [":recipientType" => $recipientType]); - - // Search on attachments ? -// if ($_REQUEST['recipient_type'] != 'entity') { -// $where_request .= " or (res_id in (SELECT res_id_master FROM res_attachments WHERE dest_address_id = :recipientId AND status NOT IN ('DEL','OBS','TMP')))"; -// } - - $where_request .= ') and '; - } - //recherche sur les contacts externes en fonction de ce que la personne a saisi - /*elseif ($tab_id_fields[$j] == 'contactid' && empty($_REQUEST['contactid_external']) && !empty($_REQUEST['contactid'])) - { - $json_txt .= " 'contactid_external' : ['".addslashes(trim($_REQUEST['contactid_external']))."'], 'contactid' : ['".addslashes(trim($_REQUEST['contactid']))."'],"; - $contact_id = $_REQUEST['contactid']; - $where_request .= " (contact_id in (select contact_id from view_contacts where society ilike :contactId or contact_firstname ilike :contactId or contact_lastname ilike :contactId) ". - " or res_id in (SELECT res_id_master FROM res_attachments WHERE dest_contact_id in (select contact_id from view_contacts where society ilike :contactId or contact_firstname ilike :contactId or contact_lastname ilike :contactId) AND status NOT IN ('DEL','OBS','TMP') ) ) and "; - $arrayPDO = array_merge($arrayPDO, array(":contactId" => "%".$contact_id."%")); - } - elseif ($tab_id_fields[$j] == 'addresses_id' && !empty($_REQUEST['addresses_id'])) - { - $json_txt .= " 'addresses_id' : ['".addslashes(trim($_REQUEST['addresses_id']))."'], 'addresses_id' : ['".addslashes(trim($_REQUEST['addresses_id']))."'],"; - $addresses_id = $_REQUEST['addresses_id']; - $where_request .= " address_id in (select ca_id from view_contacts where lastname ilike :addressId or firstname ilike :addressId ) and "; - $arrayPDO = array_merge($arrayPDO, array(":addressId" => "%".$addresses_id."%")); - } - //recherche sur les contacts internes en fonction de ce que la personne a saisi - elseif ($tab_id_fields[$j] == 'contactid_internal' && empty($_REQUEST['contact_internal_id']) && !empty($_REQUEST['contactid_internal'])) - { - $json_txt .= " 'contactid_internal' : ['".addslashes(trim($_REQUEST['contactid_internal']))."'], 'contact_internal_id' : ['".addslashes(trim($_REQUEST['contactid_internal']))."']"; - $contactid_internal = pg_escape_string($_REQUEST['contactid_internal']); - //$where_request .= " ((user_firstname = '".$contactid_internal."' or user_lastname = '".$contactid_internal."') or "; - $where_request .= " (exp_user_id in (select user_id from users where firstname ilike :contactIdInternal or lastname ilike :contactIdInternal )) and "; - $arrayPDO = array_merge($arrayPDO, array(":contactIdInternal" => "%".$contactid_internal."%")); - }*/ - //VISA USER - elseif ($tab_id_fields[$j] == 'visa_user' && !empty($_REQUEST['ac_visa_user'])) { - $json_txt .= " 'visa_user' : ['".addslashes(trim($_REQUEST['visa_user']))."'], 'user_visa' : ['".addslashes(trim($_REQUEST['ac_visa_user']))."']"; - $userVisa = $_REQUEST['ac_visa_user']; - $where_request .= " (res_id in (select res_id from listinstance where difflist_type = 'VISA_CIRCUIT' and signatory = false and item_id in (select user_id from users where user_id = :user_visa))) and "; - $arrayPDO = array_merge($arrayPDO, array(":user_visa" => $userVisa)); - } elseif ($tab_id_fields[$j] == 'visa_user' && empty($_REQUEST['ac_visa_user']) && !empty($_REQUEST['visa_user'])) { - $json_txt .= " 'visa_user' : ['".addslashes(trim($_REQUEST['visa_user']))."'], 'user_visa' : ['".addslashes(trim($_REQUEST['visa_user']))."']"; - $visaUser = pg_escape_string($_REQUEST['visa_user']); - //$where_request .= " ((user_firstname = '".$contactid_internal."' or user_lastname = '".$contactid_internal."') or "; - $where_request .= " (res_id in (select res_id from listinstance where difflist_type = 'VISA_CIRCUIT' and signatory = false and item_id in (select user_id from users where firstname ilike :visa_user or lastname ilike :visa_user))) and "; - $arrayPDO = array_merge($arrayPDO, array(":visa_user" => "%".$visaUser."%")); - } - // Nom du signataire - elseif ($tab_id_fields[$j] == 'signatory_name' && !empty($_REQUEST['ac_signatory_name'])) { - $json_txt .= " 'signatory_name' : ['".addslashes(trim($_REQUEST['signatory_name']))."'], 'signatory_name_id' : ['".addslashes(trim($_REQUEST['ac_signatory_name']))."']"; - $signatory_name = $_REQUEST['ac_signatory_name']; - $where_request .= " (res_id in (select res_id from listinstance where difflist_type = 'VISA_CIRCUIT' and (signatory = true or (process_date is null and requested_signature = true)) and item_id = :signatory_name_id)) and "; - $arrayPDO = array_merge($arrayPDO, array(":signatory_name_id" => $signatory_name)); - } - //recherche sur les signataires en fonction de ce que la personne a saisi - elseif ($tab_id_fields[$j] == 'signatory_name' && empty($_REQUEST['signatory_name_id']) && !empty($_REQUEST['signatory_name'])) { - $json_txt .= " 'signatory_name' : ['".addslashes(trim($_REQUEST['signatory_name']))."']"; - $signatory_name = pg_escape_string($_REQUEST['signatory_name']); - //$where_request .= " ((user_firstname = '".$contactid_internal."' or user_lastname = '".$contactid_internal."') or "; - $where_request .= " (res_id in (select res_id from listinstance where difflist_type = 'VISA_CIRCUIT' and (signatory = true or (process_date is null and requested_signature = true)) and item_id in (select user_id from users where firstname ilike :signatoryName or lastname ilike :signatoryName))) and "; - $arrayPDO = array_merge($arrayPDO, array(":signatoryName" => "%".$signatory_name."%")); - } - // SEARCH IN BASKETS - elseif ($tab_id_fields[$j] == 'baskets_clause' && !empty($_REQUEST['baskets_clause'])) { - //$func->show_array($_REQUEST);exit; - switch ($_REQUEST['baskets_clause']) { - case 'false': - $baskets_clause = "false"; - $json_txt .= "'baskets_clause' : ['false'],"; - break; - - case 'true': - for ($ind_bask = 0; $ind_bask < count($_SESSION['user']['baskets']); $ind_bask++) { - if ($_SESSION['user']['baskets'][$ind_bask]['coll_id'] == $coll_id) { - if (isset($_SESSION['user']['baskets'][$ind_bask]['clause']) && trim($_SESSION['user']['baskets'][$ind_bask]['clause']) <> '') { - $_SESSION['searching']['comp_query'] .= ' or ('.$_SESSION['user']['baskets'][$ind_bask]['clause'].')'; - } - } - } - $_SESSION['searching']['comp_query'] = preg_replace('/^ or/', '', $_SESSION['searching']['comp_query']); - $baskets_clause = ($_REQUEST['baskets_clause']); - $json_txt .= " 'baskets_clause' : ['true'],"; - break; - - default: - $json_txt .= " 'baskets_clause' : ['".addslashes(trim($_REQUEST['baskets_clause']))."'],"; - for ($ind_bask = 0; $ind_bask < count($_SESSION['user']['baskets']); $ind_bask++) { - if ($_SESSION['user']['baskets'][$ind_bask]['id'] == $_REQUEST['baskets_clause']) { - if (isset($_SESSION['user']['baskets'][$ind_bask]['clause']) && trim($_SESSION['user']['baskets'][$ind_bask]['clause']) <> '') { - $where_request .= ' (' . $_SESSION['user']['baskets'][$ind_bask]['clause'] . ') and ' ; - break; - } - } - } - } - } elseif (preg_match('/^indexingCustomField_/', $tab_id_fields[$j]) && !empty($_REQUEST[$tab_id_fields[$j]])) { // opt indexes check - $customFieldId = str_replace("indexingCustomField_", "", $tab_id_fields[$j]); - $customFieldId = str_replace("_min", "", $customFieldId); - $customFieldId = str_replace("_max", "", $customFieldId); - $customFieldId = str_replace("_from", "", $customFieldId); - $customFieldId = str_replace("_to", "", $customFieldId); - $customField = \CustomField\models\CustomFieldModel::getById(['id' => $customFieldId]); - $json_txt .= " '".$tab_id_fields[$j]."' : ['".addslashes(trim($_REQUEST[$tab_id_fields[$j]]))."'],"; - if (in_array($customField['type'], ['select', 'radio', 'checkbox'])) { - $where_request .= " (custom_fields->'".$customFieldId."' @> :valueCustom_".$customFieldId.") and "; - $arrayPDO = array_merge($arrayPDO, array(":valueCustom_".$customFieldId => '"'.$_REQUEST[$tab_id_fields[$j]].'"')); - } elseif ($customField['type'] == 'date') { - if (strpos($tab_id_fields[$j], '_from') !== false) { - $where_request .= " ((custom_fields->>'".$customFieldId."')::timestamp >= :valueCustom_".$customFieldId."_".$j."::timestamp) and "; - } elseif (strpos($tab_id_fields[$j], '_to') !== false) { - $where_request .= " ((custom_fields->>'".$customFieldId."')::timestamp <= :valueCustom_".$customFieldId."_".$j."::timestamp) and "; - } - $arrayPDO = array_merge($arrayPDO, array(":valueCustom_".$customFieldId."_".$j => $_REQUEST[$tab_id_fields[$j]])); - } elseif ($customField['type'] == 'string') { - $where_request .= " (custom_fields->>'".$customFieldId."' ilike (:valueCustom_".$customFieldId.")) and "; - $arrayPDO = array_merge($arrayPDO, array(":valueCustom_".$customFieldId => '%'.$_REQUEST[$tab_id_fields[$j]].'%')); - } elseif ($customField['type'] == 'integer') { - if (strpos($tab_id_fields[$j], '_min') !== false) { - $where_request .= " (custom_fields->'".$customFieldId."' >= :valueCustom_".$customFieldId."_".$j.") and "; - } elseif (strpos($tab_id_fields[$j], '_max') !== false) { - $where_request .= " (custom_fields->'".$customFieldId."' <= :valueCustom_".$customFieldId."_".$j.") and "; - } - $arrayPDO = array_merge($arrayPDO, array(":valueCustom_".$customFieldId."_".$j => $_REQUEST[$tab_id_fields[$j]])); - } - } - } - - $json_txt = preg_replace('/,$/', '', $json_txt); - $json_txt .= "}},"; - } - $json_txt = preg_replace('/,$/', '', $json_txt); -} -$json_txt = preg_replace("/,$/", "", $json_txt); -$json_txt .= '}'; - - -$_SESSION['current_search_query'] = $json_txt; -if (!empty($_SESSION['error_search'])) { - $_SESSION['error'] = _MUST_CORRECT_ERRORS.' : '.$_SESSION['error_search']; - - if ($mode == 'normal') { - ?> -<script type="text/javascript"> - window.top.location.href = '<?php echo $_SESSION['config']['businessappurl'].'index.php?page=search_adv&dir=indexing_searching'; ?>'; -</script> -<?php - } else { - ?> -<script type="text/javascript"> - window.top.location.href = '<?php echo $_SESSION['config']['businessappurl'].'index.php?display=true&dir=indexing_searching&page=search_adv&mode='.$mode; ?>'; -</script> -<?php - } - exit(); -} else { - if ($where_request_welcome <> '') { - // $where_request_welcome = substr($where_request_welcome, 0, -4); - $where_request .= '(' . $where_request_welcome . ') and '; - } - $where_request = trim($where_request); - $_SESSION['searching']['where_request'] = $where_request; - $_SESSION['searching']['where_request_parameters'] = $arrayPDO; -} -if (empty($_SESSION['error_search'])) { - //################## - $page = 'list_results_mlb'; ?> -<script type="text/javascript"> - window.top.location.href = '<?php if ($mode == 'normal') { - echo $_SESSION['config']['businessappurl'].'index.php?page='.$page.'&dir=indexing_searching&load'; - } elseif ($mode=='frame' || $mode == 'popup') { - echo $_SESSION['config']['businessappurl'].'index.php?display=true&dir=indexing_searching&page='.$page.'&mode='.$mode.'&action_form='.$_REQUEST['action_form'].'&modulename='.$_REQUEST['modulename']; - } - if (isset($_REQUEST['nodetails'])) { - echo '&nodetails'; - } ?>'; -</script> -<?php - exit(); -} -$_SESSION['error_search'] = ''; diff --git a/apps/maarch_entreprise/indexing_searching/users_list_by_name_search.php b/apps/maarch_entreprise/indexing_searching/users_list_by_name_search.php deleted file mode 100755 index ea29eaaf20aaad68494c4f82914fac5ac8d58fa1..0000000000000000000000000000000000000000 --- a/apps/maarch_entreprise/indexing_searching/users_list_by_name_search.php +++ /dev/null @@ -1,65 +0,0 @@ -<?php -/* -* Copyright 2008,2009 Maarch -* -* This file is part of Maarch Framework. -* -* Maarch Framework 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. -* -* Maarch Framework 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 Maarch Framework. If not, see <http://www.gnu.org/licenses/>. -*/ - -/** -* @brief List of users for autocompletion -* -* -* @file -* @author Laurent Giovannoni <dev@maarch.org> -* @date $date$ -* @version $Revision$ -* @ingroup admin -*/ - -$db = new Database(); -$stmt = $db->query( - "select lastname, firstname, user_id from ".$_SESSION['tablename']['users'] - . " where (" - . "lower(lastname) like lower(:what) " - . " or lower(firstname) like lower(:what) " - . " or lower(user_id) like lower(:what) " - . ") and status <> 'DEL'" - . " order by lastname, firstname", - array(':what' => $_REQUEST['what'] . "%") -); - -$listArray = array(); -while ($line = $stmt->fetchObject()) { - $listArray[$line->user_id] = functions::show_string($line->lastname)." ".functions::show_string($line->firstname); -} -echo "<ul>\n"; -$authViewList = 0; -$flagAuthView = false; -foreach($listArray as $key => $what) -{ - if(isset($authViewList) && $authViewList>= 10) - { - $flagAuthView = true; - } - echo "<li id='".$key."'>".$what."</li>\n"; - if($flagAuthView) - { - echo "<li>...</li>\n"; - break; - } - $authViewList++; -} -echo "</ul>"; diff --git a/apps/maarch_entreprise/keycloakConnect.php b/apps/maarch_entreprise/keycloakConnect.php deleted file mode 100644 index 9a5d21751a1fa0f18c11726fed07706d03382344..0000000000000000000000000000000000000000 --- a/apps/maarch_entreprise/keycloakConnect.php +++ /dev/null @@ -1,68 +0,0 @@ -<?php - -require 'vendor/autoload.php'; - -$keycloakConfig = \SrcCore\models\CoreConfigModel::getKeycloakConfiguration(); - -if (empty($keycloakConfig)) { - echo _MISSING_KEYCLOAK_CONFIG; - exit; -} - -if (empty($keycloakConfig['authServerUrl']) || empty($keycloakConfig['realm']) || empty($keycloakConfig['clientId']) || empty($keycloakConfig['clientSecret']) || empty($keycloakConfig['redirectUri'])) { - echo _MISSING_KEYCLOAK_CONFIG; - exit; -} - -$provider = new \Stevenmaguire\OAuth2\Client\Provider\Keycloak($keycloakConfig); - -if (!isset($_GET['code'])) { - // If we don't have an authorization code then get one - $authUrl = $provider->getAuthorizationUrl(); - $_SESSION['oauth2state'] = $provider->getState(); - header('Location: '.$authUrl); - - exit; - -// Check given state against previously stored one to mitigate CSRF attack -} elseif (empty($_GET['state']) || ($_GET['state'] !== $_SESSION['oauth2state'])) { - - unset($_SESSION['oauth2state']); - header('Location: '.$keycloakConfig['redirectUri']); - exit; - -} else { - - // Try to get an access token (using the authorization coe grant) - try { - $token = $provider->getAccessToken('authorization_code', [ - 'code' => $_GET['code'] - ]); - } catch (Exception $e) { -// exit('Failed to get access token: '.$e->getMessage()); - header('Location: '.$keycloakConfig['redirectUri']); - exit; - } - - try { - // We got an access token, let's now get the user's details - $user = $provider->getResourceOwner($token); - - $userMaarch = \User\models\UserModel::getByLogin(['login' => $user->getId()]); - - if (empty($userMaarch)) { - echo _USER_NOT_IN_APP; - } else { - $_SESSION['keycloak']['userId'] = $user->getId(); - $_SESSION['keycloak']['accessToken'] = $token->getToken(); - unset($_REQUEST['code']); - unset($_REQUEST['state']); - unset($_REQUEST['session_state']); - header("location: log.php"); - } - } catch (Exception $e) { -// exit('Failed to get resource owner: '.$e->getMessage()); - header('Location: '.$keycloakConfig['redirectUri']); - exit; - } -} diff --git a/apps/maarch_entreprise/loadNoteList.php b/apps/maarch_entreprise/loadNoteList.php deleted file mode 100755 index ca9701b957428d28ca461836653c122ded36c291..0000000000000000000000000000000000000000 --- a/apps/maarch_entreprise/loadNoteList.php +++ /dev/null @@ -1,155 +0,0 @@ -<?php - -/** -* Copyright Maarch since 2008 under licence GPLv3. -* See LICENCE.txt file at the root folder for more details. -* This file is part of Maarch software. -* -*/ - -/** -* @brief load Notes in results list -* @author <dev@maarch.org> -* @ingroup notes -*/ - -require_once 'core/class/class_core_tools.php'; -require_once "modules" . DIRECTORY_SEPARATOR . "notes" . DIRECTORY_SEPARATOR - . "class" . DIRECTORY_SEPARATOR - . "class_modules_tools.php"; -$Core_Tools = new core_tools; -$Core_Tools->load_lang(); -$Core_Tools->test_user(); - -$return = ''; - -if (isset($_REQUEST['identifier'])) { - $status = 0; - $return .= '<td>'; - $return .= '<div align="center">'; - $return .= '<table width="97%%">'; - - $db = new Database(); - - $query = "SELECT "; - $query .= "DISTINCT(notes.id), "; - $query .= "user_id, "; - $query .= "creation_date, "; - $query .= "note_text "; - $query .= "FROM "; - $query .= "notes "; - $query .= "left join "; - $query .= "note_entities "; - $query .= "on "; - $query .= "notes.id = note_entities.note_id "; - $query .= "WHERE "; - $query .= "identifier = ? "; - $arrayPDO = [$_REQUEST['identifier']]; - $query .= "AND "; - $query .= "( "; - $query .= "( "; - $query .= "item_id IN ("; - - if (!empty($_SESSION['user']['entities'])) { - foreach ($_SESSION['user']['entities'] as $entitiestmpnote) { - $query .= "?, "; - $arrayPDO = array_merge($arrayPDO, array($entitiestmpnote['ENTITY_ID'])); - } - $query = substr($query, 0, -2); - } else { - $query .= "''"; - } - - $stmt3 = $db->query("SELECT id FROM USERS WHERE user_id = ?", array($_SESSION['user']['UserId'])); - $userInfo = $stmt3->fetchObject(); - - $query .= ") "; - $query .= "OR "; - $query .= "item_id IS NULL "; - $query .= ") "; - $query .= "OR "; - $query .= "user_id = " . $userInfo->id . " "; - $query .= ") "; - $query .= " order by creation_date desc"; - - $stmt = $db->query($query, $arrayPDO); - - $fetch = ''; - while ($return_db = $stmt->fetchObject()) { - // get lastname and firstname for user_id - $stmt2 = $db->query("SELECT lastname, firstname FROM users WHERE id =?", array($return_db->user_id)); - while ($user_db = $stmt2->fetchObject()) { - $lastname = $user_db->lastname; - $firstname = $user_db->firstname; - } - $stmt3 = $db->query("SELECT notes.id as id, identifier, note_text, item_id, entity_label FROM notes, note_entities, entities WHERE identifier = ? AND note_id = notes.id AND entities.entity_id = note_entities.item_id and notes.id = ?", array($_REQUEST['identifier'], $return_db->id)); - $entity_label = ''; - $Tabentity = []; - while ($entity = $stmt3->fetchObject()) { - $Tabentity[] = $entity->entity_label; - $item_id = $entity->id; - $entity_label = $entity->entity_label; - } - $return .= '<tr>'; - $return .= '<td style="background: transparent; padding-left:30px; padding-right:30px; border: 1px dashed rgb(200, 200, 200);">'; - $return .= '<div style="text-align: right; background-color: rgb(230, 230, 230); padding: 2px;">'; - $allEntity = ''; - foreach ($Tabentity as $value) { - $allEntity .= $value." / "; - } - $notes_tools = new notes(); - $noteEntities = $notes_tools->getNotesEntities($return_db->id); - $tabEntityLabel = []; - $tabEntityId = []; - $allEntities = ''; - $allEntitiesId = ''; - - foreach ($noteEntities as $value) { - $tabEntityLabel[] = $value->short_label; - $tabEntityId[] = $value->entity_id; - } - - if (!empty($tabEntityLabel)) { - $allEntities = implode(' - ', $tabEntityLabel); - $allEntitiesId = implode(', ', $tabEntityId); - } - - $return .= functions::xssafe($firstname) . ' ' . functions::xssafe($lastname); - $return .= ', '; - $return .= functions::xssafe($Core_Tools->format_date_db($return_db->creation_date)); - - $return .= '</div>'; - - if ($entity_label != '') { - $return .= '<div style="padding-top:2px;padding-bottom:2px;">'; - $note_text = str_replace(array("\r", "\n"), array("<br />", "<br />"), functions::xssafe($return_db->note_text)); - $return .= str_replace('<br /><br />', '<br />', $note_text); - $return .= '</div>'; - $return .= '<div style="padding-top:2px;padding-bottom:2px;">'; - $return .= '<div style="font-style:italic;clear:both;"><i title="'.$allEntities.'" >'._RESTRICTED_SERVICES.$allEntitiesId.'</i></div>'; - $return .= '</div>'; - } else { - $return .= '<div style="padding-top:2px;padding-bottom:2px;">'; - $note_text = str_replace(array("\r", "\n"), array("<br />", "<br />"), functions::xssafe($return_db->note_text)); - $return .= str_replace('<br /><br />', '<br />', $note_text); - $return .= '</div>'; - } - - $return .= '</td>'; - $return .= '</tr>'; - } - $return .= '</table>'; - $return .= '<br />'; - $return .= '</div>'; - $return .= '</td>'; -} else { - $status = 1; - $return .= '<td colspan="6" style="background-color: red;">'; - $return .= '<p style="padding: 10px; color: black;">'; - $return .= 'Erreur lors du chargement des notes'; - $return .= '</p>'; - $return .= '</td>'; -} - -echo "{status : " . $status . ", toShow : '" . addslashes($return) . "'}"; -exit(); diff --git a/apps/maarch_entreprise/loadRepList.php b/apps/maarch_entreprise/loadRepList.php deleted file mode 100755 index f28dfbfd8479df60c0a65dfb88237a8ce81175c3..0000000000000000000000000000000000000000 --- a/apps/maarch_entreprise/loadRepList.php +++ /dev/null @@ -1,198 +0,0 @@ -<?php - -/** -* Copyright Maarch since 2008 under licence GPLv3. -* See LICENCE.txt file at the root folder for more details. -* This file is part of Maarch software. - -* @brief loadRepList -* @author dev <dev@maarch.org> -* @ingroup apps -*/ - -require_once 'core/class/class_core_tools.php'; -require_once 'apps'.DIRECTORY_SEPARATOR.$_SESSION['config']['app_id'].DIRECTORY_SEPARATOR - .'class'.DIRECTORY_SEPARATOR.'class_users.php'; -$Core_Tools = new core_tools(); -$Core_Tools->load_lang(); - -$users = new class_users(); - -$return = ''; - -if (isset($_REQUEST['res_id_master'])) { - $status = 0; - $return .= '<td colspan="7" style="background-color: #FFF;">'; - $return .= '<div align="center">'; - $return .= '<table width="100%" style="background-color: rgba(100, 200, 213, 0.2);">'; - $return .= '<tr style="font-weight: bold;">'; - $return .= '<th style="font-weight: bold; color: black;" width="150px">'; - $return .= _CHRONO_NUMBER; - $return .= '</th>'; - $return .= '<th style="font-weight: bold; color: black;" width="130px">'; - $return .= _STATUS; - $return .= '</th>'; - $return .= '<th style="font-weight: bold; color: black;" width="180px">'; - $return .= _ATTACHMENT_TYPE; - $return .= '</th>'; - $return .= '<th style="font-weight: bold; color: black;" width="120px">'; - $return .= _CREATION_DATE; - $return .= '</th>'; - $return .= '<th style="font-weight: bold; color: black;" width="120px">'; - $return .= _BACK_DATE; - $return .= '</th>'; - $return .= '<th style="font-weight: bold; color: black;">'; - $return .= _SUBJECT; - $return .= '</th>'; - $return .= '<th style="font-weight: bold; color: black;" width="180px">'; - $return .= _AUTHOR; - $return .= '</th>'; - $return .= '<th style="font-weight: bold; color: black;" width="40px">'; - $return .= _CONSULT; - $return .= '</th>'; - $return .= '</tr>'; - - $db = new Database(); - - $query = "SELECT * FROM res_attachments - WHERE res_id_master = ? - AND status NOT IN ('DEL', 'OBS') AND (status <> 'TMP' or (typist = ? and status = 'TMP')) - ORDER BY creation_date desc"; - $arrayPDO = array($_REQUEST['res_id_master'], $_SESSION['user']['UserId']); - $stmt = $db->query($query, $arrayPDO); - - while ($return_db = $stmt->fetchObject()) { - if (!empty($_REQUEST['option']) && $_REQUEST['option'] == 'FT') { - if ($return_db->format != 'pdf') { - $stmtFullText = $db->query( - 'SELECT res_id FROM res_attachments WHERE filename = ? and attachment_type = ? and path = ? ORDER BY relation desc', - [str_replace('.'.$return_db->format, '.pdf', $return_db->filename), 'converted_pdf', $return_db->path] - ); - $lineFullText = $stmtFullText->fetchObject(); - if ($lineFullText && $lineFullText->res_id != 0) { - $resIdConverted = $lineFullText->res_id; - } - } - $stmt2 = $db->query( - "SELECT count(*) as total FROM res_attachments WHERE res_id = ? and status not in ('DEL','OBS','TMP') and lower(translate(title,'ÀÃÂÃÄÅÆÇÈÉÊËÌÃÃŽÃÃÑÒÓÔÕÖØÙÚÛÜÃÞßà áâãäåæçèéêëìÃîïðñòóôõöøùúûýýþÿŔŕ','aaaaaaaceeeeiiiidnoooooouuuuybsaaaaaaaceeeeiiiidnoooooouuuyybyRr')) like lower(?)", - array($return_db->res_id, $_SESSION['searching']['where_request_parameters'][':subject']) - ); - $res_attach = $stmt2->fetchObject(); - - if (!empty($_SESSION['fullTextAttachments']['attachments']) && in_array($return_db->res_id, $_SESSION['fullTextAttachments']['attachments'])) { - $return .= '<tr style="border: 1px solid;color: #135F7F;font-weight: bold" style="background-color: #FFF;">'; - } elseif (!empty($resIdConverted) && !empty($_SESSION['fullTextAttachments']['attachments']) && in_array($resIdConverted, $_SESSION['fullTextAttachments']['attachments'])) { - $return .= '<tr style="border: 1px solid;color: #135F7F;font-weight: bold" style="background-color: #FFF;">'; - } elseif ($res_attach->total > 0) { - $return .= '<tr style="border: 1px solid;color: #135F7F;font-weight: bold" style="background-color: #FFF;">'; - } else { - $return .= '<tr style="border: 1px solid;" style="background-color: #FFF;">'; - } - } elseif (!empty($_REQUEST['option']) && $_REQUEST['option'] == 'baskets' - && $return_db->status == 'EXP_RTURN' && $return_db->validation_date && $return_db->validation_date < date('Y-m-d')) { - $return .= '<tr style="border: 1px solid;color: red;" style="background-color: #FFF;">'; - } else { - $return .= '<tr style="border: 1px solid;" style="background-color: #FFF;">'; - } - $return .= '<td>'; - $return .= ' '; - $return .= functions::xssafe($return_db->identifier); - $return .= '</td>'; - $return .= '<td>'; - $return .= ' '; - $query = 'SELECT label_status FROM status WHERE id =?'; - $arrayPDO = array($return_db->status); - $stmt2 = $db->query($query, $arrayPDO); - while ($status_db = $stmt2->fetchObject()) { - $return .= functions::xssafe($status_db->label_status); - } - $return .= '</td>'; - $return .= '<td>'; - $return .= ' '; - $attachment_types_valeur = $return_db->attachment_type; - $return .= functions::xssafe($_SESSION['attachment_types'][$attachment_types_valeur]); - $return .= '</td>'; - $return .= '<td>'; - $return .= ' '; - sscanf(substr($return_db->creation_date, 0, 10), '%4s-%2s-%2s', $date_Y, $date_m, $date_d); - switch ($date_m) { - case '01': $date_m_txt = _JANUARY; break; - case '02': $date_m_txt = _FEBRUARY; break; - case '03': $date_m_txt = _MARCH; break; - case '04': $date_m_txt = _APRIL; break; - case '05': $date_m_txt = _MAY; break; - case '06': $date_m_txt = _JUNE; break; - case '07': $date_m_txt = _JULY; break; - case '08': $date_m_txt = _AUGUST; break; - case '09': $date_m_txt = _SEPTEMBER; break; - case '10': $date_m_txt = _OCTOBER; break; - case '11': $date_m_txt = _NOVEMBER; break; - case '12': $date_m_txt = _DECEMBER; break; - default: $date_m_txt = $date_m; - } - $return .= functions::xssafe($date_d.' '.$date_m_txt.' '.$date_Y); - $return .= '</td>'; - $return .= '<td>'; - $return .= ' '; - if ($return_db->validation_date) { - sscanf(substr($return_db->validation_date, 0, 10), '%4s-%2s-%2s', $date_Y, $date_m, $date_d); - switch ($date_m) { - case '01': $date_m_txt = _JANUARY; break; - case '02': $date_m_txt = _FEBRUARY; break; - case '03': $date_m_txt = _MARCH; break; - case '04': $date_m_txt = _APRIL; break; - case '05': $date_m_txt = _MAY; break; - case '06': $date_m_txt = _JUNE; break; - case '07': $date_m_txt = _JULY; break; - case '08': $date_m_txt = _AUGUST; break; - case '09': $date_m_txt = _SEPTEMBER; break; - case '10': $date_m_txt = _OCTOBER; break; - case '11': $date_m_txt = _NOVEMBER; break; - case '12': $date_m_txt = _DECEMBER; break; - default: $date_m_txt = $date_m; - } - $return .= functions::xssafe($date_d.' '.$date_m_txt.' '.$date_Y); - } else { - $return .= '-'; - } - $return .= '</td>'; - $return .= '<td>'; - $return .= ' '; - $return .= functions::xssafe($return_db->title); - $return .= '</td>'; - $return .= '<td>'; - $return .= ' '; - $current_user = $users->get_user($return_db->typist); - $return .= functions::xssafe($current_user['firstname']) - .' '.functions::xssafe($current_user['lastname']); - $return .= '</td>'; - $return .= '<td>'; - $return .= ' '; - $return .= '<a '; - $return .= 'href="'; - $return .= 'index.php?display=true&module=attachments&page=view_attachment&id='.$return_db->res_id.'&res_id_master=' - .functions::xssafe($_REQUEST['res_id_master']); - $return .= '" '; - $return .= 'target="_blank" '; - $return .= '>'; - $return .= '<i class="fa fa-download fa-2x" title="'._VIEW_DOC.'"></i>'; - $return .= '</a>'; - $return .= '</td>'; - $return .= '</tr>'; - } - - $return .= '</table>'; - $return .= '<br />'; - $return .= '</div>'; - $return .= '</td>'; -} else { - $status = 1; - $return .= '<td colspan="6" style="background-color: red;">'; - $return .= '<p style="padding: 10px; color: black;">'; - $return .= 'Error loading attachments'; - $return .= '</p>'; - $return .= '</td>'; -} - -echo '{status : '.$status.", toShow : '".addslashes($return)."'}"; -exit(); diff --git a/apps/maarch_entreprise/shibbolethConnect.php b/apps/maarch_entreprise/shibbolethConnect.php deleted file mode 100755 index cf9ce2a49340ec8f2411b553ecc2108db8af8602..0000000000000000000000000000000000000000 --- a/apps/maarch_entreprise/shibbolethConnect.php +++ /dev/null @@ -1,52 +0,0 @@ -<?php - -//require 'vendor/autoload.php'; -//$shibbolethConfig = \SrcCore\models\CoreConfigModel::getShibbolethConfiguration(); - -//test if no shibboleth authentication -//$_SERVER['REMOTE_USER'] = ''; -//test if user doesn't exists -//$_SERVER['REMOTE_USER'] = 'aUserTest'; - -if ($_SERVER['REMOTE_USER'] <> '' && $_SERVER['AUTH_TYPE'] = 'shibboleth') { - $login = $_SERVER['REMOTE_USER']; - $password = 'aFakePass'; - - require_once('core/class/class_core_tools.php'); - require_once 'core/class/class_security.php'; - require_once 'core/class/class_db_pdo.php'; - $core = new core_tools(); - $sec = new security(); - - $database = new Database(); - $stmt = $database->query("SELECT 1 FROM users WHERE user_id ILIKE ?", array($login)); - $result = $stmt->fetch(); - - if ($result) { - $_SESSION['error'] = ''; - - $res = $sec->login($login, $password, 'shibboleth'); - - $_SESSION['user'] = $res['user']; - - if (empty($_SESSION['error'])) { - $_SESSION['error'] = $res['error']; - } - - if ($res['error'] == '') { - \SrcCore\models\AuthenticationModel::setCookieAuth(['userId' => $login]); - //login OK - $trace = new history(); - header('location: ' . $_SESSION['config']['businessappurl']. $res['url']); - exit(); - } else { - $_SESSION['error'] = $res['error']; - echo $_SESSION['error']; - exit; - } - } else { - $_SESSION['error'] = _USER_NOT_EXIST . ' ' . $login; - echo $_SESSION['error']; - exit; - } -} diff --git a/apps/maarch_entreprise/sso_connect.php b/apps/maarch_entreprise/sso_connect.php deleted file mode 100755 index b1ddb497021afa1d162a80ded3cacf2d268d141d..0000000000000000000000000000000000000000 --- a/apps/maarch_entreprise/sso_connect.php +++ /dev/null @@ -1,536 +0,0 @@ -<?php -require_once('core' . DIRECTORY_SEPARATOR . 'class' - . DIRECTORY_SEPARATOR . 'class_core_tools.php'); -require_once('core' . DIRECTORY_SEPARATOR . 'class' - . DIRECTORY_SEPARATOR . 'class_request.php'); -require_once('core' . DIRECTORY_SEPARATOR . 'class' - . DIRECTORY_SEPARATOR . 'users_controler.php'); -require_once('core' . DIRECTORY_SEPARATOR . 'class' - . DIRECTORY_SEPARATOR . 'class_security.php'); -require_once('core' . DIRECTORY_SEPARATOR . 'core_tables.php'); - - - -//Pour la gestion des TRACES -require_once('core' . DIRECTORY_SEPARATOR . 'class' - . DIRECTORY_SEPARATOR . 'class_history.php'); - -//Pour les actions sur les entités -require_once('modules/entities/class/EntityControler.php'); - -//Pour les actions sur les Services -require_once 'core/class/ServiceControler.php'; -require_once 'apps/maarch_entreprise/class/class_business_app_tools.php'; - - -$core = new core_tools(); - -if (isset($_SESSION['error']) && !empty($_SESSION['error'])) { - echo functions::xssafe($_SESSION['error']); - $_SESSION['error'] = ''; - exit; -} - -////////////////////////////////////////////////////////////////////// -/*************** Récupération entêtes *******************************/ -// Récupération du XML qui correspond à la structure de la requete // -////////////////////////////////////////////////////////////////////// - -/* -if (isset($_SESSION['HTTP_REQUEST'])) { - //$core->show_array($_SESSION['HTTP_REQUEST']); -} -*/ - -/**********************************************************************/ -/**** TEST & RECUPERATION DU FICHIER DE CONFIG ****/ -if (file_exists($_SESSION['config']['corepath'] . 'custom' . - DIRECTORY_SEPARATOR . $_SESSION['custom_override_id'] . - DIRECTORY_SEPARATOR . 'apps' . DIRECTORY_SEPARATOR . - $_SESSION['config']['app_id'] . DIRECTORY_SEPARATOR . 'xml' . - DIRECTORY_SEPARATOR . 'mapping_sso.xml') -) { - $xmlPath = $_SESSION['config']['corepath'] . 'custom' . DIRECTORY_SEPARATOR - . $_SESSION['custom_override_id'] . DIRECTORY_SEPARATOR . 'apps' - . DIRECTORY_SEPARATOR . $_SESSION['config']['app_id'] - . DIRECTORY_SEPARATOR . 'xml' . DIRECTORY_SEPARATOR . 'mapping_sso.xml'; -} elseif (file_exists($_SESSION['config']['corepath'] . 'apps' - . DIRECTORY_SEPARATOR . $_SESSION['config']['app_id'] - . DIRECTORY_SEPARATOR . 'xml' . DIRECTORY_SEPARATOR . - 'mapping_sso.xml') -) { - $xmlPath = $_SESSION['config']['corepath'] . 'apps' - . DIRECTORY_SEPARATOR . $_SESSION['config']['app_id'] - . DIRECTORY_SEPARATOR . 'xml' . DIRECTORY_SEPARATOR . 'mapping_sso.xml'; -} else { - echo _XML_FILE_NOT_EXISTS; - exit; -} - -$xmlconfig = simplexml_load_file($xmlPath); -$loginRequestArray = array(); -$loginRequestArray = $core->object2array($xmlconfig); -//$core->show_array($loginRequestArray); - - -// Pour les traces -$trace = new history(); - - -/**********************************************************************/ -/**** OBLIGATORY ATTRIBUTES ****/ - -// Read XML SSO CONFIG -$xml = read_ssoXml($xmlPath, "ROOT", array("OBLIGATORY_USERUID", - "OBLIGATORY_USERFIRSTNAME", - "OBLIGATORY_USERLASTNAME", - "OBLIGATORY_CODEUNIT", - "OBLIGATORY_MAIL", - "OBLIGATORY_NIGEND", - "OBLIGATORY_PROFIL", - "OBLIGATORY_ENTITY", - "USER_SEP_TOKEN", - "PROFIL_SEP_TOKEN", - "ENTITY_SEP_TOKEN", - "CODE_USERUID", - "CODE_USERFIRSTNAME", - "CODE_USERLASTNAME", - "CODE_NIGEND", - "CODE_CODEUNIT", - "CODE_MAIL", - "CODE_PROFIL", - "CODE_ENTITY", - "CODE_DATABASE")); - -$loginArray = array(); -$recordProfils=""; - -foreach ($xml as $row) { - $loginArray['userUidRequired'] = $row[0]; - $loginArray['userFirstNameRequired'] = $row[1]; - $loginArray['userLastNameRequired'] = $row[2]; - $loginArray['codeUnitRequired'] = $row[3]; - $loginArray['mailRequired'] = $row[4]; - $loginArray['nigendRequired'] = $row[5]; - $loginArray['profilRequired'] = $row[6]; - $loginArray['entityRequired'] = $row[7]; - $loginArray['user_separator'] = $row[8]; - $loginArray['profil_separator'] = $row[9]; - $loginArray['entity_separator'] = $row[10]; - - $loginArray['userUidRequiredError'] = $row[11]; - $loginArray['userFirstNameRequiredError'] = $row[12]; - $loginArray['userLastNameRequiredError'] = $row[13]; - $loginArray['nigendRequiredError'] = $row[14]; - $loginArray['codeUnitRequiredError'] = $row[15]; - $loginArray['mailRequiredError'] = $row[16]; - $loginArray['profilRequiredError'] = $row[17]; - $loginArray['entityRequiredError'] = $row[18]; - $loginArray['databaseError'] = $row[19]; -} - -/**********************************************************************/ -/**** GET HEADERS ****/ - -// Call the function -$headers = getHeaders() ; - -$profilArray = array(); -foreach ($headers as $k => $v) { - //DEBUG - //echo "$k = ".base64_decode($v)."<br/>\n" ; - - switch ($k) { - case "USER_UID": - $loginArray['userUid'] = base64_decode($v); - break; - - - case "USER_FIRSTNAME": - $loginArray['FirstName'] = base64_decode($v); - break; - - - case "USER_LASTNAME": - $loginArray['LastName'] = base64_decode($v); - break; - - - case "NIGEND": - $loginArray['UserId'] = base64_decode($v); - break; - - - case "UNITE_CODE": - $loginArray['department'] = base64_decode($v); - break; - - - case "USER_MAIL": - $loginArray['Mail'] = base64_decode($v); - break; - - - case "PROFILS": - $profilArray = fillProfilArray($loginArray, base64_decode($v)); - $recordProfils=base64_decode($v); - - $loginArray['userGroup'] =$profilArray; - break; - - - case "ENTITIES": - $entityArray = fillEntityArray($loginArray, base64_decode($v)); - $recordEntities=base64_decode($v); - - $loginArray['Entities'] =$entityArray; - //$loginArray['userEntity'] =$entityArray; - break; - } -} - -/**********************************************************************/ -/**** MANAGEMENT OF ERRORS ****/ - -$_SESSION['error'] = ''; - -if ($loginArray['userUidRequired']=="true") { - if (!$loginArray['userUid']) { - $_SESSION['error'] .= ' UID' . ' ' . _MISSING; - $errorId=$loginArray['userUidRequiredError']; - } -} - -if ($loginArray['userFirstNameRequired']=="true") { - if (!$loginArray['FirstName']) { - $_SESSION['error'] .= _FIRSTNAME . ' ' . _MISSING; - $errorId=$loginArray['userFirstNameRequiredError']; - } -} - -if ($loginArray['userLastNameRequired']=="true") { - if (!$loginArray['LastName']) { - $_SESSION['error'] .= _LASTNAME . ' ' . _MISSING; - $errorId=$loginArray['userLastNameRequiredError']; - } -} - -if ($loginArray['nigendRequired']=="true") { - if (!$loginArray['UserId']) { - $_SESSION['error'] .= _NIGEND . ' ' . _MISSING; - $errorId=$loginArray['nigendRequiredError']; - } -} - -if ($loginArray['codeUnitRequired']=="true") { - if (!$loginArray['department']) { - $_SESSION['error'] .= _CODEUNIT . ' ' . _MISSING; - $errorId=$loginArray['codeUnitRequiredError']; - } -} - -if ($loginArray['mailRequired']=="true") { - if (!$loginArray['Mail']) { - $_SESSION['error'] .=_EMAIL . ' ' . _MISSING; - $errorId=$loginArray['mailRequiredError']; - } -} - -if ($loginArray['profilRequired']=="true") { - if (!$loginArray['userGroup']) { - $_SESSION['error'] .= _GROUP_ID . ' ' . _MISSING; - $errorId=$loginArray['profilRequiredError']; - } -} - -if ($loginArray['entityRequired']=="true") { - if (!$loginArray['Entities']) { - $_SESSION['error'] .= _ENTITY_ID . ' ' . _MISSING; - $errorId=$loginArray['entityRequiredError']; - } -} - -/**********************************************************************/ -/**** GESTION DES ERREURS ****/ - -if (isset($_SESSION['error']) && $_SESSION['error'] <> '') { - - //Traces techniques - $trace->add( - "users", - $loginArray['UserId'], - "LOGIN", - 'userlogin', - _CONNECTION_SSO_FAILED . - " CodeError " . $errorId . " : " .$_SESSION['error'], - $_SESSION['config']['databasetype'], - "ADMIN", - true - ); - - header("location: " . $loginRequestArray['WEB_SSO_URL'] - . "index.php?errorId=" . $errorId - . "&errorMsg=" . $_SESSION['error']); - exit; -} - -/**********************************************************************/ -/**** USER ALREADY EXISTS?? ****/ - -$temoinUpdate = 0;// Témoin Update pour conserver le format du password - //et ne pas toucher à log.php - -$db = new Database(); -$query = "SELECT user_id FROM " . USERS_TABLE - . " WHERE user_id = ?"; -$stmt = $db->query($query, array($loginArray['UserId'])); - -/**********************************************************************/ -/**** SAVE FUNCTIONS ****/ - -/*** Login = nigend et mode de passe = "$".nigend."*" ***/ -$loginArray['password'] = '$' . $loginArray['UserId'] . '*'; - -/*** Fill user object to update it ***/ -$userObject = fillUserObject($loginArray); -$groupArray = fillGroupArray($loginArray, $recordProfils); - -//DEBUG -//var_dump($userObject); - -$params = array( - 'modules_services' => $_SESSION['modules_services'], - 'log_user_up' => $_SESSION['history']['usersup'], - 'log_user_add' => $_SESSION['history']['usersadd'], - 'databasetype' => $_SESSION['config']['databasetype'], - 'userdefaultpassword' => $loginArray['password'], -); - -$uc = new users_controler(); - -/**********************************************************************/ -/**** UPDATE OR INSERT ?? ****/ - -if ($stmt->rowCount() > 0) { - $sec = new security(); - $userObject->password = $sec->getPasswordHash($loginArray['password']); - - //user exists, so update it - $control = $uc->save($userObject, $groupArray, 'up', $params); - $temoinUpdate = 1; -} else { - //user doesn't exists, so create it - $control = $uc->save($userObject, $groupArray, 'add', $params); -} -if ($temoinUpdate > 0) { - $userObject->password = $loginArray['password']; -} - -if (!empty($control['error']) && $control['error'] <> 1) { - //echo $control['error'];exit; - - //Traces fonctionnelles - $trace->add( - "users", - $loginArray['UserId'], - "LOGIN", - _CONNECTION_SSO_FAILED . - " CodeError " . $loginArray['databaseError'] . - " : " .$_SESSION['error'], - $_SESSION['config']['databasetype'], - "ADMIN", - true - ); - header("location: " . $loginRequestArray['WEB_SSO_URL'] - . "index.php?errorId=" . $loginArray['databaseError']); - exit; -} else { - - /**/ - //fill user entities - $entityCtrl = new EntityControler(); - $entityCtrl->cleanUsersentities($loginArray['UserId'], 'user_id'); - $entityCtrl->loadDbUsersentities( - $loginArray['UserId'], - $entityArray - ); - - - // Get the corresponding services - $serv_controler = new ServiceControler(); - $serv_controler->loadEnabledServices(); - $business_app_tools = new business_app_tools(); - $core_tools = new core_tools(); - - $business_app_tools->load_app_var_session($loginArray); - $core_tools->load_var_session($_SESSION['modules'], $loginArray); - $loginArray['services'] = - $serv_controler->loadUserServices($loginArray['UserId']); - - - /**********************************************************************/ - /**** CONNECTION A MAARCH ****/ - $_SESSION['web_sso_url'] = $loginRequestArray['WEB_SSO_URL']; - $_SESSION['sso']['userId'] = $loginArray['UserId']; - header("location: " . $_SESSION['config']['businessappurl'] - . "log.php"); - - //Traces fonctionnelles - $trace->add( - "users", - $loginArray['UserId'], - "LOGIN", - _CONNECTION_SSO_OK, - $_SESSION['config']['databasetype'], - "ADMIN", - false - ); - exit(); -} - - -// Create an Object about User -function fillUserObject($loginArray) -{ - $user = new users(); - $user->user_id = $loginArray['UserId']; - $user->password = $loginArray['password']; - - - $user->firstname = $loginArray['FirstName']; - $user->lastname = $loginArray['LastName']; - - $user->department = $loginArray['department']; - $user->mail = $loginArray['Mail']; - $user->loginmode = 'sso'; - return $user; -} - -// Function to separate Last Name & First Name -function fillUserArray($sep, $nameConcat) -{ - $fullName = array(); - $tmp = array(); - $tmp = explode($sep, $nameConcat); - - $fullName['FIRSTNAME'] = $tmp[0]; - $fullName['LASTNAME'] = $tmp[1]; - - return $fullName; -} - -// Function to record groups in the array -function fillProfilArray($loginArray, $headerProfil) -{ - $groupArray = array(); - $tmp = array(); - $tmp = explode($loginArray['profil_separator'], $headerProfil); - - for ($cpt = 0;$cpt < count($tmp);$cpt++) { - if ($cpt == 0) { - $primaryGroup = 'Y'; - } else { - $primaryGroup = 'N'; - } - array_push( - $groupArray, - array( - 'GROUP_ID' => $tmp[$cpt], - 'PRIMARY' => $primaryGroup, - 'ROLE' => '', - ) - ); - } - return $groupArray; -} - -// Function to record entities in the array -function fillEntityArray($loginArray, $headerEntity) -{ - $entityArray = array(); - $tmp = array(); - $tmp = explode($loginArray['entity_separator'], $headerEntity); - - for ($cpt = 0;$cpt < count($tmp);$cpt++) { - if ($cpt == 0) { - $primaryEntity = 'Y'; - } else { - $primaryEntity = 'N'; - } - array_push( - $entityArray, - array( - 'ENTITY_ID' => $tmp[$cpt], - 'PRIMARY' => $primaryEntity, - 'ROLE' => '', - ) - ); - } - return $entityArray; -} - -// Function to collect all headers -function getHeaders() -{ - foreach ($_SERVER as $h => $v) { - if (strpos($h, 'HTTP_') === 0) { - $headers[substr($h, 5)] = $v ; - } - // $headers[$h] = $v; - } - return $headers; -} - -// Get the XML -function read_ssoXml($fichier, $item, $champs) -{ - if ($chaine = @implode("", @file($fichier))) { - $tmp = preg_split("/<\/?".$item.">/", $chaine); - - for ($i=1;$i<sizeof($tmp)-1;$i+=2) { - foreach ($champs as $champ) { - $tmp2 = preg_split("/<\/?".$champ.">/", $tmp[$i]); - $tmp3[$i-1][] = @$tmp2[1]; - } - } - return $tmp3; - } -} - - -// Function to record groups in the array (in order to update users) -function fillGroupArray($loginArray, $recordProfils) -{ - $groupArray = []; - - if (empty($loginArray['profil_separator'])) { - return []; - } - $tmp = explode($loginArray['profil_separator'], $recordProfils); - - //$tmp = $loginArray['userGroup']; - - - for ($cpt = 0;$cpt < count($tmp);$cpt++) { - if ($cpt == 0) { - $primaryGroup = 'Y'; - } else { - $primaryGroup = 'N'; - } - - array_push( - $groupArray, - array( - 'USER_ID' => $loginArray['UserId'], - 'GROUP_ID' => $tmp[$cpt], - 'PRIMARY' => $primaryGroup, - 'ROLE' => '', - ) - ); - } - return $groupArray; -} - - -$core->show_array($loginArray); -//exit; diff --git a/apps/maarch_entreprise/standard_connect.php b/apps/maarch_entreprise/standard_connect.php deleted file mode 100755 index 9d9f48e9022b01363170f92092a4b8dfe59f928f..0000000000000000000000000000000000000000 --- a/apps/maarch_entreprise/standard_connect.php +++ /dev/null @@ -1,47 +0,0 @@ -<?php -function getHeaders() -{ - foreach ($_SERVER as $h => $v) { - if (preg_match('/HTTP_(.+)/', $h, $hp)) { - $headers[$hp[1]] = $v ; - } - } - return $headers; -} - -echo '<form id="formlogin" method="post" action="' - . $_SESSION['config']['businessappurl'] - . 'index.php?display=true&page=log'; - if (isset($_SESSION['config']['debug']) - && $_SESSION['config']['debug'] == 'true' - ) { - echo '&XDEBUG_PROFILE'; - } - echo '" class="forms">'; - echo '<div>'; - echo '<input type="hidden" name="display" id="display" value="true" />'; - echo '<input type="hidden" name="page" id="page" value="log" />'; - echo '<p style="margin-bottom: 3px">'; - echo '<br/>'; - echo '<input placeholder="'._ID.'" name="login" id="login" type="text" class="standardConnectInput" />'; - echo '</p>'; - echo '<p>'; - echo '<input placeholder="'._PASSWORD.'" name="pass" id="pass" type="password" class="standardConnectInput" />'; - echo '</p>'; - $loggingMethod = \SrcCore\models\CoreConfigModel::getLoggingMethod(); - if ($loggingMethod['id'] == 'standard') { - echo '<p style="cursor: pointer;font-size: 12px; text-align: right;">'; - echo '<span onclick="triggerAngular(\'#/forgot-password\')">'._FORGOT_PASSWORD.'</span>'; - echo '</p>'; - } - echo '<br><p>'; - echo '<input type="submit" class="button submitButton" name="submit" value="'._CONNECT.'" />'; - echo '</p>'; - echo '<div class="error">'; - if (isset($_SESSION['error'])) { - echo functions::xssafe($_SESSION['error']); - } - $_SESSION['error'] = ''; - echo '</div>'; - echo '</div>'; - echo '</form>'; diff --git a/apps/maarch_entreprise/tools/phpCAS/.gitattributes b/apps/maarch_entreprise/tools/phpCAS/.gitattributes deleted file mode 100755 index 3e28f4e42547c0a169f22cdd635821f6c1aa0cbb..0000000000000000000000000000000000000000 --- a/apps/maarch_entreprise/tools/phpCAS/.gitattributes +++ /dev/null @@ -1,7 +0,0 @@ -/docs/ export-ignore -/test/ export-ignore -/utils/ export-ignore -/.buildpath export-ignore -/.gitignore export-ignore -/.project export-ignore -/.travis.yml export-ignore diff --git a/apps/maarch_entreprise/tools/phpCAS/CAS.php b/apps/maarch_entreprise/tools/phpCAS/CAS.php deleted file mode 100755 index 8cd549ea35c78d4c66ce4fb9cb6b2d7a0e63e007..0000000000000000000000000000000000000000 --- a/apps/maarch_entreprise/tools/phpCAS/CAS.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -/** - * Licensed to Jasig under one or more contributor license - * agreements. See the NOTICE file distributed with this work for - * additional information regarding copyright ownership. - * - * Jasig licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except in - * compliance with the License. You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * PHP Version 5 - * - * @file CAS.php - * @category Authentication - * @package PhpCAS - * @author Adam Franco <afranco@middlebury.edu> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - */ - -require_once dirname(__FILE__).'/source/CAS.php'; \ No newline at end of file diff --git a/apps/maarch_entreprise/tools/phpCAS/LICENSE b/apps/maarch_entreprise/tools/phpCAS/LICENSE deleted file mode 100755 index 261eeb9e9f8b2b4b0d119366dda99c6fd7d35c64..0000000000000000000000000000000000000000 --- a/apps/maarch_entreprise/tools/phpCAS/LICENSE +++ /dev/null @@ -1,201 +0,0 @@ - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. diff --git a/apps/maarch_entreprise/tools/phpCAS/NOTICE b/apps/maarch_entreprise/tools/phpCAS/NOTICE deleted file mode 100755 index 70d9ffcd4c5c5cf06c9356ec2b988d6888441944..0000000000000000000000000000000000000000 --- a/apps/maarch_entreprise/tools/phpCAS/NOTICE +++ /dev/null @@ -1,81 +0,0 @@ -Copyright 2007-2011, JA-SIG, Inc. -This project includes software developed by Jasig. -http://www.jasig.org/ - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this software except in compliance with the License. -You may obtain a copy of the License at: - -http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. - -=========================================================================== - -Copyright © 2003-2007, The ESUP-Portail consortium - -Requirements for sources originally licensed under the New BSD License: - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -- Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - -- Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -- Neither the name of JA-SIG, Inc. nor the names of its contributors may be -used to endorse or promote products derived from this software without -specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE -LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. - -=========================================================================== - -Copyright (c) 2009, Regents of the University of Nebraska -All rights reserved. - -Requirements for CAS_Autloader originally licensed under the New BSD License: - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - -Redistributions of source code must retain the above copyright notice, this list -of conditions and the following disclaimer. - -Redistributions in binary form must reproduce the above copyright notice, this -list of conditions and the following disclaimer in the documentation and/or -other materials provided with the distribution. - -Neither the name of the University of Nebraska nor the names of its contributors -may be used to endorse or promote products derived from this software without -specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE -LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. diff --git a/apps/maarch_entreprise/tools/phpCAS/README.md b/apps/maarch_entreprise/tools/phpCAS/README.md deleted file mode 100755 index 583c1dce87254c33781260ed0e366b6b1c5909b4..0000000000000000000000000000000000000000 --- a/apps/maarch_entreprise/tools/phpCAS/README.md +++ /dev/null @@ -1,31 +0,0 @@ -phpCAS -======= - -phpCAS is an authentication library that allows PHP applications to easily authenticate -users via a Central Authentication Service (CAS) server. - -Please see the phpCAS website for more information: - -https://wiki.jasig.org/display/CASC/phpCAS - -[](https://travis-ci.org/Jasig/phpCAS) - - -LICENSE -------- - -Copyright 2007-2015, JA-SIG, Inc. -This project includes software developed by Jasig. -http://www.jasig.org/ - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this software except in compliance with the License. -You may obtain a copy of the License at: - -http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. diff --git a/apps/maarch_entreprise/tools/phpCAS/composer.json b/apps/maarch_entreprise/tools/phpCAS/composer.json deleted file mode 100755 index 12e95b1ddb8f82d6ea07dfef298808ed3ae73757..0000000000000000000000000000000000000000 --- a/apps/maarch_entreprise/tools/phpCAS/composer.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "name": "jasig/phpcas", - "description": "Provides a simple API for authenticating users against a CAS server", - "keywords": ["cas", "jasig"], - "homepage": "https://wiki.jasig.org/display/CASC/phpCAS", - "type": "library", - "license": "Apache-2.0", - "authors": [ - {"name": "Joachim Fritschi", "homepage": "https://wiki.jasig.org/display/~fritschi"}, - {"name": "Adam Franco", "homepage": "https://wiki.jasig.org/display/~adamfranco"} - ], - "require": { - "php": ">=5.0.0", - "ext-curl": "*" - }, - "require-dev": { - "phpunit/phpunit": "~3.7.10" - }, - "autoload": { - "classmap": [ - "source/" - ] - }, - "extra": { - "branch-alias": { - "dev-master": "1.3.x-dev" - } - } -} diff --git a/apps/maarch_entreprise/tools/phpCAS/source/CAS.php b/apps/maarch_entreprise/tools/phpCAS/source/CAS.php deleted file mode 100755 index e70133985e7889ad9a4553b4a218ff3aa694ffef..0000000000000000000000000000000000000000 --- a/apps/maarch_entreprise/tools/phpCAS/source/CAS.php +++ /dev/null @@ -1,1958 +0,0 @@ -<?php - -/** - * Licensed to Jasig under one or more contributor license - * agreements. See the NOTICE file distributed with this work for - * additional information regarding copyright ownership. - * - * Jasig licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except in - * compliance with the License. You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * - * - * Interface class of the phpCAS library - * PHP Version 5 - * - * @file CAS/CAS.php - * @category Authentication - * @package PhpCAS - * @author Pascal Aubry <pascal.aubry@univ-rennes1.fr> - * @author Olivier Berger <olivier.berger@it-sudparis.eu> - * @author Brett Bieber <brett.bieber@gmail.com> - * @author Joachim Fritschi <jfritschi@freenet.de> - * @author Adam Franco <afranco@middlebury.edu> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - * @ingroup public - */ - - -// -// hack by Vangelis Haniotakis to handle the absence of $_SERVER['REQUEST_URI'] -// in IIS -// -if (php_sapi_name() != 'cli') { - if (!isset($_SERVER['REQUEST_URI'])) { - $_SERVER['REQUEST_URI'] = $_SERVER['SCRIPT_NAME'] . '?' . $_SERVER['QUERY_STRING']; - } -} - -// Add a E_USER_DEPRECATED for php versions <= 5.2 -if (!defined('E_USER_DEPRECATED')) { - define('E_USER_DEPRECATED', E_USER_NOTICE); -} - - -// ######################################################################## -// CONSTANTS -// ######################################################################## - -// ------------------------------------------------------------------------ -// CAS VERSIONS -// ------------------------------------------------------------------------ - -/** - * phpCAS version. accessible for the user by phpCAS::getVersion(). - */ -define('PHPCAS_VERSION', '1.3.4'); - -/** - * @addtogroup public - * @{ - */ - -/** - * CAS version 1.0 - */ -define("CAS_VERSION_1_0", '1.0'); -/*! - * CAS version 2.0 -*/ -define("CAS_VERSION_2_0", '2.0'); -/** - * CAS version 3.0 - */ -define("CAS_VERSION_3_0", '3.0'); - -// ------------------------------------------------------------------------ -// SAML defines -// ------------------------------------------------------------------------ - -/** - * SAML protocol - */ -define("SAML_VERSION_1_1", 'S1'); - -/** - * XML header for SAML POST - */ -define("SAML_XML_HEADER", '<?xml version="1.0" encoding="UTF-8"?>'); - -/** - * SOAP envelope for SAML POST - */ -define("SAML_SOAP_ENV", '<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP-ENV:Header/>'); - -/** - * SOAP body for SAML POST - */ -define("SAML_SOAP_BODY", '<SOAP-ENV:Body>'); - -/** - * SAMLP request - */ -define("SAMLP_REQUEST", '<samlp:Request xmlns:samlp="urn:oasis:names:tc:SAML:1.0:protocol" MajorVersion="1" MinorVersion="1" RequestID="_192.168.16.51.1024506224022" IssueInstant="2002-06-19T17:03:44.022Z">'); -define("SAMLP_REQUEST_CLOSE", '</samlp:Request>'); - -/** - * SAMLP artifact tag (for the ticket) - */ -define("SAML_ASSERTION_ARTIFACT", '<samlp:AssertionArtifact>'); - -/** - * SAMLP close - */ -define("SAML_ASSERTION_ARTIFACT_CLOSE", '</samlp:AssertionArtifact>'); - -/** - * SOAP body close - */ -define("SAML_SOAP_BODY_CLOSE", '</SOAP-ENV:Body>'); - -/** - * SOAP envelope close - */ -define("SAML_SOAP_ENV_CLOSE", '</SOAP-ENV:Envelope>'); - -/** - * SAML Attributes - */ -define("SAML_ATTRIBUTES", 'SAMLATTRIBS'); - -/** - * SAML Attributes - */ -define("DEFAULT_ERROR", 'Internal script failure'); - -/** @} */ -/** - * @addtogroup publicPGTStorage - * @{ - */ -// ------------------------------------------------------------------------ -// FILE PGT STORAGE -// ------------------------------------------------------------------------ -/** - * Default path used when storing PGT's to file - */ -define("CAS_PGT_STORAGE_FILE_DEFAULT_PATH", session_save_path()); -/** @} */ -// ------------------------------------------------------------------------ -// SERVICE ACCESS ERRORS -// ------------------------------------------------------------------------ -/** - * @addtogroup publicServices - * @{ - */ - -/** - * phpCAS::service() error code on success - */ -define("PHPCAS_SERVICE_OK", 0); -/** - * phpCAS::service() error code when the PT could not retrieve because - * the CAS server did not respond. - */ -define("PHPCAS_SERVICE_PT_NO_SERVER_RESPONSE", 1); -/** - * phpCAS::service() error code when the PT could not retrieve because - * the response of the CAS server was ill-formed. - */ -define("PHPCAS_SERVICE_PT_BAD_SERVER_RESPONSE", 2); -/** - * phpCAS::service() error code when the PT could not retrieve because - * the CAS server did not want to. - */ -define("PHPCAS_SERVICE_PT_FAILURE", 3); -/** - * phpCAS::service() error code when the service was not available. - */ -define("PHPCAS_SERVICE_NOT_AVAILABLE", 4); - -// ------------------------------------------------------------------------ -// SERVICE TYPES -// ------------------------------------------------------------------------ -/** - * phpCAS::getProxiedService() type for HTTP GET - */ -define("PHPCAS_PROXIED_SERVICE_HTTP_GET", 'CAS_ProxiedService_Http_Get'); -/** - * phpCAS::getProxiedService() type for HTTP POST - */ -define("PHPCAS_PROXIED_SERVICE_HTTP_POST", 'CAS_ProxiedService_Http_Post'); -/** - * phpCAS::getProxiedService() type for IMAP - */ -define("PHPCAS_PROXIED_SERVICE_IMAP", 'CAS_ProxiedService_Imap'); - - -/** @} */ -// ------------------------------------------------------------------------ -// LANGUAGES -// ------------------------------------------------------------------------ -/** - * addtogroup publicLang - * @{ - */ - -define("PHPCAS_LANG_ENGLISH", 'CAS_Languages_English'); -define("PHPCAS_LANG_FRENCH", 'CAS_Languages_French'); -define("PHPCAS_LANG_GREEK", 'CAS_Languages_Greek'); -define("PHPCAS_LANG_GERMAN", 'CAS_Languages_German'); -define("PHPCAS_LANG_JAPANESE", 'CAS_Languages_Japanese'); -define("PHPCAS_LANG_SPANISH", 'CAS_Languages_Spanish'); -define("PHPCAS_LANG_CATALAN", 'CAS_Languages_Catalan'); - -/** @} */ - -/** - * @addtogroup internalLang - * @{ - */ - -/** - * phpCAS default language (when phpCAS::setLang() is not used) - */ -define("PHPCAS_LANG_DEFAULT", PHPCAS_LANG_ENGLISH); - -/** @} */ -// ------------------------------------------------------------------------ -// DEBUG -// ------------------------------------------------------------------------ -/** - * @addtogroup publicDebug - * @{ - */ - -/** - * The default directory for the debug file under Unix. - */ -function gettmpdir() { -if (!empty($_ENV['TMP'])) { return realpath($_ENV['TMP']); } -if (!empty($_ENV['TMPDIR'])) { return realpath( $_ENV['TMPDIR']); } -if (!empty($_ENV['TEMP'])) { return realpath( $_ENV['TEMP']); } -return "/tmp"; -} -define('DEFAULT_DEBUG_DIR', gettmpdir()."/"); - -/** @} */ - -// include the class autoloader -require_once dirname(__FILE__) . '/CAS/Autoload.php'; - -/** - * The phpCAS class is a simple container for the phpCAS library. It provides CAS - * authentication for web applications written in PHP. - * - * @ingroup public - * @class phpCAS - * @category Authentication - * @package PhpCAS - * @author Pascal Aubry <pascal.aubry@univ-rennes1.fr> - * @author Olivier Berger <olivier.berger@it-sudparis.eu> - * @author Brett Bieber <brett.bieber@gmail.com> - * @author Joachim Fritschi <jfritschi@freenet.de> - * @author Adam Franco <afranco@middlebury.edu> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - */ - -class phpCAS -{ - - /** - * This variable is used by the interface class phpCAS. - * - * @var CAS_Client - * @hideinitializer - */ - private static $_PHPCAS_CLIENT; - - /** - * This variable is used to store where the initializer is called from - * (to print a comprehensive error in case of multiple calls). - * - * @hideinitializer - */ - private static $_PHPCAS_INIT_CALL; - - /** - * This variable is used to store phpCAS debug mode. - * - * @hideinitializer - */ - private static $_PHPCAS_DEBUG; - - /** - * This variable is used to enable verbose mode - * This pevents debug info to be show to the user. Since it's a security - * feature the default is false - * - * @hideinitializer - */ - private static $_PHPCAS_VERBOSE = false; - - - // ######################################################################## - // INITIALIZATION - // ######################################################################## - - /** - * @addtogroup publicInit - * @{ - */ - - /** - * phpCAS client initializer. - * - * @param string $server_version the version of the CAS server - * @param string $server_hostname the hostname of the CAS server - * @param string $server_port the port the CAS server is running on - * @param string $server_uri the URI the CAS server is responding on - * @param bool $changeSessionID Allow phpCAS to change the session_id (Single - * Sign Out/handleLogoutRequests is based on that change) - * - * @return a newly created CAS_Client object - * @note Only one of the phpCAS::client() and phpCAS::proxy functions should be - * called, only once, and before all other methods (except phpCAS::getVersion() - * and phpCAS::setDebug()). - */ - public static function client($server_version, $server_hostname, - $server_port, $server_uri, $changeSessionID = true - ) { - phpCAS :: traceBegin(); - if (is_object(self::$_PHPCAS_CLIENT)) { - phpCAS :: error(self::$_PHPCAS_INIT_CALL['method'] . '() has already been called (at ' . self::$_PHPCAS_INIT_CALL['file'] . ':' . self::$_PHPCAS_INIT_CALL['line'] . ')'); - } - - // store where the initializer is called from - $dbg = debug_backtrace(); - self::$_PHPCAS_INIT_CALL = array ( - 'done' => true, - 'file' => $dbg[0]['file'], - 'line' => $dbg[0]['line'], - 'method' => __CLASS__ . '::' . __FUNCTION__ - ); - - // initialize the object $_PHPCAS_CLIENT - try { - self::$_PHPCAS_CLIENT = new CAS_Client( - $server_version, false, $server_hostname, $server_port, $server_uri, - $changeSessionID - ); - } catch (Exception $e) { - phpCAS :: error(get_class($e) . ': ' . $e->getMessage()); - } - phpCAS :: traceEnd(); - } - - /** - * phpCAS proxy initializer. - * - * @param string $server_version the version of the CAS server - * @param string $server_hostname the hostname of the CAS server - * @param string $server_port the port the CAS server is running on - * @param string $server_uri the URI the CAS server is responding on - * @param bool $changeSessionID Allow phpCAS to change the session_id (Single - * Sign Out/handleLogoutRequests is based on that change) - * - * @return a newly created CAS_Client object - * @note Only one of the phpCAS::client() and phpCAS::proxy functions should be - * called, only once, and before all other methods (except phpCAS::getVersion() - * and phpCAS::setDebug()). - */ - public static function proxy($server_version, $server_hostname, - $server_port, $server_uri, $changeSessionID = true - ) { - phpCAS :: traceBegin(); - if (is_object(self::$_PHPCAS_CLIENT)) { - phpCAS :: error(self::$_PHPCAS_INIT_CALL['method'] . '() has already been called (at ' . self::$_PHPCAS_INIT_CALL['file'] . ':' . self::$_PHPCAS_INIT_CALL['line'] . ')'); - } - - // store where the initialzer is called from - $dbg = debug_backtrace(); - self::$_PHPCAS_INIT_CALL = array ( - 'done' => true, - 'file' => $dbg[0]['file'], - 'line' => $dbg[0]['line'], - 'method' => __CLASS__ . '::' . __FUNCTION__ - ); - - // initialize the object $_PHPCAS_CLIENT - try { - self::$_PHPCAS_CLIENT = new CAS_Client( - $server_version, true, $server_hostname, $server_port, $server_uri, - $changeSessionID - ); - } catch (Exception $e) { - phpCAS :: error(get_class($e) . ': ' . $e->getMessage()); - } - phpCAS :: traceEnd(); - } - - /** - * Answer whether or not the client or proxy has been initialized - * - * @return bool - */ - public static function isInitialized () - { - return (is_object(self::$_PHPCAS_CLIENT)); - } - - /** @} */ - // ######################################################################## - // DEBUGGING - // ######################################################################## - - /** - * @addtogroup publicDebug - * @{ - */ - - /** - * Set/unset debug mode - * - * @param string $filename the name of the file used for logging, or false - * to stop debugging. - * - * @return void - */ - public static function setDebug($filename = '') - { - if ($filename != false && gettype($filename) != 'string') { - phpCAS :: error('type mismatched for parameter $dbg (should be false or the name of the log file)'); - } - if ($filename === false) { - self::$_PHPCAS_DEBUG['filename'] = false; - - } else { - if (empty ($filename)) { - if (preg_match('/^Win.*/', getenv('OS'))) { - if (isset ($_ENV['TMP'])) { - $debugDir = $_ENV['TMP'] . '/'; - } else { - $debugDir = ''; - } - } else { - $debugDir = DEFAULT_DEBUG_DIR; - } - $filename = $debugDir . 'phpCAS.log'; - } - - if (empty (self::$_PHPCAS_DEBUG['unique_id'])) { - self::$_PHPCAS_DEBUG['unique_id'] = substr(strtoupper(md5(uniqid(''))), 0, 4); - } - - self::$_PHPCAS_DEBUG['filename'] = $filename; - self::$_PHPCAS_DEBUG['indent'] = 0; - - phpCAS :: trace('START ('.date("Y-m-d H:i:s").') phpCAS-' . PHPCAS_VERSION . ' ******************'); - } - } - - /** - * Enable verbose errors messages in the website output - * This is a security relevant since internal status info may leak an may - * help an attacker. Default is therefore false - * - * @param bool $verbose enable verbose output - * - * @return void - */ - public static function setVerbose($verbose) - { - if ($verbose === true) { - self::$_PHPCAS_VERBOSE = true; - } else { - self::$_PHPCAS_VERBOSE = false; - } - } - - - /** - * Show is verbose mode is on - * - * @return boot verbose - */ - public static function getVerbose() - { - return self::$_PHPCAS_VERBOSE; - } - - /** - * Logs a string in debug mode. - * - * @param string $str the string to write - * - * @return void - * @private - */ - public static function log($str) - { - $indent_str = "."; - - - if (!empty(self::$_PHPCAS_DEBUG['filename'])) { - // Check if file exists and modifiy file permissions to be only - // readable by the webserver - if (!file_exists(self::$_PHPCAS_DEBUG['filename'])) { - touch(self::$_PHPCAS_DEBUG['filename']); - // Chmod will fail on windows - @chmod(self::$_PHPCAS_DEBUG['filename'], 0600); - } - for ($i = 0; $i < self::$_PHPCAS_DEBUG['indent']; $i++) { - - $indent_str .= '| '; - } - // allow for multiline output with proper identing. Usefull for - // dumping cas answers etc. - $str2 = str_replace("\n", "\n" . self::$_PHPCAS_DEBUG['unique_id'] . ' ' . $indent_str, $str); - error_log(self::$_PHPCAS_DEBUG['unique_id'] . ' ' . $indent_str . $str2 . "\n", 3, self::$_PHPCAS_DEBUG['filename']); - } - - } - - /** - * This method is used by interface methods to print an error and where the - * function was originally called from. - * - * @param string $msg the message to print - * - * @return void - * @private - */ - public static function error($msg) - { - phpCAS :: traceBegin(); - $dbg = debug_backtrace(); - $function = '?'; - $file = '?'; - $line = '?'; - if (is_array($dbg)) { - for ($i = 1; $i < sizeof($dbg); $i++) { - if (is_array($dbg[$i]) && isset($dbg[$i]['class']) ) { - if ($dbg[$i]['class'] == __CLASS__) { - $function = $dbg[$i]['function']; - $file = $dbg[$i]['file']; - $line = $dbg[$i]['line']; - } - } - } - } - if (self::$_PHPCAS_VERBOSE) { - echo "<br />\n<b>phpCAS error</b>: <font color=\"FF0000\"><b>" . __CLASS__ . "::" . $function . '(): ' . htmlentities($msg) . "</b></font> in <b>" . $file . "</b> on line <b>" . $line . "</b><br />\n"; - } else { - echo "<br />\n<b>Error</b>: <font color=\"FF0000\"><b>". DEFAULT_ERROR ."</b><br />\n"; - } - phpCAS :: trace($msg . ' in ' . $file . 'on line ' . $line ); - phpCAS :: traceEnd(); - - throw new CAS_GracefullTerminationException(__CLASS__ . "::" . $function . '(): ' . $msg); - } - - /** - * This method is used to log something in debug mode. - * - * @param string $str string to log - * - * @return void - */ - public static function trace($str) - { - $dbg = debug_backtrace(); - phpCAS :: log($str . ' [' . basename($dbg[0]['file']) . ':' . $dbg[0]['line'] . ']'); - } - - /** - * This method is used to indicate the start of the execution of a function - * in debug mode. - * - * @return void - */ - public static function traceBegin() - { - $dbg = debug_backtrace(); - $str = '=> '; - if (!empty ($dbg[1]['class'])) { - $str .= $dbg[1]['class'] . '::'; - } - $str .= $dbg[1]['function'] . '('; - if (is_array($dbg[1]['args'])) { - foreach ($dbg[1]['args'] as $index => $arg) { - if ($index != 0) { - $str .= ', '; - } - if (is_object($arg)) { - $str .= get_class($arg); - } else { - $str .= str_replace(array("\r\n", "\n", "\r"), "", var_export($arg, true)); - } - } - } - if (isset($dbg[1]['file'])) { - $file = basename($dbg[1]['file']); - } else { - $file = 'unknown_file'; - } - if (isset($dbg[1]['line'])) { - $line = $dbg[1]['line']; - } else { - $line = 'unknown_line'; - } - $str .= ') [' . $file . ':' . $line . ']'; - phpCAS :: log($str); - if (!isset(self::$_PHPCAS_DEBUG['indent'])) { - self::$_PHPCAS_DEBUG['indent'] = 0; - } else { - self::$_PHPCAS_DEBUG['indent']++; - } - } - - /** - * This method is used to indicate the end of the execution of a function in - * debug mode. - * - * @param string $res the result of the function - * - * @return void - */ - public static function traceEnd($res = '') - { - if (empty(self::$_PHPCAS_DEBUG['indent'])) { - self::$_PHPCAS_DEBUG['indent'] = 0; - } else { - self::$_PHPCAS_DEBUG['indent']--; - } - $dbg = debug_backtrace(); - $str = ''; - if (is_object($res)) { - $str .= '<= ' . get_class($res); - } else { - $str .= '<= ' . str_replace(array("\r\n", "\n", "\r"), "", var_export($res, true)); - } - - phpCAS :: log($str); - } - - /** - * This method is used to indicate the end of the execution of the program - * - * @return void - */ - public static function traceExit() - { - phpCAS :: log('exit()'); - while (self::$_PHPCAS_DEBUG['indent'] > 0) { - phpCAS :: log('-'); - self::$_PHPCAS_DEBUG['indent']--; - } - } - - /** @} */ - // ######################################################################## - // INTERNATIONALIZATION - // ######################################################################## - /** - * @addtogroup publicLang - * @{ - */ - - /** - * This method is used to set the language used by phpCAS. - * - * @param string $lang string representing the language. - * - * @return void - * - * @sa PHPCAS_LANG_FRENCH, PHPCAS_LANG_ENGLISH - * @note Can be called only once. - */ - public static function setLang($lang) - { - phpCAS::_validateClientExists(); - - try { - self::$_PHPCAS_CLIENT->setLang($lang); - } catch (Exception $e) { - phpCAS :: error(get_class($e) . ': ' . $e->getMessage()); - } - } - - /** @} */ - // ######################################################################## - // VERSION - // ######################################################################## - /** - * @addtogroup public - * @{ - */ - - /** - * This method returns the phpCAS version. - * - * @return the phpCAS version. - */ - public static function getVersion() - { - return PHPCAS_VERSION; - } - - /** @} */ - // ######################################################################## - // HTML OUTPUT - // ######################################################################## - /** - * @addtogroup publicOutput - * @{ - */ - - /** - * This method sets the HTML header used for all outputs. - * - * @param string $header the HTML header. - * - * @return void - */ - public static function setHTMLHeader($header) - { - phpCAS::_validateClientExists(); - - try { - self::$_PHPCAS_CLIENT->setHTMLHeader($header); - } catch (Exception $e) { - phpCAS :: error(get_class($e) . ': ' . $e->getMessage()); - } - } - - /** - * This method sets the HTML footer used for all outputs. - * - * @param string $footer the HTML footer. - * - * @return void - */ - public static function setHTMLFooter($footer) - { - phpCAS::_validateClientExists(); - - try { - self::$_PHPCAS_CLIENT->setHTMLFooter($footer); - } catch (Exception $e) { - phpCAS :: error(get_class($e) . ': ' . $e->getMessage()); - } - } - - /** @} */ - // ######################################################################## - // PGT STORAGE - // ######################################################################## - /** - * @addtogroup publicPGTStorage - * @{ - */ - - /** - * This method can be used to set a custom PGT storage object. - * - * @param CAS_PGTStorage $storage a PGT storage object that inherits from the - * CAS_PGTStorage class - * - * @return void - */ - public static function setPGTStorage($storage) - { - phpCAS :: traceBegin(); - phpCAS::_validateProxyExists(); - - try { - self::$_PHPCAS_CLIENT->setPGTStorage($storage); - } catch (Exception $e) { - phpCAS :: error(get_class($e) . ': ' . $e->getMessage()); - } - phpCAS :: traceEnd(); - } - - /** - * This method is used to tell phpCAS to store the response of the - * CAS server to PGT requests in a database. - * - * @param string $dsn_or_pdo a dsn string to use for creating a PDO - * object or a PDO object - * @param string $username the username to use when connecting to the - * database - * @param string $password the password to use when connecting to the - * database - * @param string $table the table to use for storing and retrieving - * PGT's - * @param string $driver_options any driver options to use when connecting - * to the database - * - * @return void - */ - public static function setPGTStorageDb($dsn_or_pdo, $username='', - $password='', $table='', $driver_options=null - ) { - phpCAS :: traceBegin(); - phpCAS::_validateProxyExists(); - - try { - self::$_PHPCAS_CLIENT->setPGTStorageDb($dsn_or_pdo, $username, $password, $table, $driver_options); - } catch (Exception $e) { - phpCAS :: error(get_class($e) . ': ' . $e->getMessage()); - } - phpCAS :: traceEnd(); - } - - /** - * This method is used to tell phpCAS to store the response of the - * CAS server to PGT requests onto the filesystem. - * - * @param string $path the path where the PGT's should be stored - * - * @return void - */ - public static function setPGTStorageFile($path = '') - { - phpCAS :: traceBegin(); - phpCAS::_validateProxyExists(); - - try { - self::$_PHPCAS_CLIENT->setPGTStorageFile($path); - } catch (Exception $e) { - phpCAS :: error(get_class($e) . ': ' . $e->getMessage()); - } - phpCAS :: traceEnd(); - } - /** @} */ - // ######################################################################## - // ACCESS TO EXTERNAL SERVICES - // ######################################################################## - /** - * @addtogroup publicServices - * @{ - */ - - /** - * Answer a proxy-authenticated service handler. - * - * @param string $type The service type. One of - * PHPCAS_PROXIED_SERVICE_HTTP_GET; PHPCAS_PROXIED_SERVICE_HTTP_POST; - * PHPCAS_PROXIED_SERVICE_IMAP - * - * @return CAS_ProxiedService - * @throws InvalidArgumentException If the service type is unknown. - */ - public static function getProxiedService ($type) - { - phpCAS :: traceBegin(); - phpCAS::_validateProxyExists(); - - try { - $res = self::$_PHPCAS_CLIENT->getProxiedService($type); - } catch (Exception $e) { - phpCAS :: error(get_class($e) . ': ' . $e->getMessage()); - } - - phpCAS :: traceEnd(); - return $res; - } - - /** - * Initialize a proxied-service handler with the proxy-ticket it should use. - * - * @param CAS_ProxiedService $proxiedService Proxied Service Handler - * - * @return void - * @throws CAS_ProxyTicketException If there is a proxy-ticket failure. - * The code of the Exception will be one of: - * PHPCAS_SERVICE_PT_NO_SERVER_RESPONSE - * PHPCAS_SERVICE_PT_BAD_SERVER_RESPONSE - * PHPCAS_SERVICE_PT_FAILURE - */ - public static function initializeProxiedService (CAS_ProxiedService $proxiedService) - { - phpCAS::_validateProxyExists(); - - try { - self::$_PHPCAS_CLIENT->initializeProxiedService($proxiedService); - } catch (Exception $e) { - phpCAS :: error(get_class($e) . ': ' . $e->getMessage()); - } - } - - /** - * This method is used to access an HTTP[S] service. - * - * @param string $url the service to access. - * @param string &$err_code an error code Possible values are - * PHPCAS_SERVICE_OK (on success), PHPCAS_SERVICE_PT_NO_SERVER_RESPONSE, - * PHPCAS_SERVICE_PT_BAD_SERVER_RESPONSE, PHPCAS_SERVICE_PT_FAILURE, - * PHPCAS_SERVICE_NOT_AVAILABLE. - * @param string &$output the output of the service (also used to give an - * error message on failure). - * - * @return bool true on success, false otherwise (in this later case, - * $err_code gives the reason why it failed and $output contains an error - * message). - */ - public static function serviceWeb($url, & $err_code, & $output) - { - phpCAS :: traceBegin(); - phpCAS::_validateProxyExists(); - - try { - $res = self::$_PHPCAS_CLIENT->serviceWeb($url, $err_code, $output); - } catch (Exception $e) { - phpCAS :: error(get_class($e) . ': ' . $e->getMessage()); - } - - phpCAS :: traceEnd($res); - return $res; - } - - /** - * This method is used to access an IMAP/POP3/NNTP service. - * - * @param string $url a string giving the URL of the service, - * including the mailing box for IMAP URLs, as accepted by imap_open(). - * @param string $service a string giving for CAS retrieve Proxy ticket - * @param string $flags options given to imap_open(). - * @param string &$err_code an error code Possible values are - * PHPCAS_SERVICE_OK (on success), PHPCAS_SERVICE_PT_NO_SERVER_RESPONSE, - * PHPCAS_SERVICE_PT_BAD_SERVER_RESPONSE, PHPCAS_SERVICE_PT_FAILURE, - * PHPCAS_SERVICE_NOT_AVAILABLE. - * @param string &$err_msg an error message on failure - * @param string &$pt the Proxy Ticket (PT) retrieved from the CAS - * server to access the URL on success, false on error). - * - * @return object IMAP stream on success, false otherwise (in this later - * case, $err_code gives the reason why it failed and $err_msg contains an - * error message). - */ - public static function serviceMail($url, $service, $flags, & $err_code, & $err_msg, & $pt) - { - phpCAS :: traceBegin(); - phpCAS::_validateProxyExists(); - - try { - $res = self::$_PHPCAS_CLIENT->serviceMail($url, $service, $flags, $err_code, $err_msg, $pt); - } catch (Exception $e) { - phpCAS :: error(get_class($e) . ': ' . $e->getMessage()); - } - - phpCAS :: traceEnd($res); - return $res; - } - - /** @} */ - // ######################################################################## - // AUTHENTICATION - // ######################################################################## - /** - * @addtogroup publicAuth - * @{ - */ - - /** - * Set the times authentication will be cached before really accessing the - * CAS server in gateway mode: - * - -1: check only once, and then never again (until you pree login) - * - 0: always check - * - n: check every "n" time - * - * @param int $n an integer. - * - * @return void - */ - public static function setCacheTimesForAuthRecheck($n) - { - phpCAS::_validateClientExists(); - - try { - self::$_PHPCAS_CLIENT->setCacheTimesForAuthRecheck($n); - } catch (Exception $e) { - phpCAS :: error(get_class($e) . ': ' . $e->getMessage()); - } - } - - /** - * Set a callback function to be run when a user authenticates. - * - * The callback function will be passed a $logoutTicket as its first - * parameter, followed by any $additionalArgs you pass. The $logoutTicket - * parameter is an opaque string that can be used to map the session-id to - * logout request in order to support single-signout in applications that - * manage their own sessions (rather than letting phpCAS start the session). - * - * phpCAS::forceAuthentication() will always exit and forward client unless - * they are already authenticated. To perform an action at the moment the user - * logs in (such as registering an account, performing logging, etc), register - * a callback function here. - * - * @param string $function Callback function - * @param array $additionalArgs optional array of arguments - * - * @return void - */ - public static function setPostAuthenticateCallback ($function, array $additionalArgs = array()) - { - phpCAS::_validateClientExists(); - - self::$_PHPCAS_CLIENT->setPostAuthenticateCallback($function, $additionalArgs); - } - - /** - * Set a callback function to be run when a single-signout request is - * received. The callback function will be passed a $logoutTicket as its - * first parameter, followed by any $additionalArgs you pass. The - * $logoutTicket parameter is an opaque string that can be used to map a - * session-id to the logout request in order to support single-signout in - * applications that manage their own sessions (rather than letting phpCAS - * start and destroy the session). - * - * @param string $function Callback function - * @param array $additionalArgs optional array of arguments - * - * @return void - */ - public static function setSingleSignoutCallback ($function, array $additionalArgs = array()) - { - phpCAS::_validateClientExists(); - - self::$_PHPCAS_CLIENT->setSingleSignoutCallback($function, $additionalArgs); - } - - /** - * This method is called to check if the user is already authenticated - * locally or has a global cas session. A already existing cas session is - * determined by a cas gateway call.(cas login call without any interactive - * prompt) - * - * @return true when the user is authenticated, false when a previous - * gateway login failed or the function will not return if the user is - * redirected to the cas server for a gateway login attempt - */ - public static function checkAuthentication() - { - phpCAS :: traceBegin(); - phpCAS::_validateClientExists(); - - $auth = self::$_PHPCAS_CLIENT->checkAuthentication(); - - // store where the authentication has been checked and the result - self::$_PHPCAS_CLIENT->markAuthenticationCall($auth); - - phpCAS :: traceEnd($auth); - return $auth; - } - - /** - * This method is called to force authentication if the user was not already - * authenticated. If the user is not authenticated, halt by redirecting to - * the CAS server. - * - * @return bool Authentication - */ - public static function forceAuthentication() - { - phpCAS :: traceBegin(); - phpCAS::_validateClientExists(); - $auth = self::$_PHPCAS_CLIENT->forceAuthentication(); - - // store where the authentication has been checked and the result - self::$_PHPCAS_CLIENT->markAuthenticationCall($auth); - - /* if (!$auth) { - phpCAS :: trace('user is not authenticated, redirecting to the CAS server'); - self::$_PHPCAS_CLIENT->forceAuthentication(); - } else { - phpCAS :: trace('no need to authenticate (user `' . phpCAS :: getUser() . '\' is already authenticated)'); - }*/ - - phpCAS :: traceEnd(); - return $auth; - } - - /** - * This method is called to renew the authentication. - * - * @return void - **/ - public static function renewAuthentication() - { - phpCAS :: traceBegin(); - phpCAS::_validateClientExists(); - - $auth = self::$_PHPCAS_CLIENT->renewAuthentication(); - - // store where the authentication has been checked and the result - self::$_PHPCAS_CLIENT->markAuthenticationCall($auth); - - //self::$_PHPCAS_CLIENT->renewAuthentication(); - phpCAS :: traceEnd(); - } - - /** - * This method is called to check if the user is authenticated (previously or by - * tickets given in the URL). - * - * @return true when the user is authenticated. - */ - public static function isAuthenticated() - { - phpCAS :: traceBegin(); - phpCAS::_validateClientExists(); - - // call the isAuthenticated method of the $_PHPCAS_CLIENT object - $auth = self::$_PHPCAS_CLIENT->isAuthenticated(); - - // store where the authentication has been checked and the result - self::$_PHPCAS_CLIENT->markAuthenticationCall($auth); - - phpCAS :: traceEnd($auth); - return $auth; - } - - /** - * Checks whether authenticated based on $_SESSION. Useful to avoid - * server calls. - * - * @return bool true if authenticated, false otherwise. - * @since 0.4.22 by Brendan Arnold - */ - public static function isSessionAuthenticated() - { - phpCAS::_validateClientExists(); - - return (self::$_PHPCAS_CLIENT->isSessionAuthenticated()); - } - - /** - * This method returns the CAS user's login name. - * - * @return string the login name of the authenticated user - * @warning should only be called after phpCAS::forceAuthentication() - * or phpCAS::checkAuthentication(). - * */ - public static function getUser() - { - phpCAS::_validateClientExists(); - - try { - return self::$_PHPCAS_CLIENT->getUser(); - } catch (Exception $e) { - phpCAS :: error(get_class($e) . ': ' . $e->getMessage()); - } - } - - /** - * Answer attributes about the authenticated user. - * - * @warning should only be called after phpCAS::forceAuthentication() - * or phpCAS::checkAuthentication(). - * - * @return array - */ - public static function getAttributes() - { - phpCAS::_validateClientExists(); - - try { - return self::$_PHPCAS_CLIENT->getAttributes(); - } catch (Exception $e) { - phpCAS :: error(get_class($e) . ': ' . $e->getMessage()); - } - } - - /** - * Answer true if there are attributes for the authenticated user. - * - * @warning should only be called after phpCAS::forceAuthentication() - * or phpCAS::checkAuthentication(). - * - * @return bool - */ - public static function hasAttributes() - { - phpCAS::_validateClientExists(); - - try { - return self::$_PHPCAS_CLIENT->hasAttributes(); - } catch (Exception $e) { - phpCAS :: error(get_class($e) . ': ' . $e->getMessage()); - } - } - - /** - * Answer true if an attribute exists for the authenticated user. - * - * @param string $key attribute name - * - * @return bool - * @warning should only be called after phpCAS::forceAuthentication() - * or phpCAS::checkAuthentication(). - */ - public static function hasAttribute($key) - { - phpCAS::_validateClientExists(); - - try { - return self::$_PHPCAS_CLIENT->hasAttribute($key); - } catch (Exception $e) { - phpCAS :: error(get_class($e) . ': ' . $e->getMessage()); - } - } - - /** - * Answer an attribute for the authenticated user. - * - * @param string $key attribute name - * - * @return mixed string for a single value or an array if multiple values exist. - * @warning should only be called after phpCAS::forceAuthentication() - * or phpCAS::checkAuthentication(). - */ - public static function getAttribute($key) - { - phpCAS::_validateClientExists(); - - try { - return self::$_PHPCAS_CLIENT->getAttribute($key); - } catch (Exception $e) { - phpCAS :: error(get_class($e) . ': ' . $e->getMessage()); - } - } - - /** - * Handle logout requests. - * - * @param bool $check_client additional safety check - * @param array $allowed_clients array of allowed clients - * - * @return void - */ - public static function handleLogoutRequests($check_client = true, $allowed_clients = false) - { - phpCAS::_validateClientExists(); - - return (self::$_PHPCAS_CLIENT->handleLogoutRequests($check_client, $allowed_clients)); - } - - /** - * This method returns the URL to be used to login. - * or phpCAS::isAuthenticated(). - * - * @return the login name of the authenticated user - */ - public static function getServerLoginURL() - { - phpCAS::_validateClientExists(); - - return self::$_PHPCAS_CLIENT->getServerLoginURL(); - } - - /** - * Set the login URL of the CAS server. - * - * @param string $url the login URL - * - * @return void - * @since 0.4.21 by Wyman Chan - */ - public static function setServerLoginURL($url = '') - { - phpCAS :: traceBegin(); - phpCAS::_validateClientExists(); - - try { - self::$_PHPCAS_CLIENT->setServerLoginURL($url); - } catch (Exception $e) { - phpCAS :: error(get_class($e) . ': ' . $e->getMessage()); - } - - phpCAS :: traceEnd(); - } - - /** - * Set the serviceValidate URL of the CAS server. - * Used only in CAS 1.0 validations - * - * @param string $url the serviceValidate URL - * - * @return void - */ - public static function setServerServiceValidateURL($url = '') - { - phpCAS :: traceBegin(); - phpCAS::_validateClientExists(); - - try { - self::$_PHPCAS_CLIENT->setServerServiceValidateURL($url); - } catch (Exception $e) { - phpCAS :: error(get_class($e) . ': ' . $e->getMessage()); - } - - phpCAS :: traceEnd(); - } - - /** - * Set the proxyValidate URL of the CAS server. - * Used for all CAS 2.0 validations - * - * @param string $url the proxyValidate URL - * - * @return void - */ - public static function setServerProxyValidateURL($url = '') - { - phpCAS :: traceBegin(); - phpCAS::_validateClientExists(); - - try { - self::$_PHPCAS_CLIENT->setServerProxyValidateURL($url); - } catch (Exception $e) { - phpCAS :: error(get_class($e) . ': ' . $e->getMessage()); - } - - phpCAS :: traceEnd(); - } - - /** - * Set the samlValidate URL of the CAS server. - * - * @param string $url the samlValidate URL - * - * @return void - */ - public static function setServerSamlValidateURL($url = '') - { - phpCAS :: traceBegin(); - phpCAS::_validateClientExists(); - - try { - self::$_PHPCAS_CLIENT->setServerSamlValidateURL($url); - } catch (Exception $e) { - phpCAS :: error(get_class($e) . ': ' . $e->getMessage()); - } - - phpCAS :: traceEnd(); - } - - /** - * This method returns the URL to be used to login. - * or phpCAS::isAuthenticated(). - * - * @return the login name of the authenticated user - */ - public static function getServerLogoutURL() - { - phpCAS::_validateClientExists(); - - return self::$_PHPCAS_CLIENT->getServerLogoutURL(); - } - - /** - * Set the logout URL of the CAS server. - * - * @param string $url the logout URL - * - * @return void - * @since 0.4.21 by Wyman Chan - */ - public static function setServerLogoutURL($url = '') - { - phpCAS :: traceBegin(); - phpCAS::_validateClientExists(); - - try { - self::$_PHPCAS_CLIENT->setServerLogoutURL($url); - } catch (Exception $e) { - phpCAS :: error(get_class($e) . ': ' . $e->getMessage()); - } - - phpCAS :: traceEnd(); - } - - /** - * This method is used to logout from CAS. - * - * @param string $params an array that contains the optional url and - * service parameters that will be passed to the CAS server - * - * @return void - */ - public static function logout($params = "") - { - phpCAS :: traceBegin(); - phpCAS::_validateClientExists(); - - $parsedParams = array (); - if ($params != "") { - if (is_string($params)) { - phpCAS :: error('method `phpCAS::logout($url)\' is now deprecated, use `phpCAS::logoutWithUrl($url)\' instead'); - } - if (!is_array($params)) { - phpCAS :: error('type mismatched for parameter $params (should be `array\')'); - } - foreach ($params as $key => $value) { - if ($key != "service" && $key != "url") { - phpCAS :: error('only `url\' and `service\' parameters are allowed for method `phpCAS::logout($params)\''); - } - $parsedParams[$key] = $value; - } - } - self::$_PHPCAS_CLIENT->logout($parsedParams); - // never reached - phpCAS :: traceEnd(); - } - - /** - * This method is used to logout from CAS. Halts by redirecting to the CAS - * server. - * - * @param string $service a URL that will be transmitted to the CAS server - * - * @return void - */ - public static function logoutWithRedirectService($service) - { - phpCAS :: traceBegin(); - phpCAS::_validateClientExists(); - - if (!is_string($service)) { - phpCAS :: error('type mismatched for parameter $service (should be `string\')'); - } - self::$_PHPCAS_CLIENT->logout(array ( "service" => $service )); - // never reached - phpCAS :: traceEnd(); - } - - /** - * This method is used to logout from CAS. Halts by redirecting to the CAS - * server. - * - * @param string $url a URL that will be transmitted to the CAS server - * - * @return void - * @deprecated The url parameter has been removed from the CAS server as of - * version 3.3.5.1 - */ - public static function logoutWithUrl($url) - { - trigger_error('Function deprecated for cas servers >= 3.3.5.1', E_USER_DEPRECATED); - phpCAS :: traceBegin(); - if (!is_object(self::$_PHPCAS_CLIENT)) { - phpCAS :: error('this method should only be called after ' . __CLASS__ . '::client() or' . __CLASS__ . '::proxy()'); - } - if (!is_string($url)) { - phpCAS :: error('type mismatched for parameter $url (should be `string\')'); - } - self::$_PHPCAS_CLIENT->logout(array ( "url" => $url )); - // never reached - phpCAS :: traceEnd(); - } - - /** - * This method is used to logout from CAS. Halts by redirecting to the CAS - * server. - * - * @param string $service a URL that will be transmitted to the CAS server - * @param string $url a URL that will be transmitted to the CAS server - * - * @return void - * - * @deprecated The url parameter has been removed from the CAS server as of - * version 3.3.5.1 - */ - public static function logoutWithRedirectServiceAndUrl($service, $url) - { - trigger_error('Function deprecated for cas servers >= 3.3.5.1', E_USER_DEPRECATED); - phpCAS :: traceBegin(); - phpCAS::_validateClientExists(); - - if (!is_string($service)) { - phpCAS :: error('type mismatched for parameter $service (should be `string\')'); - } - if (!is_string($url)) { - phpCAS :: error('type mismatched for parameter $url (should be `string\')'); - } - self::$_PHPCAS_CLIENT->logout( - array ( - "service" => $service, - "url" => $url - ) - ); - // never reached - phpCAS :: traceEnd(); - } - - /** - * Set the fixed URL that will be used by the CAS server to transmit the - * PGT. When this method is not called, a phpCAS script uses its own URL - * for the callback. - * - * @param string $url the URL - * - * @return void - */ - public static function setFixedCallbackURL($url = '') - { - phpCAS :: traceBegin(); - phpCAS::_validateProxyExists(); - - try { - self::$_PHPCAS_CLIENT->setCallbackURL($url); - } catch (Exception $e) { - phpCAS :: error(get_class($e) . ': ' . $e->getMessage()); - } - - phpCAS :: traceEnd(); - } - - /** - * Set the fixed URL that will be set as the CAS service parameter. When this - * method is not called, a phpCAS script uses its own URL. - * - * @param string $url the URL - * - * @return void - */ - public static function setFixedServiceURL($url) - { - phpCAS :: traceBegin(); - phpCAS::_validateProxyExists(); - - try { - self::$_PHPCAS_CLIENT->setURL($url); - } catch (Exception $e) { - phpCAS :: error(get_class($e) . ': ' . $e->getMessage()); - } - - phpCAS :: traceEnd(); - } - - /** - * Get the URL that is set as the CAS service parameter. - * - * @return string Service Url - */ - public static function getServiceURL() - { - phpCAS::_validateProxyExists(); - return (self::$_PHPCAS_CLIENT->getURL()); - } - - /** - * Retrieve a Proxy Ticket from the CAS server. - * - * @param string $target_service Url string of service to proxy - * @param string &$err_code error code - * @param string &$err_msg error message - * - * @return string Proxy Ticket - */ - public static function retrievePT($target_service, & $err_code, & $err_msg) - { - phpCAS::_validateProxyExists(); - - try { - return (self::$_PHPCAS_CLIENT->retrievePT($target_service, $err_code, $err_msg)); - } catch (Exception $e) { - phpCAS :: error(get_class($e) . ': ' . $e->getMessage()); - } - } - - /** - * Set the certificate of the CAS server CA and if the CN should be properly - * verified. - * - * @param string $cert CA certificate file name - * @param bool $validate_cn Validate CN in certificate (default true) - * - * @return void - */ - public static function setCasServerCACert($cert, $validate_cn = true) - { - phpCAS :: traceBegin(); - phpCAS::_validateClientExists(); - - try { - self::$_PHPCAS_CLIENT->setCasServerCACert($cert, $validate_cn); - } catch (Exception $e) { - phpCAS :: error(get_class($e) . ': ' . $e->getMessage()); - } - - phpCAS :: traceEnd(); - } - - /** - * Set no SSL validation for the CAS server. - * - * @return void - */ - public static function setNoCasServerValidation() - { - phpCAS :: traceBegin(); - phpCAS::_validateClientExists(); - - phpCAS :: trace('You have configured no validation of the legitimacy of the cas server. This is not recommended for production use.'); - self::$_PHPCAS_CLIENT->setNoCasServerValidation(); - phpCAS :: traceEnd(); - } - - - /** - * Disable the removal of a CAS-Ticket from the URL when authenticating - * DISABLING POSES A SECURITY RISK: - * We normally remove the ticket by an additional redirect as a security - * precaution to prevent a ticket in the HTTP_REFERRER or be carried over in - * the URL parameter - * - * @return void - */ - public static function setNoClearTicketsFromUrl() - { - phpCAS :: traceBegin(); - phpCAS::_validateClientExists(); - - self::$_PHPCAS_CLIENT->setNoClearTicketsFromUrl(); - phpCAS :: traceEnd(); - } - - /** @} */ - - /** - * Change CURL options. - * CURL is used to connect through HTTPS to CAS server - * - * @param string $key the option key - * @param string $value the value to set - * - * @return void - */ - public static function setExtraCurlOption($key, $value) - { - phpCAS :: traceBegin(); - phpCAS::_validateClientExists(); - - self::$_PHPCAS_CLIENT->setExtraCurlOption($key, $value); - phpCAS :: traceEnd(); - } - - /** - * If you want your service to be proxied you have to enable it (default - * disabled) and define an accepable list of proxies that are allowed to - * proxy your service. - * - * Add each allowed proxy definition object. For the normal CAS_ProxyChain - * class, the constructor takes an array of proxies to match. The list is in - * reverse just as seen from the service. Proxies have to be defined in reverse - * from the service to the user. If a user hits service A and gets proxied via - * B to service C the list of acceptable on C would be array(B,A). The definition - * of an individual proxy can be either a string or a regexp (preg_match is used) - * that will be matched against the proxy list supplied by the cas server - * when validating the proxy tickets. The strings are compared starting from - * the beginning and must fully match with the proxies in the list. - * Example: - * phpCAS::allowProxyChain(new CAS_ProxyChain(array( - * 'https://app.example.com/' - * ))); - * phpCAS::allowProxyChain(new CAS_ProxyChain(array( - * '/^https:\/\/app[0-9]\.example\.com\/rest\//', - * 'http://client.example.com/' - * ))); - * - * For quick testing or in certain production screnarios you might want to - * allow allow any other valid service to proxy your service. To do so, add - * the "Any" chain: - * phpcas::allowProxyChain(new CAS_ProxyChain_Any); - * THIS SETTING IS HOWEVER NOT RECOMMENDED FOR PRODUCTION AND HAS SECURITY - * IMPLICATIONS: YOU ARE ALLOWING ANY SERVICE TO ACT ON BEHALF OF A USER - * ON THIS SERVICE. - * - * @param CAS_ProxyChain_Interface $proxy_chain A proxy-chain that will be - * matched against the proxies requesting access - * - * @return void - */ - public static function allowProxyChain(CAS_ProxyChain_Interface $proxy_chain) - { - phpCAS :: traceBegin(); - phpCAS::_validateClientExists(); - - if (self::$_PHPCAS_CLIENT->getServerVersion() !== CAS_VERSION_2_0 - && self::$_PHPCAS_CLIENT->getServerVersion() !== CAS_VERSION_3_0 - ) { - phpCAS :: error('this method can only be used with the cas 2.0/3.0 protocols'); - } - self::$_PHPCAS_CLIENT->getAllowedProxyChains()->allowProxyChain($proxy_chain); - phpCAS :: traceEnd(); - } - - /** - * Answer an array of proxies that are sitting in front of this application. - * This method will only return a non-empty array if we have received and - * validated a Proxy Ticket. - * - * @return array - * @access public - * @since 6/25/09 - */ - public static function getProxies () - { - phpCAS::_validateProxyExists(); - - return(self::$_PHPCAS_CLIENT->getProxies()); - } - - // ######################################################################## - // PGTIOU/PGTID and logoutRequest rebroadcasting - // ######################################################################## - - /** - * Add a pgtIou/pgtId and logoutRequest rebroadcast node. - * - * @param string $rebroadcastNodeUrl The rebroadcast node URL. Can be - * hostname or IP. - * - * @return void - */ - public static function addRebroadcastNode($rebroadcastNodeUrl) - { - phpCAS::traceBegin(); - phpCAS::log('rebroadcastNodeUrl:'.$rebroadcastNodeUrl); - phpCAS::_validateClientExists(); - - try { - self::$_PHPCAS_CLIENT->addRebroadcastNode($rebroadcastNodeUrl); - } catch (Exception $e) { - phpCAS :: error(get_class($e) . ': ' . $e->getMessage()); - } - - phpCAS::traceEnd(); - } - - /** - * This method is used to add header parameters when rebroadcasting - * pgtIou/pgtId or logoutRequest. - * - * @param String $header Header to send when rebroadcasting. - * - * @return void - */ - public static function addRebroadcastHeader($header) - { - phpCAS :: traceBegin(); - phpCAS::_validateClientExists(); - - try { - self::$_PHPCAS_CLIENT->addRebroadcastHeader($header); - } catch (Exception $e) { - phpCAS :: error(get_class($e) . ': ' . $e->getMessage()); - } - - phpCAS :: traceEnd(); - } - - /** - * Checks if a client already exists - * - * @throws CAS_OutOfSequenceBeforeClientException - * - * @return void - */ - private static function _validateClientExists() - { - if (!is_object(self::$_PHPCAS_CLIENT)) { - throw new CAS_OutOfSequenceBeforeClientException(); - } - } - - /** - * Checks of a proxy client aready exists - * - * @throws CAS_OutOfSequenceBeforeProxyException - * - * @return void - */ - private static function _validateProxyExists() - { - if (!is_object(self::$_PHPCAS_CLIENT)) { - throw new CAS_OutOfSequenceBeforeProxyException(); - } - } -} -// ######################################################################## -// DOCUMENTATION -// ######################################################################## - -// ######################################################################## -// MAIN PAGE - -/** - * @mainpage - * - * The following pages only show the source documentation. - * - */ - -// ######################################################################## -// MODULES DEFINITION - -/** @defgroup public User interface */ - -/** @defgroup publicInit Initialization - * @ingroup public */ - -/** @defgroup publicAuth Authentication - * @ingroup public */ - -/** @defgroup publicServices Access to external services - * @ingroup public */ - -/** @defgroup publicConfig Configuration - * @ingroup public */ - -/** @defgroup publicLang Internationalization - * @ingroup publicConfig */ - -/** @defgroup publicOutput HTML output - * @ingroup publicConfig */ - -/** @defgroup publicPGTStorage PGT storage - * @ingroup publicConfig */ - -/** @defgroup publicDebug Debugging - * @ingroup public */ - -/** @defgroup internal Implementation */ - -/** @defgroup internalAuthentication Authentication - * @ingroup internal */ - -/** @defgroup internalBasic CAS Basic client features (CAS 1.0, Service Tickets) - * @ingroup internal */ - -/** @defgroup internalProxy CAS Proxy features (CAS 2.0, Proxy Granting Tickets) - * @ingroup internal */ - -/** @defgroup internalSAML CAS SAML features (SAML 1.1) - * @ingroup internal */ - -/** @defgroup internalPGTStorage PGT storage - * @ingroup internalProxy */ - -/** @defgroup internalPGTStorageDb PGT storage in a database - * @ingroup internalPGTStorage */ - -/** @defgroup internalPGTStorageFile PGT storage on the filesystem - * @ingroup internalPGTStorage */ - -/** @defgroup internalCallback Callback from the CAS server - * @ingroup internalProxy */ - -/** @defgroup internalProxyServices Proxy other services - * @ingroup internalProxy */ - -/** @defgroup internalService CAS client features (CAS 2.0, Proxied service) - * @ingroup internal */ - -/** @defgroup internalConfig Configuration - * @ingroup internal */ - -/** @defgroup internalBehave Internal behaviour of phpCAS - * @ingroup internalConfig */ - -/** @defgroup internalOutput HTML output - * @ingroup internalConfig */ - -/** @defgroup internalLang Internationalization - * @ingroup internalConfig - * - * To add a new language: - * - 1. define a new constant PHPCAS_LANG_XXXXXX in CAS/CAS.php - * - 2. copy any file from CAS/languages to CAS/languages/XXXXXX.php - * - 3. Make the translations - */ - -/** @defgroup internalDebug Debugging - * @ingroup internal */ - -/** @defgroup internalMisc Miscellaneous - * @ingroup internal */ - -// ######################################################################## -// EXAMPLES - -/** - * @example example_simple.php - */ -/** - * @example example_service.php - */ -/** - * @example example_service_that_proxies.php - */ -/** - * @example example_service_POST.php - */ -/** - * @example example_proxy_serviceWeb.php - */ -/** - * @example example_proxy_serviceWeb_chaining.php - */ -/** - * @example example_proxy_POST.php - */ -/** - * @example example_proxy_GET.php - */ -/** - * @example example_lang.php - */ -/** - * @example example_html.php - */ -/** - * @example example_pgt_storage_file.php - */ -/** - * @example example_pgt_storage_db.php - */ -/** - * @example example_gateway.php - */ -/** - * @example example_logout.php - */ -/** - * @example example_rebroadcast.php - */ -/** - * @example example_custom_urls.php - */ -/** - * @example example_advanced_saml11.php - */ -?> diff --git a/apps/maarch_entreprise/tools/phpCAS/source/CAS/AuthenticationException.php b/apps/maarch_entreprise/tools/phpCAS/source/CAS/AuthenticationException.php deleted file mode 100755 index a14154d4a35439d68c1ddb04f1ea1aafb7766b49..0000000000000000000000000000000000000000 --- a/apps/maarch_entreprise/tools/phpCAS/source/CAS/AuthenticationException.php +++ /dev/null @@ -1,108 +0,0 @@ -<?php - -/** - * Licensed to Jasig under one or more contributor license - * agreements. See the NOTICE file distributed with this work for - * additional information regarding copyright ownership. - * - * Jasig licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except in - * compliance with the License. You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * PHP Version 5 - * - * @file CAS/AuthenticationException.php - * @category Authentication - * @package PhpCAS - * @author Joachim Fritschi <jfritschi@freenet.de> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - */ - -/** - * This interface defines methods that allow proxy-authenticated service handlers - * to interact with phpCAS. - * - * Proxy service handlers must implement this interface as well as call - * phpCAS::initializeProxiedService($this) at some point in their implementation. - * - * While not required, proxy-authenticated service handlers are encouraged to - * implement the CAS_ProxiedService_Testable interface to facilitate unit testing. - * - * @class CAS_AuthenticationException - * @category Authentication - * @package PhpCAS - * @author Joachim Fritschi <jfritschi@freenet.de> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - */ - -class CAS_AuthenticationException -extends RuntimeException -implements CAS_Exception -{ - - /** - * This method is used to print the HTML output when the user was not - * authenticated. - * - * @param CAS_Client $client phpcas client - * @param string $failure the failure that occured - * @param string $cas_url the URL the CAS server was asked for - * @param bool $no_response the response from the CAS server (other - * parameters are ignored if TRUE) - * @param bool $bad_response bad response from the CAS server ($err_code - * and $err_msg ignored if TRUE) - * @param string $cas_response the response of the CAS server - * @param int $err_code the error code given by the CAS server - * @param string $err_msg the error message given by the CAS server - */ - public function __construct($client,$failure,$cas_url,$no_response, - $bad_response='',$cas_response='',$err_code='',$err_msg='' - ) { - phpCAS::traceBegin(); - $lang = $client->getLangObj(); - $client->printHTMLHeader($lang->getAuthenticationFailed()); - printf( - $lang->getYouWereNotAuthenticated(), - htmlentities($client->getURL()), - isset($_SERVER['SERVER_ADMIN']) ? $_SERVER['SERVER_ADMIN']:'' - ); - phpCAS::trace('CAS URL: '.$cas_url); - phpCAS::trace('Authentication failure: '.$failure); - if ( $no_response ) { - phpCAS::trace('Reason: no response from the CAS server'); - } else { - if ( $bad_response ) { - phpCAS::trace('Reason: bad response from the CAS server'); - } else { - switch ($client->getServerVersion()) { - case CAS_VERSION_1_0: - phpCAS::trace('Reason: CAS error'); - break; - case CAS_VERSION_2_0: - case CAS_VERSION_3_0: - if ( empty($err_code) ) { - phpCAS::trace('Reason: no CAS error'); - } else { - phpCAS::trace('Reason: ['.$err_code.'] CAS error: '.$err_msg); - } - break; - } - } - phpCAS::trace('CAS response: '.$cas_response); - } - $client->printHTMLFooter(); - phpCAS::traceExit(); - } - -} -?> diff --git a/apps/maarch_entreprise/tools/phpCAS/source/CAS/Autoload.php b/apps/maarch_entreprise/tools/phpCAS/source/CAS/Autoload.php deleted file mode 100755 index e56dbdfa93f45bca16f52a83eb8c7dfdfa3e6f14..0000000000000000000000000000000000000000 --- a/apps/maarch_entreprise/tools/phpCAS/source/CAS/Autoload.php +++ /dev/null @@ -1,105 +0,0 @@ -<?php - -/** - * Autoloader Class - * - * PHP Version 5 - * - * @file CAS/Autoload.php - * @category Authentication - * @package SimpleCAS - * @author Brett Bieber <brett.bieber@gmail.com> - * @copyright 2008 Regents of the University of Nebraska - * @license http://www1.unl.edu/wdn/wiki/Software_License BSD License - * @link http://code.google.com/p/simplecas/ - **/ - -/** - * Autoload a class - * - * @param string $class Classname to load - * - * @return bool - */ -function CAS_autoload($class) -{ - // Static to hold the Include Path to CAS - static $include_path; - // Check only for CAS classes - if (substr($class, 0, 4) !== 'CAS_') { - return false; - } - // Setup the include path if it's not already set from a previous call - if (empty($include_path)) { - $include_path = array(dirname(dirname(__FILE__)), dirname(dirname(__FILE__)) . '/../test/' ); - } - - // Declare local variable to store the expected full path to the file - - foreach ($include_path as $path) { - $file_path = $path . '/' . str_replace('_', '/', $class) . '.php'; - $fp = @fopen($file_path, 'r', true); - if ($fp) { - fclose($fp); - include $file_path; - if (!class_exists($class, false) && !interface_exists($class, false)) { - die( - new Exception( - 'Class ' . $class . ' was not present in ' . - $file_path . - ' [CAS_autoload]' - ) - ); - } - return true; - } - } - $e = new Exception( - 'Class ' . $class . ' could not be loaded from ' . - $file_path . ', file does not exist (Path="' - . implode(':', $include_path) .'") [CAS_autoload]' - ); - $trace = $e->getTrace(); - if (isset($trace[2]) && isset($trace[2]['function']) - && in_array($trace[2]['function'], array('class_exists', 'interface_exists')) - ) { - return false; - } - if (isset($trace[1]) && isset($trace[1]['function']) - && in_array($trace[1]['function'], array('class_exists', 'interface_exists')) - ) { - return false; - } - die ((string) $e); -} - -// set up __autoload -if (function_exists('spl_autoload_register')) { - if (!(spl_autoload_functions()) - || !in_array('CAS_autoload', spl_autoload_functions()) - ) { - spl_autoload_register('CAS_autoload'); - if (function_exists('__autoload') - && !in_array('__autoload', spl_autoload_functions()) - ) { - // __autoload() was being used, but now would be ignored, add - // it to the autoload stack - spl_autoload_register('__autoload'); - } - } -} elseif (!function_exists('__autoload')) { - - /** - * Autoload a class - * - * @param string $class Class name - * - * @return bool - */ - function __autoload($class) - { - return CAS_autoload($class); - } -} - -?> \ No newline at end of file diff --git a/apps/maarch_entreprise/tools/phpCAS/source/CAS/Client.php b/apps/maarch_entreprise/tools/phpCAS/source/CAS/Client.php deleted file mode 100755 index 23e6ec690800ed6d2bdddeb85aba01de66a55fdc..0000000000000000000000000000000000000000 --- a/apps/maarch_entreprise/tools/phpCAS/source/CAS/Client.php +++ /dev/null @@ -1,3865 +0,0 @@ -<?php - -/** - * Licensed to Jasig under one or more contributor license - * agreements. See the NOTICE file distributed with this work for - * additional information regarding copyright ownership. - * - * Jasig licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except in - * compliance with the License. You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * PHP Version 5 - * - * @file CAS/Client.php - * @category Authentication - * @package PhpCAS - * @author Pascal Aubry <pascal.aubry@univ-rennes1.fr> - * @author Olivier Berger <olivier.berger@it-sudparis.eu> - * @author Brett Bieber <brett.bieber@gmail.com> - * @author Joachim Fritschi <jfritschi@freenet.de> - * @author Adam Franco <afranco@middlebury.edu> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - */ - -/** - * The CAS_Client class is a client interface that provides CAS authentication - * to PHP applications. - * - * @class CAS_Client - * @category Authentication - * @package PhpCAS - * @author Pascal Aubry <pascal.aubry@univ-rennes1.fr> - * @author Olivier Berger <olivier.berger@it-sudparis.eu> - * @author Brett Bieber <brett.bieber@gmail.com> - * @author Joachim Fritschi <jfritschi@freenet.de> - * @author Adam Franco <afranco@middlebury.edu> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - * - */ - -class CAS_Client -{ - - // ######################################################################## - // HTML OUTPUT - // ######################################################################## - /** - * @addtogroup internalOutput - * @{ - */ - - /** - * This method filters a string by replacing special tokens by appropriate values - * and prints it. The corresponding tokens are taken into account: - * - __CAS_VERSION__ - * - __PHPCAS_VERSION__ - * - __SERVER_BASE_URL__ - * - * Used by CAS_Client::PrintHTMLHeader() and CAS_Client::printHTMLFooter(). - * - * @param string $str the string to filter and output - * - * @return void - */ - private function _htmlFilterOutput($str) - { - $str = str_replace('__CAS_VERSION__', $this->getServerVersion(), $str); - $str = str_replace('__PHPCAS_VERSION__', phpCAS::getVersion(), $str); - $str = str_replace('__SERVER_BASE_URL__', $this->_getServerBaseURL(), $str); - echo $str; - } - - /** - * A string used to print the header of HTML pages. Written by - * CAS_Client::setHTMLHeader(), read by CAS_Client::printHTMLHeader(). - * - * @hideinitializer - */ - private $_output_header = ''; - - /** - * This method prints the header of the HTML output (after filtering). If - * CAS_Client::setHTMLHeader() was not used, a default header is output. - * - * @param string $title the title of the page - * - * @return void - * @see _htmlFilterOutput() - */ - public function printHTMLHeader($title) - { - $this->_htmlFilterOutput( - str_replace( - '__TITLE__', $title, - (empty($this->_output_header) - ? '<html><head><title>__TITLE__</title></head><body><h1>__TITLE__</h1>' - : $this->_output_header) - ) - ); - } - - /** - * A string used to print the footer of HTML pages. Written by - * CAS_Client::setHTMLFooter(), read by printHTMLFooter(). - * - * @hideinitializer - */ - private $_output_footer = ''; - - /** - * This method prints the footer of the HTML output (after filtering). If - * CAS_Client::setHTMLFooter() was not used, a default footer is output. - * - * @return void - * @see _htmlFilterOutput() - */ - public function printHTMLFooter() - { - $lang = $this->getLangObj(); - $this->_htmlFilterOutput( - empty($this->_output_footer)? - (phpcas::getVerbose())? - '<hr><address>phpCAS __PHPCAS_VERSION__ ' - .$lang->getUsingServer() - .' <a href="__SERVER_BASE_URL__">__SERVER_BASE_URL__</a> (CAS __CAS_VERSION__)</a></address></body></html>' - :'</body></html>' - :$this->_output_footer - ); - } - - /** - * This method set the HTML header used for all outputs. - * - * @param string $header the HTML header. - * - * @return void - */ - public function setHTMLHeader($header) - { - // Argument Validation - if (gettype($header) != 'string') - throw new CAS_TypeMismatchException($header, '$header', 'string'); - - $this->_output_header = $header; - } - - /** - * This method set the HTML footer used for all outputs. - * - * @param string $footer the HTML footer. - * - * @return void - */ - public function setHTMLFooter($footer) - { - // Argument Validation - if (gettype($footer) != 'string') - throw new CAS_TypeMismatchException($footer, '$footer', 'string'); - - $this->_output_footer = $footer; - } - - - /** @} */ - - - // ######################################################################## - // INTERNATIONALIZATION - // ######################################################################## - /** - * @addtogroup internalLang - * @{ - */ - /** - * A string corresponding to the language used by phpCAS. Written by - * CAS_Client::setLang(), read by CAS_Client::getLang(). - - * @note debugging information is always in english (debug purposes only). - */ - private $_lang = PHPCAS_LANG_DEFAULT; - - /** - * This method is used to set the language used by phpCAS. - * - * @param string $lang representing the language. - * - * @return void - */ - public function setLang($lang) - { - // Argument Validation - if (gettype($lang) != 'string') - throw new CAS_TypeMismatchException($lang, '$lang', 'string'); - - phpCAS::traceBegin(); - $obj = new $lang(); - if (!($obj instanceof CAS_Languages_LanguageInterface)) { - throw new CAS_InvalidArgumentException( - '$className must implement the CAS_Languages_LanguageInterface' - ); - } - $this->_lang = $lang; - phpCAS::traceEnd(); - } - /** - * Create the language - * - * @return CAS_Languages_LanguageInterface object implementing the class - */ - public function getLangObj() - { - $classname = $this->_lang; - return new $classname(); - } - - /** @} */ - // ######################################################################## - // CAS SERVER CONFIG - // ######################################################################## - /** - * @addtogroup internalConfig - * @{ - */ - - /** - * a record to store information about the CAS server. - * - $_server['version']: the version of the CAS server - * - $_server['hostname']: the hostname of the CAS server - * - $_server['port']: the port the CAS server is running on - * - $_server['uri']: the base URI the CAS server is responding on - * - $_server['base_url']: the base URL of the CAS server - * - $_server['login_url']: the login URL of the CAS server - * - $_server['service_validate_url']: the service validating URL of the - * CAS server - * - $_server['proxy_url']: the proxy URL of the CAS server - * - $_server['proxy_validate_url']: the proxy validating URL of the CAS server - * - $_server['logout_url']: the logout URL of the CAS server - * - * $_server['version'], $_server['hostname'], $_server['port'] and - * $_server['uri'] are written by CAS_Client::CAS_Client(), read by - * CAS_Client::getServerVersion(), CAS_Client::_getServerHostname(), - * CAS_Client::_getServerPort() and CAS_Client::_getServerURI(). - * - * The other fields are written and read by CAS_Client::_getServerBaseURL(), - * CAS_Client::getServerLoginURL(), CAS_Client::getServerServiceValidateURL(), - * CAS_Client::getServerProxyValidateURL() and CAS_Client::getServerLogoutURL(). - * - * @hideinitializer - */ - private $_server = array( - 'version' => -1, - 'hostname' => 'none', - 'port' => -1, - 'uri' => 'none'); - - /** - * This method is used to retrieve the version of the CAS server. - * - * @return string the version of the CAS server. - */ - public function getServerVersion() - { - return $this->_server['version']; - } - - /** - * This method is used to retrieve the hostname of the CAS server. - * - * @return string the hostname of the CAS server. - */ - private function _getServerHostname() - { - return $this->_server['hostname']; - } - - /** - * This method is used to retrieve the port of the CAS server. - * - * @return string the port of the CAS server. - */ - private function _getServerPort() - { - return $this->_server['port']; - } - - /** - * This method is used to retrieve the URI of the CAS server. - * - * @return string a URI. - */ - private function _getServerURI() - { - return $this->_server['uri']; - } - - /** - * This method is used to retrieve the base URL of the CAS server. - * - * @return string a URL. - */ - private function _getServerBaseURL() - { - // the URL is build only when needed - if ( empty($this->_server['base_url']) ) { - $this->_server['base_url'] = 'https://' . $this->_getServerHostname(); - if ($this->_getServerPort()!=443) { - $this->_server['base_url'] .= ':' - .$this->_getServerPort(); - } - $this->_server['base_url'] .= $this->_getServerURI(); - } - return $this->_server['base_url']; - } - - /** - * This method is used to retrieve the login URL of the CAS server. - * - * @param bool $gateway true to check authentication, false to force it - * @param bool $renew true to force the authentication with the CAS server - * - * @return a URL. - * @note It is recommended that CAS implementations ignore the "gateway" - * parameter if "renew" is set - */ - public function getServerLoginURL($gateway=false,$renew=false) - { - phpCAS::traceBegin(); - // the URL is build only when needed - if ( empty($this->_server['login_url']) ) { - $this->_server['login_url'] = $this->_buildQueryUrl($this->_getServerBaseURL().'login','service='.urlencode($this->getURL())); - } - $url = $this->_server['login_url']; - if ($renew) { - // It is recommended that when the "renew" parameter is set, its - // value be "true" - $url = $this->_buildQueryUrl($url, 'renew=true'); - } elseif ($gateway) { - // It is recommended that when the "gateway" parameter is set, its - // value be "true" - $url = $this->_buildQueryUrl($url, 'gateway=true'); - } - phpCAS::traceEnd($url); - return $url; - } - - /** - * This method sets the login URL of the CAS server. - * - * @param string $url the login URL - * - * @return string login url - */ - public function setServerLoginURL($url) - { - // Argument Validation - if (gettype($url) != 'string') - throw new CAS_TypeMismatchException($url, '$url', 'string'); - - return $this->_server['login_url'] = $url; - } - - - /** - * This method sets the serviceValidate URL of the CAS server. - * - * @param string $url the serviceValidate URL - * - * @return string serviceValidate URL - */ - public function setServerServiceValidateURL($url) - { - // Argument Validation - if (gettype($url) != 'string') - throw new CAS_TypeMismatchException($url, '$url', 'string'); - - return $this->_server['service_validate_url'] = $url; - } - - - /** - * This method sets the proxyValidate URL of the CAS server. - * - * @param string $url the proxyValidate URL - * - * @return string proxyValidate URL - */ - public function setServerProxyValidateURL($url) - { - // Argument Validation - if (gettype($url) != 'string') - throw new CAS_TypeMismatchException($url, '$url', 'string'); - - return $this->_server['proxy_validate_url'] = $url; - } - - - /** - * This method sets the samlValidate URL of the CAS server. - * - * @param string $url the samlValidate URL - * - * @return string samlValidate URL - */ - public function setServerSamlValidateURL($url) - { - // Argument Validation - if (gettype($url) != 'string') - throw new CAS_TypeMismatchException($url, '$url', 'string'); - - return $this->_server['saml_validate_url'] = $url; - } - - - /** - * This method is used to retrieve the service validating URL of the CAS server. - * - * @return string serviceValidate URL. - */ - public function getServerServiceValidateURL() - { - phpCAS::traceBegin(); - // the URL is build only when needed - if ( empty($this->_server['service_validate_url']) ) { - switch ($this->getServerVersion()) { - case CAS_VERSION_1_0: - $this->_server['service_validate_url'] = $this->_getServerBaseURL() - .'validate'; - break; - case CAS_VERSION_2_0: - $this->_server['service_validate_url'] = $this->_getServerBaseURL() - .'serviceValidate'; - break; - case CAS_VERSION_3_0: - $this->_server['service_validate_url'] = $this->_getServerBaseURL() - .'p3/serviceValidate'; - break; - } - } - $url = $this->_buildQueryUrl( - $this->_server['service_validate_url'], - 'service='.urlencode($this->getURL()) - ); - phpCAS::traceEnd($url); - return $url; - } - /** - * This method is used to retrieve the SAML validating URL of the CAS server. - * - * @return string samlValidate URL. - */ - public function getServerSamlValidateURL() - { - phpCAS::traceBegin(); - // the URL is build only when needed - if ( empty($this->_server['saml_validate_url']) ) { - switch ($this->getServerVersion()) { - case SAML_VERSION_1_1: - $this->_server['saml_validate_url'] = $this->_getServerBaseURL().'samlValidate'; - break; - } - } - - $url = $this->_buildQueryUrl( - $this->_server['saml_validate_url'], - 'TARGET='.urlencode($this->getURL()) - ); - phpCAS::traceEnd($url); - return $url; - } - - /** - * This method is used to retrieve the proxy validating URL of the CAS server. - * - * @return string proxyValidate URL. - */ - public function getServerProxyValidateURL() - { - phpCAS::traceBegin(); - // the URL is build only when needed - if ( empty($this->_server['proxy_validate_url']) ) { - switch ($this->getServerVersion()) { - case CAS_VERSION_1_0: - $this->_server['proxy_validate_url'] = ''; - break; - case CAS_VERSION_2_0: - $this->_server['proxy_validate_url'] = $this->_getServerBaseURL().'proxyValidate'; - break; - case CAS_VERSION_3_0: - $this->_server['proxy_validate_url'] = $this->_getServerBaseURL().'p3/proxyValidate'; - break; - } - } - $url = $this->_buildQueryUrl( - $this->_server['proxy_validate_url'], - 'service='.urlencode($this->getURL()) - ); - phpCAS::traceEnd($url); - return $url; - } - - - /** - * This method is used to retrieve the proxy URL of the CAS server. - * - * @return string proxy URL. - */ - public function getServerProxyURL() - { - // the URL is build only when needed - if ( empty($this->_server['proxy_url']) ) { - switch ($this->getServerVersion()) { - case CAS_VERSION_1_0: - $this->_server['proxy_url'] = ''; - break; - case CAS_VERSION_2_0: - case CAS_VERSION_3_0: - $this->_server['proxy_url'] = $this->_getServerBaseURL().'proxy'; - break; - } - } - return $this->_server['proxy_url']; - } - - /** - * This method is used to retrieve the logout URL of the CAS server. - * - * @return string logout URL. - */ - public function getServerLogoutURL() - { - // the URL is build only when needed - if ( empty($this->_server['logout_url']) ) { - $this->_server['logout_url'] = $this->_getServerBaseURL().'logout'; - } - return $this->_server['logout_url']; - } - - /** - * This method sets the logout URL of the CAS server. - * - * @param string $url the logout URL - * - * @return string logout url - */ - public function setServerLogoutURL($url) - { - // Argument Validation - if (gettype($url) != 'string') - throw new CAS_TypeMismatchException($url, '$url', 'string'); - - return $this->_server['logout_url'] = $url; - } - - /** - * An array to store extra curl options. - */ - private $_curl_options = array(); - - /** - * This method is used to set additional user curl options. - * - * @param string $key name of the curl option - * @param string $value value of the curl option - * - * @return void - */ - public function setExtraCurlOption($key, $value) - { - $this->_curl_options[$key] = $value; - } - - /** @} */ - - // ######################################################################## - // Change the internal behaviour of phpcas - // ######################################################################## - - /** - * @addtogroup internalBehave - * @{ - */ - - /** - * The class to instantiate for making web requests in readUrl(). - * The class specified must implement the CAS_Request_RequestInterface. - * By default CAS_Request_CurlRequest is used, but this may be overridden to - * supply alternate request mechanisms for testing. - */ - private $_requestImplementation = 'CAS_Request_CurlRequest'; - - /** - * Override the default implementation used to make web requests in readUrl(). - * This class must implement the CAS_Request_RequestInterface. - * - * @param string $className name of the RequestImplementation class - * - * @return void - */ - public function setRequestImplementation ($className) - { - $obj = new $className; - if (!($obj instanceof CAS_Request_RequestInterface)) { - throw new CAS_InvalidArgumentException( - '$className must implement the CAS_Request_RequestInterface' - ); - } - $this->_requestImplementation = $className; - } - - /** - * @var boolean $_clearTicketsFromUrl; If true, phpCAS will clear session - * tickets from the URL after a successful authentication. - */ - private $_clearTicketsFromUrl = true; - - /** - * Configure the client to not send redirect headers and call exit() on - * authentication success. The normal redirect is used to remove the service - * ticket from the client's URL, but for running unit tests we need to - * continue without exiting. - * - * Needed for testing authentication - * - * @return void - */ - public function setNoClearTicketsFromUrl () - { - $this->_clearTicketsFromUrl = false; - } - - /** - * @var callback $_postAuthenticateCallbackFunction; - */ - private $_postAuthenticateCallbackFunction = null; - - /** - * @var array $_postAuthenticateCallbackArgs; - */ - private $_postAuthenticateCallbackArgs = array(); - - /** - * Set a callback function to be run when a user authenticates. - * - * The callback function will be passed a $logoutTicket as its first parameter, - * followed by any $additionalArgs you pass. The $logoutTicket parameter is an - * opaque string that can be used to map a session-id to the logout request - * in order to support single-signout in applications that manage their own - * sessions (rather than letting phpCAS start the session). - * - * phpCAS::forceAuthentication() will always exit and forward client unless - * they are already authenticated. To perform an action at the moment the user - * logs in (such as registering an account, performing logging, etc), register - * a callback function here. - * - * @param string $function callback function to call - * @param array $additionalArgs optional array of arguments - * - * @return void - */ - public function setPostAuthenticateCallback ($function, array $additionalArgs = array()) - { - $this->_postAuthenticateCallbackFunction = $function; - $this->_postAuthenticateCallbackArgs = $additionalArgs; - } - - /** - * @var callback $_signoutCallbackFunction; - */ - private $_signoutCallbackFunction = null; - - /** - * @var array $_signoutCallbackArgs; - */ - private $_signoutCallbackArgs = array(); - - /** - * Set a callback function to be run when a single-signout request is received. - * - * The callback function will be passed a $logoutTicket as its first parameter, - * followed by any $additionalArgs you pass. The $logoutTicket parameter is an - * opaque string that can be used to map a session-id to the logout request in - * order to support single-signout in applications that manage their own sessions - * (rather than letting phpCAS start and destroy the session). - * - * @param string $function callback function to call - * @param array $additionalArgs optional array of arguments - * - * @return void - */ - public function setSingleSignoutCallback ($function, array $additionalArgs = array()) - { - $this->_signoutCallbackFunction = $function; - $this->_signoutCallbackArgs = $additionalArgs; - } - - // ######################################################################## - // Methods for supplying code-flow feedback to integrators. - // ######################################################################## - - /** - * Ensure that this is actually a proxy object or fail with an exception - * - * @throws CAS_OutOfSequenceBeforeProxyException - * - * @return void - */ - public function ensureIsProxy() - { - if (!$this->isProxy()) { - throw new CAS_OutOfSequenceBeforeProxyException(); - } - } - - /** - * Mark the caller of authentication. This will help client integraters determine - * problems with their code flow if they call a function such as getUser() before - * authentication has occurred. - * - * @param bool $auth True if authentication was successful, false otherwise. - * - * @return null - */ - public function markAuthenticationCall ($auth) - { - // store where the authentication has been checked and the result - $dbg = debug_backtrace(); - $this->_authentication_caller = array ( - 'file' => $dbg[1]['file'], - 'line' => $dbg[1]['line'], - 'method' => $dbg[1]['class'] . '::' . $dbg[1]['function'], - 'result' => (boolean)$auth - ); - } - private $_authentication_caller; - - /** - * Answer true if authentication has been checked. - * - * @return bool - */ - public function wasAuthenticationCalled () - { - return !empty($this->_authentication_caller); - } - - /** - * Ensure that authentication was checked. Terminate with exception if no - * authentication was performed - * - * @throws CAS_OutOfSequenceBeforeAuthenticationCallException - * - * @return void - */ - private function _ensureAuthenticationCalled() - { - if (!$this->wasAuthenticationCalled()) { - throw new CAS_OutOfSequenceBeforeAuthenticationCallException(); - } - } - - /** - * Answer the result of the authentication call. - * - * Throws a CAS_OutOfSequenceException if wasAuthenticationCalled() is false - * and markAuthenticationCall() didn't happen. - * - * @return bool - */ - public function wasAuthenticationCallSuccessful () - { - $this->_ensureAuthenticationCalled(); - return $this->_authentication_caller['result']; - } - - - /** - * Ensure that authentication was checked. Terminate with exception if no - * authentication was performed - * - * @throws CAS_OutOfSequenceBeforeAuthenticationCallException - * - * @return void - */ - public function ensureAuthenticationCallSuccessful() - { - $this->_ensureAuthenticationCalled(); - if (!$this->_authentication_caller['result']) { - throw new CAS_OutOfSequenceException( - 'authentication was checked (by ' - . $this->getAuthenticationCallerMethod() - . '() at ' . $this->getAuthenticationCallerFile() - . ':' . $this->getAuthenticationCallerLine() - . ') but the method returned false' - ); - } - } - - /** - * Answer information about the authentication caller. - * - * Throws a CAS_OutOfSequenceException if wasAuthenticationCalled() is false - * and markAuthenticationCall() didn't happen. - * - * @return array Keys are 'file', 'line', and 'method' - */ - public function getAuthenticationCallerFile () - { - $this->_ensureAuthenticationCalled(); - return $this->_authentication_caller['file']; - } - - /** - * Answer information about the authentication caller. - * - * Throws a CAS_OutOfSequenceException if wasAuthenticationCalled() is false - * and markAuthenticationCall() didn't happen. - * - * @return array Keys are 'file', 'line', and 'method' - */ - public function getAuthenticationCallerLine () - { - $this->_ensureAuthenticationCalled(); - return $this->_authentication_caller['line']; - } - - /** - * Answer information about the authentication caller. - * - * Throws a CAS_OutOfSequenceException if wasAuthenticationCalled() is false - * and markAuthenticationCall() didn't happen. - * - * @return array Keys are 'file', 'line', and 'method' - */ - public function getAuthenticationCallerMethod () - { - $this->_ensureAuthenticationCalled(); - return $this->_authentication_caller['method']; - } - - /** @} */ - - // ######################################################################## - // CONSTRUCTOR - // ######################################################################## - /** - * @addtogroup internalConfig - * @{ - */ - - /** - * CAS_Client constructor. - * - * @param string $server_version the version of the CAS server - * @param bool $proxy true if the CAS client is a CAS proxy - * @param string $server_hostname the hostname of the CAS server - * @param int $server_port the port the CAS server is running on - * @param string $server_uri the URI the CAS server is responding on - * @param bool $changeSessionID Allow phpCAS to change the session_id - * (Single Sign Out/handleLogoutRequests - * is based on that change) - * - * @return a newly created CAS_Client object - */ - public function __construct( - $server_version, - $proxy, - $server_hostname, - $server_port, - $server_uri, - $changeSessionID = true - ) { - // Argument validation - if (gettype($server_version) != 'string') - throw new CAS_TypeMismatchException($server_version, '$server_version', 'string'); - if (gettype($proxy) != 'boolean') - throw new CAS_TypeMismatchException($proxy, '$proxy', 'boolean'); - if (gettype($server_hostname) != 'string') - throw new CAS_TypeMismatchException($server_hostname, '$server_hostname', 'string'); - if (gettype($server_port) != 'integer') - throw new CAS_TypeMismatchException($server_port, '$server_port', 'integer'); - if (gettype($server_uri) != 'string') - throw new CAS_TypeMismatchException($server_uri, '$server_uri', 'string'); - if (gettype($changeSessionID) != 'boolean') - throw new CAS_TypeMismatchException($changeSessionID, '$changeSessionID', 'boolean'); - - phpCAS::traceBegin(); - // true : allow to change the session_id(), false session_id won't be - // change and logout won't be handle because of that - $this->_setChangeSessionID($changeSessionID); - - // skip Session Handling for logout requests and if don't want it' - if (session_id()=="" && !$this->_isLogoutRequest()) { - session_start(); - phpCAS :: trace("Starting a new session " . session_id()); - } - - // are we in proxy mode ? - $this->_proxy = $proxy; - - // Make cookie handling available. - if ($this->isProxy()) { - if (!isset($_SESSION['phpCAS'])) { - $_SESSION['phpCAS'] = array(); - } - if (!isset($_SESSION['phpCAS']['service_cookies'])) { - $_SESSION['phpCAS']['service_cookies'] = array(); - } - $this->_serviceCookieJar = new CAS_CookieJar( - $_SESSION['phpCAS']['service_cookies'] - ); - } - - //check version - switch ($server_version) { - case CAS_VERSION_1_0: - if ( $this->isProxy() ) { - phpCAS::error( - 'CAS proxies are not supported in CAS '.$server_version - ); - } - break; - case CAS_VERSION_2_0: - case CAS_VERSION_3_0: - break; - case SAML_VERSION_1_1: - break; - default: - phpCAS::error( - 'this version of CAS (`'.$server_version - .'\') is not supported by phpCAS '.phpCAS::getVersion() - ); - } - $this->_server['version'] = $server_version; - - // check hostname - if ( empty($server_hostname) - || !preg_match('/[\.\d\-abcdefghijklmnopqrstuvwxyz]*/', $server_hostname) - ) { - phpCAS::error('bad CAS server hostname (`'.$server_hostname.'\')'); - } - $this->_server['hostname'] = $server_hostname; - - // check port - if ( $server_port == 0 - || !is_int($server_port) - ) { - phpCAS::error('bad CAS server port (`'.$server_hostname.'\')'); - } - $this->_server['port'] = $server_port; - - // check URI - if ( !preg_match('/[\.\d\-_abcdefghijklmnopqrstuvwxyz\/]*/', $server_uri) ) { - phpCAS::error('bad CAS server URI (`'.$server_uri.'\')'); - } - // add leading and trailing `/' and remove doubles - if(strstr($server_uri, '?') === false) $server_uri .= '/'; - $server_uri = preg_replace('/\/\//', '/', '/'.$server_uri); - $this->_server['uri'] = $server_uri; - - // set to callback mode if PgtIou and PgtId CGI GET parameters are provided - if ( $this->isProxy() ) { - $this->_setCallbackMode(!empty($_GET['pgtIou'])&&!empty($_GET['pgtId'])); - } - - if ( $this->_isCallbackMode() ) { - //callback mode: check that phpCAS is secured - if ( !$this->_isHttps() ) { - phpCAS::error( - 'CAS proxies must be secured to use phpCAS; PGT\'s will not be received from the CAS server' - ); - } - } else { - //normal mode: get ticket and remove it from CGI parameters for - // developers - $ticket = (isset($_GET['ticket']) ? $_GET['ticket'] : null); - if (preg_match('/^[SP]T-/', $ticket) ) { - phpCAS::trace('Ticket \''.$ticket.'\' found'); - $this->setTicket($ticket); - unset($_GET['ticket']); - } else if ( !empty($ticket) ) { - //ill-formed ticket, halt - phpCAS::error( - 'ill-formed ticket found in the URL (ticket=`' - .htmlentities($ticket).'\')' - ); - } - - } - phpCAS::traceEnd(); - } - - /** @} */ - - // XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX - // XX XX - // XX Session Handling XX - // XX XX - // XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX - - /** - * @addtogroup internalConfig - * @{ - */ - - - /** - * A variable to whether phpcas will use its own session handling. Default = true - * @hideinitializer - */ - private $_change_session_id = true; - - /** - * Set a parameter whether to allow phpCas to change session_id - * - * @param bool $allowed allow phpCas to change session_id - * - * @return void - */ - private function _setChangeSessionID($allowed) - { - $this->_change_session_id = $allowed; - } - - /** - * Get whether phpCas is allowed to change session_id - * - * @return bool - */ - public function getChangeSessionID() - { - return $this->_change_session_id; - } - - /** @} */ - - // XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX - // XX XX - // XX AUTHENTICATION XX - // XX XX - // XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX - - /** - * @addtogroup internalAuthentication - * @{ - */ - - /** - * The Authenticated user. Written by CAS_Client::_setUser(), read by - * CAS_Client::getUser(). - * - * @hideinitializer - */ - private $_user = ''; - - /** - * This method sets the CAS user's login name. - * - * @param string $user the login name of the authenticated user. - * - * @return void - */ - private function _setUser($user) - { - $this->_user = $user; - } - - /** - * This method returns the CAS user's login name. - * - * @return string the login name of the authenticated user - * - * @warning should be called only after CAS_Client::forceAuthentication() or - * CAS_Client::isAuthenticated(), otherwise halt with an error. - */ - public function getUser() - { - // Sequence validation - $this->ensureAuthenticationCallSuccessful(); - - return $this->_getUser(); - } - - /** - * This method returns the CAS user's login name. - * - * @return string the login name of the authenticated user - * - * @warning should be called only after CAS_Client::forceAuthentication() or - * CAS_Client::isAuthenticated(), otherwise halt with an error. - */ - private function _getUser() - { - // This is likely a duplicate check that could be removed.... - if ( empty($this->_user) ) { - phpCAS::error( - 'this method should be used only after '.__CLASS__ - .'::forceAuthentication() or '.__CLASS__.'::isAuthenticated()' - ); - } - return $this->_user; - } - - /** - * The Authenticated users attributes. Written by - * CAS_Client::setAttributes(), read by CAS_Client::getAttributes(). - * @attention client applications should use phpCAS::getAttributes(). - * - * @hideinitializer - */ - private $_attributes = array(); - - /** - * Set an array of attributes - * - * @param array $attributes a key value array of attributes - * - * @return void - */ - public function setAttributes($attributes) - { - $this->_attributes = $attributes; - } - - /** - * Get an key values arry of attributes - * - * @return arry of attributes - */ - public function getAttributes() - { - // Sequence validation - $this->ensureAuthenticationCallSuccessful(); - // This is likely a duplicate check that could be removed.... - if ( empty($this->_user) ) { - // if no user is set, there shouldn't be any attributes also... - phpCAS::error( - 'this method should be used only after '.__CLASS__ - .'::forceAuthentication() or '.__CLASS__.'::isAuthenticated()' - ); - } - return $this->_attributes; - } - - /** - * Check whether attributes are available - * - * @return bool attributes available - */ - public function hasAttributes() - { - // Sequence validation - $this->ensureAuthenticationCallSuccessful(); - - return !empty($this->_attributes); - } - /** - * Check whether a specific attribute with a name is available - * - * @param string $key name of attribute - * - * @return bool is attribute available - */ - public function hasAttribute($key) - { - // Sequence validation - $this->ensureAuthenticationCallSuccessful(); - - return $this->_hasAttribute($key); - } - - /** - * Check whether a specific attribute with a name is available - * - * @param string $key name of attribute - * - * @return bool is attribute available - */ - private function _hasAttribute($key) - { - return (is_array($this->_attributes) - && array_key_exists($key, $this->_attributes)); - } - - /** - * Get a specific attribute by name - * - * @param string $key name of attribute - * - * @return string attribute values - */ - public function getAttribute($key) - { - // Sequence validation - $this->ensureAuthenticationCallSuccessful(); - - if ($this->_hasAttribute($key)) { - return $this->_attributes[$key]; - } - } - - /** - * This method is called to renew the authentication of the user - * If the user is authenticated, renew the connection - * If not, redirect to CAS - * - * @return true when the user is authenticated; otherwise halt. - */ - public function renewAuthentication() - { - phpCAS::traceBegin(); - // Either way, the user is authenticated by CAS - if (isset( $_SESSION['phpCAS']['auth_checked'])) { - unset($_SESSION['phpCAS']['auth_checked']); - } - if ( $this->isAuthenticated(true) ) { - phpCAS::trace('user already authenticated'); - $res = true; - } else { - $this->redirectToCas(false, true); - // never reached - $res = false; - } - phpCAS::traceEnd(); - return $res; - } - - /** - * This method is called to be sure that the user is authenticated. When not - * authenticated, halt by redirecting to the CAS server; otherwise return true. - * - * @return true when the user is authenticated; otherwise halt. - */ - public function forceAuthentication() - { - phpCAS::traceBegin(); - - if ( $this->isAuthenticated() ) { - // the user is authenticated, nothing to be done. - phpCAS::trace('no need to authenticate'); - $res = true; - } else { - // the user is not authenticated, redirect to the CAS server - if (isset($_SESSION['phpCAS']['auth_checked'])) { - unset($_SESSION['phpCAS']['auth_checked']); - } - $this->redirectToCas(false/* no gateway */); - // never reached - $res = false; - } - phpCAS::traceEnd($res); - return $res; - } - - /** - * An integer that gives the number of times authentication will be cached - * before rechecked. - * - * @hideinitializer - */ - private $_cache_times_for_auth_recheck = 0; - - /** - * Set the number of times authentication will be cached before rechecked. - * - * @param int $n number of times to wait for a recheck - * - * @return void - */ - public function setCacheTimesForAuthRecheck($n) - { - if (gettype($n) != 'integer') - throw new CAS_TypeMismatchException($n, '$n', 'string'); - - $this->_cache_times_for_auth_recheck = $n; - } - - /** - * This method is called to check whether the user is authenticated or not. - * - * @return true when the user is authenticated, false when a previous - * gateway login failed or the function will not return if the user is - * redirected to the cas server for a gateway login attempt - */ - public function checkAuthentication() - { - phpCAS::traceBegin(); - $res = false; - if ( $this->isAuthenticated() ) { - phpCAS::trace('user is authenticated'); - /* The 'auth_checked' variable is removed just in case it's set. */ - unset($_SESSION['phpCAS']['auth_checked']); - $res = true; - } else if (isset($_SESSION['phpCAS']['auth_checked'])) { - // the previous request has redirected the client to the CAS server - // with gateway=true - unset($_SESSION['phpCAS']['auth_checked']); - $res = false; - } else { - // avoid a check against CAS on every request - if (!isset($_SESSION['phpCAS']['unauth_count'])) { - $_SESSION['phpCAS']['unauth_count'] = -2; // uninitialized - } - - if (($_SESSION['phpCAS']['unauth_count'] != -2 - && $this->_cache_times_for_auth_recheck == -1) - || ($_SESSION['phpCAS']['unauth_count'] >= 0 - && $_SESSION['phpCAS']['unauth_count'] < $this->_cache_times_for_auth_recheck) - ) { - $res = false; - - if ($this->_cache_times_for_auth_recheck != -1) { - $_SESSION['phpCAS']['unauth_count']++; - phpCAS::trace( - 'user is not authenticated (cached for ' - .$_SESSION['phpCAS']['unauth_count'].' times of ' - .$this->_cache_times_for_auth_recheck.')' - ); - } else { - phpCAS::trace( - 'user is not authenticated (cached for until login pressed)' - ); - } - } else { - $_SESSION['phpCAS']['unauth_count'] = 0; - $_SESSION['phpCAS']['auth_checked'] = true; - phpCAS::trace('user is not authenticated (cache reset)'); - $this->redirectToCas(true/* gateway */); - // never reached - $res = false; - } - } - phpCAS::traceEnd($res); - return $res; - } - - /** - * This method is called to check if the user is authenticated (previously or by - * tickets given in the URL). - * - * @param bool $renew true to force the authentication with the CAS server - * - * @return true when the user is authenticated. Also may redirect to the - * same URL without the ticket. - */ - public function isAuthenticated($renew=false) - { - phpCAS::traceBegin(); - $res = false; - $validate_url = ''; - if ( $this->_wasPreviouslyAuthenticated() ) { - if ($this->hasTicket()) { - // User has a additional ticket but was already authenticated - phpCAS::trace( - 'ticket was present and will be discarded, use renewAuthenticate()' - ); - if ($this->_clearTicketsFromUrl) { - phpCAS::trace("Prepare redirect to : ".$this->getURL()); - session_write_close(); - header('Location: '.$this->getURL()); - flush(); - phpCAS::traceExit(); - throw new CAS_GracefullTerminationException(); - } else { - phpCAS::trace( - 'Already authenticated, but skipping ticket clearing since setNoClearTicketsFromUrl() was used.' - ); - $res = true; - } - } else { - // the user has already (previously during the session) been - // authenticated, nothing to be done. - phpCAS::trace( - 'user was already authenticated, no need to look for tickets' - ); - $res = true; - } - - // Mark the auth-check as complete to allow post-authentication - // callbacks to make use of phpCAS::getUser() and similar methods - $this->markAuthenticationCall($res); - } else { - if ($this->hasTicket()) { - switch ($this->getServerVersion()) { - case CAS_VERSION_1_0: - // if a Service Ticket was given, validate it - phpCAS::trace( - 'CAS 1.0 ticket `'.$this->getTicket().'\' is present' - ); - $this->validateCAS10( - $validate_url, $text_response, $tree_response, $renew - ); // if it fails, it halts - phpCAS::trace( - 'CAS 1.0 ticket `'.$this->getTicket().'\' was validated' - ); - $_SESSION['phpCAS']['user'] = $this->_getUser(); - $res = true; - $logoutTicket = $this->getTicket(); - break; - case CAS_VERSION_2_0: - case CAS_VERSION_3_0: - // if a Proxy Ticket was given, validate it - phpCAS::trace( - 'CAS '.$this->getServerVersion().' ticket `'.$this->getTicket().'\' is present' - ); - $this->validateCAS20( - $validate_url, $text_response, $tree_response, $renew - ); // note: if it fails, it halts - phpCAS::trace( - 'CAS '.$this->getServerVersion().' ticket `'.$this->getTicket().'\' was validated' - ); - if ( $this->isProxy() ) { - $this->_validatePGT( - $validate_url, $text_response, $tree_response - ); // idem - phpCAS::trace('PGT `'.$this->_getPGT().'\' was validated'); - $_SESSION['phpCAS']['pgt'] = $this->_getPGT(); - } - $_SESSION['phpCAS']['user'] = $this->_getUser(); - if (!empty($this->_attributes)) { - $_SESSION['phpCAS']['attributes'] = $this->_attributes; - } - $proxies = $this->getProxies(); - if (!empty($proxies)) { - $_SESSION['phpCAS']['proxies'] = $this->getProxies(); - } - $res = true; - $logoutTicket = $this->getTicket(); - break; - case SAML_VERSION_1_1: - // if we have a SAML ticket, validate it. - phpCAS::trace( - 'SAML 1.1 ticket `'.$this->getTicket().'\' is present' - ); - $this->validateSA( - $validate_url, $text_response, $tree_response, $renew - ); // if it fails, it halts - phpCAS::trace( - 'SAML 1.1 ticket `'.$this->getTicket().'\' was validated' - ); - $_SESSION['phpCAS']['user'] = $this->_getUser(); - $_SESSION['phpCAS']['attributes'] = $this->_attributes; - $res = true; - $logoutTicket = $this->getTicket(); - break; - default: - phpCAS::trace('Protocoll error'); - break; - } - } else { - // no ticket given, not authenticated - phpCAS::trace('no ticket found'); - } - - // Mark the auth-check as complete to allow post-authentication - // callbacks to make use of phpCAS::getUser() and similar methods - $this->markAuthenticationCall($res); - - if ($res) { - // call the post-authenticate callback if registered. - if ($this->_postAuthenticateCallbackFunction) { - $args = $this->_postAuthenticateCallbackArgs; - array_unshift($args, $logoutTicket); - call_user_func_array( - $this->_postAuthenticateCallbackFunction, $args - ); - } - - // if called with a ticket parameter, we need to redirect to the - // app without the ticket so that CAS-ification is transparent - // to the browser (for later POSTS) most of the checks and - // errors should have been made now, so we're safe for redirect - // without masking error messages. remove the ticket as a - // security precaution to prevent a ticket in the HTTP_REFERRER - if ($this->_clearTicketsFromUrl) { - phpCAS::trace("Prepare redirect to : ".$this->getURL()); - session_write_close(); - header('Location: '.$this->getURL()); - flush(); - phpCAS::traceExit(); - throw new CAS_GracefullTerminationException(); - } - } - } - phpCAS::traceEnd($res); - return $res; - } - - /** - * This method tells if the current session is authenticated. - * - * @return true if authenticated based soley on $_SESSION variable - */ - public function isSessionAuthenticated () - { - return !empty($_SESSION['phpCAS']['user']); - } - - /** - * This method tells if the user has already been (previously) authenticated - * by looking into the session variables. - * - * @note This function switches to callback mode when needed. - * - * @return true when the user has already been authenticated; false otherwise. - */ - private function _wasPreviouslyAuthenticated() - { - phpCAS::traceBegin(); - - if ( $this->_isCallbackMode() ) { - // Rebroadcast the pgtIou and pgtId to all nodes - if ($this->_rebroadcast&&!isset($_POST['rebroadcast'])) { - $this->_rebroadcast(self::PGTIOU); - } - $this->_callback(); - } - - $auth = false; - - if ( $this->isProxy() ) { - // CAS proxy: username and PGT must be present - if ( $this->isSessionAuthenticated() - && !empty($_SESSION['phpCAS']['pgt']) - ) { - // authentication already done - $this->_setUser($_SESSION['phpCAS']['user']); - if (isset($_SESSION['phpCAS']['attributes'])) { - $this->setAttributes($_SESSION['phpCAS']['attributes']); - } - $this->_setPGT($_SESSION['phpCAS']['pgt']); - phpCAS::trace( - 'user = `'.$_SESSION['phpCAS']['user'].'\', PGT = `' - .$_SESSION['phpCAS']['pgt'].'\'' - ); - - // Include the list of proxies - if (isset($_SESSION['phpCAS']['proxies'])) { - $this->_setProxies($_SESSION['phpCAS']['proxies']); - phpCAS::trace( - 'proxies = "' - .implode('", "', $_SESSION['phpCAS']['proxies']).'"' - ); - } - - $auth = true; - } elseif ( $this->isSessionAuthenticated() - && empty($_SESSION['phpCAS']['pgt']) - ) { - // these two variables should be empty or not empty at the same time - phpCAS::trace( - 'username found (`'.$_SESSION['phpCAS']['user'] - .'\') but PGT is empty' - ); - // unset all tickets to enforce authentication - unset($_SESSION['phpCAS']); - $this->setTicket(''); - } elseif ( !$this->isSessionAuthenticated() - && !empty($_SESSION['phpCAS']['pgt']) - ) { - // these two variables should be empty or not empty at the same time - phpCAS::trace( - 'PGT found (`'.$_SESSION['phpCAS']['pgt'] - .'\') but username is empty' - ); - // unset all tickets to enforce authentication - unset($_SESSION['phpCAS']); - $this->setTicket(''); - } else { - phpCAS::trace('neither user nor PGT found'); - } - } else { - // `simple' CAS client (not a proxy): username must be present - if ( $this->isSessionAuthenticated() ) { - // authentication already done - $this->_setUser($_SESSION['phpCAS']['user']); - if (isset($_SESSION['phpCAS']['attributes'])) { - $this->setAttributes($_SESSION['phpCAS']['attributes']); - } - phpCAS::trace('user = `'.$_SESSION['phpCAS']['user'].'\''); - - // Include the list of proxies - if (isset($_SESSION['phpCAS']['proxies'])) { - $this->_setProxies($_SESSION['phpCAS']['proxies']); - phpCAS::trace( - 'proxies = "' - .implode('", "', $_SESSION['phpCAS']['proxies']).'"' - ); - } - - $auth = true; - } else { - phpCAS::trace('no user found'); - } - } - - phpCAS::traceEnd($auth); - return $auth; - } - - /** - * This method is used to redirect the client to the CAS server. - * It is used by CAS_Client::forceAuthentication() and - * CAS_Client::checkAuthentication(). - * - * @param bool $gateway true to check authentication, false to force it - * @param bool $renew true to force the authentication with the CAS server - * - * @return void - */ - public function redirectToCas($gateway=false,$renew=false) - { - phpCAS::traceBegin(); - $cas_url = $this->getServerLoginURL($gateway, $renew); - session_write_close(); - if (php_sapi_name() === 'cli') { - @header('Location: '.$cas_url); - } else { - header('Location: '.$cas_url); - } - phpCAS::trace("Redirect to : ".$cas_url); - $lang = $this->getLangObj(); - $this->printHTMLHeader($lang->getAuthenticationWanted()); - printf('<p>'. $lang->getShouldHaveBeenRedirected(). '</p>', $cas_url); - $this->printHTMLFooter(); - phpCAS::traceExit(); - throw new CAS_GracefullTerminationException(); - } - - - /** - * This method is used to logout from CAS. - * - * @param array $params an array that contains the optional url and service - * parameters that will be passed to the CAS server - * - * @return void - */ - public function logout($params) - { - phpCAS::traceBegin(); - $cas_url = $this->getServerLogoutURL(); - $paramSeparator = '?'; - if (isset($params['url'])) { - $cas_url = $cas_url . $paramSeparator . "url=" - . urlencode($params['url']); - $paramSeparator = '&'; - } - if (isset($params['service'])) { - $cas_url = $cas_url . $paramSeparator . "service=" - . urlencode($params['service']); - } - header('Location: '.$cas_url); - phpCAS::trace("Prepare redirect to : ".$cas_url); - - session_unset(); - session_destroy(); - $lang = $this->getLangObj(); - $this->printHTMLHeader($lang->getLogout()); - printf('<p>'.$lang->getShouldHaveBeenRedirected(). '</p>', $cas_url); - $this->printHTMLFooter(); - phpCAS::traceExit(); - throw new CAS_GracefullTerminationException(); - } - - /** - * Check of the current request is a logout request - * - * @return bool is logout request. - */ - private function _isLogoutRequest() - { - return !empty($_POST['logoutRequest']); - } - - /** - * This method handles logout requests. - * - * @param bool $check_client true to check the client bofore handling - * the request, false not to perform any access control. True by default. - * @param bool $allowed_clients an array of host names allowed to send - * logout requests. - * - * @return void - */ - public function handleLogoutRequests($check_client=true, $allowed_clients=false) - { - phpCAS::traceBegin(); - if (!$this->_isLogoutRequest()) { - phpCAS::trace("Not a logout request"); - phpCAS::traceEnd(); - return; - } - if (!$this->getChangeSessionID() - && is_null($this->_signoutCallbackFunction) - ) { - phpCAS::trace( - "phpCAS can't handle logout requests if it is not allowed to change session_id." - ); - } - phpCAS::trace("Logout requested"); - $decoded_logout_rq = urldecode($_POST['logoutRequest']); - phpCAS::trace("SAML REQUEST: ".$decoded_logout_rq); - $allowed = false; - if ($check_client) { - if (!$allowed_clients) { - $allowed_clients = array( $this->_getServerHostname() ); - } - $client_ip = $_SERVER['REMOTE_ADDR']; - $client = gethostbyaddr($client_ip); - phpCAS::trace("Client: ".$client."/".$client_ip); - foreach ($allowed_clients as $allowed_client) { - if (($client == $allowed_client) - || ($client_ip == $allowed_client) - ) { - phpCAS::trace( - "Allowed client '".$allowed_client - ."' matches, logout request is allowed" - ); - $allowed = true; - break; - } else { - phpCAS::trace( - "Allowed client '".$allowed_client."' does not match" - ); - } - } - } else { - phpCAS::trace("No access control set"); - $allowed = true; - } - // If Logout command is permitted proceed with the logout - if ($allowed) { - phpCAS::trace("Logout command allowed"); - // Rebroadcast the logout request - if ($this->_rebroadcast && !isset($_POST['rebroadcast'])) { - $this->_rebroadcast(self::LOGOUT); - } - // Extract the ticket from the SAML Request - preg_match( - "|<samlp:SessionIndex>(.*)</samlp:SessionIndex>|", - $decoded_logout_rq, $tick, PREG_OFFSET_CAPTURE, 3 - ); - $wrappedSamlSessionIndex = preg_replace( - '|<samlp:SessionIndex>|', '', $tick[0][0] - ); - $ticket2logout = preg_replace( - '|</samlp:SessionIndex>|', '', $wrappedSamlSessionIndex - ); - phpCAS::trace("Ticket to logout: ".$ticket2logout); - - // call the post-authenticate callback if registered. - if ($this->_signoutCallbackFunction) { - $args = $this->_signoutCallbackArgs; - array_unshift($args, $ticket2logout); - call_user_func_array($this->_signoutCallbackFunction, $args); - } - - // If phpCAS is managing the session_id, destroy session thanks to - // session_id. - if ($this->getChangeSessionID()) { - $session_id = preg_replace('/[^a-zA-Z0-9\-]/', '', $ticket2logout); - phpCAS::trace("Session id: ".$session_id); - - // destroy a possible application session created before phpcas - if (session_id() !== "") { - session_unset(); - session_destroy(); - } - // fix session ID - session_id($session_id); - $_COOKIE[session_name()]=$session_id; - $_GET[session_name()]=$session_id; - - // Overwrite session - session_start(); - session_unset(); - session_destroy(); - phpCAS::trace("Session ". $session_id . " destroyed"); - } - } else { - phpCAS::error("Unauthorized logout request from client '".$client."'"); - phpCAS::trace("Unauthorized logout request from client '".$client."'"); - } - flush(); - phpCAS::traceExit(); - throw new CAS_GracefullTerminationException(); - - } - - /** @} */ - - // XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX - // XX XX - // XX BASIC CLIENT FEATURES (CAS 1.0) XX - // XX XX - // XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX - - // ######################################################################## - // ST - // ######################################################################## - /** - * @addtogroup internalBasic - * @{ - */ - - /** - * The Ticket provided in the URL of the request if present - * (empty otherwise). Written by CAS_Client::CAS_Client(), read by - * CAS_Client::getTicket() and CAS_Client::_hasPGT(). - * - * @hideinitializer - */ - private $_ticket = ''; - - /** - * This method returns the Service Ticket provided in the URL of the request. - * - * @return string service ticket. - */ - public function getTicket() - { - return $this->_ticket; - } - - /** - * This method stores the Service Ticket. - * - * @param string $st The Service Ticket. - * - * @return void - */ - public function setTicket($st) - { - $this->_ticket = $st; - } - - /** - * This method tells if a Service Ticket was stored. - * - * @return bool if a Service Ticket has been stored. - */ - public function hasTicket() - { - return !empty($this->_ticket); - } - - /** @} */ - - // ######################################################################## - // ST VALIDATION - // ######################################################################## - /** - * @addtogroup internalBasic - * @{ - */ - - /** - * the certificate of the CAS server CA. - * - * @hideinitializer - */ - private $_cas_server_ca_cert = null; - - - /** - - * validate CN of the CAS server certificate - - * - - * @hideinitializer - - */ - - private $_cas_server_cn_validate = true; - - /** - * Set to true not to validate the CAS server. - * - * @hideinitializer - */ - private $_no_cas_server_validation = false; - - - /** - * Set the CA certificate of the CAS server. - * - * @param string $cert the PEM certificate file name of the CA that emited - * the cert of the server - * @param bool $validate_cn valiate CN of the CAS server certificate - * - * @return void - */ - public function setCasServerCACert($cert, $validate_cn) - { - // Argument validation - if (gettype($cert) != 'string') - throw new CAS_TypeMismatchException($cert, '$cert', 'string'); - if (gettype($validate_cn) != 'boolean') - throw new CAS_TypeMismatchException($validate_cn, '$validate_cn', 'boolean'); - - $this->_cas_server_ca_cert = $cert; - $this->_cas_server_cn_validate = $validate_cn; - } - - /** - * Set no SSL validation for the CAS server. - * - * @return void - */ - public function setNoCasServerValidation() - { - $this->_no_cas_server_validation = true; - } - - /** - * This method is used to validate a CAS 1,0 ticket; halt on failure, and - * sets $validate_url, $text_reponse and $tree_response on success. - * - * @param string &$validate_url reference to the the URL of the request to - * the CAS server. - * @param string &$text_response reference to the response of the CAS - * server, as is (XML text). - * @param string &$tree_response reference to the response of the CAS - * server, as a DOM XML tree. - * @param bool $renew true to force the authentication with the CAS server - * - * @return bool true when successfull and issue a CAS_AuthenticationException - * and false on an error - */ - public function validateCAS10(&$validate_url,&$text_response,&$tree_response,$renew=false) - { - phpCAS::traceBegin(); - $result = false; - // build the URL to validate the ticket - $validate_url = $this->getServerServiceValidateURL() - .'&ticket='.urlencode($this->getTicket()); - - if ( $renew ) { - // pass the renew - $validate_url .= '&renew=true'; - } - - // open and read the URL - if ( !$this->_readURL($validate_url, $headers, $text_response, $err_msg) ) { - phpCAS::trace( - 'could not open URL \''.$validate_url.'\' to validate ('.$err_msg.')' - ); - throw new CAS_AuthenticationException( - $this, 'CAS 1.0 ticket not validated', $validate_url, - true/*$no_response*/ - ); - $result = false; - } - - if (preg_match('/^no\n/', $text_response)) { - phpCAS::trace('Ticket has not been validated'); - throw new CAS_AuthenticationException( - $this, 'ST not validated', $validate_url, false/*$no_response*/, - false/*$bad_response*/, $text_response - ); - $result = false; - } else if (!preg_match('/^yes\n/', $text_response)) { - phpCAS::trace('ill-formed response'); - throw new CAS_AuthenticationException( - $this, 'Ticket not validated', $validate_url, - false/*$no_response*/, true/*$bad_response*/, $text_response - ); - $result = false; - } - // ticket has been validated, extract the user name - $arr = preg_split('/\n/', $text_response); - $this->_setUser(trim($arr[1])); - $result = true; - - if ($result) { - $this->_renameSession($this->getTicket()); - } - // at this step, ticket has been validated and $this->_user has been set, - phpCAS::traceEnd(true); - return true; - } - - /** @} */ - - - // ######################################################################## - // SAML VALIDATION - // ######################################################################## - /** - * @addtogroup internalSAML - * @{ - */ - - /** - * This method is used to validate a SAML TICKET; halt on failure, and sets - * $validate_url, $text_reponse and $tree_response on success. These - * parameters are used later by CAS_Client::_validatePGT() for CAS proxies. - * - * @param string &$validate_url reference to the the URL of the request to - * the CAS server. - * @param string &$text_response reference to the response of the CAS - * server, as is (XML text). - * @param string &$tree_response reference to the response of the CAS - * server, as a DOM XML tree. - * @param bool $renew true to force the authentication with the CAS server - * - * @return bool true when successfull and issue a CAS_AuthenticationException - * and false on an error - */ - public function validateSA(&$validate_url,&$text_response,&$tree_response,$renew=false) - { - phpCAS::traceBegin(); - $result = false; - // build the URL to validate the ticket - $validate_url = $this->getServerSamlValidateURL(); - - if ( $renew ) { - // pass the renew - $validate_url .= '&renew=true'; - } - - // open and read the URL - if ( !$this->_readURL($validate_url, $headers, $text_response, $err_msg) ) { - phpCAS::trace( - 'could not open URL \''.$validate_url.'\' to validate ('.$err_msg.')' - ); - throw new CAS_AuthenticationException( - $this, 'SA not validated', $validate_url, true/*$no_response*/ - ); - } - - phpCAS::trace('server version: '.$this->getServerVersion()); - - // analyze the result depending on the version - switch ($this->getServerVersion()) { - case SAML_VERSION_1_1: - // create new DOMDocument Object - $dom = new DOMDocument(); - // Fix possible whitspace problems - $dom->preserveWhiteSpace = false; - // read the response of the CAS server into a DOM object - if (!($dom->loadXML($text_response))) { - phpCAS::trace('dom->loadXML() failed'); - throw new CAS_AuthenticationException( - $this, 'SA not validated', $validate_url, - false/*$no_response*/, true/*$bad_response*/, - $text_response - ); - $result = false; - } - // read the root node of the XML tree - if (!($tree_response = $dom->documentElement)) { - phpCAS::trace('documentElement() failed'); - throw new CAS_AuthenticationException( - $this, 'SA not validated', $validate_url, - false/*$no_response*/, true/*$bad_response*/, - $text_response - ); - $result = false; - } else if ( $tree_response->localName != 'Envelope' ) { - // insure that tag name is 'Envelope' - phpCAS::trace( - 'bad XML root node (should be `Envelope\' instead of `' - .$tree_response->localName.'\'' - ); - throw new CAS_AuthenticationException( - $this, 'SA not validated', $validate_url, - false/*$no_response*/, true/*$bad_response*/, - $text_response - ); - $result = false; - } else if ($tree_response->getElementsByTagName("NameIdentifier")->length != 0) { - // check for the NameIdentifier tag in the SAML response - $success_elements = $tree_response->getElementsByTagName("NameIdentifier"); - phpCAS::trace('NameIdentifier found'); - $user = trim($success_elements->item(0)->nodeValue); - phpCAS::trace('user = `'.$user.'`'); - $this->_setUser($user); - $this->_setSessionAttributes($text_response); - $result = true; - } else { - phpCAS::trace('no <NameIdentifier> tag found in SAML payload'); - throw new CAS_AuthenticationException( - $this, 'SA not validated', $validate_url, - false/*$no_response*/, true/*$bad_response*/, - $text_response - ); - $result = false; - } - } - if ($result) { - $this->_renameSession($this->getTicket()); - } - // at this step, ST has been validated and $this->_user has been set, - phpCAS::traceEnd($result); - return $result; - } - - /** - * This method will parse the DOM and pull out the attributes from the SAML - * payload and put them into an array, then put the array into the session. - * - * @param string $text_response the SAML payload. - * - * @return bool true when successfull and false if no attributes a found - */ - private function _setSessionAttributes($text_response) - { - phpCAS::traceBegin(); - - $result = false; - - $attr_array = array(); - - // create new DOMDocument Object - $dom = new DOMDocument(); - // Fix possible whitspace problems - $dom->preserveWhiteSpace = false; - if (($dom->loadXML($text_response))) { - $xPath = new DOMXpath($dom); - $xPath->registerNamespace('samlp', 'urn:oasis:names:tc:SAML:1.0:protocol'); - $xPath->registerNamespace('saml', 'urn:oasis:names:tc:SAML:1.0:assertion'); - $nodelist = $xPath->query("//saml:Attribute"); - - if ($nodelist) { - foreach ($nodelist as $node) { - $xres = $xPath->query("saml:AttributeValue", $node); - $name = $node->getAttribute("AttributeName"); - $value_array = array(); - foreach ($xres as $node2) { - $value_array[] = $node2->nodeValue; - } - $attr_array[$name] = $value_array; - } - // UGent addition... - foreach ($attr_array as $attr_key => $attr_value) { - if (count($attr_value) > 1) { - $this->_attributes[$attr_key] = $attr_value; - phpCAS::trace("* " . $attr_key . "=" . print_r($attr_value, true)); - } else { - $this->_attributes[$attr_key] = $attr_value[0]; - phpCAS::trace("* " . $attr_key . "=" . $attr_value[0]); - } - } - $result = true; - } else { - phpCAS::trace("SAML Attributes are empty"); - $result = false; - } - } - phpCAS::traceEnd($result); - return $result; - } - - /** @} */ - - // XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX - // XX XX - // XX PROXY FEATURES (CAS 2.0) XX - // XX XX - // XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX - - // ######################################################################## - // PROXYING - // ######################################################################## - /** - * @addtogroup internalProxy - * @{ - */ - - /** - * A boolean telling if the client is a CAS proxy or not. Written by - * CAS_Client::CAS_Client(), read by CAS_Client::isProxy(). - */ - private $_proxy; - - /** - * Handler for managing service cookies. - */ - private $_serviceCookieJar; - - /** - * Tells if a CAS client is a CAS proxy or not - * - * @return true when the CAS client is a CAs proxy, false otherwise - */ - public function isProxy() - { - return $this->_proxy; - } - - - /** @} */ - // ######################################################################## - // PGT - // ######################################################################## - /** - * @addtogroup internalProxy - * @{ - */ - - /** - * the Proxy Grnting Ticket given by the CAS server (empty otherwise). - * Written by CAS_Client::_setPGT(), read by CAS_Client::_getPGT() and - * CAS_Client::_hasPGT(). - * - * @hideinitializer - */ - private $_pgt = ''; - - /** - * This method returns the Proxy Granting Ticket given by the CAS server. - * - * @return string the Proxy Granting Ticket. - */ - private function _getPGT() - { - return $this->_pgt; - } - - /** - * This method stores the Proxy Granting Ticket. - * - * @param string $pgt The Proxy Granting Ticket. - * - * @return void - */ - private function _setPGT($pgt) - { - $this->_pgt = $pgt; - } - - /** - * This method tells if a Proxy Granting Ticket was stored. - * - * @return true if a Proxy Granting Ticket has been stored. - */ - private function _hasPGT() - { - return !empty($this->_pgt); - } - - /** @} */ - - // ######################################################################## - // CALLBACK MODE - // ######################################################################## - /** - * @addtogroup internalCallback - * @{ - */ - /** - * each PHP script using phpCAS in proxy mode is its own callback to get the - * PGT back from the CAS server. callback_mode is detected by the constructor - * thanks to the GET parameters. - */ - - /** - * a boolean to know if the CAS client is running in callback mode. Written by - * CAS_Client::setCallBackMode(), read by CAS_Client::_isCallbackMode(). - * - * @hideinitializer - */ - private $_callback_mode = false; - - /** - * This method sets/unsets callback mode. - * - * @param bool $callback_mode true to set callback mode, false otherwise. - * - * @return void - */ - private function _setCallbackMode($callback_mode) - { - $this->_callback_mode = $callback_mode; - } - - /** - * This method returns true when the CAs client is running i callback mode, - * false otherwise. - * - * @return A boolean. - */ - private function _isCallbackMode() - { - return $this->_callback_mode; - } - - /** - * the URL that should be used for the PGT callback (in fact the URL of the - * current request without any CGI parameter). Written and read by - * CAS_Client::_getCallbackURL(). - * - * @hideinitializer - */ - private $_callback_url = ''; - - /** - * This method returns the URL that should be used for the PGT callback (in - * fact the URL of the current request without any CGI parameter, except if - * phpCAS::setFixedCallbackURL() was used). - * - * @return The callback URL - */ - private function _getCallbackURL() - { - // the URL is built when needed only - if ( empty($this->_callback_url) ) { - $final_uri = ''; - // remove the ticket if present in the URL - $final_uri = 'https://'; - $final_uri .= $this->_getClientUrl(); - $request_uri = $_SERVER['REQUEST_URI']; - $request_uri = preg_replace('/\?.*$/', '', $request_uri); - $final_uri .= $request_uri; - $this->_callback_url = $final_uri; - } - return $this->_callback_url; - } - - /** - * This method sets the callback url. - * - * @param string $url url to set callback - * - * @return void - */ - public function setCallbackURL($url) - { - // Sequence validation - $this->ensureIsProxy(); - // Argument Validation - if (gettype($url) != 'string') - throw new CAS_TypeMismatchException($url, '$url', 'string'); - - return $this->_callback_url = $url; - } - - /** - * This method is called by CAS_Client::CAS_Client() when running in callback - * mode. It stores the PGT and its PGT Iou, prints its output and halts. - * - * @return void - */ - private function _callback() - { - phpCAS::traceBegin(); - if (preg_match('/PGTIOU-[\.\-\w]/', $_GET['pgtIou'])) { - if (preg_match('/[PT]GT-[\.\-\w]/', $_GET['pgtId'])) { - $this->printHTMLHeader('phpCAS callback'); - $pgt_iou = $_GET['pgtIou']; - $pgt = $_GET['pgtId']; - phpCAS::trace('Storing PGT `'.$pgt.'\' (id=`'.$pgt_iou.'\')'); - echo '<p>Storing PGT `'.$pgt.'\' (id=`'.$pgt_iou.'\').</p>'; - $this->_storePGT($pgt, $pgt_iou); - $this->printHTMLFooter(); - phpCAS::traceExit("Successfull Callback"); - } else { - phpCAS::error('PGT format invalid' . $_GET['pgtId']); - phpCAS::traceExit('PGT format invalid' . $_GET['pgtId']); - } - } else { - phpCAS::error('PGTiou format invalid' . $_GET['pgtIou']); - phpCAS::traceExit('PGTiou format invalid' . $_GET['pgtIou']); - } - - // Flush the buffer to prevent from sending anything other then a 200 - // Success Status back to the CAS Server. The Exception would normally - // report as a 500 error. - flush(); - throw new CAS_GracefullTerminationException(); - } - - - /** @} */ - - // ######################################################################## - // PGT STORAGE - // ######################################################################## - /** - * @addtogroup internalPGTStorage - * @{ - */ - - /** - * an instance of a class inheriting of PGTStorage, used to deal with PGT - * storage. Created by CAS_Client::setPGTStorageFile(), used - * by CAS_Client::setPGTStorageFile() and CAS_Client::_initPGTStorage(). - * - * @hideinitializer - */ - private $_pgt_storage = null; - - /** - * This method is used to initialize the storage of PGT's. - * Halts on error. - * - * @return void - */ - private function _initPGTStorage() - { - // if no SetPGTStorageXxx() has been used, default to file - if ( !is_object($this->_pgt_storage) ) { - $this->setPGTStorageFile(); - } - - // initializes the storage - $this->_pgt_storage->init(); - } - - /** - * This method stores a PGT. Halts on error. - * - * @param string $pgt the PGT to store - * @param string $pgt_iou its corresponding Iou - * - * @return void - */ - private function _storePGT($pgt,$pgt_iou) - { - // ensure that storage is initialized - $this->_initPGTStorage(); - // writes the PGT - $this->_pgt_storage->write($pgt, $pgt_iou); - } - - /** - * This method reads a PGT from its Iou and deletes the corresponding - * storage entry. - * - * @param string $pgt_iou the PGT Iou - * - * @return mul The PGT corresponding to the Iou, false when not found. - */ - private function _loadPGT($pgt_iou) - { - // ensure that storage is initialized - $this->_initPGTStorage(); - // read the PGT - return $this->_pgt_storage->read($pgt_iou); - } - - /** - * This method can be used to set a custom PGT storage object. - * - * @param CAS_PGTStorage_AbstractStorage $storage a PGT storage object that - * inherits from the CAS_PGTStorage_AbstractStorage class - * - * @return void - */ - public function setPGTStorage($storage) - { - // Sequence validation - $this->ensureIsProxy(); - - // check that the storage has not already been set - if ( is_object($this->_pgt_storage) ) { - phpCAS::error('PGT storage already defined'); - } - - // check to make sure a valid storage object was specified - if ( !($storage instanceof CAS_PGTStorage_AbstractStorage) ) - throw new CAS_TypeMismatchException($storage, '$storage', 'CAS_PGTStorage_AbstractStorage object'); - - // store the PGTStorage object - $this->_pgt_storage = $storage; - } - - /** - * This method is used to tell phpCAS to store the response of the - * CAS server to PGT requests in a database. - * - * @param string $dsn_or_pdo a dsn string to use for creating a PDO - * object or a PDO object - * @param string $username the username to use when connecting to the - * database - * @param string $password the password to use when connecting to the - * database - * @param string $table the table to use for storing and retrieving - * PGTs - * @param string $driver_options any driver options to use when connecting - * to the database - * - * @return void - */ - public function setPGTStorageDb( - $dsn_or_pdo, $username='', $password='', $table='', $driver_options=null - ) { - // Sequence validation - $this->ensureIsProxy(); - - // Argument validation - if ((is_object($dsn_or_pdo) && !($dsn_or_pdo instanceof PDO)) || gettype($dsn_or_pdo) != 'string') - throw new CAS_TypeMismatchException($dsn_or_pdo, '$dsn_or_pdo', 'string or PDO object'); - if (gettype($username) != 'string') - throw new CAS_TypeMismatchException($username, '$username', 'string'); - if (gettype($password) != 'string') - throw new CAS_TypeMismatchException($password, '$password', 'string'); - if (gettype($table) != 'string') - throw new CAS_TypeMismatchException($table, '$password', 'string'); - - // create the storage object - $this->setPGTStorage( - new CAS_PGTStorage_Db( - $this, $dsn_or_pdo, $username, $password, $table, $driver_options - ) - ); - } - - /** - * This method is used to tell phpCAS to store the response of the - * CAS server to PGT requests onto the filesystem. - * - * @param string $path the path where the PGT's should be stored - * - * @return void - */ - public function setPGTStorageFile($path='') - { - // Sequence validation - $this->ensureIsProxy(); - - // Argument validation - if (gettype($path) != 'string') - throw new CAS_TypeMismatchException($path, '$path', 'string'); - - // create the storage object - $this->setPGTStorage(new CAS_PGTStorage_File($this, $path)); - } - - - // ######################################################################## - // PGT VALIDATION - // ######################################################################## - /** - * This method is used to validate a PGT; halt on failure. - * - * @param string &$validate_url the URL of the request to the CAS server. - * @param string $text_response the response of the CAS server, as is - * (XML text); result of - * CAS_Client::validateCAS10() or - * CAS_Client::validateCAS20(). - * @param string $tree_response the response of the CAS server, as a DOM XML - * tree; result of CAS_Client::validateCAS10() or CAS_Client::validateCAS20(). - * - * @return bool true when successfull and issue a CAS_AuthenticationException - * and false on an error - */ - private function _validatePGT(&$validate_url,$text_response,$tree_response) - { - phpCAS::traceBegin(); - if ( $tree_response->getElementsByTagName("proxyGrantingTicket")->length == 0) { - phpCAS::trace('<proxyGrantingTicket> not found'); - // authentication succeded, but no PGT Iou was transmitted - throw new CAS_AuthenticationException( - $this, 'Ticket validated but no PGT Iou transmitted', - $validate_url, false/*$no_response*/, false/*$bad_response*/, - $text_response - ); - } else { - // PGT Iou transmitted, extract it - $pgt_iou = trim( - $tree_response->getElementsByTagName("proxyGrantingTicket")->item(0)->nodeValue - ); - if (preg_match('/PGTIOU-[\.\-\w]/', $pgt_iou)) { - $pgt = $this->_loadPGT($pgt_iou); - if ( $pgt == false ) { - phpCAS::trace('could not load PGT'); - throw new CAS_AuthenticationException( - $this, - 'PGT Iou was transmitted but PGT could not be retrieved', - $validate_url, false/*$no_response*/, - false/*$bad_response*/, $text_response - ); - } - $this->_setPGT($pgt); - } else { - phpCAS::trace('PGTiou format error'); - throw new CAS_AuthenticationException( - $this, 'PGT Iou was transmitted but has wrong format', - $validate_url, false/*$no_response*/, false/*$bad_response*/, - $text_response - ); - } - } - phpCAS::traceEnd(true); - return true; - } - - // ######################################################################## - // PGT VALIDATION - // ######################################################################## - - /** - * This method is used to retrieve PT's from the CAS server thanks to a PGT. - * - * @param string $target_service the service to ask for with the PT. - * @param string &$err_code an error code (PHPCAS_SERVICE_OK on success). - * @param string &$err_msg an error message (empty on success). - * - * @return a Proxy Ticket, or false on error. - */ - public function retrievePT($target_service,&$err_code,&$err_msg) - { - // Argument validation - if (gettype($target_service) != 'string') - throw new CAS_TypeMismatchException($target_service, '$target_service', 'string'); - - phpCAS::traceBegin(); - - // by default, $err_msg is set empty and $pt to true. On error, $pt is - // set to false and $err_msg to an error message. At the end, if $pt is false - // and $error_msg is still empty, it is set to 'invalid response' (the most - // commonly encountered error). - $err_msg = ''; - - // build the URL to retrieve the PT - $cas_url = $this->getServerProxyURL().'?targetService=' - .urlencode($target_service).'&pgt='.$this->_getPGT(); - - // open and read the URL - if ( !$this->_readURL($cas_url, $headers, $cas_response, $err_msg) ) { - phpCAS::trace( - 'could not open URL \''.$cas_url.'\' to validate ('.$err_msg.')' - ); - $err_code = PHPCAS_SERVICE_PT_NO_SERVER_RESPONSE; - $err_msg = 'could not retrieve PT (no response from the CAS server)'; - phpCAS::traceEnd(false); - return false; - } - - $bad_response = false; - - if ( !$bad_response ) { - // create new DOMDocument object - $dom = new DOMDocument(); - // Fix possible whitspace problems - $dom->preserveWhiteSpace = false; - // read the response of the CAS server into a DOM object - if ( !($dom->loadXML($cas_response))) { - phpCAS::trace('dom->loadXML() failed'); - // read failed - $bad_response = true; - } - } - - if ( !$bad_response ) { - // read the root node of the XML tree - if ( !($root = $dom->documentElement) ) { - phpCAS::trace('documentElement failed'); - // read failed - $bad_response = true; - } - } - - if ( !$bad_response ) { - // insure that tag name is 'serviceResponse' - if ( $root->localName != 'serviceResponse' ) { - phpCAS::trace('localName failed'); - // bad root node - $bad_response = true; - } - } - - if ( !$bad_response ) { - // look for a proxySuccess tag - if ( $root->getElementsByTagName("proxySuccess")->length != 0) { - $proxy_success_list = $root->getElementsByTagName("proxySuccess"); - - // authentication succeded, look for a proxyTicket tag - if ( $proxy_success_list->item(0)->getElementsByTagName("proxyTicket")->length != 0) { - $err_code = PHPCAS_SERVICE_OK; - $err_msg = ''; - $pt = trim( - $proxy_success_list->item(0)->getElementsByTagName("proxyTicket")->item(0)->nodeValue - ); - phpCAS::trace('original PT: '.trim($pt)); - phpCAS::traceEnd($pt); - return $pt; - } else { - phpCAS::trace('<proxySuccess> was found, but not <proxyTicket>'); - } - } else if ($root->getElementsByTagName("proxyFailure")->length != 0) { - // look for a proxyFailure tag - $proxy_failure_list = $root->getElementsByTagName("proxyFailure"); - - // authentication failed, extract the error - $err_code = PHPCAS_SERVICE_PT_FAILURE; - $err_msg = 'PT retrieving failed (code=`' - .$proxy_failure_list->item(0)->getAttribute('code') - .'\', message=`' - .trim($proxy_failure_list->item(0)->nodeValue) - .'\')'; - phpCAS::traceEnd(false); - return false; - } else { - phpCAS::trace('neither <proxySuccess> nor <proxyFailure> found'); - } - } - - // at this step, we are sure that the response of the CAS server was - // illformed - $err_code = PHPCAS_SERVICE_PT_BAD_SERVER_RESPONSE; - $err_msg = 'Invalid response from the CAS server (response=`' - .$cas_response.'\')'; - - phpCAS::traceEnd(false); - return false; - } - - /** @} */ - - // ######################################################################## - // READ CAS SERVER ANSWERS - // ######################################################################## - - /** - * @addtogroup internalMisc - * @{ - */ - - /** - * This method is used to acces a remote URL. - * - * @param string $url the URL to access. - * @param string &$headers an array containing the HTTP header lines of the - * response (an empty array on failure). - * @param string &$body the body of the response, as a string (empty on - * failure). - * @param string &$err_msg an error message, filled on failure. - * - * @return true on success, false otherwise (in this later case, $err_msg - * contains an error message). - */ - private function _readURL($url, &$headers, &$body, &$err_msg) - { - phpCAS::traceBegin(); - $className = $this->_requestImplementation; - $request = new $className(); - - if (count($this->_curl_options)) { - $request->setCurlOptions($this->_curl_options); - } - - $request->setUrl($url); - - if (empty($this->_cas_server_ca_cert) && !$this->_no_cas_server_validation) { - phpCAS::error( - 'one of the methods phpCAS::setCasServerCACert() or phpCAS::setNoCasServerValidation() must be called.' - ); - } - if ($this->_cas_server_ca_cert != '') { - $request->setSslCaCert( - $this->_cas_server_ca_cert, $this->_cas_server_cn_validate - ); - } - - // add extra stuff if SAML - if ($this->getServerVersion() == SAML_VERSION_1_1) { - $request->addHeader("soapaction: http://www.oasis-open.org/committees/security"); - $request->addHeader("cache-control: no-cache"); - $request->addHeader("pragma: no-cache"); - $request->addHeader("accept: text/xml"); - $request->addHeader("connection: keep-alive"); - $request->addHeader("content-type: text/xml"); - $request->makePost(); - $request->setPostBody($this->_buildSAMLPayload()); - } - - if ($request->send()) { - $headers = $request->getResponseHeaders(); - $body = $request->getResponseBody(); - $err_msg = ''; - phpCAS::traceEnd(true); - return true; - } else { - $headers = ''; - $body = ''; - $err_msg = $request->getErrorMessage(); - phpCAS::traceEnd(false); - return false; - } - } - - /** - * This method is used to build the SAML POST body sent to /samlValidate URL. - * - * @return the SOAP-encased SAMLP artifact (the ticket). - */ - private function _buildSAMLPayload() - { - phpCAS::traceBegin(); - - //get the ticket - $sa = urlencode($this->getTicket()); - - $body = SAML_SOAP_ENV.SAML_SOAP_BODY.SAMLP_REQUEST - .SAML_ASSERTION_ARTIFACT.$sa.SAML_ASSERTION_ARTIFACT_CLOSE - .SAMLP_REQUEST_CLOSE.SAML_SOAP_BODY_CLOSE.SAML_SOAP_ENV_CLOSE; - - phpCAS::traceEnd($body); - return ($body); - } - - /** @} **/ - - // ######################################################################## - // ACCESS TO EXTERNAL SERVICES - // ######################################################################## - - /** - * @addtogroup internalProxyServices - * @{ - */ - - - /** - * Answer a proxy-authenticated service handler. - * - * @param string $type The service type. One of: - * PHPCAS_PROXIED_SERVICE_HTTP_GET, PHPCAS_PROXIED_SERVICE_HTTP_POST, - * PHPCAS_PROXIED_SERVICE_IMAP - * - * @return CAS_ProxiedService - * @throws InvalidArgumentException If the service type is unknown. - */ - public function getProxiedService ($type) - { - // Sequence validation - $this->ensureIsProxy(); - $this->ensureAuthenticationCallSuccessful(); - - // Argument validation - if (gettype($type) != 'string') - throw new CAS_TypeMismatchException($type, '$type', 'string'); - - switch ($type) { - case PHPCAS_PROXIED_SERVICE_HTTP_GET: - case PHPCAS_PROXIED_SERVICE_HTTP_POST: - $requestClass = $this->_requestImplementation; - $request = new $requestClass(); - if (count($this->_curl_options)) { - $request->setCurlOptions($this->_curl_options); - } - $proxiedService = new $type($request, $this->_serviceCookieJar); - if ($proxiedService instanceof CAS_ProxiedService_Testable) { - $proxiedService->setCasClient($this); - } - return $proxiedService; - case PHPCAS_PROXIED_SERVICE_IMAP; - $proxiedService = new CAS_ProxiedService_Imap($this->_getUser()); - if ($proxiedService instanceof CAS_ProxiedService_Testable) { - $proxiedService->setCasClient($this); - } - return $proxiedService; - default: - throw new CAS_InvalidArgumentException( - "Unknown proxied-service type, $type." - ); - } - } - - /** - * Initialize a proxied-service handler with the proxy-ticket it should use. - * - * @param CAS_ProxiedService $proxiedService service handler - * - * @return void - * - * @throws CAS_ProxyTicketException If there is a proxy-ticket failure. - * The code of the Exception will be one of: - * PHPCAS_SERVICE_PT_NO_SERVER_RESPONSE - * PHPCAS_SERVICE_PT_BAD_SERVER_RESPONSE - * PHPCAS_SERVICE_PT_FAILURE - * @throws CAS_ProxiedService_Exception If there is a failure getting the - * url from the proxied service. - */ - public function initializeProxiedService (CAS_ProxiedService $proxiedService) - { - // Sequence validation - $this->ensureIsProxy(); - $this->ensureAuthenticationCallSuccessful(); - - $url = $proxiedService->getServiceUrl(); - if (!is_string($url)) { - throw new CAS_ProxiedService_Exception( - "Proxied Service ".get_class($proxiedService) - ."->getServiceUrl() should have returned a string, returned a " - .gettype($url)." instead." - ); - } - $pt = $this->retrievePT($url, $err_code, $err_msg); - if (!$pt) { - throw new CAS_ProxyTicketException($err_msg, $err_code); - } - $proxiedService->setProxyTicket($pt); - } - - /** - * This method is used to access an HTTP[S] service. - * - * @param string $url the service to access. - * @param int &$err_code an error code Possible values are - * PHPCAS_SERVICE_OK (on success), PHPCAS_SERVICE_PT_NO_SERVER_RESPONSE, - * PHPCAS_SERVICE_PT_BAD_SERVER_RESPONSE, PHPCAS_SERVICE_PT_FAILURE, - * PHPCAS_SERVICE_NOT_AVAILABLE. - * @param string &$output the output of the service (also used to give an error - * message on failure). - * - * @return true on success, false otherwise (in this later case, $err_code - * gives the reason why it failed and $output contains an error message). - */ - public function serviceWeb($url,&$err_code,&$output) - { - // Sequence validation - $this->ensureIsProxy(); - $this->ensureAuthenticationCallSuccessful(); - - // Argument validation - if (gettype($url) != 'string') - throw new CAS_TypeMismatchException($url, '$url', 'string'); - - try { - $service = $this->getProxiedService(PHPCAS_PROXIED_SERVICE_HTTP_GET); - $service->setUrl($url); - $service->send(); - $output = $service->getResponseBody(); - $err_code = PHPCAS_SERVICE_OK; - return true; - } catch (CAS_ProxyTicketException $e) { - $err_code = $e->getCode(); - $output = $e->getMessage(); - return false; - } catch (CAS_ProxiedService_Exception $e) { - $lang = $this->getLangObj(); - $output = sprintf( - $lang->getServiceUnavailable(), $url, $e->getMessage() - ); - $err_code = PHPCAS_SERVICE_NOT_AVAILABLE; - return false; - } - } - - /** - * This method is used to access an IMAP/POP3/NNTP service. - * - * @param string $url a string giving the URL of the service, including - * the mailing box for IMAP URLs, as accepted by imap_open(). - * @param string $serviceUrl a string giving for CAS retrieve Proxy ticket - * @param string $flags options given to imap_open(). - * @param int &$err_code an error code Possible values are - * PHPCAS_SERVICE_OK (on success), PHPCAS_SERVICE_PT_NO_SERVER_RESPONSE, - * PHPCAS_SERVICE_PT_BAD_SERVER_RESPONSE, PHPCAS_SERVICE_PT_FAILURE, - * PHPCAS_SERVICE_NOT_AVAILABLE. - * @param string &$err_msg an error message on failure - * @param string &$pt the Proxy Ticket (PT) retrieved from the CAS - * server to access the URL on success, false on error). - * - * @return object an IMAP stream on success, false otherwise (in this later - * case, $err_code gives the reason why it failed and $err_msg contains an - * error message). - */ - public function serviceMail($url,$serviceUrl,$flags,&$err_code,&$err_msg,&$pt) - { - // Sequence validation - $this->ensureIsProxy(); - $this->ensureAuthenticationCallSuccessful(); - - // Argument validation - if (gettype($url) != 'string') - throw new CAS_TypeMismatchException($url, '$url', 'string'); - if (gettype($serviceUrl) != 'string') - throw new CAS_TypeMismatchException($serviceUrl, '$serviceUrl', 'string'); - if (gettype($flags) != 'integer') - throw new CAS_TypeMismatchException($flags, '$flags', 'string'); - - try { - $service = $this->getProxiedService(PHPCAS_PROXIED_SERVICE_IMAP); - $service->setServiceUrl($serviceUrl); - $service->setMailbox($url); - $service->setOptions($flags); - - $stream = $service->open(); - $err_code = PHPCAS_SERVICE_OK; - $pt = $service->getImapProxyTicket(); - return $stream; - } catch (CAS_ProxyTicketException $e) { - $err_msg = $e->getMessage(); - $err_code = $e->getCode(); - $pt = false; - return false; - } catch (CAS_ProxiedService_Exception $e) { - $lang = $this->getLangObj(); - $err_msg = sprintf( - $lang->getServiceUnavailable(), - $url, - $e->getMessage() - ); - $err_code = PHPCAS_SERVICE_NOT_AVAILABLE; - $pt = false; - return false; - } - } - - /** @} **/ - - // XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX - // XX XX - // XX PROXIED CLIENT FEATURES (CAS 2.0) XX - // XX XX - // XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX - - // ######################################################################## - // PT - // ######################################################################## - /** - * @addtogroup internalService - * @{ - */ - - /** - * This array will store a list of proxies in front of this application. This - * property will only be populated if this script is being proxied rather than - * accessed directly. - * - * It is set in CAS_Client::validateCAS20() and can be read by - * CAS_Client::getProxies() - * - * @access private - */ - private $_proxies = array(); - - /** - * Answer an array of proxies that are sitting in front of this application. - * - * This method will only return a non-empty array if we have received and - * validated a Proxy Ticket. - * - * @return array - * @access public - */ - public function getProxies() - { - return $this->_proxies; - } - - /** - * Set the Proxy array, probably from persistant storage. - * - * @param array $proxies An array of proxies - * - * @return void - * @access private - */ - private function _setProxies($proxies) - { - $this->_proxies = $proxies; - if (!empty($proxies)) { - // For proxy-authenticated requests people are not viewing the URL - // directly since the client is another application making a - // web-service call. - // Because of this, stripping the ticket from the URL is unnecessary - // and causes another web-service request to be performed. Additionally, - // if session handling on either the client or the server malfunctions - // then the subsequent request will not complete successfully. - $this->setNoClearTicketsFromUrl(); - } - } - - /** - * A container of patterns to be allowed as proxies in front of the cas client. - * - * @var CAS_ProxyChain_AllowedList - */ - private $_allowed_proxy_chains; - - /** - * Answer the CAS_ProxyChain_AllowedList object for this client. - * - * @return CAS_ProxyChain_AllowedList - */ - public function getAllowedProxyChains () - { - if (empty($this->_allowed_proxy_chains)) { - $this->_allowed_proxy_chains = new CAS_ProxyChain_AllowedList(); - } - return $this->_allowed_proxy_chains; - } - - /** @} */ - // ######################################################################## - // PT VALIDATION - // ######################################################################## - /** - * @addtogroup internalProxied - * @{ - */ - - /** - * This method is used to validate a cas 2.0 ST or PT; halt on failure - * Used for all CAS 2.0 validations - * - * @param string &$validate_url the url of the reponse - * @param string &$text_response the text of the repsones - * @param string &$tree_response the domxml tree of the respones - * @param bool $renew true to force the authentication with the CAS server - * - * @return bool true when successfull and issue a CAS_AuthenticationException - * and false on an error - */ - public function validateCAS20(&$validate_url,&$text_response,&$tree_response, $renew=false) - { - phpCAS::traceBegin(); - phpCAS::trace($text_response); - $result = false; - // build the URL to validate the ticket - if ($this->getAllowedProxyChains()->isProxyingAllowed()) { - $validate_url = $this->getServerProxyValidateURL().'&ticket=' - .urlencode($this->getTicket()); - } else { - $validate_url = $this->getServerServiceValidateURL().'&ticket=' - .urlencode($this->getTicket()); - } - - if ( $this->isProxy() ) { - // pass the callback url for CAS proxies - $validate_url .= '&pgtUrl='.urlencode($this->_getCallbackURL()); - } - - if ( $renew ) { - // pass the renew - $validate_url .= '&renew=true'; - } - - // open and read the URL - if ( !$this->_readURL($validate_url, $headers, $text_response, $err_msg) ) { - phpCAS::trace( - 'could not open URL \''.$validate_url.'\' to validate ('.$err_msg.')' - ); - throw new CAS_AuthenticationException( - $this, 'Ticket not validated', $validate_url, - true/*$no_response*/ - ); - $result = false; - } - - // create new DOMDocument object - $dom = new DOMDocument(); - // Fix possible whitspace problems - $dom->preserveWhiteSpace = false; - // CAS servers should only return data in utf-8 - $dom->encoding = "utf-8"; - // read the response of the CAS server into a DOMDocument object - if ( !($dom->loadXML($text_response))) { - // read failed - throw new CAS_AuthenticationException( - $this, 'Ticket not validated', $validate_url, - false/*$no_response*/, true/*$bad_response*/, $text_response - ); - $result = false; - } else if ( !($tree_response = $dom->documentElement) ) { - // read the root node of the XML tree - // read failed - throw new CAS_AuthenticationException( - $this, 'Ticket not validated', $validate_url, - false/*$no_response*/, true/*$bad_response*/, $text_response - ); - $result = false; - } else if ($tree_response->localName != 'serviceResponse') { - // insure that tag name is 'serviceResponse' - // bad root node - throw new CAS_AuthenticationException( - $this, 'Ticket not validated', $validate_url, - false/*$no_response*/, true/*$bad_response*/, $text_response - ); - $result = false; - } else if ($tree_response->getElementsByTagName("authenticationSuccess")->length != 0) { - // authentication succeded, extract the user name - $success_elements = $tree_response - ->getElementsByTagName("authenticationSuccess"); - if ( $success_elements->item(0)->getElementsByTagName("user")->length == 0) { - // no user specified => error - throw new CAS_AuthenticationException( - $this, 'Ticket not validated', $validate_url, - false/*$no_response*/, true/*$bad_response*/, $text_response - ); - $result = false; - } else { - $this->_setUser( - trim( - $success_elements->item(0)->getElementsByTagName("user")->item(0)->nodeValue - ) - ); - $this->_readExtraAttributesCas20($success_elements); - // Store the proxies we are sitting behind for authorization checking - $proxyList = array(); - if ( sizeof($arr = $success_elements->item(0)->getElementsByTagName("proxy")) > 0) { - foreach ($arr as $proxyElem) { - phpCAS::trace("Found Proxy: ".$proxyElem->nodeValue); - $proxyList[] = trim($proxyElem->nodeValue); - } - $this->_setProxies($proxyList); - phpCAS::trace("Storing Proxy List"); - } - // Check if the proxies in front of us are allowed - if (!$this->getAllowedProxyChains()->isProxyListAllowed($proxyList)) { - throw new CAS_AuthenticationException( - $this, 'Proxy not allowed', $validate_url, - false/*$no_response*/, true/*$bad_response*/, - $text_response - ); - $result = false; - } else { - $result = true; - } - } - } else if ( $tree_response->getElementsByTagName("authenticationFailure")->length != 0) { - // authentication succeded, extract the error code and message - $auth_fail_list = $tree_response - ->getElementsByTagName("authenticationFailure"); - throw new CAS_AuthenticationException( - $this, 'Ticket not validated', $validate_url, - false/*$no_response*/, false/*$bad_response*/, - $text_response, - $auth_fail_list->item(0)->getAttribute('code')/*$err_code*/, - trim($auth_fail_list->item(0)->nodeValue)/*$err_msg*/ - ); - $result = false; - } else { - throw new CAS_AuthenticationException( - $this, 'Ticket not validated', $validate_url, - false/*$no_response*/, true/*$bad_response*/, - $text_response - ); - $result = false; - } - if ($result) { - $this->_renameSession($this->getTicket()); - } - // at this step, Ticket has been validated and $this->_user has been set, - - phpCAS::traceEnd($result); - return $result; - } - - - /** - * This method will parse the DOM and pull out the attributes from the XML - * payload and put them into an array, then put the array into the session. - * - * @param string $success_elements payload of the response - * - * @return bool true when successfull, halt otherwise by calling - * CAS_Client::_authError(). - */ - private function _readExtraAttributesCas20($success_elements) - { - phpCAS::traceBegin(); - - $extra_attributes = array(); - - // "Jasig Style" Attributes: - // - // <cas:serviceResponse xmlns:cas='http://www.yale.edu/tp/cas'> - // <cas:authenticationSuccess> - // <cas:user>jsmith</cas:user> - // <cas:attributes> - // <cas:attraStyle>RubyCAS</cas:attraStyle> - // <cas:surname>Smith</cas:surname> - // <cas:givenName>John</cas:givenName> - // <cas:memberOf>CN=Staff,OU=Groups,DC=example,DC=edu</cas:memberOf> - // <cas:memberOf>CN=Spanish Department,OU=Departments,OU=Groups,DC=example,DC=edu</cas:memberOf> - // </cas:attributes> - // <cas:proxyGrantingTicket>PGTIOU-84678-8a9d2sfa23casd</cas:proxyGrantingTicket> - // </cas:authenticationSuccess> - // </cas:serviceResponse> - // - if ( $success_elements->item(0)->getElementsByTagName("attributes")->length != 0) { - $attr_nodes = $success_elements->item(0) - ->getElementsByTagName("attributes"); - phpCas :: trace("Found nested jasig style attributes"); - if ($attr_nodes->item(0)->hasChildNodes()) { - // Nested Attributes - foreach ($attr_nodes->item(0)->childNodes as $attr_child) { - phpCas :: trace( - "Attribute [".$attr_child->localName."] = " - .$attr_child->nodeValue - ); - $this->_addAttributeToArray( - $extra_attributes, $attr_child->localName, - $attr_child->nodeValue - ); - } - } - } else { - // "RubyCAS Style" attributes - // - // <cas:serviceResponse xmlns:cas='http://www.yale.edu/tp/cas'> - // <cas:authenticationSuccess> - // <cas:user>jsmith</cas:user> - // - // <cas:attraStyle>RubyCAS</cas:attraStyle> - // <cas:surname>Smith</cas:surname> - // <cas:givenName>John</cas:givenName> - // <cas:memberOf>CN=Staff,OU=Groups,DC=example,DC=edu</cas:memberOf> - // <cas:memberOf>CN=Spanish Department,OU=Departments,OU=Groups,DC=example,DC=edu</cas:memberOf> - // - // <cas:proxyGrantingTicket>PGTIOU-84678-8a9d2sfa23casd</cas:proxyGrantingTicket> - // </cas:authenticationSuccess> - // </cas:serviceResponse> - // - phpCas :: trace("Testing for rubycas style attributes"); - $childnodes = $success_elements->item(0)->childNodes; - foreach ($childnodes as $attr_node) { - switch ($attr_node->localName) { - case 'user': - case 'proxies': - case 'proxyGrantingTicket': - continue; - default: - if (strlen(trim($attr_node->nodeValue))) { - phpCas :: trace( - "Attribute [".$attr_node->localName."] = ".$attr_node->nodeValue - ); - $this->_addAttributeToArray( - $extra_attributes, $attr_node->localName, - $attr_node->nodeValue - ); - } - } - } - } - - // "Name-Value" attributes. - // - // Attribute format from these mailing list thread: - // http://jasig.275507.n4.nabble.com/CAS-attributes-and-how-they-appear-in-the-CAS-response-td264272.html - // Note: This is a less widely used format, but in use by at least two institutions. - // - // <cas:serviceResponse xmlns:cas='http://www.yale.edu/tp/cas'> - // <cas:authenticationSuccess> - // <cas:user>jsmith</cas:user> - // - // <cas:attribute name='attraStyle' value='Name-Value' /> - // <cas:attribute name='surname' value='Smith' /> - // <cas:attribute name='givenName' value='John' /> - // <cas:attribute name='memberOf' value='CN=Staff,OU=Groups,DC=example,DC=edu' /> - // <cas:attribute name='memberOf' value='CN=Spanish Department,OU=Departments,OU=Groups,DC=example,DC=edu' /> - // - // <cas:proxyGrantingTicket>PGTIOU-84678-8a9d2sfa23casd</cas:proxyGrantingTicket> - // </cas:authenticationSuccess> - // </cas:serviceResponse> - // - if (!count($extra_attributes) - && $success_elements->item(0)->getElementsByTagName("attribute")->length != 0 - ) { - $attr_nodes = $success_elements->item(0) - ->getElementsByTagName("attribute"); - $firstAttr = $attr_nodes->item(0); - if (!$firstAttr->hasChildNodes() - && $firstAttr->hasAttribute('name') - && $firstAttr->hasAttribute('value') - ) { - phpCas :: trace("Found Name-Value style attributes"); - // Nested Attributes - foreach ($attr_nodes as $attr_node) { - if ($attr_node->hasAttribute('name') - && $attr_node->hasAttribute('value') - ) { - phpCas :: trace( - "Attribute [".$attr_node->getAttribute('name') - ."] = ".$attr_node->getAttribute('value') - ); - $this->_addAttributeToArray( - $extra_attributes, $attr_node->getAttribute('name'), - $attr_node->getAttribute('value') - ); - } - } - } - } - - $this->setAttributes($extra_attributes); - phpCAS::traceEnd(); - return true; - } - - /** - * Add an attribute value to an array of attributes. - * - * @param array &$attributeArray reference to array - * @param string $name name of attribute - * @param string $value value of attribute - * - * @return void - */ - private function _addAttributeToArray(array &$attributeArray, $name, $value) - { - // If multiple attributes exist, add as an array value - if (isset($attributeArray[$name])) { - // Initialize the array with the existing value - if (!is_array($attributeArray[$name])) { - $existingValue = $attributeArray[$name]; - $attributeArray[$name] = array($existingValue); - } - - $attributeArray[$name][] = trim($value); - } else { - $attributeArray[$name] = trim($value); - } - } - - /** @} */ - - // XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX - // XX XX - // XX MISC XX - // XX XX - // XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX - - /** - * @addtogroup internalMisc - * @{ - */ - - // ######################################################################## - // URL - // ######################################################################## - /** - * the URL of the current request (without any ticket CGI parameter). Written - * and read by CAS_Client::getURL(). - * - * @hideinitializer - */ - private $_url = ''; - - - /** - * This method sets the URL of the current request - * - * @param string $url url to set for service - * - * @return void - */ - public function setURL($url) - { - // Argument Validation - if (gettype($url) != 'string') - throw new CAS_TypeMismatchException($url, '$url', 'string'); - - $this->_url = $url; - } - - /** - * This method returns the URL of the current request (without any ticket - * CGI parameter). - * - * @return The URL - */ - public function getURL() - { - phpCAS::traceBegin(); - // the URL is built when needed only - if ( empty($this->_url) ) { - $final_uri = ''; - // remove the ticket if present in the URL - $final_uri = ($this->_isHttps()) ? 'https' : 'http'; - $final_uri .= '://'; - - $final_uri .= $this->_getClientUrl(); - $request_uri = explode('?', $_SERVER['REQUEST_URI'], 2); - $final_uri .= $request_uri[0]; - - if (isset($request_uri[1]) && $request_uri[1]) { - $query_string= $this->_removeParameterFromQueryString('ticket', $request_uri[1]); - - // If the query string still has anything left, - // append it to the final URI - if ($query_string !== '') { - $final_uri .= "?$query_string"; - } - } - - phpCAS::trace("Final URI: $final_uri"); - $this->setURL($final_uri); - } - phpCAS::traceEnd($this->_url); - return $this->_url; - } - - - /** - * Try to figure out the phpCas client URL with possible Proxys / Ports etc. - * - * @return string Server URL with domain:port - */ - private function _getClientUrl() - { - $server_url = ''; - if (!empty($_SERVER['HTTP_X_FORWARDED_HOST'])) { - // explode the host list separated by comma and use the first host - $hosts = explode(',', $_SERVER['HTTP_X_FORWARDED_HOST']); - // see rfc7239#5.3 and rfc7230#2.7.1: port is in HTTP_X_FORWARDED_HOST if non default - return $hosts[0]; - } else if (!empty($_SERVER['HTTP_X_FORWARDED_SERVER'])) { - $server_url = $_SERVER['HTTP_X_FORWARDED_SERVER']; - } else { - if (empty($_SERVER['SERVER_NAME'])) { - $server_url = $_SERVER['HTTP_HOST']; - } else { - $server_url = $_SERVER['SERVER_NAME']; - } - } - if (!strpos($server_url, ':')) { - if (empty($_SERVER['HTTP_X_FORWARDED_PORT'])) { - $server_port = $_SERVER['SERVER_PORT']; - } else { - $ports = explode(',', $_SERVER['HTTP_X_FORWARDED_PORT']); - $server_port = $ports[0]; - } - - if ( ($this->_isHttps() && $server_port!=443) - || (!$this->_isHttps() && $server_port!=80) - ) { - $server_url .= ':'; - $server_url .= $server_port; - } - } - return $server_url; - } - - /** - * This method checks to see if the request is secured via HTTPS - * - * @return bool true if https, false otherwise - */ - private function _isHttps() - { - if (!empty($_SERVER['HTTP_X_FORWARDED_PROTO'])) { - return ($_SERVER['HTTP_X_FORWARDED_PROTO'] === 'https'); - } - if ( isset($_SERVER['HTTPS']) - && !empty($_SERVER['HTTPS']) - && strcasecmp($_SERVER['HTTPS'], 'off') !== 0 - ) { - return true; - } else { - return false; - } - } - - /** - * Removes a parameter from a query string - * - * @param string $parameterName name of parameter - * @param string $queryString query string - * - * @return string new query string - * - * @link http://stackoverflow.com/questions/1842681/regular-expression-to-remove-one-parameter-from-query-string - */ - private function _removeParameterFromQueryString($parameterName, $queryString) - { - $parameterName = preg_quote($parameterName); - return preg_replace( - "/&$parameterName(=[^&]*)?|^$parameterName(=[^&]*)?&?/", - '', $queryString - ); - } - - /** - * This method is used to append query parameters to an url. Since the url - * might already contain parameter it has to be detected and to build a proper - * URL - * - * @param string $url base url to add the query params to - * @param string $query params in query form with & separated - * - * @return url with query params - */ - private function _buildQueryUrl($url, $query) - { - $url .= (strstr($url, '?') === false) ? '?' : '&'; - $url .= $query; - return $url; - } - - /** - * Renaming the session - * - * @param string $ticket name of the ticket - * - * @return void - */ - private function _renameSession($ticket) - { - phpCAS::traceBegin(); - if ($this->getChangeSessionID()) { - if (!empty($this->_user)) { - $old_session = $_SESSION; - phpCAS :: trace("Killing session: ". session_id()); - session_destroy(); - // set up a new session, of name based on the ticket - $session_id = preg_replace('/[^a-zA-Z0-9\-]/', '', $ticket); - phpCAS :: trace("Starting session: ". $session_id); - session_id($session_id); - session_start(); - phpCAS :: trace("Restoring old session vars"); - $_SESSION = $old_session; - } else { - phpCAS :: trace ( - 'Session should only be renamed after successfull authentication' - ); - } - } else { - phpCAS :: trace( - "Skipping session rename since phpCAS is not handling the session." - ); - } - phpCAS::traceEnd(); - } - - - // ######################################################################## - // AUTHENTICATION ERROR HANDLING - // ######################################################################## - /** - * This method is used to print the HTML output when the user was not - * authenticated. - * - * @param string $failure the failure that occured - * @param string $cas_url the URL the CAS server was asked for - * @param bool $no_response the response from the CAS server (other - * parameters are ignored if true) - * @param bool $bad_response bad response from the CAS server ($err_code - * and $err_msg ignored if true) - * @param string $cas_response the response of the CAS server - * @param int $err_code the error code given by the CAS server - * @param string $err_msg the error message given by the CAS server - * - * @return void - */ - private function _authError( - $failure, - $cas_url, - $no_response, - $bad_response='', - $cas_response='', - $err_code='', - $err_msg='' - ) { - phpCAS::traceBegin(); - $lang = $this->getLangObj(); - $this->printHTMLHeader($lang->getAuthenticationFailed()); - printf( - $lang->getYouWereNotAuthenticated(), htmlentities($this->getURL()), - isset($_SERVER['SERVER_ADMIN']) ? $_SERVER['SERVER_ADMIN']:'' - ); - phpCAS::trace('CAS URL: '.$cas_url); - phpCAS::trace('Authentication failure: '.$failure); - if ( $no_response ) { - phpCAS::trace('Reason: no response from the CAS server'); - } else { - if ( $bad_response ) { - phpCAS::trace('Reason: bad response from the CAS server'); - } else { - switch ($this->getServerVersion()) { - case CAS_VERSION_1_0: - phpCAS::trace('Reason: CAS error'); - break; - case CAS_VERSION_2_0: - case CAS_VERSION_3_0: - if ( empty($err_code) ) { - phpCAS::trace('Reason: no CAS error'); - } else { - phpCAS::trace( - 'Reason: ['.$err_code.'] CAS error: '.$err_msg - ); - } - break; - } - } - phpCAS::trace('CAS response: '.$cas_response); - } - $this->printHTMLFooter(); - phpCAS::traceExit(); - throw new CAS_GracefullTerminationException(); - } - - // ######################################################################## - // PGTIOU/PGTID and logoutRequest rebroadcasting - // ######################################################################## - - /** - * Boolean of whether to rebroadcast pgtIou/pgtId and logoutRequest, and - * array of the nodes. - */ - private $_rebroadcast = false; - private $_rebroadcast_nodes = array(); - - /** - * Constants used for determining rebroadcast node type. - */ - const HOSTNAME = 0; - const IP = 1; - - /** - * Determine the node type from the URL. - * - * @param String $nodeURL The node URL. - * - * @return string hostname - * - */ - private function _getNodeType($nodeURL) - { - phpCAS::traceBegin(); - if (preg_match("/^(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})$/", $nodeURL)) { - phpCAS::traceEnd(self::IP); - return self::IP; - } else { - phpCAS::traceEnd(self::HOSTNAME); - return self::HOSTNAME; - } - } - - /** - * Store the rebroadcast node for pgtIou/pgtId and logout requests. - * - * @param string $rebroadcastNodeUrl The rebroadcast node URL. - * - * @return void - */ - public function addRebroadcastNode($rebroadcastNodeUrl) - { - // Argument validation - if ( !(bool)preg_match("/^(http|https):\/\/([A-Z0-9][A-Z0-9_-]*(?:\.[A-Z0-9][A-Z0-9_-]*)+):?(\d+)?\/?/i", $rebroadcastNodeUrl)) - throw new CAS_TypeMismatchException($rebroadcastNodeUrl, '$rebroadcastNodeUrl', 'url'); - - // Store the rebroadcast node and set flag - $this->_rebroadcast = true; - $this->_rebroadcast_nodes[] = $rebroadcastNodeUrl; - } - - /** - * An array to store extra rebroadcast curl options. - */ - private $_rebroadcast_headers = array(); - - /** - * This method is used to add header parameters when rebroadcasting - * pgtIou/pgtId or logoutRequest. - * - * @param string $header Header to send when rebroadcasting. - * - * @return void - */ - public function addRebroadcastHeader($header) - { - if (gettype($header) != 'string') - throw new CAS_TypeMismatchException($header, '$header', 'string'); - - $this->_rebroadcast_headers[] = $header; - } - - /** - * Constants used for determining rebroadcast type (logout or pgtIou/pgtId). - */ - const LOGOUT = 0; - const PGTIOU = 1; - - /** - * This method rebroadcasts logout/pgtIou requests. Can be LOGOUT,PGTIOU - * - * @param int $type type of rebroadcasting. - * - * @return void - */ - private function _rebroadcast($type) - { - phpCAS::traceBegin(); - - $rebroadcast_curl_options = array( - CURLOPT_FAILONERROR => 1, - CURLOPT_FOLLOWLOCATION => 1, - CURLOPT_RETURNTRANSFER => 1, - CURLOPT_CONNECTTIMEOUT => 1, - CURLOPT_TIMEOUT => 4); - - // Try to determine the IP address of the server - if (!empty($_SERVER['SERVER_ADDR'])) { - $ip = $_SERVER['SERVER_ADDR']; - } else if (!empty($_SERVER['LOCAL_ADDR'])) { - // IIS 7 - $ip = $_SERVER['LOCAL_ADDR']; - } - // Try to determine the DNS name of the server - if (!empty($ip)) { - $dns = gethostbyaddr($ip); - } - $multiClassName = 'CAS_Request_CurlMultiRequest'; - $multiRequest = new $multiClassName(); - - for ($i = 0; $i < sizeof($this->_rebroadcast_nodes); $i++) { - if ((($this->_getNodeType($this->_rebroadcast_nodes[$i]) == self::HOSTNAME) && !empty($dns) && (stripos($this->_rebroadcast_nodes[$i], $dns) === false)) - || (($this->_getNodeType($this->_rebroadcast_nodes[$i]) == self::IP) && !empty($ip) && (stripos($this->_rebroadcast_nodes[$i], $ip) === false)) - ) { - phpCAS::trace( - 'Rebroadcast target URL: '.$this->_rebroadcast_nodes[$i] - .$_SERVER['REQUEST_URI'] - ); - $className = $this->_requestImplementation; - $request = new $className(); - - $url = $this->_rebroadcast_nodes[$i].$_SERVER['REQUEST_URI']; - $request->setUrl($url); - - if (count($this->_rebroadcast_headers)) { - $request->addHeaders($this->_rebroadcast_headers); - } - - $request->makePost(); - if ($type == self::LOGOUT) { - // Logout request - $request->setPostBody( - 'rebroadcast=false&logoutRequest='.$_POST['logoutRequest'] - ); - } else if ($type == self::PGTIOU) { - // pgtIou/pgtId rebroadcast - $request->setPostBody('rebroadcast=false'); - } - - $request->setCurlOptions($rebroadcast_curl_options); - - $multiRequest->addRequest($request); - } else { - phpCAS::trace( - 'Rebroadcast not sent to self: ' - .$this->_rebroadcast_nodes[$i].' == '.(!empty($ip)?$ip:'') - .'/'.(!empty($dns)?$dns:'') - ); - } - } - // We need at least 1 request - if ($multiRequest->getNumRequests() > 0) { - $multiRequest->send(); - } - phpCAS::traceEnd(); - } - - /** @} */ -} - -?> diff --git a/apps/maarch_entreprise/tools/phpCAS/source/CAS/CookieJar.php b/apps/maarch_entreprise/tools/phpCAS/source/CAS/CookieJar.php deleted file mode 100755 index 549b8929f02c976ee79e06773e4ca1a5096087db..0000000000000000000000000000000000000000 --- a/apps/maarch_entreprise/tools/phpCAS/source/CAS/CookieJar.php +++ /dev/null @@ -1,385 +0,0 @@ -<?php - -/** - * Licensed to Jasig under one or more contributor license - * agreements. See the NOTICE file distributed with this work for - * additional information regarding copyright ownership. - * - * Jasig licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except in - * compliance with the License. You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * PHP Version 5 - * - * @file CAS/CookieJar.php - * @category Authentication - * @package PhpCAS - * @author Adam Franco <afranco@middlebury.edu> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - */ - -/** - * This class provides access to service cookies and handles parsing of response - * headers to pull out cookie values. - * - * @class CAS_CookieJar - * @category Authentication - * @package PhpCAS - * @author Adam Franco <afranco@middlebury.edu> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - */ -class CAS_CookieJar -{ - - private $_cookies; - - /** - * Create a new cookie jar by passing it a reference to an array in which it - * should store cookies. - * - * @param array &$storageArray Array to store cookies - * - * @return void - */ - public function __construct (array &$storageArray) - { - $this->_cookies =& $storageArray; - } - - /** - * Store cookies for a web service request. - * Cookie storage is based on RFC 2965: http://www.ietf.org/rfc/rfc2965.txt - * - * @param string $request_url The URL that generated the response headers. - * @param array $response_headers An array of the HTTP response header strings. - * - * @return void - * - * @access private - */ - public function storeCookies ($request_url, $response_headers) - { - $urlParts = parse_url($request_url); - $defaultDomain = $urlParts['host']; - - $cookies = $this->parseCookieHeaders($response_headers, $defaultDomain); - - // var_dump($cookies); - foreach ($cookies as $cookie) { - // Enforce the same-origin policy by verifying that the cookie - // would match the url that is setting it - if (!$this->cookieMatchesTarget($cookie, $urlParts)) { - continue; - } - - // store the cookie - $this->storeCookie($cookie); - - phpCAS::trace($cookie['name'].' -> '.$cookie['value']); - } - } - - /** - * Retrieve cookies applicable for a web service request. - * Cookie applicability is based on RFC 2965: http://www.ietf.org/rfc/rfc2965.txt - * - * @param string $request_url The url that the cookies will be for. - * - * @return array An array containing cookies. E.g. array('name' => 'val'); - * - * @access private - */ - public function getCookies ($request_url) - { - if (!count($this->_cookies)) { - return array(); - } - - // If our request URL can't be parsed, no cookies apply. - $target = parse_url($request_url); - if ($target === false) { - return array(); - } - - $this->expireCookies(); - - $matching_cookies = array(); - foreach ($this->_cookies as $key => $cookie) { - if ($this->cookieMatchesTarget($cookie, $target)) { - $matching_cookies[$cookie['name']] = $cookie['value']; - } - } - return $matching_cookies; - } - - - /** - * Parse Cookies without PECL - * From the comments in http://php.net/manual/en/function.http-parse-cookie.php - * - * @param array $header array of header lines. - * @param string $defaultDomain The domain to use if none is specified in - * the cookie. - * - * @return array of cookies - */ - protected function parseCookieHeaders( $header, $defaultDomain ) - { - phpCAS::traceBegin(); - $cookies = array(); - foreach ( $header as $line ) { - if ( preg_match('/^Set-Cookie2?: /i', $line)) { - $cookies[] = $this->parseCookieHeader($line, $defaultDomain); - } - } - - phpCAS::traceEnd($cookies); - return $cookies; - } - - /** - * Parse a single cookie header line. - * - * Based on RFC2965 http://www.ietf.org/rfc/rfc2965.txt - * - * @param string $line The header line. - * @param string $defaultDomain The domain to use if none is specified in - * the cookie. - * - * @return array - */ - protected function parseCookieHeader ($line, $defaultDomain) - { - if (!$defaultDomain) { - throw new CAS_InvalidArgumentException( - '$defaultDomain was not provided.' - ); - } - - // Set our default values - $cookie = array( - 'domain' => $defaultDomain, - 'path' => '/', - 'secure' => false, - ); - - $line = preg_replace('/^Set-Cookie2?: /i', '', trim($line)); - - // trim any trailing semicolons. - $line = trim($line, ';'); - - phpCAS::trace("Cookie Line: $line"); - - // This implementation makes the assumption that semicolons will not - // be present in quoted attribute values. While attribute values that - // contain semicolons are allowed by RFC2965, they are hopefully rare - // enough to ignore for our purposes. Most browsers make the same - // assumption. - $attributeStrings = explode(';', $line); - - foreach ( $attributeStrings as $attributeString ) { - // split on the first equals sign and use the rest as value - $attributeParts = explode('=', $attributeString, 2); - - $attributeName = trim($attributeParts[0]); - $attributeNameLC = strtolower($attributeName); - - if (isset($attributeParts[1])) { - $attributeValue = trim($attributeParts[1]); - // Values may be quoted strings. - if (strpos($attributeValue, '"') === 0) { - $attributeValue = trim($attributeValue, '"'); - // unescape any escaped quotes: - $attributeValue = str_replace('\"', '"', $attributeValue); - } - } else { - $attributeValue = null; - } - - switch ($attributeNameLC) { - case 'expires': - $cookie['expires'] = strtotime($attributeValue); - break; - case 'max-age': - $cookie['max-age'] = (int)$attributeValue; - // Set an expiry time based on the max-age - if ($cookie['max-age']) { - $cookie['expires'] = time() + $cookie['max-age']; - } else { - // If max-age is zero, then the cookie should be removed - // imediately so set an expiry before now. - $cookie['expires'] = time() - 1; - } - break; - case 'secure': - $cookie['secure'] = true; - break; - case 'domain': - case 'path': - case 'port': - case 'version': - case 'comment': - case 'commenturl': - case 'discard': - case 'httponly': - $cookie[$attributeNameLC] = $attributeValue; - break; - default: - $cookie['name'] = $attributeName; - $cookie['value'] = $attributeValue; - } - } - - return $cookie; - } - - /** - * Add, update, or remove a cookie. - * - * @param array $cookie A cookie array as created by parseCookieHeaders() - * - * @return void - * - * @access protected - */ - protected function storeCookie ($cookie) - { - // Discard any old versions of this cookie. - $this->discardCookie($cookie); - $this->_cookies[] = $cookie; - - } - - /** - * Discard an existing cookie - * - * @param array $cookie An cookie - * - * @return void - * - * @access protected - */ - protected function discardCookie ($cookie) - { - if (!isset($cookie['domain']) - || !isset($cookie['path']) - || !isset($cookie['path']) - ) { - throw new CAS_InvalidArgumentException('Invalid Cookie array passed.'); - } - - foreach ($this->_cookies as $key => $old_cookie) { - if ( $cookie['domain'] == $old_cookie['domain'] - && $cookie['path'] == $old_cookie['path'] - && $cookie['name'] == $old_cookie['name'] - ) { - unset($this->_cookies[$key]); - } - } - } - - /** - * Go through our stored cookies and remove any that are expired. - * - * @return void - * - * @access protected - */ - protected function expireCookies () - { - foreach ($this->_cookies as $key => $cookie) { - if (isset($cookie['expires']) && $cookie['expires'] < time()) { - unset($this->_cookies[$key]); - } - } - } - - /** - * Answer true if cookie is applicable to a target. - * - * @param array $cookie An array of cookie attributes. - * @param array $target An array of URL attributes as generated by parse_url(). - * - * @return bool - * - * @access private - */ - protected function cookieMatchesTarget ($cookie, $target) - { - if (!is_array($target)) { - throw new CAS_InvalidArgumentException( - '$target must be an array of URL attributes as generated by parse_url().' - ); - } - if (!isset($target['host'])) { - throw new CAS_InvalidArgumentException( - '$target must be an array of URL attributes as generated by parse_url().' - ); - } - - // Verify that the scheme matches - if ($cookie['secure'] && $target['scheme'] != 'https') { - return false; - } - - // Verify that the host matches - // Match domain and mulit-host cookies - if (strpos($cookie['domain'], '.') === 0) { - // .host.domain.edu cookies are valid for host.domain.edu - if (substr($cookie['domain'], 1) == $target['host']) { - // continue with other checks - } else { - // non-exact host-name matches. - // check that the target host a.b.c.edu is within .b.c.edu - $pos = strripos($target['host'], $cookie['domain']); - if (!$pos) { - return false; - } - // verify that the cookie domain is the last part of the host. - if ($pos + strlen($cookie['domain']) != strlen($target['host'])) { - return false; - } - // verify that the host name does not contain interior dots as per - // RFC 2965 section 3.3.2 Rejecting Cookies - // http://www.ietf.org/rfc/rfc2965.txt - $hostname = substr($target['host'], 0, $pos); - if (strpos($hostname, '.') !== false) { - return false; - } - } - } else { - // If the cookie host doesn't begin with '.', - // the host must case-insensitive match exactly - if (strcasecmp($target['host'], $cookie['domain']) !== 0) { - return false; - } - } - - // Verify that the port matches - if (isset($cookie['ports']) - && !in_array($target['port'], $cookie['ports']) - ) { - return false; - } - - // Verify that the path matches - if (strpos($target['path'], $cookie['path']) !== 0) { - return false; - } - - return true; - } - -} - -?> diff --git a/apps/maarch_entreprise/tools/phpCAS/source/CAS/Exception.php b/apps/maarch_entreprise/tools/phpCAS/source/CAS/Exception.php deleted file mode 100755 index d956d197590a76f247a33dc01051b23ed6cfd546..0000000000000000000000000000000000000000 --- a/apps/maarch_entreprise/tools/phpCAS/source/CAS/Exception.php +++ /dev/null @@ -1,59 +0,0 @@ -<?php - -/** - * Licensed to Jasig under one or more contributor license - * agreements. See the NOTICE file distributed with this work for - * additional information regarding copyright ownership. - * - * Jasig licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except in - * compliance with the License. You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * PHP Version 5 - * - * @file CAS/Exception.php - * @category Authentication - * @package PhpCAS - * @author Adam Franco <afranco@middlebury.edu> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - */ - -/** - * A root exception interface for all exceptions in phpCAS. - * - * All exceptions thrown in phpCAS should implement this interface to allow them - * to be caught as a category by clients. Each phpCAS exception should extend - * an appropriate SPL exception class that best fits its type. - * - * For example, an InvalidArgumentException in phpCAS should be defined as - * - * class CAS_InvalidArgumentException - * extends InvalidArgumentException - * implements CAS_Exception - * { } - * - * This definition allows the CAS_InvalidArgumentException to be caught as either - * an InvalidArgumentException or as a CAS_Exception. - * - * @class CAS_Exception - * @category Authentication - * @package PhpCAS - * @author Adam Franco <afranco@middlebury.edu> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - * - */ -interface CAS_Exception -{ - -} -?> \ No newline at end of file diff --git a/apps/maarch_entreprise/tools/phpCAS/source/CAS/GracefullTerminationException.php b/apps/maarch_entreprise/tools/phpCAS/source/CAS/GracefullTerminationException.php deleted file mode 100755 index 6d845dfac8ec618fc84a82083ec7b7af1f7c1e1c..0000000000000000000000000000000000000000 --- a/apps/maarch_entreprise/tools/phpCAS/source/CAS/GracefullTerminationException.php +++ /dev/null @@ -1,86 +0,0 @@ -<?php - -/** - * Licensed to Jasig under one or more contributor license - * agreements. See the NOTICE file distributed with this work for - * additional information regarding copyright ownership. - * - * Jasig licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except in - * compliance with the License. You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * PHP Version 5 - * - * @file CAS/GracefullTerminationException.php - * @category Authentication - * @package PhpCAS - * @author Joachim Fritschi <jfritschi@freenet.de> - * @author Adam Franco <afranco@middlebury.edu> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - */ - -/** - * An exception for terminatinating execution or to throw for unit testing - * - * @class CAS_GracefullTerminationException.php - * @category Authentication - * @package PhpCAS - * @author Joachim Fritschi <jfritschi@freenet.de> - * @author Adam Franco <afranco@middlebury.edu> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - */ - -class CAS_GracefullTerminationException -extends RuntimeException -implements CAS_Exception -{ - - /** - * Test if exceptions should be thrown or if we should just exit. - * In production usage we want to just exit cleanly when prompting the user - * for a redirect without filling the error logs with uncaught exceptions. - * In unit testing scenarios we cannot exit or we won't be able to continue - * with our tests. - * - * @param string $message Message Text - * @param string $code Error code - * - * @return void - */ - public function __construct ($message = 'Terminate Gracefully', $code = 0) - { - // Exit cleanly to avoid filling up the logs with uncaught exceptions. - if (self::$_exitWhenThrown) { - exit; - } else { - // Throw exceptions to allow unit testing to continue; - parent::__construct($message, $code); - } - } - - private static $_exitWhenThrown = true; - /** - * Force phpcas to thow Exceptions instead of calling exit() - * Needed for unit testing. Generally shouldn't be used in production due to - * an increase in Apache error logging if CAS_GracefulTerminiationExceptions - * are not caught and handled. - * - * @return void - */ - public static function throwInsteadOfExiting() - { - self::$_exitWhenThrown = false; - } - -} -?> \ No newline at end of file diff --git a/apps/maarch_entreprise/tools/phpCAS/source/CAS/InvalidArgumentException.php b/apps/maarch_entreprise/tools/phpCAS/source/CAS/InvalidArgumentException.php deleted file mode 100755 index ba43d39f8a13f15fc4963b1ee0470b1bb28c5def..0000000000000000000000000000000000000000 --- a/apps/maarch_entreprise/tools/phpCAS/source/CAS/InvalidArgumentException.php +++ /dev/null @@ -1,46 +0,0 @@ -<?php - -/** - * Licensed to Jasig under one or more contributor license - * agreements. See the NOTICE file distributed with this work for - * additional information regarding copyright ownership. - * - * Jasig licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except in - * compliance with the License. You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * PHP Version 5 - * - * @file CAS/InvalidArgumentException.php - * @category Authentication - * @package PhpCAS - * @author Adam Franco <afranco@middlebury.edu> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - */ - -/** - * Exception that denotes invalid arguments were passed. - * - * @class CAS_InvalidArgumentException - * @category Authentication - * @package PhpCAS - * @author Adam Franco <afranco@middlebury.edu> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - */ -class CAS_InvalidArgumentException -extends InvalidArgumentException -implements CAS_Exception -{ - -} -?> \ No newline at end of file diff --git a/apps/maarch_entreprise/tools/phpCAS/source/CAS/Languages/Catalan.php b/apps/maarch_entreprise/tools/phpCAS/source/CAS/Languages/Catalan.php deleted file mode 100755 index a0b64d8eb5f4873dca42a42f2ac987be0f0fe856..0000000000000000000000000000000000000000 --- a/apps/maarch_entreprise/tools/phpCAS/source/CAS/Languages/Catalan.php +++ /dev/null @@ -1,114 +0,0 @@ -<?php - -/** - * Licensed to Jasig under one or more contributor license - * agreements. See the NOTICE file distributed with this work for - * additional information regarding copyright ownership. - * - * Jasig licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except in - * compliance with the License. You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * PHP Version 5 - * - * @file CAS/Language/Catalan.php - * @category Authentication - * @package PhpCAS - * @author Iván-BenjamÃn GarcÃa Torà <ivaniclixx@gmail.com> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - */ - -/** - * Catalan language class - * - * @class CAS_Languages_Catalan - * @category Authentication - * @package PhpCAS - * @author Iván-BenjamÃn GarcÃa Torà <ivaniclixx@gmail.com> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - * - * @sa @link internalLang Internationalization @endlink - * @ingroup internalLang - */ -class CAS_Languages_Catalan implements CAS_Languages_LanguageInterface -{ - /** - * Get the using server string - * - * @return string using server - */ - public function getUsingServer() - { - return 'usant servidor'; - } - - /** - * Get authentication wanted string - * - * @return string authentication wanted - */ - public function getAuthenticationWanted() - { - return 'Autentificació CAS necessà ria!'; - } - - /** - * Get logout string - * - * @return string logout - */ - public function getLogout() - { - return 'Sortida de CAS necessà ria!'; - } - - /** - * Get the should have been redirected string - * - * @return string should habe been redirected - */ - public function getShouldHaveBeenRedirected() - { - return 'Ja hauria d\ haver estat redireccionat al servidor CAS. Feu click <a href="%s">aquÃ</a> per a continuar.'; - } - - /** - * Get authentication failed string - * - * @return string authentication failed - */ - public function getAuthenticationFailed() - { - return 'Autentificació CAS fallida!'; - } - - /** - * Get the your were not authenticated string - * - * @return string not authenticated - */ - public function getYouWereNotAuthenticated() - { - return '<p>No està s autentificat.</p><p>Pots tornar a intentar-ho fent click <a href="%s">aquÃ</a>.</p><p>Si el problema persisteix haurÃa de contactar amb l\'<a href="mailto:%s">administrador d\'aquest llocc</a>.</p>'; - } - - /** - * Get the service unavailable string - * - * @return string service unavailable - */ - public function getServiceUnavailable() - { - return 'El servei `<b>%s</b>\' no està disponible (<b>%s</b>).'; - } -} diff --git a/apps/maarch_entreprise/tools/phpCAS/source/CAS/Languages/English.php b/apps/maarch_entreprise/tools/phpCAS/source/CAS/Languages/English.php deleted file mode 100755 index 002c1ba49e9e98647ad07b38b124a14254419367..0000000000000000000000000000000000000000 --- a/apps/maarch_entreprise/tools/phpCAS/source/CAS/Languages/English.php +++ /dev/null @@ -1,114 +0,0 @@ -<?php - -/** - * Licensed to Jasig under one or more contributor license - * agreements. See the NOTICE file distributed with this work for - * additional information regarding copyright ownership. - * - * Jasig licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except in - * compliance with the License. You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * PHP Version 5 - * - * @file CAS/Language/English.php - * @category Authentication - * @package PhpCAS - * @author Pascal Aubry <pascal.aubry@univ-rennes1.fr> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - */ - -/** - * English language class - * - * @class CAS_Languages_English - * @category Authentication - * @package PhpCAS - * @author Pascal Aubry <pascal.aubry@univ-rennes1.fr> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - * - * @sa @link internalLang Internationalization @endlink - * @ingroup internalLang - */ -class CAS_Languages_English implements CAS_Languages_LanguageInterface -{ - /** - * Get the using server string - * - * @return string using server - */ - public function getUsingServer() - { - return 'using server'; - } - - /** - * Get authentication wanted string - * - * @return string authentication wanted - */ - public function getAuthenticationWanted() - { - return 'CAS Authentication wanted!'; - } - - /** - * Get logout string - * - * @return string logout - */ - public function getLogout() - { - return 'CAS logout wanted!'; - } - - /** - * Get the should have been redirected string - * - * @return string should habe been redirected - */ - public function getShouldHaveBeenRedirected() - { - return 'You should already have been redirected to the CAS server. Click <a href="%s">here</a> to continue.'; - } - - /** - * Get authentication failed string - * - * @return string authentication failed - */ - public function getAuthenticationFailed() - { - return 'CAS Authentication failed!'; - } - - /** - * Get the your were not authenticated string - * - * @return string not authenticated - */ - public function getYouWereNotAuthenticated() - { - return '<p>You were not authenticated.</p><p>You may submit your request again by clicking <a href="%s">here</a>.</p><p>If the problem persists, you may contact <a href="mailto:%s">the administrator of this site</a>.</p>'; - } - - /** - * Get the service unavailable string - * - * @return string service unavailable - */ - public function getServiceUnavailable() - { - return 'The service `<b>%s</b>\' is not available (<b>%s</b>).'; - } -} \ No newline at end of file diff --git a/apps/maarch_entreprise/tools/phpCAS/source/CAS/Languages/French.php b/apps/maarch_entreprise/tools/phpCAS/source/CAS/Languages/French.php deleted file mode 100755 index b99847a7f0601951fc049b811c7a4ffccb8c4267..0000000000000000000000000000000000000000 --- a/apps/maarch_entreprise/tools/phpCAS/source/CAS/Languages/French.php +++ /dev/null @@ -1,116 +0,0 @@ -<?php - -/** - * Licensed to Jasig under one or more contributor license - * agreements. See the NOTICE file distributed with this work for - * additional information regarding copyright ownership. - * - * Jasig licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except in - * compliance with the License. You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * PHP Version 5 - * - * @file CAS/Language/French.php - * @category Authentication - * @package PhpCAS - * @author Pascal Aubry <pascal.aubry@univ-rennes1.fr> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - */ - -/** - * French language class - * - * @class CAS_Languages_French - * @category Authentication - * @package PhpCAS - * @author Pascal Aubry <pascal.aubry@univ-rennes1.fr> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - * - * @sa @link internalLang Internationalization @endlink - * @ingroup internalLang - */ -class CAS_Languages_French implements CAS_Languages_LanguageInterface -{ - /** - * Get the using server string - * - * @return string using server - */ - public function getUsingServer() - { - return 'utilisant le serveur'; - } - - /** - * Get authentication wanted string - * - * @return string authentication wanted - */ - public function getAuthenticationWanted() - { - return 'Authentication CAS nécessaire !'; - } - - /** - * Get logout string - * - * @return string logout - */ - public function getLogout() - { - return 'Déconnexion demandée !'; - } - - /** - * Get the should have been redirected string - * - * @return string should habe been redirected - */ - public function getShouldHaveBeenRedirected() - { - return 'Vous auriez du etre redirigé(e) vers le serveur CAS. Cliquez <a href="%s">ici</a> pour continuer.'; - } - - /** - * Get authentication failed string - * - * @return string authentication failed - */ - public function getAuthenticationFailed() - { - return 'Authentification CAS infructueuse !'; - } - - /** - * Get the your were not authenticated string - * - * @return string not authenticated - */ - public function getYouWereNotAuthenticated() - { - return '<p>Vous n\'avez pas été authentifié(e).</p><p>Vous pouvez soumettre votre requete à nouveau en cliquant <a href="%s">ici</a>.</p><p>Si le problème persiste, vous pouvez contacter <a href="mailto:%s">l\'administrateur de ce site</a>.</p>'; - } - - /** - * Get the service unavailable string - * - * @return string service unavailable - */ - public function getServiceUnavailable() - { - return 'Le service `<b>%s</b>\' est indisponible (<b>%s</b>)'; - } -} - -?> \ No newline at end of file diff --git a/apps/maarch_entreprise/tools/phpCAS/source/CAS/Languages/German.php b/apps/maarch_entreprise/tools/phpCAS/source/CAS/Languages/German.php deleted file mode 100755 index ed3150a80c2e4effbd66e41043bb9a35248c4398..0000000000000000000000000000000000000000 --- a/apps/maarch_entreprise/tools/phpCAS/source/CAS/Languages/German.php +++ /dev/null @@ -1,116 +0,0 @@ -<?php - -/** - * Licensed to Jasig under one or more contributor license - * agreements. See the NOTICE file distributed with this work for - * additional information regarding copyright ownership. - * - * Jasig licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except in - * compliance with the License. You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * PHP Version 5 - * - * @file CAS/Language/German.php - * @category Authentication - * @package PhpCAS - * @author Henrik Genssen <hg@mediafactory.de> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - */ - -/** - * German language class - * - * @class CAS_Languages_German - * @category Authentication - * @package PhpCAS - * @author Henrik Genssen <hg@mediafactory.de> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - * - * @sa @link internalLang Internationalization @endlink - * @ingroup internalLang - */ -class CAS_Languages_German implements CAS_Languages_LanguageInterface -{ - /** - * Get the using server string - * - * @return string using server - */ - public function getUsingServer() - { - return 'via Server'; - } - - /** - * Get authentication wanted string - * - * @return string authentication wanted - */ - public function getAuthenticationWanted() - { - return 'CAS Authentifizierung erforderlich!'; - } - - /** - * Get logout string - * - * @return string logout - */ - public function getLogout() - { - return 'CAS Abmeldung!'; - } - - /** - * Get the should have been redirected string - * - * @return string should habe been redirected - */ - public function getShouldHaveBeenRedirected() - { - return 'eigentlich häten Sie zum CAS Server weitergeleitet werden sollen. Drücken Sie <a href="%s">hier</a> um fortzufahren.'; - } - - /** - * Get authentication failed string - * - * @return string authentication failed - */ - public function getAuthenticationFailed() - { - return 'CAS Anmeldung fehlgeschlagen!'; - } - - /** - * Get the your were not authenticated string - * - * @return string not authenticated - */ - public function getYouWereNotAuthenticated() - { - return '<p>Sie wurden nicht angemeldet.</p><p>Um es erneut zu versuchen klicken Sie <a href="%s">hier</a>.</p><p>Wenn das Problem bestehen bleibt, kontaktieren Sie den <a href="mailto:%s">Administrator</a> dieser Seite.</p>'; - } - - /** - * Get the service unavailable string - * - * @return string service unavailable - */ - public function getServiceUnavailable() - { - return 'Der Dienst `<b>%s</b>\' ist nicht verfügbar (<b>%s</b>).'; - } -} - -?> diff --git a/apps/maarch_entreprise/tools/phpCAS/source/CAS/Languages/Greek.php b/apps/maarch_entreprise/tools/phpCAS/source/CAS/Languages/Greek.php deleted file mode 100755 index eb0f5efefc2a1f48ff14e8b4cdcb7a2d27fa7c67..0000000000000000000000000000000000000000 --- a/apps/maarch_entreprise/tools/phpCAS/source/CAS/Languages/Greek.php +++ /dev/null @@ -1,115 +0,0 @@ -<?php - -/** - * Licensed to Jasig under one or more contributor license - * agreements. See the NOTICE file distributed with this work for - * additional information regarding copyright ownership. - * - * Jasig licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except in - * compliance with the License. You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * PHP Version 5 - * - * @file CAS/Language/Greek.php - * @category Authentication - * @package PhpCAS - * @author Vangelis Haniotakis <haniotak@ucnet.uoc.gr> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - */ - -/** - * Greek language class - * - * @class CAS_Languages_Greek - * @category Authentication - * @package PhpCAS - * @author Vangelis Haniotakis <haniotak@ucnet.uoc.gr> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - * - * @sa @link internalLang Internationalization @endlink - * @ingroup internalLang - */ -class CAS_Languages_Greek implements CAS_Languages_LanguageInterface -{ - /** - * Get the using server string - * - * @return string using server - */ - public function getUsingServer() - { - return '÷ñçóéìïðïéåßôáé ï åîõðçñåôçôÞò'; - } - - /** - * Get authentication wanted string - * - * @return string authentication wanted - */ - public function getAuthenticationWanted() - { - return 'Ãðáéôåßôáé ç ôáõôïðïßçóç CAS!'; - } - - /** - * Get logout string - * - * @return string logout - */ - public function getLogout() - { - return 'Ãðáéôåßôáé ç áðïóýÃäåóç áðü CAS!'; - } - - /** - * Get the should have been redirected string - * - * @return string should habe been redirected - */ - public function getShouldHaveBeenRedirected() - { - return 'Èá Ãðñåðå Ãá åß÷áôå áÃáêáôåõèõÃèåß óôïà åîõðçñåôçôÞ CAS. ÊÜÃôå êëßê <a href="%s">åäþ</a> ãéá Ãá óõÃå÷ßóåôå.'; - } - - /** - * Get authentication failed string - * - * @return string authentication failed - */ - public function getAuthenticationFailed() - { - return 'Ç ôáõôïðïßçóç CAS áðÃôõ÷å!'; - } - - /** - * Get the your were not authenticated string - * - * @return string not authenticated - */ - public function getYouWereNotAuthenticated() - { - return '<p>Äåà ôáõôïðïéçèÞêáôå.</p><p>Ìðïñåßôå Ãá îáÃáðñïóðáèÞóåôå, êÜÃïÃôáò êëßê <a href="%s">åäþ</a>.</p><p>Åáà ôï ðñüâëçìá åðéìåßÃåé, åëÜôå óå åðáöÞ ìå ôïà <a href="mailto:%s">äéá÷åéñéóôÞ</a>.</p>'; - } - - /** - * Get the service unavailable string - * - * @return string service unavailable - */ - public function getServiceUnavailable() - { - return 'Ç õðçñåóßá `<b>%s</b>\' äåà åßÃáé äéáèÃóéìç (<b>%s</b>).'; - } -} -?> \ No newline at end of file diff --git a/apps/maarch_entreprise/tools/phpCAS/source/CAS/Languages/Japanese.php b/apps/maarch_entreprise/tools/phpCAS/source/CAS/Languages/Japanese.php deleted file mode 100755 index e9cd121ee72d2cdfdb3e9e24fbc679f5cc87d97e..0000000000000000000000000000000000000000 --- a/apps/maarch_entreprise/tools/phpCAS/source/CAS/Languages/Japanese.php +++ /dev/null @@ -1,113 +0,0 @@ -<?php - -/** - * Licensed to Jasig under one or more contributor license - * agreements. See the NOTICE file distributed with this work for - * additional information regarding copyright ownership. - * - * Jasig licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except in - * compliance with the License. You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * PHP Version 5 - * - * @file CAS/Language/Japanese.php - * @category Authentication - * @package PhpCAS - * @author fnorif <fnorif@yahoo.co.jp> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - */ - -/** - * Japanese language class. Now Encoding is EUC-JP and LF - * - * @class CAS_Languages_Japanese - * @category Authentication - * @package PhpCAS - * @author fnorif <fnorif@yahoo.co.jp> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - * - **/ -class CAS_Languages_Japanese implements CAS_Languages_LanguageInterface -{ - /** - * Get the using server string - * - * @return string using server - */ - public function getUsingServer() - { - return 'using server'; - } - - /** - * Get authentication wanted string - * - * @return string authentication wanted - */ - public function getAuthenticationWanted() - { - return 'CAS�ˤ��ǧ�ڤ�Ԥ��ޤ�'; - } - - /** - * Get logout string - * - * @return string logout - */ - public function getLogout() - { - return 'CAS����?�����Ȥ��ޤ�!'; - } - - /** - * Get the should have been redirected string - * - * @return string should habe been redirected - */ - public function getShouldHaveBeenRedirected() - { - return 'CAS�����Ф˹Ԥ�ɬ�פ�����ޤ�����ưŪ��ž������ʤ����� <a href="%s">������</a> �ò¥¯¥ï¿½Ã¥ï¿½ï¿½ï¿½ï¿½ï¿½Â³ï¿½Ô¤ï¿½ï¿½Þ¤ï¿½ï¿½'; - } - - /** - * Get authentication failed string - * - * @return string authentication failed - */ - public function getAuthenticationFailed() - { - return 'CAS�ˤ��ǧ�ڤ˼��Ԥ��ޤ���'; - } - - /** - * Get the your were not authenticated string - * - * @return string not authenticated - */ - public function getYouWereNotAuthenticated() - { - return '<p>ǧ�ڤǤ��ޤ���Ǥ���.</p><p>�⤦���٥ꥯ�����Ȥ������������<a href="%s">������</a>�ò¥¯¥ï¿½Ã¥ï¿½.</p><p>���꤬��褷�ʤ����� <a href="mailto:%s">���Υ����Ȥδ����</a>���䤤��碌�Ƥ�������.</p>'; - } - - /** - * Get the service unavailable string - * - * @return string service unavailable - */ - public function getServiceUnavailable() - { - return '�����ӥ� `<b>%s</b>\' �����ѤǤ��ޤ��� (<b>%s</b>).'; - } -} -?> \ No newline at end of file diff --git a/apps/maarch_entreprise/tools/phpCAS/source/CAS/Languages/LanguageInterface.php b/apps/maarch_entreprise/tools/phpCAS/source/CAS/Languages/LanguageInterface.php deleted file mode 100755 index 5de93aa7b20bab3bb7d2f4afdb9d1da677868e68..0000000000000000000000000000000000000000 --- a/apps/maarch_entreprise/tools/phpCAS/source/CAS/Languages/LanguageInterface.php +++ /dev/null @@ -1,96 +0,0 @@ -<?php - -/** - * Licensed to Jasig under one or more contributor license - * agreements. See the NOTICE file distributed with this work for - * additional information regarding copyright ownership. - * - * Jasig licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except in - * compliance with the License. You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * PHP Version 5 - * - * @file CAS/Language/LanguageInterface.php - * @category Authentication - * @package PhpCAS - * @author Joachim Fritschi <jfritschi@freenet.de> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - */ - -/** - * Language Interface class for all internationalization files - * - * @class CAS_Languages_LanguageInterface - * @category Authentication - * @package PhpCAS - * @author Joachim Fritschi <jfritschi@freenet.de> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - * - * @sa @link internalLang Internationalization @endlink - * @ingroup internalLang - */ - -interface CAS_Languages_LanguageInterface -{ - /** - * Get the using server string - * - * @return string using server - */ - public function getUsingServer(); - - /** - * Get authentication wanted string - * - * @return string authentication wanted - */ - public function getAuthenticationWanted(); - - /** - * Get logout string - * - * @return string logout - */ - public function getLogout(); - - /** - * Get the should have been redirected string - * - * @return string should habe been redirected - */ - public function getShouldHaveBeenRedirected(); - - /** - * Get authentication failed string - * - * @return string authentication failed - */ - public function getAuthenticationFailed(); - - /** - * Get the your were not authenticated string - * - * @return string not authenticated - */ - public function getYouWereNotAuthenticated(); - - /** - * Get the service unavailable string - * - * @return string service unavailable - */ - public function getServiceUnavailable(); - -} -?> \ No newline at end of file diff --git a/apps/maarch_entreprise/tools/phpCAS/source/CAS/Languages/Spanish.php b/apps/maarch_entreprise/tools/phpCAS/source/CAS/Languages/Spanish.php deleted file mode 100755 index 5675a41d80c465a3123c98a76063467f65aea265..0000000000000000000000000000000000000000 --- a/apps/maarch_entreprise/tools/phpCAS/source/CAS/Languages/Spanish.php +++ /dev/null @@ -1,117 +0,0 @@ -<?php - -/** - * Licensed to Jasig under one or more contributor license - * agreements. See the NOTICE file distributed with this work for - * additional information regarding copyright ownership. - * - * Jasig licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except in - * compliance with the License. You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * PHP Version 5 - * - * @file CAS/Language/Spanish.php - * @category Authentication - * @package PhpCAS - * @author Iván-BenjamÃn GarcÃa Torà <ivaniclixx@gmail.com> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - */ - -/** - * Spanish language class - * - * @class CAS_Languages_Spanish - * @category Authentication - * @package PhpCAS - * @author Iván-BenjamÃn GarcÃa Torà <ivaniclixx@gmail.com> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - * - - * @sa @link internalLang Internationalization @endlink - * @ingroup internalLang - */ -class CAS_Languages_Spanish implements CAS_Languages_LanguageInterface -{ - - /** - * Get the using server string - * - * @return string using server - */ - public function getUsingServer() - { - return 'usando servidor'; - } - - /** - * Get authentication wanted string - * - * @return string authentication wanted - */ - public function getAuthenticationWanted() - { - return '¡Autentificación CAS necesaria!'; - } - - /** - * Get logout string - * - * @return string logout - */ - public function getLogout() - { - return '¡Salida CAS necesaria!'; - } - - /** - * Get the should have been redirected string - * - * @return string should habe been redirected - */ - public function getShouldHaveBeenRedirected() - { - return 'Ya deberÃa haber sido redireccionado al servidor CAS. Haga click <a href="%s">aquÃ</a> para continuar.'; - } - - /** - * Get authentication failed string - * - * @return string authentication failed - */ - public function getAuthenticationFailed() - { - return '¡Autentificación CAS fallida!'; - } - - /** - * Get the your were not authenticated string - * - * @return string not authenticated - */ - public function getYouWereNotAuthenticated() - { - return '<p>No estás autentificado.</p><p>Puedes volver a intentarlo haciendo click <a href="%s">aquÃ</a>.</p><p>Si el problema persiste deberÃa contactar con el <a href="mailto:%s">administrador de este sitio</a>.</p>'; - } - - /** - * Get the service unavailable string - * - * @return string service unavailable - */ - public function getServiceUnavailable() - { - return 'El servicio `<b>%s</b>\' no está disponible (<b>%s</b>).'; - } -} -?> diff --git a/apps/maarch_entreprise/tools/phpCAS/source/CAS/OutOfSequenceBeforeAuthenticationCallException.php b/apps/maarch_entreprise/tools/phpCAS/source/CAS/OutOfSequenceBeforeAuthenticationCallException.php deleted file mode 100755 index ef8309795864bc0482e0f10f06a95a339dd4c4c8..0000000000000000000000000000000000000000 --- a/apps/maarch_entreprise/tools/phpCAS/source/CAS/OutOfSequenceBeforeAuthenticationCallException.php +++ /dev/null @@ -1,56 +0,0 @@ -<?php - -/** - * Licensed to Jasig under one or more contributor license - * agreements. See the NOTICE file distributed with this work for - * additional information regarding copyright ownership. - * - * Jasig licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except in - * compliance with the License. You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * - * PHP Version 5 - * - * @file CAS/OutOfSequenceBeforeAuthenticationCallException.php - * @category Authentication - * @package PhpCAS - * @author Joachim Fritschi <jfritschi@freenet.de> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - */ - -/** - * This class defines Exceptions that should be thrown when the sequence of - * operations is invalid. In this case it should be thrown when an - * authentication call has not yet happened. - * - * @class CAS_OutOfSequenceBeforeAuthenticationCallException - * @category Authentication - * @package PhpCAS - * @author Joachim Fritschi <jfritschi@freenet.de> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - */ -class CAS_OutOfSequenceBeforeAuthenticationCallException -extends CAS_OutOfSequenceException -implements CAS_Exception -{ - /** - * Return standard error meessage - * - * @return void - */ - public function __construct () - { - parent::__construct('An authentication call hasn\'t happened yet.'); - } -} diff --git a/apps/maarch_entreprise/tools/phpCAS/source/CAS/OutOfSequenceBeforeClientException.php b/apps/maarch_entreprise/tools/phpCAS/source/CAS/OutOfSequenceBeforeClientException.php deleted file mode 100755 index f1ea7e2447e10b71106e9efbbc781f34d939aa8d..0000000000000000000000000000000000000000 --- a/apps/maarch_entreprise/tools/phpCAS/source/CAS/OutOfSequenceBeforeClientException.php +++ /dev/null @@ -1,58 +0,0 @@ -<?php - -/** - * Licensed to Jasig under one or more contributor license - * agreements. See the NOTICE file distributed with this work for - * additional information regarding copyright ownership. - * - * Jasig licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except in - * compliance with the License. You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * - * PHP Version 5 - * - * @file CAS/OutOfSequenceBeforeClientException.php - * @category Authentication - * @package PhpCAS - * @author Joachim Fritschi <jfritschi@freenet.de> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - */ - -/** - * This class defines Exceptions that should be thrown when the sequence of - * operations is invalid. In this case it should be thrown when the client() or - * proxy() call has not yet happened and no client or proxy object exists. - * - * @class CAS_OutOfSequenceBeforeClientException - * @category Authentication - * @package PhpCAS - * @author Joachim Fritschi <jfritschi@freenet.de> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - */ -class CAS_OutOfSequenceBeforeClientException -extends CAS_OutOfSequenceException -implements CAS_Exception -{ - /** - * Return standard error message - * - * @return void - */ - public function __construct () - { - parent::__construct( - 'this method cannot be called before phpCAS::client() or phpCAS::proxy()' - ); - } -} diff --git a/apps/maarch_entreprise/tools/phpCAS/source/CAS/OutOfSequenceBeforeProxyException.php b/apps/maarch_entreprise/tools/phpCAS/source/CAS/OutOfSequenceBeforeProxyException.php deleted file mode 100755 index 8038542ed142bd991c577bc226172f5bdc6d488b..0000000000000000000000000000000000000000 --- a/apps/maarch_entreprise/tools/phpCAS/source/CAS/OutOfSequenceBeforeProxyException.php +++ /dev/null @@ -1,59 +0,0 @@ -<?php - -/** - * Licensed to Jasig under one or more contributor license - * agreements. See the NOTICE file distributed with this work for - * additional information regarding copyright ownership. - * - * Jasig licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except in - * compliance with the License. You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * - * PHP Version 5 - * - * @file CAS/OutOfSequenceBeforeProxyException.php - * @category Authentication - * @package PhpCAS - * @author Joachim Fritschi <jfritschi@freenet.de> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - */ - -/** - * This class defines Exceptions that should be thrown when the sequence of - * operations is invalid. In this case it should be thrown when the proxy() call - * has not yet happened and no proxy object exists. - * - * @class CAS_OutOfSequenceBeforeProxyException - * @category Authentication - * @package PhpCAS - * @author Joachim Fritschi <jfritschi@freenet.de> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - */ -class CAS_OutOfSequenceBeforeProxyException -extends CAS_OutOfSequenceException -implements CAS_Exception -{ - - /** - * Return standard error message - * - * @return void - */ - public function __construct () - { - parent::__construct( - 'this method cannot be called before phpCAS::proxy()' - ); - } -} diff --git a/apps/maarch_entreprise/tools/phpCAS/source/CAS/OutOfSequenceException.php b/apps/maarch_entreprise/tools/phpCAS/source/CAS/OutOfSequenceException.php deleted file mode 100755 index d101811b60d8a90136b8d70953124e466edc1697..0000000000000000000000000000000000000000 --- a/apps/maarch_entreprise/tools/phpCAS/source/CAS/OutOfSequenceException.php +++ /dev/null @@ -1,49 +0,0 @@ -<?php - -/** - * Licensed to Jasig under one or more contributor license - * agreements. See the NOTICE file distributed with this work for - * additional information regarding copyright ownership. - * - * Jasig licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except in - * compliance with the License. You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * - * PHP Version 5 - * - * @file CAS/OutOfSequenceException.php - * @category Authentication - * @package PhpCAS - * @author Adam Franco <afranco@middlebury.edu> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - */ - -/** - * This class defines Exceptions that should be thrown when the sequence of - * operations is invalid. Examples are: - * - Requesting the response before executing a request. - * - Changing the URL of a request after executing the request. - * - * @class CAS_OutOfSequenceException - * @category Authentication - * @package PhpCAS - * @author Adam Franco <afranco@middlebury.edu> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - */ -class CAS_OutOfSequenceException -extends BadMethodCallException -implements CAS_Exception -{ - -} diff --git a/apps/maarch_entreprise/tools/phpCAS/source/CAS/PGTStorage/AbstractStorage.php b/apps/maarch_entreprise/tools/phpCAS/source/CAS/PGTStorage/AbstractStorage.php deleted file mode 100755 index c1648984ac2744002b9bd10ac91f4ed7dadc0427..0000000000000000000000000000000000000000 --- a/apps/maarch_entreprise/tools/phpCAS/source/CAS/PGTStorage/AbstractStorage.php +++ /dev/null @@ -1,222 +0,0 @@ -<?php - -/** - * Licensed to Jasig under one or more contributor license - * agreements. See the NOTICE file distributed with this work for - * additional information regarding copyright ownership. - * - * Jasig licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except in - * compliance with the License. You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * PHP Version 5 - * - * @file CAS/PGTStorage/AbstractStorage.php - * @category Authentication - * @package PhpCAS - * @author Pascal Aubry <pascal.aubry@univ-rennes1.fr> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - */ - -/** - * Basic class for PGT storage - * The CAS_PGTStorage_AbstractStorage class is a generic class for PGT storage. - * This class should not be instanciated itself but inherited by specific PGT - * storage classes. - * - * @class CAS_PGTStorage_AbstractStorage - * @category Authentication - * @package PhpCAS - * @author Pascal Aubry <pascal.aubry@univ-rennes1.fr> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - * - * @ingroup internalPGTStorage - */ - -abstract class CAS_PGTStorage_AbstractStorage -{ - /** - * @addtogroup internalPGTStorage - * @{ - */ - - // ######################################################################## - // CONSTRUCTOR - // ######################################################################## - - /** - * The constructor of the class, should be called only by inherited classes. - * - * @param CAS_Client $cas_parent the CAS _client instance that creates the - * current object. - * - * @return void - * - * @protected - */ - function __construct($cas_parent) - { - phpCAS::traceBegin(); - if ( !$cas_parent->isProxy() ) { - phpCAS::error( - 'defining PGT storage makes no sense when not using a CAS proxy' - ); - } - phpCAS::traceEnd(); - } - - // ######################################################################## - // DEBUGGING - // ######################################################################## - - /** - * This virtual method returns an informational string giving the type of storage - * used by the object (used for debugging purposes). - * - * @return void - * - * @public - */ - function getStorageType() - { - phpCAS::error(__CLASS__.'::'.__FUNCTION__.'() should never be called'); - } - - /** - * This virtual method returns an informational string giving informations on the - * parameters of the storage.(used for debugging purposes). - * - * @return void - * - * @public - */ - function getStorageInfo() - { - phpCAS::error(__CLASS__.'::'.__FUNCTION__.'() should never be called'); - } - - // ######################################################################## - // ERROR HANDLING - // ######################################################################## - - /** - * string used to store an error message. Written by - * PGTStorage::setErrorMessage(), read by PGTStorage::getErrorMessage(). - * - * @hideinitializer - * @deprecated not used. - */ - var $_error_message=false; - - /** - * This method sets en error message, which can be read later by - * PGTStorage::getErrorMessage(). - * - * @param string $error_message an error message - * - * @return void - * - * @deprecated not used. - */ - function setErrorMessage($error_message) - { - $this->_error_message = $error_message; - } - - /** - * This method returns an error message set by PGTStorage::setErrorMessage(). - * - * @return an error message when set by PGTStorage::setErrorMessage(), FALSE - * otherwise. - * - * @deprecated not used. - */ - function getErrorMessage() - { - return $this->_error_message; - } - - // ######################################################################## - // INITIALIZATION - // ######################################################################## - - /** - * a boolean telling if the storage has already been initialized. Written by - * PGTStorage::init(), read by PGTStorage::isInitialized(). - * - * @hideinitializer - */ - var $_initialized = false; - - /** - * This method tells if the storage has already been intialized. - * - * @return a boolean - * - * @protected - */ - function isInitialized() - { - return $this->_initialized; - } - - /** - * This virtual method initializes the object. - * - * @return void - */ - function init() - { - $this->_initialized = true; - } - - // ######################################################################## - // PGT I/O - // ######################################################################## - - /** - * This virtual method stores a PGT and its corresponding PGT Iuo. - * - * @param string $pgt the PGT - * @param string $pgt_iou the PGT iou - * - * @return void - * - * @note Should never be called. - * - */ - function write($pgt,$pgt_iou) - { - phpCAS::error(__CLASS__.'::'.__FUNCTION__.'() should never be called'); - } - - /** - * This virtual method reads a PGT corresponding to a PGT Iou and deletes - * the corresponding storage entry. - * - * @param string $pgt_iou the PGT iou - * - * @return void - * - * @note Should never be called. - */ - function read($pgt_iou) - { - phpCAS::error(__CLASS__.'::'.__FUNCTION__.'() should never be called'); - } - - /** @} */ - -} - -?> diff --git a/apps/maarch_entreprise/tools/phpCAS/source/CAS/PGTStorage/Db.php b/apps/maarch_entreprise/tools/phpCAS/source/CAS/PGTStorage/Db.php deleted file mode 100755 index c331ca09833a1679119dbca717a95a9f657b8b01..0000000000000000000000000000000000000000 --- a/apps/maarch_entreprise/tools/phpCAS/source/CAS/PGTStorage/Db.php +++ /dev/null @@ -1,440 +0,0 @@ -<?php - -/** - * Licensed to Jasig under one or more contributor license - * agreements. See the NOTICE file distributed with this work for - * additional information regarding copyright ownership. - * - * Jasig licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except in - * compliance with the License. You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * PHP Version 5 - * - * @file CAS/PGTStorage/Db.php - * @category Authentication - * @package PhpCAS - * @author Daniel Frett <daniel.frett@gmail.com> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - */ - -define('CAS_PGT_STORAGE_DB_DEFAULT_TABLE', 'cas_pgts'); - -/** - * Basic class for PGT database storage - * The CAS_PGTStorage_Db class is a class for PGT database storage. - * - * @class CAS_PGTStorage_Db - * @category Authentication - * @package PhpCAS - * @author Daniel Frett <daniel.frett@gmail.com> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - * - * @ingroup internalPGTStorageDb - */ - -class CAS_PGTStorage_Db extends CAS_PGTStorage_AbstractStorage -{ - /** - * @addtogroup internalCAS_PGTStorageDb - * @{ - */ - - /** - * the PDO object to use for database interactions - */ - private $_pdo; - - /** - * This method returns the PDO object to use for database interactions. - * - * @return the PDO object - */ - private function _getPdo() - { - return $this->_pdo; - } - - /** - * database connection options to use when creating a new PDO object - */ - private $_dsn; - private $_username; - private $_password; - private $_table_options; - - /** - * the table to use for storing/retrieving pgt's - */ - private $_table; - - /** - * This method returns the table to use when storing/retrieving PGT's - * - * @return the name of the pgt storage table. - */ - private function _getTable() - { - return $this->_table; - } - - // ######################################################################## - // DEBUGGING - // ######################################################################## - - /** - * This method returns an informational string giving the type of storage - * used by the object (used for debugging purposes). - * - * @return an informational string. - */ - public function getStorageType() - { - return "db"; - } - - /** - * This method returns an informational string giving informations on the - * parameters of the storage.(used for debugging purposes). - * - * @return an informational string. - * @public - */ - public function getStorageInfo() - { - return 'table=`'.$this->_getTable().'\''; - } - - // ######################################################################## - // CONSTRUCTOR - // ######################################################################## - - /** - * The class constructor. - * - * @param CAS_Client $cas_parent the CAS_Client instance that creates - * the object. - * @param string $dsn_or_pdo a dsn string to use for creating a PDO - * object or a PDO object - * @param string $username the username to use when connecting to - * the database - * @param string $password the password to use when connecting to - * the database - * @param string $table the table to use for storing and - * retrieving PGT's - * @param string $driver_options any driver options to use when - * connecting to the database - */ - public function __construct( - $cas_parent, $dsn_or_pdo, $username='', $password='', $table='', - $driver_options=null - ) { - phpCAS::traceBegin(); - // call the ancestor's constructor - parent::__construct($cas_parent); - - // set default values - if ( empty($table) ) { - $table = CAS_PGT_STORAGE_DB_DEFAULT_TABLE; - } - if ( !is_array($driver_options) ) { - $driver_options = array(PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION); - } - - // store the specified parameters - if ($dsn_or_pdo instanceof PDO) { - $this->_pdo = $dsn_or_pdo; - } else { - $this->_dsn = $dsn_or_pdo; - $this->_username = $username; - $this->_password = $password; - $this->_driver_options = $driver_options; - } - - // store the table name - $this->_table = $table; - - phpCAS::traceEnd(); - } - - // ######################################################################## - // INITIALIZATION - // ######################################################################## - - /** - * This method is used to initialize the storage. Halts on error. - * - * @return void - */ - public function init() - { - phpCAS::traceBegin(); - // if the storage has already been initialized, return immediatly - if ($this->isInitialized()) { - return; - } - - // initialize the base object - parent::init(); - - // create the PDO object if it doesn't exist already - if (!($this->_pdo instanceof PDO)) { - try { - $this->_pdo = new PDO( - $this->_dsn, $this->_username, $this->_password, - $this->_driver_options - ); - } - catch(PDOException $e) { - phpCAS::error('Database connection error: ' . $e->getMessage()); - } - } - - phpCAS::traceEnd(); - } - - // ######################################################################## - // PDO database interaction - // ######################################################################## - - /** - * attribute that stores the previous error mode for the PDO handle while - * processing a transaction - */ - private $_errMode; - - /** - * This method will enable the Exception error mode on the PDO object - * - * @return void - */ - private function _setErrorMode() - { - // get PDO object and enable exception error mode - $pdo = $this->_getPdo(); - $this->_errMode = $pdo->getAttribute(PDO::ATTR_ERRMODE); - $pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); - } - - /** - * this method will reset the error mode on the PDO object - * - * @return void - */ - private function _resetErrorMode() - { - // get PDO object and reset the error mode to what it was originally - $pdo = $this->_getPdo(); - $pdo->setAttribute(PDO::ATTR_ERRMODE, $this->_errMode); - } - - // ######################################################################## - // database queries - // ######################################################################## - // these queries are potentially unsafe because the person using this library - // can set the table to use, but there is no reliable way to escape SQL - // fieldnames in PDO yet - - /** - * This method returns the query used to create a pgt storage table - * - * @return the create table SQL, no bind params in query - */ - protected function createTableSql() - { - return 'CREATE TABLE ' . $this->_getTable() - . ' (pgt_iou VARCHAR(255) NOT NULL PRIMARY KEY, pgt VARCHAR(255) NOT NULL)'; - } - - /** - * This method returns the query used to store a pgt - * - * @return the store PGT SQL, :pgt and :pgt_iou are the bind params contained - * in the query - */ - protected function storePgtSql() - { - return 'INSERT INTO ' . $this->_getTable() - . ' (pgt_iou, pgt) VALUES (:pgt_iou, :pgt)'; - } - - /** - * This method returns the query used to retrieve a pgt. the first column - * of the first row should contain the pgt - * - * @return the retrieve PGT SQL, :pgt_iou is the only bind param contained - * in the query - */ - protected function retrievePgtSql() - { - return 'SELECT pgt FROM ' . $this->_getTable() . ' WHERE pgt_iou = :pgt_iou'; - } - - /** - * This method returns the query used to delete a pgt. - * - * @return the delete PGT SQL, :pgt_iou is the only bind param contained in - * the query - */ - protected function deletePgtSql() - { - return 'DELETE FROM ' . $this->_getTable() . ' WHERE pgt_iou = :pgt_iou'; - } - - // ######################################################################## - // PGT I/O - // ######################################################################## - - /** - * This method creates the database table used to store pgt's and pgtiou's - * - * @return void - */ - public function createTable() - { - phpCAS::traceBegin(); - - // initialize this PGTStorage object if it hasn't been initialized yet - if ( !$this->isInitialized() ) { - $this->init(); - } - - // initialize the PDO object for this method - $pdo = $this->_getPdo(); - $this->_setErrorMode(); - - try { - $pdo->beginTransaction(); - - $query = $pdo->query($this->createTableSQL()); - $query->closeCursor(); - - $pdo->commit(); - } - catch(PDOException $e) { - // attempt rolling back the transaction before throwing a phpCAS error - try { - $pdo->rollBack(); - } - catch(PDOException $e) { - } - phpCAS::error('error creating PGT storage table: ' . $e->getMessage()); - } - - // reset the PDO object - $this->_resetErrorMode(); - - phpCAS::traceEnd(); - } - - /** - * This method stores a PGT and its corresponding PGT Iou in the database. - * Echoes a warning on error. - * - * @param string $pgt the PGT - * @param string $pgt_iou the PGT iou - * - * @return void - */ - public function write($pgt, $pgt_iou) - { - phpCAS::traceBegin(); - - // initialize the PDO object for this method - $pdo = $this->_getPdo(); - $this->_setErrorMode(); - - try { - $pdo->beginTransaction(); - - $query = $pdo->prepare($this->storePgtSql()); - $query->bindValue(':pgt', $pgt, PDO::PARAM_STR); - $query->bindValue(':pgt_iou', $pgt_iou, PDO::PARAM_STR); - $query->execute(); - $query->closeCursor(); - - $pdo->commit(); - } - catch(PDOException $e) { - // attempt rolling back the transaction before throwing a phpCAS error - try { - $pdo->rollBack(); - } - catch(PDOException $e) { - } - phpCAS::error('error writing PGT to database: ' . $e->getMessage()); - } - - // reset the PDO object - $this->_resetErrorMode(); - - phpCAS::traceEnd(); - } - - /** - * This method reads a PGT corresponding to a PGT Iou and deletes the - * corresponding db entry. - * - * @param string $pgt_iou the PGT iou - * - * @return the corresponding PGT, or FALSE on error - */ - public function read($pgt_iou) - { - phpCAS::traceBegin(); - $pgt = false; - - // initialize the PDO object for this method - $pdo = $this->_getPdo(); - $this->_setErrorMode(); - - try { - $pdo->beginTransaction(); - - // fetch the pgt for the specified pgt_iou - $query = $pdo->prepare($this->retrievePgtSql()); - $query->bindValue(':pgt_iou', $pgt_iou, PDO::PARAM_STR); - $query->execute(); - $pgt = $query->fetchColumn(0); - $query->closeCursor(); - - // delete the specified pgt_iou from the database - $query = $pdo->prepare($this->deletePgtSql()); - $query->bindValue(':pgt_iou', $pgt_iou, PDO::PARAM_STR); - $query->execute(); - $query->closeCursor(); - - $pdo->commit(); - } - catch(PDOException $e) { - // attempt rolling back the transaction before throwing a phpCAS error - try { - $pdo->rollBack(); - } - catch(PDOException $e) { - } - phpCAS::trace('error reading PGT from database: ' . $e->getMessage()); - } - - // reset the PDO object - $this->_resetErrorMode(); - - phpCAS::traceEnd(); - return $pgt; - } - - /** @} */ - -} - -?> diff --git a/apps/maarch_entreprise/tools/phpCAS/source/CAS/PGTStorage/File.php b/apps/maarch_entreprise/tools/phpCAS/source/CAS/PGTStorage/File.php deleted file mode 100755 index 80a1ea1fd731e664c61903124c6f4e3fecb925c8..0000000000000000000000000000000000000000 --- a/apps/maarch_entreprise/tools/phpCAS/source/CAS/PGTStorage/File.php +++ /dev/null @@ -1,259 +0,0 @@ -<?php - -/** - * Licensed to Jasig under one or more contributor license - * agreements. See the NOTICE file distributed with this work for - * additional information regarding copyright ownership. - * - * Jasig licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except in - * compliance with the License. You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * PHP Version 5 - * - * @file CAS/PGTStorage/AbstractStorage.php - * @category Authentication - * @package PhpCAS - * @author Pascal Aubry <pascal.aubry@univ-rennes1.fr> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - */ - -/** - * The CAS_PGTStorage_File class is a class for PGT file storage. An instance of - * this class is returned by CAS_Client::SetPGTStorageFile(). - * - * @class CAS_PGTStorage_File - * @category Authentication - * @package PhpCAS - * @author Pascal Aubry <pascal.aubry@univ-rennes1.fr> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - * - * - * @ingroup internalPGTStorageFile - */ - -class CAS_PGTStorage_File extends CAS_PGTStorage_AbstractStorage -{ - /** - * @addtogroup internalPGTStorageFile - * @{ - */ - - /** - * a string telling where PGT's should be stored on the filesystem. Written by - * PGTStorageFile::PGTStorageFile(), read by getPath(). - * - * @private - */ - var $_path; - - /** - * This method returns the name of the directory where PGT's should be stored - * on the filesystem. - * - * @return the name of a directory (with leading and trailing '/') - * - * @private - */ - function getPath() - { - return $this->_path; - } - - // ######################################################################## - // DEBUGGING - // ######################################################################## - - /** - * This method returns an informational string giving the type of storage - * used by the object (used for debugging purposes). - * - * @return an informational string. - * @public - */ - function getStorageType() - { - return "file"; - } - - /** - * This method returns an informational string giving informations on the - * parameters of the storage.(used for debugging purposes). - * - * @return an informational string. - * @public - */ - function getStorageInfo() - { - return 'path=`'.$this->getPath().'\''; - } - - // ######################################################################## - // CONSTRUCTOR - // ######################################################################## - - /** - * The class constructor, called by CAS_Client::SetPGTStorageFile(). - * - * @param CAS_Client $cas_parent the CAS_Client instance that creates the object. - * @param string $path the path where the PGT's should be stored - * - * @return void - * - * @public - */ - function __construct($cas_parent,$path) - { - phpCAS::traceBegin(); - // call the ancestor's constructor - parent::__construct($cas_parent); - - if (empty($path)) { - $path = CAS_PGT_STORAGE_FILE_DEFAULT_PATH; - } - // check that the path is an absolute path - if (getenv("OS")=="Windows_NT") { - - if (!preg_match('`^[a-zA-Z]:`', $path)) { - phpCAS::error('an absolute path is needed for PGT storage to file'); - } - - } else { - - if ( $path[0] != '/' ) { - phpCAS::error('an absolute path is needed for PGT storage to file'); - } - - // store the path (with a leading and trailing '/') - $path = preg_replace('|[/]*$|', '/', $path); - $path = preg_replace('|^[/]*|', '/', $path); - } - - $this->_path = $path; - phpCAS::traceEnd(); - } - - // ######################################################################## - // INITIALIZATION - // ######################################################################## - - /** - * This method is used to initialize the storage. Halts on error. - * - * @return void - * @public - */ - function init() - { - phpCAS::traceBegin(); - // if the storage has already been initialized, return immediatly - if ($this->isInitialized()) { - return; - } - // call the ancestor's method (mark as initialized) - parent::init(); - phpCAS::traceEnd(); - } - - // ######################################################################## - // PGT I/O - // ######################################################################## - - /** - * This method returns the filename corresponding to a PGT Iou. - * - * @param string $pgt_iou the PGT iou. - * - * @return a filename - * @private - */ - function getPGTIouFilename($pgt_iou) - { - phpCAS::traceBegin(); - $filename = $this->getPath().$pgt_iou.'.plain'; - phpCAS::traceEnd($filename); - return $filename; - } - - /** - * This method stores a PGT and its corresponding PGT Iou into a file. Echoes a - * warning on error. - * - * @param string $pgt the PGT - * @param string $pgt_iou the PGT iou - * - * @return void - * - * @public - */ - function write($pgt,$pgt_iou) - { - phpCAS::traceBegin(); - $fname = $this->getPGTIouFilename($pgt_iou); - if (!file_exists($fname)) { - touch($fname); - // Chmod will fail on windows - @chmod($fname, 0600); - if ($f=fopen($fname, "w")) { - if (fputs($f, $pgt) === false) { - phpCAS::error('could not write PGT to `'.$fname.'\''); - } - phpCAS::trace('Successful write of PGT to `'.$fname.'\''); - fclose($f); - } else { - phpCAS::error('could not open `'.$fname.'\''); - } - } else { - phpCAS::error('File exists: `'.$fname.'\''); - } - phpCAS::traceEnd(); - } - - /** - * This method reads a PGT corresponding to a PGT Iou and deletes the - * corresponding file. - * - * @param string $pgt_iou the PGT iou - * - * @return the corresponding PGT, or FALSE on error - * - * @public - */ - function read($pgt_iou) - { - phpCAS::traceBegin(); - $pgt = false; - $fname = $this->getPGTIouFilename($pgt_iou); - if (file_exists($fname)) { - if (!($f=fopen($fname, "r"))) { - phpCAS::error('could not open `'.$fname.'\''); - } else { - if (($pgt=fgets($f)) === false) { - phpCAS::error('could not read PGT from `'.$fname.'\''); - } - phpCAS::trace('Successful read of PGT to `'.$fname.'\''); - fclose($f); - } - // delete the PGT file - @unlink($fname); - } else { - phpCAS::error('No such file `'.$fname.'\''); - } - phpCAS::traceEnd($pgt); - return $pgt; - } - - /** @} */ - -} -?> \ No newline at end of file diff --git a/apps/maarch_entreprise/tools/phpCAS/source/CAS/ProxiedService.php b/apps/maarch_entreprise/tools/phpCAS/source/CAS/ProxiedService.php deleted file mode 100755 index d70ca9c128c5a35143f6aea8b8f4f5f992e16c19..0000000000000000000000000000000000000000 --- a/apps/maarch_entreprise/tools/phpCAS/source/CAS/ProxiedService.php +++ /dev/null @@ -1,72 +0,0 @@ -<?php - -/** - * Licensed to Jasig under one or more contributor license - * agreements. See the NOTICE file distributed with this work for - * additional information regarding copyright ownership. - * - * Jasig licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except in - * compliance with the License. You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * PHP Version 5 - * - * @file CAS/ProxiedService.php - * @category Authentication - * @package PhpCAS - * @author Adam Franco <afranco@middlebury.edu> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - */ - -/** - * This interface defines methods that allow proxy-authenticated service handlers - * to interact with phpCAS. - * - * Proxy service handlers must implement this interface as well as call - * phpCAS::initializeProxiedService($this) at some point in their implementation. - * - * While not required, proxy-authenticated service handlers are encouraged to - * implement the CAS_ProxiedService_Testable interface to facilitate unit testing. - * - * @class CAS_ProxiedService - * @category Authentication - * @package PhpCAS - * @author Adam Franco <afranco@middlebury.edu> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - */ -interface CAS_ProxiedService -{ - - /** - * Answer a service identifier (URL) for whom we should fetch a proxy ticket. - * - * @return string - * @throws Exception If no service url is available. - */ - public function getServiceUrl (); - - /** - * Register a proxy ticket with the ProxiedService that it can use when - * making requests. - * - * @param string $proxyTicket Proxy ticket string - * - * @return void - * @throws InvalidArgumentException If the $proxyTicket is invalid. - * @throws CAS_OutOfSequenceException If called after a proxy ticket has - * already been initialized/set. - */ - public function setProxyTicket ($proxyTicket); - -} -?> diff --git a/apps/maarch_entreprise/tools/phpCAS/source/CAS/ProxiedService/Abstract.php b/apps/maarch_entreprise/tools/phpCAS/source/CAS/ProxiedService/Abstract.php deleted file mode 100755 index fade9e70b7250a59b55ea30e0d45ec64c8de635e..0000000000000000000000000000000000000000 --- a/apps/maarch_entreprise/tools/phpCAS/source/CAS/ProxiedService/Abstract.php +++ /dev/null @@ -1,149 +0,0 @@ -<?php - -/** - * Licensed to Jasig under one or more contributor license - * agreements. See the NOTICE file distributed with this work for - * additional information regarding copyright ownership. - * - * Jasig licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except in - * compliance with the License. You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * PHP Version 5 - * - * @file CAS/ProxiedService/Abstract.php - * @category Authentication - * @package PhpCAS - * @author Adam Franco <afranco@middlebury.edu> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - */ - -/** - * This class implements common methods for ProxiedService implementations included - * with phpCAS. - * - * @class CAS_ProxiedService_Abstract - * @category Authentication - * @package PhpCAS - * @author Adam Franco <afranco@middlebury.edu> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - */ -abstract class CAS_ProxiedService_Abstract -implements CAS_ProxiedService, CAS_ProxiedService_Testable -{ - - /** - * The proxy ticket that can be used when making service requests. - * @var string $_proxyTicket; - */ - private $_proxyTicket; - - /** - * Register a proxy ticket with the Proxy that it can use when making requests. - * - * @param string $proxyTicket proxy ticket - * - * @return void - * @throws InvalidArgumentException If the $proxyTicket is invalid. - * @throws CAS_OutOfSequenceException If called after a proxy ticket has - * already been initialized/set. - */ - public function setProxyTicket ($proxyTicket) - { - if (empty($proxyTicket)) { - throw new CAS_InvalidArgumentException( - 'Trying to initialize with an empty proxy ticket.' - ); - } - if (!empty($this->_proxyTicket)) { - throw new CAS_OutOfSequenceException( - 'Already initialized, cannot change the proxy ticket.' - ); - } - $this->_proxyTicket = $proxyTicket; - } - - /** - * Answer the proxy ticket to be used when making requests. - * - * @return string - * @throws CAS_OutOfSequenceException If called before a proxy ticket has - * already been initialized/set. - */ - protected function getProxyTicket () - { - if (empty($this->_proxyTicket)) { - throw new CAS_OutOfSequenceException( - 'No proxy ticket yet. Call $this->initializeProxyTicket() to aquire the proxy ticket.' - ); - } - - return $this->_proxyTicket; - } - - /** - * @var CAS_Client $_casClient; - */ - private $_casClient; - - /** - * Use a particular CAS_Client->initializeProxiedService() rather than the - * static phpCAS::initializeProxiedService(). - * - * This method should not be called in standard operation, but is needed for unit - * testing. - * - * @param CAS_Client $casClient cas client - * - * @return void - * @throws CAS_OutOfSequenceException If called after a proxy ticket has - * already been initialized/set. - */ - public function setCasClient (CAS_Client $casClient) - { - if (!empty($this->_proxyTicket)) { - throw new CAS_OutOfSequenceException( - 'Already initialized, cannot change the CAS_Client.' - ); - } - - $this->_casClient = $casClient; - } - - /** - * Fetch our proxy ticket. - * - * Descendent classes should call this method once their service URL is available - * to initialize their proxy ticket. - * - * @return void - * @throws CAS_OutOfSequenceException If called after a proxy ticket has - * already been initialized. - */ - protected function initializeProxyTicket() - { - if (!empty($this->_proxyTicket)) { - throw new CAS_OutOfSequenceException( - 'Already initialized, cannot initialize again.' - ); - } - // Allow usage of a particular CAS_Client for unit testing. - if (empty($this->_casClient)) { - phpCAS::initializeProxiedService($this); - } else { - $this->_casClient->initializeProxiedService($this); - } - } - -} -?> diff --git a/apps/maarch_entreprise/tools/phpCAS/source/CAS/ProxiedService/Exception.php b/apps/maarch_entreprise/tools/phpCAS/source/CAS/ProxiedService/Exception.php deleted file mode 100755 index 5a1e69622abb4bb6a1d46cd2ffb98968aa0b2fad..0000000000000000000000000000000000000000 --- a/apps/maarch_entreprise/tools/phpCAS/source/CAS/ProxiedService/Exception.php +++ /dev/null @@ -1,46 +0,0 @@ -<?php - -/** - * Licensed to Jasig under one or more contributor license - * agreements. See the NOTICE file distributed with this work for - * additional information regarding copyright ownership. - * - * Jasig licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except in - * compliance with the License. You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * PHP Version 5 - * - * @file CAS/ProxiedService/Exception.php - * @category Authentication - * @package PhpCAS - * @author Adam Franco <afranco@middlebury.edu> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - */ - -/** - * An Exception for problems communicating with a proxied service. - * - * @class CAS_ProxiedService_Exception - * @category Authentication - * @package PhpCAS - * @author Adam Franco <afranco@middlebury.edu> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - */ -class CAS_ProxiedService_Exception -extends Exception -implements CAS_Exception -{ - -} -?> diff --git a/apps/maarch_entreprise/tools/phpCAS/source/CAS/ProxiedService/Http.php b/apps/maarch_entreprise/tools/phpCAS/source/CAS/ProxiedService/Http.php deleted file mode 100755 index 7c9824fabc1718e5115cb128ab1fbba969a02a7f..0000000000000000000000000000000000000000 --- a/apps/maarch_entreprise/tools/phpCAS/source/CAS/ProxiedService/Http.php +++ /dev/null @@ -1,91 +0,0 @@ -<?php - -/** - * Licensed to Jasig under one or more contributor license - * agreements. See the NOTICE file distributed with this work for - * additional information regarding copyright ownership. - * - * Jasig licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except in - * compliance with the License. You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * PHP Version 5 - * - * @file CAS/ProxiedService/Http.php - * @category Authentication - * @package PhpCAS - * @author Adam Franco <afranco@middlebury.edu> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - */ - -/** - * This interface defines methods that clients should use for configuring, sending, - * and receiving proxied HTTP requests. - * - * @class CAS_ProxiedService_Http - * @category Authentication - * @package PhpCAS - * @author Adam Franco <afranco@middlebury.edu> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - */ -interface CAS_ProxiedService_Http -{ - - /********************************************************* - * Configure the Request - *********************************************************/ - - /** - * Set the URL of the Request - * - * @param string $url Url to set - * - * @return void - * @throws CAS_OutOfSequenceException If called after the Request has been sent. - */ - public function setUrl ($url); - - /********************************************************* - * 2. Send the Request - *********************************************************/ - - /** - * Perform the request. - * - * @return bool TRUE on success, FALSE on failure. - * @throws CAS_OutOfSequenceException If called multiple times. - */ - public function send (); - - /********************************************************* - * 3. Access the response - *********************************************************/ - - /** - * Answer the headers of the response. - * - * @return array An array of header strings. - * @throws CAS_OutOfSequenceException If called before the Request has been sent. - */ - public function getResponseHeaders (); - - /** - * Answer the body of response. - * - * @return string - * @throws CAS_OutOfSequenceException If called before the Request has been sent. - */ - public function getResponseBody (); - -} -?> diff --git a/apps/maarch_entreprise/tools/phpCAS/source/CAS/ProxiedService/Http/Abstract.php b/apps/maarch_entreprise/tools/phpCAS/source/CAS/ProxiedService/Http/Abstract.php deleted file mode 100755 index abeddf8bed0092ab1b0a221e10fe00f4fad24082..0000000000000000000000000000000000000000 --- a/apps/maarch_entreprise/tools/phpCAS/source/CAS/ProxiedService/Http/Abstract.php +++ /dev/null @@ -1,360 +0,0 @@ -<?php - -/** - * Licensed to Jasig under one or more contributor license - * agreements. See the NOTICE file distributed with this work for - * additional information regarding copyright ownership. - * - * Jasig licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except in - * compliance with the License. You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * PHP Version 5 - * - * @file CAS/ProxiedService/Http/Abstract.php - * @category Authentication - * @package PhpCAS - * @author Adam Franco <afranco@middlebury.edu> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - */ - -/** - * This class implements common methods for ProxiedService implementations included - * with phpCAS. - * - * @class CAS_ProxiedService_Http_Abstract - * @category Authentication - * @package PhpCAS - * @author Adam Franco <afranco@middlebury.edu> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - */ -abstract class CAS_ProxiedService_Http_Abstract extends -CAS_ProxiedService_Abstract implements CAS_ProxiedService_Http -{ - /** - * The HTTP request mechanism talking to the target service. - * - * @var CAS_Request_RequestInterface $requestHandler - */ - protected $requestHandler; - - /** - * The storage mechanism for cookies set by the target service. - * - * @var CAS_CookieJar $_cookieJar - */ - private $_cookieJar; - - /** - * Constructor. - * - * @param CAS_Request_RequestInterface $requestHandler request handler object - * @param CAS_CookieJar $cookieJar cookieJar object - * - * @return void - */ - public function __construct(CAS_Request_RequestInterface $requestHandler, - CAS_CookieJar $cookieJar - ) { - $this->requestHandler = $requestHandler; - $this->_cookieJar = $cookieJar; - } - - /** - * The target service url. - * @var string $_url; - */ - private $_url; - - /** - * Answer a service identifier (URL) for whom we should fetch a proxy ticket. - * - * @return string - * @throws Exception If no service url is available. - */ - public function getServiceUrl() - { - if (empty($this->_url)) { - throw new CAS_ProxiedService_Exception( - 'No URL set via ' . get_class($this) . '->setUrl($url).' - ); - } - - return $this->_url; - } - - /********************************************************* - * Configure the Request - *********************************************************/ - - /** - * Set the URL of the Request - * - * @param string $url url to set - * - * @return void - * @throws CAS_OutOfSequenceException If called after the Request has been sent. - */ - public function setUrl($url) - { - if ($this->hasBeenSent()) { - throw new CAS_OutOfSequenceException( - 'Cannot set the URL, request already sent.' - ); - } - if (!is_string($url)) { - throw new CAS_InvalidArgumentException('$url must be a string.'); - } - - $this->_url = $url; - } - - /********************************************************* - * 2. Send the Request - *********************************************************/ - - /** - * Perform the request. - * - * @return void - * @throws CAS_OutOfSequenceException If called multiple times. - * @throws CAS_ProxyTicketException If there is a proxy-ticket failure. - * The code of the Exception will be one of: - * PHPCAS_SERVICE_PT_NO_SERVER_RESPONSE - * PHPCAS_SERVICE_PT_BAD_SERVER_RESPONSE - * PHPCAS_SERVICE_PT_FAILURE - * @throws CAS_ProxiedService_Exception If there is a failure sending the - * request to the target service. - */ - public function send() - { - if ($this->hasBeenSent()) { - throw new CAS_OutOfSequenceException( - 'Cannot send, request already sent.' - ); - } - - phpCAS::traceBegin(); - - // Get our proxy ticket and append it to our URL. - $this->initializeProxyTicket(); - $url = $this->getServiceUrl(); - if (strstr($url, '?') === false) { - $url = $url . '?ticket=' . $this->getProxyTicket(); - } else { - $url = $url . '&ticket=' . $this->getProxyTicket(); - } - - try { - $this->makeRequest($url); - } catch (Exception $e) { - phpCAS::traceEnd(); - throw $e; - } - } - - /** - * Indicator of the number of requests (including redirects performed. - * - * @var int $_numRequests; - */ - private $_numRequests = 0; - - /** - * The response headers. - * - * @var array $_responseHeaders; - */ - private $_responseHeaders = array(); - - /** - * The response status code. - * - * @var string $_responseStatusCode; - */ - private $_responseStatusCode = ''; - - /** - * The response headers. - * - * @var string $_responseBody; - */ - private $_responseBody = ''; - - /** - * Build and perform a request, following redirects - * - * @param string $url url for the request - * - * @return void - * @throws CAS_ProxyTicketException If there is a proxy-ticket failure. - * The code of the Exception will be one of: - * PHPCAS_SERVICE_PT_NO_SERVER_RESPONSE - * PHPCAS_SERVICE_PT_BAD_SERVER_RESPONSE - * PHPCAS_SERVICE_PT_FAILURE - * @throws CAS_ProxiedService_Exception If there is a failure sending the - * request to the target service. - */ - protected function makeRequest($url) - { - // Verify that we are not in a redirect loop - $this->_numRequests++; - if ($this->_numRequests > 4) { - $message = 'Exceeded the maximum number of redirects (3) in proxied service request.'; - phpCAS::trace($message); - throw new CAS_ProxiedService_Exception($message); - } - - // Create a new request. - $request = clone $this->requestHandler; - $request->setUrl($url); - - // Add any cookies to the request. - $request->addCookies($this->_cookieJar->getCookies($url)); - - // Add any other parts of the request needed by concrete classes - $this->populateRequest($request); - - // Perform the request. - phpCAS::trace('Performing proxied service request to \'' . $url . '\''); - if (!$request->send()) { - $message = 'Could not perform proxied service request to URL`' - . $url . '\'. ' . $request->getErrorMessage(); - phpCAS::trace($message); - throw new CAS_ProxiedService_Exception($message); - } - - // Store any cookies from the response; - $this->_cookieJar->storeCookies($url, $request->getResponseHeaders()); - - // Follow any redirects - if ($redirectUrl = $this->getRedirectUrl($request->getResponseHeaders()) - ) { - phpCAS::trace('Found redirect:' . $redirectUrl); - $this->makeRequest($redirectUrl); - } else { - - $this->_responseHeaders = $request->getResponseHeaders(); - $this->_responseBody = $request->getResponseBody(); - $this->_responseStatusCode = $request->getResponseStatusCode(); - } - } - - /** - * Add any other parts of the request needed by concrete classes - * - * @param CAS_Request_RequestInterface $request request interface object - * - * @return void - */ - abstract protected function populateRequest( - CAS_Request_RequestInterface $request - ); - - /** - * Answer a redirect URL if a redirect header is found, otherwise null. - * - * @param array $responseHeaders response header to extract a redirect from - * - * @return string or null - */ - protected function getRedirectUrl(array $responseHeaders) - { - // Check for the redirect after authentication - foreach ($responseHeaders as $header) { - if ( preg_match('/^(Location:|URI:)\s*([^\s]+.*)$/', $header, $matches) - ) { - return trim(array_pop($matches)); - } - } - return null; - } - - /********************************************************* - * 3. Access the response - *********************************************************/ - - /** - * Answer true if our request has been sent yet. - * - * @return bool - */ - protected function hasBeenSent() - { - return ($this->_numRequests > 0); - } - - /** - * Answer the headers of the response. - * - * @return array An array of header strings. - * @throws CAS_OutOfSequenceException If called before the Request has been sent. - */ - public function getResponseHeaders() - { - if (!$this->hasBeenSent()) { - throw new CAS_OutOfSequenceException( - 'Cannot access response, request not sent yet.' - ); - } - - return $this->_responseHeaders; - } - - /** - * Answer HTTP status code of the response - * - * @return int - * @throws CAS_OutOfSequenceException If called before the Request has been sent. - */ - public function getResponseStatusCode() - { - if (!$this->hasBeenSent()) { - throw new CAS_OutOfSequenceException( - 'Cannot access response, request not sent yet.' - ); - } - - return $this->_responseStatusCode; - } - - /** - * Answer the body of response. - * - * @return string - * @throws CAS_OutOfSequenceException If called before the Request has been sent. - */ - public function getResponseBody() - { - if (!$this->hasBeenSent()) { - throw new CAS_OutOfSequenceException( - 'Cannot access response, request not sent yet.' - ); - } - - return $this->_responseBody; - } - - /** - * Answer the cookies from the response. This may include cookies set during - * redirect responses. - * - * @return array An array containing cookies. E.g. array('name' => 'val'); - */ - public function getCookies() - { - return $this->_cookieJar->getCookies($this->getServiceUrl()); - } - -} -?> diff --git a/apps/maarch_entreprise/tools/phpCAS/source/CAS/ProxiedService/Http/Get.php b/apps/maarch_entreprise/tools/phpCAS/source/CAS/ProxiedService/Http/Get.php deleted file mode 100755 index 78e35de16f13cc77d3228c07cfb4b11f3b6b47dd..0000000000000000000000000000000000000000 --- a/apps/maarch_entreprise/tools/phpCAS/source/CAS/ProxiedService/Http/Get.php +++ /dev/null @@ -1,85 +0,0 @@ -<?php - -/** - * Licensed to Jasig under one or more contributor license - * agreements. See the NOTICE file distributed with this work for - * additional information regarding copyright ownership. - * - * Jasig licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except in - * compliance with the License. You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * PHP Version 5 - * - * @file CAS/ProxiedService/Http/Get.php - * @category Authentication - * @package PhpCAS - * @author Adam Franco <afranco@middlebury.edu> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - */ - -/** - * This class is used to make proxied service requests via the HTTP GET method. - * - * Usage Example: - * - * try { - * $service = phpCAS::getProxiedService(PHPCAS_PROXIED_SERVICE_HTTP_GET); - * $service->setUrl('http://www.example.com/path/'); - * $service->send(); - * if ($service->getResponseStatusCode() == 200) - * return $service->getResponseBody(); - * else - * // The service responded with an error code 404, 500, etc. - * throw new Exception('The service responded with an error.'); - * - * } catch (CAS_ProxyTicketException $e) { - * if ($e->getCode() == PHPCAS_SERVICE_PT_FAILURE) - * return "Your login has timed out. You need to log in again."; - * else - * // Other proxy ticket errors are from bad request format - * // (shouldn't happen) or CAS server failure (unlikely) - * // so lets just stop if we hit those. - * throw $e; - * } catch (CAS_ProxiedService_Exception $e) { - * // Something prevented the service request from being sent or received. - * // We didn't even get a valid error response (404, 500, etc), so this - * // might be caused by a network error or a DNS resolution failure. - * // We could handle it in some way, but for now we will just stop. - * throw $e; - * } - * - * @class CAS_ProxiedService_Http_Get - * @category Authentication - * @package PhpCAS - * @author Adam Franco <afranco@middlebury.edu> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - */ -class CAS_ProxiedService_Http_Get -extends CAS_ProxiedService_Http_Abstract -{ - - /** - * Add any other parts of the request needed by concrete classes - * - * @param CAS_Request_RequestInterface $request request interface - * - * @return void - */ - protected function populateRequest (CAS_Request_RequestInterface $request) - { - // do nothing, since the URL has already been sent and that is our - // only data. - } -} -?> diff --git a/apps/maarch_entreprise/tools/phpCAS/source/CAS/ProxiedService/Http/Post.php b/apps/maarch_entreprise/tools/phpCAS/source/CAS/ProxiedService/Http/Post.php deleted file mode 100755 index 7d4ecd3c0301cc023985733e5f9dc7c94c3f2562..0000000000000000000000000000000000000000 --- a/apps/maarch_entreprise/tools/phpCAS/source/CAS/ProxiedService/Http/Post.php +++ /dev/null @@ -1,152 +0,0 @@ -<?php - -/** - * Licensed to Jasig under one or more contributor license - * agreements. See the NOTICE file distributed with this work for - * additional information regarding copyright ownership. - * - * Jasig licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except in - * compliance with the License. You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * PHP Version 5 - * - * @file CAS/ProxiedService/Http/Post.php - * @category Authentication - * @package PhpCAS - * @author Adam Franco <afranco@middlebury.edu> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - */ - -/** - * This class is used to make proxied service requests via the HTTP POST method. - * - * Usage Example: - * - * try { - * $service = phpCAS::getProxiedService(PHPCAS_PROXIED_SERVICE_HTTP_POST); - * $service->setUrl('http://www.example.com/path/'); - * $service->setContentType('text/xml'); - * $service->setBody('<?xml version="1.0"?'.'><methodCall><methodName>example.search</methodName></methodCall>'); - * $service->send(); - * if ($service->getResponseStatusCode() == 200) - * return $service->getResponseBody(); - * else - * // The service responded with an error code 404, 500, etc. - * throw new Exception('The service responded with an error.'); - * - * } catch (CAS_ProxyTicketException $e) { - * if ($e->getCode() == PHPCAS_SERVICE_PT_FAILURE) - * return "Your login has timed out. You need to log in again."; - * else - * // Other proxy ticket errors are from bad request format - * // (shouldn't happen) or CAS server failure (unlikely) so lets just - * // stop if we hit those. - * throw $e; - * } catch (CAS_ProxiedService_Exception $e) { - * // Something prevented the service request from being sent or received. - * // We didn't even get a valid error response (404, 500, etc), so this - * // might be caused by a network error or a DNS resolution failure. - * // We could handle it in some way, but for now we will just stop. - * throw $e; - * } - * - * @class CAS_ProxiedService_Http_Post - * @category Authentication - * @package PhpCAS - * @author Adam Franco <afranco@middlebury.edu> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - */ -class CAS_ProxiedService_Http_Post -extends CAS_ProxiedService_Http_Abstract -{ - - /** - * The content-type of this request - * - * @var string $_contentType - */ - private $_contentType; - - /** - * The body of the this request - * - * @var string $_body - */ - private $_body; - - /** - * Set the content type of this POST request. - * - * @param string $contentType content type - * - * @return void - * @throws CAS_OutOfSequenceException If called after the Request has been sent. - */ - public function setContentType ($contentType) - { - if ($this->hasBeenSent()) { - throw new CAS_OutOfSequenceException( - 'Cannot set the content type, request already sent.' - ); - } - - $this->_contentType = $contentType; - } - - /** - * Set the body of this POST request. - * - * @param string $body body to set - * - * @return void - * @throws CAS_OutOfSequenceException If called after the Request has been sent. - */ - public function setBody ($body) - { - if ($this->hasBeenSent()) { - throw new CAS_OutOfSequenceException( - 'Cannot set the body, request already sent.' - ); - } - - $this->_body = $body; - } - - /** - * Add any other parts of the request needed by concrete classes - * - * @param CAS_Request_RequestInterface $request request interface class - * - * @return void - */ - protected function populateRequest (CAS_Request_RequestInterface $request) - { - if (empty($this->_contentType) && !empty($this->_body)) { - throw new CAS_ProxiedService_Exception( - "If you pass a POST body, you must specify a content type via " - .get_class($this).'->setContentType($contentType).' - ); - } - - $request->makePost(); - if (!empty($this->_body)) { - $request->addHeader('Content-Type: '.$this->_contentType); - $request->addHeader('Content-Length: '.strlen($this->_body)); - $request->setPostBody($this->_body); - } - } - - -} -?> diff --git a/apps/maarch_entreprise/tools/phpCAS/source/CAS/ProxiedService/Imap.php b/apps/maarch_entreprise/tools/phpCAS/source/CAS/ProxiedService/Imap.php deleted file mode 100755 index 847da28c106d149911376399a9a8a233f8a8649b..0000000000000000000000000000000000000000 --- a/apps/maarch_entreprise/tools/phpCAS/source/CAS/ProxiedService/Imap.php +++ /dev/null @@ -1,280 +0,0 @@ -<?php - -/** - * Licensed to Jasig under one or more contributor license - * agreements. See the NOTICE file distributed with this work for - * additional information regarding copyright ownership. - * - * Jasig licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except in - * compliance with the License. You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * PHP Version 5 - * - * @file CAS/ProxiedService/Imap.php - * @category Authentication - * @package PhpCAS - * @author Adam Franco <afranco@middlebury.edu> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - */ - -/** - * Provides access to a proxy-authenticated IMAP stream - * - * @class CAS_ProxiedService_Imap - * @category Authentication - * @package PhpCAS - * @author Adam Franco <afranco@middlebury.edu> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - */ -class CAS_ProxiedService_Imap -extends CAS_ProxiedService_Abstract -{ - - /** - * The username to send via imap_open. - * - * @var string $_username; - */ - private $_username; - - /** - * Constructor. - * - * @param string $username Username - * - * @return void - */ - public function __construct ($username) - { - if (!is_string($username) || !strlen($username)) { - throw new CAS_InvalidArgumentException('Invalid username.'); - } - - $this->_username = $username; - } - - /** - * The target service url. - * @var string $_url; - */ - private $_url; - - /** - * Answer a service identifier (URL) for whom we should fetch a proxy ticket. - * - * @return string - * @throws Exception If no service url is available. - */ - public function getServiceUrl () - { - if (empty($this->_url)) { - throw new CAS_ProxiedService_Exception( - 'No URL set via '.get_class($this).'->getServiceUrl($url).' - ); - } - - return $this->_url; - } - - /********************************************************* - * Configure the Stream - *********************************************************/ - - /** - * Set the URL of the service to pass to CAS for proxy-ticket retrieval. - * - * @param string $url Url to set - * - * @return void - * @throws CAS_OutOfSequenceException If called after the stream has been opened. - */ - public function setServiceUrl ($url) - { - if ($this->hasBeenOpened()) { - throw new CAS_OutOfSequenceException( - 'Cannot set the URL, stream already opened.' - ); - } - if (!is_string($url) || !strlen($url)) { - throw new CAS_InvalidArgumentException('Invalid url.'); - } - - $this->_url = $url; - } - - /** - * The mailbox to open. See the $mailbox parameter of imap_open(). - * - * @var string $_mailbox - */ - private $_mailbox; - - /** - * Set the mailbox to open. See the $mailbox parameter of imap_open(). - * - * @param string $mailbox Mailbox to set - * - * @return void - * @throws CAS_OutOfSequenceException If called after the stream has been opened. - */ - public function setMailbox ($mailbox) - { - if ($this->hasBeenOpened()) { - throw new CAS_OutOfSequenceException( - 'Cannot set the mailbox, stream already opened.' - ); - } - if (!is_string($mailbox) || !strlen($mailbox)) { - throw new CAS_InvalidArgumentException('Invalid mailbox.'); - } - - $this->_mailbox = $mailbox; - } - - /** - * A bit mask of options to pass to imap_open() as the $options parameter. - * - * @var int $_options - */ - private $_options = null; - - /** - * Set the options for opening the stream. See the $options parameter of - * imap_open(). - * - * @param int $options Options for the stream - * - * @return void - * @throws CAS_OutOfSequenceException If called after the stream has been opened. - */ - public function setOptions ($options) - { - if ($this->hasBeenOpened()) { - throw new CAS_OutOfSequenceException( - 'Cannot set options, stream already opened.' - ); - } - if (!is_int($options)) { - throw new CAS_InvalidArgumentException('Invalid options.'); - } - - $this->_options = $options; - } - - /********************************************************* - * 2. Open the stream - *********************************************************/ - - /** - * Open the IMAP stream (similar to imap_open()). - * - * @return resource Returns an IMAP stream on success - * @throws CAS_OutOfSequenceException If called multiple times. - * @throws CAS_ProxyTicketException If there is a proxy-ticket failure. - * The code of the Exception will be one of: - * PHPCAS_SERVICE_PT_NO_SERVER_RESPONSE - * PHPCAS_SERVICE_PT_BAD_SERVER_RESPONSE - * PHPCAS_SERVICE_PT_FAILURE - * @throws CAS_ProxiedService_Exception If there is a failure sending the - * request to the target service. - */ - public function open () - { - if ($this->hasBeenOpened()) { - throw new CAS_OutOfSequenceException('Stream already opened.'); - } - if (empty($this->_mailbox)) { - throw new CAS_ProxiedService_Exception( - 'You must specify a mailbox via '.get_class($this) - .'->setMailbox($mailbox)' - ); - } - - phpCAS::traceBegin(); - - // Get our proxy ticket and append it to our URL. - $this->initializeProxyTicket(); - phpCAS::trace('opening IMAP mailbox `'.$this->_mailbox.'\'...'); - $this->_stream = @imap_open( - $this->_mailbox, $this->_username, $this->getProxyTicket(), - $this->_options - ); - if ($this->_stream) { - phpCAS::trace('ok'); - } else { - phpCAS::trace('could not open mailbox'); - // @todo add localization integration. - $message = 'IMAP Error: '.$this->_url.' '. var_export(imap_errors(), true); - phpCAS::trace($message); - throw new CAS_ProxiedService_Exception($message); - } - - phpCAS::traceEnd(); - return $this->_stream; - } - - /** - * Answer true if our request has been sent yet. - * - * @return bool - */ - protected function hasBeenOpened () - { - return !empty($this->_stream); - } - - /********************************************************* - * 3. Access the result - *********************************************************/ - /** - * The IMAP stream - * - * @var resource $_stream - */ - private $_stream; - - /** - * Answer the IMAP stream - * - * @return resource - */ - public function getStream () - { - if (!$this->hasBeenOpened()) { - throw new CAS_OutOfSequenceException( - 'Cannot access stream, not opened yet.' - ); - } - return $this->_stream; - } - - /** - * CAS_Client::serviceMail() needs to return the proxy ticket for some reason, - * so this method provides access to it. - * - * @return string - * @throws CAS_OutOfSequenceException If called before the stream has been - * opened. - */ - public function getImapProxyTicket () - { - if (!$this->hasBeenOpened()) { - throw new CAS_OutOfSequenceException( - 'Cannot access errors, stream not opened yet.' - ); - } - return $this->getProxyTicket(); - } -} -?> diff --git a/apps/maarch_entreprise/tools/phpCAS/source/CAS/ProxiedService/Testable.php b/apps/maarch_entreprise/tools/phpCAS/source/CAS/ProxiedService/Testable.php deleted file mode 100755 index 51f07676276bff6b1dcbc54ad00c64007224e3cb..0000000000000000000000000000000000000000 --- a/apps/maarch_entreprise/tools/phpCAS/source/CAS/ProxiedService/Testable.php +++ /dev/null @@ -1,75 +0,0 @@ -<?php - -/** - * Licensed to Jasig under one or more contributor license - * agreements. See the NOTICE file distributed with this work for - * additional information regarding copyright ownership. - * - * Jasig licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except in - * compliance with the License. You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * PHP Version 5 - * - * @file CAS/ProxiedService/Testabel.php - * @category Authentication - * @package PhpCAS - * @author Adam Franco <afranco@middlebury.edu> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - */ - -/** - * This interface defines methods that allow proxy-authenticated service handlers - * to be tested in unit tests. - * - * Classes implementing this interface SHOULD store the CAS_Client passed and - * initialize themselves with that client rather than via the static phpCAS - * method. For example: - * - * / ** - * * Fetch our proxy ticket. - * * / - * protected function initializeProxyTicket() { - * // Allow usage of a particular CAS_Client for unit testing. - * if (is_null($this->casClient)) - * phpCAS::initializeProxiedService($this); - * else - * $this->casClient->initializeProxiedService($this); - * } - * - * @class CAS_ProxiedService_Testabel - * @category Authentication - * @package PhpCAS - * @author Adam Franco <afranco@middlebury.edu> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - */ -interface CAS_ProxiedService_Testable -{ - - /** - * Use a particular CAS_Client->initializeProxiedService() rather than the - * static phpCAS::initializeProxiedService(). - * - * This method should not be called in standard operation, but is needed for unit - * testing. - * - * @param CAS_Client $casClient Cas client object - * - * @return void - * @throws CAS_OutOfSequenceException If called after a proxy ticket has - * already been initialized/set. - */ - public function setCasClient (CAS_Client $casClient); - -} -?> diff --git a/apps/maarch_entreprise/tools/phpCAS/source/CAS/ProxyChain.php b/apps/maarch_entreprise/tools/phpCAS/source/CAS/ProxyChain.php deleted file mode 100755 index 2594d141e51d5268e7312cf56d97eb24d1e4ee3d..0000000000000000000000000000000000000000 --- a/apps/maarch_entreprise/tools/phpCAS/source/CAS/ProxyChain.php +++ /dev/null @@ -1,127 +0,0 @@ -<?php - -/** - * Licensed to Jasig under one or more contributor license - * agreements. See the NOTICE file distributed with this work for - * additional information regarding copyright ownership. - * - * Jasig licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except in - * compliance with the License. You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * PHP Version 5 - * - * @file CAS/ProxyChain.php - * @category Authentication - * @package PhpCAS - * @author Adam Franco <afranco@middlebury.edu> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - */ - -/** - * A normal proxy-chain definition that lists each level of the chain as either - * a string or regular expression. - * - * @class CAS_ProxyChain - * @category Authentication - * @package PhpCAS - * @author Adam Franco <afranco@middlebury.edu> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - */ - -class CAS_ProxyChain -implements CAS_ProxyChain_Interface -{ - - protected $chain = array(); - - /** - * A chain is an array of strings or regexp strings that will be matched - * against. Regexp will be matched with preg_match and strings will be - * matched from the beginning. A string must fully match the beginning of - * an proxy url. So you can define a full domain as acceptable or go further - * down. - * Proxies have to be defined in reverse from the service to the user. If a - * user hits service A get proxied via B to service C the list of acceptable - * proxies on C would be array(B,A); - * - * @param array $chain A chain of proxies - */ - public function __construct(array $chain) - { - // Ensure that we have an indexed array - $this->chain = array_values($chain); - } - - /** - * Match a list of proxies. - * - * @param array $list The list of proxies in front of this service. - * - * @return bool - */ - public function matches(array $list) - { - $list = array_values($list); // Ensure that we have an indexed array - if ($this->isSizeValid($list)) { - $mismatch = false; - foreach ($this->chain as $i => $search) { - $proxy_url = $list[$i]; - if (preg_match('/^\/.*\/[ixASUXu]*$/s', $search)) { - if (preg_match($search, $proxy_url)) { - phpCAS::trace( - "Found regexp " . $search . " matching " . $proxy_url - ); - } else { - phpCAS::trace( - "No regexp match " . $search . " != " . $proxy_url - ); - $mismatch = true; - break; - } - } else { - if (strncasecmp($search, $proxy_url, strlen($search)) == 0) { - phpCAS::trace( - "Found string " . $search . " matching " . $proxy_url - ); - } else { - phpCAS::trace( - "No match " . $search . " != " . $proxy_url - ); - $mismatch = true; - break; - } - } - } - if (!$mismatch) { - phpCAS::trace("Proxy chain matches"); - return true; - } - } else { - phpCAS::trace("Proxy chain skipped: size mismatch"); - } - return false; - } - - /** - * Validate the size of the the list as compared to our chain. - * - * @param array $list List of proxies - * - * @return bool - */ - protected function isSizeValid (array $list) - { - return (sizeof($this->chain) == sizeof($list)); - } -} diff --git a/apps/maarch_entreprise/tools/phpCAS/source/CAS/ProxyChain/AllowedList.php b/apps/maarch_entreprise/tools/phpCAS/source/CAS/ProxyChain/AllowedList.php deleted file mode 100755 index 62d196ab7f78f4b6d55e0345630850bdbdf9b18c..0000000000000000000000000000000000000000 --- a/apps/maarch_entreprise/tools/phpCAS/source/CAS/ProxyChain/AllowedList.php +++ /dev/null @@ -1,119 +0,0 @@ -<?php - -/** - * Licensed to Jasig under one or more contributor license - * agreements. See the NOTICE file distributed with this work for - * additional information regarding copyright ownership. - * - * Jasig licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except in - * compliance with the License. You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * PHP Version 5 - * - * @file CAS/ProxyChain/AllowedList.php - * @category Authentication - * @package PhpCAS - * @author Adam Franco <afranco@middlebury.edu> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - */ - - -/** - * ProxyChain is a container for storing chains of valid proxies that can - * be used to validate proxied requests to a service - * - * @class CAS_ProxyChain_AllowedList - * @category Authentication - * @package PhpCAS - * @author Adam Franco <afranco@middlebury.edu> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - */ - -class CAS_ProxyChain_AllowedList -{ - - private $_chains = array(); - - /** - * Check whether proxies are allowed by configuration - * - * @return bool - */ - public function isProxyingAllowed() - { - return (count($this->_chains) > 0); - } - - /** - * Add a chain of proxies to the list of possible chains - * - * @param CAS_ProxyChain_Interface $chain A chain of proxies - * - * @return void - */ - public function allowProxyChain(CAS_ProxyChain_Interface $chain) - { - $this->_chains[] = $chain; - } - - /** - * Check if the proxies found in the response match the allowed proxies - * - * @param array $proxies list of proxies to check - * - * @return bool whether the proxies match the allowed proxies - */ - public function isProxyListAllowed(array $proxies) - { - phpCAS::traceBegin(); - if (empty($proxies)) { - phpCAS::trace("No proxies were found in the response"); - phpCAS::traceEnd(true); - return true; - } elseif (!$this->isProxyingAllowed()) { - phpCAS::trace("Proxies are not allowed"); - phpCAS::traceEnd(false); - return false; - } else { - $res = $this->contains($proxies); - phpCAS::traceEnd($res); - return $res; - } - } - - /** - * Validate the proxies from the proxy ticket validation against the - * chains that were definded. - * - * @param array $list List of proxies from the proxy ticket validation. - * - * @return if any chain fully matches the supplied list - */ - public function contains(array $list) - { - phpCAS::traceBegin(); - $count = 0; - foreach ($this->_chains as $chain) { - phpCAS::trace("Checking chain ". $count++); - if ($chain->matches($list)) { - phpCAS::traceEnd(true); - return true; - } - } - phpCAS::trace("No proxy chain matches."); - phpCAS::traceEnd(false); - return false; - } -} -?> diff --git a/apps/maarch_entreprise/tools/phpCAS/source/CAS/ProxyChain/Any.php b/apps/maarch_entreprise/tools/phpCAS/source/CAS/ProxyChain/Any.php deleted file mode 100755 index 0cd92f74e969cd632a784463672881357da0e554..0000000000000000000000000000000000000000 --- a/apps/maarch_entreprise/tools/phpCAS/source/CAS/ProxyChain/Any.php +++ /dev/null @@ -1,64 +0,0 @@ -<?php - -/** - * Licensed to Jasig under one or more contributor license - * agreements. See the NOTICE file distributed with this work for - * additional information regarding copyright ownership. - * - * Jasig licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except in - * compliance with the License. You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * PHP Version 5 - * - * @file CAS/ProxyChain/Any.php - * @category Authentication - * @package PhpCAS - * @author Adam Franco <afranco@middlebury.edu> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - */ - -/** - * A proxy-chain definition that will match any list of proxies. - * - * Use this class for quick testing or in certain production screnarios you - * might want to allow allow any other valid service to proxy your service. - * - * THIS CLASS IS HOWEVER NOT RECOMMENDED FOR PRODUCTION AND HAS SECURITY - * IMPLICATIONS: YOU ARE ALLOWING ANY SERVICE TO ACT ON BEHALF OF A USER - * ON THIS SERVICE. - * - * @class CAS_ProxyChain_Any - * @category Authentication - * @package PhpCAS - * @author Adam Franco <afranco@middlebury.edu> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - */ -class CAS_ProxyChain_Any -implements CAS_ProxyChain_Interface -{ - - /** - * Match a list of proxies. - * - * @param array $list The list of proxies in front of this service. - * - * @return bool - */ - public function matches(array $list) - { - phpCAS::trace("Using CAS_ProxyChain_Any. No proxy validation is performed."); - return true; - } - -} diff --git a/apps/maarch_entreprise/tools/phpCAS/source/CAS/ProxyChain/Interface.php b/apps/maarch_entreprise/tools/phpCAS/source/CAS/ProxyChain/Interface.php deleted file mode 100755 index d247115db3af43629f291530c09e86de640b0824..0000000000000000000000000000000000000000 --- a/apps/maarch_entreprise/tools/phpCAS/source/CAS/ProxyChain/Interface.php +++ /dev/null @@ -1,53 +0,0 @@ -<?php - -/** - * Licensed to Jasig under one or more contributor license - * agreements. See the NOTICE file distributed with this work for - * additional information regarding copyright ownership. - * - * Jasig licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except in - * compliance with the License. You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * PHP Version 5 - * - * @file CAS/ProxyChain/Interface.php - * @category Authentication - * @package PhpCAS - * @author Adam Franco <afranco@middlebury.edu> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - */ - -/** - * An interface for classes that define a list of allowed proxies in front of - * the current application. - * - * @class CAS_ProxyChain_Interface - * @category Authentication - * @package PhpCAS - * @author Adam Franco <afranco@middlebury.edu> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - */ -interface CAS_ProxyChain_Interface -{ - - /** - * Match a list of proxies. - * - * @param array $list The list of proxies in front of this service. - * - * @return bool - */ - public function matches(array $list); - -} \ No newline at end of file diff --git a/apps/maarch_entreprise/tools/phpCAS/source/CAS/ProxyChain/Trusted.php b/apps/maarch_entreprise/tools/phpCAS/source/CAS/ProxyChain/Trusted.php deleted file mode 100755 index 7fa6129677a28d00d507e7484687e1cc29e59199..0000000000000000000000000000000000000000 --- a/apps/maarch_entreprise/tools/phpCAS/source/CAS/ProxyChain/Trusted.php +++ /dev/null @@ -1,59 +0,0 @@ -<?php - -/** - * Licensed to Jasig under one or more contributor license - * agreements. See the NOTICE file distributed with this work for - * additional information regarding copyright ownership. - * - * Jasig licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except in - * compliance with the License. You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * PHP Version 5 - * - * @file CAS/ProxyChain/Trusted.php - * @category Authentication - * @package PhpCAS - * @author Adam Franco <afranco@middlebury.edu> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - */ - -/** - * A proxy-chain definition that defines a chain up to a trusted proxy and - * delegates the resposibility of validating the rest of the chain to that - * trusted proxy. - * - * @class CAS_ProxyChain_Trusted - * @category Authentication - * @package PhpCAS - * @author Adam Franco <afranco@middlebury.edu> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - */ -class CAS_ProxyChain_Trusted -extends CAS_ProxyChain -implements CAS_ProxyChain_Interface -{ - - /** - * Validate the size of the the list as compared to our chain. - * - * @param array $list list of proxies - * - * @return bool - */ - protected function isSizeValid (array $list) - { - return (sizeof($this->chain) <= sizeof($list)); - } - -} diff --git a/apps/maarch_entreprise/tools/phpCAS/source/CAS/ProxyTicketException.php b/apps/maarch_entreprise/tools/phpCAS/source/CAS/ProxyTicketException.php deleted file mode 100755 index 723304666dc85ecb8b17384f1db1e0f99ea445c2..0000000000000000000000000000000000000000 --- a/apps/maarch_entreprise/tools/phpCAS/source/CAS/ProxyTicketException.php +++ /dev/null @@ -1,71 +0,0 @@ -<?php - -/** - * Licensed to Jasig under one or more contributor license - * agreements. See the NOTICE file distributed with this work for - * additional information regarding copyright ownership. - * - * Jasig licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except in - * compliance with the License. You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * PHP Version 5 - * - * @class CAS/ProxyTicketException.php - * @category Authentication - * @package PhpCAS - * @author Adam Franco <afranco@middlebury.edu> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - * - */ - -/** - * An Exception for errors related to fetching or validating proxy tickets. - * - * @class CAS_ProxyTicketException - * @category Authentication - * @package PhpCAS - * @author Adam Franco <afranco@middlebury.edu> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - */ -class CAS_ProxyTicketException -extends BadMethodCallException -implements CAS_Exception -{ - - /** - * Constructor - * - * @param string $message Message text - * @param int $code Error code - * - * @return void - */ - public function __construct ($message, $code = PHPCAS_SERVICE_PT_FAILURE) - { - // Warn if the code is not in our allowed list - $ptCodes = array( - PHPCAS_SERVICE_PT_FAILURE, - PHPCAS_SERVICE_PT_NO_SERVER_RESPONSE, - PHPCAS_SERVICE_PT_BAD_SERVER_RESPONSE, - ); - if (!in_array($code, $ptCodes)) { - trigger_error( - 'Invalid code '.$code - .' passed. Must be one of PHPCAS_SERVICE_PT_FAILURE, PHPCAS_SERVICE_PT_NO_SERVER_RESPONSE, or PHPCAS_SERVICE_PT_BAD_SERVER_RESPONSE.' - ); - } - - parent::__construct($message, $code); - } -} diff --git a/apps/maarch_entreprise/tools/phpCAS/source/CAS/Request/AbstractRequest.php b/apps/maarch_entreprise/tools/phpCAS/source/CAS/Request/AbstractRequest.php deleted file mode 100755 index f3dd28b72279cd979ddb24e274e705cfceb58c07..0000000000000000000000000000000000000000 --- a/apps/maarch_entreprise/tools/phpCAS/source/CAS/Request/AbstractRequest.php +++ /dev/null @@ -1,379 +0,0 @@ -<?php - -/** - * Licensed to Jasig under one or more contributor license - * agreements. See the NOTICE file distributed with this work for - * additional information regarding copyright ownership. - * - * Jasig licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except in - * compliance with the License. You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * PHP Version 5 - * - * @file CAS/Request/AbstractRequest.php - * @category Authentication - * @package PhpCAS - * @author Adam Franco <afranco@middlebury.edu> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - */ - -/** - * Provides support for performing web-requests via curl - * - * @class CAS_Request_AbstractRequest - * @category Authentication - * @package PhpCAS - * @author Adam Franco <afranco@middlebury.edu> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - */ -abstract class CAS_Request_AbstractRequest -implements CAS_Request_RequestInterface -{ - - protected $url = null; - protected $cookies = array(); - protected $headers = array(); - protected $isPost = false; - protected $postBody = null; - protected $caCertPath = null; - protected $validateCN = true; - private $_sent = false; - private $_responseHeaders = array(); - private $_responseBody = null; - private $_errorMessage = ''; - - /********************************************************* - * Configure the Request - *********************************************************/ - - /** - * Set the URL of the Request - * - * @param string $url Url to set - * - * @return void - * @throws CAS_OutOfSequenceException If called after the Request has been sent. - */ - public function setUrl ($url) - { - if ($this->_sent) { - throw new CAS_OutOfSequenceException( - 'Request has already been sent cannot '.__METHOD__ - ); - } - - $this->url = $url; - } - - /** - * Add a cookie to the request. - * - * @param string $name Name of entry - * @param string $value value of entry - * - * @return void - * @throws CAS_OutOfSequenceException If called after the Request has been sent. - */ - public function addCookie ($name, $value) - { - if ($this->_sent) { - throw new CAS_OutOfSequenceException( - 'Request has already been sent cannot '.__METHOD__ - ); - } - - $this->cookies[$name] = $value; - } - - /** - * Add an array of cookies to the request. - * The cookie array is of the form - * array('cookie_name' => 'cookie_value', 'cookie_name2' => cookie_value2') - * - * @param array $cookies cookies to add - * - * @return void - * @throws CAS_OutOfSequenceException If called after the Request has been sent. - */ - public function addCookies (array $cookies) - { - if ($this->_sent) { - throw new CAS_OutOfSequenceException( - 'Request has already been sent cannot '.__METHOD__ - ); - } - - $this->cookies = array_merge($this->cookies, $cookies); - } - - /** - * Add a header string to the request. - * - * @param string $header Header to add - * - * @return void - * @throws CAS_OutOfSequenceException If called after the Request has been sent. - */ - public function addHeader ($header) - { - if ($this->_sent) { - throw new CAS_OutOfSequenceException( - 'Request has already been sent cannot '.__METHOD__ - ); - } - - $this->headers[] = $header; - } - - /** - * Add an array of header strings to the request. - * - * @param array $headers headers to add - * - * @return void - * @throws CAS_OutOfSequenceException If called after the Request has been sent. - */ - public function addHeaders (array $headers) - { - if ($this->_sent) { - throw new CAS_OutOfSequenceException( - 'Request has already been sent cannot '.__METHOD__ - ); - } - - $this->headers = array_merge($this->headers, $headers); - } - - /** - * Make the request a POST request rather than the default GET request. - * - * @return void - * @throws CAS_OutOfSequenceException If called after the Request has been sent. - */ - public function makePost () - { - if ($this->_sent) { - throw new CAS_OutOfSequenceException( - 'Request has already been sent cannot '.__METHOD__ - ); - } - - $this->isPost = true; - } - - /** - * Add a POST body to the request - * - * @param string $body body to add - * - * @return void - * @throws CAS_OutOfSequenceException If called after the Request has been sent. - */ - public function setPostBody ($body) - { - if ($this->_sent) { - throw new CAS_OutOfSequenceException( - 'Request has already been sent cannot '.__METHOD__ - ); - } - if (!$this->isPost) { - throw new CAS_OutOfSequenceException( - 'Cannot add a POST body to a GET request, use makePost() first.' - ); - } - - $this->postBody = $body; - } - - /** - * Specify the path to an SSL CA certificate to validate the server with. - * - * @param string $caCertPath path to cert - * @param bool $validate_cn valdiate CN of certificate - * - * @return void - * @throws CAS_OutOfSequenceException If called after the Request has been sent. - */ - public function setSslCaCert ($caCertPath,$validate_cn=true) - { - if ($this->_sent) { - throw new CAS_OutOfSequenceException( - 'Request has already been sent cannot '.__METHOD__ - ); - } - $this->caCertPath = $caCertPath; - $this->validateCN = $validate_cn; - } - - /********************************************************* - * 2. Send the Request - *********************************************************/ - - /** - * Perform the request. - * - * @return bool TRUE on success, FALSE on failure. - * @throws CAS_OutOfSequenceException If called multiple times. - */ - public function send () - { - if ($this->_sent) { - throw new CAS_OutOfSequenceException( - 'Request has already been sent cannot send again.' - ); - } - if (is_null($this->url) || !$this->url) { - throw new CAS_OutOfSequenceException( - 'A url must be specified via setUrl() before the request can be sent.' - ); - } - $this->_sent = true; - return $this->sendRequest(); - } - - /** - * Send the request and store the results. - * - * @return bool TRUE on success, FALSE on failure. - */ - abstract protected function sendRequest (); - - /** - * Store the response headers. - * - * @param array $headers headers to store - * - * @return void - */ - protected function storeResponseHeaders (array $headers) - { - $this->_responseHeaders = array_merge($this->_responseHeaders, $headers); - } - - /** - * Store a single response header to our array. - * - * @param string $header header to store - * - * @return void - */ - protected function storeResponseHeader ($header) - { - $this->_responseHeaders[] = $header; - } - - /** - * Store the response body. - * - * @param string $body body to store - * - * @return void - */ - protected function storeResponseBody ($body) - { - $this->_responseBody = $body; - } - - /** - * Add a string to our error message. - * - * @param string $message message to add - * - * @return void - */ - protected function storeErrorMessage ($message) - { - $this->_errorMessage .= $message; - } - - /********************************************************* - * 3. Access the response - *********************************************************/ - - /** - * Answer the headers of the response. - * - * @return array An array of header strings. - * @throws CAS_OutOfSequenceException If called before the Request has been sent. - */ - public function getResponseHeaders () - { - if (!$this->_sent) { - throw new CAS_OutOfSequenceException( - 'Request has not been sent yet. Cannot '.__METHOD__ - ); - } - return $this->_responseHeaders; - } - - /** - * Answer HTTP status code of the response - * - * @return int - * @throws CAS_OutOfSequenceException If called before the Request has been sent. - */ - public function getResponseStatusCode () - { - if (!$this->_sent) { - throw new CAS_OutOfSequenceException( - 'Request has not been sent yet. Cannot '.__METHOD__ - ); - } - - if (!preg_match( - '/HTTP\/[0-9.]+\s+([0-9]+)\s*(.*)/', - $this->_responseHeaders[0], $matches - ) - ) { - throw new CAS_Request_Exception( - 'Bad response, no status code was found in the first line.' - ); - } - - return intval($matches[1]); - } - - /** - * Answer the body of response. - * - * @return string - * @throws CAS_OutOfSequenceException If called before the Request has been sent. - */ - public function getResponseBody () - { - if (!$this->_sent) { - throw new CAS_OutOfSequenceException( - 'Request has not been sent yet. Cannot '.__METHOD__ - ); - } - - return $this->_responseBody; - } - - /** - * Answer a message describing any errors if the request failed. - * - * @return string - * @throws CAS_OutOfSequenceException If called before the Request has been sent. - */ - public function getErrorMessage () - { - if (!$this->_sent) { - throw new CAS_OutOfSequenceException( - 'Request has not been sent yet. Cannot '.__METHOD__ - ); - } - return $this->_errorMessage; - } -} diff --git a/apps/maarch_entreprise/tools/phpCAS/source/CAS/Request/CurlMultiRequest.php b/apps/maarch_entreprise/tools/phpCAS/source/CAS/Request/CurlMultiRequest.php deleted file mode 100755 index 410aba0e6ed09be47875377e1045c7311cd95497..0000000000000000000000000000000000000000 --- a/apps/maarch_entreprise/tools/phpCAS/source/CAS/Request/CurlMultiRequest.php +++ /dev/null @@ -1,146 +0,0 @@ -<?php - -/** - * Licensed to Jasig under one or more contributor license - * agreements. See the NOTICE file distributed with this work for - * additional information regarding copyright ownership. - * - * Jasig licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except in - * compliance with the License. You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * PHP Version 5 - * - * @file CAS/Request/AbstractRequest.php - * @category Authentication - * @package PhpCAS - * @author Adam Franco <afranco@middlebury.edu> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - */ - -/** - * This interface defines a class library for performing multiple web requests - * in batches. Implementations of this interface may perform requests serially - * or in parallel. - * - * @class CAS_Request_CurlMultiRequest - * @category Authentication - * @package PhpCAS - * @author Adam Franco <afranco@middlebury.edu> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - */ -class CAS_Request_CurlMultiRequest -implements CAS_Request_MultiRequestInterface -{ - private $_requests = array(); - private $_sent = false; - - /********************************************************* - * Add Requests - *********************************************************/ - - /** - * Add a new Request to this batch. - * Note, implementations will likely restrict requests to their own concrete - * class hierarchy. - * - * @param CAS_Request_RequestInterface $request reqest to add - * - * @return void - * @throws CAS_OutOfSequenceException If called after the Request has been sent. - * @throws CAS_InvalidArgumentException If passed a Request of the wrong - * implmentation. - */ - public function addRequest (CAS_Request_RequestInterface $request) - { - if ($this->_sent) { - throw new CAS_OutOfSequenceException( - 'Request has already been sent cannot '.__METHOD__ - ); - } - if (!$request instanceof CAS_Request_CurlRequest) { - throw new CAS_InvalidArgumentException( - 'As a CAS_Request_CurlMultiRequest, I can only work with CAS_Request_CurlRequest objects.' - ); - } - - $this->_requests[] = $request; - } - - /** - * Retrieve the number of requests added to this batch. - * - * @return number of request elements - */ - public function getNumRequests() - { - if ($this->_sent) { - throw new CAS_OutOfSequenceException( - 'Request has already been sent cannot '.__METHOD__ - ); - } - return count($this->_requests); - } - - /********************************************************* - * 2. Send the Request - *********************************************************/ - - /** - * Perform the request. After sending, all requests will have their - * responses poulated. - * - * @return bool TRUE on success, FALSE on failure. - * @throws CAS_OutOfSequenceException If called multiple times. - */ - public function send () - { - if ($this->_sent) { - throw new CAS_OutOfSequenceException( - 'Request has already been sent cannot send again.' - ); - } - if (!count($this->_requests)) { - throw new CAS_OutOfSequenceException( - 'At least one request must be added via addRequest() before the multi-request can be sent.' - ); - } - - $this->_sent = true; - - // Initialize our handles and configure all requests. - $handles = array(); - $multiHandle = curl_multi_init(); - foreach ($this->_requests as $i => $request) { - $handle = $request->_initAndConfigure(); - curl_setopt($handle, CURLOPT_RETURNTRANSFER, true); - $handles[$i] = $handle; - curl_multi_add_handle($multiHandle, $handle); - } - - // Execute the requests in parallel. - do { - curl_multi_exec($multiHandle, $running); - } while ($running > 0); - - // Populate all of the responses or errors back into the request objects. - foreach ($this->_requests as $i => $request) { - $buf = curl_multi_getcontent($handles[$i]); - $request->_storeResponseBody($buf); - curl_multi_remove_handle($multiHandle, $handles[$i]); - curl_close($handles[$i]); - } - - curl_multi_close($multiHandle); - } -} diff --git a/apps/maarch_entreprise/tools/phpCAS/source/CAS/Request/CurlRequest.php b/apps/maarch_entreprise/tools/phpCAS/source/CAS/Request/CurlRequest.php deleted file mode 100755 index dd866dc80f71b8c39803a09c8cffb09d2ef9e009..0000000000000000000000000000000000000000 --- a/apps/maarch_entreprise/tools/phpCAS/source/CAS/Request/CurlRequest.php +++ /dev/null @@ -1,200 +0,0 @@ -<?php - -/** - * Licensed to Jasig under one or more contributor license - * agreements. See the NOTICE file distributed with this work for - * additional information regarding copyright ownership. - * - * Jasig licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except in - * compliance with the License. You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * PHP Version 5 - * - * @file CAS/Request/CurlRequest.php - * @category Authentication - * @package PhpCAS - * @author Adam Franco <afranco@middlebury.edu> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - */ - -/** - * Provides support for performing web-requests via curl - * - * @class CAS_Request_CurlRequest - * @category Authentication - * @package PhpCAS - * @author Adam Franco <afranco@middlebury.edu> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - */ -class CAS_Request_CurlRequest -extends CAS_Request_AbstractRequest -implements CAS_Request_RequestInterface -{ - - /** - * Set additional curl options - * - * @param array $options option to set - * - * @return void - */ - public function setCurlOptions (array $options) - { - $this->_curlOptions = $options; - } - private $_curlOptions = array(); - - /** - * Send the request and store the results. - * - * @return bool true on success, false on failure. - */ - protected function sendRequest () - { - phpCAS::traceBegin(); - - /********************************************************* - * initialize the CURL session - *********************************************************/ - $ch = $this->_initAndConfigure(); - - /********************************************************* - * Perform the query - *********************************************************/ - $buf = curl_exec($ch); - if ( $buf === false ) { - phpCAS::trace('curl_exec() failed'); - $this->storeErrorMessage( - 'CURL error #'.curl_errno($ch).': '.curl_error($ch) - ); - $res = false; - } else { - $this->storeResponseBody($buf); - phpCAS::trace("Response Body: \n".$buf."\n"); - $res = true; - - } - // close the CURL session - curl_close($ch); - - phpCAS::traceEnd($res); - return $res; - } - - /** - * Internal method to initialize our cURL handle and configure the request. - * This method should NOT be used outside of the CurlRequest or the - * CurlMultiRequest. - * - * @return resource The cURL handle on success, false on failure - */ - private function _initAndConfigure() - { - /********************************************************* - * initialize the CURL session - *********************************************************/ - $ch = curl_init($this->url); - - if (version_compare(PHP_VERSION, '5.1.3', '>=')) { - //only avaible in php5 - curl_setopt_array($ch, $this->_curlOptions); - } else { - foreach ($this->_curlOptions as $key => $value) { - curl_setopt($ch, $key, $value); - } - } - - /********************************************************* - * Set SSL configuration - *********************************************************/ - if ($this->caCertPath) { - if ($this->validateCN) { - curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2); - } else { - curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0); - } - curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 1); - curl_setopt($ch, CURLOPT_CAINFO, $this->caCertPath); - phpCAS::trace('CURL: Set CURLOPT_CAINFO ' . $this->caCertPath); - } else { - curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); - curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0); - } - - /********************************************************* - * Configure curl to capture our output. - *********************************************************/ - // return the CURL output into a variable - curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); - - // get the HTTP header with a callback - curl_setopt($ch, CURLOPT_HEADERFUNCTION, array($this, '_curlReadHeaders')); - - /********************************************************* - * Add cookie headers to our request. - *********************************************************/ - if (count($this->cookies)) { - $cookieStrings = array(); - foreach ($this->cookies as $name => $val) { - $cookieStrings[] = $name.'='.$val; - } - curl_setopt($ch, CURLOPT_COOKIE, implode(';', $cookieStrings)); - } - - /********************************************************* - * Add any additional headers - *********************************************************/ - if (count($this->headers)) { - curl_setopt($ch, CURLOPT_HTTPHEADER, $this->headers); - } - - /********************************************************* - * Flag and Body for POST requests - *********************************************************/ - if ($this->isPost) { - curl_setopt($ch, CURLOPT_POST, 1); - curl_setopt($ch, CURLOPT_POSTFIELDS, $this->postBody); - } - - return $ch; - } - - /** - * Store the response body. - * This method should NOT be used outside of the CurlRequest or the - * CurlMultiRequest. - * - * @param string $body body to stor - * - * @return void - */ - private function _storeResponseBody ($body) - { - $this->storeResponseBody($body); - } - - /** - * Internal method for capturing the headers from a curl request. - * - * @param handle $ch handle of curl - * @param string $header header - * - * @return void - */ - private function _curlReadHeaders ($ch, $header) - { - $this->storeResponseHeader($header); - return strlen($header); - } -} diff --git a/apps/maarch_entreprise/tools/phpCAS/source/CAS/Request/Exception.php b/apps/maarch_entreprise/tools/phpCAS/source/CAS/Request/Exception.php deleted file mode 100755 index 14ff3c6b0df5c0eeea376d8a8ab179a79ea34536..0000000000000000000000000000000000000000 --- a/apps/maarch_entreprise/tools/phpCAS/source/CAS/Request/Exception.php +++ /dev/null @@ -1,45 +0,0 @@ -<?php - -/** - * Licensed to Jasig under one or more contributor license - * agreements. See the NOTICE file distributed with this work for - * additional information regarding copyright ownership. - * - * Jasig licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except in - * compliance with the License. You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * PHP Version 5 - * - * @file CAS/Request/Exception.php - * @category Authentication - * @package PhpCAS - * @author Adam Franco <afranco@middlebury.edu> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - */ - -/** - * An Exception for problems performing requests - * - * @class CAS_Request_Exception - * @category Authentication - * @package PhpCAS - * @author Adam Franco <afranco@middlebury.edu> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - */ -class CAS_Request_Exception -extends Exception -implements CAS_Exception -{ - -} diff --git a/apps/maarch_entreprise/tools/phpCAS/source/CAS/Request/MultiRequestInterface.php b/apps/maarch_entreprise/tools/phpCAS/source/CAS/Request/MultiRequestInterface.php deleted file mode 100755 index abc448683a1da16eac95ce5c8cf5ffe1b96e54f0..0000000000000000000000000000000000000000 --- a/apps/maarch_entreprise/tools/phpCAS/source/CAS/Request/MultiRequestInterface.php +++ /dev/null @@ -1,83 +0,0 @@ -<?php - -/** - * Licensed to Jasig under one or more contributor license - * agreements. See the NOTICE file distributed with this work for - * additional information regarding copyright ownership. - * - * Jasig licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except in - * compliance with the License. You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * PHP Version 5 - * - * @file CAS/Request/MultiRequestInterface.php - * @category Authentication - * @package PhpCAS - * @author Adam Franco <afranco@middlebury.edu> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - */ - -/** - * This interface defines a class library for performing multiple web requests - * in batches. Implementations of this interface may perform requests serially - * or in parallel. - * - * @class CAS_Request_MultiRequestInterface - * @category Authentication - * @package PhpCAS - * @author Adam Franco <afranco@middlebury.edu> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - */ -interface CAS_Request_MultiRequestInterface -{ - - /********************************************************* - * Add Requests - *********************************************************/ - - /** - * Add a new Request to this batch. - * Note, implementations will likely restrict requests to their own concrete - * class hierarchy. - * - * @param CAS_Request_RequestInterface $request request interface - * - * @return void - * @throws CAS_OutOfSequenceException If called after the Request has been - * sent. - * @throws CAS_InvalidArgumentException If passed a Request of the wrong - * implmentation. - */ - public function addRequest (CAS_Request_RequestInterface $request); - - /** - * Retrieve the number of requests added to this batch. - * - * @return number of request elements - */ - public function getNumRequests (); - - /********************************************************* - * 2. Send the Request - *********************************************************/ - - /** - * Perform the request. After sending, all requests will have their - * responses poulated. - * - * @return bool TRUE on success, FALSE on failure. - * @throws CAS_OutOfSequenceException If called multiple times. - */ - public function send (); -} diff --git a/apps/maarch_entreprise/tools/phpCAS/source/CAS/Request/RequestInterface.php b/apps/maarch_entreprise/tools/phpCAS/source/CAS/Request/RequestInterface.php deleted file mode 100755 index cc11ba43d9ca23e4591b515135101bd5feb62abd..0000000000000000000000000000000000000000 --- a/apps/maarch_entreprise/tools/phpCAS/source/CAS/Request/RequestInterface.php +++ /dev/null @@ -1,179 +0,0 @@ -<?php - -/** - * Licensed to Jasig under one or more contributor license - * agreements. See the NOTICE file distributed with this work for - * additional information regarding copyright ownership. - * - * Jasig licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except in - * compliance with the License. You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * PHP Version 5 - * - * @file CAS/Request/RequestInterface.php - * @category Authentication - * @package PhpCAS - * @author Adam Franco <afranco@middlebury.edu> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - */ - -/** - * This interface defines a class library for performing web requests. - * - * @class CAS_Request_RequestInterface - * @category Authentication - * @package PhpCAS - * @author Adam Franco <afranco@middlebury.edu> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - */ -interface CAS_Request_RequestInterface -{ - - /********************************************************* - * Configure the Request - *********************************************************/ - - /** - * Set the URL of the Request - * - * @param string $url url to set - * - * @return void - * @throws CAS_OutOfSequenceException If called after the Request has been sent. - */ - public function setUrl ($url); - - /** - * Add a cookie to the request. - * - * @param string $name name of cookie - * @param string $value value of cookie - * - * @return void - * @throws CAS_OutOfSequenceException If called after the Request has been sent. - */ - public function addCookie ($name, $value); - - /** - * Add an array of cookies to the request. - * The cookie array is of the form - * array('cookie_name' => 'cookie_value', 'cookie_name2' => cookie_value2') - * - * @param array $cookies cookies to add - * - * @return void - * @throws CAS_OutOfSequenceException If called after the Request has been sent. - */ - public function addCookies (array $cookies); - - /** - * Add a header string to the request. - * - * @param string $header header to add - * - * @return void - * @throws CAS_OutOfSequenceException If called after the Request has been sent. - */ - public function addHeader ($header); - - /** - * Add an array of header strings to the request. - * - * @param array $headers headers to add - * - * @return void - * @throws CAS_OutOfSequenceException If called after the Request has been sent. - */ - public function addHeaders (array $headers); - - /** - * Make the request a POST request rather than the default GET request. - * - * @return void - * @throws CAS_OutOfSequenceException If called after the Request has been sent. - */ - public function makePost (); - - /** - * Add a POST body to the request - * - * @param string $body body to add - * - * @return void - * @throws CAS_OutOfSequenceException If called after the Request has been sent. - */ - public function setPostBody ($body); - - - /** - * Specify the path to an SSL CA certificate to validate the server with. - * - * @param string $caCertPath path to cert file - * @param boolean $validate_cn validate CN of SSL certificate - * - * @return void - * @throws CAS_OutOfSequenceException If called after the Request has been sent. - */ - public function setSslCaCert ($caCertPath, $validate_cn = true); - - - - /********************************************************* - * 2. Send the Request - *********************************************************/ - - /** - * Perform the request. - * - * @return bool TRUE on success, FALSE on failure. - * @throws CAS_OutOfSequenceException If called multiple times. - */ - public function send (); - - /********************************************************* - * 3. Access the response - *********************************************************/ - - /** - * Answer the headers of the response. - * - * @return array An array of header strings. - * @throws CAS_OutOfSequenceException If called before the Request has been sent. - */ - public function getResponseHeaders (); - - /** - * Answer HTTP status code of the response - * - * @return int - * @throws CAS_OutOfSequenceException If called before the Request has been sent. - */ - public function getResponseStatusCode (); - - /** - * Answer the body of response. - * - * @return string - * @throws CAS_OutOfSequenceException If called before the Request has been sent. - */ - public function getResponseBody (); - - /** - * Answer a message describing any errors if the request failed. - * - * @return string - * @throws CAS_OutOfSequenceException If called before the Request has been sent. - */ - public function getErrorMessage (); -} diff --git a/apps/maarch_entreprise/tools/phpCAS/source/CAS/TypeMismatchException.php b/apps/maarch_entreprise/tools/phpCAS/source/CAS/TypeMismatchException.php deleted file mode 100755 index 4a13c2df45f86f7b61153c6ae9eb2fe10660e2bb..0000000000000000000000000000000000000000 --- a/apps/maarch_entreprise/tools/phpCAS/source/CAS/TypeMismatchException.php +++ /dev/null @@ -1,70 +0,0 @@ -<?php - -/** - * Licensed to Jasig under one or more contributor license - * agreements. See the NOTICE file distributed with this work for - * additional information regarding copyright ownership. - * - * Jasig licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except in - * compliance with the License. You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * PHP Version 5 - * - * @file CAS/InvalidArgumentException.php - * @category Authentication - * @package PhpCAS - * @author Adam Franco <afranco@middlebury.edu> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - */ - -/** - * Exception that denotes invalid arguments were passed. - * - * @class CAS_InvalidArgumentException - * @category Authentication - * @package PhpCAS - * @author Adam Franco <afranco@middlebury.edu> - * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 - * @link https://wiki.jasig.org/display/CASC/phpCAS - */ -class CAS_TypeMismatchException -extends CAS_InvalidArgumentException -{ - /** - * Constructor, provides a nice message. - * - * @param mixed $argument Argument - * @param string $argumentName Argument Name - * @param string $type Type - * @param string $message Error Message - * @param integer $code Code - * - * @return void - */ - public function __construct ( - $argument, $argumentName, $type, $message = '', $code = 0 - ) { - if (is_object($argument)) { - $foundType = get_class($argument).' object'; - } else { - $foundType = gettype($argument); - } - - parent::__construct( - 'type mismatched for parameter ' - . $argumentName . ' (should be \'' . $type .' \'), ' - . $foundType . ' given. ' . $message, $code - ); - } -} -?> diff --git a/apps/maarch_entreprise/users_autocomplete_list.php b/apps/maarch_entreprise/users_autocomplete_list.php deleted file mode 100755 index 01ebd719771a7594e998e439210fe420de558654..0000000000000000000000000000000000000000 --- a/apps/maarch_entreprise/users_autocomplete_list.php +++ /dev/null @@ -1,49 +0,0 @@ -<?php -/* -* Copyright 2008,2009 Maarch -* -* This file is part of Maarch Framework. -* -* Maarch Framework 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. -* -* Maarch Framework 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 Maarch Framework. If not, see <http://www.gnu.org/licenses/>. -*/ - -require_once("core".DIRECTORY_SEPARATOR."class".DIRECTORY_SEPARATOR."class_request.php"); - -$req = new request(); - -$select = array(); -$select[$_SESSION['tablename']['users']]= array('lastname', 'firstname', 'user_id'); - -$where = " (lower(lastname) like lower(:input) " - ."or lower(firstname) like lower(:input) " - ."or user_id like :input) and (status = 'OK' or status = 'ABS') " . $enabledUser; - -$other = 'order by lastname, firstname'; - -$arrayPDO = array(":input" => $_REQUEST['Input']."%"); - -$res = $req->PDOselect($select, $where, $arrayPDO, $other, $_SESSION['config']['databasetype'], 11,false,"","","", false); - -echo "<ul>\n"; -for($i=0; $i< min(count($res), 10) ;$i++) -{ - echo "<li>".functions::xssafe(functions::show_string($res[$i][0]['value'])) - .', ' . functions::xssafe(functions::show_string($res[$i][1]['value'])) - .' (' . functions::xssafe($res[$i][2]['value']).")</li>\n"; -} -if(count($res) == 11) -{ - echo "<li>...</li>\n"; -} -echo "</ul>";