mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-18 08:19:05 +01:00
Replace custom_search_action.php by a LSurl route
This commit is contained in:
parent
119ce68a35
commit
2766237481
2 changed files with 103 additions and 100 deletions
|
@ -1,99 +0,0 @@
|
|||
<?php
|
||||
/*******************************************************************************
|
||||
* Copyright (C) 2007 Easter-eggs
|
||||
* http://ldapsaisie.labs.libre-entreprise.org
|
||||
*
|
||||
* Author: See AUTHORS file in top-level directory.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License version 2
|
||||
* as published by the Free Software Foundation.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
|
||||
******************************************************************************/
|
||||
|
||||
require_once 'core.php';
|
||||
|
||||
if(LSsession :: startLSsession()) {
|
||||
|
||||
if ((isset($_GET['LSobject'])) && (isset($_GET['customAction']))) {
|
||||
$LSobject=urldecode($_GET['LSobject']);
|
||||
$customAction=urldecode($_GET['customAction']);
|
||||
|
||||
if (LSsession :: loadLSclass('LSsearch')) {
|
||||
$LSsearch = new LSsearch($LSobject,'LSview');
|
||||
$LSsearch -> setParam('extraDisplayedColumns',True);
|
||||
$LSsearch -> setParamsFormPostData();
|
||||
|
||||
if ( LSsession :: canExecuteLSsearchCustomAction($LSsearch,$customAction) ) {
|
||||
$config = LSconfig :: get('LSobjects.'.$LSobject.'.LSsearch.customActions.'.$customAction);
|
||||
if (isset($config['function']) && is_callable($config['function'])) {
|
||||
if (isset($config['label'])) {
|
||||
$title=__($config['label']);
|
||||
}
|
||||
else {
|
||||
$title=__($customAction);
|
||||
}
|
||||
if (isset($_GET['valid']) || $config['noConfirmation']) {
|
||||
LStemplate :: assign('pagetitle',$title);
|
||||
if (call_user_func_array($config['function'],array(&$LSsearch))) {
|
||||
if ($config['disableOnSuccessMsg']!=true) {
|
||||
if ($config['onSuccessMsgFormat']) {
|
||||
LSsession :: addInfo(getFData(__($config['onSuccessMsgFormat']),$objectname));
|
||||
}
|
||||
else {
|
||||
LSsession :: addInfo(getFData(_('The custom action %{title} have been successfully execute on this search.'),$title));
|
||||
}
|
||||
}
|
||||
if (!isset($config['redirectToObjectList']) || $config['redirectToObjectList']) {
|
||||
LSurl :: redirect("object/$LSobject?refresh");
|
||||
}
|
||||
}
|
||||
else {
|
||||
LSerror :: addErrorCode('LSsearch_16',$customAction);
|
||||
}
|
||||
}
|
||||
else {
|
||||
$question=(
|
||||
isset($config['question_format'])?
|
||||
getFData(__($config['question_format']),$title):
|
||||
getFData(_('Do you really want to execute custom action %{title} on this search ?'),$title)
|
||||
);
|
||||
LStemplate :: assign('pagetitle',$title);
|
||||
LStemplate :: assign('question',$question);
|
||||
LStemplate :: assign('validation_url','custom_search_action.php?LSobject='.urlencode($LSobject).'&customAction='.urlencode($customAction).'&valid');
|
||||
LStemplate :: assign('validation_label',_('Validate'));
|
||||
LSsession :: setTemplate('question.tpl');
|
||||
}
|
||||
}
|
||||
else {
|
||||
LSerror :: addErrorCode('LSsession_13');
|
||||
}
|
||||
}
|
||||
else {
|
||||
LSerror :: addErrorCode('LSsession_11');
|
||||
}
|
||||
}
|
||||
else {
|
||||
LSsession :: addErrorCode('LSsession_05','LSsearch');
|
||||
}
|
||||
}
|
||||
else {
|
||||
LSerror :: addErrorCode('LSsession_12');
|
||||
}
|
||||
|
||||
}
|
||||
else {
|
||||
LSsession :: setTemplate('login.tpl');
|
||||
}
|
||||
|
||||
// Affichage des retours d'erreurs
|
||||
LSsession :: displayTemplate();
|
|
@ -197,7 +197,7 @@ function handle_LSobject_search($request) {
|
|||
'label' => ((isset($config['label']))?__($config['label']):__($name)),
|
||||
'hideLabel' => ((isset($config['hideLabel']))?$config['hideLabel']:False),
|
||||
'helpInfo' => ((isset($config['helpInfo']))?__($config['helpInfo']):False),
|
||||
'url' => 'custom_search_action.php?LSobject='.$LSobject.'&customAction='.$name,
|
||||
'url' => "object/$LSobject/customAction/$name",
|
||||
'action' => ((isset($config['icon']))?$config['icon']:'generate'),
|
||||
'class' => 'LScustomActions'.(($config['noConfirmation'])?' LScustomActions_noConfirmation':'')
|
||||
);
|
||||
|
@ -249,6 +249,108 @@ function handle_LSobject_search($request) {
|
|||
}
|
||||
LSurl :: add_handler('#^object/(?P<LSobject>[^/]+)/?$#', 'handle_LSobject_search');
|
||||
|
||||
/*
|
||||
* Handle LSobject search custom action request
|
||||
*
|
||||
* @param[in] $request LSurlRequest The request
|
||||
*
|
||||
* @retval void
|
||||
**/
|
||||
function handle_LSobject_search_customAction($request) {
|
||||
$object = get_LSobject_from_request($request, true);
|
||||
if (!$object)
|
||||
return;
|
||||
|
||||
if (!LSsession :: loadLSclass('LSsearch')) {
|
||||
LSsession :: addErrorCode('LSsession_05', 'LSsearch');
|
||||
LSsession :: displayTemplate();
|
||||
return false;
|
||||
}
|
||||
|
||||
$LSobject = $object -> getType();
|
||||
$customAction = $request -> customAction;
|
||||
|
||||
// Instanciate a LSsearch
|
||||
$LSsearch = new LSsearch($LSobject, 'LSview');
|
||||
$LSsearch -> setParam('extraDisplayedColumns', True);
|
||||
$LSsearch -> setParamsFormPostData();
|
||||
|
||||
// Check user right on this search customAction
|
||||
if ( !LSsession :: canExecuteLSsearchCustomAction($LSsearch, $customAction) ) {
|
||||
LSerror :: addErrorCode('LSsession_11');
|
||||
LSsession :: displayTemplate();
|
||||
return false;
|
||||
}
|
||||
|
||||
$config = LSconfig :: get("LSobjects.$LSobject.LSsearch.customActions.$customAction");
|
||||
|
||||
// Check search customAction function
|
||||
if (!isset($config['function']) || !is_callable($config['function'])) {
|
||||
LSerror :: addErrorCode('LSsession_13');
|
||||
LSsession :: displayTemplate();
|
||||
return false;
|
||||
}
|
||||
|
||||
$objectname = $object -> getDisplayName();
|
||||
$title = isset($config['label'])?__($config['label']):$customAction;
|
||||
|
||||
// Run search customAction (if validated or no confirmation need)
|
||||
if (isset($_GET['valid']) || $config['noConfirmation']) {
|
||||
if (call_user_func_array($config['function'], array(&$LSsearch))) {
|
||||
if (isset($config['disableOnSuccessMsg']) && $config['disableOnSuccessMsg'] != true) {
|
||||
LSsession :: addInfo(
|
||||
(isset($config['onSuccessMsgFormat']) && $config['onSuccessMsgFormat'])?
|
||||
getFData(__($config['onSuccessMsgFormat']), $objectname):
|
||||
getFData(_('The custom action %{title} have been successfully execute on this search.'), $title)
|
||||
);
|
||||
}
|
||||
if (!isset($config['redirectToObjectList']) || $config['redirectToObjectList']) {
|
||||
LSurl :: redirect("object/$LSobject?refresh");
|
||||
}
|
||||
}
|
||||
else {
|
||||
LSerror :: addErrorCode('LSsearch_16', $customAction);
|
||||
}
|
||||
}
|
||||
|
||||
// Define page title & template variables
|
||||
LStemplate :: assign('pagetitle', $title);
|
||||
LStemplate :: assign(
|
||||
'question',
|
||||
(
|
||||
isset($config['question_format'])?
|
||||
getFData(__($config['question_format']), $title):
|
||||
getFData(_('Do you really want to execute custom action %{title} on this search ?'), $title)
|
||||
)
|
||||
);
|
||||
LStemplate :: assign('validation_url', "object/$LSobject/customAction/".urlencode($customAction)."?valid");
|
||||
LStemplate :: assign('validation_label', _('Validate'));
|
||||
|
||||
// Set & display template
|
||||
LSsession :: setTemplate('question.tpl');
|
||||
LSsession :: displayTemplate();
|
||||
}
|
||||
LSurl :: add_handler('#^object/(?P<LSobject>[^/]+)/customAction/(?P<customAction>[^/]+)/?$#', 'handle_LSobject_search_customAction');
|
||||
|
||||
/*
|
||||
* Handle old custom_search_action.php request for retro-compatibility
|
||||
*
|
||||
* @param[in] $request LSurlRequest The request
|
||||
*
|
||||
* @retval void
|
||||
**/
|
||||
function handle_old_custom_search_action_php($request) {
|
||||
if (!isset($_GET['LSobject']) || !isset($_GET['customAction']))
|
||||
$url = null;
|
||||
elseif (isset($_GET['valid']))
|
||||
$url = "object/".$_GET['LSobject']."/customAction/".$_GET['customAction']."?valid";
|
||||
else
|
||||
$url = "object/".$_GET['LSobject']."/customAction/".$_GET['customAction'];
|
||||
LSerror :: addErrorCode('LSsession_26', 'custom_search_action.php');
|
||||
LSurl :: redirect($url);
|
||||
}
|
||||
LSurl :: add_handler('#^custom_search_action.php#', 'handle_old_custom_search_action_php');
|
||||
|
||||
/*
|
||||
* Handle LSobject import request
|
||||
*
|
||||
|
|
Loading…
Reference in a new issue