Files
iTop/sources/application/UI/Base/Layout/Object/ObjectDetails.php
2021-03-04 18:00:28 +01:00

201 lines
5.0 KiB
PHP

<?php
/*
* @copyright Copyright (C) 2010-2020 Combodo SARL
* @license http://opensource.org/licenses/AGPL-3.0
*/
namespace Combodo\iTop\Application\UI\Base\Layout\Object;
use cmdbAbstractObject;
use Combodo\iTop\Application\UI\Base\Component\Panel\Panel;
use Combodo\iTop\Application\UI\Helper\UIHelper;
use DBObject;
use MetaModel;
class ObjectDetails extends Panel
{
// Overloaded constants
public const BLOCK_CODE = 'ibo-object-details';
public const DEFAULT_HTML_TEMPLATE_REL_PATH = 'base/layouts/object/object-details/layout';
/** @var string Class name of the object (eg. "UserRequest") */
protected $sClassName;
/** @var string Class label of the object (eg. "User request") */
protected $sClassLabel;
/** @var string ID of the object */
protected $sObjectId;
/** @var string */
protected $sObjectName;
/**
* @var string The mode in which the object should be displayed (read, edit, create, ...)
* @see \cmdbAbstractObject::ENUM_OBJECT_MODE_XXX
*/
protected $sObjectMode;
/** @var string */
protected $sIconUrl;
/** @var string */
protected $sStatusCode;
/** @var string */
protected $sStatusLabel;
/** @var string */
protected $sStatusColor;
/**
* ObjectDetails constructor.
*
* @param \DBObject $oObject The object for which we display the details
* @param string $sMode See \cmdbAbstractObject::ENUM_OBJECT_MODE_XXX
* @param string|null $sId ID of the block itself, not the $oObject ID
*
* @throws \ArchivedObjectException
* @throws \CoreException
* @throws \DictExceptionMissingString
*/
public function __construct(DBObject $oObject, string $sMode = cmdbAbstractObject::DEFAULT_OBJECT_MODE, ?string $sId = null)
{
$this->sClassName = get_class($oObject);
$this->sClassLabel = MetaModel::GetName($this->GetClassName());
$this->sObjectId = $oObject->GetKey();
// Note: We get the raw name as only the front-end consumer knows when and how to encode it.
$this->sObjectName = $oObject->GetRawName();
$this->sObjectMode = $sMode;
$oStyle = MetaModel::GetClassStyle($this->sClassName);
$sPanelColor = empty($oStyle->GetMainColor()) ? static::DEFAULT_COLOR : $oStyle->GetMainColor();
parent::__construct($this->sObjectName, [], $sPanelColor, $sId);
$this->ComputeIconUrl($oObject);
$this->ComputeState($oObject);
}
/**
* @see self::$sClassName
* @return string
*/
public function GetClassName(): string
{
return $this->sClassName;
}
/**
* @see self::$sClassLabel
* @return string
*/
public function GetClassLabel(): string
{
return $this->sClassLabel;
}
/**
* @see self::$sObjectName
* @return string
*/
public function GetObjectName(): string
{
return $this->sObjectName;
}
/**
* @see self::$sObjectId
* @return string
*/
public function GetObjectId(): string
{
return $this->sObjectId;
}
/**
* @see self::$sObjectMode
* @return string
*/
public function GetObjectMode(): string
{
return $this->sObjectMode;
}
/**
* Set the status to display for the object
*
* @param string $sCode
* @param string $sLabel
* @param string $sColor
*
* @return $this
*/
public function SetStatus(string $sCode, string $sLabel, string $sColor)
{
$this->sStatusCode = $sColor;
$this->sStatusLabel = $sLabel;
$this->sStatusColor = $sColor;
return $this;
}
/**
* @see self::$sStatusCode
* @return string
*/
public function GetStatusCode(): string
{
return $this->sStatusCode;
}
/**
* @see self::$sStatusLabel
* @return string
*/
public function GetStatusLabel(): string
{
return $this->sStatusLabel;
}
/**
* @see self::$sStatusColor
* @return string
*/
public function GetStatusColor(): string
{
return $this->sStatusColor;
}
/**
* @inheritDoc
*/
public function HasSubTitle(): bool
{
return !empty($this->sStatusCode);
}
protected function ComputeIconUrl(DBObject $oObject): void
{
// Default icon is the class icon
$sIconUrl = $oObject->GetIcon(false);
// Note: Class icons are a square image with no margin around, so they need to be zoomed out in the medallion
$sIconCoverMethod = static::ENUM_ICON_COVER_METHOD_ZOOMOUT;
// Use object image from semantic attribute only if it's not the default image
if (!$oObject->IsNew() && MetaModel::HasImageAttributeCode($this->sClassName)) {
$sImageAttCode = MetaModel::GetImageAttributeCode($this->sClassName);
if (!empty($sImageAttCode)) {
/** @var \ormDocument $oImage */
$oImage = $oObject->Get($sImageAttCode);
if (!$oImage->IsEmpty()) {
$sIconUrl = $oImage->GetDisplayURL($this->sClassName, $this->sObjectId, $sImageAttCode);
$sIconCoverMethod = static::ENUM_ICON_COVER_METHOD_COVER;
}
}
}
$this->SetIcon($sIconUrl, $sIconCoverMethod, true);
}
protected function ComputeState(DBObject $oObject): void
{
if (MetaModel::HasStateAttributeCode($this->sClassName)) {
$this->sStatusCode = $oObject->GetState();
$this->sStatusLabel = $oObject->GetStateLabel();
$this->sStatusColor = UIHelper::GetColorFromStatus($this->sClassName, $this->sStatusCode);
}
}
}