mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 07:24:13 +01:00
209 lines
6.4 KiB
PHP
209 lines
6.4 KiB
PHP
<?php
|
|
|
|
/*
|
|
* @copyright Copyright (C) 2010-2024 Combodo SAS
|
|
* @license http://opensource.org/licenses/AGPL-3.0
|
|
*/
|
|
|
|
use Combodo\iTop\Application\UI\Base\Component\Input\InputUIBlockFactory;
|
|
use Combodo\iTop\Application\UI\Base\Component\Panel\PanelUIBlockFactory;
|
|
use Combodo\iTop\Application\UI\Base\Layout\MultiColumn\Column\ColumnUIBlockFactory;
|
|
use Combodo\iTop\Application\UI\Base\Layout\MultiColumn\MultiColumnUIBlockFactory;
|
|
use Combodo\iTop\Application\WebPage\Page;
|
|
use Combodo\iTop\Application\WebPage\WebPage;
|
|
|
|
/**
|
|
* Bulk export: XML export
|
|
*
|
|
* @copyright Copyright (C) 2015-2024 Combodo SAS
|
|
* @license http://opensource.org/licenses/AGPL-3.0
|
|
*/
|
|
class XMLBulkExport extends BulkExport
|
|
{
|
|
public function DisplayUsage(Page $oP)
|
|
{
|
|
$oP->p(" * xml format options:");
|
|
$oP->p(" *\tno_localize: set to 1 to retrieve non-localized values (for instance for ENUM values). Default is 0 (= localized values)");
|
|
$oP->p(" *\tlinksets: set to 1 to retrieve links to related objects (1-N or N-N relations). Default is 0 (= only scalar fields)");
|
|
}
|
|
|
|
public function EnumFormParts()
|
|
{
|
|
return array_merge(parent::EnumFormParts(), ['xml_options' => ['xml_no_options']]);
|
|
}
|
|
|
|
/**
|
|
* @param WebPage $oP
|
|
* @param $sPartId
|
|
*
|
|
* @return UIContentBlock
|
|
*/
|
|
public function GetFormPart(WebPage $oP, $sPartId)
|
|
{
|
|
switch ($sPartId) {
|
|
case 'xml_options':
|
|
|
|
$oPanel = PanelUIBlockFactory::MakeNeutral(Dict::S('Core:BulkExport:XMLOptions'));
|
|
|
|
$oMulticolumn = MultiColumnUIBlockFactory::MakeStandard();
|
|
$oPanel->AddSubBlock($oMulticolumn);
|
|
|
|
$oCheckBoxLocalize = InputUIBlockFactory::MakeForInputWithLabel(Dict::S('Core:BulkExport:OptionNoLocalize'), "no_localize", "1", "xml_no_localize", "checkbox");
|
|
$oCheckBoxLocalize->GetInput()->SetIsChecked((utils::ReadParam('no_localize', 0) == 1));
|
|
$oCheckBoxLocalize->SetBeforeInput(false);
|
|
$oCheckBoxLocalize->GetInput()->AddCSSClass('ibo-input-checkbox');
|
|
$oMulticolumn->AddColumn(ColumnUIBlockFactory::MakeForBlock($oCheckBoxLocalize));
|
|
|
|
$oCheckBoxLink = InputUIBlockFactory::MakeForInputWithLabel(Dict::S('Core:BulkExport:OptionLinkSets'), "linksets", "1", "xml_linksets", "checkbox");
|
|
$oCheckBoxLink->GetInput()->SetIsChecked((utils::ReadParam('linksets', 0) == 1));
|
|
$oCheckBoxLink->SetBeforeInput(false);
|
|
$oCheckBoxLink->GetInput()->AddCSSClass('ibo-input-checkbox');
|
|
$oMulticolumn->AddColumn(ColumnUIBlockFactory::MakeForBlock($oCheckBoxLink));
|
|
|
|
return $oPanel;
|
|
break;
|
|
|
|
default:
|
|
return parent::GetFormPart($oP, $sPartId);
|
|
}
|
|
}
|
|
|
|
public function ReadParameters()
|
|
{
|
|
parent::ReadParameters();
|
|
|
|
$this->aStatusInfo['linksets'] = (utils::ReadParam('linksets', 0) == 1);
|
|
}
|
|
|
|
protected function GetSampleData($oObj, $sAttCode)
|
|
{
|
|
$sRet = ($sAttCode == 'id') ? $oObj->GetKey() : $oObj->GetAsXML($sAttCode);
|
|
return $sRet;
|
|
}
|
|
|
|
public function GetHeader()
|
|
{
|
|
// Check permissions
|
|
foreach ($this->oSearch->GetSelectedClasses() as $sAlias => $sClass) {
|
|
if (UserRights::IsActionAllowed($sClass, UR_ACTION_BULK_READ) != UR_ALLOWED_YES) {
|
|
throw new Exception("You do not have enough permissions to bulk read data of class '$sClass' (alias: $sAlias)");
|
|
}
|
|
}
|
|
|
|
$oSet = new DBObjectSet($this->oSearch);
|
|
$this->aStatusInfo['position'] = 0;
|
|
$this->aStatusInfo['total'] = $oSet->Count();
|
|
$sData = "<"."?xml version=\"1.0\" encoding=\"UTF-8\"?".">\n<Set>\n";
|
|
return $sData;
|
|
}
|
|
|
|
public function GetNextChunk(&$aStatus)
|
|
{
|
|
$sRetCode = 'run';
|
|
$iPercentage = 0;
|
|
|
|
$iCount = 0;
|
|
$sData = '';
|
|
|
|
$oSet = new DBObjectSet($this->oSearch);
|
|
$oSet->SetLimit($this->iChunkSize, $this->aStatusInfo['position']);
|
|
|
|
$aClasses = $this->oSearch->GetSelectedClasses();
|
|
$aAuthorizedClasses = [];
|
|
$aClass2Attributes = [];
|
|
foreach ($aClasses as $sAlias => $sClassName) {
|
|
if (UserRights::IsActionAllowed($sClassName, UR_ACTION_BULK_READ, $oSet) != UR_ALLOWED_NO) {
|
|
$aAuthorizedClasses[$sAlias] = $sClassName;
|
|
$aAttributes = [];
|
|
foreach (MetaModel::ListAttributeDefs($sClassName) as $sAttCode => $oAttDef) {
|
|
if ($oAttDef->IsLinkSet() && !$this->aStatusInfo['linksets']) {
|
|
continue;
|
|
}
|
|
if ($oAttDef->IsExternalField()) {
|
|
continue;
|
|
}
|
|
$aAttributes[$sAttCode] = $oAttDef;
|
|
if ($oAttDef->IsExternalKey()) {
|
|
foreach (MetaModel::ListAttributeDefs($sClassName) as $sSubAttCode => $oSubAttDef) {
|
|
if ($oSubAttDef->IsExternalField() && ($oSubAttDef->GetKeyAttCode() == $sAttCode)) {
|
|
$aAttributes[$sAttCode.'_friendlyname'] = MetaModel::GetAttributeDef($sClassName, $sAttCode.'_friendlyname');
|
|
$aAttributes[$sSubAttCode] = $oSubAttDef;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
$aClass2Attributes[$sAlias] = $aAttributes;
|
|
}
|
|
}
|
|
|
|
$iPreviousTimeLimit = ini_get('max_execution_time');
|
|
$iLoopTimeLimit = MetaModel::GetConfig()->Get('max_execution_time_per_loop');
|
|
|
|
while ($aObjects = $oSet->FetchAssoc()) {
|
|
set_time_limit(intval($iLoopTimeLimit));
|
|
if (count($aAuthorizedClasses) > 1) {
|
|
$sData .= "<Row>\n";
|
|
}
|
|
foreach ($aAuthorizedClasses as $sAlias => $sClassName) {
|
|
$oObj = $aObjects[$sAlias];
|
|
if (is_null($oObj)) {
|
|
$sData .= "<$sClassName alias=\"$sAlias\" id=\"null\">\n";
|
|
} else {
|
|
$sClassName = get_class($oObj);
|
|
$sData .= "<$sClassName alias=\"$sAlias\" id=\"".$oObj->GetKey()."\">\n";
|
|
}
|
|
foreach ($aClass2Attributes[$sAlias] as $sAttCode => $oAttDef) {
|
|
if (is_null($oObj)) {
|
|
$sData .= "<$sAttCode>null</$sAttCode>\n";
|
|
} else {
|
|
$sValue = $oObj->GetAsXML($sAttCode, $this->bLocalizeOutput);
|
|
$sData .= "<$sAttCode>$sValue</$sAttCode>\n";
|
|
}
|
|
}
|
|
$sData .= "</$sClassName>\n";
|
|
}
|
|
if (count($aAuthorizedClasses) > 1) {
|
|
$sData .= "</Row>\n";
|
|
}
|
|
$iCount++;
|
|
}
|
|
|
|
set_time_limit(intval($iPreviousTimeLimit));
|
|
$this->aStatusInfo['position'] += $this->iChunkSize;
|
|
if ($this->aStatusInfo['total'] == 0) {
|
|
$iPercentage = 100;
|
|
} else {
|
|
$iPercentage = floor(min(100.0, 100.0 * $this->aStatusInfo['position'] / $this->aStatusInfo['total']));
|
|
}
|
|
|
|
if ($iCount < $this->iChunkSize) {
|
|
$sRetCode = 'done';
|
|
}
|
|
|
|
$aStatus = ['code' => $sRetCode, 'message' => Dict::S('Core:BulkExport:RetrievingData'), 'percentage' => $iPercentage];
|
|
return $sData;
|
|
}
|
|
|
|
public function GetFooter()
|
|
{
|
|
$sData = "</Set>\n";
|
|
|
|
return $sData;
|
|
}
|
|
|
|
public function GetSupportedFormats()
|
|
{
|
|
return ['xml' => Dict::S('Core:BulkExport:XMLFormat')];
|
|
}
|
|
|
|
public function GetMimeType()
|
|
{
|
|
return 'text/xml';
|
|
}
|
|
|
|
public function GetFileExtension()
|
|
{
|
|
return 'xml';
|
|
}
|
|
}
|