mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 23:44:11 +01:00
136 lines
3.6 KiB
PHP
136 lines
3.6 KiB
PHP
<?php
|
|
// Copyright (C) 2010-2012 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
|
|
// along with iTop. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
/**
|
|
* Internal: synchronize part of the records - cannot be invoked separately
|
|
*
|
|
* @copyright Copyright (C) 2010-2012 Combodo SARL
|
|
* @license http://opensource.org/licenses/AGPL-3.0
|
|
*/
|
|
|
|
if (!defined('__DIR__')) define('__DIR__', dirname(__FILE__));
|
|
require_once(__DIR__.'/../approot.inc.php');
|
|
require_once(APPROOT.'/application/application.inc.php');
|
|
require_once(APPROOT.'/application/webpage.class.inc.php');
|
|
require_once(APPROOT.'/application/csvpage.class.inc.php');
|
|
require_once(APPROOT.'/application/clipage.class.inc.php');
|
|
|
|
require_once(APPROOT.'/application/startup.inc.php');
|
|
|
|
|
|
function ReadMandatoryParam($oP, $sParam, $sSanitizationFilter = 'parameter')
|
|
{
|
|
$sValue = utils::ReadParam($sParam, null, true /* Allow CLI */, $sSanitizationFilter);
|
|
if (is_null($sValue))
|
|
{
|
|
$oP->p("ERROR: Missing argument '$sParam'\n");
|
|
exit(29);
|
|
}
|
|
return trim($sValue);
|
|
}
|
|
|
|
/////////////////////////////////
|
|
// Main program
|
|
|
|
if (!utils::IsModeCLI())
|
|
{
|
|
$oP = new WebPage(Dict::S("TitleSynchroExecution"));
|
|
$oP->p("This page is used internally by iTop");
|
|
$oP->output();
|
|
exit -2;
|
|
}
|
|
|
|
$oP = new CLIPage(Dict::S("TitleSynchroExecution"));
|
|
|
|
try
|
|
{
|
|
utils::UseParamFile();
|
|
}
|
|
catch(Exception $e)
|
|
{
|
|
$oP->p("Error: ".$e->GetMessage());
|
|
$oP->output();
|
|
exit -2;
|
|
}
|
|
|
|
// Next steps:
|
|
// specific arguments: 'csvfile'
|
|
//
|
|
$sAuthUser = ReadMandatoryParam($oP, 'auth_user', 'raw_data');
|
|
$sAuthPwd = ReadMandatoryParam($oP, 'auth_pwd', 'raw_data');
|
|
if (UserRights::CheckCredentials($sAuthUser, $sAuthPwd))
|
|
{
|
|
UserRights::Login($sAuthUser); // Login & set the user's language
|
|
}
|
|
else
|
|
{
|
|
$oP->p("Access restricted or wrong credentials ('$sAuthUser')");
|
|
$oP->output();
|
|
exit -1;
|
|
}
|
|
|
|
$iStepCount = ReadMandatoryParam($oP, 'step_count');
|
|
$oP->p('Executing a partial synchro - step '.$iStepCount);
|
|
|
|
$iSource = ReadMandatoryParam($oP, 'source');
|
|
|
|
$iStatLog = ReadMandatoryParam($oP, 'log');
|
|
$iChange = ReadMandatoryParam($oP, 'change');
|
|
$sLastFullLoad = ReadMandatoryParam($oP, 'last_full_load', 'raw_data');
|
|
$iChunkSize = ReadMandatoryParam($oP, 'chunk');
|
|
|
|
$oP->p('Last full load: '.$sLastFullLoad);
|
|
$oP->p('Chunk size: '.$iChunkSize);
|
|
$oP->p('Source: '.$iSource);
|
|
|
|
try
|
|
{
|
|
$oSynchroDataSource = MetaModel::GetObject('SynchroDataSource', $iSource);
|
|
$oLog = MetaModel::GetObject('SynchroLog', $iStatLog);
|
|
$oChange = MetaModel::GetObject('CMDBChange', $iChange);
|
|
|
|
if (strlen($sLastFullLoad) > 0)
|
|
{
|
|
$oLastFullLoad = new DateTime($sLastFullLoad);
|
|
$oSynchroExec = new SynchroExecution($oSynchroDataSource, $oLastFullLoad);
|
|
}
|
|
else
|
|
{
|
|
$oSynchroExec = new SynchroExecution($oSynchroDataSource);
|
|
}
|
|
if ($oSynchroExec->DoSynchronizeChunk($oLog, $oChange, $iChunkSize))
|
|
{
|
|
// The last line MUST follow this convention
|
|
$oP->p("continue");
|
|
}
|
|
else
|
|
{
|
|
// The last line MUST follow this convention
|
|
$oP->p("finished");
|
|
}
|
|
$oP->output();
|
|
}
|
|
catch(Exception $e)
|
|
{
|
|
$oP->p("Error: ".$e->GetMessage());
|
|
$oP->add($e->getTraceAsString());
|
|
$oP->output();
|
|
exit(28);
|
|
}
|
|
?>
|