attributedef.class.inc.php 126 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578
  1. <?php
  2. // Copyright (C) 2010 Combodo SARL
  3. //
  4. // This program is free software; you can redistribute it and/or modify
  5. // it under the terms of the GNU General Public License as published by
  6. // the Free Software Foundation; version 3 of the License.
  7. //
  8. // This program is distributed in the hope that it will be useful,
  9. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. // GNU General Public License for more details.
  12. //
  13. // You should have received a copy of the GNU General Public License
  14. // along with this program; if not, write to the Free Software
  15. // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  16. /**
  17. * Typology for the attributes
  18. *
  19. * @author Erwan Taloc <erwan.taloc@combodo.com>
  20. * @author Romain Quetiez <romain.quetiez@combodo.com>
  21. * @author Denis Flaven <denis.flaven@combodo.com>
  22. * @license http://www.opensource.org/licenses/gpl-3.0.html LGPL
  23. */
  24. require_once('MyHelpers.class.inc.php');
  25. require_once('ormdocument.class.inc.php');
  26. require_once('ormstopwatch.class.inc.php');
  27. require_once('ormpassword.class.inc.php');
  28. require_once('ormcaselog.class.inc.php');
  29. /**
  30. * MissingColumnException - sent if an attribute is being created but the column is missing in the row
  31. *
  32. * @package iTopORM
  33. */
  34. class MissingColumnException extends Exception
  35. {}
  36. /**
  37. * add some description here...
  38. *
  39. * @package iTopORM
  40. */
  41. define('EXTKEY_RELATIVE', 1);
  42. /**
  43. * add some description here...
  44. *
  45. * @package iTopORM
  46. */
  47. define('EXTKEY_ABSOLUTE', 2);
  48. /**
  49. * Propagation of the deletion through an external key - ask the user to delete the referencing object
  50. *
  51. * @package iTopORM
  52. */
  53. define('DEL_MANUAL', 1);
  54. /**
  55. * Propagation of the deletion through an external key - ask the user to delete the referencing object
  56. *
  57. * @package iTopORM
  58. */
  59. define('DEL_AUTO', 2);
  60. /**
  61. * Fully silent delete... not yet implemented
  62. */
  63. define('DEL_SILENT', 2);
  64. /**
  65. * For HierarchicalKeys only: move all the children up one level automatically
  66. */
  67. define('DEL_MOVEUP', 3);
  68. /**
  69. * For Link sets: tracking_level
  70. *
  71. * @package iTopORM
  72. */
  73. define('LINKSET_TRACKING_NONE', 0); // Do not track changes in the link set
  74. define('LINKSET_TRACKING_LIST', 1); // Do track added/removed items
  75. define('LINKSET_TRACKING_DETAILS', 2); // Do track modified items
  76. define('LINKSET_TRACKING_ALL', 3); // Do track added/removed/modified items
  77. define('LINKSET_EDITMODE_NONE', 0); // The linkset cannot be edited at all from inside this object
  78. define('LINKSET_EDITMODE_ADDONLY', 1); // The only possible action is to open a new window to create a new object
  79. define('LINKSET_EDITMODE_ACTIONS', 2); // Show the usual 'Actions' popup menu
  80. define('LINKSET_EDITMODE_INPLACE', 3); // The "linked" objects can be created/modified/deleted in place
  81. /**
  82. * Attribute definition API, implemented in and many flavours (Int, String, Enum, etc.)
  83. *
  84. * @package iTopORM
  85. */
  86. abstract class AttributeDefinition
  87. {
  88. public function GetType()
  89. {
  90. return Dict::S('Core:'.get_class($this));
  91. }
  92. public function GetTypeDesc()
  93. {
  94. return Dict::S('Core:'.get_class($this).'+');
  95. }
  96. abstract public function GetEditClass();
  97. protected $m_sCode;
  98. private $m_aParams = array();
  99. protected $m_sHostClass = '!undefined!';
  100. public function Get($sParamName) {return $this->m_aParams[$sParamName];}
  101. protected function IsParam($sParamName) {return (array_key_exists($sParamName, $this->m_aParams));}
  102. protected function GetOptional($sParamName, $default)
  103. {
  104. if (array_key_exists($sParamName, $this->m_aParams))
  105. {
  106. return $this->m_aParams[$sParamName];
  107. }
  108. else
  109. {
  110. return $default;
  111. }
  112. }
  113. public function __construct($sCode, $aParams)
  114. {
  115. $this->m_sCode = $sCode;
  116. $this->m_aParams = $aParams;
  117. $this->ConsistencyCheck();
  118. }
  119. public function GetParams()
  120. {
  121. return $this->m_aParams;
  122. }
  123. public function SetHostClass($sHostClass)
  124. {
  125. $this->m_sHostClass = $sHostClass;
  126. }
  127. public function GetHostClass()
  128. {
  129. return $this->m_sHostClass;
  130. }
  131. public function ListSubItems()
  132. {
  133. $aSubItems = array();
  134. foreach(MetaModel::ListAttributeDefs($this->m_sHostClass) as $sAttCode => $oAttDef)
  135. {
  136. if ($oAttDef instanceof AttributeSubItem)
  137. {
  138. if ($oAttDef->Get('target_attcode') == $this->m_sCode)
  139. {
  140. $aSubItems[$sAttCode] = $oAttDef;
  141. }
  142. }
  143. }
  144. return $aSubItems;
  145. }
  146. // Note: I could factorize this code with the parameter management made for the AttributeDef class
  147. // to be overloaded
  148. static public function ListExpectedParams()
  149. {
  150. return array();
  151. }
  152. private function ConsistencyCheck()
  153. {
  154. // Check that any mandatory param has been specified
  155. //
  156. $aExpectedParams = $this->ListExpectedParams();
  157. foreach($aExpectedParams as $sParamName)
  158. {
  159. if (!array_key_exists($sParamName, $this->m_aParams))
  160. {
  161. $aBacktrace = debug_backtrace();
  162. $sTargetClass = $aBacktrace[2]["class"];
  163. $sCodeInfo = $aBacktrace[1]["file"]." - ".$aBacktrace[1]["line"];
  164. throw new Exception("ERROR missing parameter '$sParamName' in ".get_class($this)." declaration for class $sTargetClass ($sCodeInfo)");
  165. }
  166. }
  167. }
  168. // table, key field, name field
  169. public function ListDBJoins()
  170. {
  171. return "";
  172. // e.g: return array("Site", "infrid", "name");
  173. }
  174. public function GetFinalAttDef()
  175. {
  176. return $this;
  177. }
  178. public function IsDirectField() {return false;}
  179. public function IsScalar() {return false;}
  180. public function IsLinkSet() {return false;}
  181. public function IsExternalKey($iType = EXTKEY_RELATIVE) {return false;}
  182. public function IsHierarchicalKey() {return false;}
  183. public function IsExternalField() {return false;}
  184. public function IsWritable() {return false;}
  185. public function LoadInObject() {return true;}
  186. public function GetValue($oHostObject){return null;} // must return the value if LoadInObject returns false
  187. public function IsNullAllowed() {return true;}
  188. public function GetCode() {return $this->m_sCode;}
  189. public function GetLabel($sDefault = null)
  190. {
  191. // If no default value is specified, let's define the most relevant one for developping purposes
  192. if (is_null($sDefault))
  193. {
  194. $sDefault = str_replace('_', ' ', $this->m_sCode);
  195. }
  196. $sLabel = Dict::S('Class:'.$this->m_sHostClass.'/Attribute:'.$this->m_sCode, '');
  197. if (strlen($sLabel) == 0)
  198. {
  199. // Nothing found: go higher in the hierarchy (if possible)
  200. //
  201. $sLabel = $sDefault;
  202. $sParentClass = MetaModel::GetParentClass($this->m_sHostClass);
  203. if ($sParentClass)
  204. {
  205. if (MetaModel::IsValidAttCode($sParentClass, $this->m_sCode))
  206. {
  207. $oAttDef = MetaModel::GetAttributeDef($sParentClass, $this->m_sCode);
  208. $sLabel = $oAttDef->GetLabel($sDefault);
  209. }
  210. }
  211. }
  212. return $sLabel;
  213. }
  214. /**
  215. * Get the label corresponding to the given value (in plain text)
  216. * To be overloaded for localized enums
  217. */
  218. public function GetValueLabel($sValue)
  219. {
  220. return $sValue;
  221. }
  222. /**
  223. * Get the value from a given string (plain text, CSV import)
  224. * Return null if no match could be found
  225. */
  226. public function MakeValueFromString($sProposedValue, $bLocalizedValue = false, $sSepItem = null, $sSepAttribute = null, $sSepValue = null, $sAttributeQualifier = null)
  227. {
  228. return $this->MakeRealValue($sProposedValue, null);
  229. }
  230. public function GetLabel_Obsolete()
  231. {
  232. // Written for compatibility with a data model written prior to version 0.9.1
  233. if (array_key_exists('label', $this->m_aParams))
  234. {
  235. return $this->m_aParams['label'];
  236. }
  237. else
  238. {
  239. return $this->GetLabel();
  240. }
  241. }
  242. public function GetDescription($sDefault = null)
  243. {
  244. // If no default value is specified, let's define the most relevant one for developping purposes
  245. if (is_null($sDefault))
  246. {
  247. $sDefault = '';
  248. }
  249. $sLabel = Dict::S('Class:'.$this->m_sHostClass.'/Attribute:'.$this->m_sCode.'+', '');
  250. if (strlen($sLabel) == 0)
  251. {
  252. // Nothing found: go higher in the hierarchy (if possible)
  253. //
  254. $sLabel = $sDefault;
  255. $sParentClass = MetaModel::GetParentClass($this->m_sHostClass);
  256. if ($sParentClass)
  257. {
  258. if (MetaModel::IsValidAttCode($sParentClass, $this->m_sCode))
  259. {
  260. $oAttDef = MetaModel::GetAttributeDef($sParentClass, $this->m_sCode);
  261. $sLabel = $oAttDef->GetDescription($sDefault);
  262. }
  263. }
  264. }
  265. return $sLabel;
  266. }
  267. public function GetHelpOnEdition($sDefault = null)
  268. {
  269. // If no default value is specified, let's define the most relevant one for developping purposes
  270. if (is_null($sDefault))
  271. {
  272. $sDefault = '';
  273. }
  274. $sLabel = Dict::S('Class:'.$this->m_sHostClass.'/Attribute:'.$this->m_sCode.'?', '');
  275. if (strlen($sLabel) == 0)
  276. {
  277. // Nothing found: go higher in the hierarchy (if possible)
  278. //
  279. $sLabel = $sDefault;
  280. $sParentClass = MetaModel::GetParentClass($this->m_sHostClass);
  281. if ($sParentClass)
  282. {
  283. if (MetaModel::IsValidAttCode($sParentClass, $this->m_sCode))
  284. {
  285. $oAttDef = MetaModel::GetAttributeDef($sParentClass, $this->m_sCode);
  286. $sLabel = $oAttDef->GetHelpOnEdition($sDefault);
  287. }
  288. }
  289. }
  290. return $sLabel;
  291. }
  292. public function GetHelpOnSmartSearch()
  293. {
  294. $aParents = array_merge(array(get_class($this) => get_class($this)), class_parents($this));
  295. foreach ($aParents as $sClass)
  296. {
  297. $sHelp = Dict::S("Core:$sClass?SmartSearch", '-missing-');
  298. if ($sHelp != '-missing-')
  299. {
  300. return $sHelp;
  301. }
  302. }
  303. return '';
  304. }
  305. public function GetDescription_Obsolete()
  306. {
  307. // Written for compatibility with a data model written prior to version 0.9.1
  308. if (array_key_exists('description', $this->m_aParams))
  309. {
  310. return $this->m_aParams['description'];
  311. }
  312. else
  313. {
  314. return $this->GetDescription();
  315. }
  316. }
  317. public function GetValuesDef() {return null;}
  318. public function GetPrerequisiteAttributes() {return array();}
  319. public function GetNullValue() {return null;}
  320. public function IsNull($proposedValue) {return is_null($proposedValue);}
  321. public function MakeRealValue($proposedValue, $oHostObj) {return $proposedValue;} // force an allowed value (type conversion and possibly forces a value as mySQL would do upon writing!)
  322. public function Equals($val1, $val2) {return ($val1 == $val2);}
  323. public function GetSQLExpressions($sPrefix = '') {return array();} // returns suffix/expression pairs (1 in most of the cases), for READING (Select)
  324. public function FromSQLToValue($aCols, $sPrefix = '') {return null;} // returns a value out of suffix/value pairs, for SELECT result interpretation
  325. public function GetSQLColumns() {return array();} // returns column/spec pairs (1 in most of the cases), for STRUCTURING (DB creation)
  326. public function GetSQLValues($value) {return array();} // returns column/value pairs (1 in most of the cases), for WRITING (Insert, Update)
  327. public function RequiresIndex() {return false;}
  328. public function GetOrderBySQLExpressions($sClassAlias)
  329. {
  330. // Note: This is the responsibility of this function to place backticks around column aliases
  331. return array('`'.$sClassAlias.$this->GetCode().'`');
  332. }
  333. public function GetOrderByHint()
  334. {
  335. return '';
  336. }
  337. // Import - differs slightly from SQL input, but identical in most cases
  338. //
  339. public function GetImportColumns() {return $this->GetSQLColumns();}
  340. public function FromImportToValue($aCols, $sPrefix = '')
  341. {
  342. $aValues = array();
  343. foreach ($this->GetSQLExpressions($sPrefix) as $sAlias => $sExpr)
  344. {
  345. // This is working, based on the assumption that importable fields
  346. // are not computed fields => the expression is the name of a column
  347. $aValues[$sPrefix.$sAlias] = $aCols[$sExpr];
  348. }
  349. return $this->FromSQLToValue($aValues, $sPrefix);
  350. }
  351. public function GetValidationPattern()
  352. {
  353. return '';
  354. }
  355. public function CheckFormat($value)
  356. {
  357. return true;
  358. }
  359. public function GetMaxSize()
  360. {
  361. return null;
  362. }
  363. public function MakeValue()
  364. {
  365. $sComputeFunc = $this->Get("compute_func");
  366. if (empty($sComputeFunc)) return null;
  367. return call_user_func($sComputeFunc);
  368. }
  369. abstract public function GetDefaultValue();
  370. //
  371. // To be overloaded in subclasses
  372. //
  373. abstract public function GetBasicFilterOperators(); // returns an array of "opCode"=>"description"
  374. abstract public function GetBasicFilterLooseOperator(); // returns an "opCode"
  375. //abstract protected GetBasicFilterHTMLInput();
  376. abstract public function GetBasicFilterSQLExpr($sOpCode, $value);
  377. public function GetFilterDefinitions()
  378. {
  379. return array();
  380. }
  381. public function GetEditValue($sValue, $oHostObj = null)
  382. {
  383. return (string)$sValue;
  384. }
  385. /**
  386. * Override to display the value in the GUI
  387. */
  388. public function GetAsHTML($sValue, $oHostObject = null, $bLocalize = true)
  389. {
  390. return Str::pure2html((string)$sValue);
  391. }
  392. /**
  393. * Override to export the value in XML
  394. */
  395. public function GetAsXML($sValue, $oHostObject = null, $bLocalize = true)
  396. {
  397. return Str::pure2xml((string)$sValue);
  398. }
  399. /**
  400. * Override to escape the value when read by DBObject::GetAsCSV()
  401. */
  402. public function GetAsCSV($sValue, $sSeparator = ',', $sTextQualifier = '"', $oHostObject = null, $bLocalize = true)
  403. {
  404. return (string)$sValue;
  405. }
  406. public function GetAllowedValues($aArgs = array(), $sContains = '')
  407. {
  408. $oValSetDef = $this->GetValuesDef();
  409. if (!$oValSetDef) return null;
  410. return $oValSetDef->GetValues($aArgs, $sContains);
  411. }
  412. public function GetAsHTMLForHistory($sOldValue, $sNewValue, $sLabel = null)
  413. {
  414. if (is_null($sLabel))
  415. {
  416. $sLabel = $this->GetLabel();
  417. }
  418. if($this->IsExternalKey())
  419. {
  420. $sTargetClass = $this->GetTargetClass();
  421. $sOldValue = (int)$sOldValue ? MetaModel::GetHyperLink($sTargetClass, (int)$sOldValue) : null;
  422. $sNewValue = (int)$sNewValue ? MetaModel::GetHyperLink($sTargetClass, (int)$sNewValue) : null;
  423. }
  424. if ( (($this->GetType() == 'String') || ($this->GetType() == 'Text')) &&
  425. (strlen($sNewValue) > strlen($sOldValue)) )
  426. {
  427. // Check if some text was not appended to the field
  428. if (substr($sNewValue,0, strlen($sOldValue)) == $sOldValue) // Text added at the end
  429. {
  430. $sDelta = substr($sNewValue, strlen($sOldValue));
  431. $sResult = Dict::Format('Change:Text_AppendedTo_AttName', $sDelta, $sLabel);
  432. }
  433. else if (substr($sNewValue, -strlen($sOldValue)) == $sOldValue) // Text added at the beginning
  434. {
  435. $sDelta = substr($sNewValue, 0, strlen($sNewValue) - strlen($sOldValue));
  436. $sResult = Dict::Format('Change:Text_AppendedTo_AttName', $sDelta, $sLabel);
  437. }
  438. else
  439. {
  440. if (strlen($sOldValue) == 0)
  441. {
  442. $sResult = Dict::Format('Change:AttName_SetTo', $sLabel, $sNewValue);
  443. }
  444. else
  445. {
  446. if (is_null($sNewValue))
  447. {
  448. $sNewValue = Dict::S('UI:UndefinedObject');
  449. }
  450. $sResult = Dict::Format('Change:AttName_SetTo_NewValue_PreviousValue_OldValue', $sLabel, $sNewValue, $sOldValue);
  451. }
  452. }
  453. }
  454. else
  455. {
  456. if (strlen($sOldValue) == 0)
  457. {
  458. $sResult = Dict::Format('Change:AttName_SetTo', $sLabel, $sNewValue);
  459. }
  460. else
  461. {
  462. if (is_null($sNewValue))
  463. {
  464. $sNewValue = Dict::S('UI:UndefinedObject');
  465. }
  466. $sResult = Dict::Format('Change:AttName_SetTo_NewValue_PreviousValue_OldValue', $sLabel, $sNewValue, $sOldValue);
  467. }
  468. }
  469. return $sResult;
  470. }
  471. /**
  472. * Parses a string to find some smart search patterns and build the corresponding search/OQL condition
  473. * Each derived class is reponsible for defining and processing their own smart patterns, the base class
  474. * does nothing special, and just calls the default (loose) operator
  475. * @param string $sSearchText The search string to analyze for smart patterns
  476. * @param FieldExpression The FieldExpression representing the atttribute code in this OQL query
  477. * @param Hash $aParams Values of the query parameters
  478. * @return Expression The search condition to be added (AND) to the current search
  479. */
  480. public function GetSmartConditionExpression($sSearchText, FieldExpression $oField, &$aParams)
  481. {
  482. $sParamName = $oField->GetParent().'_'.$oField->GetName();
  483. $oRightExpr = new VariableExpression($sParamName);
  484. $sOperator = $this->GetBasicFilterLooseOperator();
  485. switch ($sOperator)
  486. {
  487. case 'Contains':
  488. $aParams[$sParamName] = "%$sSearchText%";
  489. $sSQLOperator = 'LIKE';
  490. break;
  491. default:
  492. $sSQLOperator = $sOperator;
  493. $aParams[$sParamName] = $sSearchText;
  494. }
  495. $oNewCondition = new BinaryExpression($oField, $sSQLOperator, $oRightExpr);
  496. return $oNewCondition;
  497. }
  498. }
  499. /**
  500. * Set of objects directly linked to an object, and being part of its definition
  501. *
  502. * @package iTopORM
  503. */
  504. class AttributeLinkedSet extends AttributeDefinition
  505. {
  506. static public function ListExpectedParams()
  507. {
  508. return array_merge(parent::ListExpectedParams(), array("allowed_values", "depends_on", "linked_class", "ext_key_to_me", "count_min", "count_max"));
  509. }
  510. public function GetEditClass() {return "LinkedSet";}
  511. public function IsWritable() {return true;}
  512. public function IsLinkSet() {return true;}
  513. public function IsIndirect() {return false;}
  514. public function GetValuesDef() {return $this->Get("allowed_values");}
  515. public function GetPrerequisiteAttributes() {return $this->Get("depends_on");}
  516. public function GetDefaultValue($aArgs = array())
  517. {
  518. // Note: so far, this feature is a prototype,
  519. // later, the argument 'this' should always be present in the arguments
  520. //
  521. if (($this->IsParam('default_value')) && array_key_exists('this', $aArgs))
  522. {
  523. $aValues = $this->Get('default_value')->GetValues($aArgs);
  524. $oSet = DBObjectSet::FromArray($this->Get('linked_class'), $aValues);
  525. return $oSet;
  526. }
  527. else
  528. {
  529. return DBObjectSet::FromScratch($this->Get('linked_class'));
  530. }
  531. }
  532. public function GetTrackingLevel()
  533. {
  534. return $this->GetOptional('tracking_level', LINKSET_TRACKING_LIST);
  535. }
  536. public function GetEditMode()
  537. {
  538. return $this->GetOptional('edit_mode', LINKSET_EDITMODE_ACTIONS);
  539. }
  540. public function GetLinkedClass() {return $this->Get('linked_class');}
  541. public function GetExtKeyToMe() {return $this->Get('ext_key_to_me');}
  542. public function GetBasicFilterOperators() {return array();}
  543. public function GetBasicFilterLooseOperator() {return '';}
  544. public function GetBasicFilterSQLExpr($sOpCode, $value) {return '';}
  545. public function GetAsHTML($sValue, $oHostObject = null, $bLocalize = true)
  546. {
  547. if (is_object($sValue) && ($sValue instanceof DBObjectSet))
  548. {
  549. $sValue->Rewind();
  550. $aItems = array();
  551. while ($oObj = $sValue->Fetch())
  552. {
  553. // Show only relevant information (hide the external key to the current object)
  554. $aAttributes = array();
  555. foreach(MetaModel::ListAttributeDefs($this->GetLinkedClass()) as $sAttCode => $oAttDef)
  556. {
  557. if ($sAttCode == $this->GetExtKeyToMe()) continue;
  558. if ($oAttDef->IsExternalField()) continue;
  559. $sAttValue = $oObj->GetAsHTML($sAttCode);
  560. if (strlen($sAttValue) > 0)
  561. {
  562. $aAttributes[] = $sAttValue;
  563. }
  564. }
  565. $sAttributes = implode(', ', $aAttributes);
  566. $aItems[] = $sAttributes;
  567. }
  568. return implode('<br/>', $aItems);
  569. }
  570. return null;
  571. }
  572. public function GetAsXML($sValue, $oHostObject = null, $bLocalize = true)
  573. {
  574. return "Sorry, no yet implemented";
  575. }
  576. public function GetAsCSV($sValue, $sSeparator = ',', $sTextQualifier = '"', $oHostObject = null, $bLocalize = true)
  577. {
  578. $sSepItem = MetaModel::GetConfig()->Get('link_set_item_separator');
  579. $sSepAttribute = MetaModel::GetConfig()->Get('link_set_attribute_separator');
  580. $sSepValue = MetaModel::GetConfig()->Get('link_set_value_separator');
  581. $sAttributeQualifier = MetaModel::GetConfig()->Get('link_set_attribute_qualifier');
  582. if (is_object($sValue) && ($sValue instanceof DBObjectSet))
  583. {
  584. $sValue->Rewind();
  585. $aItems = array();
  586. while ($oObj = $sValue->Fetch())
  587. {
  588. $sObjClass = get_class($oObj);
  589. // Show only relevant information (hide the external key to the current object)
  590. $aAttributes = array();
  591. foreach(MetaModel::ListAttributeDefs($sObjClass) as $sAttCode => $oAttDef)
  592. {
  593. if ($sAttCode == 'finalclass')
  594. {
  595. if ($sObjClass == $this->GetLinkedClass())
  596. {
  597. // Simplify the output if the exact class could be determined implicitely
  598. continue;
  599. }
  600. }
  601. if ($sAttCode == $this->GetExtKeyToMe()) continue;
  602. if ($oAttDef->IsExternalField()) continue;
  603. if (!$oAttDef->IsDirectField()) continue;
  604. if (!$oAttDef->IsScalar()) continue;
  605. $sAttValue = $oObj->GetAsCSV($sAttCode, $sSepValue, '');
  606. if (strlen($sAttValue) > 0)
  607. {
  608. $sAttributeData = str_replace($sAttributeQualifier, $sAttributeQualifier.$sAttributeQualifier, $sAttCode.$sSepValue.$sAttValue);
  609. $aAttributes[] = $sAttributeQualifier.$sAttributeData.$sAttributeQualifier;
  610. }
  611. }
  612. $sAttributes = implode($sSepAttribute, $aAttributes);
  613. $aItems[] = $sAttributes;
  614. }
  615. $sRes = implode($sSepItem, $aItems);
  616. }
  617. else
  618. {
  619. $sRes = '';
  620. }
  621. $sRes = str_replace($sTextQualifier, $sTextQualifier.$sTextQualifier, $sRes);
  622. $sRes = $sTextQualifier.$sRes.$sTextQualifier;
  623. return $sRes;
  624. }
  625. public function DuplicatesAllowed() {return false;} // No duplicates for 1:n links, never
  626. public function GetImportColumns()
  627. {
  628. $aColumns = array();
  629. $aColumns[$this->GetCode()] = 'TEXT';
  630. return $aColumns;
  631. }
  632. public function MakeValueFromString($sProposedValue, $bLocalizedValue = false, $sSepItem = null, $sSepAttribute = null, $sSepValue = null, $sAttributeQualifier = null)
  633. {
  634. if (is_null($sSepItem) || empty($sSepItem))
  635. {
  636. $sSepItem = MetaModel::GetConfig()->Get('link_set_item_separator');
  637. }
  638. if (is_null($sSepAttribute) || empty($sSepAttribute))
  639. {
  640. $sSepAttribute = MetaModel::GetConfig()->Get('link_set_attribute_separator');
  641. }
  642. if (is_null($sSepValue) || empty($sSepValue))
  643. {
  644. $sSepValue = MetaModel::GetConfig()->Get('link_set_value_separator');
  645. }
  646. if (is_null($sAttributeQualifier) || empty($sAttributeQualifier))
  647. {
  648. $sAttributeQualifier = MetaModel::GetConfig()->Get('link_set_attribute_qualifier');
  649. }
  650. $sTargetClass = $this->Get('linked_class');
  651. $sInput = str_replace($sSepItem, "\n", $sProposedValue);
  652. $oCSVParser = new CSVParser($sInput, $sSepAttribute, $sAttributeQualifier);
  653. $aInput = $oCSVParser->ToArray(0 /* do not skip lines */);
  654. $aLinks = array();
  655. foreach($aInput as $aRow)
  656. {
  657. // 1st - get the values, split the extkey->searchkey specs, and eventually get the finalclass value
  658. $aExtKeys = array();
  659. $aValues = array();
  660. foreach($aRow as $sCell)
  661. {
  662. $iSepPos = strpos($sCell, $sSepValue);
  663. if ($iSepPos === false)
  664. {
  665. // Houston...
  666. throw new CoreException('Wrong format for link attribute specification', array('value' => $sCell));
  667. }
  668. $sAttCode = trim(substr($sCell, 0, $iSepPos));
  669. $sValue = substr($sCell, $iSepPos + strlen($sSepValue));
  670. if (preg_match('/^(.+)->(.+)$/', $sAttCode, $aMatches))
  671. {
  672. $sKeyAttCode = $aMatches[1];
  673. $sRemoteAttCode = $aMatches[2];
  674. $aExtKeys[$sKeyAttCode][$sRemoteAttCode] = $sValue;
  675. if (!MetaModel::IsValidAttCode($sTargetClass, $sKeyAttCode))
  676. {
  677. throw new CoreException('Wrong attribute code for link attribute specification', array('class' => $sTargetClass, 'attcode' => $sKeyAttCode));
  678. }
  679. $oKeyAttDef = MetaModel::GetAttributeDef($sTargetClass, $sKeyAttCode);
  680. $sRemoteClass = $oKeyAttDef->GetTargetClass();
  681. if (!MetaModel::IsValidAttCode($sRemoteClass, $sRemoteAttCode))
  682. {
  683. throw new CoreException('Wrong attribute code for link attribute specification', array('class' => $sRemoteClass, 'attcode' => $sRemoteAttCode));
  684. }
  685. }
  686. else
  687. {
  688. if(!MetaModel::IsValidAttCode($sTargetClass, $sAttCode))
  689. {
  690. throw new CoreException('Wrong attribute code for link attribute specification', array('class' => $sTargetClass, 'attcode' => $sAttCode));
  691. }
  692. $aValues[$sAttCode] = $sValue;
  693. }
  694. }
  695. // 2nd - Instanciate the object and set the value
  696. if (isset($aValues['finalclass']))
  697. {
  698. $sLinkClass = $aValues['finalclass'];
  699. if (!is_subclass_of($sLinkClass, $sTargetClass))
  700. {
  701. throw new CoreException('Wrong class for link attribute specification', array('requested_class' => $sLinkClass, 'expected_class' => $sTargetClass));
  702. }
  703. }
  704. elseif (MetaModel::IsAbstract($sTargetClass))
  705. {
  706. throw new CoreException('Missing finalclass for link attribute specification');
  707. }
  708. else
  709. {
  710. $sLinkClass = $sTargetClass;
  711. }
  712. $oLink = MetaModel::NewObject($sLinkClass);
  713. foreach ($aValues as $sAttCode => $sValue)
  714. {
  715. $oLink->Set($sAttCode, $sValue);
  716. }
  717. // 3rd - Set external keys from search conditions
  718. foreach ($aExtKeys as $sKeyAttCode => $aReconciliation)
  719. {
  720. $oKeyAttDef = MetaModel::GetAttributeDef($sTargetClass, $sKeyAttCode);
  721. $sKeyClass = $oKeyAttDef->GetTargetClass();
  722. $oExtKeyFilter = new CMDBSearchFilter($sKeyClass);
  723. $aReconciliationDesc = array();
  724. foreach($aReconciliation as $sRemoteAttCode => $sValue)
  725. {
  726. $oExtKeyFilter->AddCondition($sRemoteAttCode, $sValue, '=');
  727. $aReconciliationDesc[] = "$sRemoteAttCode=$sValue";
  728. }
  729. $oExtKeySet = new CMDBObjectSet($oExtKeyFilter);
  730. switch($oExtKeySet->Count())
  731. {
  732. case 0:
  733. $sReconciliationDesc = implode(', ', $aReconciliationDesc);
  734. throw new CoreException("Found no match", array('ext_key' => $sKeyAttCode, 'reconciliation' => $sReconciliationDesc));
  735. break;
  736. case 1:
  737. $oRemoteObj = $oExtKeySet->Fetch();
  738. $oLink->Set($sKeyAttCode, $oRemoteObj->GetKey());
  739. break;
  740. default:
  741. $sReconciliationDesc = implode(', ', $aReconciliationDesc);
  742. throw new CoreException("Found several matches", array('ext_key' => $sKeyAttCode, 'reconciliation' => $sReconciliationDesc));
  743. // Found several matches, ambiguous
  744. }
  745. }
  746. // Check (roughly) if such a link is valid
  747. $aErrors = array();
  748. foreach(MetaModel::ListAttributeDefs($sTargetClass) as $sAttCode => $oAttDef)
  749. {
  750. if ($oAttDef->IsExternalKey())
  751. {
  752. if (($oAttDef->GetTargetClass() == $this->GetHostClass()) || (is_subclass_of($this->GetHostClass(), $oAttDef->GetTargetClass())))
  753. {
  754. continue; // Don't check the key to self
  755. }
  756. }
  757. if ($oAttDef->IsWritable() && $oAttDef->IsNull($oLink->Get($sAttCode)) && !$oAttDef->IsNullAllowed())
  758. {
  759. $aErrors[] = $sAttCode;
  760. }
  761. }
  762. if (count($aErrors) > 0)
  763. {
  764. throw new CoreException("Missing value for mandatory attribute(s): ".implode(', ', $aErrors));
  765. }
  766. $aLinks[] = $oLink;
  767. }
  768. $oSet = DBObjectSet::FromArray($sTargetClass, $aLinks);
  769. return $oSet;
  770. }
  771. public function Equals($val1, $val2)
  772. {
  773. if ($val1 === $val2) return true;
  774. if (is_object($val1) != is_object($val2))
  775. {
  776. return false;
  777. }
  778. if (!is_object($val1))
  779. {
  780. // string ?
  781. // todo = implement this case ?
  782. return false;
  783. }
  784. // Both values are Object sets
  785. return $val1->HasSameContents($val2);
  786. }
  787. }
  788. /**
  789. * Set of objects linked to an object (n-n), and being part of its definition
  790. *
  791. * @package iTopORM
  792. */
  793. class AttributeLinkedSetIndirect extends AttributeLinkedSet
  794. {
  795. static public function ListExpectedParams()
  796. {
  797. return array_merge(parent::ListExpectedParams(), array("ext_key_to_remote"));
  798. }
  799. public function IsIndirect() {return true;}
  800. public function GetExtKeyToRemote() { return $this->Get('ext_key_to_remote'); }
  801. public function GetEditClass() {return "LinkedSet";}
  802. public function DuplicatesAllowed() {return $this->GetOptional("duplicates", false);} // The same object may be linked several times... or not...
  803. public function GetTrackingLevel()
  804. {
  805. return $this->GetOptional('tracking_level', LINKSET_TRACKING_ALL);
  806. }
  807. }
  808. /**
  809. * Abstract class implementing default filters for a DB column
  810. *
  811. * @package iTopORM
  812. */
  813. class AttributeDBFieldVoid extends AttributeDefinition
  814. {
  815. static public function ListExpectedParams()
  816. {
  817. return array_merge(parent::ListExpectedParams(), array("allowed_values", "depends_on", "sql"));
  818. }
  819. // To be overriden, used in GetSQLColumns
  820. protected function GetSQLCol() {return "VARCHAR(255)";}
  821. public function GetEditClass() {return "String";}
  822. public function GetValuesDef() {return $this->Get("allowed_values");}
  823. public function GetPrerequisiteAttributes() {return $this->Get("depends_on");}
  824. public function IsDirectField() {return true;}
  825. public function IsScalar() {return true;}
  826. public function IsWritable() {return true;}
  827. public function GetSQLExpr() {return $this->Get("sql");}
  828. public function GetDefaultValue() {return $this->MakeRealValue("", null);}
  829. public function IsNullAllowed() {return false;}
  830. //
  831. protected function ScalarToSQL($value) {return $value;} // format value as a valuable SQL literal (quoted outside)
  832. public function GetSQLExpressions($sPrefix = '')
  833. {
  834. $aColumns = array();
  835. // Note: to optimize things, the existence of the attribute is determined by the existence of one column with an empty suffix
  836. $aColumns[''] = $this->Get("sql");
  837. return $aColumns;
  838. }
  839. public function FromSQLToValue($aCols, $sPrefix = '')
  840. {
  841. $value = $this->MakeRealValue($aCols[$sPrefix.''], null);
  842. return $value;
  843. }
  844. public function GetSQLValues($value)
  845. {
  846. $aValues = array();
  847. $aValues[$this->Get("sql")] = $this->ScalarToSQL($value);
  848. return $aValues;
  849. }
  850. public function GetSQLColumns()
  851. {
  852. $aColumns = array();
  853. $aColumns[$this->Get("sql")] = $this->GetSQLCol();
  854. return $aColumns;
  855. }
  856. public function GetFilterDefinitions()
  857. {
  858. return array($this->GetCode() => new FilterFromAttribute($this));
  859. }
  860. public function GetBasicFilterOperators()
  861. {
  862. return array("="=>"equals", "!="=>"differs from");
  863. }
  864. public function GetBasicFilterLooseOperator()
  865. {
  866. return "=";
  867. }
  868. public function GetBasicFilterSQLExpr($sOpCode, $value)
  869. {
  870. $sQValue = CMDBSource::Quote($value);
  871. switch ($sOpCode)
  872. {
  873. case '!=':
  874. return $this->GetSQLExpr()." != $sQValue";
  875. break;
  876. case '=':
  877. default:
  878. return $this->GetSQLExpr()." = $sQValue";
  879. }
  880. }
  881. }
  882. /**
  883. * Base class for all kind of DB attributes, with the exception of external keys
  884. *
  885. * @package iTopORM
  886. */
  887. class AttributeDBField extends AttributeDBFieldVoid
  888. {
  889. static public function ListExpectedParams()
  890. {
  891. return array_merge(parent::ListExpectedParams(), array("default_value", "is_null_allowed"));
  892. }
  893. public function GetDefaultValue() {return $this->MakeRealValue($this->Get("default_value"), null);}
  894. public function IsNullAllowed() {return $this->Get("is_null_allowed");}
  895. }
  896. /**
  897. * Map an integer column to an attribute
  898. *
  899. * @package iTopORM
  900. */
  901. class AttributeInteger extends AttributeDBField
  902. {
  903. static public function ListExpectedParams()
  904. {
  905. return parent::ListExpectedParams();
  906. //return array_merge(parent::ListExpectedParams(), array());
  907. }
  908. public function GetEditClass() {return "String";}
  909. protected function GetSQLCol() {return "INT(11)";}
  910. public function GetValidationPattern()
  911. {
  912. return "^[0-9]+$";
  913. }
  914. public function GetBasicFilterOperators()
  915. {
  916. return array(
  917. "!="=>"differs from",
  918. "="=>"equals",
  919. ">"=>"greater (strict) than",
  920. ">="=>"greater than",
  921. "<"=>"less (strict) than",
  922. "<="=>"less than",
  923. "in"=>"in"
  924. );
  925. }
  926. public function GetBasicFilterLooseOperator()
  927. {
  928. // Unless we implement an "equals approximately..." or "same order of magnitude"
  929. return "=";
  930. }
  931. public function GetBasicFilterSQLExpr($sOpCode, $value)
  932. {
  933. $sQValue = CMDBSource::Quote($value);
  934. switch ($sOpCode)
  935. {
  936. case '!=':
  937. return $this->GetSQLExpr()." != $sQValue";
  938. break;
  939. case '>':
  940. return $this->GetSQLExpr()." > $sQValue";
  941. break;
  942. case '>=':
  943. return $this->GetSQLExpr()." >= $sQValue";
  944. break;
  945. case '<':
  946. return $this->GetSQLExpr()." < $sQValue";
  947. break;
  948. case '<=':
  949. return $this->GetSQLExpr()." <= $sQValue";
  950. break;
  951. case 'in':
  952. if (!is_array($value)) throw new CoreException("Expected an array for argument value (sOpCode='$sOpCode')");
  953. return $this->GetSQLExpr()." IN ('".implode("', '", $value)."')";
  954. break;
  955. case '=':
  956. default:
  957. return $this->GetSQLExpr()." = \"$value\"";
  958. }
  959. }
  960. public function GetNullValue()
  961. {
  962. return null;
  963. }
  964. public function IsNull($proposedValue)
  965. {
  966. return is_null($proposedValue);
  967. }
  968. public function MakeRealValue($proposedValue, $oHostObj)
  969. {
  970. if (is_null($proposedValue)) return null;
  971. if ($proposedValue === '') return null; // 0 is transformed into '' !
  972. return (int)$proposedValue;
  973. }
  974. public function ScalarToSQL($value)
  975. {
  976. assert(is_numeric($value) || is_null($value));
  977. return $value; // supposed to be an int
  978. }
  979. }
  980. /**
  981. * Display an integer between 0 and 100 as a percentage / horizontal bar graph
  982. *
  983. * @package iTopORM
  984. */
  985. class AttributePercentage extends AttributeInteger
  986. {
  987. public function GetAsHTML($sValue, $oHostObject = null, $bLocalize = true)
  988. {
  989. $iWidth = 5; // Total width of the percentage bar graph, in em...
  990. $iValue = (int)$sValue;
  991. if ($iValue > 100)
  992. {
  993. $iValue = 100;
  994. }
  995. else if ($iValue < 0)
  996. {
  997. $iValue = 0;
  998. }
  999. if ($iValue > 90)
  1000. {
  1001. $sColor = "#cc3300";
  1002. }
  1003. else if ($iValue > 50)
  1004. {
  1005. $sColor = "#cccc00";
  1006. }
  1007. else
  1008. {
  1009. $sColor = "#33cc00";
  1010. }
  1011. $iPercentWidth = ($iWidth * $iValue) / 100;
  1012. return "<div style=\"width:{$iWidth}em;-moz-border-radius: 3px;-webkit-border-radius: 3px;border-radius: 3px;display:inline-block;border: 1px #ccc solid;\"><div style=\"width:{$iPercentWidth}em; display:inline-block;background-color:$sColor;\">&nbsp;</div></div>&nbsp;$sValue %";
  1013. }
  1014. }
  1015. /**
  1016. * Map a decimal value column (suitable for financial computations) to an attribute
  1017. * internally in PHP such numbers are represented as string. Should you want to perform
  1018. * a calculation on them, it is recommended to use the BC Math functions in order to
  1019. * retain the precision
  1020. *
  1021. * @package iTopORM
  1022. */
  1023. class AttributeDecimal extends AttributeDBField
  1024. {
  1025. static public function ListExpectedParams()
  1026. {
  1027. return array_merge(parent::ListExpectedParams(), array('digits', 'decimals' /* including precision */));
  1028. }
  1029. public function GetEditClass() {return "String";}
  1030. protected function GetSQLCol() {return "DECIMAL(".$this->Get('digits').",".$this->Get('decimals').")";}
  1031. public function GetValidationPattern()
  1032. {
  1033. $iNbDigits = $this->Get('digits');
  1034. $iPrecision = $this->Get('decimals');
  1035. $iNbIntegerDigits = $iNbDigits - $iPrecision - 1; // -1 because the first digit is treated separately in the pattern below
  1036. return "^[-+]?[0-9]\d{0,$iNbIntegerDigits}(\.\d{0,$iPrecision})?$";
  1037. }
  1038. public function GetBasicFilterOperators()
  1039. {
  1040. return array(
  1041. "!="=>"differs from",
  1042. "="=>"equals",
  1043. ">"=>"greater (strict) than",
  1044. ">="=>"greater than",
  1045. "<"=>"less (strict) than",
  1046. "<="=>"less than",
  1047. "in"=>"in"
  1048. );
  1049. }
  1050. public function GetBasicFilterLooseOperator()
  1051. {
  1052. // Unless we implement an "equals approximately..." or "same order of magnitude"
  1053. return "=";
  1054. }
  1055. public function GetBasicFilterSQLExpr($sOpCode, $value)
  1056. {
  1057. $sQValue = CMDBSource::Quote($value);
  1058. switch ($sOpCode)
  1059. {
  1060. case '!=':
  1061. return $this->GetSQLExpr()." != $sQValue";
  1062. break;
  1063. case '>':
  1064. return $this->GetSQLExpr()." > $sQValue";
  1065. break;
  1066. case '>=':
  1067. return $this->GetSQLExpr()." >= $sQValue";
  1068. break;
  1069. case '<':
  1070. return $this->GetSQLExpr()." < $sQValue";
  1071. break;
  1072. case '<=':
  1073. return $this->GetSQLExpr()." <= $sQValue";
  1074. break;
  1075. case 'in':
  1076. if (!is_array($value)) throw new CoreException("Expected an array for argument value (sOpCode='$sOpCode')");
  1077. return $this->GetSQLExpr()." IN ('".implode("', '", $value)."')";
  1078. break;
  1079. case '=':
  1080. default:
  1081. return $this->GetSQLExpr()." = \"$value\"";
  1082. }
  1083. }
  1084. public function GetNullValue()
  1085. {
  1086. return null;
  1087. }
  1088. public function IsNull($proposedValue)
  1089. {
  1090. return is_null($proposedValue);
  1091. }
  1092. public function MakeRealValue($proposedValue, $oHostObj)
  1093. {
  1094. if (is_null($proposedValue)) return null;
  1095. if ($proposedValue == '') return null;
  1096. return (string)$proposedValue;
  1097. }
  1098. public function ScalarToSQL($value)
  1099. {
  1100. assert(is_null($value) || preg_match('/'.$this->GetValidationPattern().'/', $value));
  1101. return (string)$value; // treated as a string
  1102. }
  1103. }
  1104. /**
  1105. * Map a boolean column to an attribute
  1106. *
  1107. * @package iTopORM
  1108. */
  1109. class AttributeBoolean extends AttributeInteger
  1110. {
  1111. static public function ListExpectedParams()
  1112. {
  1113. return parent::ListExpectedParams();
  1114. //return array_merge(parent::ListExpectedParams(), array());
  1115. }
  1116. public function GetEditClass() {return "Integer";}
  1117. protected function GetSQLCol() {return "TINYINT(1)";}
  1118. public function MakeRealValue($proposedValue, $oHostObj)
  1119. {
  1120. if (is_null($proposedValue)) return null;
  1121. if ($proposedValue === '') return null;
  1122. if ((int)$proposedValue) return true;
  1123. return false;
  1124. }
  1125. public function ScalarToSQL($value)
  1126. {
  1127. if ($value) return 1;
  1128. return 0;
  1129. }
  1130. public function GetAsXML($sValue, $oHostObject = null, $bLocalize = true)
  1131. {
  1132. return $sValue ? '1' : '0';
  1133. }
  1134. }
  1135. /**
  1136. * Map a varchar column (size < ?) to an attribute
  1137. *
  1138. * @package iTopORM
  1139. */
  1140. class AttributeString extends AttributeDBField
  1141. {
  1142. static public function ListExpectedParams()
  1143. {
  1144. return parent::ListExpectedParams();
  1145. //return array_merge(parent::ListExpectedParams(), array());
  1146. }
  1147. public function GetEditClass() {return "String";}
  1148. protected function GetSQLCol() {return "VARCHAR(255)";}
  1149. public function GetValidationPattern()
  1150. {
  1151. $sPattern = $this->GetOptional('validation_pattern', '');
  1152. if (empty($sPattern))
  1153. {
  1154. return parent::GetValidationPattern();
  1155. }
  1156. else
  1157. {
  1158. return $sPattern;
  1159. }
  1160. }
  1161. public function CheckFormat($value)
  1162. {
  1163. $sRegExp = $this->GetValidationPattern();
  1164. if (empty($sRegExp))
  1165. {
  1166. return true;
  1167. }
  1168. else
  1169. {
  1170. $sRegExp = str_replace('/', '\\/', $sRegExp);
  1171. return preg_match("/$sRegExp/", $value);
  1172. }
  1173. }
  1174. public function GetMaxSize()
  1175. {
  1176. return 255;
  1177. }
  1178. public function GetBasicFilterOperators()
  1179. {
  1180. return array(
  1181. "="=>"equals",
  1182. "!="=>"differs from",
  1183. "Like"=>"equals (no case)",
  1184. "NotLike"=>"differs from (no case)",
  1185. "Contains"=>"contains",
  1186. "Begins with"=>"begins with",
  1187. "Finishes with"=>"finishes with"
  1188. );
  1189. }
  1190. public function GetBasicFilterLooseOperator()
  1191. {
  1192. return "Contains";
  1193. }
  1194. public function GetBasicFilterSQLExpr($sOpCode, $value)
  1195. {
  1196. $sQValue = CMDBSource::Quote($value);
  1197. switch ($sOpCode)
  1198. {
  1199. case '=':
  1200. case '!=':
  1201. return $this->GetSQLExpr()." $sOpCode $sQValue";
  1202. case 'Begins with':
  1203. return $this->GetSQLExpr()." LIKE ".CMDBSource::Quote("$value%");
  1204. case 'Finishes with':
  1205. return $this->GetSQLExpr()." LIKE ".CMDBSource::Quote("%$value");
  1206. case 'Contains':
  1207. return $this->GetSQLExpr()." LIKE ".CMDBSource::Quote("%$value%");
  1208. case 'NotLike':
  1209. return $this->GetSQLExpr()." NOT LIKE $sQValue";
  1210. case 'Like':
  1211. default:
  1212. return $this->GetSQLExpr()." LIKE $sQValue";
  1213. }
  1214. }
  1215. public function GetNullValue()
  1216. {
  1217. return '';
  1218. }
  1219. public function IsNull($proposedValue)
  1220. {
  1221. return ($proposedValue == '');
  1222. }
  1223. public function MakeRealValue($proposedValue, $oHostObj)
  1224. {
  1225. if (is_null($proposedValue)) return '';
  1226. return (string)$proposedValue;
  1227. }
  1228. public function ScalarToSQL($value)
  1229. {
  1230. if (!is_string($value) && !is_null($value))
  1231. {
  1232. throw new CoreWarning('Expected the attribute value to be a string', array('found_type' => gettype($value), 'value' => $value, 'class' => $this->GetCode(), 'attribute' => $this->GetHostClass()));
  1233. }
  1234. return $value;
  1235. }
  1236. public function GetAsCSV($sValue, $sSeparator = ',', $sTextQualifier = '"', $oHostObject = null, $bLocalize = true)
  1237. {
  1238. $sFrom = array("\r\n", $sTextQualifier);
  1239. $sTo = array("\n", $sTextQualifier.$sTextQualifier);
  1240. $sEscaped = str_replace($sFrom, $sTo, (string)$sValue);
  1241. return $sTextQualifier.$sEscaped.$sTextQualifier;
  1242. }
  1243. public function GetDisplayStyle()
  1244. {
  1245. return $this->GetOptional('display_style', 'select');
  1246. }
  1247. }
  1248. /**
  1249. * An attibute that matches an object class
  1250. *
  1251. * @package iTopORM
  1252. */
  1253. class AttributeClass extends AttributeString
  1254. {
  1255. static public function ListExpectedParams()
  1256. {
  1257. return array_merge(parent::ListExpectedParams(), array("class_category", "more_values"));
  1258. }
  1259. public function __construct($sCode, $aParams)
  1260. {
  1261. $this->m_sCode = $sCode;
  1262. $aParams["allowed_values"] = new ValueSetEnumClasses($aParams['class_category'], $aParams['more_values']);
  1263. parent::__construct($sCode, $aParams);
  1264. }
  1265. public function GetDefaultValue()
  1266. {
  1267. $sDefault = parent::GetDefaultValue();
  1268. if (!$this->IsNullAllowed() && $this->IsNull($sDefault))
  1269. {
  1270. // For this kind of attribute specifying null as default value
  1271. // is authorized even if null is not allowed
  1272. // Pick the first one...
  1273. $aClasses = $this->GetAllowedValues();
  1274. $sDefault = key($aClasses);
  1275. }
  1276. return $sDefault;
  1277. }
  1278. public function GetAsHTML($sValue, $oHostObject = null, $bLocalize = true)
  1279. {
  1280. if (empty($sValue)) return '';
  1281. return MetaModel::GetName($sValue);
  1282. }
  1283. public function RequiresIndex()
  1284. {
  1285. return true;
  1286. }
  1287. public function GetBasicFilterLooseOperator()
  1288. {
  1289. return '=';
  1290. }
  1291. }
  1292. /**
  1293. * An attibute that matches one of the language codes availables in the dictionnary
  1294. *
  1295. * @package iTopORM
  1296. */
  1297. class AttributeApplicationLanguage extends AttributeString
  1298. {
  1299. static public function ListExpectedParams()
  1300. {
  1301. return parent::ListExpectedParams();
  1302. }
  1303. public function __construct($sCode, $aParams)
  1304. {
  1305. $this->m_sCode = $sCode;
  1306. $aAvailableLanguages = Dict::GetLanguages();
  1307. $aLanguageCodes = array();
  1308. foreach($aAvailableLanguages as $sLangCode => $aInfo)
  1309. {
  1310. $aLanguageCodes[$sLangCode] = $aInfo['description'].' ('.$aInfo['localized_description'].')';
  1311. }
  1312. $aParams["allowed_values"] = new ValueSetEnum($aLanguageCodes);
  1313. parent::__construct($sCode, $aParams);
  1314. }
  1315. public function RequiresIndex()
  1316. {
  1317. return true;
  1318. }
  1319. public function GetBasicFilterLooseOperator()
  1320. {
  1321. return '=';
  1322. }
  1323. }
  1324. /**
  1325. * The attribute dedicated to the finalclass automatic attribute
  1326. *
  1327. * @package iTopORM
  1328. */
  1329. class AttributeFinalClass extends AttributeString
  1330. {
  1331. public function __construct($sCode, $aParams)
  1332. {
  1333. $this->m_sCode = $sCode;
  1334. $aParams["allowed_values"] = null;
  1335. parent::__construct($sCode, $aParams);
  1336. $this->m_sValue = $this->Get("default_value");
  1337. }
  1338. public function IsWritable()
  1339. {
  1340. return false;
  1341. }
  1342. public function RequiresIndex()
  1343. {
  1344. return true;
  1345. }
  1346. public function SetFixedValue($sValue)
  1347. {
  1348. $this->m_sValue = $sValue;
  1349. }
  1350. public function GetDefaultValue()
  1351. {
  1352. return $this->m_sValue;
  1353. }
  1354. public function GetAsHTML($sValue, $oHostObject = null, $bLocalize = true)
  1355. {
  1356. if (empty($sValue)) return '';
  1357. return MetaModel::GetName($sValue);
  1358. }
  1359. public function GetBasicFilterLooseOperator()
  1360. {
  1361. return '=';
  1362. }
  1363. public function GetValueLabel($sValue)
  1364. {
  1365. if (empty($sValue)) return '';
  1366. return MetaModel::GetName($sValue);
  1367. }
  1368. public function GetAllowedValues($aArgs = array(), $sContains = '')
  1369. {
  1370. $aRawValues = MetaModel::EnumChildClasses($this->GetHostClass(), ENUM_CHILD_CLASSES_ALL);
  1371. $aLocalizedValues = array();
  1372. foreach ($aRawValues as $sClass)
  1373. {
  1374. $aLocalizedValues[$sClass] = MetaModel::GetName($sClass);
  1375. }
  1376. return $aLocalizedValues;
  1377. }
  1378. }
  1379. /**
  1380. * Map a varchar column (size < ?) to an attribute that must never be shown to the user
  1381. *
  1382. * @package iTopORM
  1383. */
  1384. class AttributePassword extends AttributeString
  1385. {
  1386. static public function ListExpectedParams()
  1387. {
  1388. return parent::ListExpectedParams();
  1389. //return array_merge(parent::ListExpectedParams(), array());
  1390. }
  1391. public function GetEditClass() {return "Password";}
  1392. protected function GetSQLCol() {return "VARCHAR(64)";}
  1393. public function GetMaxSize()
  1394. {
  1395. return 64;
  1396. }
  1397. public function GetFilterDefinitions()
  1398. {
  1399. // Note: due to this, you will get an error if a password is being declared as a search criteria (see ZLists)
  1400. // not allowed to search on passwords!
  1401. return array();
  1402. }
  1403. public function GetAsHTML($sValue, $oHostObject = null, $bLocalize = true)
  1404. {
  1405. if (strlen($sValue) == 0)
  1406. {
  1407. return '';
  1408. }
  1409. else
  1410. {
  1411. return '******';
  1412. }
  1413. }
  1414. }
  1415. /**
  1416. * Map a text column (size < 255) to an attribute that is encrypted in the database
  1417. * The encryption is based on a key set per iTop instance. Thus if you export your
  1418. * database (in SQL) to someone else without providing the key at the same time
  1419. * the encrypted fields will remain encrypted
  1420. *
  1421. * @package iTopORM
  1422. */
  1423. class AttributeEncryptedString extends AttributeString
  1424. {
  1425. static $sKey = null; // Encryption key used for all encrypted fields
  1426. public function __construct($sCode, $aParams)
  1427. {
  1428. parent::__construct($sCode, $aParams);
  1429. if (self::$sKey == null)
  1430. {
  1431. self::$sKey = MetaModel::GetConfig()->GetEncryptionKey();
  1432. }
  1433. }
  1434. protected function GetSQLCol() {return "TINYBLOB";}
  1435. public function GetMaxSize()
  1436. {
  1437. return 255;
  1438. }
  1439. public function GetFilterDefinitions()
  1440. {
  1441. // Note: due to this, you will get an error if a an encrypted field is declared as a search criteria (see ZLists)
  1442. // not allowed to search on encrypted fields !
  1443. return array();
  1444. }
  1445. public function MakeRealValue($proposedValue, $oHostObj)
  1446. {
  1447. if (is_null($proposedValue)) return null;
  1448. return (string)$proposedValue;
  1449. }
  1450. /**
  1451. * Decrypt the value when reading from the database
  1452. */
  1453. public function FromSQLToValue($aCols, $sPrefix = '')
  1454. {
  1455. $oSimpleCrypt = new SimpleCrypt();
  1456. $sValue = $oSimpleCrypt->Decrypt(self::$sKey, $aCols[$sPrefix]);
  1457. return $sValue;
  1458. }
  1459. /**
  1460. * Encrypt the value before storing it in the database
  1461. */
  1462. public function GetSQLValues($value)
  1463. {
  1464. $oSimpleCrypt = new SimpleCrypt();
  1465. $encryptedValue = $oSimpleCrypt->Encrypt(self::$sKey, $value);
  1466. $aValues = array();
  1467. $aValues[$this->Get("sql")] = $encryptedValue;
  1468. return $aValues;
  1469. }
  1470. }
  1471. // Wiki formatting - experimental
  1472. //
  1473. // [[<objClass>:<objName>]]
  1474. // Example: [[Server:db1.tnut.com]]
  1475. define('WIKI_OBJECT_REGEXP', '/\[\[(.+):(.+)\]\]/U');
  1476. // <url>
  1477. // Example: http://romain:trustno1@127.0.0.1:8888/iTop-trunk/modules/itop-caches/itop-caches.php?agument=machin%20#monAncre
  1478. define('WIKI_URL', "/(https?|ftp)\:\/\/([a-z0-9+!*(),;?&=\$_.-]+(\:[a-z0-9+!*(),;?&=\$_.-]+)?@)?([a-z0-9-.]{3,})(\:[0-9]{2,5})?(\/([a-z0-9+\$_-]\.?)+)*\/?(\?[a-z+&\$_.-][a-z0-9;:@&%=+\/\$_.-]*)?(#[a-z_.-][a-z0-9+\$_.-]*)?/i");
  1479. // SHEME............. USER.................... PASSWORD...................... HOST/IP......... PORT.......... PATH...................... GET................................... ANCHOR....................
  1480. // Origin of this regexp: http://www.php.net/manual/fr/function.preg-match.php#93824
  1481. /**
  1482. * Map a text column (size > ?) to an attribute
  1483. *
  1484. * @package iTopORM
  1485. */
  1486. class AttributeText extends AttributeString
  1487. {
  1488. public function GetEditClass() {return "Text";}
  1489. protected function GetSQLCol() {return "TEXT";}
  1490. public function GetMaxSize()
  1491. {
  1492. // Is there a way to know the current limitation for mysql?
  1493. // See mysql_field_len()
  1494. return 65535;
  1495. }
  1496. static public function RenderWikiHtml($sText)
  1497. {
  1498. if (preg_match_all(WIKI_URL, $sText, $aAllMatches, PREG_SET_ORDER /* important !*/ |PREG_OFFSET_CAPTURE /* important ! */))
  1499. {
  1500. $aUrls = array();
  1501. $i = count($aAllMatches);
  1502. // Replace the URLs by an actual hyperlink <a href="...">...</a>
  1503. // Let's do it backwards so that the initial positions are not modified by the replacement
  1504. // This works if the matches are captured: in the order they occur in the string AND
  1505. // with their offset (i.e. position) inside the string
  1506. while($i > 0)
  1507. {
  1508. $i--;
  1509. $sUrl = $aAllMatches[$i][0][0]; // String corresponding to the main pattern
  1510. $iPos = $aAllMatches[$i][0][1]; // Position of the main pattern
  1511. $sText = substr_replace($sText, "<a href=\"$sUrl\">$sUrl</a>", $iPos, strlen($sUrl));
  1512. }
  1513. }
  1514. if (preg_match_all(WIKI_OBJECT_REGEXP, $sText, $aAllMatches, PREG_SET_ORDER))
  1515. {
  1516. foreach($aAllMatches as $iPos => $aMatches)
  1517. {
  1518. $sClass = $aMatches[1];
  1519. $sName = $aMatches[2];
  1520. if (MetaModel::IsValidClass($sClass))
  1521. {
  1522. $oObj = MetaModel::GetObjectByName($sClass, $sName, false /* MustBeFound */);
  1523. if (is_object($oObj))
  1524. {
  1525. // Propose a std link to the object
  1526. $sText = str_replace($aMatches[0], $oObj->GetHyperlink(), $sText);
  1527. }
  1528. else
  1529. {
  1530. // Propose a std link to the object
  1531. $sClassLabel = MetaModel::GetName($sClass);
  1532. $sText = str_replace($aMatches[0], "<span class=\"wiki_broken_link\">$sClassLabel:$sName</span>", $sText);
  1533. // Later: propose a link to create a new object
  1534. // Anyhow... there is no easy way to suggest default values based on the given FRIENDLY name
  1535. //$sText = preg_replace('/\[\[(.+):(.+)\]\]/', '<a href="'.utils::GetAbsoluteUrlAppRoot().'pages/UI.php?operation=new&class='.$sClass.'&default[att1]=xxx&default[att2]=yyy">'.$sName.'</a>', $sText);
  1536. }
  1537. }
  1538. }
  1539. }
  1540. return $sText;
  1541. }
  1542. public function GetAsHTML($sValue, $oHostObject = null, $bLocalize = true)
  1543. {
  1544. $sValue = parent::GetAsHTML($sValue, $oHostObject, $bLocalize);
  1545. $sValue = self::RenderWikiHtml($sValue);
  1546. $aStyles = array();
  1547. if ($this->GetWidth() != '')
  1548. {
  1549. $aStyles[] = 'width:'.$this->GetWidth();
  1550. }
  1551. if ($this->GetHeight() != '')
  1552. {
  1553. $aStyles[] = 'height:'.$this->GetHeight();
  1554. }
  1555. $sStyle = '';
  1556. if (count($aStyles) > 0)
  1557. {
  1558. $aStyles[] = 'overflow:auto';
  1559. $sStyle = 'style="'.implode(';', $aStyles).'"';
  1560. }
  1561. return "<div $sStyle>".str_replace("\n", "<br>\n", $sValue).'</div>';
  1562. }
  1563. public function GetEditValue($sValue, $oHostObj = null)
  1564. {
  1565. if (preg_match_all(WIKI_OBJECT_REGEXP, $sValue, $aAllMatches, PREG_SET_ORDER))
  1566. {
  1567. foreach($aAllMatches as $iPos => $aMatches)
  1568. {
  1569. $sClass = $aMatches[1];
  1570. $sName = $aMatches[2];
  1571. if (MetaModel::IsValidClass($sClass))
  1572. {
  1573. $sClassLabel = MetaModel::GetName($sClass);
  1574. $sValue = str_replace($aMatches[0], "[[$sClassLabel:$sName]]", $sValue);
  1575. }
  1576. }
  1577. }
  1578. return $sValue;
  1579. }
  1580. public function MakeRealValue($proposedValue, $oHostObj)
  1581. {
  1582. $sValue = $proposedValue;
  1583. if (preg_match_all(WIKI_OBJECT_REGEXP, $sValue, $aAllMatches, PREG_SET_ORDER))
  1584. {
  1585. foreach($aAllMatches as $iPos => $aMatches)
  1586. {
  1587. $sClassLabel = $aMatches[1];
  1588. $sName = $aMatches[2];
  1589. if (!MetaModel::IsValidClass($sClassLabel))
  1590. {
  1591. $sClass = MetaModel::GetClassFromLabel($sClassLabel);
  1592. if ($sClass)
  1593. {
  1594. $sValue = str_replace($aMatches[0], "[[$sClass:$sName]]", $sValue);
  1595. }
  1596. }
  1597. }
  1598. }
  1599. return $sValue;
  1600. }
  1601. public function GetAsXML($value, $oHostObject = null, $bLocalize = true)
  1602. {
  1603. return Str::pure2xml($value);
  1604. }
  1605. public function GetWidth()
  1606. {
  1607. return $this->GetOptional('width', '');
  1608. }
  1609. public function GetHeight()
  1610. {
  1611. return $this->GetOptional('height', '');
  1612. }
  1613. }
  1614. /**
  1615. * Map a log to an attribute
  1616. *
  1617. * @package iTopORM
  1618. */
  1619. class AttributeLongText extends AttributeText
  1620. {
  1621. protected function GetSQLCol() {return "LONGTEXT";}
  1622. public function GetMaxSize()
  1623. {
  1624. // Is there a way to know the current limitation for mysql?
  1625. // See mysql_field_len()
  1626. return 65535*1024; // Limited... still 64 Mb!
  1627. }
  1628. }
  1629. /**
  1630. * An attibute that stores a case log (i.e journal)
  1631. *
  1632. * @package iTopORM
  1633. */
  1634. class AttributeCaseLog extends AttributeLongText
  1635. {
  1636. public function GetNullValue()
  1637. {
  1638. return '';
  1639. }
  1640. public function IsNull($proposedValue)
  1641. {
  1642. if (!($proposedValue instanceof ormCaseLog))
  1643. {
  1644. return ($proposedValue == '');
  1645. }
  1646. return ($proposedValue->GetText() == '');
  1647. }
  1648. public function ScalarToSQL($value)
  1649. {
  1650. if (!is_string($value) && !is_null($value))
  1651. {
  1652. throw new CoreWarning('Expected the attribute value to be a string', array('found_type' => gettype($value), 'value' => $value, 'class' => $this->GetCode(), 'attribute' => $this->GetHostClass()));
  1653. }
  1654. return $value;
  1655. }
  1656. public function GetEditClass() {return "CaseLog";}
  1657. public function GetEditValue($sValue, $oHostObj = null)
  1658. {
  1659. if (!($sValue instanceOf ormCaseLog))
  1660. {
  1661. return '';
  1662. }
  1663. return $sValue->GetModifiedEntry();
  1664. }
  1665. public function GetDefaultValue() {return new ormCaseLog();}
  1666. public function Equals($val1, $val2) {return ($val1->GetText() == $val2->GetText());}
  1667. // Facilitate things: allow the user to Set the value from a string
  1668. public function MakeRealValue($proposedValue, $oHostObj)
  1669. {
  1670. if (!($proposedValue instanceof ormCaseLog))
  1671. {
  1672. // Append the new value if an instance of the object is supplied
  1673. //
  1674. $oPreviousLog = null;
  1675. if ($oHostObj != null)
  1676. {
  1677. $oPreviousLog = $oHostObj->Get($this->GetCode());
  1678. if (!is_object($oPreviousLog))
  1679. {
  1680. $oPreviousLog = $oHostObj->GetOriginal($this->GetCode());;
  1681. }
  1682. }
  1683. if (is_object($oPreviousLog))
  1684. {
  1685. $oCaseLog = clone($oPreviousLog);
  1686. }
  1687. else
  1688. {
  1689. $oCaseLog = new ormCaseLog();
  1690. }
  1691. if (strlen($proposedValue) > 0)
  1692. {
  1693. $oCaseLog->AddLogEntry(parent::MakeRealValue($proposedValue, $oHostObj));
  1694. }
  1695. return $oCaseLog;
  1696. }
  1697. return $proposedValue;
  1698. }
  1699. public function GetSQLExpressions($sPrefix = '')
  1700. {
  1701. if ($sPrefix == '')
  1702. {
  1703. $sPrefix = $this->GetCode();
  1704. }
  1705. $aColumns = array();
  1706. // Note: to optimize things, the existence of the attribute is determined by the existence of one column with an empty suffix
  1707. $aColumns[''] = $sPrefix;
  1708. $aColumns['_index'] = $sPrefix.'_index';
  1709. return $aColumns;
  1710. }
  1711. public function FromSQLToValue($aCols, $sPrefix = '')
  1712. {
  1713. if (!isset($aCols[$sPrefix]))
  1714. {
  1715. $sAvailable = implode(', ', array_keys($aCols));
  1716. throw new MissingColumnException("Missing column '$sPrefix' from {$sAvailable}");
  1717. }
  1718. $sLog = $aCols[$sPrefix];
  1719. if (isset($aCols[$sPrefix.'_index']))
  1720. {
  1721. $sIndex = $aCols[$sPrefix.'_index'];
  1722. }
  1723. else
  1724. {
  1725. // For backward compatibility, allow the current state to be: 1 log, no index
  1726. $sIndex = '';
  1727. }
  1728. if (strlen($sIndex) > 0)
  1729. {
  1730. $aIndex = unserialize($sIndex);
  1731. $value = new ormCaseLog($sLog, $aIndex);
  1732. }
  1733. else
  1734. {
  1735. $value = new ormCaseLog($sLog);
  1736. }
  1737. return $value;
  1738. }
  1739. public function GetSQLValues($value)
  1740. {
  1741. if (!($value instanceOf ormCaseLog))
  1742. {
  1743. $value = new ormCaseLog('');
  1744. }
  1745. $aValues = array();
  1746. $aValues[$this->GetCode()] = $value->GetText();
  1747. $aValues[$this->GetCode().'_index'] = serialize($value->GetIndex());
  1748. return $aValues;
  1749. }
  1750. public function GetSQLColumns()
  1751. {
  1752. $aColumns = array();
  1753. $aColumns[$this->GetCode()] = 'LONGTEXT'; // 2^32 (4 Gb)
  1754. $aColumns[$this->GetCode().'_index'] = 'BLOB';
  1755. return $aColumns;
  1756. }
  1757. public function GetAsHTML($value, $oHostObject = null, $bLocalize = true)
  1758. {
  1759. if ($value instanceOf ormCaseLog)
  1760. {
  1761. $sContent = $value->GetAsHTML(null, false, array(__class__, 'RenderWikiHtml'));
  1762. }
  1763. else
  1764. {
  1765. $sContent = '';
  1766. }
  1767. $aStyles = array();
  1768. if ($this->GetWidth() != '')
  1769. {
  1770. $aStyles[] = 'width:'.$this->GetWidth();
  1771. }
  1772. if ($this->GetHeight() != '')
  1773. {
  1774. $aStyles[] = 'height:'.$this->GetHeight();
  1775. }
  1776. $sStyle = '';
  1777. if (count($aStyles) > 0)
  1778. {
  1779. $sStyle = 'style="'.implode(';', $aStyles).'"';
  1780. }
  1781. return "<div class=\"caselog\" $sStyle>".$sContent.'</div>'; }
  1782. public function GetAsCSV($value, $sSeparator = ',', $sTextQualifier = '"', $oHostObject = null, $bLocalize = true)
  1783. {
  1784. if ($value instanceOf ormCaseLog)
  1785. {
  1786. return parent::GetAsCSV($value->GetText(), $sSeparator, $sTextQualifier, $oHostObject, $bLocalize);
  1787. }
  1788. else
  1789. {
  1790. return '';
  1791. }
  1792. }
  1793. public function GetAsXML($value, $oHostObject = null, $bLocalize = true)
  1794. {
  1795. if ($value instanceOf ormCaseLog)
  1796. {
  1797. return parent::GetAsXML($value->GetText(), $oHostObject, $bLocalize);
  1798. }
  1799. else
  1800. {
  1801. return '';
  1802. }
  1803. }
  1804. }
  1805. /**
  1806. * Map a text column (size > ?), containing HTML code, to an attribute
  1807. *
  1808. * @package iTopORM
  1809. */
  1810. class AttributeHTML extends AttributeLongText
  1811. {
  1812. public function GetEditClass() {return "HTML";}
  1813. public function GetAsHTML($sValue, $oHostObject = null, $bLocalize = true)
  1814. {
  1815. return $sValue;
  1816. }
  1817. }
  1818. /**
  1819. * Specialization of a string: email
  1820. *
  1821. * @package iTopORM
  1822. */
  1823. class AttributeEmailAddress extends AttributeString
  1824. {
  1825. public function GetValidationPattern()
  1826. {
  1827. // return "^([0-9a-zA-Z]([-.\\w]*[0-9a-zA-Z])*@([0-9a-zA-Z][-\\w]*[0-9a-zA-Z]\\.)+[a-zA-Z]{2,9})$";
  1828. return "^[a-zA-Z0-9._-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,4}$";
  1829. }
  1830. public function GetAsHTML($sValue, $oHostObject = null, $bLocalize = true)
  1831. {
  1832. if (empty($sValue)) return '';
  1833. return '<a class="mailto" href="mailto:'.$sValue.'">'.parent::GetAsHTML($sValue).'</a>';
  1834. }
  1835. }
  1836. /**
  1837. * Specialization of a string: IP address
  1838. *
  1839. * @package iTopORM
  1840. */
  1841. class AttributeIPAddress extends AttributeString
  1842. {
  1843. public function GetValidationPattern()
  1844. {
  1845. $sNum = '(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])';
  1846. return "^($sNum\\.$sNum\\.$sNum\\.$sNum)$";
  1847. }
  1848. public function GetOrderBySQLExpressions($sClassAlias)
  1849. {
  1850. // Note: This is the responsibility of this function to place backticks around column aliases
  1851. return array('INET_ATON(`'.$sClassAlias.$this->GetCode().'`)');
  1852. }
  1853. }
  1854. /**
  1855. * Specialization of a string: OQL expression
  1856. *
  1857. * @package iTopORM
  1858. */
  1859. class AttributeOQL extends AttributeText
  1860. {
  1861. public function GetEditClass() {return "OQLExpression";}
  1862. }
  1863. /**
  1864. * Specialization of a string: template (contains iTop placeholders like $current_contact_id$ or $this->name$)
  1865. *
  1866. * @package iTopORM
  1867. */
  1868. class AttributeTemplateString extends AttributeString
  1869. {
  1870. }
  1871. /**
  1872. * Specialization of a text: template (contains iTop placeholders like $current_contact_id$ or $this->name$)
  1873. *
  1874. * @package iTopORM
  1875. */
  1876. class AttributeTemplateText extends AttributeText
  1877. {
  1878. }
  1879. /**
  1880. * Specialization of a HTML: template (contains iTop placeholders like $current_contact_id$ or $this->name$)
  1881. *
  1882. * @package iTopORM
  1883. */
  1884. class AttributeTemplateHTML extends AttributeText
  1885. {
  1886. public function GetEditClass() {return "HTML";}
  1887. public function GetAsHTML($sValue, $oHostObject = null, $bLocalize = true)
  1888. {
  1889. return $sValue;
  1890. }
  1891. }
  1892. /**
  1893. * Map a enum column to an attribute
  1894. *
  1895. * @package iTopORM
  1896. */
  1897. class AttributeEnum extends AttributeString
  1898. {
  1899. static public function ListExpectedParams()
  1900. {
  1901. return parent::ListExpectedParams();
  1902. //return array_merge(parent::ListExpectedParams(), array());
  1903. }
  1904. public function GetEditClass() {return "String";}
  1905. protected function GetSQLCol()
  1906. {
  1907. $oValDef = $this->GetValuesDef();
  1908. if ($oValDef)
  1909. {
  1910. $aValues = CMDBSource::Quote(array_keys($oValDef->GetValues(array(), "")), true);
  1911. }
  1912. else
  1913. {
  1914. $aValues = array();
  1915. }
  1916. if (count($aValues) > 0)
  1917. {
  1918. // The syntax used here do matters
  1919. // In particular, I had to remove unnecessary spaces to
  1920. // make sure that this string will match the field type returned by the DB
  1921. // (used to perform a comparison between the current DB format and the data model)
  1922. return "ENUM(".implode(",", $aValues).")";
  1923. }
  1924. else
  1925. {
  1926. return "VARCHAR(255)"; // ENUM() is not an allowed syntax!
  1927. }
  1928. }
  1929. public function ScalarToSQL($value)
  1930. {
  1931. // Note: for strings, the null value is an empty string and it is recorded as such in the DB
  1932. // but that wasn't working for enums, because '' is NOT one of the allowed values
  1933. // that's why a null value must be forced to a real null
  1934. $value = parent::ScalarToSQL($value);
  1935. if ($this->IsNull($value))
  1936. {
  1937. return null;
  1938. }
  1939. else
  1940. {
  1941. return $value;
  1942. }
  1943. }
  1944. public function RequiresIndex()
  1945. {
  1946. return false;
  1947. }
  1948. public function GetBasicFilterOperators()
  1949. {
  1950. return parent::GetBasicFilterOperators();
  1951. }
  1952. public function GetBasicFilterLooseOperator()
  1953. {
  1954. return '=';
  1955. }
  1956. public function GetBasicFilterSQLExpr($sOpCode, $value)
  1957. {
  1958. return parent::GetBasicFilterSQLExpr($sOpCode, $value);
  1959. }
  1960. public function GetValueLabel($sValue)
  1961. {
  1962. if (is_null($sValue))
  1963. {
  1964. // Unless a specific label is defined for the null value of this enum, use a generic "undefined" label
  1965. $sLabel = Dict::S('Class:'.$this->GetHostClass().'/Attribute:'.$this->GetCode().'/Value:'.$sValue, Dict::S('Enum:Undefined'));
  1966. }
  1967. else
  1968. {
  1969. $sLabel = Dict::S('Class:'.$this->GetHostClass().'/Attribute:'.$this->GetCode().'/Value:'.$sValue, '');
  1970. if (strlen($sLabel) == 0)
  1971. {
  1972. $sLabel = str_replace('_', ' ', $sValue);
  1973. $sParentClass = MetaModel::GetParentClass($this->m_sHostClass);
  1974. if ($sParentClass)
  1975. {
  1976. if (MetaModel::IsValidAttCode($sParentClass, $this->m_sCode))
  1977. {
  1978. $oAttDef = MetaModel::GetAttributeDef($sParentClass, $this->m_sCode);
  1979. $sLabel = $oAttDef->GetValueLabel($sValue);
  1980. }
  1981. }
  1982. }
  1983. }
  1984. return $sLabel;
  1985. }
  1986. public function GetValueDescription($sValue)
  1987. {
  1988. if (is_null($sValue))
  1989. {
  1990. // Unless a specific label is defined for the null value of this enum, use a generic "undefined" label
  1991. $sDescription = Dict::S('Class:'.$this->GetHostClass().'/Attribute:'.$this->GetCode().'/Value:'.$sValue.'+', Dict::S('Enum:Undefined'));
  1992. }
  1993. else
  1994. {
  1995. $sDescription = Dict::S('Class:'.$this->GetHostClass().'/Attribute:'.$this->GetCode().'/Value:'.$sValue.'+', '');
  1996. if (strlen($sDescription) == 0)
  1997. {
  1998. $sParentClass = MetaModel::GetParentClass($this->m_sHostClass);
  1999. if ($sParentClass)
  2000. {
  2001. if (MetaModel::IsValidAttCode($sParentClass, $this->m_sCode))
  2002. {
  2003. $oAttDef = MetaModel::GetAttributeDef($sParentClass, $this->m_sCode);
  2004. $sDescription = $oAttDef->GetValueDescription($sValue);
  2005. }
  2006. }
  2007. }
  2008. }
  2009. return $sDescription;
  2010. }
  2011. public function GetAsHTML($sValue, $oHostObject = null, $bLocalize = true)
  2012. {
  2013. if ($bLocalize)
  2014. {
  2015. $sLabel = $this->GetValueLabel($sValue);
  2016. $sDescription = $this->GetValueDescription($sValue);
  2017. // later, we could imagine a detailed description in the title
  2018. $sRes = "<span title=\"$sDescription\">".parent::GetAsHtml($sLabel)."</span>";
  2019. }
  2020. else
  2021. {
  2022. $sRes = parent::GetAsHtml($sValue, $oHostObject, $bLocalize);
  2023. }
  2024. return $sRes;
  2025. }
  2026. public function GetAsXML($value, $oHostObject = null, $bLocalize = true)
  2027. {
  2028. if ($bLocalize)
  2029. {
  2030. $sFinalValue = $this->GetValueLabel($value);
  2031. }
  2032. else
  2033. {
  2034. $sFinalValue = $value;
  2035. }
  2036. $sRes = parent::GetAsXML($sFinalValue, $oHostObject, $bLocalize);
  2037. return $sRes;
  2038. }
  2039. public function GetAsCSV($sValue, $sSeparator = ',', $sTextQualifier = '"', $oHostObject = null, $bLocalize = true)
  2040. {
  2041. if ($bLocalize)
  2042. {
  2043. $sFinalValue = $this->GetValueLabel($sValue);
  2044. }
  2045. else
  2046. {
  2047. $sFinalValue = $sValue;
  2048. }
  2049. $sRes = parent::GetAsCSV($sFinalValue, $sSeparator, $sTextQualifier, $oHostObject, $bLocalize);
  2050. return $sRes;
  2051. }
  2052. public function GetEditValue($sValue, $oHostObj = null)
  2053. {
  2054. return $this->GetValueLabel($sValue);
  2055. }
  2056. public function GetAsHTMLForHistory($sOldValue, $sNewValue, $sLabel = null)
  2057. {
  2058. $sOldValue = is_null($sOldValue) ? null : $this->GetAsHTML($sOldValue);
  2059. $sNewValue = is_null($sNewValue) ? null : $this->GetAsHTML($sNewValue);
  2060. $sResult = parent::GetAsHTMLForHistory($sOldValue, $sNewValue, $sLabel);
  2061. return $sResult;
  2062. }
  2063. public function GetAllowedValues($aArgs = array(), $sContains = '')
  2064. {
  2065. $aRawValues = parent::GetAllowedValues($aArgs, $sContains);
  2066. if (is_null($aRawValues)) return null;
  2067. $aLocalizedValues = array();
  2068. foreach ($aRawValues as $sKey => $sValue)
  2069. {
  2070. $aLocalizedValues[$sKey] = Str::pure2html($this->GetValueLabel($sKey));
  2071. }
  2072. return $aLocalizedValues;
  2073. }
  2074. /**
  2075. * An enum can be localized
  2076. */
  2077. public function MakeValueFromString($sProposedValue, $bLocalizedValue = false, $sSepItem = null, $sSepAttribute = null, $sSepValue = null, $sAttributeQualifier = null)
  2078. {
  2079. if ($bLocalizedValue)
  2080. {
  2081. // Lookup for the value matching the input
  2082. //
  2083. $sFoundValue = null;
  2084. $aRawValues = parent::GetAllowedValues();
  2085. if (!is_null($aRawValues))
  2086. {
  2087. foreach ($aRawValues as $sKey => $sValue)
  2088. {
  2089. $sRefValue = $this->GetValueLabel($sKey);
  2090. if ($sProposedValue == $sRefValue)
  2091. {
  2092. $sFoundValue = $sKey;
  2093. break;
  2094. }
  2095. }
  2096. }
  2097. if (is_null($sFoundValue))
  2098. {
  2099. return null;
  2100. }
  2101. return $this->MakeRealValue($sFoundValue, null);
  2102. }
  2103. else
  2104. {
  2105. return parent::MakeValueFromString($sProposedValue, $bLocalizedValue, $sSepItem, $sSepAttribute, $sSepValue, $sAttributeQualifier);
  2106. }
  2107. }
  2108. /**
  2109. * Processes the input value to align it with the values supported
  2110. * by this type of attribute. In this case: turns empty strings into nulls
  2111. * @param mixed $proposedValue The value to be set for the attribute
  2112. * @return mixed The actual value that will be set
  2113. */
  2114. public function MakeRealValue($proposedValue, $oHostObj)
  2115. {
  2116. if ($proposedValue == '') return null;
  2117. return parent::MakeRealValue($proposedValue, $oHostObj);
  2118. }
  2119. public function GetOrderByHint()
  2120. {
  2121. $aValues = $this->GetAllowedValues();
  2122. return Dict::Format('UI:OrderByHint_Values', implode(', ', $aValues));
  2123. }
  2124. }
  2125. /**
  2126. * Map a date+time column to an attribute
  2127. *
  2128. * @package iTopORM
  2129. */
  2130. class AttributeDateTime extends AttributeDBField
  2131. {
  2132. static protected function GetDateFormat()
  2133. {
  2134. return "Y-m-d H:i:s";
  2135. }
  2136. static public function ListExpectedParams()
  2137. {
  2138. return parent::ListExpectedParams();
  2139. //return array_merge(parent::ListExpectedParams(), array());
  2140. }
  2141. public function GetEditClass() {return "DateTime";}
  2142. protected function GetSQLCol() {return "DATETIME";}
  2143. public static function GetAsUnixSeconds($value)
  2144. {
  2145. $oDeadlineDateTime = new DateTime($value);
  2146. $iUnixSeconds = $oDeadlineDateTime->format('U');
  2147. return $iUnixSeconds;
  2148. }
  2149. // This has been done at the time when itop was using TIMESTAMP columns,
  2150. // now that iTop is using DATETIME columns, it seems possible to have IsNullAllowed returning false... later when this is needed
  2151. public function IsNullAllowed() {return true;}
  2152. public function GetDefaultValue()
  2153. {
  2154. $default = parent::GetDefaultValue();
  2155. if (!parent::IsNullAllowed())
  2156. {
  2157. if (empty($default))
  2158. {
  2159. $default = date($this->GetDateFormat());
  2160. }
  2161. }
  2162. return $default;
  2163. }
  2164. // END OF THE WORKAROUND
  2165. ///////////////////////////////////////////////////////////////
  2166. public function GetValidationPattern()
  2167. {
  2168. return "^([0-9]{4}-(((0[13578]|(10|12))-(0[1-9]|[1-2][0-9]|3[0-1]))|(02-(0[1-9]|[1-2][0-9]))|((0[469]|11)-(0[1-9]|[1-2][0-9]|30))))( (0[0-9]|1[0-9]|2[0-3]):([0-5][0-9]):([0-5][0-9])){0,1}|0000-00-00 00:00:00|0000-00-00$";
  2169. }
  2170. public function GetBasicFilterOperators()
  2171. {
  2172. return array(
  2173. "="=>"equals",
  2174. "!="=>"differs from",
  2175. "<"=>"before",
  2176. "<="=>"before",
  2177. ">"=>"after (strictly)",
  2178. ">="=>"after",
  2179. "SameDay"=>"same day (strip time)",
  2180. "SameMonth"=>"same year/month",
  2181. "SameYear"=>"same year",
  2182. "Today"=>"today",
  2183. ">|"=>"after today + N days",
  2184. "<|"=>"before today + N days",
  2185. "=|"=>"equals today + N days",
  2186. );
  2187. }
  2188. public function GetBasicFilterLooseOperator()
  2189. {
  2190. // Unless we implement a "same xxx, depending on given precision" !
  2191. return "=";
  2192. }
  2193. public function GetBasicFilterSQLExpr($sOpCode, $value)
  2194. {
  2195. $sQValue = CMDBSource::Quote($value);
  2196. switch ($sOpCode)
  2197. {
  2198. case '=':
  2199. case '!=':
  2200. case '<':
  2201. case '<=':
  2202. case '>':
  2203. case '>=':
  2204. return $this->GetSQLExpr()." $sOpCode $sQValue";
  2205. case 'SameDay':
  2206. return "DATE(".$this->GetSQLExpr().") = DATE($sQValue)";
  2207. case 'SameMonth':
  2208. return "DATE_FORMAT(".$this->GetSQLExpr().", '%Y-%m') = DATE_FORMAT($sQValue, '%Y-%m')";
  2209. case 'SameYear':
  2210. return "MONTH(".$this->GetSQLExpr().") = MONTH($sQValue)";
  2211. case 'Today':
  2212. return "DATE(".$this->GetSQLExpr().") = CURRENT_DATE()";
  2213. case '>|':
  2214. return "DATE(".$this->GetSQLExpr().") > DATE_ADD(CURRENT_DATE(), INTERVAL $sQValue DAY)";
  2215. case '<|':
  2216. return "DATE(".$this->GetSQLExpr().") < DATE_ADD(CURRENT_DATE(), INTERVAL $sQValue DAY)";
  2217. case '=|':
  2218. return "DATE(".$this->GetSQLExpr().") = DATE_ADD(CURRENT_DATE(), INTERVAL $sQValue DAY)";
  2219. default:
  2220. return $this->GetSQLExpr()." = $sQValue";
  2221. }
  2222. }
  2223. public function MakeRealValue($proposedValue, $oHostObj)
  2224. {
  2225. if (is_null($proposedValue))
  2226. {
  2227. return null;
  2228. }
  2229. if (is_string($proposedValue) && ($proposedValue == "") && $this->IsNullAllowed())
  2230. {
  2231. return null;
  2232. }
  2233. if (!is_numeric($proposedValue))
  2234. {
  2235. return $proposedValue;
  2236. }
  2237. return date(self::GetDateFormat(), $proposedValue);
  2238. }
  2239. public function ScalarToSQL($value)
  2240. {
  2241. if (is_null($value))
  2242. {
  2243. return null;
  2244. }
  2245. elseif (empty($value))
  2246. {
  2247. // Make a valid date for MySQL. TO DO: support NULL as a literal value for fields that can be null.
  2248. return '0000-00-00 00:00:00';
  2249. }
  2250. return $value;
  2251. }
  2252. public function GetAsHTML($value, $oHostObject = null, $bLocalize = true)
  2253. {
  2254. return Str::pure2html($value);
  2255. }
  2256. public function GetAsXML($value, $oHostObject = null, $bLocalize = true)
  2257. {
  2258. return Str::pure2xml($value);
  2259. }
  2260. public function GetAsCSV($sValue, $sSeparator = ',', $sTextQualifier = '"', $oHostObject = null, $bLocalize = true)
  2261. {
  2262. $sFrom = array("\r\n", $sTextQualifier);
  2263. $sTo = array("\n", $sTextQualifier.$sTextQualifier);
  2264. $sEscaped = str_replace($sFrom, $sTo, (string)$sValue);
  2265. return '"'.$sEscaped.'"';
  2266. }
  2267. /**
  2268. * Parses a string to find some smart search patterns and build the corresponding search/OQL condition
  2269. * Each derived class is reponsible for defining and processing their own smart patterns, the base class
  2270. * does nothing special, and just calls the default (loose) operator
  2271. * @param string $sSearchText The search string to analyze for smart patterns
  2272. * @param FieldExpression The FieldExpression representing the atttribute code in this OQL query
  2273. * @param Hash $aParams Values of the query parameters
  2274. * @return Expression The search condition to be added (AND) to the current search
  2275. */
  2276. public function GetSmartConditionExpression($sSearchText, FieldExpression $oField, &$aParams)
  2277. {
  2278. // Possible smart patterns
  2279. $aPatterns = array(
  2280. 'between' => array('pattern' => '/^\[(.*),(.*)\]$/', 'operator' => 'n/a'),
  2281. 'greater than or equal' => array('pattern' => '/^>=(.*)$/', 'operator' => '>='),
  2282. 'greater than' => array('pattern' => '/^>(.*)$/', 'operator' => '>'),
  2283. 'less than or equal' => array('pattern' => '/^<=(.*)$/', 'operator' => '<='),
  2284. 'less than' => array('pattern' => '/^<(.*)$/', 'operator' => '<'),
  2285. );
  2286. $sPatternFound = '';
  2287. $aMatches = array();
  2288. foreach($aPatterns as $sPatName => $sPattern)
  2289. {
  2290. if (preg_match($sPattern['pattern'], $sSearchText, $aMatches))
  2291. {
  2292. $sPatternFound = $sPatName;
  2293. break;
  2294. }
  2295. }
  2296. switch($sPatternFound)
  2297. {
  2298. case 'between':
  2299. $sParamName1 = $oField->GetParent().'_'.$oField->GetName().'_1';
  2300. $oRightExpr = new VariableExpression($sParamName1);
  2301. $aParams[$sParamName1] = $aMatches[1];
  2302. $oCondition1 = new BinaryExpression($oField, '>=', $oRightExpr);
  2303. $sParamName2 = $oField->GetParent().'_'.$oField->GetName().'_2';
  2304. $oRightExpr = new VariableExpression($sParamName2);
  2305. $sOperator = $this->GetBasicFilterLooseOperator();
  2306. $aParams[$sParamName2] = $aMatches[2];
  2307. $oCondition2 = new BinaryExpression($oField, '<=', $oRightExpr);
  2308. $oNewCondition = new BinaryExpression($oCondition1, 'AND', $oCondition2);
  2309. break;
  2310. case 'greater than':
  2311. case 'greater than or equal':
  2312. case 'less than':
  2313. case 'less than or equal':
  2314. $sSQLOperator = $aPatterns[$sPatternFound]['operator'];
  2315. $sParamName = $oField->GetParent().'_'.$oField->GetName();
  2316. $oRightExpr = new VariableExpression($sParamName);
  2317. $aParams[$sParamName] = $aMatches[1];
  2318. $oNewCondition = new BinaryExpression($oField, $sSQLOperator, $oRightExpr);
  2319. break;
  2320. default:
  2321. $oNewCondition = parent::GetSmartConditionExpression($sSearchText, $oField, $aParams);
  2322. }
  2323. return $oNewCondition;
  2324. }
  2325. }
  2326. /**
  2327. * Store a duration as a number of seconds
  2328. *
  2329. * @package iTopORM
  2330. */
  2331. class AttributeDuration extends AttributeInteger
  2332. {
  2333. public function GetEditClass() {return "Duration";}
  2334. protected function GetSQLCol() {return "INT(11) UNSIGNED";}
  2335. public function GetNullValue() {return '0';}
  2336. public function GetDefaultValue()
  2337. {
  2338. return 0;
  2339. }
  2340. public function MakeRealValue($proposedValue, $oHostObj)
  2341. {
  2342. if (is_null($proposedValue)) return null;
  2343. if (!is_numeric($proposedValue)) return null;
  2344. if ( ((int)$proposedValue) < 0) return null;
  2345. return (int)$proposedValue;
  2346. }
  2347. public function ScalarToSQL($value)
  2348. {
  2349. if (is_null($value))
  2350. {
  2351. return null;
  2352. }
  2353. return $value;
  2354. }
  2355. public function GetAsHTML($value, $oHostObject = null, $bLocalize = true)
  2356. {
  2357. return Str::pure2html(self::FormatDuration($value));
  2358. }
  2359. public static function FormatDuration($duration)
  2360. {
  2361. $aDuration = self::SplitDuration($duration);
  2362. $sResult = '';
  2363. if ($duration < 60)
  2364. {
  2365. // Less than 1 min
  2366. $sResult = Dict::Format('Core:Duration_Seconds', $aDuration['seconds']);
  2367. }
  2368. else if ($duration < 3600)
  2369. {
  2370. // less than 1 hour, display it in minutes/seconds
  2371. $sResult = Dict::Format('Core:Duration_Minutes_Seconds', $aDuration['minutes'], $aDuration['seconds']);
  2372. }
  2373. else if ($duration < 86400)
  2374. {
  2375. // Less than 1 day, display it in hours/minutes/seconds
  2376. $sResult = Dict::Format('Core:Duration_Hours_Minutes_Seconds', $aDuration['hours'], $aDuration['minutes'], $aDuration['seconds']);
  2377. }
  2378. else
  2379. {
  2380. // more than 1 day, display it in days/hours/minutes/seconds
  2381. $sResult = Dict::Format('Core:Duration_Days_Hours_Minutes_Seconds', $aDuration['days'], $aDuration['hours'], $aDuration['minutes'], $aDuration['seconds']);
  2382. }
  2383. return $sResult;
  2384. }
  2385. static function SplitDuration($duration)
  2386. {
  2387. $duration = (int) $duration;
  2388. $days = floor($duration / 86400);
  2389. $hours = floor(($duration - (86400*$days)) / 3600);
  2390. $minutes = floor(($duration - (86400*$days + 3600*$hours)) / 60);
  2391. $seconds = ($duration % 60); // modulo
  2392. return array( 'days' => $days, 'hours' => $hours, 'minutes' => $minutes, 'seconds' => $seconds );
  2393. }
  2394. }
  2395. /**
  2396. * Map a date+time column to an attribute
  2397. *
  2398. * @package iTopORM
  2399. */
  2400. class AttributeDate extends AttributeDateTime
  2401. {
  2402. const MYDATEFORMAT = "Y-m-d";
  2403. static protected function GetDateFormat()
  2404. {
  2405. return "Y-m-d";
  2406. }
  2407. static public function ListExpectedParams()
  2408. {
  2409. return parent::ListExpectedParams();
  2410. //return array_merge(parent::ListExpectedParams(), array());
  2411. }
  2412. public function GetEditClass() {return "Date";}
  2413. protected function GetSQLCol() {return "DATE";}
  2414. public function GetValidationPattern()
  2415. {
  2416. return "^[0-9]{4}-(((0[13578]|(10|12))-(0[1-9]|[1-2][0-9]|3[0-1]))|(02-(0[1-9]|[1-2][0-9]))|((0[469]|11)-(0[1-9]|[1-2][0-9]|30)))$";
  2417. }
  2418. }
  2419. /**
  2420. * A dead line stored as a date & time
  2421. * The only difference with the DateTime attribute is the display:
  2422. * relative to the current time
  2423. */
  2424. class AttributeDeadline extends AttributeDateTime
  2425. {
  2426. public function GetAsHTML($value, $oHostObject = null, $bLocalize = true)
  2427. {
  2428. $sResult = self::FormatDeadline($value);
  2429. return $sResult;
  2430. }
  2431. public static function FormatDeadline($value)
  2432. {
  2433. $sResult = '';
  2434. if ($value !== null)
  2435. {
  2436. $iValue = AttributeDateTime::GetAsUnixSeconds($value);
  2437. $sDate = $value;
  2438. $difference = $iValue - time();
  2439. if ($difference >= 0)
  2440. {
  2441. $sDifference = self::FormatDuration($difference);
  2442. }
  2443. else
  2444. {
  2445. $sDifference = Dict::Format('UI:DeadlineMissedBy_duration', self::FormatDuration(-$difference));
  2446. }
  2447. $sFormat = MetaModel::GetConfig()->Get('deadline_format', '$difference$');
  2448. $sResult = str_replace(array('$date$', '$difference$'), array($sDate, $sDifference), $sFormat);
  2449. }
  2450. return $sResult;
  2451. }
  2452. static function FormatDuration($duration)
  2453. {
  2454. $days = floor($duration / 86400);
  2455. $hours = floor(($duration - (86400*$days)) / 3600);
  2456. $minutes = floor(($duration - (86400*$days + 3600*$hours)) / 60);
  2457. $sResult = '';
  2458. if ($duration < 60)
  2459. {
  2460. // Less than 1 min
  2461. $sResult =Dict::S('UI:Deadline_LessThan1Min');
  2462. }
  2463. else if ($duration < 3600)
  2464. {
  2465. // less than 1 hour, display it in minutes
  2466. $sResult =Dict::Format('UI:Deadline_Minutes', $minutes);
  2467. }
  2468. else if ($duration < 86400)
  2469. {
  2470. // Less that 1 day, display it in hours/minutes
  2471. $sResult =Dict::Format('UI:Deadline_Hours_Minutes', $hours, $minutes);
  2472. }
  2473. else
  2474. {
  2475. // Less that 1 day, display it in hours/minutes
  2476. $sResult =Dict::Format('UI:Deadline_Days_Hours_Minutes', $days, $hours, $minutes);
  2477. }
  2478. return $sResult;
  2479. }
  2480. }
  2481. /**
  2482. * Map a foreign key to an attribute
  2483. * AttributeExternalKey and AttributeExternalField may be an external key
  2484. * the difference is that AttributeExternalKey corresponds to a column into the defined table
  2485. * where an AttributeExternalField corresponds to a column into another table (class)
  2486. *
  2487. * @package iTopORM
  2488. */
  2489. class AttributeExternalKey extends AttributeDBFieldVoid
  2490. {
  2491. static public function ListExpectedParams()
  2492. {
  2493. return array_merge(parent::ListExpectedParams(), array("targetclass", "is_null_allowed", "on_target_delete"));
  2494. }
  2495. public function GetEditClass() {return "ExtKey";}
  2496. protected function GetSQLCol() {return "INT(11)";}
  2497. public function RequiresIndex()
  2498. {
  2499. return true;
  2500. }
  2501. public function IsExternalKey($iType = EXTKEY_RELATIVE) {return true;}
  2502. public function GetTargetClass($iType = EXTKEY_RELATIVE) {return $this->Get("targetclass");}
  2503. public function GetKeyAttDef($iType = EXTKEY_RELATIVE){return $this;}
  2504. public function GetKeyAttCode() {return $this->GetCode();}
  2505. public function GetDisplayStyle() { return $this->GetOptional('display_style', 'select'); }
  2506. public function GetDefaultValue() {return 0;}
  2507. public function IsNullAllowed() {return $this->Get("is_null_allowed");}
  2508. public function GetBasicFilterOperators()
  2509. {
  2510. return parent::GetBasicFilterOperators();
  2511. }
  2512. public function GetBasicFilterLooseOperator()
  2513. {
  2514. return parent::GetBasicFilterLooseOperator();
  2515. }
  2516. public function GetBasicFilterSQLExpr($sOpCode, $value)
  2517. {
  2518. return parent::GetBasicFilterSQLExpr($sOpCode, $value);
  2519. }
  2520. // overloaded here so that an ext key always have the answer to
  2521. // "what are your possible values?"
  2522. public function GetValuesDef()
  2523. {
  2524. $oValSetDef = $this->Get("allowed_values");
  2525. if (!$oValSetDef)
  2526. {
  2527. // Let's propose every existing value
  2528. $oValSetDef = new ValueSetObjects('SELECT '.$this->GetTargetClass());
  2529. }
  2530. return $oValSetDef;
  2531. }
  2532. public function GetAllowedValues($aArgs = array(), $sContains = '')
  2533. {
  2534. //throw new Exception("GetAllowedValues on ext key has been deprecated");
  2535. try
  2536. {
  2537. return parent::GetAllowedValues($aArgs, $sContains);
  2538. }
  2539. catch (MissingQueryArgument $e)
  2540. {
  2541. // Some required arguments could not be found, enlarge to any existing value
  2542. $oValSetDef = new ValueSetObjects('SELECT '.$this->GetTargetClass());
  2543. return $oValSetDef->GetValues($aArgs, $sContains);
  2544. }
  2545. }
  2546. public function GetAllowedValuesAsObjectSet($aArgs = array(), $sContains = '')
  2547. {
  2548. $oValSetDef = $this->GetValuesDef();
  2549. $oSet = $oValSetDef->ToObjectSet($aArgs, $sContains);
  2550. return $oSet;
  2551. }
  2552. public function GetDeletionPropagationOption()
  2553. {
  2554. return $this->Get("on_target_delete");
  2555. }
  2556. public function GetNullValue()
  2557. {
  2558. return 0;
  2559. }
  2560. public function IsNull($proposedValue)
  2561. {
  2562. return ($proposedValue == 0);
  2563. }
  2564. public function MakeRealValue($proposedValue, $oHostObj)
  2565. {
  2566. if (is_null($proposedValue)) return 0;
  2567. if ($proposedValue === '') return 0;
  2568. if (MetaModel::IsValidObject($proposedValue)) return $proposedValue->GetKey();
  2569. return (int)$proposedValue;
  2570. }
  2571. public function GetMaximumComboLength()
  2572. {
  2573. return $this->GetOptional('max_combo_length', MetaModel::GetConfig()->Get('max_combo_length'));
  2574. }
  2575. public function GetMinAutoCompleteChars()
  2576. {
  2577. return $this->GetOptional('min_autocomplete_chars', MetaModel::GetConfig()->Get('min_autocomplete_chars'));
  2578. }
  2579. public function AllowTargetCreation()
  2580. {
  2581. return $this->GetOptional('allow_target_creation', MetaModel::GetConfig()->Get('allow_target_creation'));
  2582. }
  2583. }
  2584. /**
  2585. * Special kind of External Key to manage a hierarchy of objects
  2586. */
  2587. class AttributeHierarchicalKey extends AttributeExternalKey
  2588. {
  2589. protected $m_sTargetClass;
  2590. static public function ListExpectedParams()
  2591. {
  2592. $aParams = parent::ListExpectedParams();
  2593. $idx = array_search('targetclass', $aParams);
  2594. unset($aParams[$idx]);
  2595. $idx = array_search('jointype', $aParams);
  2596. unset($aParams[$idx]);
  2597. return $aParams; // TODO: mettre les bons parametres ici !!
  2598. }
  2599. public function GetEditClass() {return "ExtKey";}
  2600. public function RequiresIndex()
  2601. {
  2602. return true;
  2603. }
  2604. /*
  2605. * The target class is the class for which the attribute has been defined first
  2606. */
  2607. public function SetHostClass($sHostClass)
  2608. {
  2609. if (!isset($this->m_sTargetClass))
  2610. {
  2611. $this->m_sTargetClass = $sHostClass;
  2612. }
  2613. parent::SetHostClass($sHostClass);
  2614. }
  2615. public function IsHierarchicalKey() {return true;}
  2616. public function GetTargetClass($iType = EXTKEY_RELATIVE) {return $this->m_sTargetClass;}
  2617. public function GetKeyAttDef($iType = EXTKEY_RELATIVE){return $this;}
  2618. public function GetKeyAttCode() {return $this->GetCode();}
  2619. public function GetBasicFilterOperators()
  2620. {
  2621. return parent::GetBasicFilterOperators();
  2622. }
  2623. public function GetBasicFilterLooseOperator()
  2624. {
  2625. return parent::GetBasicFilterLooseOperator();
  2626. }
  2627. public function GetSQLColumns()
  2628. {
  2629. $aColumns = array();
  2630. $aColumns[$this->GetCode()] = 'INT(11)';
  2631. $aColumns[$this->GetSQLLeft()] = 'INT(11)';
  2632. $aColumns[$this->GetSQLRight()] = 'INT(11)';
  2633. return $aColumns;
  2634. }
  2635. public function GetSQLRight()
  2636. {
  2637. return $this->GetCode().'_right';
  2638. }
  2639. public function GetSQLLeft()
  2640. {
  2641. return $this->GetCode().'_left';
  2642. }
  2643. public function GetSQLValues($value)
  2644. {
  2645. if (!is_array($value))
  2646. {
  2647. $aValues[$this->GetCode()] = $value;
  2648. }
  2649. else
  2650. {
  2651. $aValues = array();
  2652. $aValues[$this->GetCode()] = $value[$this->GetCode()];
  2653. $aValues[$this->GetSQLRight()] = $value[$this->GetSQLRight()];
  2654. $aValues[$this->GetSQLLeft()] = $value[$this->GetSQLLeft()];
  2655. }
  2656. return $aValues;
  2657. }
  2658. public function GetAllowedValues($aArgs = array(), $sContains = '')
  2659. {
  2660. if (array_key_exists('this', $aArgs))
  2661. {
  2662. // Hierarchical keys have one more constraint: the "parent value" cannot be
  2663. // "under" themselves
  2664. $iRootId = $aArgs['this']->GetKey();
  2665. if ($iRootId > 0) // ignore objects that do no exist in the database...
  2666. {
  2667. $oValSetDef = $this->GetValuesDef();
  2668. $sClass = $this->m_sTargetClass;
  2669. $oFilter = DBObjectSearch::FromOQL("SELECT $sClass AS node JOIN $sClass AS root ON node.".$this->GetCode()." NOT BELOW root.id WHERE root.id = $iRootId");
  2670. $oValSetDef->AddCondition($oFilter);
  2671. }
  2672. }
  2673. else
  2674. {
  2675. return parent::GetAllowedValues($aArgs, $sContains);
  2676. }
  2677. }
  2678. public function GetAllowedValuesAsObjectSet($aArgs = array(), $sContains = '')
  2679. {
  2680. $oValSetDef = $this->GetValuesDef();
  2681. if (array_key_exists('this', $aArgs))
  2682. {
  2683. // Hierarchical keys have one more constraint: the "parent value" cannot be
  2684. // "under" themselves
  2685. $iRootId = $aArgs['this']->GetKey();
  2686. if ($iRootId > 0) // ignore objects that do no exist in the database...
  2687. {
  2688. $aValuesSetDef = $this->GetValuesDef();
  2689. $sClass = $this->m_sTargetClass;
  2690. $oFilter = DBObjectSearch::FromOQL("SELECT $sClass AS node JOIN $sClass AS root ON node.".$this->GetCode()." NOT BELOW root.id WHERE root.id = $iRootId");
  2691. $oValSetDef->AddCondition($oFilter);
  2692. }
  2693. }
  2694. $oSet = $oValSetDef->ToObjectSet($aArgs, $sContains);
  2695. return $oSet;
  2696. }
  2697. }
  2698. /**
  2699. * An attribute which corresponds to an external key (direct or indirect)
  2700. *
  2701. * @package iTopORM
  2702. */
  2703. class AttributeExternalField extends AttributeDefinition
  2704. {
  2705. static public function ListExpectedParams()
  2706. {
  2707. return array_merge(parent::ListExpectedParams(), array("extkey_attcode", "target_attcode"));
  2708. }
  2709. public function GetEditClass() {return "ExtField";}
  2710. public function GetFinalAttDef()
  2711. {
  2712. $oExtAttDef = $this->GetExtAttDef();
  2713. return $oExtAttDef->GetFinalAttDef();
  2714. }
  2715. protected function GetSQLCol()
  2716. {
  2717. // throw new CoreException("external attribute: does it make any sense to request its type ?");
  2718. $oExtAttDef = $this->GetExtAttDef();
  2719. return $oExtAttDef->GetSQLCol();
  2720. }
  2721. public function GetSQLExpressions($sPrefix = '')
  2722. {
  2723. if ($sPrefix == '')
  2724. {
  2725. return array('' => $this->GetCode());
  2726. }
  2727. else
  2728. {
  2729. return $sPrefix;
  2730. }
  2731. }
  2732. public function GetLabel($sDefault = null)
  2733. {
  2734. $sLabel = parent::GetLabel('');
  2735. if (strlen($sLabel) == 0)
  2736. {
  2737. $oRemoteAtt = $this->GetExtAttDef();
  2738. $sLabel = $oRemoteAtt->GetLabel($this->m_sCode);
  2739. }
  2740. return $sLabel;
  2741. }
  2742. public function GetDescription($sDefault = null)
  2743. {
  2744. $sLabel = parent::GetDescription('');
  2745. if (strlen($sLabel) == 0)
  2746. {
  2747. $oRemoteAtt = $this->GetExtAttDef();
  2748. $sLabel = $oRemoteAtt->GetDescription('');
  2749. }
  2750. return $sLabel;
  2751. }
  2752. public function GetHelpOnEdition($sDefault = null)
  2753. {
  2754. $sLabel = parent::GetHelpOnEdition('');
  2755. if (strlen($sLabel) == 0)
  2756. {
  2757. $oRemoteAtt = $this->GetExtAttDef();
  2758. $sLabel = $oRemoteAtt->GetHelpOnEdition('');
  2759. }
  2760. return $sLabel;
  2761. }
  2762. public function IsExternalKey($iType = EXTKEY_RELATIVE)
  2763. {
  2764. switch($iType)
  2765. {
  2766. case EXTKEY_ABSOLUTE:
  2767. // see further
  2768. $oRemoteAtt = $this->GetExtAttDef();
  2769. return $oRemoteAtt->IsExternalKey($iType);
  2770. case EXTKEY_RELATIVE:
  2771. return false;
  2772. default:
  2773. throw new CoreException("Unexpected value for argument iType: '$iType'");
  2774. }
  2775. }
  2776. public function GetTargetClass($iType = EXTKEY_RELATIVE)
  2777. {
  2778. return $this->GetKeyAttDef($iType)->GetTargetClass();
  2779. }
  2780. public function IsExternalField() {return true;}
  2781. public function GetKeyAttCode() {return $this->Get("extkey_attcode");}
  2782. public function GetExtAttCode() {return $this->Get("target_attcode");}
  2783. public function GetKeyAttDef($iType = EXTKEY_RELATIVE)
  2784. {
  2785. switch($iType)
  2786. {
  2787. case EXTKEY_ABSOLUTE:
  2788. // see further
  2789. $oRemoteAtt = $this->GetExtAttDef();
  2790. if ($oRemoteAtt->IsExternalField())
  2791. {
  2792. return $oRemoteAtt->GetKeyAttDef(EXTKEY_ABSOLUTE);
  2793. }
  2794. else if ($oRemoteAtt->IsExternalKey())
  2795. {
  2796. return $oRemoteAtt;
  2797. }
  2798. return $this->GetKeyAttDef(EXTKEY_RELATIVE); // which corresponds to the code hereafter !
  2799. case EXTKEY_RELATIVE:
  2800. return MetaModel::GetAttributeDef($this->GetHostClass(), $this->Get("extkey_attcode"));
  2801. default:
  2802. throw new CoreException("Unexpected value for argument iType: '$iType'");
  2803. }
  2804. }
  2805. public function GetExtAttDef()
  2806. {
  2807. $oKeyAttDef = $this->GetKeyAttDef();
  2808. $oExtAttDef = MetaModel::GetAttributeDef($oKeyAttDef->GetTargetClass(), $this->Get("target_attcode"));
  2809. if (!is_object($oExtAttDef)) throw new CoreException("Invalid external field ".$this->GetCode()." in class ".$this->GetHostClass().". The class ".$oKeyAttDef->GetTargetClass()." has no attribute ".$this->Get("target_attcode"));
  2810. return $oExtAttDef;
  2811. }
  2812. public function GetSQLExpr()
  2813. {
  2814. $oExtAttDef = $this->GetExtAttDef();
  2815. return $oExtAttDef->GetSQLExpr();
  2816. }
  2817. public function GetDefaultValue()
  2818. {
  2819. $oExtAttDef = $this->GetExtAttDef();
  2820. return $oExtAttDef->GetDefaultValue();
  2821. }
  2822. public function IsNullAllowed()
  2823. {
  2824. $oExtAttDef = $this->GetExtAttDef();
  2825. return $oExtAttDef->IsNullAllowed();
  2826. }
  2827. public function IsScalar()
  2828. {
  2829. $oExtAttDef = $this->GetExtAttDef();
  2830. return $oExtAttDef->IsScalar();
  2831. }
  2832. public function GetFilterDefinitions()
  2833. {
  2834. return array($this->GetCode() => new FilterFromAttribute($this));
  2835. }
  2836. public function GetBasicFilterOperators()
  2837. {
  2838. $oExtAttDef = $this->GetExtAttDef();
  2839. return $oExtAttDef->GetBasicFilterOperators();
  2840. }
  2841. public function GetBasicFilterLooseOperator()
  2842. {
  2843. $oExtAttDef = $this->GetExtAttDef();
  2844. return $oExtAttDef->GetBasicFilterLooseOperator();
  2845. }
  2846. public function GetBasicFilterSQLExpr($sOpCode, $value)
  2847. {
  2848. $oExtAttDef = $this->GetExtAttDef();
  2849. return $oExtAttDef->GetBasicFilterSQLExpr($sOpCode, $value);
  2850. }
  2851. public function GetNullValue()
  2852. {
  2853. $oExtAttDef = $this->GetExtAttDef();
  2854. return $oExtAttDef->GetNullValue();
  2855. }
  2856. public function IsNull($proposedValue)
  2857. {
  2858. $oExtAttDef = $this->GetExtAttDef();
  2859. return $oExtAttDef->IsNull($proposedValue);
  2860. }
  2861. public function MakeRealValue($proposedValue, $oHostObj)
  2862. {
  2863. $oExtAttDef = $this->GetExtAttDef();
  2864. return $oExtAttDef->MakeRealValue($proposedValue, $oHostObj);
  2865. }
  2866. public function ScalarToSQL($value)
  2867. {
  2868. // This one could be used in case of filtering only
  2869. $oExtAttDef = $this->GetExtAttDef();
  2870. return $oExtAttDef->ScalarToSQL($value);
  2871. }
  2872. // Do not overload GetSQLExpression here because this is handled in the joins
  2873. //public function GetSQLExpressions($sPrefix = '') {return array();}
  2874. // Here, we get the data...
  2875. public function FromSQLToValue($aCols, $sPrefix = '')
  2876. {
  2877. $oExtAttDef = $this->GetExtAttDef();
  2878. return $oExtAttDef->FromSQLToValue($aCols, $sPrefix);
  2879. }
  2880. public function GetAsHTML($value, $oHostObject = null, $bLocalize = true)
  2881. {
  2882. $oExtAttDef = $this->GetExtAttDef();
  2883. return $oExtAttDef->GetAsHTML($value, null, $bLocalize);
  2884. }
  2885. public function GetAsXML($value, $oHostObject = null, $bLocalize = true)
  2886. {
  2887. $oExtAttDef = $this->GetExtAttDef();
  2888. return $oExtAttDef->GetAsXML($value, null, $bLocalize);
  2889. }
  2890. public function GetAsCSV($value, $sSeparator = ',', $sTestQualifier = '"', $oHostObject = null, $bLocalize = true)
  2891. {
  2892. $oExtAttDef = $this->GetExtAttDef();
  2893. return $oExtAttDef->GetAsCSV($value, $sSeparator, $sTestQualifier, null, $bLocalize);
  2894. }
  2895. }
  2896. /**
  2897. * Map a varchar column to an URL (formats the ouput in HMTL)
  2898. *
  2899. * @package iTopORM
  2900. */
  2901. class AttributeURL extends AttributeString
  2902. {
  2903. static public function ListExpectedParams()
  2904. {
  2905. //return parent::ListExpectedParams();
  2906. return array_merge(parent::ListExpectedParams(), array("target"));
  2907. }
  2908. public function GetEditClass() {return "String";}
  2909. public function GetAsHTML($sValue, $oHostObject = null, $bLocalize = true)
  2910. {
  2911. $sTarget = $this->Get("target");
  2912. if (empty($sTarget)) $sTarget = "_blank";
  2913. $sLabel = Str::pure2html($sValue);
  2914. if (strlen($sLabel) > 40)
  2915. {
  2916. // Truncate the length to about 40 characters, by removing the middle
  2917. $sLabel = substr($sLabel, 0, 25).'...'.substr($sLabel, -15);
  2918. }
  2919. return "<a target=\"$sTarget\" href=\"$sValue\">$sLabel</a>";
  2920. }
  2921. public function GetValidationPattern()
  2922. {
  2923. return "^(http|https|ftp)\://[a-zA-Z0-9\-\.]+(:[a-zA-Z0-9]*)?/?([a-zA-Z0-9\-\._\?\,\'/\\\+&amp;%\$#\=~])*$";
  2924. }
  2925. }
  2926. /**
  2927. * A blob is an ormDocument, it is stored as several columns in the database
  2928. *
  2929. * @package iTopORM
  2930. */
  2931. class AttributeBlob extends AttributeDefinition
  2932. {
  2933. static public function ListExpectedParams()
  2934. {
  2935. return array_merge(parent::ListExpectedParams(), array("depends_on"));
  2936. }
  2937. public function GetEditClass() {return "Document";}
  2938. public function IsDirectField() {return true;}
  2939. public function IsScalar() {return true;}
  2940. public function IsWritable() {return true;}
  2941. public function GetDefaultValue() {return "";}
  2942. public function IsNullAllowed() {return $this->GetOptional("is_null_allowed", false);}
  2943. // Facilitate things: allow the user to Set the value from a string
  2944. public function MakeRealValue($proposedValue, $oHostObj)
  2945. {
  2946. if (!is_object($proposedValue))
  2947. {
  2948. return new ormDocument($proposedValue, 'text/plain');
  2949. }
  2950. return $proposedValue;
  2951. }
  2952. public function GetSQLExpressions($sPrefix = '')
  2953. {
  2954. if ($sPrefix == '')
  2955. {
  2956. $sPrefix = $this->GetCode();
  2957. }
  2958. $aColumns = array();
  2959. // Note: to optimize things, the existence of the attribute is determined by the existence of one column with an empty suffix
  2960. $aColumns[''] = $sPrefix.'_mimetype';
  2961. $aColumns['_data'] = $sPrefix.'_data';
  2962. $aColumns['_filename'] = $sPrefix.'_filename';
  2963. return $aColumns;
  2964. }
  2965. public function FromSQLToValue($aCols, $sPrefix = '')
  2966. {
  2967. if (!isset($aCols[$sPrefix]))
  2968. {
  2969. $sAvailable = implode(', ', array_keys($aCols));
  2970. throw new MissingColumnException("Missing column '$sPrefix' from {$sAvailable}");
  2971. }
  2972. $sMimeType = $aCols[$sPrefix];
  2973. if (!isset($aCols[$sPrefix.'_data']))
  2974. {
  2975. $sAvailable = implode(', ', array_keys($aCols));
  2976. throw new MissingColumnException("Missing column '".$sPrefix."_data' from {$sAvailable}");
  2977. }
  2978. $data = $aCols[$sPrefix.'_data'];
  2979. if (!isset($aCols[$sPrefix.'_filename']))
  2980. {
  2981. $sAvailable = implode(', ', array_keys($aCols));
  2982. throw new MissingColumnException("Missing column '".$sPrefix."_filename' from {$sAvailable}");
  2983. }
  2984. $sFileName = $aCols[$sPrefix.'_filename'];
  2985. $value = new ormDocument($data, $sMimeType, $sFileName);
  2986. return $value;
  2987. }
  2988. public function GetSQLValues($value)
  2989. {
  2990. // #@# Optimization: do not load blobs anytime
  2991. // As per mySQL doc, selecting blob columns will prevent mySQL from
  2992. // using memory in case a temporary table has to be created
  2993. // (temporary tables created on disk)
  2994. // We will have to remove the blobs from the list of attributes when doing the select
  2995. // then the use of Get() should finalize the load
  2996. if ($value instanceOf ormDocument)
  2997. {
  2998. $aValues = array();
  2999. $aValues[$this->GetCode().'_data'] = $value->GetData();
  3000. $aValues[$this->GetCode().'_mimetype'] = $value->GetMimeType();
  3001. $aValues[$this->GetCode().'_filename'] = $value->GetFileName();
  3002. }
  3003. else
  3004. {
  3005. $aValues = array();
  3006. $aValues[$this->GetCode().'_data'] = '';
  3007. $aValues[$this->GetCode().'_mimetype'] = '';
  3008. $aValues[$this->GetCode().'_filename'] = '';
  3009. }
  3010. return $aValues;
  3011. }
  3012. public function GetSQLColumns()
  3013. {
  3014. $aColumns = array();
  3015. $aColumns[$this->GetCode().'_data'] = 'LONGBLOB'; // 2^32 (4 Gb)
  3016. $aColumns[$this->GetCode().'_mimetype'] = 'VARCHAR(255)';
  3017. $aColumns[$this->GetCode().'_filename'] = 'VARCHAR(255)';
  3018. return $aColumns;
  3019. }
  3020. public function GetFilterDefinitions()
  3021. {
  3022. return array();
  3023. // still not working... see later...
  3024. return array(
  3025. $this->GetCode().'->filename' => new FilterFromAttribute($this, '_filename'),
  3026. $this->GetCode().'_mimetype' => new FilterFromAttribute($this, '_mimetype'),
  3027. $this->GetCode().'_mimetype' => new FilterFromAttribute($this, '_mimetype')
  3028. );
  3029. }
  3030. public function GetBasicFilterOperators()
  3031. {
  3032. return array();
  3033. }
  3034. public function GetBasicFilterLooseOperator()
  3035. {
  3036. return '=';
  3037. }
  3038. public function GetBasicFilterSQLExpr($sOpCode, $value)
  3039. {
  3040. return 'true';
  3041. }
  3042. public function GetAsHTML($value, $oHostObject = null, $bLocalize = true)
  3043. {
  3044. if (is_object($value))
  3045. {
  3046. return $value->GetAsHTML();
  3047. }
  3048. }
  3049. public function GetAsCSV($sValue, $sSeparator = ',', $sTextQualifier = '"', $oHostObject = null, $bLocalize = true)
  3050. {
  3051. return ''; // Not exportable in CSV !
  3052. }
  3053. public function GetAsXML($value, $oHostObject = null, $bLocalize = true)
  3054. {
  3055. return ''; // Not exportable in XML, or as CDATA + some subtags ??
  3056. }
  3057. }
  3058. /**
  3059. * A stop watch is an ormStopWatch object, it is stored as several columns in the database
  3060. *
  3061. * @package iTopORM
  3062. */
  3063. class AttributeStopWatch extends AttributeDefinition
  3064. {
  3065. static public function ListExpectedParams()
  3066. {
  3067. // The list of thresholds must be an array of iPercent => array of 'option' => value
  3068. return array_merge(parent::ListExpectedParams(), array("states", "goal_computing", "working_time_computing", "thresholds"));
  3069. }
  3070. public function GetEditClass() {return "StopWatch";}
  3071. public function IsDirectField() {return true;}
  3072. public function IsScalar() {return true;}
  3073. public function IsWritable() {return false;}
  3074. public function GetDefaultValue() {return $this->NewStopWatch();}
  3075. public function GetEditValue($value, $oHostObj = null)
  3076. {
  3077. return $value->GetTimeSpent();
  3078. }
  3079. public function GetStates()
  3080. {
  3081. return $this->Get('states');
  3082. }
  3083. /**
  3084. * Construct a brand new (but configured) stop watch
  3085. */
  3086. public function NewStopWatch()
  3087. {
  3088. $oSW = new ormStopWatch();
  3089. foreach ($this->ListThresholds() as $iThreshold => $aFoo)
  3090. {
  3091. $oSW->DefineThreshold($iThreshold);
  3092. }
  3093. return $oSW;
  3094. }
  3095. // Facilitate things: allow the user to Set the value from a string
  3096. public function MakeRealValue($proposedValue, $oHostObj)
  3097. {
  3098. if (!$proposedValue instanceof ormStopWatch)
  3099. {
  3100. return $this->NewStopWatch();
  3101. }
  3102. return $proposedValue;
  3103. }
  3104. public function GetSQLExpressions($sPrefix = '')
  3105. {
  3106. if ($sPrefix == '')
  3107. {
  3108. $sPrefix = $this->GetCode();
  3109. }
  3110. $aColumns = array();
  3111. // Note: to optimize things, the existence of the attribute is determined by the existence of one column with an empty suffix
  3112. $aColumns[''] = $sPrefix.'_timespent';
  3113. $aColumns['_started'] = $sPrefix.'_started';
  3114. $aColumns['_laststart'] = $sPrefix.'_laststart';
  3115. $aColumns['_stopped'] = $sPrefix.'_stopped';
  3116. foreach ($this->ListThresholds() as $iThreshold => $aFoo)
  3117. {
  3118. $sThPrefix = '_'.$iThreshold;
  3119. $aColumns[$sThPrefix.'_deadline'] = $sPrefix.$sThPrefix.'_deadline';
  3120. $aColumns[$sThPrefix.'_passed'] = $sPrefix.$sThPrefix.'_passed';
  3121. $aColumns[$sThPrefix.'_triggered'] = $sPrefix.$sThPrefix.'_triggered';
  3122. $aColumns[$sThPrefix.'_overrun'] = $sPrefix.$sThPrefix.'_overrun';
  3123. }
  3124. return $aColumns;
  3125. }
  3126. public static function DateToSeconds($sDate)
  3127. {
  3128. if (is_null($sDate))
  3129. {
  3130. return null;
  3131. }
  3132. $oDateTime = new DateTime($sDate);
  3133. $iSeconds = $oDateTime->format('U');
  3134. return $iSeconds;
  3135. }
  3136. public static function SecondsToDate($iSeconds)
  3137. {
  3138. if (is_null($iSeconds))
  3139. {
  3140. return null;
  3141. }
  3142. return date("Y-m-d H:i:s", $iSeconds);
  3143. }
  3144. public function FromSQLToValue($aCols, $sPrefix = '')
  3145. {
  3146. $aExpectedCols = array($sPrefix, $sPrefix.'_started', $sPrefix.'_laststart', $sPrefix.'_stopped');
  3147. foreach ($this->ListThresholds() as $iThreshold => $aFoo)
  3148. {
  3149. $sThPrefix = '_'.$iThreshold;
  3150. $aExpectedCols[] = $sPrefix.$sThPrefix.'_deadline';
  3151. $aExpectedCols[] = $sPrefix.$sThPrefix.'_passed';
  3152. $aExpectedCols[] = $sPrefix.$sThPrefix.'_triggered';
  3153. $aExpectedCols[] = $sPrefix.$sThPrefix.'_overrun';
  3154. }
  3155. foreach ($aExpectedCols as $sExpectedCol)
  3156. {
  3157. if (!array_key_exists($sExpectedCol, $aCols))
  3158. {
  3159. $sAvailable = implode(', ', array_keys($aCols));
  3160. throw new MissingColumnException("Missing column '$sExpectedCol' from {$sAvailable}");
  3161. }
  3162. }
  3163. $value = new ormStopWatch(
  3164. $aCols[$sPrefix],
  3165. self::DateToSeconds($aCols[$sPrefix.'_started']),
  3166. self::DateToSeconds($aCols[$sPrefix.'_laststart']),
  3167. self::DateToSeconds($aCols[$sPrefix.'_stopped'])
  3168. );
  3169. $aThresholds = array();
  3170. foreach ($this->ListThresholds() as $iThreshold => $aFoo)
  3171. {
  3172. $sThPrefix = '_'.$iThreshold;
  3173. $value->DefineThreshold(
  3174. $iThreshold,
  3175. self::DateToSeconds($aCols[$sPrefix.$sThPrefix.'_deadline']),
  3176. (bool)($aCols[$sPrefix.$sThPrefix.'_passed'] == 1),
  3177. (bool)($aCols[$sPrefix.$sThPrefix.'_triggered'] == 1),
  3178. $aCols[$sPrefix.$sThPrefix.'_overrun']
  3179. );
  3180. }
  3181. return $value;
  3182. }
  3183. public function GetSQLValues($value)
  3184. {
  3185. if ($value instanceOf ormStopWatch)
  3186. {
  3187. $aValues = array();
  3188. $aValues[$this->GetCode().'_timespent'] = $value->GetTimeSpent();
  3189. $aValues[$this->GetCode().'_started'] = self::SecondsToDate($value->GetStartDate());
  3190. $aValues[$this->GetCode().'_laststart'] = self::SecondsToDate($value->GetLastStartDate());
  3191. $aValues[$this->GetCode().'_stopped'] = self::SecondsToDate($value->GetStopDate());
  3192. foreach ($this->ListThresholds() as $iThreshold => $aFoo)
  3193. {
  3194. $sPrefix = $this->GetCode().'_'.$iThreshold;
  3195. $aValues[$sPrefix.'_deadline'] = self::SecondsToDate($value->GetThresholdDate($iThreshold));
  3196. $aValues[$sPrefix.'_passed'] = $value->IsThresholdPassed($iThreshold) ? '1' : '0';
  3197. $aValues[$sPrefix.'_triggered'] = $value->IsThresholdTriggered($iThreshold) ? '1' : '0';
  3198. $aValues[$sPrefix.'_overrun'] = $value->GetOverrun($iThreshold);
  3199. }
  3200. }
  3201. else
  3202. {
  3203. $aValues = array();
  3204. $aValues[$this->GetCode().'_timespent'] = '';
  3205. $aValues[$this->GetCode().'_started'] = '';
  3206. $aValues[$this->GetCode().'_laststart'] = '';
  3207. $aValues[$this->GetCode().'_stopped'] = '';
  3208. }
  3209. return $aValues;
  3210. }
  3211. public function GetSQLColumns()
  3212. {
  3213. $aColumns = array();
  3214. $aColumns[$this->GetCode().'_timespent'] = 'INT(11) UNSIGNED';
  3215. $aColumns[$this->GetCode().'_started'] = 'DATETIME';
  3216. $aColumns[$this->GetCode().'_laststart'] = 'DATETIME';
  3217. $aColumns[$this->GetCode().'_stopped'] = 'DATETIME';
  3218. foreach ($this->ListThresholds() as $iThreshold => $aFoo)
  3219. {
  3220. $sPrefix = $this->GetCode().'_'.$iThreshold;
  3221. $aColumns[$sPrefix.'_deadline'] = 'DATETIME';
  3222. $aColumns[$sPrefix.'_passed'] = 'TINYINT(1) UNSIGNED';
  3223. $aColumns[$sPrefix.'_triggered'] = 'TINYINT(1)';
  3224. $aColumns[$sPrefix.'_overrun'] = 'INT(11) UNSIGNED';
  3225. }
  3226. return $aColumns;
  3227. }
  3228. public function GetFilterDefinitions()
  3229. {
  3230. $aRes = array(
  3231. $this->GetCode() => new FilterFromAttribute($this),
  3232. $this->GetCode().'_started' => new FilterFromAttribute($this, '_started'),
  3233. $this->GetCode().'_laststart' => new FilterFromAttribute($this, '_laststart'),
  3234. $this->GetCode().'_stopped' => new FilterFromAttribute($this, '_stopped')
  3235. );
  3236. foreach ($this->ListThresholds() as $iThreshold => $aFoo)
  3237. {
  3238. $sPrefix = $this->GetCode().'_'.$iThreshold;
  3239. $aRes[$sPrefix.'_deadline'] = new FilterFromAttribute($this, '_deadline');
  3240. $aRes[$sPrefix.'_passed'] = new FilterFromAttribute($this, '_passed');
  3241. $aRes[$sPrefix.'_triggered'] = new FilterFromAttribute($this, '_triggered');
  3242. $aRes[$sPrefix.'_overrun'] = new FilterFromAttribute($this, '_overrun');
  3243. }
  3244. return $aRes;
  3245. }
  3246. public function GetBasicFilterOperators()
  3247. {
  3248. return array();
  3249. }
  3250. public function GetBasicFilterLooseOperator()
  3251. {
  3252. return '=';
  3253. }
  3254. public function GetBasicFilterSQLExpr($sOpCode, $value)
  3255. {
  3256. return 'true';
  3257. }
  3258. public function GetAsHTML($value, $oHostObject = null, $bLocalize = true)
  3259. {
  3260. if (is_object($value))
  3261. {
  3262. return $value->GetAsHTML($this, $oHostObject);
  3263. }
  3264. }
  3265. public function GetAsCSV($value, $sSeparator = ',', $sTextQualifier = '"', $oHostObject = null, $bLocalize = true)
  3266. {
  3267. return $value->GetTimeSpent();
  3268. }
  3269. public function GetAsXML($value, $oHostObject = null, $bLocalize = true)
  3270. {
  3271. return $value->GetTimeSpent();
  3272. }
  3273. public function ListThresholds()
  3274. {
  3275. return $this->Get('thresholds');
  3276. }
  3277. /**
  3278. * To expose internal values: Declare an attribute AttributeSubItem
  3279. * and implement the GetSubItemXXXX verbs
  3280. */
  3281. public function GetSubItemSQLExpression($sItemCode)
  3282. {
  3283. $sPrefix = $this->GetCode();
  3284. switch($sItemCode)
  3285. {
  3286. case 'timespent':
  3287. return array('' => $sPrefix.'_timespent');
  3288. case 'started':
  3289. return array('' => $sPrefix.'_started');
  3290. case 'laststart':
  3291. return array('' => $sPrefix.'_laststart');
  3292. case 'stopped':
  3293. return array('' => $sPrefix.'_stopped');
  3294. }
  3295. foreach ($this->ListThresholds() as $iThreshold => $aFoo)
  3296. {
  3297. $sThPrefix = $iThreshold.'_';
  3298. if (substr($sItemCode, 0, strlen($sThPrefix)) == $sThPrefix)
  3299. {
  3300. // The current threshold is concerned
  3301. $sThresholdCode = substr($sItemCode, strlen($sThPrefix));
  3302. switch($sThresholdCode)
  3303. {
  3304. case 'deadline':
  3305. return array('' => $sPrefix.'_'.$iThreshold.'_deadline');
  3306. case 'passed':
  3307. return array('' => $sPrefix.'_'.$iThreshold.'_passed');
  3308. case 'triggered':
  3309. return array('' => $sPrefix.'_'.$iThreshold.'_triggered');
  3310. case 'overrun':
  3311. return array('' => $sPrefix.'_'.$iThreshold.'_overrun');
  3312. }
  3313. }
  3314. }
  3315. throw new CoreException("Unknown item code '$sItemCode' for attribute ".$this->GetHostClass().'::'.$this->GetCode());
  3316. }
  3317. public function GetSubItemValue($sItemCode, $value, $oHostObject = null)
  3318. {
  3319. $oStopWatch = $value;
  3320. switch($sItemCode)
  3321. {
  3322. case 'timespent':
  3323. return $oStopWatch->GetTimeSpent();
  3324. case 'started':
  3325. return $oStopWatch->GetStartDate();
  3326. case 'laststart':
  3327. return $oStopWatch->GetLastStartDate();
  3328. case 'stopped':
  3329. return $oStopWatch->GetStopDate();
  3330. }
  3331. foreach ($this->ListThresholds() as $iThreshold => $aFoo)
  3332. {
  3333. $sThPrefix = $iThreshold.'_';
  3334. if (substr($sItemCode, 0, strlen($sThPrefix)) == $sThPrefix)
  3335. {
  3336. // The current threshold is concerned
  3337. $sThresholdCode = substr($sItemCode, strlen($sThPrefix));
  3338. switch($sThresholdCode)
  3339. {
  3340. case 'deadline':
  3341. return $oStopWatch->GetThresholdDate($iThreshold);
  3342. case 'passed':
  3343. return $oStopWatch->IsThresholdPassed($iThreshold);
  3344. case 'triggered':
  3345. return $oStopWatch->IsThresholdTriggered($iThreshold);
  3346. case 'overrun':
  3347. return $oStopWatch->GetOverrun($iThreshold);
  3348. }
  3349. }
  3350. }
  3351. throw new CoreException("Unknown item code '$sItemCode' for attribute ".$this->GetHostClass().'::'.$this->GetCode());
  3352. }
  3353. public function GetSubItemAsHTMLForHistory($sItemCode, $sOldValue, $sNewValue, $sLabel)
  3354. {
  3355. switch($sItemCode)
  3356. {
  3357. case 'timespent':
  3358. $sHtmlOld = (int)$sOldValue ? AttributeDuration::FormatDuration($sOldValue) : null;
  3359. $sHtmlNew = (int)$sNewValue ? AttributeDuration::FormatDuration($sNewValue) : null;
  3360. break;
  3361. case 'started':
  3362. case 'laststart':
  3363. case 'stopped':
  3364. $sHtmlOld = (int)$sOldValue ? date(self::GetDateFormat(), (int)$sOldValue) : null;
  3365. $sHtmlNew = (int)$sNewValue ? date(self::GetDateFormat(), (int)$sNewValue) : null;
  3366. break;
  3367. default:
  3368. foreach ($this->ListThresholds() as $iThreshold => $aFoo)
  3369. {
  3370. $sThPrefix = $iThreshold.'_';
  3371. if (substr($sItemCode, 0, strlen($sThPrefix)) == $sThPrefix)
  3372. {
  3373. // The current threshold is concerned
  3374. $sThresholdCode = substr($sItemCode, strlen($sThPrefix));
  3375. switch($sThresholdCode)
  3376. {
  3377. case 'deadline':
  3378. $sHtmlOld = (int)$sOldValue ? date(self::GetDateFormat(true /*full*/), (int)$sOldValue) : null;
  3379. $sHtmlNew = (int)$sNewValue ? date(self::GetDateFormat(true /*full*/), (int)$sNewValue) : null;
  3380. break;
  3381. case 'passed':
  3382. $sHtmlOld = (int)$sOldValue ? '1' : '0';
  3383. $sHtmlNew = (int)$sNewValue ? '1' : '0';
  3384. break;
  3385. case 'triggered':
  3386. $sHtmlOld = (int)$sOldValue ? '1' : '0';
  3387. $sHtmlNew = (int)$sNewValue ? '1' : '0';
  3388. break;
  3389. case 'overrun':
  3390. $sHtmlOld = (int)$sOldValue > 0 ? AttributeDuration::FormatDuration((int)$sOldValue) : '';
  3391. $sHtmlNew = (int)$sNewValue > 0 ? AttributeDuration::FormatDuration((int)$sNewValue) : '';
  3392. }
  3393. }
  3394. }
  3395. }
  3396. $sRes = parent::GetAsHTMLForHistory($sHtmlOld, $sHtmlNew, $sLabel);
  3397. return $sRes;
  3398. }
  3399. static protected function GetDateFormat($bFull = false)
  3400. {
  3401. if ($bFull)
  3402. {
  3403. return "Y-m-d H:i:s";
  3404. }
  3405. else
  3406. {
  3407. return "Y-m-d H:i";
  3408. }
  3409. }
  3410. public function GetSubItemAsHTML($sItemCode, $value)
  3411. {
  3412. $sHtml = $value;
  3413. switch($sItemCode)
  3414. {
  3415. case 'timespent':
  3416. $sHtml = Str::pure2html(AttributeDuration::FormatDuration($value));
  3417. break;
  3418. case 'started':
  3419. case 'laststart':
  3420. case 'stopped':
  3421. if (is_null($value))
  3422. {
  3423. $sHtml = ''; // Undefined
  3424. }
  3425. else
  3426. {
  3427. $sHtml = date(self::GetDateFormat(), $value);
  3428. }
  3429. break;
  3430. default:
  3431. foreach ($this->ListThresholds() as $iThreshold => $aFoo)
  3432. {
  3433. $sThPrefix = $iThreshold.'_';
  3434. if (substr($sItemCode, 0, strlen($sThPrefix)) == $sThPrefix)
  3435. {
  3436. // The current threshold is concerned
  3437. $sThresholdCode = substr($sItemCode, strlen($sThPrefix));
  3438. switch($sThresholdCode)
  3439. {
  3440. case 'deadline':
  3441. if ($value)
  3442. {
  3443. $sDate = date(self::GetDateFormat(true /*full*/), $value);
  3444. $sHtml = Str::pure2html(AttributeDeadline::FormatDeadline($sDate));
  3445. }
  3446. else
  3447. {
  3448. $sHtml = '';
  3449. }
  3450. break;
  3451. case 'passed':
  3452. $sHtml = $value ? '1' : '0';
  3453. break;
  3454. case 'triggered':
  3455. $sHtml = $value ? '1' : '0';
  3456. break;
  3457. case 'overrun':
  3458. $sHtml = Str::pure2html(AttributeDuration::FormatDuration($value));
  3459. break;
  3460. }
  3461. }
  3462. }
  3463. }
  3464. return $sHtml;
  3465. }
  3466. public function GetSubItemAsCSV($sItemCode, $value, $sSeparator = ',', $sTextQualifier = '"')
  3467. {
  3468. return $value;
  3469. }
  3470. public function GetSubItemAsXML($sItemCode, $value)
  3471. {
  3472. return Str::pure2xml((string)$value);
  3473. }
  3474. }
  3475. /**
  3476. * View of a subvalue of another attribute
  3477. * If an attribute implements the verbs GetSubItem.... then it can expose
  3478. * internal values, each of them being an attribute and therefore they
  3479. * can be displayed at different times in the object lifecycle, and used for
  3480. * reporting (as a condition in OQL, or as an additional column in an export)
  3481. * Known usages: Stop Watches can expose threshold statuses
  3482. */
  3483. class AttributeSubItem extends AttributeDefinition
  3484. {
  3485. static public function ListExpectedParams()
  3486. {
  3487. return array_merge(parent::ListExpectedParams(), array('target_attcode', 'item_code'));
  3488. }
  3489. public function GetParentAttCode() {return $this->Get("target_attcode");}
  3490. /**
  3491. * Helper : get the attribute definition to which the execution will be forwarded
  3492. */
  3493. protected function GetTargetAttDef()
  3494. {
  3495. $sClass = $this->GetHostClass();
  3496. $oParentAttDef = MetaModel::GetAttributeDef($sClass, $this->Get('target_attcode'));
  3497. return $oParentAttDef;
  3498. }
  3499. public function GetEditClass() {return "";}
  3500. public function GetValuesDef() {return null;}
  3501. //public function GetPrerequisiteAttributes() {return $this->Get("depends_on");}
  3502. public function IsDirectField() {return true;}
  3503. public function IsScalar() {return true;}
  3504. public function IsWritable() {return false;}
  3505. public function GetDefaultValue() {return null;}
  3506. // public function IsNullAllowed() {return false;}
  3507. public function LoadInObject() {return false;} // if this verb returns true, then GetValue must be implemented
  3508. //
  3509. // protected function ScalarToSQL($value) {return $value;} // format value as a valuable SQL literal (quoted outside)
  3510. public function FromSQLToValue($aCols, $sPrefix = '')
  3511. {
  3512. }
  3513. public function GetSQLColumns()
  3514. {
  3515. return array();
  3516. }
  3517. public function GetFilterDefinitions()
  3518. {
  3519. return array($this->GetCode() => new FilterFromAttribute($this));
  3520. }
  3521. public function GetBasicFilterOperators()
  3522. {
  3523. return array();
  3524. }
  3525. public function GetBasicFilterLooseOperator()
  3526. {
  3527. return "=";
  3528. }
  3529. public function GetBasicFilterSQLExpr($sOpCode, $value)
  3530. {
  3531. $sQValue = CMDBSource::Quote($value);
  3532. switch ($sOpCode)
  3533. {
  3534. case '!=':
  3535. return $this->GetSQLExpr()." != $sQValue";
  3536. break;
  3537. case '=':
  3538. default:
  3539. return $this->GetSQLExpr()." = $sQValue";
  3540. }
  3541. }
  3542. public function GetSQLExpressions($sPrefix = '')
  3543. {
  3544. $oParent = $this->GetTargetAttDef();
  3545. $res = $oParent->GetSubItemSQLExpression($this->Get('item_code'));
  3546. return $res;
  3547. }
  3548. /**
  3549. * Used by DBOBject::Get()
  3550. */
  3551. public function GetValue($parentValue, $oHostObject = null)
  3552. {
  3553. $oParent = $this->GetTargetAttDef();
  3554. $res = $oParent->GetSubItemValue($this->Get('item_code'), $parentValue, $oHostObject);
  3555. return $res;
  3556. }
  3557. public function GetAsHTML($value, $oHostObject = null, $bLocalize = true)
  3558. {
  3559. $oParent = $this->GetTargetAttDef();
  3560. $res = $oParent->GetSubItemAsHTML($this->Get('item_code'), $value);
  3561. return $res;
  3562. }
  3563. public function GetAsCSV($value, $sSeparator = ',', $sTextQualifier = '"', $oHostObject = null, $bLocalize = true)
  3564. {
  3565. $oParent = $this->GetTargetAttDef();
  3566. $res = $oParent->GetSubItemAsCSV($this->Get('item_code'), $value, $sSeparator = ',', $sTextQualifier = '"');
  3567. return $res;
  3568. }
  3569. public function GetAsXML($value, $oHostObject = null, $bLocalize = true)
  3570. {
  3571. $oParent = $this->GetTargetAttDef();
  3572. $res = $oParent->GetSubItemAsXML($this->Get('item_code'), $value);
  3573. return $res;
  3574. }
  3575. public function GetAsHTMLForHistory($sOldValue, $sNewValue, $sLabel = null)
  3576. {
  3577. $sLabel = $this->GetLabel();
  3578. $oParent = $this->GetTargetAttDef();
  3579. $sValue = $oParent->GetSubItemAsHTMLForHistory($this->Get('item_code'), $sOldValue, $sNewValue, $sLabel);
  3580. return $sValue;
  3581. }
  3582. }
  3583. /**
  3584. * One way encrypted (hashed) password
  3585. */
  3586. class AttributeOneWayPassword extends AttributeDefinition
  3587. {
  3588. static public function ListExpectedParams()
  3589. {
  3590. return array_merge(parent::ListExpectedParams(), array("depends_on"));
  3591. }
  3592. public function GetEditClass() {return "One Way Password";}
  3593. public function IsDirectField() {return true;}
  3594. public function IsScalar() {return true;}
  3595. public function IsWritable() {return true;}
  3596. public function GetDefaultValue() {return "";}
  3597. public function IsNullAllowed() {return $this->GetOptional("is_null_allowed", false);}
  3598. // Facilitate things: allow the user to Set the value from a string or from an ormPassword (already encrypted)
  3599. public function MakeRealValue($proposedValue, $oHostObj)
  3600. {
  3601. $oPassword = $proposedValue;
  3602. if (!is_object($oPassword))
  3603. {
  3604. $oPassword = new ormPassword('', '');
  3605. $oPassword->SetPassword($proposedValue);
  3606. }
  3607. return $oPassword;
  3608. }
  3609. public function GetSQLExpressions($sPrefix = '')
  3610. {
  3611. if ($sPrefix == '')
  3612. {
  3613. $sPrefix = $this->GetCode();
  3614. }
  3615. $aColumns = array();
  3616. // Note: to optimize things, the existence of the attribute is determined by the existence of one column with an empty suffix
  3617. $aColumns[''] = $sPrefix.'_hash';
  3618. $aColumns['_salt'] = $sPrefix.'_salt';
  3619. return $aColumns;
  3620. }
  3621. public function FromSQLToValue($aCols, $sPrefix = '')
  3622. {
  3623. if (!isset($aCols[$sPrefix]))
  3624. {
  3625. $sAvailable = implode(', ', array_keys($aCols));
  3626. throw new MissingColumnException("Missing column '$sPrefix' from {$sAvailable}");
  3627. }
  3628. $hashed = $aCols[$sPrefix];
  3629. if (!isset($aCols[$sPrefix.'_salt']))
  3630. {
  3631. $sAvailable = implode(', ', array_keys($aCols));
  3632. throw new MissingColumnException("Missing column '".$sPrefix."_salt' from {$sAvailable}");
  3633. }
  3634. $sSalt = $aCols[$sPrefix.'_salt'];
  3635. $value = new ormPassword($hashed, $sSalt);
  3636. return $value;
  3637. }
  3638. public function GetSQLValues($value)
  3639. {
  3640. // #@# Optimization: do not load blobs anytime
  3641. // As per mySQL doc, selecting blob columns will prevent mySQL from
  3642. // using memory in case a temporary table has to be created
  3643. // (temporary tables created on disk)
  3644. // We will have to remove the blobs from the list of attributes when doing the select
  3645. // then the use of Get() should finalize the load
  3646. if ($value instanceOf ormPassword)
  3647. {
  3648. $aValues = array();
  3649. $aValues[$this->GetCode().'_hash'] = $value->GetHash();
  3650. $aValues[$this->GetCode().'_salt'] = $value->GetSalt();
  3651. }
  3652. else
  3653. {
  3654. $aValues = array();
  3655. $aValues[$this->GetCode().'_hash'] = '';
  3656. $aValues[$this->GetCode().'_salt'] = '';
  3657. }
  3658. return $aValues;
  3659. }
  3660. public function GetSQLColumns()
  3661. {
  3662. $aColumns = array();
  3663. $aColumns[$this->GetCode().'_hash'] = 'TINYBLOB';
  3664. $aColumns[$this->GetCode().'_salt'] = 'TINYBLOB';
  3665. return $aColumns;
  3666. }
  3667. public function GetImportColumns()
  3668. {
  3669. $aColumns = array();
  3670. $aColumns[$this->GetCode()] = 'TINYTEXT';
  3671. return $aColumns;
  3672. }
  3673. public function FromImportToValue($aCols, $sPrefix = '')
  3674. {
  3675. if (!isset($aCols[$sPrefix]))
  3676. {
  3677. $sAvailable = implode(', ', array_keys($aCols));
  3678. throw new MissingColumnException("Missing column '$sPrefix' from {$sAvailable}");
  3679. }
  3680. $sClearPwd = $aCols[$sPrefix];
  3681. $oPassword = new ormPassword('', '');
  3682. $oPassword->SetPassword($sClearPwd);
  3683. return $oPassword;
  3684. }
  3685. public function GetFilterDefinitions()
  3686. {
  3687. return array();
  3688. // still not working... see later...
  3689. }
  3690. public function GetBasicFilterOperators()
  3691. {
  3692. return array();
  3693. }
  3694. public function GetBasicFilterLooseOperator()
  3695. {
  3696. return '=';
  3697. }
  3698. public function GetBasicFilterSQLExpr($sOpCode, $value)
  3699. {
  3700. return 'true';
  3701. }
  3702. public function GetAsHTML($value, $oHostObject = null, $bLocalize = true)
  3703. {
  3704. if (is_object($value))
  3705. {
  3706. return $value->GetAsHTML();
  3707. }
  3708. }
  3709. public function GetAsCSV($sValue, $sSeparator = ',', $sTextQualifier = '"', $oHostObject = null, $bLocalize = true)
  3710. {
  3711. return ''; // Not exportable in CSV
  3712. }
  3713. public function GetAsXML($value, $oHostObject = null, $bLocalize = true)
  3714. {
  3715. return ''; // Not exportable in XML
  3716. }
  3717. }
  3718. // Indexed array having two dimensions
  3719. class AttributeTable extends AttributeDBField
  3720. {
  3721. public function GetEditClass() {return "Table";}
  3722. protected function GetSQLCol() {return "LONGTEXT";}
  3723. public function GetMaxSize()
  3724. {
  3725. return null;
  3726. }
  3727. public function GetNullValue()
  3728. {
  3729. return array();
  3730. }
  3731. public function IsNull($proposedValue)
  3732. {
  3733. return (count($proposedValue) == 0);
  3734. }
  3735. // Facilitate things: allow the user to Set the value from a string
  3736. public function MakeRealValue($proposedValue, $oHostObj)
  3737. {
  3738. if (!is_array($proposedValue))
  3739. {
  3740. return array(0 => array(0 => $proposedValue));
  3741. }
  3742. return $proposedValue;
  3743. }
  3744. public function FromSQLToValue($aCols, $sPrefix = '')
  3745. {
  3746. try
  3747. {
  3748. $value = @unserialize($aCols[$sPrefix.'']);
  3749. if ($value === false)
  3750. {
  3751. $value = $this->MakeRealValue($aCols[$sPrefix.''], null);
  3752. }
  3753. }
  3754. catch(Exception $e)
  3755. {
  3756. $value = $this->MakeRealValue($aCols[$sPrefix.''], null);
  3757. }
  3758. return $value;
  3759. }
  3760. public function GetSQLValues($value)
  3761. {
  3762. $aValues = array();
  3763. $aValues[$this->Get("sql")] = serialize($value);
  3764. return $aValues;
  3765. }
  3766. public function GetAsHTML($value, $oHostObject = null, $bLocalize = true)
  3767. {
  3768. if (!is_array($value))
  3769. {
  3770. throw new CoreException('Expecting an array', array('found' => get_class($value)));
  3771. }
  3772. if (count($value) == 0)
  3773. {
  3774. return "";
  3775. }
  3776. $sRes = "<TABLE class=\"listResults\">";
  3777. $sRes .= "<TBODY>";
  3778. foreach($value as $iRow => $aRawData)
  3779. {
  3780. $sRes .= "<TR>";
  3781. foreach ($aRawData as $iCol => $cell)
  3782. {
  3783. $sCell = str_replace("\n", "<br>\n", Str::pure2html((string)$cell));
  3784. $sRes .= "<TD>$sCell</TD>";
  3785. }
  3786. $sRes .= "</TR>";
  3787. }
  3788. $sRes .= "</TBODY>";
  3789. $sRes .= "</TABLE>";
  3790. return $sRes;
  3791. }
  3792. public function GetAsCSV($sValue, $sSeparator = ',', $sTextQualifier = '"', $oHostObject = null, $bLocalize = true)
  3793. {
  3794. // Not implemented
  3795. return '';
  3796. }
  3797. public function GetAsXML($value, $oHostObject = null, $bLocalize = true)
  3798. {
  3799. if (count($value) == 0)
  3800. {
  3801. return "";
  3802. }
  3803. $sRes = "";
  3804. foreach($value as $iRow => $aRawData)
  3805. {
  3806. $sRes .= "<row>";
  3807. foreach ($aRawData as $iCol => $cell)
  3808. {
  3809. $sCell = Str::pure2xml((string)$cell);
  3810. $sRes .= "<cell icol=\"$iCol\">$sCell</cell>";
  3811. }
  3812. $sRes .= "</row>";
  3813. }
  3814. return $sRes;
  3815. }
  3816. }
  3817. // The PHP value is a hash array, it is stored as a TEXT column
  3818. class AttributePropertySet extends AttributeTable
  3819. {
  3820. public function GetEditClass() {return "PropertySet";}
  3821. // Facilitate things: allow the user to Set the value from a string
  3822. public function MakeRealValue($proposedValue, $oHostObj)
  3823. {
  3824. if (!is_array($proposedValue))
  3825. {
  3826. return array('?' => (string)$proposedValue);
  3827. }
  3828. return $proposedValue;
  3829. }
  3830. public function GetAsHTML($value, $oHostObject = null, $bLocalize = true)
  3831. {
  3832. if (!is_array($value))
  3833. {
  3834. throw new CoreException('Expecting an array', array('found' => get_class($value)));
  3835. }
  3836. if (count($value) == 0)
  3837. {
  3838. return "";
  3839. }
  3840. $sRes = "<TABLE class=\"listResults\">";
  3841. $sRes .= "<TBODY>";
  3842. foreach($value as $sProperty => $sValue)
  3843. {
  3844. if ($sProperty == 'auth_pwd')
  3845. {
  3846. $sValue = '*****';
  3847. }
  3848. $sRes .= "<TR>";
  3849. $sCell = str_replace("\n", "<br>\n", Str::pure2html((string)$sValue));
  3850. $sRes .= "<TD class=\"label\">$sProperty</TD><TD>$sCell</TD>";
  3851. $sRes .= "</TR>";
  3852. }
  3853. $sRes .= "</TBODY>";
  3854. $sRes .= "</TABLE>";
  3855. return $sRes;
  3856. }
  3857. public function GetAsCSV($value, $sSeparator = ',', $sTextQualifier = '"', $oHostObject = null, $bLocalize = true)
  3858. {
  3859. if (count($value) == 0)
  3860. {
  3861. return "";
  3862. }
  3863. $aRes = array();
  3864. foreach($value as $sProperty => $sValue)
  3865. {
  3866. if ($sProperty == 'auth_pwd')
  3867. {
  3868. $sValue = '*****';
  3869. }
  3870. $sFrom = array(',', '=');
  3871. $sTo = array('\,', '\=');
  3872. $aRes[] = $sProperty.'='.str_replace($sFrom, $sTo, (string)$sValue);
  3873. }
  3874. $sRaw = implode(',', $aRes);
  3875. $sFrom = array("\r\n", $sTextQualifier);
  3876. $sTo = array("\n", $sTextQualifier.$sTextQualifier);
  3877. $sEscaped = str_replace($sFrom, $sTo, $sRaw);
  3878. return $sTextQualifier.$sEscaped.$sTextQualifier;
  3879. }
  3880. public function GetAsXML($value, $oHostObject = null, $bLocalize = true)
  3881. {
  3882. if (count($value) == 0)
  3883. {
  3884. return "";
  3885. }
  3886. $sRes = "";
  3887. foreach($value as $sProperty => $sValue)
  3888. {
  3889. if ($sProperty == 'auth_pwd')
  3890. {
  3891. $sValue = '*****';
  3892. }
  3893. $sRes .= "<property id=\"$sProperty\">";
  3894. $sRes .= Str::pure2xml((string)$sValue);
  3895. $sRes .= "</property>";
  3896. }
  3897. return $sRes;
  3898. }
  3899. }
  3900. /**
  3901. * The attribute dedicated to the friendly name automatic attribute (not written)
  3902. *
  3903. * @package iTopORM
  3904. */
  3905. class AttributeComputedFieldVoid extends AttributeDefinition
  3906. {
  3907. static public function ListExpectedParams()
  3908. {
  3909. return array_merge(parent::ListExpectedParams(), array());
  3910. }
  3911. public function GetEditClass() {return "";}
  3912. public function GetValuesDef() {return null;}
  3913. public function GetPrerequisiteAttributes() {return $this->Get("depends_on");}
  3914. public function IsDirectField() {return true;}
  3915. public function IsScalar() {return true;}
  3916. public function IsWritable() {return false;}
  3917. public function GetSQLExpr() {return null;}
  3918. public function GetDefaultValue() {return $this->MakeRealValue("", null);}
  3919. public function IsNullAllowed() {return false;}
  3920. //
  3921. // protected function ScalarToSQL($value) {return $value;} // format value as a valuable SQL literal (quoted outside)
  3922. public function GetSQLExpressions($sPrefix = '')
  3923. {
  3924. if ($sPrefix == '')
  3925. {
  3926. $sPrefix = $this->GetCode();
  3927. }
  3928. return array('' => $sPrefix);
  3929. }
  3930. public function FromSQLToValue($aCols, $sPrefix = '')
  3931. {
  3932. return null;
  3933. }
  3934. public function GetSQLValues($value)
  3935. {
  3936. return array();
  3937. }
  3938. public function GetSQLColumns()
  3939. {
  3940. return array();
  3941. }
  3942. public function GetFilterDefinitions()
  3943. {
  3944. return array($this->GetCode() => new FilterFromAttribute($this));
  3945. }
  3946. public function GetBasicFilterOperators()
  3947. {
  3948. return array();
  3949. }
  3950. public function GetBasicFilterLooseOperator()
  3951. {
  3952. return "=";
  3953. }
  3954. public function GetBasicFilterSQLExpr($sOpCode, $value)
  3955. {
  3956. $sQValue = CMDBSource::Quote($value);
  3957. switch ($sOpCode)
  3958. {
  3959. case '!=':
  3960. return $this->GetSQLExpr()." != $sQValue";
  3961. break;
  3962. case '=':
  3963. default:
  3964. return $this->GetSQLExpr()." = $sQValue";
  3965. }
  3966. }
  3967. }
  3968. /**
  3969. * The attribute dedicated to the friendly name automatic attribute (not written)
  3970. *
  3971. * @package iTopORM
  3972. */
  3973. class AttributeFriendlyName extends AttributeComputedFieldVoid
  3974. {
  3975. public function __construct($sCode, $sExtKeyAttCode)
  3976. {
  3977. $this->m_sCode = $sCode;
  3978. $aParams = array();
  3979. // $aParams["is_null_allowed"] = false,
  3980. $aParams["default_value"] = '';
  3981. $aParams["extkey_attcode"] = $sExtKeyAttCode;
  3982. parent::__construct($sCode, $aParams);
  3983. $this->m_sValue = $this->Get("default_value");
  3984. }
  3985. public function GetKeyAttCode() {return $this->Get("extkey_attcode");}
  3986. public function GetExtAttCode() {return 'friendlyname';}
  3987. public function GetLabel($sDefault = null)
  3988. {
  3989. $sLabel = parent::GetLabel('');
  3990. if (strlen($sLabel) == 0)
  3991. {
  3992. $sKeyAttCode = $this->Get("extkey_attcode");
  3993. if ($sKeyAttCode == 'id')
  3994. {
  3995. return Dict::S('Core:FriendlyName-Label');
  3996. }
  3997. else
  3998. {
  3999. $oExtKeyAttDef = MetaModel::GetAttributeDef($this->GetHostClass(), $sKeyAttCode);
  4000. $sLabel = $oExtKeyAttDef->GetLabel($this->m_sCode);
  4001. }
  4002. }
  4003. return $sLabel;
  4004. }
  4005. public function GetDescription($sDefault = null)
  4006. {
  4007. $sLabel = parent::GetDescription('');
  4008. if (strlen($sLabel) == 0)
  4009. {
  4010. $sKeyAttCode = $this->Get("extkey_attcode");
  4011. if ($sKeyAttCode == 'id')
  4012. {
  4013. return Dict::S('Core:FriendlyName-Description');
  4014. }
  4015. else
  4016. {
  4017. $oExtKeyAttDef = MetaModel::GetAttributeDef($this->GetHostClass(), $sKeyAttCode);
  4018. $sLabel = $oExtKeyAttDef->GetDescription('');
  4019. }
  4020. }
  4021. return $sLabel;
  4022. }
  4023. // n/a, the friendly name is made of a complex expression (see GetNameSpec)
  4024. protected function GetSQLCol() {return "";}
  4025. public function FromSQLToValue($aCols, $sPrefix = '')
  4026. {
  4027. $sValue = $aCols[$sPrefix];
  4028. return $sValue;
  4029. }
  4030. /**
  4031. * Encrypt the value before storing it in the database
  4032. */
  4033. public function GetSQLValues($value)
  4034. {
  4035. return array();
  4036. }
  4037. public function IsWritable()
  4038. {
  4039. return false;
  4040. }
  4041. public function IsDirectField()
  4042. {
  4043. return false;
  4044. }
  4045. public function SetFixedValue($sValue)
  4046. {
  4047. $this->m_sValue = $sValue;
  4048. }
  4049. public function GetDefaultValue()
  4050. {
  4051. return $this->m_sValue;
  4052. }
  4053. public function GetAsHTML($sValue, $oHostObject = null, $bLocalize = true)
  4054. {
  4055. return Str::pure2html((string)$sValue);
  4056. }
  4057. // Do not display friendly names in the history of change
  4058. public function GetAsHTMLForHistory($sOldValue, $sNewValue, $sLabel = null)
  4059. {
  4060. return '';
  4061. }
  4062. public function GetBasicFilterLooseOperator()
  4063. {
  4064. return "Contains";
  4065. }
  4066. public function GetBasicFilterSQLExpr($sOpCode, $value)
  4067. {
  4068. $sQValue = CMDBSource::Quote($value);
  4069. switch ($sOpCode)
  4070. {
  4071. case '=':
  4072. case '!=':
  4073. return $this->GetSQLExpr()." $sOpCode $sQValue";
  4074. case 'Contains':
  4075. return $this->GetSQLExpr()." LIKE ".CMDBSource::Quote("%$value%");
  4076. case 'NotLike':
  4077. return $this->GetSQLExpr()." NOT LIKE $sQValue";
  4078. case 'Like':
  4079. default:
  4080. return $this->GetSQLExpr()." LIKE $sQValue";
  4081. }
  4082. }
  4083. }
  4084. ?>