123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160 |
- <?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/>
- /**
- * Database properties - manage database instances in a complex installation
- *
- * @copyright Copyright (C) 2010-2012 Combodo SARL
- * @license http://opensource.org/licenses/AGPL-3.0
- */
- /**
- * A database property
- *
- * @package iTopORM
- */
- class DBProperty extends DBObject
- {
- public static function Init()
- {
- $aParams = array
- (
- "category" => "cloud",
- "key_type" => "autoincrement",
- "name_attcode" => "name",
- "state_attcode" => "",
- "reconc_keys" => array(),
- "db_table" => "priv_db_properties",
- "db_key_field" => "id",
- "db_finalclass_field" => "",
- );
- MetaModel::Init_Params($aParams);
- //MetaModel::Init_InheritAttributes();
- MetaModel::Init_AddAttribute(new AttributeString("name", array("allowed_values"=>null, "sql"=>"name", "default_value"=>null, "is_null_allowed"=>false, "depends_on"=>array())));
- MetaModel::Init_AddAttribute(new AttributeString("description", array("allowed_values"=>null, "sql"=>"description", "default_value"=>null, "is_null_allowed"=>true, "depends_on"=>array())));
- MetaModel::Init_AddAttribute(new AttributeString("value", array("allowed_values"=>null, "sql"=>"value", "default_value"=>null, "is_null_allowed"=>true, "depends_on"=>array())));
- MetaModel::Init_AddAttribute(new AttributeDateTime("change_date", array("allowed_values"=>null, "sql"=>"change_date", "default_value"=>"", "is_null_allowed"=>false, "depends_on"=>array())));
- MetaModel::Init_AddAttribute(new AttributeString("change_comment", array("allowed_values"=>null, "sql"=>"change_comment", "default_value"=>null, "is_null_allowed"=>true, "depends_on"=>array())));
- }
- /**
- * Helper to check wether the table has been created into the DB
- * (this table did not exist in 1.0.1 and older versions)
- */
- public static function IsInstalled()
- {
- $sTable = MetaModel::DBGetTable(__CLASS__);
- if (CMDBSource::IsTable($sTable))
- {
- return true;
- }
- else
- {
- return false;
- }
- return false;
- }
- public static function SetProperty($sName, $sValue, $sComment = '', $sDescription = null)
- {
- try
- {
- $oSearch = DBObjectSearch::FromOQL('SELECT DBProperty WHERE name = :name');
- $oSet = new DBObjectSet($oSearch, array(), array('name' => $sName));
- if ($oSet->Count() == 0)
- {
- $oProp = new DBProperty();
- $oProp->Set('name', $sName);
- $oProp->Set('description', $sDescription);
- $oProp->Set('value', $sValue);
- $oProp->Set('change_date', time());
- $oProp->Set('change_comment', $sComment);
- $oProp->DBInsert();
- }
- elseif ($oSet->Count() == 1)
- {
- $oProp = $oSet->fetch();
- if (!is_null($sDescription))
- {
- $oProp->Set('description', $sDescription);
- }
- $oProp->Set('value', $sValue);
- $oProp->Set('change_date', time());
- $oProp->Set('change_comment', $sComment);
- $oProp->DBUpdate();
- }
- else
- {
- // Houston...
- throw new CoreException('duplicate db property');
- }
- }
- catch (MySQLException $e)
- {
- // This might be because the table could not be found,
- // let's check it and discard silently if this is really the case
- if (self::IsInstalled())
- {
- throw $e;
- }
- IssueLog::Error('Attempting to write a DBProperty while the module has not been installed');
- }
- }
- public static function GetProperty($sName, $default = null)
- {
- try
- {
- $oSearch = DBObjectSearch::FromOQL('SELECT DBProperty WHERE name = :name');
- $oSet = new DBObjectSet($oSearch, array(), array('name' => $sName));
- $iCount = $oSet->Count();
- if ($iCount == 0)
- {
- //throw new CoreException('unknown db property', array('name' => $sName));
- $sValue = $default;
- }
- elseif ($iCount == 1)
- {
- $oProp = $oSet->fetch();
- $sValue = $oProp->Get('value');
- }
- else
- {
- // $iCount > 1
- // Houston...
- throw new CoreException('duplicate db property', array('name' => $sName, 'count' => $iCount));
- }
- }
- catch (MySQLException $e)
- {
- // This might be because the table could not be found,
- // let's check it and discard silently if this is really the case
- if (self::IsInstalled())
- {
- throw $e;
- }
- $sValue = $default;
- }
- return $sValue;
- }
- }
- ?>
|