synchrodatasource.class.inc.php 97 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337
  1. <?php
  2. // Copyright (C) 2010 Combodo SARL
  3. //
  4. // This program is free software; you can redistribute it and/or modify
  5. // it under the terms of the GNU General Public License as published by
  6. // the Free Software Foundation; version 3 of the License.
  7. //
  8. // This program is distributed in the hope that it will be useful,
  9. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. // GNU General Public License for more details.
  12. //
  13. // You should have received a copy of the GNU General Public License
  14. // along with this program; if not, write to the Free Software
  15. // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  16. /**
  17. * Data Exchange - synchronization with external applications (incoming data)
  18. *
  19. * @author Erwan Taloc <erwan.taloc@combodo.com>
  20. * @author Romain Quetiez <romain.quetiez@combodo.com>
  21. * @author Denis Flaven <denis.flaven@combodo.com>
  22. * @license http://www.opensource.org/licenses/gpl-3.0.html LGPL
  23. */
  24. class SynchroExceptionNotStarted extends CoreException
  25. {
  26. }
  27. class SynchroDataSource extends cmdbAbstractObject
  28. {
  29. public static function Init()
  30. {
  31. $aParams = array
  32. (
  33. "category" => "core/cmdb,view_in_gui",
  34. "key_type" => "autoincrement",
  35. "name_attcode" => array('name'),
  36. "state_attcode" => "",
  37. "reconc_keys" => array(),
  38. "db_table" => "priv_sync_datasource",
  39. "db_key_field" => "id",
  40. "db_finalclass_field" => "realclass",
  41. "display_template" => "",
  42. "icon" => "../images/synchro.png",
  43. );
  44. MetaModel::Init_Params($aParams);
  45. //MetaModel::Init_InheritAttributes();
  46. MetaModel::Init_AddAttribute(new AttributeString("name", array("allowed_values"=>null, "sql"=>"name", "default_value"=>null, "is_null_allowed"=>false, "depends_on"=>array())));
  47. MetaModel::Init_AddAttribute(new AttributeString("description", array("allowed_values"=>null, "sql"=>"description", "default_value"=>null, "is_null_allowed"=>true, "depends_on"=>array())));
  48. MetaModel::Init_AddAttribute(new AttributeEnum("status", array("allowed_values"=>new ValueSetEnum('implementation,production,obsolete'), "sql"=>"status", "default_value"=>"implementation", "is_null_allowed"=>false, "depends_on"=>array())));
  49. MetaModel::Init_AddAttribute(new AttributeExternalKey("user_id", array("targetclass"=>"User", "jointype"=>null, "allowed_values"=>null, "sql"=>"user_id", "is_null_allowed"=>true, "on_target_delete"=>DEL_MANUAL, "depends_on"=>array())));
  50. MetaModel::Init_AddAttribute(new AttributeExternalKey("notify_contact_id", array("targetclass"=>"Contact", "jointype"=>null, "allowed_values"=>null, "sql"=>"notify_contact_id", "is_null_allowed"=>true, "on_target_delete"=>DEL_MANUAL, "depends_on"=>array())));
  51. MetaModel::Init_AddAttribute(new AttributeClass("scope_class", array("class_category"=>"bizmodel,addon/authentication", "more_values"=>"", "sql"=>"scope_class", "default_value"=>null, "is_null_allowed"=>false, "depends_on"=>array())));
  52. // Declared here for a future usage, but ignored so far
  53. MetaModel::Init_AddAttribute(new AttributeString("scope_restriction", array("allowed_values"=>null, "sql"=>"scope_restriction", "default_value"=>null, "is_null_allowed"=>true, "depends_on"=>array())));
  54. //MetaModel::Init_AddAttribute(new AttributeDateTime("last_synchro_date", array("allowed_values"=>null, "sql"=>"last_synchro_date", "default_value"=>"", "is_null_allowed"=>false, "depends_on"=>array())));
  55. // Format: seconds (int)
  56. MetaModel::Init_AddAttribute(new AttributeDuration("full_load_periodicity", array("allowed_values"=>null, "sql"=>"full_load_periodicity", "default_value"=>86400, "is_null_allowed"=>true, "depends_on"=>array())));
  57. // MetaModel::Init_AddAttribute(new AttributeString("reconciliation_list", array("allowed_values"=>null, "sql"=>"reconciliation_list", "default_value"=>null, "is_null_allowed"=>false, "depends_on"=>array())));
  58. MetaModel::Init_AddAttribute(new AttributeEnum("reconciliation_policy", array("allowed_values"=>new ValueSetEnum('use_primary_key,use_attributes'), "sql"=>"reconciliation_policy", "default_value"=>"use_attributes", "is_null_allowed"=>false, "depends_on"=>array())));
  59. MetaModel::Init_AddAttribute(new AttributeEnum("action_on_zero", array("allowed_values"=>new ValueSetEnum('create,error'), "sql"=>"action_on_zero", "default_value"=>"create", "is_null_allowed"=>false, "depends_on"=>array())));
  60. MetaModel::Init_AddAttribute(new AttributeEnum("action_on_one", array("allowed_values"=>new ValueSetEnum('update,error'), "sql"=>"action_on_one", "default_value"=>"update", "is_null_allowed"=>false, "depends_on"=>array())));
  61. MetaModel::Init_AddAttribute(new AttributeEnum("action_on_multiple", array("allowed_values"=>new ValueSetEnum('take_first,create,error'), "sql"=>"action_on_multiple", "default_value"=>"error", "is_null_allowed"=>false, "depends_on"=>array())));
  62. MetaModel::Init_AddAttribute(new AttributeEnum("delete_policy", array("allowed_values"=>new ValueSetEnum('ignore,delete,update,update_then_delete'), "sql"=>"delete_policy", "default_value"=>"ignore", "is_null_allowed"=>false, "depends_on"=>array())));
  63. MetaModel::Init_AddAttribute(new AttributeString("delete_policy_update", array("allowed_values"=>null, "sql"=>"delete_policy_update", "default_value"=>null, "is_null_allowed"=>true, "depends_on"=>array())));
  64. // Format: seconds (unsigned int)
  65. MetaModel::Init_AddAttribute(new AttributeDuration("delete_policy_retention", array("allowed_values"=>null, "sql"=>"delete_policy_retention", "default_value"=>null, "is_null_allowed"=>true, "depends_on"=>array())));
  66. MetaModel::Init_AddAttribute(new AttributeLinkedSet("attribute_list", array("linked_class"=>"SynchroAttribute", "ext_key_to_me"=>"sync_source_id", "allowed_values"=>null, "count_min"=>0, "count_max"=>0, "depends_on"=>array())));
  67. // Not used yet !
  68. MetaModel::Init_AddAttribute(new AttributeEnum("user_delete_policy", array("allowed_values"=>new ValueSetEnum('everybody,administrators,nobody'), "sql"=>"user_delete_policy", "default_value"=>"nobody", "is_null_allowed"=>true, "depends_on"=>array())));
  69. MetaModel::Init_AddAttribute(new AttributeURL("url_icon", array("allowed_values"=>null, "sql"=>"url_icon", "default_value"=>null, "is_null_allowed"=>true, "target"=> '_top', "depends_on"=>array())));
  70. // The field below is not a real URL since it can contain placeholders like $replica->primary_key$ which are not syntactically allowed in a real URL
  71. MetaModel::Init_AddAttribute(new AttributeString("url_application", array("allowed_values"=>null, "sql"=>"url_application", "default_value"=>null, "is_null_allowed"=>true, "depends_on"=>array())));
  72. // Display lists
  73. MetaModel::Init_SetZListItems('details', array(
  74. 'col:0'=> array(
  75. 'fieldset:SynchroDataSource:Description' => array('name','description','status','scope_class','user_id','notify_contact_id','url_icon','url_application')),
  76. 'col:1'=> array(
  77. 'fieldset:SynchroDataSource:Reconciliation' => array('reconciliation_policy','action_on_zero','action_on_one','action_on_multiple'),
  78. 'fieldset:SynchroDataSource:Deletion' => array('user_delete_policy','full_load_periodicity','delete_policy','delete_policy_update','delete_policy_retention'))
  79. )
  80. );
  81. MetaModel::Init_SetZListItems('list', array('scope_class', 'status', 'user_id', 'full_load_periodicity')); // Attributes to be displayed for a list
  82. // Search criteria
  83. MetaModel::Init_SetZListItems('standard_search', array('name', 'status', 'scope_class', 'user_id')); // Criteria of the std search form
  84. // MetaModel::Init_SetZListItems('advanced_search', array('name')); // Criteria of the advanced search form
  85. }
  86. public static $m_oCurrentTask = null;
  87. public static function GetCurrentTaskId()
  88. {
  89. if (is_object(self::$m_oCurrentTask))
  90. {
  91. return self::$m_oCurrentTask->GetKey();
  92. }
  93. else
  94. {
  95. return null;
  96. }
  97. }
  98. public function DisplayBareRelations(WebPage $oPage, $bEditMode = false)
  99. {
  100. if (!$this->IsNew())
  101. {
  102. $oPage->SetCurrentTab(Dict::S('Core:SynchroAttributes'));
  103. $oAttributeSet = $this->Get('attribute_list');
  104. $aAttributes = array();
  105. while($oAttribute = $oAttributeSet->Fetch())
  106. {
  107. $aAttributes[$oAttribute->Get('attcode')] = $oAttribute;
  108. }
  109. // Columns of the form
  110. $aAttribs = array();
  111. foreach(array('attcode', 'reconciliation', 'update', 'update_policy', 'reconciliation_attcode') as $s )
  112. {
  113. $aAttribs[$s] = array( 'label' => Dict::S("Core:SynchroAtt:$s"), "description" => Dict::S("Core:SynchroAtt:$s+"));
  114. }
  115. // Rows of the form
  116. $aValues = array();
  117. foreach(MetaModel::ListAttributeDefs($this->GetTargetClass()) as $sAttCode=>$oAttDef)
  118. {
  119. if ($oAttDef->IsWritable())
  120. {
  121. if (isset($aAttributes[$sAttCode]))
  122. {
  123. $oAttribute = $aAttributes[$sAttCode];
  124. }
  125. else
  126. {
  127. if ($oAttDef->IsExternalKey())
  128. {
  129. $oAttribute = new SynchroAttExtKey();
  130. $oAttribute->Set('reconciliation_attcode', ''); // Blank means by pkey
  131. }
  132. elseif ($oAttDef->IsLinkSet() && $oAttDef->IsIndirect())
  133. {
  134. $oAttribute = new SynchroAttLinkSet();
  135. // Todo - add these settings into the form
  136. $oAttribute->Set('row_separator', MetaModel::GetConfig()->Get('link_set_item_separator'));
  137. $oAttribute->Set('attribute_separator', MetaModel::GetConfig()->Get('link_set_attribute_separator'));
  138. $oAttribute->Set('value_separator', MetaModel::GetConfig()->Get('link_set_value_separator'));
  139. $oAttribute->Set('attribute_qualifier', MetaModel::GetConfig()->Get('link_set_attribute_qualifier'));
  140. }
  141. elseif ($oAttDef->IsScalar())
  142. {
  143. $oAttribute = new SynchroAttribute();
  144. }
  145. else
  146. {
  147. $oAttribute = null;
  148. }
  149. if (!is_null($oAttribute))
  150. {
  151. $oAttribute->Set('sync_source_id', $this->GetKey());
  152. $oAttribute->Set('attcode', $sAttCode);
  153. $oAttribute->Set('reconcile', MetaModel::IsReconcKey($this->GetTargetClass(), $sAttCode) ? 1 : 0);
  154. $oAttribute->Set('update', 1);
  155. $oAttribute->Set('update_policy', 'master_locked');
  156. }
  157. }
  158. if (!is_null($oAttribute))
  159. {
  160. if (!$bEditMode)
  161. {
  162. // Read-only mode
  163. $aRow['reconciliation'] = $oAttribute->Get('reconcile') == 1 ? Dict::S('Core:SynchroReconcile:Yes') : Dict::S('Core:SynchroReconcile:No');
  164. $aRow['update'] = $oAttribute->Get('update') == 1 ? Dict::S('Core:SynchroUpdate:Yes') : Dict::S('Core:SynchroUpdate:No');
  165. $aRow['attcode'] = MetaModel::GetLabel($this->GetTargetClass(), $oAttribute->Get('attcode'));
  166. $aRow['update_policy'] = $oAttribute->GetAsHTML('update_policy');
  167. if ($oAttDef->IsExternalKey())
  168. {
  169. $aRow['reconciliation_attcode'] = $oAttribute->GetAsHTML('reconciliation_attcode');
  170. }
  171. else
  172. {
  173. $aRow['reconciliation_attcode'] = '&nbsp;';
  174. }
  175. }
  176. else
  177. {
  178. // Edit mode
  179. $sAttCode = $oAttribute->Get('attcode');
  180. $sChecked = $oAttribute->Get('reconcile') == 1 ? 'checked' : '';
  181. $aRow['reconciliation'] = "<input type=\"checkbox\" name=\"reconciliation[$sAttCode]\" $sChecked/>";
  182. $sChecked = $oAttribute->Get('update') == 1 ? 'checked' : '';
  183. $aRow['update'] = "<input type=\"checkbox\" name=\"update[$sAttCode]\" $sChecked/>";
  184. $aRow['attcode'] = MetaModel::GetLabel($this->GetTargetClass(), $oAttribute->Get('attcode'));
  185. $oUpdateAttDef = MetaModel::GetAttributeDef(get_class($oAttribute), 'update_policy');
  186. $aRow['update_policy'] = cmdbAbstractObject::GetFormElementForField($oPage, get_class($oAttribute), 'update_policy', $oUpdateAttDef, $oAttribute->Get('update_policy'), '', 'update_policy_'.$sAttCode, "[$sAttCode]");
  187. if ($oAttDef->IsExternalKey())
  188. {
  189. $aRow['reconciliation_attcode'] = $oAttribute->GetReconciliationFormElement($oAttDef->GetTargetClass(), "attr_reconciliation_attcode[$sAttCode]");
  190. }
  191. else
  192. {
  193. $aRow['reconciliation_attcode'] = '&nbsp;';
  194. }
  195. }
  196. $aValues[] = $aRow;
  197. }
  198. }
  199. }
  200. $oPage->p(Dict::Format('Class:SynchroDataSource:DataTable', $this->GetDataTable()));
  201. $oPage->Table($aAttribs, $aValues);
  202. $this->DisplayStatusTab($oPage);
  203. }
  204. parent::DisplayBareRelations($oPage, $bEditMode);
  205. }
  206. /**
  207. * Displays the status (SynchroLog) of the datasource in a graphical manner
  208. * @param $oPage WebPage
  209. * @return void
  210. */
  211. protected function DisplayStatusTab(WebPage $oPage)
  212. {
  213. $oPage->SetCurrentTab(Dict::S('Core:SynchroStatus'));
  214. $sSelectSynchroLog = 'SELECT SynchroLog WHERE sync_source_id = :source_id';
  215. $oSetSynchroLog = new CMDBObjectSet(DBObjectSearch::FromOQL($sSelectSynchroLog), array('start_date' => false) /* order by*/, array('source_id' => $this->GetKey()));
  216. if ($oSetSynchroLog->Count() > 0)
  217. {
  218. $oLastLog = $oSetSynchroLog->Fetch();
  219. $sStartDate = $oLastLog->Get('start_date');
  220. $oLastLog->Get('stats_nb_replica_seen');
  221. $iLastLog = 0;
  222. $iDSid = $this->GetKey();
  223. if ($oLastLog->Get('status') == 'running')
  224. {
  225. // Still running !
  226. $oPage->p('<h2>'.Dict::Format('Core:Synchro:SynchroRunningStartedOn_Date', $sStartDate).'</h2>');
  227. }
  228. else
  229. {
  230. $sEndDate = $oLastLog->Get('end_date');
  231. $iLastLog = $oLastLog->GetKey();
  232. $oPage->p('<h2>'.Dict::Format('Core:Synchro:SynchroEndedOn_Date', $sEndDate).'</h2>');
  233. $sOQL = "SELECT SynchroReplica WHERE sync_source_id=$iDSid";
  234. $oSet = new DBObjectSet(DBObjectSearch::FromOQL($sOQL));
  235. $iCountAllReplicas = $oSet->Count();
  236. $sAllReplicas = "<a href=\"../synchro/replica.php?operation=oql&datasource=$iDSid&oql=$sOQL\">$iCountAllReplicas</a>";
  237. $sOQL = "SELECT SynchroReplica WHERE sync_source_id=$iDSid AND status_last_error !=''";
  238. $oSet = new DBObjectSet(DBObjectSearch::FromOQL($sOQL));
  239. $iCountAllErrors = $oSet->Count();
  240. $sAllErrors = "<a href=\"../synchro/replica.php?operation=oql&datasource=$iDSid&oql=$sOQL\">$iCountAllErrors</a>";
  241. $sOQL = "SELECT SynchroReplica WHERE sync_source_id=$iDSid AND status_last_warning !=''";
  242. $oSet = new DBObjectSet(DBObjectSearch::FromOQL($sOQL));
  243. $iCountAllWarnings = $oSet->Count();
  244. $sAllWarnings = "<a href=\"../synchro/replica.php?operation=oql&datasource=$iDSid&oql=$sOQL\">$iCountAllWarnings</a>";
  245. $oPage->p('<h2>'.Dict::Format('Core:Synchro:ListReplicas_AllReplicas_Errors_Warnings', $sAllReplicas, $sAllErrors, $sAllWarnings).'</h2>');
  246. }
  247. $oPage->add('<table class="synoptics"><tr><td style="color:#333;vertical-align:top">');
  248. // List all the log entries for the user to select
  249. $oPage->add('<h2 style="line-height:55px;">'.Dict::S('Core:Synchro:History').'</h2>');
  250. $oSetSynchroLog->Rewind();
  251. $oPage->add('<select size="25" onChange="UpdateSynoptics(this.value);">');
  252. $sSelected = ' selected'; // First log is selected by default
  253. $sScript = "var aSynchroLog = {\n";
  254. while($oLog = $oSetSynchroLog->Fetch())
  255. {
  256. $sLogTitle = Dict::Format('Core:SynchroLogTitle', $oLog->Get('status'), $oLog->Get('start_date'));
  257. $oPage->add('<option value="'.$oLog->GetKey().'"'.$sSelected.'>'.$sLogTitle.'</option>');
  258. $sSelected = ''; // only the first log is selected by default
  259. $aData = $this->ProcessLog($oLog);
  260. $sScript .= '"'.$oLog->GetKey().'": '.json_encode($aData).",\n";
  261. }
  262. $sScript .= "end: 'Done'";
  263. $sScript .= "};\n";
  264. $sScript .= <<<EOF
  265. var sLastLog = '$iLastLog';
  266. function ToggleSynoptics(sId, bShow)
  267. {
  268. if (bShow)
  269. {
  270. $(sId).show();
  271. }
  272. else
  273. {
  274. $(sId).hide();
  275. }
  276. }
  277. function UpdateSynoptics(id)
  278. {
  279. var aValues = aSynchroLog[id];
  280. for (var sKey in aValues)
  281. {
  282. $('#c_'+sKey).html(aValues[sKey]);
  283. var fOpacity = (aValues[sKey] == 0) ? 0.3 : 1;
  284. $('#'+sKey).fadeTo("slow", fOpacity);
  285. }
  286. //alert('id = '+id+', lastLog='+sLastLog+', id==sLastLog: '+(id==sLastLog)+' obj_updated_errors: '+aValues['obj_updated_errors']);
  287. if ( (id == sLastLog) && (aValues['obj_new_errors'] > 0) )
  288. {
  289. $('#new_errors_link').show();
  290. }
  291. else
  292. {
  293. $('#new_errors_link').hide();
  294. }
  295. if ( (id == sLastLog) && (aValues['obj_updated_errors'] > 0) )
  296. {
  297. $('#updated_errors_link').show();
  298. }
  299. else
  300. {
  301. $('#updated_errors_link').hide();
  302. }
  303. if ( (id == sLastLog) && (aValues['obj_disappeared_errors'] > 0) )
  304. {
  305. $('#disappeared_errors_link').show();
  306. }
  307. else
  308. {
  309. $('#disappeared_errors_link').hide();
  310. }
  311. ToggleSynoptics('#cw_obj_created_warnings', aValues['obj_created_warnings'] > 0);
  312. ToggleSynoptics('#cw_obj_new_updated_warnings', aValues['obj_new_updated_warnings'] > 0);
  313. ToggleSynoptics('#cw_obj_new_unchanged_warnings', aValues['obj_new_unchanged_warnings'] > 0);
  314. ToggleSynoptics('#cw_obj_updated_warnings', aValues['obj_updated_warnings'] > 0);
  315. ToggleSynoptics('#cw_obj_unchanged_warnings', aValues['obj_unchanged_warnings'] > 0);
  316. }
  317. EOF
  318. ;
  319. $oPage->add_script($sScript);
  320. $oPage->add('</select>');
  321. $oPage->add('</td><td style="vertical-align:top;">');
  322. // Now build the big "synoptics" view
  323. $aData = $this->ProcessLog($oLastLog);
  324. $sNbReplica = $this->GetIcon()."&nbsp;".Dict::Format('Core:Synchro:Nb_Replica', "<span id=\"c_nb_replica_total\">{$aData['nb_replica_total']}</span>");
  325. $sNbObjects = MetaModel::GetClassIcon($this->GetTargetClass())."&nbsp;".Dict::Format('Core:Synchro:Nb_Class:Objects', $this->GetTargetClass(), "<span id=\"c_nb_obj_total\">{$aData['nb_obj_total']}</span>");
  326. $oPage->add(
  327. <<<EOF
  328. <table class="synoptics">
  329. <tr class="synoptics_header">
  330. <td>$sNbReplica</td><td>&nbsp;</td><td>$sNbObjects</td>
  331. </tr>
  332. <tr>
  333. EOF
  334. );
  335. $sBaseOQL = "SELECT SynchroReplica WHERE sync_source_id=".$this->GetKey()." AND status_last_error!=''";
  336. $oPage->add($this->HtmlBox('repl_ignored', $aData, '#999').'<td colspan="2">&nbsp;</td>');
  337. $oPage->add("</tr>\n<tr>");
  338. $oPage->add($this->HtmlBox('repl_disappeared', $aData, '#630', 'rowspan="4"').'<td rowspan="4" class="arrow">=&gt;</td>'.$this->HtmlBox('obj_disappeared_no_action', $aData, '#333'));
  339. $oPage->add("</tr>\n<tr>");
  340. $oPage->add($this->HtmlBox('obj_deleted', $aData, '#000'));
  341. $oPage->add("</tr>\n<tr>");
  342. $oPage->add($this->HtmlBox('obj_obsoleted', $aData, '#630'));
  343. $oPage->add("</tr>\n<tr>");
  344. $sOQL = urlencode($sBaseOQL." AND status='obsolete'");
  345. $oPage->add($this->HtmlBox('obj_disappeared_errors', $aData, '#C00', '', " <a style=\"color:#fff\" href=\"../synchro/replica.php?operation=oql&datasource=$iDSid&oql=$sOQL\" id=\"disappeared_errors_link\">Show</a>"));
  346. $oPage->add("</tr>\n<tr>");
  347. $oPage->add($this->HtmlBox('repl_existing', $aData, '#093', 'rowspan="3"').'<td rowspan="3" class="arrow">=&gt;</td>'.$this->HtmlBox('obj_unchanged', $aData, '#393'));
  348. $oPage->add("</tr>\n<tr>");
  349. $oPage->add($this->HtmlBox('obj_updated', $aData, '#3C3'));
  350. $oPage->add("</tr>\n<tr>");
  351. $sOQL = urlencode($sBaseOQL." AND status='modified'");
  352. $oPage->add($this->HtmlBox('obj_updated_errors', $aData, '#C00', '', " <a style=\"color:#fff\" href=\"../synchro/replica.php?operation=oql&datasource=$iDSid&oql=$sOQL\" id=\"updated_errors_link\">Show</a>"));
  353. $oPage->add("</tr>\n<tr>");
  354. $oPage->add($this->HtmlBox('repl_new', $aData, '#339', 'rowspan="4"').'<td rowspan="4" class="arrow">=&gt;</td>'.$this->HtmlBox('obj_new_unchanged', $aData, '#393'));
  355. $oPage->add("</tr>\n<tr>");
  356. $oPage->add($this->HtmlBox('obj_new_updated', $aData, '#3C3'));
  357. $oPage->add("</tr>\n<tr>");
  358. $oPage->add($this->HtmlBox('obj_created', $aData, '#339'));
  359. $oPage->add("</tr>\n<tr>");
  360. $sOQL = urlencode($sBaseOQL." AND status='new'");
  361. $oPage->add($this->HtmlBox('obj_new_errors', $aData, '#C00', '', " <a style=\"color:#fff\" href=\"../synchro/replica.php?operation=oql&datasource=$iDSid&oql=$sOQL\" id=\"new_errors_link\">Show</a>"));
  362. $oPage->add("</tr>\n</table>\n");
  363. $oPage->add('</td></tr></table>');
  364. $oPage->add_ready_script("UpdateSynoptics('$iLastLog')");
  365. }
  366. else
  367. {
  368. $oPage->p('<h2>'.Dict::S('Core:Synchro:NeverRun').'</h2>');
  369. }
  370. }
  371. protected function HtmlBox($sId, $aData, $sColor, $sHTMLAttribs = '', $sErrorLink = '')
  372. {
  373. $iCount = $aData[$sId];
  374. $sCount = "<span id=\"c_{$sId}\">$iCount</span>";
  375. $sLabel = Dict::Format('Core:Synchro:label_'.$sId, $sCount);
  376. $sOpacity = ($iCount==0) ? "opacity:0.3;" : "";
  377. if (isset($aData[$sId.'_warnings']))
  378. {
  379. $sLabel .= " <span id=\"cw_{$sId}_warnings\"><img src=\"../images/error.png\" style=\"vertical-align:middle\"/> (<span id=\"c_{$sId}_warnings\">".$aData[$sId.'_warnings']."</span>)</span>";
  380. }
  381. return "<td id=\"$sId\" style=\"background-color:$sColor;$sOpacity;\" {$sHTMLAttribs}>{$sLabel}{$sErrorLink}</td>";
  382. }
  383. protected function ProcessLog($oLastLog)
  384. {
  385. $aData = array(
  386. 'obj_deleted' => $oLastLog->Get('stats_nb_obj_deleted'),
  387. 'obj_obsoleted' => $oLastLog->Get('stats_nb_obj_obsoleted'),
  388. 'obj_disappeared_errors' => $oLastLog->Get('stats_nb_obj_obsoleted_errors') + $oLastLog->Get('stats_nb_obj_deleted_errors'),
  389. 'obj_disappeared_no_action' => $oLastLog->Get('stats_nb_replica_disappeared_no_action'),
  390. 'obj_updated' => $oLastLog->Get('stats_nb_obj_updated'),
  391. 'obj_updated_warnings' => $oLastLog->Get('stats_nb_obj_updated_warnings'),
  392. 'obj_updated_errors' => $oLastLog->Get('stats_nb_obj_updated_errors'),
  393. 'obj_new_updated' => $oLastLog->Get('stats_nb_obj_new_updated'),
  394. 'obj_new_updated_warnings' => $oLastLog->Get('stats_nb_obj_new_updated_warnings'),
  395. 'obj_new_unchanged' => $oLastLog->Get('stats_nb_obj_new_unchanged'),
  396. 'obj_created' => $oLastLog->Get('stats_nb_obj_created'),
  397. 'obj_created_warnings' => $oLastLog->Get('stats_nb_obj_created_warnings'),
  398. 'obj_created_errors' => $oLastLog->Get('stats_nb_obj_created_errors'),
  399. 'obj_unchanged_warnings' => $oLastLog->Get('stats_nb_obj_unchanged_warnings'),
  400. );
  401. $iReconciledErrors = $oLastLog->Get('stats_nb_replica_reconciled_errors');
  402. $iDisappeared = $aData['obj_disappeared_errors'] + $aData['obj_obsoleted'] + $aData['obj_deleted'] + $aData['obj_disappeared_no_action'];
  403. $aData['repl_disappeared'] = $iDisappeared;
  404. $iNewErrors = $aData['obj_created_errors'] + $oLastLog->Get('stats_nb_replica_reconciled_errors');
  405. $aData['obj_new_errors'] = $iNewErrors;
  406. $iNew = $aData['obj_created'] + $iNewErrors + $aData['obj_new_updated'] + $aData['obj_new_unchanged'];
  407. $aData['repl_new'] = $iNew;
  408. $iExisting = $oLastLog->Get('stats_nb_replica_seen') - $iNew;
  409. $aData['repl_existing'] = $iExisting;
  410. $aData['obj_unchanged'] = $iExisting - $aData['obj_updated'] - $aData['obj_updated_errors'];
  411. $iIgnored = $oLastLog->Get('stats_nb_replica_total') - $iNew - $iExisting - $iDisappeared;
  412. $aData['repl_ignored'] = $iIgnored;
  413. $aData['nb_obj_total'] = $iNew + $iExisting + $iDisappeared;
  414. $aData['nb_replica_total'] = $aData['nb_obj_total'] + $iIgnored;
  415. return $aData;
  416. }
  417. public function GetIcon($bImgTag = true, $sMoreStyles = '')
  418. {
  419. if ($this->Get('url_icon') == '') return MetaModel::GetClassIcon(get_class($this), $bImgTag);
  420. if ($bImgTag)
  421. {
  422. return "<img src=\"".$this->Get('url_icon')."\" style=\"vertical-align:middle;$sMoreStyles\"/>";
  423. }
  424. return $this->Get('url_icon');
  425. }
  426. /**
  427. * Get the actual hyperlink to the remote application for the given replica and dest object
  428. */
  429. public function GetApplicationUrl(DBObject $oDestObj, SynchroReplica $oReplica)
  430. {
  431. if ($this->Get('url_application') == '') return '';
  432. $aSearches = array();
  433. $aReplacements = array();
  434. foreach(MetaModel::ListAttributeDefs($this->GetTargetClass()) as $sAttCode=>$oAttDef)
  435. {
  436. if ($oAttDef->IsScalar())
  437. {
  438. $aSearches[] = '$this->'.$sAttCode.'$';
  439. $aReplacements[] = $oDestObj->Get($sAttCode);
  440. }
  441. }
  442. $aData = $oReplica->LoadExtendedDataFromTable($this->GetDataTable());
  443. foreach($aData as $sColumn => $value)
  444. {
  445. $aSearches[] = '$replica->'.$sColumn.'$';
  446. $aReplacements[] = $value;
  447. }
  448. return str_replace($aSearches, $aReplacements, $this->Get('url_application'));
  449. }
  450. public function GetAttributeFlags($sAttCode, &$aReasons = array(), $sTargetState = '')
  451. {
  452. if (($sAttCode == 'scope_class') && (!$this->IsNew()))
  453. {
  454. return OPT_ATT_READONLY;
  455. }
  456. return parent::GetAttributeFlags($sAttCode, $aReasons, $sTargetState);
  457. }
  458. public function UpdateObjectFromPostedForm($sFormPrefix = '', $sAttList = null, $sTargetState = '')
  459. {
  460. parent::UpdateObjectFromPostedForm($sFormPrefix, $sAttList, $sTargetState);
  461. // And now read the other post parameters...
  462. $oAttributeSet = $this->Get('attribute_list');
  463. $aAttributes = array();
  464. while($oAttribute = $oAttributeSet->Fetch())
  465. {
  466. $aAttributes[$oAttribute->Get('attcode')] = $oAttribute;
  467. }
  468. $aReconcile = utils::ReadPostedParam('reconciliation', array());
  469. $aUpdate = utils::ReadPostedParam('update', array());
  470. $aUpdatePolicy = utils::ReadPostedParam('attr_update_policy', array());
  471. $aReconciliation = utils::ReadPostedParam('attr_reconciliation_attcode', array());
  472. // update_policy cannot be empty, so there is one entry per attribute, use this to iterate
  473. // through all the writable attributes
  474. foreach($aUpdatePolicy as $sAttCode => $sValue)
  475. {
  476. if(!isset($aAttributes[$sAttCode]))
  477. {
  478. $oAttribute = $this->CreateSynchroAtt($sAttCode);
  479. }
  480. else
  481. {
  482. $oAttribute = $aAttributes[$sAttCode];
  483. }
  484. $bReconcile = 0;
  485. if (isset($aReconcile[$sAttCode]))
  486. {
  487. $bReconcile = $aReconcile[$sAttCode] == 'on' ? 1 : 0;
  488. }
  489. $bUpdate = 0 ; // Default / initial value
  490. if (isset($aUpdate[$sAttCode]))
  491. {
  492. $bUpdate = $aUpdate[$sAttCode] == 'on' ? 1 : 0;
  493. }
  494. $oAttribute->Set('reconcile', $bReconcile);
  495. $oAttribute->Set('update', $bUpdate);
  496. $oAttribute->Set('update_policy', $sValue);
  497. if ($oAttribute instanceof SynchroAttExtKey)
  498. {
  499. $oAttribute->Set('reconciliation_attcode', $aReconciliation[$sAttCode]);
  500. }
  501. elseif ($oAttribute instanceof SynchroAttLinkSet)
  502. {
  503. }
  504. $oAttributeSet->AddObject($oAttribute);
  505. }
  506. $this->Set('attribute_list', $oAttributeSet);
  507. }
  508. /**
  509. * Creates a new SynchroAttXXX object in memory with the default values
  510. */
  511. protected function CreateSynchroAtt($sAttCode)
  512. {
  513. $oAttDef = MetaModel::GetAttributeDef($this->GetTargetClass(), $sAttCode);
  514. if ($oAttDef->IsExternalKey())
  515. {
  516. $oAttribute = new SynchroAttExtKey();
  517. $oAttribute->Set('reconciliation_attcode', ''); // Blank means by pkey
  518. }
  519. elseif ($oAttDef->IsLinkSet() && $oAttDef->IsIndirect())
  520. {
  521. $oAttribute = new SynchroAttLinkSet();
  522. // Todo - set those value from the form
  523. $oAttribute->Set('row_separator', MetaModel::GetConfig()->Get('link_set_item_separator'));
  524. $oAttribute->Set('attribute_separator', MetaModel::GetConfig()->Get('link_set_attribute_separator'));
  525. $oAttribute->Set('value_separator', MetaModel::GetConfig()->Get('link_set_value_separator'));
  526. $oAttribute->Set('attribute_qualifier', MetaModel::GetConfig()->Get('link_set_attribute_qualifier'));
  527. }
  528. else
  529. {
  530. $oAttribute = new SynchroAttribute();
  531. }
  532. $oAttribute->Set('sync_source_id', $this->GetKey());
  533. $oAttribute->Set('attcode', $sAttCode);
  534. $oAttribute->Set('reconcile', 0);
  535. $oAttribute->Set('update', 0);
  536. $oAttribute->Set('update_policy', 'master_locked');
  537. return $oAttribute;
  538. }
  539. /**
  540. * Overload the standard behavior
  541. */
  542. public function ComputeValues()
  543. {
  544. parent::ComputeValues();
  545. if ($this->IsNew())
  546. {
  547. // When inserting a new datasource object, also create the SynchroAttribute objects
  548. // for each field of the target class
  549. // Create all the SynchroAttribute records
  550. $oAttributeSet = $this->Get('attribute_list');
  551. if ($oAttributeSet->Count() == 0)
  552. {
  553. foreach(MetaModel::ListAttributeDefs($this->GetTargetClass()) as $sAttCode=>$oAttDef)
  554. {
  555. if ($oAttDef->IsWritable())
  556. {
  557. $oAttDef = MetaModel::GetAttributeDef($this->GetTargetClass(), $sAttCode);
  558. if ($oAttDef->IsExternalKey())
  559. {
  560. $oAttribute = new SynchroAttExtKey();
  561. $oAttribute->Set('reconciliation_attcode', ''); // Blank means by pkey
  562. }
  563. elseif ($oAttDef->IsLinkSet() && $oAttDef->IsIndirect())
  564. {
  565. $oAttribute = new SynchroAttLinkSet();
  566. // Todo - set those value from the form
  567. $oAttribute->Set('row_separator', MetaModel::GetConfig()->Get('link_set_item_separator'));
  568. $oAttribute->Set('attribute_separator', MetaModel::GetConfig()->Get('link_set_attribute_separator'));
  569. $oAttribute->Set('value_separator', MetaModel::GetConfig()->Get('link_set_value_separator'));
  570. $oAttribute->Set('attribute_qualifier', MetaModel::GetConfig()->Get('link_set_attribute_qualifier'));
  571. }
  572. elseif ($oAttDef->IsScalar())
  573. {
  574. $oAttribute = new SynchroAttribute();
  575. }
  576. else
  577. {
  578. $oAttribute = null;
  579. }
  580. if (!is_null($oAttribute))
  581. {
  582. $oAttribute->Set('sync_source_id', $this->GetKey());
  583. $oAttribute->Set('attcode', $sAttCode);
  584. $oAttribute->Set('reconcile', MetaModel::IsReconcKey($this->GetTargetClass(), $sAttCode) ? 1 : 0);
  585. $oAttribute->Set('update', 1);
  586. $oAttribute->Set('update_policy', 'master_locked');
  587. $oAttributeSet->AddObject($oAttribute);
  588. }
  589. }
  590. }
  591. $this->Set('attribute_list', $oAttributeSet);
  592. }
  593. }
  594. }
  595. public function DoCheckToWrite()
  596. {
  597. parent::DoCheckToWrite();
  598. // Check that there is at least one reconciliation key defined
  599. if ($this->Get('reconciliation_policy') == 'use_attributes')
  600. {
  601. $oSet = $this->Get('attribute_list');
  602. $oSynchroAttributeList = $oSet->ToArray();
  603. $bReconciliationKey = false;
  604. foreach($oSynchroAttributeList as $oSynchroAttribute)
  605. {
  606. if ($oSynchroAttribute->Get('reconcile') == 1)
  607. {
  608. $bReconciliationKey = true; // At least one key is defined
  609. break;
  610. }
  611. }
  612. if (!$bReconciliationKey)
  613. {
  614. $this->m_aCheckIssues[] = Dict::Format('Class:SynchroDataSource/Error:AtLeastOneReconciliationKeyMustBeSpecified');
  615. }
  616. }
  617. // If 'update_then_delete' is specified there must be a delete_retention_period
  618. if (($this->Get('delete_policy') == 'update_then_delete') && ($this->Get('delete_policy_retention') == 0))
  619. {
  620. $this->m_aCheckIssues[] = Dict::Format('Class:SynchroDataSource/Error:DeleteRetentionDurationMustBeSpecified');
  621. }
  622. // If update is specified, then something to update must be defined
  623. if ((($this->Get('delete_policy') == 'update_then_delete') || ($this->Get('delete_policy') == 'update'))
  624. && ($this->Get('delete_policy_update') == ''))
  625. {
  626. $this->m_aCheckIssues[] = Dict::Format('Class:SynchroDataSource/Error:DeletePolicyUpdateMustBeSpecified');
  627. }
  628. }
  629. public function GetTargetClass()
  630. {
  631. return $this->Get('scope_class');
  632. }
  633. public function GetDataTable()
  634. {
  635. $sName = strtolower($this->GetTargetClass());
  636. $sName = str_replace('\'"&@|\\/ ', '_', $sName); // Remove forbidden characters from the table name
  637. $sName .= '_'.$this->GetKey(); // Add a suffix for unicity
  638. $sTable = MetaModel::GetConfig()->GetDBSubName()."synchro_data_$sName"; // Add the prefix if any
  639. return $sTable;
  640. }
  641. /**
  642. * When the new datasource has been created, let's create the synchro_data table
  643. * that will hold the data records and the correspoding triggers which will maintain
  644. * both tables in sync
  645. */
  646. protected function AfterInsert()
  647. {
  648. parent::AfterInsert();
  649. $sTable = $this->GetDataTable();
  650. $sReplicaTable = MetaModel::DBGetTable('SynchroReplica');
  651. $aColumns = $this->GetSQLColumns();
  652. $aFieldDefs = array();
  653. // Allow '0', otherwise mysql will render an error when the id is not given
  654. // (the trigger is expected to set the value, but it is not executed soon enough)
  655. $aFieldDefs[] = "id INTEGER(11) NOT NULL DEFAULT 0 ";
  656. $aFieldDefs[] = "`primary_key` VARCHAR(255) NULL DEFAULT NULL";
  657. foreach($aColumns as $sColumn => $ColSpec)
  658. {
  659. $aFieldDefs[] = "`$sColumn` $ColSpec NULL DEFAULT NULL";
  660. }
  661. $aFieldDefs[] = "INDEX (id)";
  662. $aFieldDefs[] = "INDEX (primary_key)";
  663. $sFieldDefs = implode(', ', $aFieldDefs);
  664. $sCreateTable = "CREATE TABLE `$sTable` ($sFieldDefs) ENGINE = innodb;";
  665. CMDBSource::Query($sCreateTable);
  666. $aTriggers = $this->GetTriggersDefinition();
  667. foreach($aTriggers as $key => $sTriggerSQL)
  668. {
  669. CMDBSource::Query($sTriggerSQL);
  670. }
  671. }
  672. /**
  673. * Gets the definitions of the 3 triggers: before insert, before update and after delete
  674. * @return array An array with 3 entries, one for each of the SQL queries
  675. */
  676. protected function GetTriggersDefinition()
  677. {
  678. $sTable = $this->GetDataTable();
  679. $sReplicaTable = MetaModel::DBGetTable('SynchroReplica');
  680. $aColumns = $this->GetSQLColumns();
  681. $aResult = array();
  682. $sTriggerInsert = "CREATE TRIGGER `{$sTable}_bi` BEFORE INSERT ON `$sTable`";
  683. $sTriggerInsert .= " FOR EACH ROW";
  684. $sTriggerInsert .= " BEGIN";
  685. $sTriggerInsert .= " INSERT INTO `{$sReplicaTable}` (`sync_source_id`, `status_last_seen`, `status`) VALUES ({$this->GetKey()}, NOW(), 'new');";
  686. $sTriggerInsert .= " SET NEW.id = LAST_INSERT_ID();";
  687. $sTriggerInsert .= " END;";
  688. $aResult['bi'] = $sTriggerInsert;
  689. $aModified = array();
  690. foreach($aColumns as $sColumn => $ColSpec)
  691. {
  692. // <=> is a null-safe 'EQUALS' operator (there is no equivalent for "DIFFERS FROM")
  693. $aModified[] = "NOT(NEW.`$sColumn` <=> OLD.`$sColumn`)";
  694. }
  695. $sIsModified = '('.implode(') OR (', $aModified).')';
  696. // Update the replica
  697. //
  698. // status is forced to "new" if the replica was obsoleted directly from the state "new" (dest_id = null)
  699. // otherwise, if status was either 'obsolete' or 'synchronized' it is turned into 'modified' or 'synchronized' depending on the changes
  700. // otherwise, the status is left as is
  701. $sTriggerUpdate = "CREATE TRIGGER `{$sTable}_bu` BEFORE UPDATE ON `$sTable`";
  702. $sTriggerUpdate .= " FOR EACH ROW";
  703. $sTriggerUpdate .= " BEGIN";
  704. $sTriggerUpdate .= " IF @itopuser is null THEN";
  705. $sTriggerUpdate .= " UPDATE `{$sReplicaTable}` SET status_last_seen = NOW(), `status` = IF(`status` = 'obsolete', IF(`dest_id` IS NULL, 'new', 'modified'), IF(`status` IN ('synchronized') AND ($sIsModified), 'modified', `status`)) WHERE sync_source_id = {$this->GetKey()} AND id = OLD.id;";
  706. $sTriggerUpdate .= " SET NEW.id = OLD.id;"; // make sure this id won't change
  707. $sTriggerUpdate .= " END IF;";
  708. $sTriggerUpdate .= " END;";
  709. $aResult['bu'] = $sTriggerUpdate;
  710. $sTriggerDelete = "CREATE TRIGGER `{$sTable}_ad` AFTER DELETE ON `$sTable`";
  711. $sTriggerDelete .= " FOR EACH ROW";
  712. $sTriggerDelete .= " BEGIN";
  713. $sTriggerDelete .= " DELETE FROM `{$sReplicaTable}` WHERE id = OLD.id;";
  714. $sTriggerDelete .= " END;";
  715. $aResult['ad'] = $sTriggerDelete;
  716. return $aResult;
  717. }
  718. protected function AfterDelete()
  719. {
  720. parent::AfterDelete();
  721. $sTable = $this->GetDataTable();
  722. $sDropTable = "DROP TABLE `$sTable`";
  723. CMDBSource::Query($sDropTable);
  724. // TO DO - check that triggers get dropped with the table
  725. }
  726. /**
  727. * Checks if the data source definition is consistent with the schema of the target class
  728. * @param $bDiagnostics boolean True to only diagnose the consistency, false to actually apply some changes
  729. * @param $bVerbose boolean True to get some information in the std output (echo)
  730. * @return bool Whether or not the database needs fixing for this data source
  731. */
  732. public function CheckDBConsistency($bDiagnostics, $bVerbose, $oChange = null)
  733. {
  734. $bFixNeeded = false;
  735. $aMissingFields = array();
  736. $oAttributeSet = $this->Get('attribute_list');
  737. $aAttributes = array();
  738. while($oAttribute = $oAttributeSet->Fetch())
  739. {
  740. $sAttCode = $oAttribute->Get('attcode');
  741. if (MetaModel::IsValidAttCode($this->GetTargetClass(), $sAttCode))
  742. {
  743. $aAttributes[$sAttCode] = $oAttribute;
  744. }
  745. else
  746. {
  747. // Old field remaining
  748. if ($bVerbose)
  749. {
  750. echo "Irrelevant field description for the field '$sAttCode', for the data synchro task ".$this->GetName()." (".$this->GetKey()."), will be removed.\n";
  751. }
  752. $bFixNeeded = true;
  753. if (!$bDiagnostics)
  754. {
  755. if ($oChange == null)
  756. {
  757. $oChange = MetaModel::NewObject("CMDBChange");
  758. $oChange->Set("date", time());
  759. $sUserString = CMDBChange::GetCurrentUserName();
  760. $oChange->Set("userinfo", $sUserString);
  761. $oChange->DBInsert();
  762. }
  763. // Fix the issue
  764. $oAttribute->DBDeleteTracked($oChange);
  765. }
  766. }
  767. }
  768. foreach($this->ListTargetAttributes() as $sAttCode=>$oAttDef)
  769. {
  770. if (!isset($aAttributes[$sAttCode]))
  771. {
  772. $bFixNeeded = true;
  773. $aMissingFields[] = $sAttCode;
  774. // New field missing...
  775. if ($bVerbose)
  776. {
  777. echo "Missing field description for the field '$sAttCode', for the data synchro task ".$this->GetName()." (".$this->GetKey()."), will be created with default values.\n";
  778. }
  779. if (!$bDiagnostics)
  780. {
  781. if ($oChange == null)
  782. {
  783. $oChange = MetaModel::NewObject("CMDBChange");
  784. $oChange->Set("date", time());
  785. $sUserString = CMDBChange::GetCurrentUserName();
  786. $oChange->Set("userinfo", $sUserString);
  787. $oChange->DBInsert();
  788. }
  789. // Fix the issue
  790. $oAttribute = $this->CreateSynchroAtt($sAttCode);
  791. $oAttribute->DBInsertTracked($oChange);
  792. }
  793. }
  794. }
  795. $sTable = $this->GetDataTable();
  796. if ($bFixNeeded && (count($aMissingFields) > 0))
  797. {
  798. $aRepairQueries = array();
  799. // The structure of the table needs adjusting
  800. $aColumns = $this->GetSQLColumns($aMissingFields);
  801. $aFieldDefs = array();
  802. foreach($aColumns as $sAttCode => $sColumnDef)
  803. {
  804. if (CMDBSource::IsField($sTable, $sAttCode))
  805. {
  806. $aRepairQueries[] = "ALTER TABLE `$sTable` DROP COLUMN `$sAttCode`;";
  807. }
  808. $aFieldDefs[] = "`$sAttCode` $sColumnDef";
  809. }
  810. $aRepairQueries[] = "ALTER TABLE `$sTable` ADD (".implode(',', $aFieldDefs).");";
  811. // The triggers as well must be adjusted
  812. $aTriggersDefs = $this->GetTriggersDefinition();
  813. $aRepairQueries[] = "DROP TRIGGER IF EXISTS `{$sTable}_bi`;";
  814. $aRepairQueries[] = $aTriggersDefs['bi'];
  815. $aRepairQueries[] = "DROP TRIGGER IF EXISTS `{$sTable}_bu`;";
  816. $aRepairQueries[] = $aTriggersDefs['bu'];
  817. $aRepairQueries[] = "DROP TRIGGER IF EXISTS `{$sTable}_ad`;";
  818. $aRepairQueries[] = $aTriggersDefs['ad'];
  819. if ($bDiagnostics)
  820. {
  821. if ($bVerbose)
  822. {
  823. // Report the issue
  824. echo "The structure of the table $sTable for the data synchro task ".$this->GetName()." (".$this->GetKey().") must be altered (missing fields: ".implode(',', $aMissingFields).").\n";
  825. echo "The trigger {$sTable}_bi, {$sTable}_bu, {$sTable}_ad for the data synchro task ".$this->GetName()." (".$this->GetKey().") must be re-created.\n";
  826. echo implode("\n", $aRepairQueries)."\n";
  827. }
  828. }
  829. else
  830. {
  831. // Fix the issue
  832. foreach($aRepairQueries as $sSQL)
  833. {
  834. CMDBSource::Query($sSQL);
  835. if ($bVerbose)
  836. {
  837. echo "$sSQL\n";
  838. }
  839. }
  840. }
  841. }
  842. return $bFixNeeded;
  843. }
  844. protected function SendNotification($sSubject, $sBody)
  845. {
  846. $iContact = $this->Get('notify_contact_id');
  847. if ($iContact == 0)
  848. {
  849. // Leave silently...
  850. return;
  851. }
  852. $oContact = MetaModel::GetObject('Contact', $iContact);
  853. // Determine the email attribute (the first one will be our choice)
  854. $sEmailAttCode = null;
  855. foreach (MetaModel::ListAttributeDefs(get_class($oContact)) as $sAttCode => $oAttDef)
  856. {
  857. if ($oAttDef instanceof AttributeEmailAddress)
  858. {
  859. $sEmailAttCode = $sAttCode;
  860. // we've got one, exit the loop
  861. break;
  862. }
  863. }
  864. if (is_null($sEmailAttCode))
  865. {
  866. // Leave silently...
  867. return;
  868. }
  869. $sTo = $oContact->Get($sEmailAttCode);
  870. $sFrom = $sTo;
  871. $sBody = '<p>Data synchronization: '.$this->GetHyperlink().'</p>'.$sBody;
  872. $sSubject = 'iTop Data Sync - '.$this->GetName().' - '.$sSubject;
  873. $oEmail = new Email();
  874. $oEmail->SetRecipientTO($sTo);
  875. $oEmail->SetRecipientFrom($sFrom);
  876. $oEmail->SetSubject($sSubject);
  877. $oEmail->SetBody($sBody);
  878. if ($oEmail->Send($aIssues) == EMAIL_SEND_ERROR)
  879. {
  880. // mmmm, what can I do?
  881. }
  882. }
  883. /**
  884. * Perform a synchronization between the data stored in the replicas (&synchro_data_xxx_xx table)
  885. * and the iTop objects. If the lastFullLoadStartDate is NOT specified then the full_load_periodicity
  886. * is used to determine which records are obsolete.
  887. * @param Hash $aTraces Debugs/Trace information, one or more entries per replica
  888. * @param DateTime $oLastFullLoadStartDate Date of the last full load (start date/time), if known
  889. * @return void
  890. */
  891. public function Synchronize($oLastFullLoadStartDate = null)
  892. {
  893. // Create a change used for logging all the modifications/creations happening during the synchro
  894. $oMyChange = MetaModel::NewObject("CMDBChange");
  895. $oMyChange->Set("date", time());
  896. $sUserString = CMDBChange::GetCurrentUserName();
  897. $oMyChange->Set("userinfo", $sUserString.' '.Dict::S('Core:SyncDataExchangeComment'));
  898. $iChangeId = $oMyChange->DBInsert();
  899. // Start logging this execution (stats + protection against reentrance)
  900. //
  901. $oStatLog = new SynchroLog();
  902. $oStatLog->Set('sync_source_id', $this->GetKey());
  903. $oStatLog->Set('start_date', time());
  904. $oStatLog->Set('status', 'running');
  905. $oStatLog->Set('stats_nb_replica_seen', 0);
  906. $oStatLog->Set('stats_nb_replica_total', 0);
  907. $oStatLog->Set('stats_nb_obj_deleted', 0);
  908. $oStatLog->Set('stats_nb_obj_deleted_errors', 0);
  909. $oStatLog->Set('stats_nb_obj_obsoleted', 0);
  910. $oStatLog->Set('stats_nb_obj_obsoleted_errors', 0);
  911. $oStatLog->Set('stats_nb_obj_created', 0);
  912. $oStatLog->Set('stats_nb_obj_created_errors', 0);
  913. $oStatLog->Set('stats_nb_obj_created_warnings', 0);
  914. $oStatLog->Set('stats_nb_obj_updated', 0);
  915. $oStatLog->Set('stats_nb_obj_updated_warnings', 0);
  916. $oStatLog->Set('stats_nb_obj_updated_errors', 0);
  917. $oStatLog->Set('stats_nb_obj_unchanged_warnings', 0);
  918. // $oStatLog->Set('stats_nb_replica_reconciled', 0);
  919. $oStatLog->Set('stats_nb_replica_reconciled_errors', 0);
  920. $oStatLog->Set('stats_nb_replica_disappeared_no_action', 0);
  921. $oStatLog->Set('stats_nb_obj_new_updated', 0);
  922. $oStatLog->Set('stats_nb_obj_new_updated_warnings', 0);
  923. $oStatLog->Set('stats_nb_obj_new_unchanged',0);
  924. $oStatLog->Set('stats_nb_obj_new_unchanged_warnings',0);
  925. $sSelectTotal = "SELECT SynchroReplica WHERE sync_source_id = :source_id";
  926. $oSetTotal = new DBObjectSet(DBObjectSearch::FromOQL($sSelectTotal), array() /* order by*/, array('source_id' => $this->GetKey()));
  927. $oStatLog->Set('stats_nb_replica_total', $oSetTotal->Count());
  928. $oStatLog->DBInsertTracked($oMyChange);
  929. self::$m_oCurrentTask = $this;
  930. try
  931. {
  932. $this->DoSynchronize($oLastFullLoadStartDate, $oMyChange, $oStatLog);
  933. $oStatLog->Set('end_date', time());
  934. $oStatLog->Set('status', 'completed');
  935. $oStatLog->DBUpdateTracked($oMyChange);
  936. $iErrors = $oStatLog->GetErrorCount();
  937. if ($iErrors > 0)
  938. {
  939. $sIssuesOQL = "SELECT SynchroReplica WHERE sync_source_id=".$this->GetKey()." AND status_last_error!=''";
  940. $sAbsoluteUrl = utils::GetAbsoluteUrlAppRoot();
  941. $sIssuesURL = "{$sAbsoluteUrl}synchro/replica.php?operation=oql&datasource=".$this->GetKey()."&oql=".urlencode($sIssuesOQL);
  942. $sSeeIssues = "<p></p>";
  943. $sStatistics = "<h1>Statistics</h1>\n";
  944. $sStatistics .= "<ul>\n";
  945. $sStatistics .= "<li>".$oStatLog->GetLabel('start_date').": ".$oStatLog->Get('start_date')."</li>\n";
  946. $sStatistics .= "<li>".$oStatLog->GetLabel('end_date').": ".$oStatLog->Get('end_date')."</li>\n";
  947. $sStatistics .= "<li>".$oStatLog->GetLabel('stats_nb_replica_seen').": ".$oStatLog->Get('stats_nb_replica_seen')."</li>\n";
  948. $sStatistics .= "<li>".$oStatLog->GetLabel('stats_nb_replica_total').": ".$oStatLog->Get('stats_nb_replica_total')."</li>\n";
  949. $sStatistics .= "<li>".$oStatLog->GetLabel('stats_nb_obj_deleted').": ".$oStatLog->Get('stats_nb_obj_deleted')."</li>\n";
  950. $sStatistics .= "<li>".$oStatLog->GetLabel('stats_nb_obj_deleted_errors').": ".$oStatLog->Get('stats_nb_obj_deleted_errors')."</li>\n";
  951. $sStatistics .= "<li>".$oStatLog->GetLabel('stats_nb_obj_obsoleted').": ".$oStatLog->Get('stats_nb_obj_obsoleted')."</li>\n";
  952. $sStatistics .= "<li>".$oStatLog->GetLabel('stats_nb_obj_obsoleted_errors').": ".$oStatLog->Get('stats_nb_obj_obsoleted_errors')."</li>\n";
  953. $sStatistics .= "<li>".$oStatLog->GetLabel('stats_nb_obj_created').": ".$oStatLog->Get('stats_nb_obj_created')." (".$oStatLog->Get('stats_nb_obj_created_warnings')." warnings)"."</li>\n";
  954. $sStatistics .= "<li>".$oStatLog->GetLabel('stats_nb_obj_created_errors').": ".$oStatLog->Get('stats_nb_obj_created_errors')."</li>\n";
  955. $sStatistics .= "<li>".$oStatLog->GetLabel('stats_nb_obj_updated').": ".$oStatLog->Get('stats_nb_obj_updated')." (".$oStatLog->Get('stats_nb_obj_updated_warnings')." warnings)"."</li>\n";
  956. $sStatistics .= "<li>".$oStatLog->GetLabel('stats_nb_obj_updated_errors').": ".$oStatLog->Get('stats_nb_obj_updated_errors')."</li>\n";
  957. $sStatistics .= "<li>".$oStatLog->GetLabel('stats_nb_replica_reconciled_errors').": ".$oStatLog->Get('stats_nb_replica_reconciled_errors')."</li>\n";
  958. $sStatistics .= "<li>".$oStatLog->GetLabel('stats_nb_replica_disappeared_no_action').": ".$oStatLog->Get('stats_nb_replica_disappeared_no_action')."</li>\n";
  959. $sStatistics .= "<li>".$oStatLog->GetLabel('stats_nb_obj_new_updated').": ".$oStatLog->Get('stats_nb_obj_new_updated')." (".$oStatLog->Get('stats_nb_obj_new_updated_warnings')." warnings)"."</li>\n";
  960. $sStatistics .= "<li>".$oStatLog->GetLabel('stats_nb_obj_new_unchanged').": ".$oStatLog->Get('stats_nb_obj_new_unchanged')." (".$oStatLog->Get('stats_nb_obj_new_unchanged_warnings')." warnings)"."</li>\n";
  961. $sStatistics .= "</ul>\n";
  962. $this->SendNotification("errors ($iErrors)", "<p>The synchronization has been executed, $iErrors errors have been encountered. Click <a href=\"$sIssuesURL\">here</a> to see the records being currently in error.</p>".$sStatistics);
  963. }
  964. else
  965. {
  966. //$this->SendNotification('success', '<p>The synchronization has been successfully executed.</p>');
  967. }
  968. }
  969. catch (SynchroExceptionNotStarted $e)
  970. {
  971. // Set information for reporting... but delete the object in DB
  972. $oStatLog->Set('end_date', time());
  973. $oStatLog->Set('status', 'error');
  974. $oStatLog->Set('last_error', $e->getMessage());
  975. $oStatLog->DBDeleteTracked($oMyChange);
  976. $this->SendNotification('fatal error', '<p>The synchronization could not start: \''.$e->getMessage().'\'</p><p>Please check its configuration</p>');
  977. }
  978. catch (Exception $e)
  979. {
  980. $oStatLog->Set('end_date', time());
  981. $oStatLog->Set('status', 'error');
  982. $oStatLog->Set('last_error', $e->getMessage());
  983. $oStatLog->DBUpdateTracked($oMyChange);
  984. $this->SendNotification('exception', '<p>The synchronization has been interrupted: \''.$e->getMessage().'\'</p><p>Please contact the application support team</p>');
  985. }
  986. self::$m_oCurrentTask = null;
  987. return $oStatLog;
  988. }
  989. protected function DoSynchronize($oLastFullLoadStartDate, $oMyChange, &$oStatLog)
  990. {
  991. if ($this->Get('status') == 'obsolete')
  992. {
  993. throw new SynchroExceptionNotStarted(Dict::S('Core:SyncDataSourceObsolete'));
  994. }
  995. if (!UserRights::IsAdministrator() && $this->Get('user_id') != UserRights::GetUserId())
  996. {
  997. throw new SynchroExceptionNotStarted(Dict::S('Core:SyncDataSourceAccessRestriction'));
  998. }
  999. // Get the list of SQL columns
  1000. $sClass = $this->GetTargetClass();
  1001. $aAttCodesExpected = array();
  1002. $aAttCodesToReconcile = array();
  1003. $aAttCodesToUpdate = array();
  1004. $sSelectAtt = "SELECT SynchroAttribute WHERE sync_source_id = :source_id AND (update = 1 OR reconcile = 1)";
  1005. $oSetAtt = new DBObjectSet(DBObjectSearch::FromOQL($sSelectAtt), array() /* order by*/, array('source_id' => $this->GetKey()) /* aArgs */);
  1006. while ($oSyncAtt = $oSetAtt->Fetch())
  1007. {
  1008. if ($oSyncAtt->Get('update'))
  1009. {
  1010. $aAttCodesToUpdate[$oSyncAtt->Get('attcode')] = $oSyncAtt;
  1011. }
  1012. if ($oSyncAtt->Get('reconcile'))
  1013. {
  1014. $aAttCodesToReconcile[$oSyncAtt->Get('attcode')] = $oSyncAtt;
  1015. }
  1016. $aAttCodesExpected[$oSyncAtt->Get('attcode')] = $oSyncAtt;
  1017. }
  1018. $aColumns = $this->GetSQLColumns(array_keys($aAttCodesExpected));
  1019. $aExtDataFields = array_keys($aColumns);
  1020. $aExtDataFields[] = 'primary_key';
  1021. $aExtDataSpec = array(
  1022. 'table' => $this->GetDataTable(),
  1023. 'join_key' => 'id',
  1024. 'fields' => $aExtDataFields
  1025. );
  1026. // Get the list of attributes, determine reconciliation keys and update targets
  1027. //
  1028. if ($this->Get('reconciliation_policy') == 'use_attributes')
  1029. {
  1030. $aReconciliationKeys = $aAttCodesToReconcile;
  1031. }
  1032. elseif ($this->Get('reconciliation_policy') == 'use_primary_key')
  1033. {
  1034. // Override the settings made at the attribute level !
  1035. $aReconciliationKeys = array("primary_key" => null);
  1036. }
  1037. $oStatLog->AddTrace("Update of: {".implode(', ', array_keys($aAttCodesToUpdate))."}");
  1038. $oStatLog->AddTrace("Reconciliation on: {".implode(', ', array_keys($aReconciliationKeys))."}");
  1039. if (count($aAttCodesToUpdate) == 0)
  1040. {
  1041. $oStatLog->AddTrace("No attribute to update");
  1042. throw new SynchroExceptionNotStarted('There is no attribute to update');
  1043. }
  1044. if (count($aReconciliationKeys) == 0)
  1045. {
  1046. $oStatLog->AddTrace("No attribute for reconciliation");
  1047. throw new SynchroExceptionNotStarted('No attribute for reconciliation');
  1048. }
  1049. $aAttributes = array();
  1050. foreach($aAttCodesToUpdate as $sAttCode => $oSyncAtt)
  1051. {
  1052. $oAttDef = MetaModel::GetAttributeDef($this->GetTargetClass(), $sAttCode);
  1053. if ($oAttDef->IsWritable())
  1054. {
  1055. $aAttributes[$sAttCode] = $oSyncAtt;
  1056. }
  1057. }
  1058. // Count the replicas
  1059. $sSelectAll = "SELECT SynchroReplica WHERE sync_source_id = :source_id";
  1060. $oSetAll = new DBObjectSet(DBObjectSearch::FromOQL($sSelectAll), array() /* order by*/, array('source_id' => $this->GetKey()));
  1061. $iCountAllReplicas = $oSetAll->Count();
  1062. $oStatLog->Set('stats_nb_replica_total', $iCountAllReplicas);
  1063. // Get all the replicas that were not seen in the last import and mark them as obsolete
  1064. if ($oLastFullLoadStartDate == null)
  1065. {
  1066. // No previous import known, use the full_load_periodicity value... and the current date
  1067. $oLastFullLoadStartDate = new DateTime(); // Now
  1068. $iLoadPeriodicity = $this->Get('full_load_periodicity'); // Duration in seconds
  1069. if ($iLoadPeriodicity > 0)
  1070. {
  1071. $sInterval = "-$iLoadPeriodicity seconds";
  1072. $oLastFullLoadStartDate->Modify($sInterval);
  1073. }
  1074. else
  1075. {
  1076. $oLastFullLoadStartDate = new DateTime('1970-01-01');
  1077. }
  1078. }
  1079. $sLimitDate = $oLastFullLoadStartDate->Format('Y-m-d H:i:s');
  1080. $oStatLog->AddTrace("Limit Date: $sLimitDate");
  1081. $sDeletePolicy = $this->Get('delete_policy');
  1082. if ($sDeletePolicy != 'ignore')
  1083. {
  1084. $sSelectToObsolete = "SELECT SynchroReplica WHERE sync_source_id = :source_id AND status IN ('new', 'synchronized', 'modified', 'orphan') AND status_last_seen < :last_import";
  1085. $oSetToObsolete = new DBObjectSet(DBObjectSearch::FromOQL($sSelectToObsolete), array() /* order by*/, array('source_id' => $this->GetKey(), 'last_import' => $sLimitDate));
  1086. if (($iCountAllReplicas > 10) && ($iCountAllReplicas == $oSetToObsolete->Count()))
  1087. {
  1088. throw new SynchroExceptionNotStarted(Dict::S('Core:SyncTooManyMissingReplicas'));
  1089. }
  1090. while($oReplica = $oSetToObsolete->Fetch())
  1091. {
  1092. switch ($sDeletePolicy)
  1093. {
  1094. case 'update':
  1095. case 'update_then_delete':
  1096. $oStatLog->AddTrace("Destination object to be updated", $oReplica);
  1097. $aToUpdate = array();
  1098. $aToUpdateSpec = explode(';', $this->Get('delete_policy_update')); //ex: 'status:obsolete;description:stopped',
  1099. foreach($aToUpdateSpec as $sUpdateSpec)
  1100. {
  1101. $aUpdateSpec = explode(':', $sUpdateSpec);
  1102. if (count($aUpdateSpec) == 2)
  1103. {
  1104. $sAttCode = $aUpdateSpec[0];
  1105. $sValue = $aUpdateSpec[1];
  1106. $aToUpdate[$sAttCode] = $sValue;
  1107. }
  1108. }
  1109. $oReplica->Set('status_last_error', '');
  1110. if ($oReplica->Get('dest_id') == '')
  1111. {
  1112. $oReplica->Set('status', 'obsolete');
  1113. $oStatLog->Inc('stats_nb_replica_disappeared_no_action');
  1114. }
  1115. else
  1116. {
  1117. $oReplica->UpdateDestObject($aToUpdate, $oMyChange, $oStatLog);
  1118. if ($oReplica->Get('status_last_error') == '')
  1119. {
  1120. // Change the status of the replica IIF
  1121. $oReplica->Set('status', 'obsolete');
  1122. }
  1123. }
  1124. $oReplica->DBUpdateTracked($oMyChange);
  1125. break;
  1126. case 'delete':
  1127. default:
  1128. $oStatLog->AddTrace("Destination object to be DELETED", $oReplica);
  1129. $oReplica->DeleteDestObject($oMyChange, $oStatLog);
  1130. }
  1131. }
  1132. } // if ($sDeletePolicy != 'ignore'
  1133. //Count "seen" objects
  1134. $sSelectSeen = "SELECT SynchroReplica WHERE sync_source_id = :source_id AND status IN ('new', 'synchronized', 'modified', 'orphan') AND status_last_seen >= :last_import";
  1135. $oSetSeen = new DBObjectSet(DBObjectSearch::FromOQL($sSelectSeen), array() /* order by*/, array('source_id' => $this->GetKey(), 'last_import' => $sLimitDate));
  1136. $oStatLog->Set('stats_nb_replica_seen', $oSetSeen->Count());
  1137. // Get all the replicas that are 'new' or modified or synchronized with a warning
  1138. //
  1139. $sSelectToSync = "SELECT SynchroReplica WHERE (status = 'new' OR status = 'modified' OR (status = 'synchronized' AND status_last_warning != '')) AND sync_source_id = :source_id AND status_last_seen >= :last_import";
  1140. $oSetToSync = new DBObjectSet(DBObjectSearch::FromOQL($sSelectToSync), array() /* order by*/, array('source_id' => $this->GetKey(), 'last_import' => $sLimitDate) /* aArgs */, $aExtDataSpec, 0 /* limitCount */, 0 /* limitStart */);
  1141. while($oReplica = $oSetToSync->Fetch())
  1142. {
  1143. $oReplica->Synchro($this, $aReconciliationKeys, $aAttributes, $oMyChange, $oStatLog);
  1144. $oReplica->DBUpdateTracked($oMyChange);
  1145. }
  1146. // Get all the replicas that are to be deleted
  1147. //
  1148. if ($sDeletePolicy == 'update_then_delete')
  1149. {
  1150. $oDeletionDate = $oLastFullLoadStartDate;
  1151. $iDeleteRetention = $this->Get('delete_policy_retention'); // Duration in seconds
  1152. if ($iDeleteRetention > 0)
  1153. {
  1154. $sInterval = "-$iDeleteRetention seconds";
  1155. $oDeletionDate->Modify($sInterval);
  1156. }
  1157. $sDeletionDate = $oDeletionDate->Format('Y-m-d H:i:s');
  1158. $oStatLog->AddTrace("Deletion date: $sDeletionDate");
  1159. $sSelectToDelete = "SELECT SynchroReplica WHERE sync_source_id = :source_id AND status IN ('obsolete') AND status_last_seen < :last_import";
  1160. $oSetToDelete = new DBObjectSet(DBObjectSearch::FromOQL($sSelectToDelete), array() /* order by*/, array('source_id' => $this->GetKey(), 'last_import' => $sDeletionDate));
  1161. while($oReplica = $oSetToDelete->Fetch())
  1162. {
  1163. $oStatLog->AddTrace("Destination object to be DELETED", $oReplica);
  1164. $oReplica->DeleteDestObject($oMyChange, $oStatLog);
  1165. }
  1166. }
  1167. }
  1168. /**
  1169. * Get the list of attributes eligible to the synchronization
  1170. */
  1171. public function ListTargetAttributes()
  1172. {
  1173. $aRet = array();
  1174. foreach(MetaModel::ListAttributeDefs($this->GetTargetClass()) as $sAttCode => $oAttDef)
  1175. {
  1176. if ($sAttCode == 'finalclass') continue;
  1177. if (!$oAttDef->IsWritable()) continue;
  1178. if ($oAttDef->IsLinkSet() && !$oAttDef->IsIndirect()) continue;
  1179. $aRet[$sAttCode] = $oAttDef;
  1180. }
  1181. return $aRet;
  1182. }
  1183. /**
  1184. * Get the list of SQL columns corresponding to a particular list of attribute codes
  1185. * Defaults to the whole list of columns for the current class
  1186. */
  1187. public function GetSQLColumns($aAttributeCodes = null)
  1188. {
  1189. $aColumns = array();
  1190. $sClass = $this->GetTargetClass();
  1191. if (is_null($aAttributeCodes))
  1192. {
  1193. $aAttributeCodes = array();
  1194. foreach($this->ListTargetAttributes() as $sAttCode => $oAttDef)
  1195. {
  1196. $aAttributeCodes[] = $sAttCode;
  1197. }
  1198. }
  1199. foreach($aAttributeCodes as $sAttCode)
  1200. {
  1201. $oAttDef = MetaModel::GetAttributeDef($sClass, $sAttCode);
  1202. if ($oAttDef->IsExternalKey())
  1203. {
  1204. // The pkey might be used as well as any other key column
  1205. $aColumns[$sAttCode] = 'VARCHAR (255)';
  1206. }
  1207. else
  1208. {
  1209. foreach($oAttDef->GetImportColumns() as $sField => $sDBFieldType)
  1210. {
  1211. $aColumns[$sField] = $sDBFieldType;
  1212. }
  1213. }
  1214. }
  1215. return $aColumns;
  1216. }
  1217. /**
  1218. * Get the list of Date and Datetime SQL columns
  1219. */
  1220. public function GetDateSQLColumns()
  1221. {
  1222. $aDateAttributes = array();
  1223. $sClass = $this->GetTargetClass();
  1224. foreach(MetaModel::ListAttributeDefs($sClass) as $sAttCode => $oAttDef)
  1225. {
  1226. if ($oAttDef instanceof AttributeDateTime)
  1227. {
  1228. $aDateAttributes[] = $sAttCode;
  1229. }
  1230. }
  1231. return $this->GetSQLColumns($aDateAttributes);
  1232. }
  1233. public function IsRunning()
  1234. {
  1235. $sOQL = "SELECT SynchroLog WHERE sync_source_id = :source_id AND status='running'";
  1236. $oSet = new DBObjectSet(DBObjectSearch::FromOQL($sOQL), array('start_date' => false) /* order by*/, array('source_id' => $this->GetKey()) /* aArgs */, array(), 1 /* limitCount */, 0 /* limitStart */);
  1237. if ($oSet->Count() < 1)
  1238. {
  1239. $bRet = false;
  1240. }
  1241. else
  1242. {
  1243. $bRet = true;
  1244. }
  1245. return $bRet;
  1246. }
  1247. public function GetLatestLog()
  1248. {
  1249. $oLog = null;
  1250. $sOQL = "SELECT SynchroLog WHERE sync_source_id = :source_id";
  1251. $oSet = new DBObjectSet(DBObjectSearch::FromOQL($sOQL), array('start_date' => false) /* order by*/, array('source_id' => $this->GetKey()) /* aArgs */, array(), 1 /* limitCount */, 0 /* limitStart */);
  1252. if ($oSet->Count() >= 1)
  1253. {
  1254. $oLog = $oSet->Fetch();
  1255. }
  1256. return $oLog;
  1257. }
  1258. // TO DO: remove if still unused
  1259. /**
  1260. * Retrieve from the log, the date of the last completed import
  1261. * @return DateTime
  1262. */
  1263. public function GetLastCompletedImportDate()
  1264. {
  1265. $date = null;
  1266. $sOQL = "SELECT SynchroLog WHERE sync_source_id = :source_id AND status='completed'";
  1267. $oSet = new DBObjectSet(DBObjectSearch::FromOQL($sOQL), array('end_date' => false) /* order by*/, array('source_id' => $this->GetKey()) /* aArgs */, array(), 0 /* limitCount */, 0 /* limitStart */);
  1268. if ($oSet->Count() >= 1)
  1269. {
  1270. $oLog = $oSet->Fetch();
  1271. $date = $oLog->Get('end_date');
  1272. }
  1273. return $date;
  1274. }
  1275. }
  1276. class SynchroAttribute extends cmdbAbstractObject
  1277. {
  1278. public static function Init()
  1279. {
  1280. $aParams = array
  1281. (
  1282. "category" => "core/cmdb,view_in_gui",
  1283. "key_type" => "autoincrement",
  1284. "name_attcode" => "",
  1285. "state_attcode" => "",
  1286. "reconc_keys" => array(),
  1287. "db_table" => "priv_sync_att",
  1288. "db_key_field" => "id",
  1289. "db_finalclass_field" => "",
  1290. "display_template" => "",
  1291. );
  1292. MetaModel::Init_Params($aParams);
  1293. MetaModel::Init_InheritAttributes();
  1294. MetaModel::Init_AddAttribute(new AttributeExternalKey("sync_source_id", array("targetclass"=>"SynchroDataSource", "jointype"=> "", "allowed_values"=>null, "sql"=>"sync_source_id", "is_null_allowed"=>false, "on_target_delete"=>DEL_SILENT, "depends_on"=>array())));
  1295. MetaModel::Init_AddAttribute(new AttributeExternalField("sync_source_name", array("allowed_values"=>null, "extkey_attcode"=> 'sync_source_id', "target_attcode"=>"name")));
  1296. MetaModel::Init_AddAttribute(new AttributeString("attcode", array("allowed_values"=>null, "sql"=>"attcode", "default_value"=>null, "is_null_allowed"=>false, "depends_on"=>array())));
  1297. MetaModel::Init_AddAttribute(new AttributeBoolean("update", array("allowed_values"=>null, "sql"=>"update", "default_value"=>true, "is_null_allowed"=>false, "depends_on"=>array())));
  1298. MetaModel::Init_AddAttribute(new AttributeBoolean("reconcile", array("allowed_values"=>null, "sql"=>"reconcile", "default_value"=>false, "is_null_allowed"=>false, "depends_on"=>array())));
  1299. MetaModel::Init_AddAttribute(new AttributeEnum("update_policy", array("allowed_values"=>new ValueSetEnum('master_locked,master_unlocked,write_if_empty'), "sql"=>"update_policy", "default_value"=>"master_locked", "is_null_allowed"=>false, "depends_on"=>array())));
  1300. // Display lists
  1301. MetaModel::Init_SetZListItems('details', array('sync_source_id', 'attcode', 'update', 'reconcile', 'update_policy')); // Attributes to be displayed for the complete details
  1302. MetaModel::Init_SetZListItems('list', array('sync_source_id', 'attcode', 'update', 'reconcile', 'update_policy')); // Attributes to be displayed for a list
  1303. // Search criteria
  1304. // MetaModel::Init_SetZListItems('standard_search', array('name')); // Criteria of the std search form
  1305. // MetaModel::Init_SetZListItems('advanced_search', array('name')); // Criteria of the advanced search form
  1306. }
  1307. }
  1308. class SynchroAttExtKey extends SynchroAttribute
  1309. {
  1310. public static function Init()
  1311. {
  1312. $aParams = array
  1313. (
  1314. "category" => "core/cmdb,view_in_gui",
  1315. "key_type" => "autoincrement",
  1316. "name_attcode" => "",
  1317. "state_attcode" => "",
  1318. "reconc_keys" => array(),
  1319. "db_table" => "priv_sync_att_extkey",
  1320. "db_key_field" => "id",
  1321. "db_finalclass_field" => "",
  1322. "display_template" => "",
  1323. );
  1324. MetaModel::Init_Params($aParams);
  1325. MetaModel::Init_InheritAttributes();
  1326. MetaModel::Init_AddAttribute(new AttributeString("reconciliation_attcode", array("allowed_values"=>null, "sql"=>"reconciliation_attcode", "default_value"=>null, "is_null_allowed"=>true, "depends_on"=>array())));
  1327. // Display lists
  1328. MetaModel::Init_SetZListItems('details', array('sync_source_id', 'attcode', 'update', 'reconcile', 'update_policy', 'reconciliation_attcode')); // Attributes to be displayed for the complete details
  1329. MetaModel::Init_SetZListItems('list', array('sync_source_id', 'attcode', 'update', 'reconcile', 'update_policy')); // Attributes to be displayed for a list
  1330. // Search criteria
  1331. // MetaModel::Init_SetZListItems('standard_search', array('name')); // Criteria of the std search form
  1332. // MetaModel::Init_SetZListItems('advanced_search', array('name')); // Criteria of the advanced search form
  1333. }
  1334. public function GetReconciliationFormElement($sTargetClass, $sFieldName)
  1335. {
  1336. $sHtml = "<select name=\"$sFieldName\">\n";
  1337. $sSelected = (''== $this->Get('reconciliation_attcode')) ? ' selected' : '';
  1338. $sHtml .= "<option value=\"\" $sSelected>".Dict::S('Core:SynchroAttExtKey:ReconciliationById')."</option>\n";
  1339. foreach(MetaModel::ListAttributeDefs($sTargetClass) as $sAttCode => $oAttDef)
  1340. {
  1341. if ($oAttDef->IsScalar())
  1342. {
  1343. $sSelected = ($sAttCode == $this->Get('reconciliation_attcode')) ? ' selected' : '';
  1344. $sHtml .= "<option value=\"$sAttCode\" $sSelected>".MetaModel::GetLabel($sTargetClass, $sAttCode)."</option>\n";
  1345. }
  1346. }
  1347. $sHtml .= "</select>\n";
  1348. return $sHtml;
  1349. }
  1350. }
  1351. class SynchroAttLinkSet extends SynchroAttribute
  1352. {
  1353. public static function Init()
  1354. {
  1355. $aParams = array
  1356. (
  1357. "category" => "core/cmdb,view_in_gui",
  1358. "key_type" => "autoincrement",
  1359. "name_attcode" => "",
  1360. "state_attcode" => "",
  1361. "reconc_keys" => array(),
  1362. "db_table" => "priv_sync_att_linkset",
  1363. "db_key_field" => "id",
  1364. "db_finalclass_field" => "",
  1365. "display_template" => "",
  1366. );
  1367. MetaModel::Init_Params($aParams);
  1368. MetaModel::Init_InheritAttributes();
  1369. MetaModel::Init_AddAttribute(new AttributeString("row_separator", array("allowed_values"=>null, "sql"=>"row_separator", "default_value"=>'|', "is_null_allowed"=>true, "depends_on"=>array())));
  1370. MetaModel::Init_AddAttribute(new AttributeString("attribute_separator", array("allowed_values"=>null, "sql"=>"attribute_separator", "default_value"=>';', "is_null_allowed"=>true, "depends_on"=>array())));
  1371. MetaModel::Init_AddAttribute(new AttributeString("value_separator", array("allowed_values"=>null, "sql"=>"value_separator", "default_value"=>':', "is_null_allowed"=>true, "depends_on"=>array())));
  1372. MetaModel::Init_AddAttribute(new AttributeString("attribute_qualifier", array("allowed_values"=>null, "sql"=>"attribute_qualifier", "default_value"=>'\'', "is_null_allowed"=>true, "depends_on"=>array())));
  1373. // Display lists
  1374. MetaModel::Init_SetZListItems('details', array('sync_source_id', 'attcode', 'update', 'reconcile', 'update_policy', 'row_separator', 'attribute_separator', 'value_separator', 'attribute_qualifier')); // Attributes to be displayed for the complete details
  1375. MetaModel::Init_SetZListItems('list', array('sync_source_id', 'attcode', 'update', 'reconcile', 'update_policy')); // Attributes to be displayed for a list
  1376. // Search criteria
  1377. // MetaModel::Init_SetZListItems('standard_search', array('name')); // Criteria of the std search form
  1378. // MetaModel::Init_SetZListItems('advanced_search', array('name')); // Criteria of the advanced search form
  1379. }
  1380. }
  1381. //class SynchroLog extends Event
  1382. class SynchroLog extends DBObject
  1383. {
  1384. public static function Init()
  1385. {
  1386. $aParams = array
  1387. (
  1388. "category" => "core/cmdb,view_in_gui",
  1389. "key_type" => "autoincrement",
  1390. "name_attcode" => "",
  1391. "state_attcode" => "",
  1392. "reconc_keys" => array(),
  1393. "db_table" => "priv_sync_log",
  1394. "db_key_field" => "id",
  1395. "db_finalclass_field" => "",
  1396. "display_template" => "",
  1397. );
  1398. MetaModel::Init_Params($aParams);
  1399. MetaModel::Init_InheritAttributes();
  1400. // MetaModel::Init_AddAttribute(new AttributeString("userinfo", array("allowed_values"=>null, "sql"=>"userinfo", "default_value"=>null, "is_null_allowed"=>true, "depends_on"=>array())));
  1401. MetaModel::Init_AddAttribute(new AttributeExternalKey("sync_source_id", array("targetclass"=>"SynchroDataSource", "jointype"=> "", "allowed_values"=>null, "sql"=>"sync_source_id", "is_null_allowed"=>false, "on_target_delete"=>DEL_SILENT, "depends_on"=>array())));
  1402. MetaModel::Init_AddAttribute(new AttributeDateTime("start_date", array("allowed_values"=>null, "sql"=>"start_date", "default_value"=>"", "is_null_allowed"=>true, "depends_on"=>array())));
  1403. MetaModel::Init_AddAttribute(new AttributeDateTime("end_date", array("allowed_values"=>null, "sql"=>"end_date", "default_value"=>"", "is_null_allowed"=>true, "depends_on"=>array())));
  1404. MetaModel::Init_AddAttribute(new AttributeEnum("status", array("allowed_values"=>new ValueSetEnum('running,completed,error'), "sql"=>"status", "default_value"=>"running", "is_null_allowed"=>false, "depends_on"=>array())));
  1405. MetaModel::Init_AddAttribute(new AttributeInteger("stats_nb_replica_seen", array("allowed_values"=>null, "sql"=>"stats_nb_replica_seen", "default_value"=>0, "is_null_allowed"=>false, "depends_on"=>array())));
  1406. MetaModel::Init_AddAttribute(new AttributeInteger("stats_nb_replica_total", array("allowed_values"=>null, "sql"=>"stats_nb_replica_total", "default_value"=>0, "is_null_allowed"=>false, "depends_on"=>array())));
  1407. MetaModel::Init_AddAttribute(new AttributeInteger("stats_nb_obj_deleted", array("allowed_values"=>null, "sql"=>"stats_nb_obj_deleted", "default_value"=>0, "is_null_allowed"=>false, "depends_on"=>array())));
  1408. MetaModel::Init_AddAttribute(new AttributeInteger("stats_nb_obj_deleted_errors", array("allowed_values"=>null, "sql"=>"stats_deleted_errors", "default_value"=>0, "is_null_allowed"=>false, "depends_on"=>array())));
  1409. MetaModel::Init_AddAttribute(new AttributeInteger("stats_nb_obj_obsoleted", array("allowed_values"=>null, "sql"=>"stats_nb_obj_obsoleted", "default_value"=>0, "is_null_allowed"=>false, "depends_on"=>array())));
  1410. MetaModel::Init_AddAttribute(new AttributeInteger("stats_nb_obj_obsoleted_errors", array("allowed_values"=>null, "sql"=>"stats_nb_obj_obsoleted_errors", "default_value"=>0, "is_null_allowed"=>false, "depends_on"=>array())));
  1411. MetaModel::Init_AddAttribute(new AttributeInteger("stats_nb_obj_created", array("allowed_values"=>null, "sql"=>"stats_nb_obj_created", "default_value"=>0, "is_null_allowed"=>false, "depends_on"=>array())));
  1412. MetaModel::Init_AddAttribute(new AttributeInteger("stats_nb_obj_created_errors", array("allowed_values"=>null, "sql"=>"stats_nb_obj_created_errors", "default_value"=>0, "is_null_allowed"=>false, "depends_on"=>array())));
  1413. MetaModel::Init_AddAttribute(new AttributeInteger("stats_nb_obj_created_warnings", array("allowed_values"=>null, "sql"=>"stats_nb_obj_created_warnings", "default_value"=>0, "is_null_allowed"=>false, "depends_on"=>array())));
  1414. MetaModel::Init_AddAttribute(new AttributeInteger("stats_nb_obj_updated", array("allowed_values"=>null, "sql"=>"stats_nb_obj_updated", "default_value"=>0, "is_null_allowed"=>false, "depends_on"=>array())));
  1415. MetaModel::Init_AddAttribute(new AttributeInteger("stats_nb_obj_updated_errors", array("allowed_values"=>null, "sql"=>"stats_nb_obj_updated_errors", "default_value"=>0, "is_null_allowed"=>false, "depends_on"=>array())));
  1416. MetaModel::Init_AddAttribute(new AttributeInteger("stats_nb_obj_updated_warnings", array("allowed_values"=>null, "sql"=>"stats_nb_obj_updated_warnings", "default_value"=>0, "is_null_allowed"=>false, "depends_on"=>array())));
  1417. MetaModel::Init_AddAttribute(new AttributeInteger("stats_nb_obj_unchanged_warnings", array("allowed_values"=>null, "sql"=>"stats_nb_obj_unchanged_warnings", "default_value"=>0, "is_null_allowed"=>false, "depends_on"=>array())));
  1418. // MetaModel::Init_AddAttribute(new AttributeInteger("stats_nb_replica_reconciled", array("allowed_values"=>null, "sql"=>"stats_nb_replica_reconciled", "default_value"=>0, "is_null_allowed"=>false, "depends_on"=>array())));
  1419. MetaModel::Init_AddAttribute(new AttributeInteger("stats_nb_replica_reconciled_errors", array("allowed_values"=>null, "sql"=>"stats_nb_replica_reconciled_errors", "default_value"=>0, "is_null_allowed"=>false, "depends_on"=>array())));
  1420. MetaModel::Init_AddAttribute(new AttributeInteger("stats_nb_replica_disappeared_no_action", array("allowed_values"=>null, "sql"=>"stats_nb_replica_disappeared_no_action", "default_value"=>0, "is_null_allowed"=>false, "depends_on"=>array())));
  1421. MetaModel::Init_AddAttribute(new AttributeInteger("stats_nb_obj_new_updated", array("allowed_values"=>null, "sql"=>"stats_nb_obj_new_updated", "default_value"=>0, "is_null_allowed"=>false, "depends_on"=>array())));
  1422. MetaModel::Init_AddAttribute(new AttributeInteger("stats_nb_obj_new_updated_warnings", array("allowed_values"=>null, "sql"=>"stats_nb_obj_new_updated_warnings", "default_value"=>0, "is_null_allowed"=>false, "depends_on"=>array())));
  1423. MetaModel::Init_AddAttribute(new AttributeInteger("stats_nb_obj_new_unchanged", array("allowed_values"=>null, "sql"=>"stats_nb_obj_new_unchanged", "default_value"=>0, "is_null_allowed"=>false, "depends_on"=>array())));
  1424. MetaModel::Init_AddAttribute(new AttributeInteger("stats_nb_obj_new_unchanged_warnings", array("allowed_values"=>null, "sql"=>"stats_nb_obj_new_unchanged_warnings", "default_value"=>0, "is_null_allowed"=>false, "depends_on"=>array())));
  1425. MetaModel::Init_AddAttribute(new AttributeText("last_error", array("allowed_values"=>null, "sql"=>"last_error", "default_value"=>'', "is_null_allowed"=>true, "depends_on"=>array())));
  1426. MetaModel::Init_AddAttribute(new AttributeLongText("traces", array("allowed_values"=>null, "sql"=>"traces", "default_value"=>'', "is_null_allowed"=>true, "depends_on"=>array())));
  1427. // Display lists
  1428. MetaModel::Init_SetZListItems('details', array('sync_source_id', 'start_date', 'end_date', 'status', 'stats_nb_replica_total', 'stats_nb_replica_seen', 'stats_nb_obj_created', /*'stats_nb_replica_reconciled',*/ 'stats_nb_obj_updated', 'stats_nb_obj_obsoleted', 'stats_nb_obj_deleted',
  1429. 'stats_nb_obj_created_errors', 'stats_nb_replica_reconciled_errors', 'stats_nb_replica_disappeared_no_action', 'stats_nb_obj_updated_errors', 'stats_nb_obj_obsoleted_errors', 'stats_nb_obj_deleted_errors', 'stats_nb_obj_new_unchanged', 'stats_nb_obj_new_updated', 'traces')); // Attributes to be displayed for the complete details
  1430. MetaModel::Init_SetZListItems('list', array('sync_source_id', 'start_date', 'end_date', 'status', 'stats_nb_replica_seen')); // Attributes to be displayed for a list
  1431. // Search criteria
  1432. // MetaModel::Init_SetZListItems('standard_search', array('name')); // Criteria of the std search form
  1433. // MetaModel::Init_SetZListItems('advanced_search', array('name')); // Criteria of the advanced search form
  1434. }
  1435. /**
  1436. * Helper
  1437. */
  1438. function GetErrorCount()
  1439. {
  1440. return $this->Get('stats_nb_obj_deleted_errors')
  1441. + $this->Get('stats_nb_obj_obsoleted_errors')
  1442. + $this->Get('stats_nb_obj_created_errors')
  1443. + $this->Get('stats_nb_obj_updated_errors')
  1444. + $this->Get('stats_nb_replica_reconciled_errors');
  1445. }
  1446. /**
  1447. * Increments a statistics counter
  1448. */
  1449. function Inc($sCode)
  1450. {
  1451. $this->Set($sCode, 1+$this->Get($sCode));
  1452. }
  1453. /**
  1454. * Implement traces management
  1455. */
  1456. protected $m_aTraces = array();
  1457. public function AddTrace($sMsg, $oReplica = null)
  1458. {
  1459. if (MetaModel::GetConfig()->Get('synchro_trace') == 'none')
  1460. {
  1461. return;
  1462. }
  1463. if ($oReplica)
  1464. {
  1465. $sDestClass = $oReplica->Get('dest_class');
  1466. if (!empty($sDestClass))
  1467. {
  1468. $sPrefix = $oReplica->GetKey().','.$sDestClass.'::'.$oReplica->Get('dest_id').',';
  1469. }
  1470. else
  1471. {
  1472. $sPrefix = $oReplica->GetKey().',,';
  1473. }
  1474. }
  1475. else
  1476. {
  1477. $sPrefix = ',,';
  1478. }
  1479. $this->m_aTraces[] = $sPrefix.$sMsg;
  1480. }
  1481. public function GetTraces()
  1482. {
  1483. return $this->m_aTraces;
  1484. }
  1485. protected function TraceToText()
  1486. {
  1487. if (MetaModel::GetConfig()->Get('synchro_trace') != 'save')
  1488. {
  1489. // none, or display only
  1490. return;
  1491. }
  1492. $oAttDef = MetaModel::GetAttributeDef(get_class($this), 'traces');
  1493. $iMaxSize = $oAttDef->GetMaxSize();
  1494. $sTrace = implode("\n", $this->m_aTraces);
  1495. if (strlen($sTrace) >= $iMaxSize)
  1496. {
  1497. $sTrace = substr($sTrace, 0, $iMaxSize - 255)."...\nTruncated (size: ".strlen($sTrace).')';
  1498. }
  1499. $this->Set('traces', $sTrace);
  1500. }
  1501. protected function OnInsert()
  1502. {
  1503. $this->TraceToText();
  1504. parent::OnInsert();
  1505. }
  1506. protected function OnUpdate()
  1507. {
  1508. $this->TraceToText();
  1509. parent::OnUpdate();
  1510. }
  1511. }
  1512. class SynchroReplica extends DBObject implements iDisplay
  1513. {
  1514. static $aSearches = array(); // Cache of OQL queries used for reconciliation (per data source)
  1515. protected $aWarnings;
  1516. public static function Init()
  1517. {
  1518. $aParams = array
  1519. (
  1520. "category" => "core/cmdb,view_in_gui",
  1521. "key_type" => "autoincrement",
  1522. "name_attcode" => "",
  1523. "state_attcode" => "",
  1524. "reconc_keys" => array(),
  1525. "db_table" => "priv_sync_replica",
  1526. "db_key_field" => "id",
  1527. "db_finalclass_field" => "",
  1528. "display_template" => "",
  1529. );
  1530. MetaModel::Init_Params($aParams);
  1531. MetaModel::Init_InheritAttributes();
  1532. MetaModel::Init_AddAttribute(new AttributeExternalKey("sync_source_id", array("targetclass"=>"SynchroDataSource", "jointype"=> "", "allowed_values"=>null, "sql"=>"sync_source_id", "is_null_allowed"=>false, "on_target_delete"=>DEL_SILENT, "depends_on"=>array())));
  1533. MetaModel::Init_AddAttribute(new AttributeExternalField("base_class", array("allowed_values"=>null, "extkey_attcode"=> 'sync_source_id', "target_attcode"=>"scope_class")));
  1534. MetaModel::Init_AddAttribute(new AttributeInteger("dest_id", array("allowed_values"=>null, "sql"=>"dest_id", "default_value"=>0, "is_null_allowed"=>true, "depends_on"=>array())));
  1535. MetaModel::Init_AddAttribute(new AttributeClass("dest_class", array("class_category"=>"", "more_values"=>"", "sql"=>"dest_class", "default_value"=>'Organization', "is_null_allowed"=>true, "depends_on"=>array())));
  1536. MetaModel::Init_AddAttribute(new AttributeDateTime("status_last_seen", array("allowed_values"=>null, "sql"=>"status_last_seen", "default_value"=>"", "is_null_allowed"=>false, "depends_on"=>array())));
  1537. MetaModel::Init_AddAttribute(new AttributeEnum("status", array("allowed_values"=>new ValueSetEnum('new,synchronized,modified,orphan,obsolete'), "sql"=>"status", "default_value"=>"new", "is_null_allowed"=>false, "depends_on"=>array())));
  1538. MetaModel::Init_AddAttribute(new AttributeBoolean("status_dest_creator", array("allowed_values"=>null, "sql"=>"status_dest_creator", "default_value"=>0, "is_null_allowed"=>true, "depends_on"=>array())));
  1539. MetaModel::Init_AddAttribute(new AttributeString("status_last_error", array("allowed_values"=>null, "sql"=>"status_last_error", "default_value"=>'', "is_null_allowed"=>true, "depends_on"=>array())));
  1540. MetaModel::Init_AddAttribute(new AttributeString("status_last_warning", array("allowed_values"=>null, "sql"=>"status_last_warning", "default_value"=>'', "is_null_allowed"=>true, "depends_on"=>array())));
  1541. MetaModel::Init_AddAttribute(new AttributeDateTime("info_creation_date", array("allowed_values"=>null, "sql"=>"info_creation_date", "default_value"=>"", "is_null_allowed"=>true, "depends_on"=>array())));
  1542. MetaModel::Init_AddAttribute(new AttributeDateTime("info_last_modified", array("allowed_values"=>null, "sql"=>"info_last_modified", "default_value"=>"", "is_null_allowed"=>true, "depends_on"=>array())));
  1543. // Display lists
  1544. MetaModel::Init_SetZListItems('details', array('' .
  1545. 'col:0'=> array(
  1546. 'fieldset:SynchroDataSource:Definition' => array('sync_source_id','dest_id','dest_class'),
  1547. 'fieldset:SynchroDataSource:Status' => array('status','status_last_seen','status_dest_creator','status_last_error','status_last_warning'),
  1548. 'fieldset:SynchroDataSource:Information' => array('info_creation_date','info_last_modified'))
  1549. )
  1550. );
  1551. MetaModel::Init_SetZListItems('list', array('sync_source_id', 'dest_id', 'dest_class', 'status_last_seen', 'status', 'status_dest_creator', 'status_last_error', 'status_last_warning')); // Attributes to be displayed for a list
  1552. // Search criteria
  1553. MetaModel::Init_SetZListItems('standard_search', array('sync_source_id', 'status_last_seen', 'status', 'status_dest_creator', 'dest_class', 'dest_id', 'status_last_error', 'status_last_warning')); // Criteria of the std search form
  1554. // MetaModel::Init_SetZListItems('advanced_search', array('name')); // Criteria of the advanced search form
  1555. }
  1556. public function __construct($aRow = null, $sClassAlias = '', $aAttToLoad = null, $aExtendedDataSpec = null)
  1557. {
  1558. parent::__construct($aRow, $sClassAlias, $aAttToLoad, $aExtendedDataSpec);
  1559. $this->aWarnings = array();
  1560. }
  1561. protected function AddWarning($sWarningMessage)
  1562. {
  1563. $this->aWarnings[] = $sWarningMessage;
  1564. }
  1565. protected function ResetWarnings()
  1566. {
  1567. $this->aWarnings = array();
  1568. }
  1569. protected function HasWarnings()
  1570. {
  1571. return (count($this->aWarnings) > 0);
  1572. }
  1573. protected function RecordWarnings()
  1574. {
  1575. $sWarningMessage = '';
  1576. $MAX_WARNING_LENGTH = 255;
  1577. switch(count($this->aWarnings))
  1578. {
  1579. case 0:
  1580. $sWarningMessage = '';
  1581. break;
  1582. case 1:
  1583. $sWarningMessage = $this->aWarnings[0];
  1584. break;
  1585. default:
  1586. $sWarningMessage = count($this->aWarnings)." warnings: ".implode(' ', $this->aWarnings);
  1587. break;
  1588. }
  1589. if (strlen($sWarningMessage) > $MAX_WARNING_LENGTH)
  1590. {
  1591. $sWarningMessage = substr($sWarningMessage, 0, $MAX_WARNING_LENGTH - 3).'...';
  1592. }
  1593. $this->Set('status_last_warning', $sWarningMessage);
  1594. }
  1595. public function DBInsert()
  1596. {
  1597. throw new CoreException('A synchronization replica must be created only by the mean of triggers');
  1598. }
  1599. // Overload the deletion -> the replica has been created by the mean of a trigger,
  1600. // it will be deleted by the mean of a trigger too
  1601. protected function DBDeleteSingleObject()
  1602. {
  1603. $this->OnDelete();
  1604. if (!MetaModel::DBIsReadOnly())
  1605. {
  1606. $oDataSource = MetaModel::GetObject('SynchroDataSource', $this->Get('sync_source_id'));
  1607. $sTable = $oDataSource->GetDataTable();
  1608. $sSQL = "DELETE FROM `$sTable` WHERE id = '{$this->GetKey()}'";
  1609. CMDBSource::Query($sSQL);
  1610. }
  1611. $this->AfterDelete();
  1612. $this->m_bIsInDB = false;
  1613. $this->m_iKey = null;
  1614. }
  1615. public function SetLastError($sMessage, $oException = null)
  1616. {
  1617. if ($oException)
  1618. {
  1619. $sText = $sMessage.$oException->getMessage();
  1620. }
  1621. else
  1622. {
  1623. $sText = $sMessage;
  1624. }
  1625. if (strlen($sText) > 255)
  1626. {
  1627. $sText = substr($sText, 0, 200).'...('.strlen($sText).' chars)...';
  1628. }
  1629. $this->Set('status_last_error', $sText);
  1630. }
  1631. public function Synchro($oDataSource, $aReconciliationKeys, $aAttributes, $oChange, &$oStatLog)
  1632. {
  1633. $this->ResetWarnings();
  1634. switch($this->Get('status'))
  1635. {
  1636. case 'new':
  1637. $this->Set('status_dest_creator', false);
  1638. // If needed, construct the query used for the reconciliation
  1639. if (!isset(self::$aSearches[$oDataSource->GetKey()]))
  1640. {
  1641. $aCriterias = array();
  1642. foreach($aReconciliationKeys as $sFilterCode => $oSyncAtt)
  1643. {
  1644. $aCriterias[] = ($sFilterCode == 'primary_key' ? 'id' : $sFilterCode).' = :'.$sFilterCode;
  1645. }
  1646. $sOQL = "SELECT ".$oDataSource->GetTargetClass()." WHERE ".implode(' AND ', $aCriterias);
  1647. self::$aSearches[$oDataSource->GetKey()] = DBObjectSearch::FromOQL($sOQL);
  1648. }
  1649. // Get the criterias for the search
  1650. $aFilterValues = array();
  1651. foreach($aReconciliationKeys as $sFilterCode => $oSyncAtt)
  1652. {
  1653. $value = $this->GetValueFromExtData($sFilterCode, $oSyncAtt, $oStatLog);
  1654. if (!is_null($value))
  1655. {
  1656. $aFilterValues[$sFilterCode] = $value;
  1657. }
  1658. else
  1659. {
  1660. // TO DO: can we retry this ??
  1661. // Reconciliation could not be performed - log and EXIT
  1662. $oStatLog->AddTrace("Could not reconcile on null value for attribute '$sFilterCode'", $this);
  1663. $this->SetLastError("Could not reconcile on null value for attribute '$sFilterCode'");
  1664. $oStatLog->Inc('stats_nb_replica_reconciled_errors');
  1665. return;
  1666. }
  1667. }
  1668. $oDestSet = new DBObjectSet(self::$aSearches[$oDataSource->GetKey()], array(), $aFilterValues);
  1669. $iCount = $oDestSet->Count();
  1670. $aConditions = array();
  1671. foreach($aFilterValues as $sCode => $sValue)
  1672. {
  1673. $aConditions[] = $sCode.'='.$sValue;
  1674. }
  1675. $sConditionDesc = implode(' AND ', $aConditions);
  1676. // How many objects match the reconciliation criterias
  1677. switch($iCount)
  1678. {
  1679. case 0:
  1680. $oStatLog->AddTrace("Nothing found on: $sConditionDesc", $this);
  1681. if ($oDataSource->Get('action_on_zero') == 'create')
  1682. {
  1683. $bCreated = $this->CreateObjectFromReplica($oDataSource->GetTargetClass(), $aAttributes, $oChange, $oStatLog);
  1684. if ($bCreated)
  1685. {
  1686. if ($this->HasWarnings())
  1687. {
  1688. $oStatLog->Inc('stats_nb_obj_created_warnings');
  1689. }
  1690. }
  1691. else
  1692. {
  1693. // Creation error has precedence over any warning
  1694. $this->ResetWarnings();
  1695. }
  1696. }
  1697. else // assumed to be 'error'
  1698. {
  1699. $oStatLog->AddTrace("Failed to reconcile (no match)", $this);
  1700. // Recoverable error
  1701. $this->SetLastError('Could not find a match for reconciliation');
  1702. $oStatLog->Inc('stats_nb_replica_reconciled_errors');
  1703. }
  1704. break;
  1705. case 1:
  1706. $oStatLog->AddTrace("Found 1 object on: $sConditionDesc", $this);
  1707. if ($oDataSource->Get('action_on_one') == 'update')
  1708. {
  1709. $oDestObj = $oDestSet->Fetch();
  1710. $bModified = $this->UpdateObjectFromReplica($oDestObj, $aAttributes, $oChange, $oStatLog, 'stats_nb_obj_new', 'stats_nb_replica_reconciled_errors');
  1711. $this->Set('dest_id', $oDestObj->GetKey());
  1712. $this->Set('dest_class', get_class($oDestObj));
  1713. if ($this->HasWarnings())
  1714. {
  1715. if ($bModified)
  1716. {
  1717. $oStatLog->Inc('stats_nb_obj_new_updated_warnings');
  1718. }
  1719. else
  1720. {
  1721. $oStatLog->Inc('stats_nb_obj_new_unchanged_warnings');
  1722. }
  1723. }
  1724. }
  1725. else
  1726. {
  1727. // assumed to be 'error'
  1728. $oStatLog->AddTrace("Failed to reconcile (1 match)", $this);
  1729. // Recoverable error
  1730. $this->SetLastError('Found a match while expecting several');
  1731. $oStatLog->Inc('stats_nb_replica_reconciled_errors');
  1732. }
  1733. break;
  1734. default:
  1735. $oStatLog->AddTrace("Found $iCount objects on: $sConditionDesc", $this);
  1736. if ($oDataSource->Get('action_on_multiple') == 'error')
  1737. {
  1738. $oStatLog->AddTrace("Failed to reconcile (N>1 matches)", $this);
  1739. // Recoverable error
  1740. $this->SetLastError($iCount.' destination objects match the reconciliation criterias: '.$sConditionDesc);
  1741. $oStatLog->Inc('stats_nb_replica_reconciled_errors');
  1742. }
  1743. elseif ($oDataSource->Get('action_on_multiple') == 'create')
  1744. {
  1745. $bCreated = $this->CreateObjectFromReplica($oDataSource->GetTargetClass(), $aAttributes, $oChange, $oStatLog);
  1746. if ($bCreated)
  1747. {
  1748. if ($this->HasWarnings())
  1749. {
  1750. $oStatLog->Inc('stats_nb_obj_created_warnings');
  1751. }
  1752. }
  1753. else
  1754. {
  1755. // Creation error has precedence over any warning
  1756. $this->ResetWarnings();
  1757. }
  1758. }
  1759. else
  1760. {
  1761. // assumed to be 'take_first'
  1762. $oDestObj = $oDestSet->Fetch();
  1763. $bModified = $this->UpdateObjectFromReplica($oDestObj, $aAttributes, $oChange, $oStatLog, 'stats_nb_obj_new', 'stats_nb_replica_reconciled_errors');
  1764. $this->Set('dest_id', $oDestObj->GetKey());
  1765. $this->Set('dest_class', get_class($oDestObj));
  1766. if ($this->HasWarnings())
  1767. {
  1768. if ($bModified)
  1769. {
  1770. $oStatLog->Inc('stats_nb_obj_new_updated_warnings');
  1771. }
  1772. else
  1773. {
  1774. $oStatLog->Inc('stats_nb_obj_new_unchanged_warnings');
  1775. }
  1776. }
  1777. }
  1778. }
  1779. $this->RecordWarnings();
  1780. break;
  1781. case 'synchronized': // try to recover synchronized replicas with warnings
  1782. case 'modified':
  1783. $oDestObj = MetaModel::GetObject($oDataSource->GetTargetClass(), $this->Get('dest_id'));
  1784. if ($oDestObj == null)
  1785. {
  1786. $this->Set('status', 'orphan'); // The destination object has been deleted !
  1787. $this->SetLastError('Destination object deleted unexpectedly');
  1788. $oStatLog->Inc('stats_nb_obj_updated_errors');
  1789. }
  1790. else
  1791. {
  1792. $bModified = $this->UpdateObjectFromReplica($oDestObj, $aAttributes, $oChange, $oStatLog, 'stats_nb_obj', 'stats_nb_obj_updated_errors');
  1793. if ($this->HasWarnings())
  1794. {
  1795. if ($bModified)
  1796. {
  1797. $oStatLog->Inc('stats_nb_obj_updated_warnings');
  1798. }
  1799. else
  1800. {
  1801. $oStatLog->Inc('stats_nb_obj_unchanged_warnings');
  1802. }
  1803. }
  1804. }
  1805. $this->RecordWarnings();
  1806. break;
  1807. default: // Do nothing in all other cases
  1808. }
  1809. }
  1810. /**
  1811. * Updates the destination object with the Extended data found in the synchro_data_XXXX table
  1812. */
  1813. protected function UpdateObjectFromReplica($oDestObj, $aAttributes, $oChange, &$oStatLog, $sStatsCode, $sStatsCodeError)
  1814. {
  1815. $aValueTrace = array();
  1816. $bModified = false;
  1817. try
  1818. {
  1819. foreach($aAttributes as $sAttCode => $oSyncAtt)
  1820. {
  1821. $value = $this->GetValueFromExtData($sAttCode, $oSyncAtt, $oStatLog);
  1822. if (!is_null($value))
  1823. {
  1824. $oDestObj->Set($sAttCode, $value);
  1825. $aValueTrace[] = "$sAttCode: $value";
  1826. }
  1827. }
  1828. // Really modified ?
  1829. if ($oDestObj->IsModified())
  1830. {
  1831. $oDestObj->DBUpdateTracked($oChange);
  1832. $bModified = true;
  1833. $oStatLog->AddTrace('Updated object - Values: {'.implode(', ', $aValueTrace).'}', $this);
  1834. if (($sStatsCode != '') &&(MetaModel::IsValidAttCode(get_class($oStatLog), $sStatsCode.'_updated')))
  1835. {
  1836. $oStatLog->Inc($sStatsCode.'_updated');
  1837. }
  1838. $this->Set('info_last_modified', date('Y-m-d H:i:s'));
  1839. }
  1840. else
  1841. {
  1842. $oStatLog->AddTrace('Unchanged object', $this);
  1843. if (($sStatsCode != '') &&(MetaModel::IsValidAttCode(get_class($oStatLog), $sStatsCode.'_unchanged')))
  1844. {
  1845. $oStatLog->Inc($sStatsCode.'_unchanged');
  1846. }
  1847. }
  1848. $this->Set('status_last_error', '');
  1849. $this->Set('status', 'synchronized');
  1850. }
  1851. catch(Exception $e)
  1852. {
  1853. $oStatLog->AddTrace("Failed to update destination object: {$e->getMessage()}", $this);
  1854. $this->SetLastError('Unable to update destination object: ', $e);
  1855. $oStatLog->Inc($sStatsCodeError);
  1856. }
  1857. return $bModified;
  1858. }
  1859. /**
  1860. * Creates the destination object populating it with the Extended data found in the synchro_data_XXXX table
  1861. * @return bool Whether or not the object was created
  1862. */
  1863. protected function CreateObjectFromReplica($sClass, $aAttributes, $oChange, &$oStatLog)
  1864. {
  1865. $bCreated = false;
  1866. $oDestObj = MetaModel::NewObject($sClass);
  1867. try
  1868. {
  1869. $aValueTrace = array();
  1870. foreach($aAttributes as $sAttCode => $oSyncAtt)
  1871. {
  1872. $value = $this->GetValueFromExtData($sAttCode, $oSyncAtt, $oStatLog);
  1873. if (!is_null($value))
  1874. {
  1875. $oDestObj->Set($sAttCode, $value);
  1876. $aValueTrace[] = "$sAttCode: $value";
  1877. }
  1878. }
  1879. $iNew = $oDestObj->DBInsertTracked($oChange);
  1880. $this->Set('dest_id', $oDestObj->GetKey());
  1881. $this->Set('dest_class', get_class($oDestObj));
  1882. $this->Set('status_dest_creator', true);
  1883. $this->Set('status_last_error', '');
  1884. $this->Set('status', 'synchronized');
  1885. $this->Set('info_creation_date', date('Y-m-d H:i:s'));
  1886. $bCreated = true;
  1887. $oStatLog->AddTrace("Created (".implode(', ', $aValueTrace).")", $this);
  1888. $oStatLog->Inc('stats_nb_obj_created');
  1889. }
  1890. catch(Exception $e)
  1891. {
  1892. $oStatLog->AddTrace("Failed to create $sClass ({$e->getMessage()})", $this);
  1893. $this->SetLastError('Unable to create destination object: ', $e);
  1894. $oStatLog->Inc('stats_nb_obj_created_errors');
  1895. }
  1896. return $bCreated;
  1897. }
  1898. /**
  1899. * Update the destination object with given values
  1900. */
  1901. public function UpdateDestObject($aValues, $oChange, &$oStatLog)
  1902. {
  1903. try
  1904. {
  1905. if ($this->Get('dest_class') == '')
  1906. {
  1907. $this->SetLastError('No destination object to update');
  1908. $oStatLog->Inc('stats_nb_obj_obsoleted_errors');
  1909. }
  1910. else
  1911. {
  1912. $oDestObj = MetaModel::GetObject($this->Get('dest_class'), $this->Get('dest_id'));
  1913. foreach($aValues as $sAttCode => $value)
  1914. {
  1915. if (!MetaModel::IsValidAttCode(get_class($oDestObj), $sAttCode))
  1916. {
  1917. throw new Exception("Unknown attribute code '$sAttCode'");
  1918. }
  1919. $oDestObj->Set($sAttCode, $value);
  1920. }
  1921. $this->Set('info_last_modified', date('Y-m-d H:i:s'));
  1922. $oDestObj->DBUpdateTracked($oChange);
  1923. $oStatLog->AddTrace("Replica marked as obsolete", $this);
  1924. $oStatLog->Inc('stats_nb_obj_obsoleted');
  1925. }
  1926. }
  1927. catch(Exception $e)
  1928. {
  1929. $this->SetLastError('Unable to update the destination object: ', $e);
  1930. $oStatLog->Inc('stats_nb_obj_obsoleted_errors');
  1931. }
  1932. }
  1933. /**
  1934. * Delete the destination object
  1935. */
  1936. public function DeleteDestObject($oChange, &$oStatLog)
  1937. {
  1938. if($this->Get('status_dest_creator'))
  1939. {
  1940. try
  1941. {
  1942. $oDestObj = MetaModel::GetObject($this->Get('dest_class'), $this->Get('dest_id'));
  1943. $oCheckDeletionPlan = new DeletionPlan();
  1944. if ($oDestObj->CheckToDelete($oCheckDeletionPlan))
  1945. {
  1946. $oActualDeletionPlan = new DeletionPlan();
  1947. $oDestObj->DBDeleteTracked($oChange, null, $oActualDeletionPlan);
  1948. $this->DBDeleteTracked($oChange);
  1949. $oStatLog->Inc('stats_nb_obj_deleted');
  1950. }
  1951. else
  1952. {
  1953. $sIssues = implode("\n", $oCheckDeletionPlan->GetIssues());
  1954. throw(new Exception($sIssues));
  1955. }
  1956. }
  1957. catch(Exception $e)
  1958. {
  1959. $this->SetLastError('Unable to delete the destination object: ', $e);
  1960. $this->Set('status', 'obsolete');
  1961. $this->DBUpdateTracked($oChange);
  1962. $oStatLog->Inc('stats_nb_obj_deleted_errors');
  1963. }
  1964. }
  1965. else
  1966. {
  1967. $this->DBDeleteTracked($oChange);
  1968. $oStatLog->Inc('stats_nb_replica_disappeared_no_action');
  1969. }
  1970. }
  1971. /**
  1972. * Get the value from the 'Extended Data' located in the synchro_data_xxx table for this replica
  1973. * Note: sExtAttCode could be a standard attcode, or 'primary_key'
  1974. */
  1975. protected function GetValueFromExtData($sExtAttCode, $oSyncAtt, &$oStatLog)
  1976. {
  1977. // $aData should contain attributes defined either for reconciliation or create/update
  1978. $aData = $this->GetExtendedData();
  1979. if ($sExtAttCode == 'primary_key')
  1980. {
  1981. return $aData['primary_key'];
  1982. }
  1983. // $sExtAttCode is a valid attribute code
  1984. //
  1985. $sClass = $this->Get('base_class');
  1986. $oAttDef = MetaModel::GetAttributeDef($sClass, $sExtAttCode);
  1987. if (!is_null($oSyncAtt) && ($oSyncAtt instanceof SynchroAttExtKey))
  1988. {
  1989. $rawValue = $aData[$sExtAttCode];
  1990. if (is_null($rawValue))
  1991. {
  1992. // Null means "ignore" this attribute
  1993. return null;
  1994. }
  1995. $sReconcAttCode = $oSyncAtt->Get('reconciliation_attcode');
  1996. if (!empty($sReconcAttCode))
  1997. {
  1998. $sRemoteClass = $oAttDef->GetTargetClass();
  1999. $oObj = MetaModel::GetObjectByColumn($sRemoteClass, $sReconcAttCode, $rawValue, false);
  2000. if ($oObj)
  2001. {
  2002. $retValue = $oObj->GetKey();
  2003. }
  2004. else
  2005. {
  2006. if ($rawValue != '')
  2007. {
  2008. // Note: differs from null (in which case the value would be left unchanged)
  2009. $oStatLog->AddTrace("Could not find [unique] object for '$sExtAttCode': searched on $sReconcAttCode = '$rawValue'", $this);
  2010. $this->AddWarning("Could not find [unique] object for '$sExtAttCode': searched on $sReconcAttCode = '$rawValue'");
  2011. }
  2012. $retValue = 0;
  2013. }
  2014. }
  2015. else
  2016. {
  2017. $retValue = $rawValue;
  2018. }
  2019. }
  2020. elseif (!is_null($oSyncAtt) && ($oSyncAtt instanceof SynchroAttLinkSet))
  2021. {
  2022. $rawValue = $aData[$sExtAttCode];
  2023. if (is_null($rawValue))
  2024. {
  2025. // Null means "ignore" this attribute
  2026. return null;
  2027. }
  2028. // MakeValueFromString() throws an exception in case of failure
  2029. $retValue = $oAttDef->MakeValueFromString($rawValue, $oSyncAtt->Get('row_separator'), $oSyncAtt->Get('attribute_separator'), $oSyncAtt->Get('value_separator'), $oSyncAtt->Get('attribute_qualifier'));
  2030. }
  2031. else
  2032. {
  2033. $aColumns = $oAttDef->GetImportColumns();
  2034. foreach($aColumns as $sColumn => $sFormat)
  2035. {
  2036. // In any case, a null column means "ignore this attribute"
  2037. //
  2038. if (is_null($aData[$sColumn]))
  2039. {
  2040. return null;
  2041. }
  2042. }
  2043. $retValue = $oAttDef->FromImportToValue($aData, $sExtAttCode);
  2044. }
  2045. return $retValue;
  2046. }
  2047. /**
  2048. * Maps the given context parameter name to the appropriate filter/search code for this class
  2049. * @param string $sContextParam Name of the context parameter, i.e. 'org_id'
  2050. * @return string Filter code, i.e. 'customer_id'
  2051. */
  2052. public static function MapContextParam($sContextParam)
  2053. {
  2054. if ($sContextParam == 'menu')
  2055. {
  2056. return null;
  2057. }
  2058. else
  2059. {
  2060. return $sContextParam;
  2061. }
  2062. }
  2063. /**
  2064. * This function returns a 'hilight' CSS class, used to hilight a given row in a table
  2065. * There are currently (i.e defined in the CSS) 4 possible values HILIGHT_CLASS_CRITICAL,
  2066. * HILIGHT_CLASS_WARNING, HILIGHT_CLASS_OK, HILIGHT_CLASS_NONE
  2067. * To Be overridden by derived classes
  2068. * @param void
  2069. * @return String The desired higlight class for the object/row
  2070. */
  2071. public function GetHilightClass()
  2072. {
  2073. // Possible return values are:
  2074. // HILIGHT_CLASS_CRITICAL, HILIGHT_CLASS_WARNING, HILIGHT_CLASS_OK, HILIGHT_CLASS_NONE
  2075. return HILIGHT_CLASS_NONE; // Not hilighted by default
  2076. }
  2077. public static function GetUIPage()
  2078. {
  2079. return '../synchro/replica.php';
  2080. }
  2081. function DisplayDetails(WebPage $oPage, $bEditMode = false)
  2082. {
  2083. // Object's details
  2084. //$this->DisplayBareHeader($oPage, $bEditMode);
  2085. $oPage->AddTabContainer(OBJECT_PROPERTIES_TAB);
  2086. $oPage->SetCurrentTabContainer(OBJECT_PROPERTIES_TAB);
  2087. $oPage->SetCurrentTab(Dict::S('UI:PropertiesTab'));
  2088. $this->DisplayBareProperties($oPage, $bEditMode);
  2089. }
  2090. function DisplayBareProperties(WebPage $oPage, $bEditMode = false, $aExtraParams = array())
  2091. {
  2092. if ($bEditMode) return; // Not editable
  2093. $oPage->add('<table style="vertical-align:top"><tr style="vertical-align:top"><td>');
  2094. $aDetails = array();
  2095. $sClass = get_class($this);
  2096. $oPage->add('<fieldset>');
  2097. $oPage->add('<legend>'.Dict::S('Core:SynchroReplica:PrivateDetails').'</legend>');
  2098. $aZList = MetaModel::FlattenZlist(MetaModel::GetZListItems($sClass, 'details'));
  2099. foreach( $aZList as $sAttCode)
  2100. {
  2101. $sDisplayValue = $this->GetAsHTML($sAttCode);
  2102. $aDetails[] = array('label' => '<span title="'.MetaModel::GetDescription($sClass, $sAttCode).'">'.MetaModel::GetLabel($sClass, $sAttCode).'</span>', 'value' => $sDisplayValue);
  2103. }
  2104. $oPage->Details($aDetails);
  2105. $oPage->add('</fieldset>');
  2106. $oDestObj = MetaModel::GetObject($this->Get('dest_class'), $this->Get('dest_id'), false);
  2107. if (is_object($oDestObj))
  2108. {
  2109. $oPage->add('<fieldset>');
  2110. $oPage->add('<legend>'.Dict::Format('Core:SynchroReplica:TargetObject', $oDestObj->GetHyperlink()).'</legend>');
  2111. $oDestObj->DisplayBareProperties($oPage, false, $aExtraParams);
  2112. $oPage->add('<fieldset>');
  2113. }
  2114. $oPage->add('</td><td>');
  2115. $oPage->add('<fieldset>');
  2116. $oPage->add('<legend>'.Dict::S('Core:SynchroReplica:PublicData').'</legend>');
  2117. $oSource = MetaModel::GetObject('SynchroDataSource', $this->Get('sync_source_id'));
  2118. $sSQLTable = $oSource->GetDataTable();
  2119. $aData = $this->LoadExtendedDataFromTable($sSQLTable);
  2120. $aHeaders = array('attcode' => array('label' => 'Attribute Code', 'description' => ''),
  2121. 'data' => array('label' => 'Value', 'description' => ''));
  2122. $aRows = array();
  2123. foreach($aData as $sKey => $value)
  2124. {
  2125. $aRows[] = array('attcode' => $sKey, 'data' => $value);
  2126. }
  2127. $oPage->Table($aHeaders, $aRows);
  2128. $oPage->add('</fieldset>');
  2129. $oPage->add('</td></tr></table>');
  2130. }
  2131. public function LoadExtendedDataFromTable($sSQLTable)
  2132. {
  2133. $sSQL = "SELECT * FROM $sSQLTable WHERE id=".$this->GetKey();
  2134. $rQuery = CMDBSource::Query($sSQL);
  2135. return CMDBSource::FetchArray($rQuery);
  2136. }
  2137. }
  2138. $oAdminMenu = new MenuGroup('AdminTools', 80 /* fRank */, 'SynchroDataSource', UR_ACTION_MODIFY, UR_ALLOWED_YES);
  2139. new OQLMenuNode('DataSources', 'SELECT SynchroDataSource', $oAdminMenu->GetIndex(), 12 /* fRank */, true, 'SynchroDataSource', UR_ACTION_MODIFY, UR_ALLOWED_YES);
  2140. // new OQLMenuNode('Replicas', 'SELECT SynchroReplica', $oAdminMenu->GetIndex(), 12 /* fRank */, true, 'SynchroReplica', UR_ACTION_MODIFY, UR_ALLOWED_YES);
  2141. // new WebPageMenuNode('Test:RunSynchro', '../synchro/synchro_exec.php', $oAdminMenu->GetIndex(), 13 /* fRank */, 'SynchroDataSource');
  2142. ?>