N°1232 Portal: Harmonize right checks for external url in forms

This commit is contained in:
Stephen Abello
2019-08-02 11:04:32 +02:00
parent 305b236f41
commit d2015b7d7b
5 changed files with 8 additions and 88 deletions

View File

@@ -1,66 +0,0 @@
<?php
/**
* Copyright (C) 2013-2019 Combodo SARL
*
* This file is part of iTop.
*
* iTop is free software; you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* iTop 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
*/
namespace Combodo\iTop\Form\Field;
use Closure;
/**
* Fields pointing to a remote object
*
* @author Guillaume Lajarige <guillaume.lajarige@combodo.com>
* @since 2.7.0
*/
abstract class RemoteObjectField extends Field
{
/** @var bool DEFAULT_IS_REMOTE_OBJECT_ACCESSIBLE */
const DEFAULT_IS_REMOTE_OBJECT_ACCESSIBLE = true;
/** @var boolean $bIsRemoteObjectAccessible */
protected $bIsRemoteObjectAccessible;
/**
* @inheritDoc
*/
public function __construct($sId, Closure $onFinalizeCallback = null)
{
parent::__construct($sId, $onFinalizeCallback);
$this->bIsRemoteObjectAccessible = static::DEFAULT_IS_REMOTE_OBJECT_ACCESSIBLE;
}
/**
* Return true if the remote object pointed by this field is accessible
*
* @return boolean
*/
public function GetRemoteObjectAccessible()
{
return $this->bIsRemoteObjectAccessible;
}
/**
* @param boolean $bIsRemoteObjectAccessible
*/
public function SetRemoteObjectAccessible($bIsRemoteObjectAccessible)
{
$this->bIsRemoteObjectAccessible = $bIsRemoteObjectAccessible;
}
}

View File

@@ -32,7 +32,7 @@ use ScalarExpression;
*
* @author Romain Quetiez <romain.quetiez@combodo.com>
*/
class SelectObjectField extends RemoteObjectField
class SelectObjectField extends Field
{
protected $oSearch;
protected $iMaximumComboLength;
@@ -100,6 +100,7 @@ class SelectObjectField extends RemoteObjectField
* Setting the value will automatically add/remove a MandatoryValidator to the Field
*
* @param boolean $bMandatory
*
* @return \Combodo\iTop\Form\Field\Field
*/
public function SetMandatory($bMandatory)
@@ -169,14 +170,15 @@ class SelectObjectField extends RemoteObjectField
*/
public function VerifyCurrentValue($bAlways = false)
{
if(!$this->GetReadOnly() || $bAlways)
if (!$this->GetReadOnly() || $bAlways)
{
$oValuesScope = $this->GetSearch()->DeepClone();
$oBinaryExp = new BinaryExpression(new FieldExpression('id', $oValuesScope->GetClassAlias()), '=', new ScalarExpression($this->currentValue));
$oBinaryExp = new BinaryExpression(new FieldExpression('id', $oValuesScope->GetClassAlias()), '=',
new ScalarExpression($this->currentValue));
$oValuesScope->AddConditionExpression($oBinaryExp);
$oValuesSet = new DBObjectSet($oValuesScope);
if($oValuesSet->Count() === 0)
if ($oValuesSet->Count() === 0)
{
$this->currentValue = null;
}