itop.business.class.inc.php 104 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770
  1. <?php
  2. require_once('../application/cmdbabstract.class.inc.php');
  3. require_once('../application/template.class.inc.php');
  4. /**
  5. * itop.business.class.inc.php
  6. * User defined objects, implements the business need
  7. *
  8. * @package iTopBizModelSamples
  9. * @author Romain Quetiez <romainquetiez@yahoo.fr>
  10. * @author Denis Flaven <denisflave@free.fr>
  11. * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
  12. * @link www.itop.com
  13. * @since 1.0
  14. * @version 1.1.1.1 $
  15. */
  16. /**
  17. * Possible values for the statuses of objects
  18. */
  19. $oAllowedStatuses = new ValueSetEnum('production,implementation,obsolete');
  20. /**
  21. * Relation graphs
  22. */
  23. MetaModel::RegisterRelation("impacts", array("description"=>"objects being functionaly impacted", "verb_down"=>"impacts", "verb_up"=>"is impacted by"));
  24. ////////////////////////////////////////////////////////////////////////////////////
  25. /**
  26. * An organization that owns some objects
  27. *
  28. * An organization "owns" some persons (its employees) but also some other objects
  29. * (its assets) like buildings, computers, furniture...
  30. * the services that they provides, the contracts/OLA they have signed as customer
  31. *
  32. * Organization ownership might be used to manage the R/W access to the object
  33. */
  34. ////////////////////////////////////////////////////////////////////////////////////
  35. /**
  36. * itop.business.class.inc.php
  37. * User defined objects, implements the business need
  38. *
  39. * @package iTopBizModelSamples
  40. * @author Erwan Taloc <taloche@yahoo.fr>
  41. * @author Denis Flaven <denisflave@free.fr>
  42. * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
  43. * @link www.itop.com
  44. * @since 1.0
  45. * @version 1.1.1.1 $
  46. */
  47. class bizOrganization extends cmdbAbstractObject
  48. {
  49. public static function Init()
  50. {
  51. global $oAllowedStatuses;
  52. $aParams = array
  53. (
  54. "category" => "bizmodel,searchable",
  55. "name" => "Organization",
  56. "description" => "Organizational structure: can be Company and/or Department",
  57. "key_type" => "autoincrement",
  58. "key_label" => "id",
  59. "name_attcode" => "name",
  60. "state_attcode" => "",
  61. "reconc_keys" => array("name"),
  62. "db_table" => "organizations",
  63. "db_key_field" => "id",
  64. "db_finalclass_field" => "",
  65. "display_template" => "../business/templates/default.html",
  66. );
  67. MetaModel::Init_Params($aParams);
  68. MetaModel::Init_AddAttribute(new AttributeString("name", array("label"=>"Name", "description"=>"Common name", "allowed_values"=>null, "sql"=>"name", "default_value"=>"", "is_null_allowed"=>false, "depends_on"=>array() )));
  69. MetaModel::Init_AddAttribute(new AttributeString("code", array("label"=>"Code", "description"=>"Organization code (Siret, DUNS,...)", "allowed_values"=>null, "sql"=>"code", "default_value"=>"", "is_null_allowed"=>true, "depends_on"=>array() )));
  70. MetaModel::Init_AddAttribute(new AttributeEnum("status", array("label"=>"Status", "description"=>"Lifecycle status", "allowed_values"=>$oAllowedStatuses, "sql"=>"status", "default_value"=>"implementation", "is_null_allowed"=>false, "depends_on"=>array())));
  71. MetaModel::Init_AddAttribute(new AttributeExternalKey("parent_id", array("targetclass"=>"bizOrganization", "label"=>"Parent", "description"=>"Parent organization", "allowed_values"=>null, "sql"=>"parent_id", "is_null_allowed"=>true, "on_target_delete"=>DEL_MANUAL, "depends_on"=>array())));
  72. MetaModel::Init_AddAttribute(new AttributeExternalField("parent_name", array("label"=>"Parent Name", "description"=>"Name of the parent organization", "allowed_values"=>null, "extkey_attcode"=> 'parent_id', "target_attcode"=>"name")));
  73. MetaModel::Init_AddFilterFromAttribute("name");
  74. MetaModel::Init_AddFilterFromAttribute("code");
  75. MetaModel::Init_AddFilterFromAttribute("status");
  76. // Display lists
  77. MetaModel::Init_SetZListItems('details', array('name', 'code', 'status', 'parent_id')); // Attributes to be displayed for the complete details
  78. MetaModel::Init_SetZListItems('list', array('name', 'status', 'parent_id')); // Attributes to be displayed for a list
  79. // Search criteria
  80. MetaModel::Init_SetZListItems('standard_search', array('name', 'code', 'status')); // Criteria of the std search form
  81. MetaModel::Init_SetZListItems('advanced_search', array('name', 'code', 'status')); // Criteria of the advanced search form
  82. }
  83. public function Generate(cmdbDataGenerator $oGenerator)
  84. {
  85. //$this->SetKey($oGenerator->GetOrganizationCode());
  86. $this->Set('name', $oGenerator->GetOrganizationName());
  87. $this->Set('code', $oGenerator->GetOrganizationCode());
  88. $this->Set('status', 'implementation');
  89. $this->Set('parent_id', 1);
  90. }
  91. }
  92. ////////////////////////////////////////////////////////////////////////////////////
  93. /**
  94. * Class of objects owned by some organization
  95. *
  96. * This is the root class of all the objects that can be "owned" by an organization
  97. *
  98. * A Real Object
  99. * can be supported by Contacts, having a specific role (same contact with multiple roles?)
  100. * can be documented by Documents
  101. */
  102. ////////////////////////////////////////////////////////////////////////////////////
  103. /**
  104. * itop.business.class.inc.php
  105. * User defined objects, implements the business need
  106. *
  107. * @package iTopBizModelSamples
  108. * @author Erwan Taloc <taloche@yahoo.fr>
  109. * @author Denis Flaven <denisflave@free.fr>
  110. * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
  111. * @link www.itop.com
  112. * @since 1.0
  113. * @version 1.1.1.1 $
  114. */
  115. class logRealObject extends cmdbAbstractObject
  116. {
  117. public static function Init()
  118. {
  119. global $oAllowedStatuses;
  120. $aParams = array
  121. (
  122. "category" => "bizmodel,searchable",
  123. "name" => "Object",
  124. "description" => "Any CMDB object",
  125. "key_type" => "autoincrement",
  126. "key_label" => "id",
  127. "name_attcode" => "name",
  128. "state_attcode" => "",
  129. "reconc_keys" => array("name"),
  130. "db_table" => "objects",
  131. "db_key_field" => "id",
  132. "db_finalclass_field" => "obj_class",
  133. "display_template" => "../business/templates/default.html",
  134. );
  135. MetaModel::Init_Params($aParams);
  136. MetaModel::Init_AddAttribute(new AttributeString("name", array("label"=>"Name", "description"=>"Common name", "allowed_values"=>null, "sql"=>"name", "default_value"=>"", "is_null_allowed"=>false, "depends_on"=>array())));
  137. MetaModel::Init_AddAttribute(new AttributeEnum("status", array("label"=>"Status", "description"=>"Lifecycle status", "allowed_values"=>$oAllowedStatuses, "sql"=>"status", "default_value"=>"implementation", "is_null_allowed"=>false, "depends_on"=>array())));
  138. MetaModel::Init_AddAttribute(new AttributeExternalKey("org_id", array("targetclass"=>"bizOrganization", "label"=>"Organization", "description"=>"ID of the object owner organization", "allowed_values"=>null, "sql"=>"org_id", "is_null_allowed"=>false, "on_target_delete"=>DEL_MANUAL, "depends_on"=>array())));
  139. MetaModel::Init_AddAttribute(new AttributeExternalField("org_name", array("label"=>"Organization", "description"=>"Company / Department owning this object", "allowed_values"=>null, "extkey_attcode"=> 'org_id', "target_attcode"=>"name")));
  140. MetaModel::Init_AddFilterFromAttribute("name");
  141. MetaModel::Init_AddFilterFromAttribute("status");
  142. MetaModel::Init_AddFilterFromAttribute("org_id");
  143. MetaModel::Init_AddFilterFromAttribute("org_name");
  144. // Display lists
  145. MetaModel::Init_SetZListItems('details', array('name', 'status', 'org_id')); // Attributes to be displayed for the complete details
  146. MetaModel::Init_SetZListItems('list', array('finalclass', 'name', 'status', 'org_id')); // Attributes to be displayed for a list
  147. // Search criteria
  148. MetaModel::Init_SetZListItems('standard_search', array('name', 'status')); // Criteria of the std search form
  149. MetaModel::Init_SetZListItems('advanced_search', array('name', 'status', 'org_id')); // Criteria of the advanced search form
  150. }
  151. public function Generate(cmdbDataGenerator $oGenerator)
  152. {
  153. $this->Set('org_id', $oGenerator->GetOrganizationId());
  154. $this->Set('name', "<overload in derived class>");
  155. $this->Set('status', $oGenerator->GenerateString("enum(implementation,production)"));
  156. }
  157. }
  158. ////////////////////////////////////////////////////////////////////////////////////
  159. /**
  160. * Any kind of thing that can be contacted (person, team, hotline...)
  161. * A contact can:
  162. * be linked to any Real Object with a role
  163. * be part of a GroupContact
  164. */
  165. ////////////////////////////////////////////////////////////////////////////////////
  166. class bizContact extends logRealObject
  167. {
  168. public static function Init()
  169. {
  170. $aParams = array
  171. (
  172. "category" => "bizmodel,searchable",
  173. "name" => "Contact",
  174. "description" => "Contact",
  175. "key_type" => "",
  176. "key_label" => "id",
  177. "name_attcode" => "name",
  178. "state_attcode" => "",
  179. "reconc_keys" => array("org_id", "name"), // inherited attributes
  180. "db_table" => "contacts",
  181. "db_key_field" => "id",
  182. "db_finalclass_field" => "",
  183. "display_template" => "../business/templates/default.html",
  184. );
  185. MetaModel::Init_Params($aParams);
  186. MetaModel::Init_InheritAttributes();
  187. MetaModel::Init_AddAttribute(new AttributeExternalField("org_name", array("label"=>"Organization", "description"=>"Company / Department of the contact", "allowed_values"=>null, "extkey_attcode"=> 'org_id', "target_attcode"=>"name")));
  188. MetaModel::Init_AddAttribute(new AttributeEmailAddress("email", array("label"=>"eMail", "description"=>"Email address", "allowed_values"=>null, "sql"=>"email", "default_value"=>"", "is_null_allowed"=>true, "depends_on"=>array())));
  189. MetaModel::Init_AddAttribute(new AttributeString("phone", array("label"=>"Phone", "description"=>"Telephone", "allowed_values"=>null, "sql"=>"telephone", "default_value"=>"", "is_null_allowed"=>true, "depends_on"=>array())));
  190. MetaModel::Init_AddAttribute(new AttributeExternalKey("location_id", array("targetclass"=>"bizLocation", "label"=>"Location", "description"=>"Id of the location where the contact is located", "allowed_values"=>null, "sql"=>"location_id", "is_null_allowed"=>true, "on_target_delete"=>DEL_MANUAL, "depends_on"=>array())));
  191. MetaModel::Init_AddAttribute(new AttributeExternalField("location_name", array("label"=>"Location Name", "description"=>"Name of the location where the contact is located", "allowed_values"=>null, "extkey_attcode"=> 'location_id', "target_attcode"=>"name")));
  192. MetaModel::Init_InheritFilters();
  193. MetaModel::Init_AddFilterFromAttribute("org_name");
  194. MetaModel::Init_AddFilterFromAttribute("email");
  195. MetaModel::Init_AddFilterFromAttribute("phone");
  196. MetaModel::Init_AddFilterFromAttribute("location_id");
  197. MetaModel::Init_AddFilterFromAttribute("location_name");
  198. // Display lists
  199. MetaModel::Init_SetZListItems('details', array('name', 'status', 'org_id', 'email', 'location_id', 'phone')); // Attributes to be displayed for the complete details
  200. MetaModel::Init_SetZListItems('list', array('finalclass', 'name', 'status', 'org_id', 'email', 'location_id', 'phone')); // Attributes to be displayed for a list
  201. // Search criteria
  202. MetaModel::Init_SetZListItems('standard_search', array('name', 'status', 'email', 'location_id', 'phone')); // Criteria of the std search form
  203. MetaModel::Init_SetZListItems('advanced_search', array('name', 'status', 'org_id')); // Criteria of the advanced search form
  204. }
  205. public function Generate(cmdbDataGenerator $oGenerator)
  206. {
  207. $this->Set('org_id', $oGenerator->GetOrganizationId());
  208. $this->Set('name', "<overload in derived classes>");
  209. $this->Set('email', "<overload in derived classes>");
  210. $this->Set('phone', $oGenerator->GenerateString("enum(+1,+33,+44,+49,+421)| |number(100-999)| |number(000-999)"));
  211. $this->Set('location_id', $oGenerator->GenerateKey("bizLocation", array('org_id' =>$oGenerator->GetOrganizationId() )));
  212. }
  213. }
  214. ////////////////////////////////////////////////////////////////////////////////////
  215. /**
  216. * Physical person only
  217. */
  218. ////////////////////////////////////////////////////////////////////////////////////
  219. class bizPerson extends bizContact
  220. {
  221. public static function Init()
  222. {
  223. $oAllowedEmployeeStatuses = new ValueSetEnum('off,left company,available');
  224. $aParams = array
  225. (
  226. "category" => "bizmodel,searchable",
  227. "name" => "Person",
  228. "description" => "Person",
  229. "key_type" => "",
  230. "key_label" => "id",
  231. "name_attcode" => "name",
  232. "state_attcode" => "",
  233. "reconc_keys" => array("org_id", "first_name", "name"), // comment en définir plusieurs
  234. // "reconc_keys" => array("org_id", "employee_number"),
  235. "db_table" => "persons", // Can it use the same physical DB table as any contact ?
  236. "db_key_field" => "id",
  237. "db_finalclass_field" => "",
  238. "display_template" => "../business/templates/person.html",
  239. );
  240. MetaModel::Init_Params($aParams);
  241. MetaModel::Init_InheritAttributes();
  242. MetaModel::Init_AddAttribute(new AttributeString("first_name", array("label"=>"First Name", "description"=>"First name", "allowed_values"=>null, "sql"=>"first_name", "default_value"=>"", "is_null_allowed"=>true, "depends_on"=>array())));
  243. MetaModel::Init_AddAttribute(new AttributeString("employee_number", array("label"=>"Employee Number", "description"=>"employee number", "allowed_values"=>null, "sql"=>"employee_number", "default_value"=>"", "is_null_allowed"=>true, "depends_on"=>array())));
  244. MetaModel::Init_AddAttribute(new AttributeEnum("status", array("label"=>"Status", "description"=>"Lifecycle status", "allowed_values"=>$oAllowedEmployeeStatuses, "sql"=>"status", "default_value"=>"available", "is_null_allowed"=>false, "depends_on"=>array())));
  245. MetaModel::Init_InheritFilters();
  246. MetaModel::Init_AddFilterFromAttribute("first_name");
  247. MetaModel::Init_AddFilterFromAttribute("employee_number");
  248. // Display lists
  249. MetaModel::Init_SetZListItems('details', array('first_name', 'name', 'status', 'org_id', 'email', 'location_id', 'phone', 'employee_number')); // Attributes to be displayed for the complete details
  250. MetaModel::Init_SetZListItems('list', array('first_name', 'name', 'status', 'org_id', 'email', 'location_id', 'phone')); // Attributes to be displayed for a list
  251. // Search criteria
  252. MetaModel::Init_SetZListItems('standard_search', array('first_name', 'name', 'status', 'email', 'location_id', 'phone', 'employee_number')); // Criteria of the std search form
  253. MetaModel::Init_SetZListItems('advanced_search', array('first_name', 'name', 'status', 'email', 'location_id', 'phone', 'employee_number')); // Criteria of the advanced search form
  254. }
  255. public function Generate(cmdbDataGenerator $oGenerator)
  256. {
  257. parent::Generate($oGenerator);
  258. $this->Set('name', $oGenerator->GenerateLastName());
  259. $this->Set('first_name', $oGenerator->GenerateFirstName());
  260. $this->Set('email', $oGenerator->GenerateEmail($this->Get('first_name'), $this->Get('name')));
  261. $this->Set('phone', $oGenerator->GenerateString("enum(+1,+33,+44,+49,+421)| |number(100-999)| |number(000-999)"));
  262. }
  263. }
  264. ////////////////////////////////////////////////////////////////////////////////////
  265. /**
  266. * A team is basically a contact which is also a group of contacts
  267. * (and thus a team can contain other teams)
  268. */
  269. ////////////////////////////////////////////////////////////////////////////////////
  270. class bizTeam extends bizContact
  271. {
  272. public static function Init()
  273. {
  274. $aParams = array
  275. (
  276. "category" => "bizmodel,searchable",
  277. "name" => "Team",
  278. "description" => "A group of contacts",
  279. "key_type" => "",
  280. "key_label" => "id",
  281. "name_attcode" => "name",
  282. "state_attcode" => "",
  283. "reconc_keys" => array("org_id", "name"), // inherited attributes
  284. "db_table" => "teams",
  285. "db_key_field" => "id",
  286. "db_finalclass_field" => "",
  287. "display_template" => "../business/templates/team.html",
  288. );
  289. MetaModel::Init_Params($aParams);
  290. MetaModel::Init_InheritAttributes();
  291. MetaModel::Init_InheritFilters();
  292. // Display lists
  293. MetaModel::Init_SetZListItems('details', array('name', 'status', 'org_id', 'email', 'location_id', 'phone')); // Attributes to be displayed for the complete details
  294. MetaModel::Init_SetZListItems('list', array('name', 'status', 'org_id', 'email', 'location_id', 'phone')); // Attributes to be displayed for a list
  295. // Search criteria
  296. MetaModel::Init_SetZListItems('standard_search', array('name', 'status', 'email', 'location_id', 'phone')); // Criteria of the std search form
  297. MetaModel::Init_SetZListItems('advanced_search', array('name', 'status', 'org_id')); // Criteria of the advanced search form
  298. }
  299. }
  300. ////////////////////////////////////////////////////////////////////////////////////
  301. /**
  302. * n-n link between any Object and a contact
  303. */
  304. ////////////////////////////////////////////////////////////////////////////////////
  305. class lnkContactTeam extends cmdbAbstractObject
  306. {
  307. public static function Init()
  308. {
  309. $aParams = array
  310. (
  311. "category" => "bizmodel,searchable",
  312. "name" => "TeamsLinks",
  313. "description" => "A link between a contact and a Team",
  314. "key_type" => "autoincrement",
  315. "key_label" => "link_id",
  316. "name_attcode" => "role",
  317. "state_attcode" => "",
  318. "reconc_keys" => array("contact_id", "team_name"),
  319. "db_table" => "teams_links",
  320. "db_key_field" => "link_id",
  321. "db_finalclass_field" => "",
  322. "display_template" => "../business/templates/default.html",
  323. );
  324. MetaModel::Init_Params($aParams);
  325. MetaModel::Init_AddAttribute(new AttributeExternalKey("contact_id", array("targetclass"=>"bizPerson", "label"=>"Contact", "description"=>"The contact", "allowed_values"=>null, "sql"=>"contact_id", "is_null_allowed"=>false, "on_target_delete"=>DEL_AUTO, "depends_on"=>array())));
  326. MetaModel::Init_AddAttribute(new AttributeExternalField("contact_name", array("label"=>"Contact Name", "description"=>"name of the contact", "allowed_values"=>null, "extkey_attcode"=> 'contact_id', "target_attcode"=>"name")));
  327. MetaModel::Init_AddAttribute(new AttributeExternalField("contact_phone", array("label"=>"Phone", "description"=>"Phone number of the contact", "allowed_values"=>null, "extkey_attcode"=> 'contact_id', "target_attcode"=>"phone")));
  328. MetaModel::Init_AddAttribute(new AttributeExternalField("contact_email", array("label"=>"eMail", "description"=>"eMail address of the contact", "allowed_values"=>null, "extkey_attcode"=> 'contact_id', "target_attcode"=>"email")));
  329. MetaModel::Init_AddAttribute(new AttributeExternalKey("team_id", array("targetclass"=>"bizTeam", "label"=>"Team", "description"=>"Team linked", "allowed_values"=>null, "sql"=>"team_id", "is_null_allowed"=>false, "on_target_delete"=>DEL_AUTO, "depends_on"=>array())));
  330. MetaModel::Init_AddAttribute(new AttributeExternalField("team_name", array("label"=>"Team", "description"=>"name of the Team", "allowed_values"=>null, "extkey_attcode"=> 'team_id', "target_attcode"=>"name")));
  331. MetaModel::Init_AddAttribute(new AttributeString("role", array("label"=>"Role", "description"=>"Role of the contact", "allowed_values"=>null, "sql"=>"role", "default_value"=>"", "is_null_allowed"=>false, "depends_on"=>array())));
  332. MetaModel::Init_AddFilterFromAttribute("contact_id");
  333. MetaModel::Init_AddFilterFromAttribute("contact_name");
  334. MetaModel::Init_AddFilterFromAttribute("team_id");
  335. MetaModel::Init_AddFilterFromAttribute("team_name");
  336. MetaModel::Init_AddFilterFromAttribute("role");
  337. // Display lists
  338. MetaModel::Init_SetZListItems('details', array('contact_id', 'contact_phone', 'contact_email', 'team_id', 'role')); // Attributes to be displayed for the complete details
  339. MetaModel::Init_SetZListItems('list', array('contact_id', 'contact_phone', 'contact_email', 'team_id', 'role')); // Attributes to be displayed for a list
  340. }
  341. }
  342. ////////////////////////////////////////////////////////////////////////////////////
  343. /**
  344. * An electronic document, with version tracking
  345. */
  346. ////////////////////////////////////////////////////////////////////////////////////
  347. class bizDocument extends logRealObject
  348. {
  349. public static function Init()
  350. {
  351. $aParams = array
  352. (
  353. "category" => "bizmodel,searchable",
  354. "name" => "Document",
  355. "description" => "Document",
  356. "key_type" => "",
  357. "key_label" => "id",
  358. "name_attcode" => "name",
  359. "state_attcode" => "",
  360. "reconc_keys" => array("org_id", "name"), // inherited attributes
  361. "db_table" => "documents",
  362. "db_key_field" => "id",
  363. "db_finalclass_field" => "",
  364. "display_template" => "../business/templates/document.html",
  365. );
  366. MetaModel::Init_Params($aParams);
  367. MetaModel::Init_InheritAttributes();
  368. MetaModel::Init_AddAttribute(new AttributeExternalField("org_name", array("label"=>"Organization", "description"=>"Company / Department owning the document", "allowed_values"=>null, "extkey_attcode"=> 'org_id', "target_attcode"=>"name")));
  369. MetaModel::Init_AddAttribute(new AttributeEnum("type", array("label"=>"type", "description"=>"usage of the document", "allowed_values"=>new ValueSetEnum("documentation,contract,working instructions,network map,white paper,presentation,training"), "sql"=>"type", "default_value"=>"documentation", "is_null_allowed"=>false, "depends_on"=>array())));
  370. MetaModel::Init_AddAttribute(new AttributeText("description", array("label"=>"Description", "description"=>"Service Description", "allowed_values"=>null, "sql"=>"description", "default_value"=>"", "is_null_allowed"=>true, "depends_on"=>array())));
  371. MetaModel::Init_AddAttribute(new AttributeBlob("contents", array("label"=>"Contents", "description"=>"File content", "depends_on"=>array())));
  372. MetaModel::Init_InheritFilters();
  373. MetaModel::Init_AddFilterFromAttribute("type");
  374. MetaModel::Init_AddFilterFromAttribute("description");
  375. MetaModel::Init_SetZListItems('details', array('name', 'status', 'org_id', 'type', 'description', 'contents')); // Attributes to be displayed for the complete details
  376. MetaModel::Init_SetZListItems('list', array('name', 'status', 'org_id', 'type', 'contents')); // Attributes to be displayed for a list
  377. // Search criteria
  378. MetaModel::Init_SetZListItems('standard_search', array('name', 'status', 'type')); // Criteria of the std search form
  379. MetaModel::Init_SetZListItems('advanced_search', array('name', 'status', 'type')); // Criteria of the advanced search form
  380. }
  381. }
  382. ////////////////////////////////////////////////////////////////////////////////////
  383. /**
  384. * n-n link between any Object and a Document
  385. */
  386. ////////////////////////////////////////////////////////////////////////////////////
  387. class lnkDocumentRealObject extends cmdbAbstractObject
  388. {
  389. public static function Init()
  390. {
  391. $aParams = array
  392. (
  393. "category" => "bizmodel,searchable",
  394. "name" => "DocumentsLinks",
  395. "description" => "A link between a document and another object",
  396. "key_type" => "autoincrement",
  397. "key_label" => "link_id",
  398. "name_attcode" => "link_type",
  399. "state_attcode" => "",
  400. "reconc_keys" => array("doc_id", "object_name"),
  401. "db_table" => "documents_links",
  402. "db_key_field" => "link_id",
  403. "db_finalclass_field" => "",
  404. "display_template" => "../business/templates/default.html",
  405. );
  406. MetaModel::Init_Params($aParams);
  407. MetaModel::Init_AddAttribute(new AttributeExternalKey("doc_id", array("targetclass"=>"bizDocument", "label"=>"Document", "description"=>"id of the Document", "allowed_values"=>null, "sql"=>"doc_id", "is_null_allowed"=>false, "on_target_delete"=>DEL_AUTO, "depends_on"=>array())));
  408. MetaModel::Init_AddAttribute(new AttributeExternalField("doc_name", array("label"=>"Document Name", "description"=>"name of the document", "allowed_values"=>null, "extkey_attcode"=> 'doc_id', "target_attcode"=>"name")));
  409. MetaModel::Init_AddAttribute(new AttributeExternalKey("object_id", array("targetclass"=>"logRealObject", "label"=>"Object", "description"=>"Object linked", "allowed_values"=>null, "sql"=>"object_id", "is_null_allowed"=>false, "on_target_delete"=>DEL_AUTO, "depends_on"=>array())));
  410. MetaModel::Init_AddAttribute(new AttributeExternalField("object_name", array("label"=>"Object Name", "description"=>"name of the linked object", "allowed_values"=>null, "extkey_attcode"=> 'object_id', "target_attcode"=>"name")));
  411. MetaModel::Init_AddAttribute(new AttributeString("link_type", array("label"=>"Link Type", "description"=>"More information", "allowed_values"=>null, "sql"=>"link_type", "default_value"=>"", "is_null_allowed"=>true, "depends_on"=>array())));
  412. MetaModel::Init_AddFilterFromAttribute("doc_id");
  413. MetaModel::Init_AddFilterFromAttribute("doc_name");
  414. MetaModel::Init_AddFilterFromAttribute("object_id");
  415. MetaModel::Init_AddFilterFromAttribute("object_name");
  416. MetaModel::Init_AddFilterFromAttribute("link_type");
  417. // Display lists
  418. MetaModel::Init_SetZListItems('details', array('doc_id', 'object_id', 'link_type')); // Attributes to be displayed for the complete details
  419. MetaModel::Init_SetZListItems('list', array('doc_id', 'object_id', 'link_type')); // Attributes to be displayed for a list
  420. }
  421. }
  422. ////////////////////////////////////////////////////////////////////////////////////
  423. /**
  424. * n-n link between any Object and a contact
  425. */
  426. ////////////////////////////////////////////////////////////////////////////////////
  427. class lnkContactRealObject extends cmdbAbstractObject
  428. {
  429. public static function Init()
  430. {
  431. $aParams = array
  432. (
  433. "category" => "bizmodel,searchable",
  434. "name" => "ContactsLinks",
  435. "description" => "A link between a contact and another object",
  436. "key_type" => "autoincrement",
  437. "key_label" => "link_id",
  438. "name_attcode" => "role",
  439. "state_attcode" => "",
  440. "reconc_keys" => array("contact_id", "object_name"),
  441. "db_table" => "contacts_links",
  442. "db_key_field" => "link_id",
  443. "db_finalclass_field" => "",
  444. "display_template" => "../business/templates/default.html",
  445. );
  446. MetaModel::Init_Params($aParams);
  447. MetaModel::Init_AddAttribute(new AttributeExternalKey("contact_id", array("targetclass"=>"bizContact", "label"=>"Contact", "description"=>"The contact", "allowed_values"=>null, "sql"=>"contact_id", "is_null_allowed"=>false, "on_target_delete"=>DEL_AUTO, "depends_on"=>array())));
  448. MetaModel::Init_AddAttribute(new AttributeExternalField("contact_name", array("label"=>"Contact Name", "description"=>"name of the contact", "allowed_values"=>null, "extkey_attcode"=> 'contact_id', "target_attcode"=>"name")));
  449. MetaModel::Init_AddAttribute(new AttributeExternalField("contact_phone", array("label"=>"Phone", "description"=>"Phone number of the contact", "allowed_values"=>null, "extkey_attcode"=> 'contact_id', "target_attcode"=>"phone")));
  450. MetaModel::Init_AddAttribute(new AttributeExternalField("contact_email", array("label"=>"eMail", "description"=>"eMail address of the contact", "allowed_values"=>null, "extkey_attcode"=> 'contact_id', "target_attcode"=>"email")));
  451. MetaModel::Init_AddAttribute(new AttributeExternalKey("object_id", array("targetclass"=>"logRealObject", "label"=>"Object", "description"=>"Object linked", "allowed_values"=>null, "sql"=>"object_id", "is_null_allowed"=>false, "on_target_delete"=>DEL_AUTO, "depends_on"=>array())));
  452. MetaModel::Init_AddAttribute(new AttributeExternalField("object_name", array("label"=>"Object Name", "description"=>"name of the linked object", "allowed_values"=>null, "extkey_attcode"=> 'object_id', "target_attcode"=>"name")));
  453. MetaModel::Init_AddAttribute(new AttributeString("role", array("label"=>"Role", "description"=>"Role of the contact", "allowed_values"=>null, "sql"=>"role", "default_value"=>"", "is_null_allowed"=>false, "depends_on"=>array())));
  454. MetaModel::Init_AddFilterFromAttribute("contact_id");
  455. MetaModel::Init_AddFilterFromAttribute("contact_name");
  456. MetaModel::Init_AddFilterFromAttribute("object_id");
  457. MetaModel::Init_AddFilterFromAttribute("object_name");
  458. MetaModel::Init_AddFilterFromAttribute("role");
  459. // Display lists
  460. MetaModel::Init_SetZListItems('details', array('contact_id', 'contact_phone', 'contact_email', 'object_id', 'role')); // Attributes to be displayed for the complete details
  461. MetaModel::Init_SetZListItems('list', array('contact_id', 'contact_phone', 'contact_email', 'object_id', 'role')); // Attributes to be displayed for a list
  462. }
  463. }
  464. ////////////////////////////////////////////////////////////////////////////////////
  465. /**
  466. * Any Infrastructure object (bizLocation, bizDevice, bizApplication, bizCircuit, bizInterface)
  467. * An infrastructure object:
  468. * can be covered by an OLA
  469. * can support the delivery of a Service
  470. * can be part of an GroupInfra
  471. */
  472. ////////////////////////////////////////////////////////////////////////////////////
  473. class logInfra extends logRealObject
  474. {
  475. public static function Init()
  476. {
  477. $aParams = array
  478. (
  479. "category" => "bizmodel,searchable",
  480. "name" => "Infra",
  481. "description" => "Infrastructure real object",
  482. "key_type" => "",
  483. "key_label" => "id",
  484. "name_attcode" => "name",
  485. "state_attcode" => "",
  486. "reconc_keys" => array("org_id", "name"), // inherited attributes
  487. "db_table" => "infra",
  488. "db_key_field" => "id",
  489. "db_finalclass_field" => "",
  490. "display_template" => "../business/templates/default.html",
  491. );
  492. MetaModel::Init_Params($aParams);
  493. MetaModel::Init_InheritAttributes();
  494. MetaModel::Init_AddAttribute(new AttributeEnum("severity", array("label"=>"Business Criticity", "description"=>"Severity for this infrastructure", "allowed_values"=>new ValueSetEnum("high,medium,low"), "sql"=>"severity", "default_value"=>"low", "is_null_allowed"=>false, "depends_on"=>array())));
  495. MetaModel::Init_InheritFilters();
  496. MetaModel::Init_AddFilterFromAttribute("severity");
  497. }
  498. }
  499. ////////////////////////////////////////////////////////////////////////////////////
  500. /**
  501. * n-n link between any Object and a contact
  502. */
  503. ////////////////////////////////////////////////////////////////////////////////////
  504. class lnkContactInfra extends cmdbAbstractObject
  505. {
  506. public static function Init()
  507. {
  508. $aParams = array
  509. (
  510. "category" => "bizmodel,searchable",
  511. "name" => "ContactsInfraLinks",
  512. "description" => "A link between a contact and an infrastructure",
  513. "key_type" => "autoincrement",
  514. "key_label" => "link_id",
  515. "name_attcode" => "role",
  516. "state_attcode" => "",
  517. "reconc_keys" => array("contact_id", "infra_id"),
  518. "db_table" => "contacts_infra_links",
  519. "db_key_field" => "link_id",
  520. "db_finalclass_field" => "",
  521. "display_template" => "../business/templates/default.html",
  522. );
  523. MetaModel::Init_Params($aParams);
  524. MetaModel::Init_AddAttribute(new AttributeExternalKey("contact_id", array("targetclass"=>"bizContact", "label"=>"Contact", "description"=>"The contact", "allowed_values"=>null, "sql"=>"contact_id", "is_null_allowed"=>false, "on_target_delete"=>DEL_AUTO, "depends_on"=>array())));
  525. MetaModel::Init_AddAttribute(new AttributeExternalField("contact_name", array("label"=>"Contact Name", "description"=>"name of the contact", "allowed_values"=>null, "extkey_attcode"=> 'contact_id', "target_attcode"=>"name")));
  526. MetaModel::Init_AddAttribute(new AttributeExternalField("contact_phone", array("label"=>"Phone", "description"=>"Phone number of the contact", "allowed_values"=>null, "extkey_attcode"=> 'contact_id', "target_attcode"=>"phone")));
  527. MetaModel::Init_AddAttribute(new AttributeExternalField("contact_email", array("label"=>"eMail", "description"=>"eMail address of the contact", "allowed_values"=>null, "extkey_attcode"=> 'contact_id', "target_attcode"=>"email")));
  528. MetaModel::Init_AddAttribute(new AttributeExternalKey("infra_id", array("targetclass"=>"logInfra", "label"=>"Infrastructure", "description"=>"Infrastructure linked", "allowed_values"=>null, "sql"=>"infra_id", "is_null_allowed"=>false, "on_target_delete"=>DEL_AUTO, "depends_on"=>array())));
  529. MetaModel::Init_AddAttribute(new AttributeExternalField("infra_name", array("label"=>"Infrastructure", "description"=>"name of the linked infrastructure", "allowed_values"=>null, "extkey_attcode"=> 'infra_id', "target_attcode"=>"name")));
  530. MetaModel::Init_AddAttribute(new AttributeString("role", array("label"=>"Role", "description"=>"Role of the contact", "allowed_values"=>null, "sql"=>"role", "default_value"=>"", "is_null_allowed"=>false, "depends_on"=>array())));
  531. MetaModel::Init_AddFilterFromAttribute("contact_id");
  532. MetaModel::Init_AddFilterFromAttribute("contact_name");
  533. MetaModel::Init_AddFilterFromAttribute("infra_id");
  534. MetaModel::Init_AddFilterFromAttribute("infra_name");
  535. MetaModel::Init_AddFilterFromAttribute("role");
  536. // Display lists
  537. MetaModel::Init_SetZListItems('details', array('contact_id', 'contact_phone', 'contact_email', 'infra_id', 'role')); // Attributes to be displayed for the complete details
  538. MetaModel::Init_SetZListItems('list', array('contact_id', 'contact_phone', 'contact_email', 'infra_id', 'role')); // Attributes to be displayed for a list
  539. }
  540. }
  541. ////////////////////////////////////////////////////////////////////////////////////
  542. /**
  543. * bizLocation (Region, Country, City, Site, Building, Floor, Room, Rack,...)
  544. * pourrait être mis en plusieurs sous objects, puisqu'une adresse sur region n'a pas trop de sens
  545. *
  546. */
  547. ////////////////////////////////////////////////////////////////////////////////////
  548. class bizLocation extends logInfra
  549. {
  550. public static function Init()
  551. {
  552. $aParams = array
  553. (
  554. "category" => "bizmodel,searchable",
  555. "name" => "Location",
  556. "description" => "Any type of location: Region, Country, City, Site, Building, Floor, Room, Rack,...",
  557. "key_type" => "",
  558. "key_label" => "id",
  559. "name_attcode" => "name",
  560. "state_attcode" => "",
  561. "reconc_keys" => array("org_id", "name"), // inherited attributes
  562. "db_table" => "location",
  563. "db_key_field" => "id",
  564. "db_finalclass_field" => "",
  565. "display_template" => "../business/templates/location.html",
  566. );
  567. MetaModel::Init_Params($aParams);
  568. MetaModel::Init_InheritAttributes();
  569. MetaModel::Init_AddAttribute(new AttributeText("address", array("label"=>"Address", "description"=>"The postal address of the location", "allowed_values"=>null, "sql"=>"address", "default_value"=>"", "is_null_allowed"=>false, "depends_on"=>array())));
  570. MetaModel::Init_AddAttribute(new AttributeString("country", array("label"=>"Country", "description"=>"Country of the location", "allowed_values"=>null, "sql"=>"country", "default_value"=>"", "is_null_allowed"=>false, "depends_on"=>array())));
  571. MetaModel::Init_AddAttribute(new AttributeExternalKey("parent_location_id", array("targetclass"=>"bizLocation", "label"=>"Parent Location", "description"=>"where is the real object physically located", "allowed_values"=>null, "sql"=>"parent_location_id", "is_null_allowed"=>true, "on_target_delete"=>DEL_MANUAL, "depends_on"=>array())));
  572. MetaModel::Init_AddAttribute(new AttributeExternalField("parent_location_name", array("label"=>"Parent location (Name)", "description"=>"name of the parent location", "allowed_values"=>null, "extkey_attcode"=> 'parent_location_id', "target_attcode"=>"name")));
  573. // on veut pouvoir rechercher une location qui soit un descendant (pas obligatoirement direct) d'une Location, on fait comment ?
  574. MetaModel::Init_InheritFilters();
  575. MetaModel::Init_AddFilterFromAttribute("country");
  576. MetaModel::Init_AddFilterFromAttribute("address");
  577. MetaModel::Init_AddFilterFromAttribute("parent_location_id");
  578. MetaModel::Init_AddFilterFromAttribute("parent_location_name");
  579. // Display lists
  580. MetaModel::Init_SetZListItems('details', array('name', 'status', 'org_id', 'address', 'country', 'parent_location_id')); // Attributes to be displayed for the complete details
  581. MetaModel::Init_SetZListItems('list', array('name', 'status', 'org_id', 'country')); // Attributes to be displayed for a list
  582. // Search criteria
  583. MetaModel::Init_SetZListItems('standard_search', array('name', 'status', 'country', 'parent_location_name')); // Criteria of the std search form
  584. MetaModel::Init_SetZListItems('advanced_search', array('name', 'status', 'address', 'country', 'parent_location_id', 'org_id')); // Criteria of the advanced search form
  585. }
  586. public function ComputeValues()
  587. {
  588. /*
  589. $this->Set("location_id", $this->GetKey());
  590. // Houston, I've got an issue, as this field is calculated, I should reload the object... ?
  591. $this->Set("location_name", "abc (to be finalized)");
  592. */
  593. }
  594. function DisplayDetails(web_page $oPage)
  595. {
  596. parent::DisplayDetails($oPage);
  597. /*
  598. parent::DisplayDetails($oPage);
  599. $oSearchFilter = new CMDBSearchFilter('bizServer');
  600. $oSearchFilter->AddCondition('location_id', $this->GetKey(), '=');
  601. $oSet = new CMDBObjectSet($oSearchFilter);
  602. $count = $oSet->Count();
  603. if ($count > 0)
  604. {
  605. $oPage->SetCurrentTab("Servers");
  606. $oPage->p("$count server(s) at this location:");
  607. $this->DisplaySet($oPage, $oSet);
  608. }
  609. $oSearchFilter = new CMDBSearchFilter('bizNetworkDevice');
  610. $oSearchFilter->AddCondition('location_id', $this->GetKey(), '=');
  611. $oSet = new CMDBObjectSet($oSearchFilter);
  612. $count = $oSet->Count();
  613. if ($count > 0)
  614. {
  615. $oPage->SetCurrentTab("Network Devices");
  616. $oPage->p("$count Network Device(s) at this location:");
  617. $this->DisplaySet($oPage, $oSet);
  618. }
  619. $oSearchFilter = new CMDBSearchFilter('bizPC');
  620. $oSearchFilter->AddCondition('location_id', $this->GetKey(), '=');
  621. $oSet = new CMDBObjectSet($oSearchFilter);
  622. $count = $oSet->Count();
  623. if ($count > 0)
  624. {
  625. $oPage->SetCurrentTab("PCs");
  626. $oPage->p("$count PC(s) at this location:");
  627. $this->DisplaySet($oPage, $oSet);
  628. }
  629. $oSearchFilter = new CMDBSearchFilter('bizPerson');
  630. $oSearchFilter->AddCondition('location_id', $this->GetKey(), '=');
  631. $oSet = new CMDBObjectSet($oSearchFilter);
  632. $count = $oSet->Count();
  633. if ($count > 0)
  634. {
  635. $oPage->SetCurrentTab("Contacts");
  636. $oPage->p("$count person(s) located to this location:");
  637. $this->DisplaySet($oPage, $oSet);
  638. }
  639. $oSearchFilter = new CMDBSearchFilter('lnkDocumentRealObject');
  640. $oSearchFilter->AddCondition('object_id', $this->GetKey(), '=');
  641. $oSet = new CMDBObjectSet($oSearchFilter);
  642. $count = $oSet->Count();
  643. if ($count > 0)
  644. {
  645. $oPage->SetCurrentTab("Details");
  646. $oPage->p("$count Document(s) linked to this location:");
  647. $this->DisplaySet($oPage, $oSet);
  648. }
  649. */
  650. }
  651. public function Generate(cmdbDataGenerator $oGenerator)
  652. {
  653. parent::Generate($oGenerator);
  654. $sLastName = $oGenerator->GenerateLastName();
  655. $sCityName = $oGenerator->GenerateCityName();
  656. $this->Set('name', $sCityName);
  657. $this->Set('country', $oGenerator->GenerateCountryName());
  658. $this->Set('address', $oGenerator->GenerateString("number(1-999)| |enum(rue,rue,rue,place,avenue,av.,route de)| |$sLastName| |number(0000-9999)|0 |$sCityName"));
  659. $this->Set('parent_location_id', 1);
  660. }
  661. }
  662. ////////////////////////////////////////////////////////////////////////////////////
  663. /**
  664. * Circuit (one end only)
  665. */
  666. ////////////////////////////////////////////////////////////////////////////////////
  667. class bizCircuit extends logInfra
  668. {
  669. public static function Init()
  670. {
  671. $aParams = array
  672. (
  673. "category" => "bizmodel,searchable",
  674. "name" => "Circuit",
  675. "description" => "Any type of circuit",
  676. "key_type" => "",
  677. "key_label" => "id",
  678. "name_attcode" => "name",
  679. "state_attcode" => "",
  680. "reconc_keys" => array("org_id", "provider_id", "carrier_ref", "name"), // inherited attributes
  681. "db_table" => "circuits",
  682. "db_key_field" => "id",
  683. "db_finalclass_field" => "",
  684. "display_template" => "../business/templates/Circuits.html",
  685. );
  686. MetaModel::Init_Params($aParams);
  687. MetaModel::Init_InheritAttributes();
  688. MetaModel::Init_AddAttribute(new AttributeString("speed", array("label"=>"speed", "description"=>"speed of the circuit", "allowed_values"=>null, "sql"=>"speed", "default_value"=>"", "is_null_allowed"=>true, "depends_on"=>array())));
  689. MetaModel::Init_AddAttribute(new AttributeExternalKey("location1_id", array("targetclass"=>"bizLocation", "label"=>"Location 1", "description"=>"Id of the location 1", "allowed_values"=>null, "sql"=>"location1_id", "is_null_allowed"=>false,"on_target_delete"=>DEL_MANUAL, "depends_on"=>array())));
  690. MetaModel::Init_AddAttribute(new AttributeExternalField("location1_name", array("label"=>"Location 1", "description"=>"Name of the location", "allowed_values"=>null, "extkey_attcode"=> 'location1_id', "target_attcode"=>"name")));
  691. MetaModel::Init_AddAttribute(new AttributeExternalKey("location2_id", array("targetclass"=>"bizLocation", "label"=>"Location 2", "description"=>"Id of the location 2", "allowed_values"=>null, "sql"=>"location2_id", "is_null_allowed"=>false, "on_target_delete"=>DEL_MANUAL,"depends_on"=>array())));
  692. MetaModel::Init_AddAttribute(new AttributeExternalField("location2_name", array("label"=>"Location 2", "description"=>"Name of the location", "allowed_values"=>null, "extkey_attcode"=> 'location2_id', "target_attcode"=>"name")));
  693. MetaModel::Init_AddAttribute(new AttributeExternalKey("interface1_id", array("targetclass"=>"bizInterface", "label"=>"Interface 1", "description"=>"id of the interface 1", "allowed_values"=>null, "sql"=>"interface1_id", "is_null_allowed"=>false,"on_target_delete"=>DEL_MANUAL, "depends_on"=>array())));
  694. MetaModel::Init_AddAttribute(new AttributeExternalField("interface1_name", array("label"=>"Interface", "description"=>"Name of the interface 1", "allowed_values"=>null, "extkey_attcode"=> 'interface1_id', "target_attcode"=>"name")));
  695. MetaModel::Init_AddAttribute(new AttributeExternalField("device1_name", array("label"=>"Device 1", "description"=>"Name of the device 1", "allowed_values"=>null, "extkey_attcode"=> 'interface1_id', "target_attcode"=>"device_name")));
  696. MetaModel::Init_AddAttribute(new AttributeExternalKey("interface2_id", array("targetclass"=>"bizInterface", "label"=>"Interface 2", "description"=>"id of the interface 2", "allowed_values"=>null, "sql"=>"interface2_id", "is_null_allowed"=>false,"on_target_delete"=>DEL_MANUAL, "depends_on"=>array())));
  697. MetaModel::Init_AddAttribute(new AttributeExternalField("interface2_name", array("label"=>"Interface", "description"=>"Name of the interface 2", "allowed_values"=>null, "extkey_attcode"=> 'interface2_id', "target_attcode"=>"name")));
  698. MetaModel::Init_AddAttribute(new AttributeExternalField("device2_name", array("label"=>"Interface", "description"=>"Name of the device 2", "allowed_values"=>null, "extkey_attcode"=> 'interface2_id', "target_attcode"=>"device_name")));
  699. MetaModel::Init_AddAttribute(new AttributeExternalKey("provider_id", array("targetclass"=>"bizOrganization", "label"=>"Carrier ID", "description"=>"Organization ID of the provider of the Circuit", "allowed_values"=>null, "sql"=>"provider_id", "is_null_allowed"=>false,"on_target_delete"=>DEL_MANUAL, "depends_on"=>array())));
  700. MetaModel::Init_AddAttribute(new AttributeExternalField("carrier_name", array("label"=>"Carrier", "description"=>"Name of the carrier", "allowed_values"=>null, "extkey_attcode"=> 'provider_id', "target_attcode"=>"name")));
  701. MetaModel::Init_AddAttribute(new AttributeString("carrier_ref", array("label"=>"Carrier reference", "description"=>"reference of the circuit used by the carrier", "allowed_values"=>null, "sql"=>"carrier_ref", "default_value"=>"", "is_null_allowed"=>true, "depends_on"=>array())));
  702. MetaModel::Init_InheritFilters();
  703. MetaModel::Init_AddFilterFromAttribute("speed");
  704. MetaModel::Init_AddFilterFromAttribute("location1_id");
  705. MetaModel::Init_AddFilterFromAttribute("location2_id");
  706. MetaModel::Init_AddFilterFromAttribute("interface1_id");
  707. MetaModel::Init_AddFilterFromAttribute("interface2_id");
  708. MetaModel::Init_AddFilterFromAttribute("provider_id");
  709. MetaModel::Init_AddFilterFromAttribute("carrier_ref");
  710. // Display lists
  711. MetaModel::Init_SetZListItems('details', array('name', 'status', 'org_id', 'speed', 'location1_id','interface1_id','device1_name','location2_id','interface2_id','device2_name','provider_id', 'carrier_ref')); // Attributes to be displayed for the complete details
  712. MetaModel::Init_SetZListItems('list', array('name', 'status', 'org_id', 'provider_id', 'carrier_ref', 'speed')); // Attributes to be displayed for a list
  713. // Search criteria
  714. MetaModel::Init_SetZListItems('standard_search', array('name', 'status', 'location1_id','location2_id','carrier_ref', 'speed', 'provider_id')); // Criteria of the std search form
  715. MetaModel::Init_SetZListItems('advanced_search', array('name', 'status', 'location1_id','location2_id','carrier_ref', 'speed', 'provider_id')); // Criteria of the advanced search form
  716. }
  717. public function ComputeValues()
  718. {
  719. /*
  720. $oLocatedObject = MetaModel::GetObject("Located Object", $this->Get("located_object_id"));
  721. $this->Set("location_id", $oLocatedObject->Get("location_id"));
  722. // Houston, I've got an issue, as this field is calculated, I should reload the object...
  723. $this->Set("location_name", "abc (to be finalized)");
  724. $this->Set("device_id", $oLocatedObject->Get("device_id"));
  725. // Houston, I've got an issue, as this field is calculated, I should reload the object...
  726. $this->Set("device_name", "abc (to be finalized)");
  727. $this->Set("interface_id", $oLocatedObject->Get("interface_id"));
  728. // Houston, I've got an issue, as this field is calculated, I should reload the object...
  729. $this->Set("interface_name", "abc (to be finalized)");
  730. */
  731. }
  732. }
  733. ////////////////////////////////////////////////////////////////////////////////////
  734. /**
  735. * Any Device Network Interface
  736. */
  737. ////////////////////////////////////////////////////////////////////////////////////
  738. class bizInterface extends logInfra
  739. {
  740. public static function Init()
  741. {
  742. $aParams = array
  743. (
  744. "category" => "bizmodel,searchable",
  745. "name" => "Interface",
  746. "description" => "Interface",
  747. "key_type" => "",
  748. "key_label" => "id",
  749. "name_attcode" => "name",
  750. "state_attcode" => "",
  751. "reconc_keys" => array("org_id", "device_id", "name"),
  752. "db_table" => "interfaces",
  753. "db_key_field" => "id",
  754. "db_finalclass_field" => "",
  755. "display_template" => "../business/templates/interface.html",
  756. );
  757. MetaModel::Init_Params($aParams);
  758. MetaModel::Init_InheritAttributes();
  759. MetaModel::Init_AddAttribute(new AttributeExternalKey("device_id", array("targetclass"=>"bizDevice", "label"=>"Device", "description"=>"Device on which the interface is physically located", "allowed_values"=>null, "sql"=>"device_id", "is_null_allowed"=>false, "on_target_delete"=>DEL_MANUAL, "depends_on"=>array())));
  760. MetaModel::Init_AddAttribute(new AttributeExternalField("device_name", array("label"=>"Device", "description"=>"name of the device on which the interface is located", "allowed_values"=>null, "extkey_attcode"=> 'device_id', "target_attcode"=>"name")));
  761. MetaModel::Init_AddAttribute(new AttributeExternalField("device_location_id", array("label"=>"Device location", "description"=>"location of the device on which the interface is located", "allowed_values"=>null, "extkey_attcode"=> 'device_id', "target_attcode"=>"location_id")));
  762. MetaModel::Init_AddAttribute(new AttributeExternalField("device_location_name", array("label"=>"Device location", "description"=>"name of the location of the device on which the interface is located", "allowed_values"=>null, "extkey_attcode"=> 'device_id', "target_attcode"=>"location_name")));
  763. MetaModel::Init_AddAttribute(new AttributeEnum("logical_type", array("label"=>"Logical type", "description"=>"Logical type of interface", "allowed_values"=>new ValueSetEnum("primary,secondary,backup,port,logical"), "sql"=>"logical_type", "default_value"=>"port", "is_null_allowed"=>false, "depends_on"=>array())));
  764. MetaModel::Init_AddAttribute(new AttributeEnum("physical_type", array("label"=>"Physical type", "description"=>"Physical type of interface", "allowed_values"=>new ValueSetEnum("ethernet,framerelay,atm,vlan"), "sql"=>"physical_type", "default_value"=>"ethernet", "is_null_allowed"=>false, "depends_on"=>array())));
  765. MetaModel::Init_AddAttribute(new AttributeString("ip_address", array("label"=>"IP address", "description"=>"address IP for this interface", "allowed_values"=>null, "sql"=>"ip_address", "default_value"=>"", "is_null_allowed"=>true, "depends_on"=>array())));
  766. MetaModel::Init_AddAttribute(new AttributeString("mask", array("label"=>"Subnet Mask", "description"=>"Subnet mask for this interface", "allowed_values"=>null, "sql"=>"mask", "default_value"=>"", "is_null_allowed"=>true, "depends_on"=>array())));
  767. MetaModel::Init_AddAttribute(new AttributeString("mac", array("label"=>"MAC address", "description"=>"MAC address for this interface", "allowed_values"=>null, "sql"=>"mac", "default_value"=>"", "is_null_allowed"=>true, "depends_on"=>array())));
  768. MetaModel::Init_AddAttribute(new AttributeString("speed", array("label"=>"Speed (Kb/s)", "description"=>"speed of this interface", "allowed_values"=>null, "sql"=>"speed", "default_value"=>"", "is_null_allowed"=>true, "depends_on"=>array())));
  769. MetaModel::Init_AddAttribute(new AttributeEnum("duplex", array("label"=>"Duplex", "description"=>"Duplex configured for this interface", "allowed_values"=>new ValueSetEnum("half,full,unknown"), "sql"=>"duplex", "default_value"=>"unknown", "is_null_allowed"=>true, "depends_on"=>array())));
  770. MetaModel::Init_AddAttribute(new AttributeExternalKey("if_connected_id", array("targetclass"=>"bizInterface", "label"=>"Connected interface", "description"=>"interface connected to this one", "allowed_values"=>null, "sql"=>"ext_if_id", "is_null_allowed"=>true, "on_target_delete"=>DEL_MANUAL, "depends_on"=>array())));
  771. MetaModel::Init_AddAttribute(new AttributeExternalField("if_connected_name", array("label"=>"Connected interface", "description"=>"name of the interface connected to this one", "allowed_values"=>null, "extkey_attcode"=> 'if_connected_id', "target_attcode"=>"name")));
  772. MetaModel::Init_AddAttribute(new AttributeExternalField("if_connected_device", array("label"=>"Connected device", "description"=>"name of the device connected to this interface", "allowed_values"=>null, "extkey_attcode"=> 'if_connected_id', "target_attcode"=>"device_name")));
  773. MetaModel::Init_InheritFilters();
  774. MetaModel::Init_AddFilterFromAttribute("device_id");
  775. MetaModel::Init_AddFilterFromAttribute("device_name");
  776. MetaModel::Init_AddFilterFromAttribute("device_location_id");
  777. MetaModel::Init_AddFilterFromAttribute("logical_type");
  778. MetaModel::Init_AddFilterFromAttribute("physical_type");
  779. MetaModel::Init_AddFilterFromAttribute("ip_address");
  780. MetaModel::Init_AddFilterFromAttribute("mac");
  781. MetaModel::Init_AddFilterFromAttribute("if_connected_id");
  782. // Display lists
  783. MetaModel::Init_SetZListItems('details', array('name', 'status', 'org_id', 'device_id', 'device_location_id','severity','logical_type','physical_type','ip_address','mask','mac','speed','duplex','if_connected_name','if_connected_device')); // Attributes to be displayed for the complete details
  784. MetaModel::Init_SetZListItems('list', array('name', 'status', 'org_id', 'device_id','severity')); // Attributes to be displayed for a list
  785. // Search criteria
  786. MetaModel::Init_SetZListItems('standard_search', array('name', 'status', 'ip_address','mac','device_id')); // Criteria of the std search form
  787. MetaModel::Init_SetZListItems('advanced_search', array('name', 'status', 'device_id', 'org_id')); // Criteria of the advanced search form
  788. }
  789. function DisplayDetails(web_page $oPage)
  790. {
  791. parent::DisplayDetails($oPage);
  792. /*
  793. $oSearchFilter = new CMDBSearchFilter('lnkInterfaces');
  794. $oSearchFilter->AddCondition('interface1_id', $this->GetKey(), '=');
  795. $oSet = new CMDBObjectSet($oSearchFilter);
  796. $count = $oSet->Count();
  797. if ($count > 0)
  798. {
  799. $oPage->SetCurrentTab("Connected interfaces");
  800. $oPage->p("$count interface(s) connected to this device:");
  801. $this->DisplaySet($oPage, $oSet);
  802. }
  803. */
  804. }
  805. public function ComputeValues()
  806. {
  807. /*
  808. // my location is the location of my device
  809. $oDevice = MetaModel::GetObject("bizDevice", $this->Get("device_id"));
  810. $this->Set("location_id", $oDevice->Get("location_id"));
  811. // Houston, I've got an issue, as this field is calculated, I should reload the object...
  812. $this->Set("location_name", "abc (to be finalized)");
  813. // my device is given by my Creator
  814. // my interface is myself
  815. $this->Set("interface_id", $this->GetKey());
  816. // Houston, I've got an issue, as this field is calculated, I should reload the object...
  817. $this->Set("interface_name", "abc (to be finalized)");
  818. */
  819. }
  820. }
  821. ////////////////////////////////////////////////////////////////////////////////////
  822. /**
  823. * n-n link between any Interfaces
  824. */
  825. ////////////////////////////////////////////////////////////////////////////////////
  826. /*
  827. class lnkInterfaces extends cmdbAbstractObject
  828. {
  829. public static function Init()
  830. {
  831. $aParams = array
  832. (
  833. "category" => "bizmodel,searchable",
  834. "name" => "InterfacesLinks",
  835. "description" => "A link between two interfaces",
  836. "key_type" => "autoincrement",
  837. "key_label" => "link_id",
  838. "name_attcode" => "link_type",
  839. "state_attcode" => "",
  840. "reconc_keys" => array("interface1_id", "interface2_id"),
  841. "db_table" => "interfaces_links",
  842. "db_key_field" => "link_id",
  843. "db_finalclass_field" => "",
  844. "display_template" => "../business/templates/default.html",
  845. );
  846. MetaModel::Init_Params($aParams);
  847. MetaModel::Init_AddAttribute(new AttributeExternalKey("interface1_id", array("targetclass"=>"bizInterface", "label"=>"Interface", "description"=>"The interface1", "sql"=>"interface1_id", "allowed_values"=> null, "is_null_allowed"=>false, "on_target_delete"=>DEL_AUTO, "depends_on"=>array())));
  848. MetaModel::Init_AddAttribute(new AttributeExternalField("interface1_name", array("label"=>"Interface1 Name", "description"=>"name of the interface1", "extkey_attcode"=> 'interface1_id', "allowed_values"=> null, "target_attcode"=>"name")));
  849. MetaModel::Init_AddAttribute(new AttributeExternalKey("interface2_id", array("targetclass"=>"bizInterface", "label"=>"Interface", "description"=>"The interface2", "sql"=>"interface2_id", "allowed_values"=> null, "is_null_allowed"=>false, "on_target_delete"=>DEL_AUTO, "depends_on"=>array())));
  850. MetaModel::Init_AddAttribute(new AttributeExternalField("interface2_name", array("label"=>"Interface2 Name", "description"=>"name of the interface2", "extkey_attcode"=> 'interface2_id', "allowed_values"=> null, "target_attcode"=>"name")));
  851. MetaModel::Init_AddAttribute(new AttributeExternalField("interface1_device_id", array("label"=>"Device", "description"=>"device", "extkey_attcode"=> 'interface1_id', "allowed_values"=> null, "target_attcode"=>"device_id")));
  852. MetaModel::Init_AddAttribute(new AttributeExternalField("interface1_device_name", array("label"=>"Device Name", "description"=>"name of the device", "extkey_attcode"=> 'interface1_id', "allowed_values"=> null, "target_attcode"=>"device_name")));
  853. MetaModel::Init_AddAttribute(new AttributeExternalField("interface2_device_id", array("label"=>"Device", "description"=>"device", "extkey_attcode"=> 'interface2_id', "allowed_values"=> null, "target_attcode"=>"device_id")));
  854. MetaModel::Init_AddAttribute(new AttributeExternalField("interface2_device_name", array("label"=>"Device Name", "description"=>"name of the device", "extkey_attcode"=> 'interface2_id', "allowed_values"=> null, "target_attcode"=>"device_name")));
  855. MetaModel::Init_AddAttribute(new AttributeString("link_type", array("label"=>"Link Type", "description"=>"More information", "sql"=>"link_type", "default_value"=>"", "allowed_values"=> null, "is_null_allowed"=>false, "depends_on"=>array())));
  856. MetaModel::Init_AddFilterFromAttribute("interface1_id");
  857. MetaModel::Init_AddFilterFromAttribute("interface1_name");
  858. MetaModel::Init_AddFilterFromAttribute("interface2_id");
  859. MetaModel::Init_AddFilterFromAttribute("interface2_name");
  860. MetaModel::Init_AddFilterFromAttribute("interface2_device_name");
  861. MetaModel::Init_AddFilterFromAttribute("link_type");
  862. // Display lists
  863. MetaModel::Init_SetZListItems('details', array('interface1_id', 'interface2_id', 'link_type')); // Attributes to be displayed for the complete details
  864. MetaModel::Init_SetZListItems('list', array('interface1_id', 'interface1_device_id', 'interface2_id', 'interface2_device_id', 'link_type')); // Attributes to be displayed for the complete details
  865. }
  866. }
  867. */
  868. ////////////////////////////////////////////////////////////////////////////////////
  869. /**
  870. * A subnet
  871. */
  872. ////////////////////////////////////////////////////////////////////////////////////
  873. class bizSubnet extends logInfra
  874. {
  875. public static function Init()
  876. {
  877. $aParams = array
  878. (
  879. "category" => "bizmodel,searchable",
  880. "name" => "Subnet",
  881. "description" => "Logical or physical subnet",
  882. "key_type" => "",
  883. "key_label" => "id",
  884. "name_attcode" => "name",
  885. "state_attcode" => "",
  886. "reconc_keys" => array("org_id", "name"), // inherited attributes
  887. "db_table" => "subnets",
  888. "db_key_field" => "id",
  889. "db_finalclass_field" => "",
  890. "display_template" => "",
  891. );
  892. MetaModel::Init_Params($aParams);
  893. MetaModel::Init_InheritAttributes();
  894. MetaModel::Init_AddAttribute(new AttributeString("ip", array("label"=>"IP", "description"=>"IP", "allowed_values"=>null, "sql"=>"ip", "default_value"=>"", "is_null_allowed"=>false, "depends_on"=>array())));
  895. MetaModel::Init_AddAttribute(new AttributeString("mask", array("label"=>"IP mask", "description"=>"IP mask", "allowed_values"=>null, "sql"=>"mask", "default_value"=>"", "is_null_allowed"=>false, "depends_on"=>array())));
  896. MetaModel::Init_InheritFilters();
  897. MetaModel::Init_AddFilterFromAttribute("ip");
  898. MetaModel::Init_AddFilterFromAttribute("mask");
  899. // Display lists
  900. MetaModel::Init_SetZListItems('details', array('name', 'ip','mask')); // Attributes to be displayed for the complete details
  901. MetaModel::Init_SetZListItems('list', array('name', 'ip', 'mask')); // Attributes to be displayed for a list
  902. // Search criteria
  903. MetaModel::Init_SetZListItems('standard_search', array('name', 'ip','mask')); // Criteria of the std search form
  904. MetaModel::Init_SetZListItems('advanced_search', array('name', 'ip','mask')); // Criteria of the advanced search form
  905. }
  906. function DisplayBareRelations(web_page $oPage)
  907. {
  908. parent::DisplayBareRelations($oPage);
  909. $oPage->SetCurrentTabContainer('Related Objects');
  910. $oPage->SetCurrentTab('IP Usage');
  911. $bit_ip = ip2long($this->Get('ip'));
  912. $bit_mask = ip2long($this->Get('mask'));
  913. $sIPMin = long2ip($bit_ip & $bit_mask);
  914. $sIPMax = long2ip(($bit_ip | (~$bit_mask)) - 1);
  915. $oPage->p("Interfaces having an IP in the range: <em>$sIPMin</em> to <em>$sIPMax</em>");
  916. $oIfSet = new CMDBObjectSet(DBObjectSearch::FromOQL("SELECT bizInterface AS if WHERE INET_ATON(if.ip_address) >= INET_ATON('$sIPMin') AND INET_ATON(if.ip_address) <= INET_ATON('$sIPMax')"));
  917. self::DisplaySet($oPage, $oIfSet);
  918. $iCountUsed = $oIfSet->Count();
  919. $iCountRange = ip2long($sIPMax) - ip2long($sIPMin);
  920. $iFreeCount = $iCountRange - $iCountUsed;
  921. $oPage->SetCurrentTab('Free IPs');
  922. $oPage->p("Free IPs: $iFreeCount");
  923. $oPage->p("Here is an extract of 10 free IP addresses");
  924. $aUsedIPs = $oIfSet->GetColumnAsArray('ip_address', false);
  925. $i = 0;
  926. while ($i < min($iFreeCount, 10))
  927. {
  928. $i++;
  929. $iAnIP = ip2long($sIPMin) + $i;
  930. if (in_array($iAnIP, $aUsedIPs)) continue;
  931. $sAnIP = long2ip($iAnIP);
  932. $oPage->p($sAnIP);
  933. }
  934. }
  935. }
  936. ////////////////////////////////////////////////////////////////////////////////////
  937. /**
  938. * Any electronic device
  939. */
  940. ////////////////////////////////////////////////////////////////////////////////////
  941. class bizDevice extends logInfra
  942. {
  943. public static function Init()
  944. {
  945. $aParams = array
  946. (
  947. "category" => "bizmodel,searchable",
  948. "name" => "Device",
  949. "description" => "Electronic devices",
  950. "key_type" => "",
  951. "key_label" => "id",
  952. "name_attcode" => "name",
  953. "state_attcode" => "",
  954. "reconc_keys" => array("org_id", "name"), // inherited attributes
  955. "db_table" => "devices",
  956. "db_key_field" => "id",
  957. "db_finalclass_field" => "",
  958. "display_template" => "../business/templates/default.html",
  959. );
  960. MetaModel::Init_Params($aParams);
  961. MetaModel::Init_InheritAttributes();
  962. MetaModel::Init_AddAttribute(new AttributeExternalKey("location_id", array("targetclass"=>"bizLocation", "label"=>"Location", "description"=>"where is the located object physically located", "allowed_values"=>null, "sql"=>"location_id", "is_null_allowed"=>false, "on_target_delete"=>DEL_MANUAL, "depends_on"=>array())));
  963. MetaModel::Init_AddAttribute(new AttributeExternalField("location_name", array("label"=>"Location Name", "description"=>"name of the location", "allowed_values"=>null, "extkey_attcode"=> 'location_id', "target_attcode"=>"name")));
  964. MetaModel::Init_AddAttribute(new AttributeExternalField("country", array("label"=>"Country", "description"=>"country where the device is located", "allowed_values"=>null, "extkey_attcode"=> 'location_id', "target_attcode"=>"country")));
  965. MetaModel::Init_AddAttribute(new AttributeString("brand", array("label"=>"Brand", "description"=>"The manufacturer of the device", "allowed_values"=>null, "sql"=>"brand", "default_value"=>"", "is_null_allowed"=>true, "depends_on"=>array())));
  966. MetaModel::Init_AddAttribute(new AttributeString("model", array("label"=>"Model", "description"=>"The model number of the device", "allowed_values"=>null, "sql"=>"model", "default_value"=>"", "is_null_allowed"=>true, "depends_on"=>array())));
  967. MetaModel::Init_AddAttribute(new AttributeString("serial_number", array("label"=>"Serial Number", "description"=>"The serial number of the device", "allowed_values"=>null, "sql"=>"serial_number", "default_value"=>"", "is_null_allowed"=>true, "depends_on"=>array())));
  968. MetaModel::Init_AddAttribute(new AttributeString("mgmt_ip", array("label"=>"Mgmt IP", "description"=>"Management IP", "allowed_values"=>null, "sql"=>"mgmt_ip", "default_value"=>"", "is_null_allowed"=>true, "depends_on"=>array())));
  969. MetaModel::Init_InheritFilters();
  970. MetaModel::Init_AddFilterFromAttribute("location_id");
  971. MetaModel::Init_AddFilterFromAttribute("country");
  972. MetaModel::Init_AddFilterFromAttribute("brand");
  973. MetaModel::Init_AddFilterFromAttribute("model");
  974. MetaModel::Init_AddFilterFromAttribute("serial_number");
  975. MetaModel::Init_AddFilterFromAttribute("mgmt_ip");
  976. }
  977. public static function GetRelationQueries($sRelCode)
  978. {
  979. switch ($sRelCode)
  980. {
  981. case "impacts":
  982. $aRels = array(
  983. "connected device" => array("sQuery"=>"bizDevice: PKEY IS device_id IN (bizInterface: PKEY IS interface2_id IN (lnkInterfaces: interface1_id IN (bizInterface: device_id = \$[this.pkey::])))", "bPropagate"=>true, "iDistance"=>3),
  984. "hosted app" => array("sQuery"=>"bizApplication: infra_id = \$[this.pkey::]", "bPropagate"=>true, "iDistance"=>3),
  985. );
  986. return array_merge($aRels, parent::GetRelationQueries($sRelCode));
  987. }
  988. }
  989. public function ComputeValues()
  990. {
  991. /*
  992. // my location is the location of my device (external field)
  993. $this->Set("location_id", $this->Get("device_location_id"));
  994. // Houston, I've got an issue, as this field is calculated, I should reload the object...
  995. $this->Set("location_name", "abc (to be finalized)");
  996. // my device is myself
  997. $this->Set("device_id", $this->GetKey());
  998. // my interface is "nothing"
  999. $this->Set("interface_id", null);
  1000. */
  1001. }
  1002. }
  1003. ////////////////////////////////////////////////////////////////////////////////////
  1004. /**
  1005. * A personal computer
  1006. */
  1007. ////////////////////////////////////////////////////////////////////////////////////
  1008. class bizPC extends bizDevice
  1009. {
  1010. public static function Init()
  1011. {
  1012. $aParams = array
  1013. (
  1014. "category" => "bizmodel,searchable",
  1015. "name" => "PC",
  1016. "description" => "Personal Computers",
  1017. "key_type" => "",
  1018. "key_label" => "id",
  1019. "name_attcode" => "name",
  1020. "state_attcode" => "",
  1021. "reconc_keys" => array("org_id", "name"), // inherited attributes
  1022. "db_table" => "pcs",
  1023. "db_key_field" => "id",
  1024. "db_finalclass_field" => "",
  1025. "display_template" => "../business/templates/pc.html",
  1026. );
  1027. MetaModel::Init_Params($aParams);
  1028. MetaModel::Init_InheritAttributes();
  1029. MetaModel::Init_AddAttribute(new AttributeEnum("type", array("label"=>"Type", "description"=>"Type of computer", "allowed_values"=>new ValueSetEnum("desktop PC,laptop"), "sql"=>"type", "default_value"=>"desktop PC", "is_null_allowed"=>false, "depends_on"=>array())));
  1030. MetaModel::Init_AddAttribute(new AttributeString("memory_size", array("label"=>"Memory Size", "description"=>"Size of the memory", "allowed_values"=>null, "sql"=>"memory_size", "default_value"=>"", "is_null_allowed"=>true, "depends_on"=>array())));
  1031. MetaModel::Init_AddAttribute(new AttributeString("cpu", array("label"=>"CPU", "description"=>"CPU type", "allowed_values"=>null, "sql"=>"cpu_type", "default_value"=>"", "is_null_allowed"=>true, "depends_on"=>array())));
  1032. MetaModel::Init_AddAttribute(new AttributeString("hdd_size", array("label"=>"HDD Size", "description"=>"Size of the hard drive", "allowed_values"=>null, "sql"=>"hdd_size", "default_value"=>"", "is_null_allowed"=>true, "depends_on"=>array())));
  1033. MetaModel::Init_AddAttribute(new AttributeString("os_family", array("label"=>"OS Family", "description"=>"Type of operating system", "allowed_values"=>null, "sql"=>"os_family", "default_value"=>"", "is_null_allowed"=>true, "depends_on"=>array())));
  1034. MetaModel::Init_AddAttribute(new AttributeString("os_version", array("label"=>"OS Version", "description"=>"Detailed version number of the operating system", "allowed_values"=>null, "sql"=>"os_version", "default_value"=>"", "is_null_allowed"=>true, "depends_on"=>array())));
  1035. MetaModel::Init_AddAttribute(new AttributeString("shipment_number", array("label"=>"Shipment Code", "description"=>"Number for tracking shipment", "allowed_values"=>null, "sql"=>"shipment_number", "default_value"=>"", "is_null_allowed"=>true, "depends_on"=>array())));
  1036. MetaModel::Init_AddAttribute(new AttributeString("default_gateway", array("label"=>"Default Gateway", "description"=>"Default Gateway for this device", "allowed_values"=>null, "sql"=>"default_gateway", "default_value"=>"", "is_null_allowed"=>true, "depends_on"=>array())));
  1037. MetaModel::Init_InheritFilters();
  1038. MetaModel::Init_AddFilterFromAttribute("type");
  1039. MetaModel::Init_AddFilterFromAttribute("memory_size");
  1040. MetaModel::Init_AddFilterFromAttribute("cpu");
  1041. MetaModel::Init_AddFilterFromAttribute("hdd_size");
  1042. MetaModel::Init_AddFilterFromAttribute("os_family");
  1043. MetaModel::Init_AddFilterFromAttribute("os_version");
  1044. // Display lists
  1045. MetaModel::Init_SetZListItems('details', array('name', 'status','severity', 'org_id', 'location_id', 'brand', 'model','os_family','os_version','mgmt_ip','default_gateway','shipment_number','serial_number', 'type', 'cpu', 'memory_size', 'hdd_size')); // Attributes to be displayed for the complete details
  1046. MetaModel::Init_SetZListItems('list', array('name', 'status', 'severity', 'org_id', 'location_id', 'brand', 'model', 'type')); // Attributes to be displayed for a list
  1047. // Search criteria
  1048. MetaModel::Init_SetZListItems('standard_search', array('name', 'status', 'severity','type', 'brand', 'model','os_family','mgmt_ip')); // Criteria of the std search form
  1049. MetaModel::Init_SetZListItems('advanced_search', array('name', 'status', 'type', 'brand', 'model', 'cpu', 'memory_size', 'hdd_size')); // Criteria of the advanced search form
  1050. }
  1051. function DisplayDetails(web_page $oPage)
  1052. {
  1053. parent::DisplayDetails($oPage);
  1054. /*
  1055. parent::DisplayDetails($oPage);
  1056. $oSearchFilter = new CMDBSearchFilter('lnkContactRealObject');
  1057. $oSearchFilter->AddCondition('object_id', $this->GetKey(), '=');
  1058. $oSet = new CMDBObjectSet($oSearchFilter);
  1059. $count = $oSet->Count();
  1060. if ($count > 0)
  1061. {
  1062. $oPage->SetCurrentTab("Contacts");
  1063. $oPage->p("$count contact(s) linked to this PC:");
  1064. $this->DisplaySet($oPage, $oSet);
  1065. }
  1066. $oSearchFilter = new CMDBSearchFilter('bizInterface');
  1067. $oSearchFilter->AddCondition('device_id', $this->GetKey(), '=');
  1068. $oSet = new CMDBObjectSet($oSearchFilter);
  1069. $count = $oSet->Count();
  1070. if ($count > 0)
  1071. {
  1072. $oPage->SetCurrentTab("Interfaces");
  1073. $oPage->p("$count interface(s) for this device:");
  1074. $this->DisplaySet($oPage, $oSet);
  1075. }
  1076. */
  1077. }
  1078. public function Generate(cmdbDataGenerator $oGenerator)
  1079. {
  1080. $this->Set('org_id', $oGenerator->GetOrganizationId());
  1081. $this->Set('location_id', $oGenerator->GenerateKey("bizLocation", array('org_id' =>$oGenerator->GetOrganizationId() )));
  1082. $this->Set('name', $oGenerator->GenerateString("enum(pc,pc,pc,pc,pc,win,redhat,linux,srv,workstation)|number(000-999)|.|domain()"));
  1083. $this->Set('brand', $oGenerator->GenerateString("enum(Hewlett-Packard,Dell,Compaq,Siemens,Packard Bell,IBM,Gateway,Medion,Sony)"));
  1084. $this->Set('model', $oGenerator->GenerateString("enum(Vectra,Deskpro,Dimension,Optiplex,Latitude,Precision,Vaio)"));
  1085. $this->Set('serial_number', $oGenerator->GenerateString("enum(FR,US,TW,CH)|number(000000-999999)"));
  1086. $this->Set('memory_size', $oGenerator->GenerateString("enum(128,256,384,512,768,1024,1536,2048)"));
  1087. $this->Set('cpu', $oGenerator->GenerateString("enum(Pentium III,Pentium 4, Pentium M,Core Duo,Core 2 Duo,Celeron,Opteron,Thurion,Athlon)"));
  1088. $this->Set('hdd_size', $oGenerator->GenerateString("enum(40,60,80,120,200,300)"));
  1089. }
  1090. }
  1091. ////////////////////////////////////////////////////////////////////////////////////
  1092. /**
  1093. * A server
  1094. */
  1095. ////////////////////////////////////////////////////////////////////////////////////
  1096. class bizServer extends bizDevice
  1097. {
  1098. public static function Init()
  1099. {
  1100. $aParams = array
  1101. (
  1102. "category" => "bizmodel,searchable",
  1103. "name" => "Server",
  1104. "description" => "Computer Servers",
  1105. "key_type" => "",
  1106. "key_label" => "id",
  1107. "name_attcode" => "name",
  1108. "state_attcode" => "status",
  1109. "reconc_keys" => array("org_id", "name"), // inherited attributes
  1110. "db_table" => "servers",
  1111. "db_key_field" => "id",
  1112. "db_finalclass_field" => "",
  1113. "display_template" => "../business/templates/server.html",
  1114. );
  1115. MetaModel::Init_Params($aParams);
  1116. MetaModel::Init_InheritAttributes();
  1117. MetaModel::Init_AddAttribute(new AttributeEnum("status", array("label"=>"Status", "description"=>"Status of the server", "allowed_values"=>new ValueSetEnum("InStore,Shipped,Plugged,ProductionCandidate,InProduction,BeingDeconfigured,Obsolete"), "sql"=>"status", "default_value"=>"InStore", "is_null_allowed"=>false, "depends_on"=>array())));
  1118. MetaModel::Init_AddAttribute(new AttributeString("memory_size", array("label"=>"Memory Size", "description"=>"Size of the memory", "allowed_values"=>null, "sql"=>"memory_size", "default_value"=>"", "is_null_allowed"=>true, "depends_on"=>array())));
  1119. MetaModel::Init_AddAttribute(new AttributeString("cpu", array("label"=>"CPU type", "description"=>"CPU type", "allowed_values"=>null, "sql"=>"cpu_type", "default_value"=>"", "is_null_allowed"=>true, "depends_on"=>array())));
  1120. MetaModel::Init_AddAttribute(new AttributeString("number_of_cpus", array("label"=>"Number of CPUs", "description"=>"Number of CPUs", "allowed_values"=>null, "sql"=>"number_of_cpus", "default_value"=>"1", "is_null_allowed"=>true, "depends_on"=>array())));
  1121. MetaModel::Init_AddAttribute(new AttributeString("hdd_size", array("label"=>"HDD Size", "description"=>"Size of the hard drive", "allowed_values"=>null, "sql"=>"hdd_size", "default_value"=>"", "is_null_allowed"=>true, "depends_on"=>array())));
  1122. MetaModel::Init_AddAttribute(new AttributeString("hdd_free_size", array("label"=>"Free HDD Size", "description"=>"Size of the free space on the hard drive(s)", "allowed_values"=>null, "sql"=>"hdd_free_size", "default_value"=>"", "is_null_allowed"=>true, "depends_on"=>array())));
  1123. MetaModel::Init_AddAttribute(new AttributeString("os_family", array("label"=>"OS Family", "description"=>"Type of operating system", "allowed_values"=>null, "sql"=>"os_family", "default_value"=>"", "is_null_allowed"=>true, "depends_on"=>array())));
  1124. MetaModel::Init_AddAttribute(new AttributeString("os_version", array("label"=>"OS Version", "description"=>"Detailed version number of the operating system", "allowed_values"=>null, "sql"=>"os_version", "default_value"=>"", "is_null_allowed"=>true, "depends_on"=>array())));
  1125. MetaModel::Init_AddAttribute(new AttributeString("shipment_number", array("label"=>"Shipment number", "description"=>"Number for tracking shipment", "allowed_values"=>null, "sql"=>"shipment_number", "default_value"=>"", "is_null_allowed"=>true, "depends_on"=>array())));
  1126. MetaModel::Init_AddAttribute(new AttributeString("default_gateway", array("label"=>"Default Gateway", "description"=>"Default Gateway for this device", "allowed_values"=>null, "sql"=>"default_gateway", "default_value"=>"", "is_null_allowed"=>true, "depends_on"=>array())));
  1127. MetaModel::Init_InheritFilters();
  1128. MetaModel::Init_AddFilterFromAttribute("memory_size");
  1129. MetaModel::Init_AddFilterFromAttribute("cpu");
  1130. MetaModel::Init_AddFilterFromAttribute("number_of_cpus");
  1131. MetaModel::Init_AddFilterFromAttribute("hdd_size");
  1132. MetaModel::Init_AddFilterFromAttribute("hdd_free_size");
  1133. MetaModel::Init_AddFilterFromAttribute("os_family");
  1134. MetaModel::Init_AddFilterFromAttribute("os_version");
  1135. // Life cycle
  1136. MetaModel::Init_DefineState("InStore", array("label"=>"InStore", "description"=>"Device in store", "attribute_inherit"=>null,
  1137. "attribute_list"=>array()));
  1138. MetaModel::Init_DefineState("Shipped", array("label"=>"Shipped", "description"=>"The device had been shipped to future location", "attribute_inherit"=>null,
  1139. "attribute_list"=>array("location_id"=>OPT_ATT_MANDATORY,"serial_number"=>OPT_ATT_MANDATORY,"shipment_number"=>OPT_ATT_MANDATORY)));
  1140. MetaModel::Init_DefineState("Plugged", array("label"=>"Plugged", "description"=>"The device is connected to the network", "attribute_inherit"=>null,
  1141. "attribute_list"=>array("location_id"=>OPT_ATT_MANDATORY,"mgmt_ip"=>OPT_ATT_MANDATORY,"name"=>OPT_ATT_MANDATORY)));
  1142. MetaModel::Init_DefineState("ProductionCandidate", array("label"=>"Pre-Production", "description"=>"The device is ready to be move to production", "attribute_inherit"=>null,
  1143. "attribute_list"=>array()));
  1144. MetaModel::Init_DefineState("InProduction", array("label"=>"Production", "description"=>"The device is on production", "attribute_inherit"=>null,
  1145. "attribute_list"=>array()));
  1146. MetaModel::Init_DefineState("BeingDeconfigured", array("label"=>"BeingDeconfigured", "description"=>"The device is about to be removed from is current location", "attribute_inherit"=>null,
  1147. "attribute_list"=>array()));
  1148. MetaModel::Init_DefineState("Obsolete", array("label"=>"Obsolete", "description"=>"The device is no more used", "attribute_inherit"=>null,
  1149. "attribute_list"=>array()));
  1150. MetaModel::Init_DefineStimulus("ev_store", new StimulusUserAction(array("label"=>"Store this server", "description"=>"This server is move to storage")));
  1151. MetaModel::Init_DefineStimulus("ev_ship", new StimulusUserAction(array("label"=>"Ship this server", "description"=>"This server is shipped to futur location")));
  1152. MetaModel::Init_DefineStimulus("ev_plug", new StimulusUserAction(array("label"=>"Plug this server", "description"=>"The server is pluuged on the network")));
  1153. MetaModel::Init_DefineStimulus("ev_configuration_finished", new StimulusUserAction(array("label"=>"Configuration finished", "description"=>"The device is ready to move to production evaluation")));
  1154. MetaModel::Init_DefineStimulus("ev_val_failed", new StimulusUserAction(array("label"=>"Review configuration", "description"=>"The configuration for this server is not completed")));
  1155. MetaModel::Init_DefineStimulus("ev_mtp", new StimulusUserAction(array("label"=>"Move to Production", "description"=>"The server is moved to production")));
  1156. MetaModel::Init_DefineStimulus("ev_decommission", new StimulusUserAction(array("label"=>"Decommission", "description"=>"The server is being decommissioned")));
  1157. MetaModel::Init_DefineStimulus("ev_obsolete", new StimulusUserAction(array("label"=>"Obsolete", "description"=>"The server is no more used")));
  1158. MetaModel::Init_DefineStimulus("ev_recycle", new StimulusUserAction(array("label"=>"Recycle this server", "description"=>"The server is move back to deconfiguration")));
  1159. MetaModel::Init_DefineTransition("InStore", "ev_ship", array("target_state"=>"Shipped", "actions"=>array(), "user_restriction"=>null));
  1160. MetaModel::Init_DefineTransition("InStore", "ev_plug", array("target_state"=>"Plugged", "actions"=>array(), "user_restriction"=>null));
  1161. MetaModel::Init_DefineTransition("Shipped", "ev_store", array("target_state"=>"InStore", "actions"=>array(), "user_restriction"=>null));
  1162. MetaModel::Init_DefineTransition("Shipped", "ev_plug", array("target_state"=>"Plugged", "actions"=>array(), "user_restriction"=>null));
  1163. MetaModel::Init_DefineTransition("Plugged", "ev_ship", array("target_state"=>"Shipped", "actions"=>array(), "user_restriction"=>null));
  1164. MetaModel::Init_DefineTransition("Plugged", "ev_store", array("target_state"=>"InStore", "actions"=>array(), "user_restriction"=>null));
  1165. MetaModel::Init_DefineTransition("Plugged", "ev_configuration_finished", array("target_state"=>"ProductionCandidate", "actions"=>array(), "user_restriction"=>null));
  1166. MetaModel::Init_DefineTransition("ProductionCandidate", "ev_val_failed", array("target_state"=>"Plugged", "actions"=>array(), "user_restriction"=>null));
  1167. MetaModel::Init_DefineTransition("ProductionCandidate", "ev_mtp", array("target_state"=>"InProduction", "actions"=>array(), "user_restriction"=>null));
  1168. MetaModel::Init_DefineTransition("InProduction", "ev_obsolete", array("target_state"=>"Obsolete", "actions"=>array(), "user_restriction"=>null));
  1169. MetaModel::Init_DefineTransition("InProduction", "ev_decommission", array("target_state"=>"BeingDeconfigured", "actions"=>array(), "user_restriction"=>null));
  1170. MetaModel::Init_DefineTransition("BeingDeconfigured", "ev_ship", array("target_state"=>"Shipped", "actions"=>array(), "user_restriction"=>null));
  1171. MetaModel::Init_DefineTransition("BeingDeconfigured", "ev_plug", array("target_state"=>"Plugged", "actions"=>array(), "user_restriction"=>null));
  1172. MetaModel::Init_DefineTransition("BeingDeconfigured", "ev_store", array("target_state"=>"InStore", "actions"=>array(), "user_restriction"=>null));
  1173. MetaModel::Init_DefineTransition("BeingDeconfigured", "ev_obsolete", array("target_state"=>"Obsolete", "actions"=>array(), "user_restriction"=>null));
  1174. MetaModel::Init_DefineTransition("Obsolete", "ev_recycle", array("target_state"=>"BeingDeconfigured", "actions"=>array(), "user_restriction"=>null));
  1175. // Display lists
  1176. MetaModel::Init_SetZListItems('details', array('name', 'mgmt_ip','default_gateway','status', 'severity','org_id', 'location_id', 'brand', 'model', 'os_family', 'os_version','serial_number','shipment_number', 'cpu', 'number_of_cpus', 'memory_size', 'hdd_size', 'hdd_free_size')); // Attributes to be displayed for the complete details
  1177. MetaModel::Init_SetZListItems('list', array('name', 'status','severity', 'org_id', 'location_id', 'brand', 'model', 'os_family', 'os_version')); // Attributes to be displayed for a list
  1178. // Search criteria
  1179. MetaModel::Init_SetZListItems('standard_search', array('name', 'status','severity', 'brand', 'model', 'os_family', 'location_id')); // Criteria of the std search form
  1180. MetaModel::Init_SetZListItems('advanced_search', array('name', 'status','brand', 'model', 'os_family', 'os_version', 'location_id', 'cpu', 'number_of_cpus', 'memory_size', 'hdd_size', 'hdd_free_size')); // Criteria of the advanced search form
  1181. }
  1182. function DisplayDetails(web_page $oPage)
  1183. {
  1184. parent::DisplayDetails($oPage);
  1185. /*
  1186. parent::DisplayDetails($oPage);
  1187. $oSearchFilter = new CMDBSearchFilter('lnkContactRealObject');
  1188. $oSearchFilter->AddCondition('object_id', $this->GetKey(), '=');
  1189. $oSet = new CMDBObjectSet($oSearchFilter);
  1190. $count = $oSet->Count();
  1191. if ($count > 0)
  1192. {
  1193. $oPage->SetCurrentTab("Contacts");
  1194. $oPage->p("$count contact(s) for this server:");
  1195. $this->DisplaySet($oPage, $oSet);
  1196. }
  1197. $oSearchFilter = new CMDBSearchFilter('bizInterface');
  1198. $oSearchFilter->AddCondition('device_id', $this->GetKey(), '=');
  1199. $oSet = new CMDBObjectSet($oSearchFilter);
  1200. $count = $oSet->Count();
  1201. if ($count > 0)
  1202. {
  1203. $oPage->SetCurrentTab("Interfaces");
  1204. $oPage->p("$count interface(s) for this server:");
  1205. $this->DisplaySet($oPage, $oSet);
  1206. }
  1207. $oSearchFilter = new CMDBSearchFilter('Application');
  1208. $oSearchFilter->AddCondition('infra_id', $this->GetKey(), '=');
  1209. $oSet = new CMDBObjectSet($oSearchFilter);
  1210. $count = $oSet->Count();
  1211. if ($count > 0)
  1212. {
  1213. $oPage->SetCurrentTab("Installed applications");
  1214. $oPage->p("$count application(s) installed on this server:");
  1215. $this->DisplaySet($oPage, $oSet);
  1216. }
  1217. $oSearchFilter = new CMDBSearchFilter('bizPatch');
  1218. $oSearchFilter->AddCondition('infra_id', $this->GetKey(), '=');
  1219. $oSet = new CMDBObjectSet($oSearchFilter);
  1220. $count = $oSet->Count();
  1221. if ($count > 0)
  1222. {
  1223. $oPage->SetCurrentTab("Installed patches");
  1224. $oPage->p("$count patch(s) installed on this server:");
  1225. $this->DisplaySet($oPage, $oSet);
  1226. }
  1227. */
  1228. }
  1229. public function Generate(cmdbDataGenerator $oGenerator)
  1230. {
  1231. $this->Set('org_id', $oGenerator->GetOrganizationId());
  1232. $this->Set('location_id', $oGenerator->GenerateKey("bizLocation", array('org_id' =>$oGenerator->GetOrganizationId() )));
  1233. $this->Set('name', $oGenerator->GenerateString("enum(pc,pc,pc,pc,pc,win,redhat,linux,srv,workstation)|number(000-999)|.|domain()"));
  1234. $this->Set('brand', $oGenerator->GenerateString("enum(Hewlett-Packard,Dell,Compaq,Siemens,Packard Bell,IBM,Gateway,Medion,Sony)"));
  1235. $this->Set('model', $oGenerator->GenerateString("enum(Vectra,Deskpro,Dimension,Optiplex,Latitude,Precision,Vaio)"));
  1236. $this->Set('serial_number', $oGenerator->GenerateString("enum(FR,US,TW,CH)|number(000000-999999)"));
  1237. $this->Set('memory_size', $oGenerator->GenerateString("enum(512,1024,2048,4096,2048,4096,8192,8192,8192,16384,32768)"));
  1238. $this->Set('cpu', $oGenerator->GenerateString("enum(Pentium III,Pentium 4,Pentium M,Core Duo,Core 2 Duo,Celeron,Opteron,Thurion,Athlon)"));
  1239. $this->Set('number_of_cpu', $oGenerator->GenerateString("enum(1,1,2,2,2,2,2,4,4,8)"));
  1240. $this->Set('hdd_size', $oGenerator->GenerateString("enum(500,1024,500,1024,500,1024,2048)"));
  1241. $this->Set('hdd_free_size', $this->Get('hdd_size')*$oGenerator->GenerateString("number(20-80)"));
  1242. $this->Set('os_family', $oGenerator->GenerateString("enum(Windows,Windows,Windows,Linux,Windows,Linux,Windows,Linux,Linux,HP-UX,Solaris,AIX)"));
  1243. $this->Set('os_version', $oGenerator->GenerateString("enum(XP,XP,XP,RH EL 4,RH EL 5,SuSE 10.3,SuSE 10.4,11.11,11.11i)"));
  1244. }
  1245. }
  1246. ////////////////////////////////////////////////////////////////////////////////////
  1247. /**
  1248. * A network device
  1249. */
  1250. ////////////////////////////////////////////////////////////////////////////////////
  1251. class bizNetworkDevice extends bizDevice
  1252. {
  1253. public static function Init()
  1254. {
  1255. $aParams = array
  1256. (
  1257. "category" => "bizmodel,searchable",
  1258. "name" => "Network Device",
  1259. "description" => "A network device",
  1260. "key_type" => "",
  1261. "key_label" => "id",
  1262. "name_attcode" => "name",
  1263. "state_attcode" => "",
  1264. "reconc_keys" => array("org_id", "name"), // inherited attributes
  1265. "db_table" => "network_devices",
  1266. "db_key_field" => "id",
  1267. "db_finalclass_field" => "",
  1268. "display_template" => "../business/templates/network.device.html",
  1269. );
  1270. MetaModel::Init_Params($aParams);
  1271. MetaModel::Init_InheritAttributes();
  1272. MetaModel::Init_AddAttribute(new AttributeEnum("type", array("label"=>"Type", "description"=>"Type of device", "allowed_values"=>new ValueSetEnum("switch,router,firewall,load balancer,hub,WAN accelerator"), "sql"=>"type", "default_value"=>"switch", "is_null_allowed"=>false, "depends_on"=>array())));
  1273. MetaModel::Init_AddAttribute(new AttributeString("default_gateway", array("label"=>"Default Gateway", "description"=>"Default Gateway for this device", "allowed_values"=>null, "sql"=>"default_gateway", "default_value"=>"", "is_null_allowed"=>true, "depends_on"=>array())));
  1274. MetaModel::Init_AddAttribute(new AttributeString("ios_version", array("label"=>"IOS version", "description"=>"IOS (software) version", "allowed_values"=>null, "sql"=>"ios_version", "default_value"=>"", "is_null_allowed"=>true, "depends_on"=>array())));
  1275. MetaModel::Init_AddAttribute(new AttributeString("memory", array("label"=>"Memory", "description"=>"Memory description", "allowed_values"=>null, "sql"=>"memory", "default_value"=>"", "is_null_allowed"=>true, "depends_on"=>array())));
  1276. MetaModel::Init_AddAttribute(new AttributeString("snmp_read", array("label"=>"SNMP Community (Read)", "description"=>"SNMP Read Community String", "allowed_values"=>null, "sql"=>"snmp_read", "default_value"=>"", "is_null_allowed"=>true, "depends_on"=>array())));
  1277. MetaModel::Init_AddAttribute(new AttributeString("snmp_write", array("label"=>"SNMP Community (Write)", "description"=>"SNMP Write Community String", "allowed_values"=>null, "sql"=>"snmp_write", "default_value"=>"", "is_null_allowed"=>true, "depends_on"=>array())));
  1278. MetaModel::Init_InheritFilters();
  1279. MetaModel::Init_AddFilterFromAttribute("type");
  1280. MetaModel::Init_AddFilterFromAttribute("ios_version");
  1281. // Display lists
  1282. MetaModel::Init_SetZListItems('details', array('name', 'status','severity','org_id', 'location_id', 'brand','model','type','mgmt_ip','default_gateway','serial_number','ios_version','memory','snmp_read','snmp_write')); // Attributes to be displayed for the complete details
  1283. MetaModel::Init_SetZListItems('list', array('name', 'status','brand','model','type','mgmt_ip')); // Attributes to be displayed for a list
  1284. // Search criteria
  1285. MetaModel::Init_SetZListItems('standard_search', array('name', 'status', 'location_id', 'brand','model','type','mgmt_ip')); // Criteria of the std search form
  1286. MetaModel::Init_SetZListItems('advanced_search', array('name', 'status', 'org_id', 'location_id', 'brand','model','type','mgmt_ip','serial_number','ios_version','snmp_read','snmp_write')); // Criteria of the advanced search form
  1287. }
  1288. public function Generate(cmdbDataGenerator $oGenerator)
  1289. {
  1290. $this->Set('org_id', $oGenerator->GetOrganizationId());
  1291. $this->Set('location_id', $oGenerator->GenerateKey("bizLocation", array('org_id' =>$oGenerator->GetOrganizationId() )));
  1292. $this->Set('name', $oGenerator->GenerateString("enum(sw,swi,switch,rout,rtr,gw)|number(000-999)|.|domain()"));
  1293. $this->Set('brand', $oGenerator->GenerateString("enum(Hewlett-Packard,Cisco,3Com,Avaya,Alcatel,Cabletron,Extrem Networks,Juniper,Netgear,Synopitcs,Xylan)"));
  1294. $this->Set('model', $oGenerator->GenerateString("enum(Procurve ,Catalyst ,Multiswitch ,C)|enum(25,26,36,40,65)|enum(00,09,10,50)"));
  1295. $this->Set('serial_number', $oGenerator->GenerateString("enum(FAA,AGA,PAD,COB,DFE)|number(0000-9999)|enum(M,X,L)"));
  1296. $this->Set('ip_address', $oGenerator->GenerateString("number(10-248)|.|number(1-254)|.|number(1-254)|.|number(1-254)"));
  1297. $this->Set('ios_version', $oGenerator->GenerateString("enum(9,10,12)|.|enum(0,1,2)|enum(,,,,XP,.5.1)"));
  1298. $this->Set('snmp_read', $oGenerator->GenerateString("enum(Ew,+0,**,Ps)|number(00-99)|enum(+,=,],;, )|enum(Aze,Vbn,Bbn,+9+,-9-,#)"));
  1299. $this->Set('snmp_write', $oGenerator->GenerateString("enum(M3,l3,$,*,Zz,Ks,jh)|number(00-99)|enum(A*e,V%n,Bbn,+,-,#)|number(0-9)"));
  1300. }
  1301. }
  1302. ////////////////////////////////////////////////////////////////////////////////////
  1303. /**
  1304. * A "Solution"
  1305. */
  1306. ////////////////////////////////////////////////////////////////////////////////////
  1307. class bizInfraGroup extends logInfra
  1308. {
  1309. public static function Init()
  1310. {
  1311. $aParams = array
  1312. (
  1313. "category" => "bizmodel,searchable",
  1314. "name" => "Infra Group",
  1315. "description" => "A group of infrastructure elements",
  1316. "key_type" => "",
  1317. "key_label" => "id",
  1318. "name_attcode" => "name",
  1319. "state_attcode" => "",
  1320. "reconc_keys" => array("org_id", "name"), // inherited attributes
  1321. "db_table" => "infra_group",
  1322. "db_key_field" => "id",
  1323. "db_finalclass_field" => "",
  1324. "display_template" => "../business/templates/group.html",
  1325. );
  1326. MetaModel::Init_Params($aParams);
  1327. MetaModel::Init_InheritAttributes();
  1328. MetaModel::Init_AddAttribute(new AttributeEnum("type", array("label"=>"Type", "description"=>"Type of groupe", "allowed_values"=>new ValueSetEnum("Monitoring,Reporting,list"), "sql"=>"type", "default_value"=>"list", "is_null_allowed"=>true, "depends_on"=>array())));
  1329. MetaModel::Init_AddAttribute(new AttributeString("description", array("label"=>"Description", "description"=>"usage of the Group", "allowed_values"=>null, "sql"=>"description", "default_value"=>"", "is_null_allowed"=>true, "depends_on"=>array())));
  1330. MetaModel::Init_AddAttribute(new AttributeExternalKey("parent_group_id", array("targetclass"=>"bizInfraGroup", "label"=>"Parent Group", "description"=>"including group", "allowed_values"=>null, "sql"=>"parent_group_id", "is_null_allowed"=>true, "on_target_delete"=>DEL_MANUAL, "depends_on"=>array())));
  1331. MetaModel::Init_AddAttribute(new AttributeExternalField("parent_group_name", array("label"=>"Parent Group (Name)", "description"=>"name of the parent group", "allowed_values"=>null, "extkey_attcode"=> 'parent_group_id', "target_attcode"=>"name")));
  1332. MetaModel::Init_InheritFilters();
  1333. MetaModel::Init_AddFilterFromAttribute("type");
  1334. MetaModel::Init_AddFilterFromAttribute("parent_group_id");
  1335. MetaModel::Init_AddFilterFromAttribute("parent_group_name");
  1336. // Display lists
  1337. MetaModel::Init_SetZListItems('details', array('name', 'status', 'org_id', 'type', 'description','parent_group_id')); // Attributes to be displayed for a list
  1338. MetaModel::Init_SetZListItems('list', array('name', 'status', 'org_id', 'type', 'description')); // Attributes to be displayed for a list
  1339. // Search criteria
  1340. MetaModel::Init_SetZListItems('standard_search', array('name', 'status', 'type')); // Criteria of the std search form
  1341. MetaModel::Init_SetZListItems('advanced_search', array('name', 'status', 'type', 'description', 'org_id')); // Criteria of the advanced search form
  1342. }
  1343. function DisplayDetails(web_page $oPage)
  1344. {
  1345. parent::DisplayDetails($oPage);
  1346. /*
  1347. $oSearchFilter = new CMDBSearchFilter('lnkInfraGrouping');
  1348. $oSearchFilter->AddCondition('infra_group_id', $this->GetKey(), '=');
  1349. $oSet = new CMDBObjectSet($oSearchFilter);
  1350. $count = $oSet->Count();
  1351. if ($count > 0)
  1352. {
  1353. $oPage->SetCurrentTab("RelatedInfrastructure");
  1354. $oPage->p("Infrastructure Link to this group:");
  1355. $this->DisplaySet($oPage, $oSet);
  1356. }
  1357. $oSearchFilter = new CMDBSearchFilter('lnkContactRealObject');
  1358. $oSearchFilter->AddCondition('object_id', $this->GetKey(), '=');
  1359. $oSet = new CMDBObjectSet($oSearchFilter);
  1360. $count = $oSet->Count();
  1361. if ($count > 0)
  1362. {
  1363. $oPage->SetCurrentTab("TeamLinks");
  1364. $oPage->p("People concerned by this group:");
  1365. $this->DisplaySet($oPage, $oSet);
  1366. }
  1367. */
  1368. }
  1369. public function Generate(cmdbDataGenerator $oGenerator)
  1370. {
  1371. $this->Set('org_id', $oGenerator->GetOrganizationId());
  1372. $this->Set('name', $oGenerator->GenerateString("enum(ov_nnm_,ovpi_,vitalnet_,datacenter_,web_farm_)|number(000-999)"));
  1373. $this->Set('type', $oGenerator->GenerateString("enum(Application,Infrastructure)"));
  1374. }
  1375. }
  1376. ////////////////////////////////////////////////////////////////////////////////////
  1377. //**
  1378. //* An application is an instance of a software install on a PC or Server
  1379. //*
  1380. ////////////////////////////////////////////////////////////////////////////////////
  1381. class bizApplication extends logInfra
  1382. {
  1383. public static function Init()
  1384. {
  1385. $aParams = array
  1386. (
  1387. "category" => "bizmodel,searchable",
  1388. "name" => "Application",
  1389. "description" => "General application",
  1390. "key_type" => "",
  1391. "key_label" => "id",
  1392. "name_attcode" => "name",
  1393. "state_attcode" => "",
  1394. "reconc_keys" => array("device_id", "name"), // inherited attributes
  1395. "db_table" => "applications",
  1396. "db_key_field" => "id",
  1397. "db_finalclass_field" => "",
  1398. "display_template" => "../business/templates/application.html",
  1399. );
  1400. MetaModel::Init_Params($aParams);
  1401. MetaModel::Init_InheritAttributes();
  1402. MetaModel::Init_AddAttribute(new AttributeExternalKey("device_id", array("targetclass"=>"bizDevice", "jointype"=> '', "label"=>"Hosting device", "description"=>"The device where application is installed", "allowed_values"=>null, "sql"=>"device_id", "is_null_allowed"=>false, "on_target_delete"=>DEL_MANUAL, "depends_on"=>array())));
  1403. MetaModel::Init_AddAttribute(new AttributeExternalField("device_name", array("label"=>"Hosting device", "description"=>"Name of the device where application is installed", "allowed_values"=>null, "extkey_attcode"=> 'device_id', "target_attcode"=>"name")));
  1404. MetaModel::Init_AddAttribute(new AttributeDate("install_date", array("label"=>"Installation Date", "description"=>"Date when application was installed", "allowed_values"=>null, "sql"=>"install_date", "default_value"=>"", "is_null_allowed"=>false, "depends_on"=>array())));
  1405. MetaModel::Init_AddAttribute(new AttributeString("version", array("label"=>"Version", "description"=>"Application version", "allowed_values"=>null, "sql"=>"version", "default_value"=>"undefined", "is_null_allowed"=>false, "depends_on"=>array())));
  1406. MetaModel::Init_AddAttribute(new AttributeString("function", array("label"=>"Function", "description"=>"Function provided by this application", "allowed_values"=>null, "sql"=>"function", "default_value"=>"", "is_null_allowed"=>false, "depends_on"=>array())));
  1407. MetaModel::Init_InheritFilters();
  1408. MetaModel::Init_AddFilterFromAttribute("function");
  1409. MetaModel::Init_AddFilterFromAttribute("version");
  1410. MetaModel::Init_AddFilterFromAttribute("device_id");
  1411. MetaModel::Init_AddFilterFromAttribute("device_name");
  1412. // Display lists
  1413. MetaModel::Init_SetZListItems('details', array('name','device_id','org_id','status','install_date', 'version','function')); // Attributes to be displayed for the complete details
  1414. MetaModel::Init_SetZListItems('list', array('name','device_id', 'version', 'function')); // Attributes to be displayed for a list
  1415. // Search criteria
  1416. MetaModel::Init_SetZListItems('standard_search', array('name', 'device_id','version','function')); // Criteria of the std search form
  1417. MetaModel::Init_SetZListItems('advanced_search', array('name', 'device_id','version','function')); // Criteria of the advanced search form
  1418. }
  1419. public static function GetRelationQueries($sRelCode)
  1420. {
  1421. switch ($sRelCode)
  1422. {
  1423. case "impacts":
  1424. $aRels = array(
  1425. "client app" => array("sQuery"=>"bizApplication: PKEY IS client_id IN (lnkClientServer: server_id = \$[this.pkey::])", "bPropagate"=>true, "iDistance"=>3),
  1426. );
  1427. return array_merge($aRels, parent::GetRelationQueries($sRelCode));
  1428. }
  1429. }
  1430. function DisplayDetails(web_page $oPage)
  1431. {
  1432. parent::DisplayDetails($oPage);
  1433. /*
  1434. $oSearchFilter = new CMDBSearchFilter('lnkClientServer');
  1435. $oSearchFilter->AddCondition('server_id', $this->GetKey(), '=');
  1436. $oSet = new CMDBObjectSet($oSearchFilter);
  1437. $count = $oSet->Count();
  1438. if ($count > 0)
  1439. {
  1440. $oPage->SetCurrentTab("Connected clients");
  1441. $oPage->p("Client applications impacted when down:");
  1442. $this->DisplaySet($oPage, $oSet);
  1443. }
  1444. */
  1445. }
  1446. }
  1447. ////////////////////////////////////////////////////////////////////////////////////
  1448. /**
  1449. * n-n link between any Infra and a Group
  1450. */
  1451. ////////////////////////////////////////////////////////////////////////////////////
  1452. class lnkInfraGrouping extends cmdbAbstractObject
  1453. {
  1454. public static function Init()
  1455. {
  1456. $aParams = array
  1457. (
  1458. "category" => "bizmodel,searchable",
  1459. "name" => "Infra Grouping",
  1460. "description" => "Infra part of an Infra Group",
  1461. "key_type" => "autoincrement",
  1462. "key_label" => "link_id",
  1463. "name_attcode" => "impact",
  1464. "state_attcode" => "",
  1465. "reconc_keys" => array(""),
  1466. "db_table" => "infra_grouping",
  1467. "db_key_field" => "link_id",
  1468. "db_finalclass_field" => "",
  1469. "display_template" => "../business/templates/default.html",
  1470. );
  1471. MetaModel::Init_Params($aParams);
  1472. MetaModel::Init_AddAttribute(new AttributeExternalKey("infra_id", array("targetclass"=>"logInfra", "jointype"=> '', "label"=>"Infrastructure", "description"=>"Infrastructure part of the group", "allowed_values"=>null, "sql"=>"infra_id", "is_null_allowed"=>false, "on_target_delete"=>DEL_AUTO, "depends_on"=>array())));
  1473. MetaModel::Init_AddAttribute(new AttributeExternalField("infra_name", array("label"=>"Infrastructure Name", "description"=>"Name of the impacted infrastructure", "allowed_values"=>null, "extkey_attcode"=> 'infra_id', "target_attcode"=>"name")));
  1474. MetaModel::Init_AddAttribute(new AttributeExternalField("infra_status", array("label"=>"Status", "description"=>"Status of the impacted infrastructure", "allowed_values"=>null, "extkey_attcode"=> 'infra_id', "target_attcode"=>"status")));
  1475. MetaModel::Init_AddAttribute(new AttributeExternalKey("infra_group_id", array("targetclass"=>"bizInfraGroup", "jointype"=> '', "label"=>"Group", "description"=>"Name of the group", "allowed_values"=>null, "sql"=>"infra_group_id", "is_null_allowed"=>false, "on_target_delete"=>DEL_AUTO, "depends_on"=>array())));
  1476. MetaModel::Init_AddAttribute(new AttributeExternalField("group_name", array("label"=>"Group Name", "description"=>"Name of the group containing infrastructure", "allowed_values"=>null, "extkey_attcode"=> 'infra_group_id', "target_attcode"=>"name")));
  1477. MetaModel::Init_AddAttribute(new AttributeString("impact", array("label"=>"Relation", "description"=>"Relation between this group and infra", "allowed_values"=>null, "sql"=>"impact", "default_value"=>"none", "is_null_allowed"=>true, "depends_on"=>array())));
  1478. // impact should modelized: enum (eg: if the group si dead when infra is dead)
  1479. MetaModel::Init_AddFilterFromAttribute("infra_id");
  1480. MetaModel::Init_AddFilterFromAttribute("infra_group_id");
  1481. MetaModel::Init_AddFilterFromAttribute("impact");
  1482. // Display lists
  1483. MetaModel::Init_SetZListItems('details', array('infra_id','infra_status', 'impact', 'infra_group_id')); // Attributes to be displayed for a list
  1484. MetaModel::Init_SetZListItems('list', array('infra_id','infra_status', 'impact', 'infra_group_id')); // Attributes to be displayed for a list
  1485. // Search criteria
  1486. MetaModel::Init_SetZListItems('standard_search', array('infra_id', 'infra_group_id', 'impact')); // Criteria of the std search form
  1487. MetaModel::Init_SetZListItems('advanced_search', array('infra_id', 'infra_group_id', 'impact')); // Criteria of the advanced search form
  1488. }
  1489. public function Generate(cmdbDataGenerator $oGenerator)
  1490. {
  1491. $this->Set('infra_id', $oGenerator->GenerateKey("logInfra", array('org_id' =>$oGenerator->GetOrganizationId() )));
  1492. $this->Set('infra_group_id', $oGenerator->GenerateKey("bizInfraGroup", array('org_id' =>$oGenerator->GetOrganizationId() )));
  1493. $this->Set('impact', $oGenerator->GenerateString("enum(none,mandatory,partial)"));
  1494. }
  1495. }
  1496. ////////////////////////////////////////////////////////////////////////////////////
  1497. /**
  1498. * n-n link between two applications, one is the server side and the scond one the client*/
  1499. ////////////////////////////////////////////////////////////////////////////////////
  1500. class lnkClientServer extends logRealObject
  1501. {
  1502. public static function Init()
  1503. {
  1504. $aParams = array
  1505. (
  1506. "category" => "bizmodel,searchable",
  1507. "name" => "ClientServerLinks",
  1508. "description" => "Link between client server application",
  1509. "key_type" => "autoincrement",
  1510. "key_label" => "link_id",
  1511. "name_attcode" => "relation", // ????
  1512. "state_attcode" => "",
  1513. "reconc_keys" => array("relation"), // ????
  1514. "db_table" => "clientserver_links",
  1515. "db_key_field" => "link_id",
  1516. "db_finalclass_field" => "",
  1517. "display_template" => "../business/templates/default.html",
  1518. );
  1519. MetaModel::Init_Params($aParams);
  1520. MetaModel::Init_AddAttribute(new AttributeExternalKey("client_id", array("targetclass"=>"bizApplication", "jointype"=> '', "label"=>"Client", "description"=>"The client part of the link", "allowed_values"=>null, "sql"=>"client_id", "is_null_allowed"=>false, "on_target_delete"=>DEL_AUTO, "depends_on"=>array())));
  1521. MetaModel::Init_AddAttribute(new AttributeExternalField("client_name", array("label"=>"Client", "description"=>"Name of the client", "allowed_values"=>null, "extkey_attcode"=> 'client_id', "target_attcode"=>"name")));
  1522. MetaModel::Init_AddAttribute(new AttributeExternalKey("server_id", array("targetclass"=>"bizApplication", "jointype"=> '', "label"=>"Server", "description"=>"the server part of the link", "allowed_values"=>null, "sql"=>"server_id", "is_null_allowed"=>false, "on_target_delete"=>DEL_AUTO, "depends_on"=>array())));
  1523. MetaModel::Init_AddAttribute(new AttributeExternalField("server_name", array("label"=>"Server", "description"=>"Name of the server", "allowed_values"=>null, "extkey_attcode"=> 'server_id', "target_attcode"=>"name")));
  1524. MetaModel::Init_AddAttribute(new AttributeString("relation", array("label"=>"Relation", "description"=>"Type of relation between both application", "allowed_values"=>null, "sql"=>"relation", "default_value"=>"", "is_null_allowed"=>true, "depends_on"=>array())));
  1525. MetaModel::Init_AddFilterFromAttribute("client_id");
  1526. MetaModel::Init_AddFilterFromAttribute("server_id");
  1527. // Display lists
  1528. MetaModel::Init_SetZListItems('details', array('client_id', 'server_id', 'relation')); // Attributes to be displayed for a list
  1529. MetaModel::Init_SetZListItems('list', array('client_id', 'server_id', 'relation')); // Attributes to be displayed for a list
  1530. // Search criteria
  1531. MetaModel::Init_SetZListItems('standard_search', array('client_id', 'server_id')); // Criteria of the std search form
  1532. MetaModel::Init_SetZListItems('advanced_search', array('client_id', 'server_id')); // Criteria of the advanced search form
  1533. }
  1534. }
  1535. ////////////////////////////////////////////////////////////////////////////////////
  1536. //**
  1537. //* A patch is an application or OS fixe for an infrastructure
  1538. //*
  1539. ////////////////////////////////////////////////////////////////////////////////////
  1540. class bizPatch extends logRealObject
  1541. {
  1542. public static function Init()
  1543. {
  1544. $aParams = array
  1545. (
  1546. "category" => "bizmodel,searchable",
  1547. "name" => "Patch",
  1548. "description" => "Patch installed on infrastucture",
  1549. "key_type" => "",
  1550. "key_label" => "id",
  1551. "name_attcode" => "name",
  1552. "state_attcode" => "",
  1553. "reconc_keys" => array("device_id", "name"), // inherited attributes
  1554. "db_table" => "patches",
  1555. "db_key_field" => "id",
  1556. "db_finalclass_field" => "",
  1557. "display_template" => "../business/templates/default.html",
  1558. );
  1559. MetaModel::Init_Params($aParams);
  1560. MetaModel::Init_InheritAttributes();
  1561. MetaModel::Init_AddAttribute(new AttributeExternalKey("device_id", array("targetclass"=>"bizDevice", "jointype"=> '', "label"=>"Device", "description"=>"The Device where patch is installed", "allowed_values"=>null, "sql"=>"device_id", "is_null_allowed"=>false, "on_target_delete"=>DEL_MANUAL, "depends_on"=>array())));
  1562. MetaModel::Init_AddAttribute(new AttributeExternalField("device_name", array("label"=>"Device Name", "description"=>"Name of the impacted device", "allowed_values"=>null, "extkey_attcode"=> 'device_id', "target_attcode"=>"name")));
  1563. MetaModel::Init_AddAttribute(new AttributeDate("install_date", array("label"=>"Installation Date", "description"=>"Date when application was installed", "allowed_values"=>null, "sql"=>"install_date", "default_value"=>"", "is_null_allowed"=>false, "depends_on"=>array())));
  1564. MetaModel::Init_AddAttribute(new AttributeText("description", array("label"=>"Description", "description"=>"description du patch", "allowed_values"=>null, "sql"=>"description", "default_value"=>"", "is_null_allowed"=>true, "depends_on"=>array())));
  1565. MetaModel::Init_AddAttribute(new AttributeString("patch_type", array("label"=>"Type", "description"=>"type de patch", "allowed_values"=>new ValueSetEnum("OS,Application"), "sql"=>"patch_type", "default_value"=>"OS", "is_null_allowed"=>false, "depends_on"=>array())));
  1566. MetaModel::Init_InheritFilters();
  1567. MetaModel::Init_AddFilterFromAttribute("patch_type");
  1568. MetaModel::Init_AddFilterFromAttribute("device_id");
  1569. // Display lists
  1570. MetaModel::Init_SetZListItems('details', array('name','device_id', 'install_date', 'patch_type','description')); // Attributes to be displayed for the complete details
  1571. MetaModel::Init_SetZListItems('list', array('name','device_id', 'patch_type','install_date')); // Attributes to be displayed for a list
  1572. // Search criteria
  1573. MetaModel::Init_SetZListItems('standard_search', array('name', 'device_id','patch_type')); // Criteria of the std search form
  1574. MetaModel::Init_SetZListItems('advanced_search', array('name', 'device_id','patch_type')); // Criteria of the advanced search form
  1575. }
  1576. }
  1577. /*** Insert here all modules requires for ITOP application ***/
  1578. require_once('incidentMgmt.business.php');
  1579. require_once('ServiceMgmt.business.php');
  1580. require_once('ChangeMgmt.business.php');
  1581. require_once('KEDB.business.php');
  1582. require_once('ServiceDesk.business.php');
  1583. ?>