attributedef.class.inc.php 91 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339
  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('ormpassword.class.inc.php');
  27. require_once('ormcaselog.class.inc.php');
  28. /**
  29. * MissingColumnException - sent if an attribute is being created but the column is missing in the row
  30. *
  31. * @package iTopORM
  32. */
  33. class MissingColumnException extends Exception
  34. {}
  35. /**
  36. * add some description here...
  37. *
  38. * @package iTopORM
  39. */
  40. define('EXTKEY_RELATIVE', 1);
  41. /**
  42. * add some description here...
  43. *
  44. * @package iTopORM
  45. */
  46. define('EXTKEY_ABSOLUTE', 2);
  47. /**
  48. * Propagation of the deletion through an external key - ask the user to delete the referencing object
  49. *
  50. * @package iTopORM
  51. */
  52. define('DEL_MANUAL', 1);
  53. /**
  54. * Propagation of the deletion through an external key - ask the user to delete the referencing object
  55. *
  56. * @package iTopORM
  57. */
  58. define('DEL_AUTO', 2);
  59. define('DEL_SILENT', 2);
  60. /**
  61. * Attribute definition API, implemented in and many flavours (Int, String, Enum, etc.)
  62. *
  63. * @package iTopORM
  64. */
  65. abstract class AttributeDefinition
  66. {
  67. public function GetType()
  68. {
  69. return Dict::S('Core:'.get_class($this));
  70. }
  71. public function GetTypeDesc()
  72. {
  73. return Dict::S('Core:'.get_class($this).'+');
  74. }
  75. abstract public function GetEditClass();
  76. protected $m_sCode;
  77. private $m_aParams = array();
  78. protected $m_sHostClass = '!undefined!';
  79. protected function Get($sParamName) {return $this->m_aParams[$sParamName];}
  80. protected function IsParam($sParamName) {return (array_key_exists($sParamName, $this->m_aParams));}
  81. protected function GetOptional($sParamName, $default)
  82. {
  83. if (array_key_exists($sParamName, $this->m_aParams))
  84. {
  85. return $this->m_aParams[$sParamName];
  86. }
  87. else
  88. {
  89. return $default;
  90. }
  91. }
  92. public function __construct($sCode, $aParams)
  93. {
  94. $this->m_sCode = $sCode;
  95. $this->m_aParams = $aParams;
  96. $this->ConsistencyCheck();
  97. }
  98. public function OverloadParams($aParams)
  99. {
  100. foreach ($aParams as $sParam => $value)
  101. {
  102. if (!array_key_exists($sParam, $this->m_aParams))
  103. {
  104. throw new CoreException("Unknown attribute definition parameter '$sParam', please select a value in {".implode(", ", array_keys($this->m_aParams))."}");
  105. }
  106. else
  107. {
  108. $this->m_aParams[$sParam] = $value;
  109. }
  110. }
  111. }
  112. public function SetHostClass($sHostClass)
  113. {
  114. $this->m_sHostClass = $sHostClass;
  115. }
  116. public function GetHostClass()
  117. {
  118. return $this->m_sHostClass;
  119. }
  120. // Note: I could factorize this code with the parameter management made for the AttributeDef class
  121. // to be overloaded
  122. static protected function ListExpectedParams()
  123. {
  124. return array();
  125. }
  126. private function ConsistencyCheck()
  127. {
  128. // Check that any mandatory param has been specified
  129. //
  130. $aExpectedParams = $this->ListExpectedParams();
  131. foreach($aExpectedParams as $sParamName)
  132. {
  133. if (!array_key_exists($sParamName, $this->m_aParams))
  134. {
  135. $aBacktrace = debug_backtrace();
  136. $sTargetClass = $aBacktrace[2]["class"];
  137. $sCodeInfo = $aBacktrace[1]["file"]." - ".$aBacktrace[1]["line"];
  138. throw new Exception("ERROR missing parameter '$sParamName' in ".get_class($this)." declaration for class $sTargetClass ($sCodeInfo)");
  139. }
  140. }
  141. }
  142. // table, key field, name field
  143. public function ListDBJoins()
  144. {
  145. return "";
  146. // e.g: return array("Site", "infrid", "name");
  147. }
  148. public function IsDirectField() {return false;}
  149. public function IsScalar() {return false;}
  150. public function IsLinkSet() {return false;}
  151. public function IsExternalKey($iType = EXTKEY_RELATIVE) {return false;}
  152. public function IsHierarchicalKey() {return false;}
  153. public function IsExternalField() {return false;}
  154. public function IsWritable() {return false;}
  155. public function IsNullAllowed() {return true;}
  156. public function GetCode() {return $this->m_sCode;}
  157. public function GetLabel() {return Dict::S('Class:'.$this->m_sHostClass.'/Attribute:'.$this->m_sCode, $this->m_sCode);}
  158. public function GetLabel_Obsolete()
  159. {
  160. // Written for compatibility with a data model written prior to version 0.9.1
  161. if (array_key_exists('label', $this->m_aParams))
  162. {
  163. return $this->m_aParams['label'];
  164. }
  165. else
  166. {
  167. return $this->GetLabel();
  168. }
  169. }
  170. public function GetDescription() {return Dict::S('Class:'.$this->m_sHostClass.'/Attribute:'.$this->m_sCode.'+', '');}
  171. public function GetHelpOnEdition() {return Dict::S('Class:'.$this->m_sHostClass.'/Attribute:'.$this->m_sCode.'?', '');}
  172. public function GetHelpOnSmartSearch()
  173. {
  174. $aParents = array_merge(array(get_class($this) => get_class($this)), class_parents($this));
  175. foreach ($aParents as $sClass)
  176. {
  177. $sHelp = Dict::S("Core:$sClass?SmartSearch", '-missing-');
  178. if ($sHelp != '-missing-')
  179. {
  180. return $sHelp;
  181. }
  182. }
  183. return '';
  184. }
  185. public function GetDescription_Obsolete()
  186. {
  187. // Written for compatibility with a data model written prior to version 0.9.1
  188. if (array_key_exists('description', $this->m_aParams))
  189. {
  190. return $this->m_aParams['description'];
  191. }
  192. else
  193. {
  194. return $this->GetDescription();
  195. }
  196. }
  197. public function GetValuesDef() {return null;}
  198. public function GetPrerequisiteAttributes() {return array();}
  199. public function GetNullValue() {return null;}
  200. public function IsNull($proposedValue) {return is_null($proposedValue);}
  201. public function MakeRealValue($proposedValue, $oHostObj) {return $proposedValue;} // force an allowed value (type conversion and possibly forces a value as mySQL would do upon writing!)
  202. public function Equals($val1, $val2) {return ($val1 == $val2);}
  203. public function GetSQLExpressions($sPrefix = '') {return array();} // returns suffix/expression pairs (1 in most of the cases), for READING (Select)
  204. public function FromSQLToValue($aCols, $sPrefix = '') {return null;} // returns a value out of suffix/value pairs, for SELECT result interpretation
  205. public function GetSQLColumns() {return array();} // returns column/spec pairs (1 in most of the cases), for STRUCTURING (DB creation)
  206. public function GetSQLValues($value) {return array();} // returns column/value pairs (1 in most of the cases), for WRITING (Insert, Update)
  207. public function RequiresIndex() {return false;}
  208. // Import - differs slightly from SQL input, but identical in most cases
  209. //
  210. public function GetImportColumns() {return $this->GetSQLColumns();}
  211. public function FromImportToValue($aCols, $sPrefix = '')
  212. {
  213. $aValues = array();
  214. foreach ($this->GetSQLExpressions($sPrefix) as $sAlias => $sExpr)
  215. {
  216. // This is working, based on the assumption that importable fields
  217. // are not computed fields => the expression is the name of a column
  218. $aValues[$sPrefix.$sAlias] = $aCols[$sExpr];
  219. }
  220. return $this->FromSQLToValue($aValues, $sPrefix);
  221. }
  222. public function GetValidationPattern()
  223. {
  224. return '';
  225. }
  226. public function CheckFormat($value)
  227. {
  228. return true;
  229. }
  230. public function GetMaxSize()
  231. {
  232. return null;
  233. }
  234. public function MakeValue()
  235. {
  236. $sComputeFunc = $this->Get("compute_func");
  237. if (empty($sComputeFunc)) return null;
  238. return call_user_func($sComputeFunc);
  239. }
  240. abstract public function GetDefaultValue();
  241. //
  242. // To be overloaded in subclasses
  243. //
  244. abstract public function GetBasicFilterOperators(); // returns an array of "opCode"=>"description"
  245. abstract public function GetBasicFilterLooseOperator(); // returns an "opCode"
  246. //abstract protected GetBasicFilterHTMLInput();
  247. abstract public function GetBasicFilterSQLExpr($sOpCode, $value);
  248. public function GetFilterDefinitions()
  249. {
  250. return array();
  251. }
  252. public function GetEditValue($sValue)
  253. {
  254. return (string)$sValue;
  255. }
  256. public function GetAsHTML($sValue, $oHostObject = null)
  257. {
  258. return Str::pure2html((string)$sValue);
  259. }
  260. public function GetAsXML($sValue, $oHostObject = null)
  261. {
  262. return Str::pure2xml((string)$sValue);
  263. }
  264. public function GetAsCSV($sValue, $sSeparator = ',', $sTextQualifier = '"', $oHostObject = null)
  265. {
  266. return (string)$sValue;
  267. }
  268. public function GetAllowedValues($aArgs = array(), $sContains = '')
  269. {
  270. $oValSetDef = $this->GetValuesDef();
  271. if (!$oValSetDef) return null;
  272. return $oValSetDef->GetValues($aArgs, $sContains);
  273. }
  274. /**
  275. * Parses a string to find some smart search patterns and build the corresponding search/OQL condition
  276. * Each derived class is reponsible for defining and processing their own smart patterns, the base class
  277. * does nothing special, and just calls the default (loose) operator
  278. * @param string $sSearchText The search string to analyze for smart patterns
  279. * @param FieldExpression The FieldExpression representing the atttribute code in this OQL query
  280. * @param Hash $aParams Values of the query parameters
  281. * @return Expression The search condition to be added (AND) to the current search
  282. */
  283. public function GetSmartConditionExpression($sSearchText, FieldExpression $oField, &$aParams)
  284. {
  285. $sParamName = $oField->GetParent().'_'.$oField->GetName();
  286. $oRightExpr = new VariableExpression($sParamName);
  287. $sOperator = $this->GetBasicFilterLooseOperator();
  288. switch ($sOperator)
  289. {
  290. case 'Contains':
  291. $aParams[$sParamName] = "%$sSearchText%";
  292. $sSQLOperator = 'LIKE';
  293. break;
  294. default:
  295. $sSQLOperator = $sOperator;
  296. $aParams[$sParamName] = $sSearchText;
  297. }
  298. $oNewCondition = new BinaryExpression($oField, $sSQLOperator, $oRightExpr);
  299. return $oNewCondition;
  300. }
  301. }
  302. /**
  303. * Set of objects directly linked to an object, and being part of its definition
  304. *
  305. * @package iTopORM
  306. */
  307. class AttributeLinkedSet extends AttributeDefinition
  308. {
  309. static protected function ListExpectedParams()
  310. {
  311. return array_merge(parent::ListExpectedParams(), array("allowed_values", "depends_on", "linked_class", "ext_key_to_me", "count_min", "count_max"));
  312. }
  313. public function GetEditClass() {return "List";}
  314. public function IsWritable() {return true;}
  315. public function IsLinkSet() {return true;}
  316. public function IsIndirect() {return false;}
  317. public function GetValuesDef() {return $this->Get("allowed_values");}
  318. public function GetPrerequisiteAttributes() {return $this->Get("depends_on");}
  319. public function GetDefaultValue($aArgs = array())
  320. {
  321. // Note: so far, this feature is a prototype,
  322. // later, the argument 'this' should always be present in the arguments
  323. //
  324. if (($this->IsParam('default_value')) && array_key_exists('this', $aArgs))
  325. {
  326. $aValues = $this->Get('default_value')->GetValues($aArgs);
  327. $oSet = DBObjectSet::FromArray($this->Get('linked_class'), $aValues);
  328. return $oSet;
  329. }
  330. else
  331. {
  332. return DBObjectSet::FromScratch($this->Get('linked_class'));
  333. }
  334. }
  335. public function GetLinkedClass() {return $this->Get('linked_class');}
  336. public function GetExtKeyToMe() {return $this->Get('ext_key_to_me');}
  337. public function GetBasicFilterOperators() {return array();}
  338. public function GetBasicFilterLooseOperator() {return '';}
  339. public function GetBasicFilterSQLExpr($sOpCode, $value) {return '';}
  340. public function GetAsHTML($sValue, $oHostObject = null)
  341. {
  342. if (is_object($sValue) && ($sValue instanceof DBObjectSet))
  343. {
  344. $sValue->Rewind();
  345. $aItems = array();
  346. while ($oObj = $sValue->Fetch())
  347. {
  348. // Show only relevant information (hide the external key to the current object)
  349. $aAttributes = array();
  350. foreach(MetaModel::ListAttributeDefs($this->GetLinkedClass()) as $sAttCode => $oAttDef)
  351. {
  352. if ($sAttCode == $this->GetExtKeyToMe()) continue;
  353. if ($oAttDef->IsExternalField()) continue;
  354. $sAttValue = $oObj->GetAsHTML($sAttCode);
  355. if (strlen($sAttValue) > 0)
  356. {
  357. $aAttributes[] = $sAttValue;
  358. }
  359. }
  360. $sAttributes = implode(', ', $aAttributes);
  361. $aItems[] = $sAttributes;
  362. }
  363. return implode('<br/>', $aItems);
  364. }
  365. return null;
  366. }
  367. public function GetAsXML($sValue, $oHostObject = null)
  368. {
  369. return "Sorry, no yet implemented";
  370. }
  371. public function GetAsCSV($sValue, $sSeparator = ',', $sTextQualifier = '"', $oHostObject = null)
  372. {
  373. $sSepItem = MetaModel::GetConfig()->Get('link_set_item_separator');
  374. $sSepAttribute = MetaModel::GetConfig()->Get('link_set_attribute_separator');
  375. $sSepValue = MetaModel::GetConfig()->Get('link_set_value_separator');
  376. $sAttributeQualifier = MetaModel::GetConfig()->Get('link_set_attribute_qualifier');
  377. if (is_object($sValue) && ($sValue instanceof DBObjectSet))
  378. {
  379. $sValue->Rewind();
  380. $aItems = array();
  381. while ($oObj = $sValue->Fetch())
  382. {
  383. $sObjClass = get_class($oObj);
  384. // Show only relevant information (hide the external key to the current object)
  385. $aAttributes = array();
  386. foreach(MetaModel::ListAttributeDefs($sObjClass) as $sAttCode => $oAttDef)
  387. {
  388. if ($sAttCode == 'finalclass')
  389. {
  390. if ($sObjClass == $this->GetLinkedClass())
  391. {
  392. // Simplify the output if the exact class could be determined implicitely
  393. continue;
  394. }
  395. }
  396. if ($sAttCode == $this->GetExtKeyToMe()) continue;
  397. if ($oAttDef->IsExternalField()) continue;
  398. if (!$oAttDef->IsDirectField()) continue;
  399. if (!$oAttDef->IsScalar()) continue;
  400. $sAttValue = $oObj->GetAsCSV($sAttCode, $sSepValue, '');
  401. if (strlen($sAttValue) > 0)
  402. {
  403. $sAttributeData = str_replace($sAttributeQualifier, $sAttributeQualifier.$sAttributeQualifier, $sAttCode.$sSepValue.$sAttValue);
  404. $aAttributes[] = $sAttributeQualifier.$sAttributeData.$sAttributeQualifier;
  405. }
  406. }
  407. $sAttributes = implode($sSepAttribute, $aAttributes);
  408. $aItems[] = $sAttributes;
  409. }
  410. $sRes = implode($sSepItem, $aItems);
  411. }
  412. else
  413. {
  414. $sRes = '';
  415. }
  416. $sRes = str_replace($sTextQualifier, $sTextQualifier.$sTextQualifier, $sRes);
  417. $sRes = $sTextQualifier.$sRes.$sTextQualifier;
  418. return $sRes;
  419. }
  420. public function DuplicatesAllowed() {return false;} // No duplicates for 1:n links, never
  421. public function GetImportColumns()
  422. {
  423. $aColumns = array();
  424. $aColumns[$this->GetCode()] = 'TEXT';
  425. return $aColumns;
  426. }
  427. // Specific to this kind of attribute : transform a string into a value
  428. public function MakeValueFromString($sProposedValue, $sSepItem = null, $sSepAttribute = null, $sSepValue = null, $sAttributeQualifier = null)
  429. {
  430. if (is_null($sSepItem) || empty($sSepItem))
  431. {
  432. $sSepItem = MetaModel::GetConfig()->Get('link_set_item_separator');
  433. }
  434. if (is_null($sSepAttribute) || empty($sSepAttribute))
  435. {
  436. $sSepAttribute = MetaModel::GetConfig()->Get('link_set_attribute_separator');
  437. }
  438. if (is_null($sSepValue) || empty($sSepValue))
  439. {
  440. $sSepValue = MetaModel::GetConfig()->Get('link_set_value_separator');
  441. }
  442. if (is_null($sAttributeQualifier) || empty($sAttributeQualifier))
  443. {
  444. $sAttributeQualifier = MetaModel::GetConfig()->Get('link_set_attribute_qualifier');
  445. }
  446. $sTargetClass = $this->Get('linked_class');
  447. $sInput = str_replace($sSepItem, "\n", $sProposedValue);
  448. $oCSVParser = new CSVParser($sInput, $sSepAttribute, $sAttributeQualifier);
  449. $aInput = $oCSVParser->ToArray(0 /* do not skip lines */);
  450. $aLinks = array();
  451. foreach($aInput as $aRow)
  452. {
  453. // 1st - get the values, split the extkey->searchkey specs, and eventually get the finalclass value
  454. $aExtKeys = array();
  455. $aValues = array();
  456. foreach($aRow as $sCell)
  457. {
  458. $iSepPos = strpos($sCell, $sSepValue);
  459. if ($iSepPos === false)
  460. {
  461. // Houston...
  462. throw new CoreException('Wrong format for link attribute specification', array('value' => $sCell));
  463. }
  464. $sAttCode = trim(substr($sCell, 0, $iSepPos));
  465. $sValue = substr($sCell, $iSepPos + strlen($sSepValue));
  466. if (preg_match('/^(.+)->(.+)$/', $sAttCode, $aMatches))
  467. {
  468. $sKeyAttCode = $aMatches[1];
  469. $sRemoteAttCode = $aMatches[2];
  470. $aExtKeys[$sKeyAttCode][$sRemoteAttCode] = $sValue;
  471. if (!MetaModel::IsValidAttCode($sTargetClass, $sKeyAttCode))
  472. {
  473. throw new CoreException('Wrong attribute code for link attribute specification', array('class' => $sTargetClass, 'attcode' => $sKeyAttCode));
  474. }
  475. $oKeyAttDef = MetaModel::GetAttributeDef($sTargetClass, $sKeyAttCode);
  476. $sRemoteClass = $oKeyAttDef->GetTargetClass();
  477. if (!MetaModel::IsValidAttCode($sRemoteClass, $sRemoteAttCode))
  478. {
  479. throw new CoreException('Wrong attribute code for link attribute specification', array('class' => $sRemoteClass, 'attcode' => $sRemoteAttCode));
  480. }
  481. }
  482. else
  483. {
  484. if(!MetaModel::IsValidAttCode($sTargetClass, $sAttCode))
  485. {
  486. throw new CoreException('Wrong attribute code for link attribute specification', array('class' => $sTargetClass, 'attcode' => $sAttCode));
  487. }
  488. $aValues[$sAttCode] = $sValue;
  489. }
  490. }
  491. // 2nd - Instanciate the object and set the value
  492. if (isset($aValues['finalclass']))
  493. {
  494. $sLinkClass = $aValues['finalclass'];
  495. if (!is_subclass_of($sLinkClass, $sTargetClass))
  496. {
  497. throw new CoreException('Wrong class for link attribute specification', array('requested_class' => $sLinkClass, 'expected_class' => $sTargetClass));
  498. }
  499. }
  500. elseif (MetaModel::IsAbstract($sTargetClass))
  501. {
  502. throw new CoreException('Missing finalclass for link attribute specification');
  503. }
  504. else
  505. {
  506. $sLinkClass = $sTargetClass;
  507. }
  508. $oLink = MetaModel::NewObject($sLinkClass);
  509. foreach ($aValues as $sAttCode => $sValue)
  510. {
  511. $oLink->Set($sAttCode, $sValue);
  512. }
  513. // 3rd - Set external keys from search conditions
  514. foreach ($aExtKeys as $sKeyAttCode => $aReconciliation)
  515. {
  516. $oKeyAttDef = MetaModel::GetAttributeDef($sTargetClass, $sKeyAttCode);
  517. $sKeyClass = $oKeyAttDef->GetTargetClass();
  518. $oExtKeyFilter = new CMDBSearchFilter($sKeyClass);
  519. $aReconciliationDesc = array();
  520. foreach($aReconciliation as $sRemoteAttCode => $sValue)
  521. {
  522. $oExtKeyFilter->AddCondition($sRemoteAttCode, $sValue, '=');
  523. $aReconciliationDesc[] = "$sRemoteAttCode=$sValue";
  524. }
  525. $oExtKeySet = new CMDBObjectSet($oExtKeyFilter);
  526. switch($oExtKeySet->Count())
  527. {
  528. case 0:
  529. $sReconciliationDesc = implode(', ', $aReconciliationDesc);
  530. throw new CoreException("Found no match", array('ext_key' => $sKeyAttCode, 'reconciliation' => $sReconciliationDesc));
  531. break;
  532. case 1:
  533. $oRemoteObj = $oExtKeySet->Fetch();
  534. $oLink->Set($sKeyAttCode, $oRemoteObj->GetKey());
  535. break;
  536. default:
  537. $sReconciliationDesc = implode(', ', $aReconciliationDesc);
  538. throw new CoreException("Found several matches", array('ext_key' => $sKeyAttCode, 'reconciliation' => $sReconciliationDesc));
  539. // Found several matches, ambiguous
  540. }
  541. }
  542. $aLinks[] = $oLink;
  543. }
  544. $oSet = DBObjectSet::FromArray($sTargetClass, $aLinks);
  545. return $oSet;
  546. }
  547. public function Equals($val1, $val2)
  548. {
  549. if ($val1 === $val2) return true;
  550. if (is_object($val1) != is_object($val2))
  551. {
  552. return false;
  553. }
  554. if (!is_object($val1))
  555. {
  556. // string ?
  557. // todo = implement this case ?
  558. return false;
  559. }
  560. // Both values are Object sets
  561. return $val1->HasSameContents($val2);
  562. }
  563. }
  564. /**
  565. * Set of objects linked to an object (n-n), and being part of its definition
  566. *
  567. * @package iTopORM
  568. */
  569. class AttributeLinkedSetIndirect extends AttributeLinkedSet
  570. {
  571. static protected function ListExpectedParams()
  572. {
  573. return array_merge(parent::ListExpectedParams(), array("ext_key_to_remote"));
  574. }
  575. public function IsIndirect() {return true;}
  576. public function GetExtKeyToRemote() { return $this->Get('ext_key_to_remote'); }
  577. public function GetEditClass() {return "LinkedSet";}
  578. public function DuplicatesAllowed() {return $this->GetOptional("duplicates", false);} // The same object may be linked several times... or not...
  579. }
  580. /**
  581. * Abstract class implementing default filters for a DB column
  582. *
  583. * @package iTopORM
  584. */
  585. class AttributeDBFieldVoid extends AttributeDefinition
  586. {
  587. static protected function ListExpectedParams()
  588. {
  589. return array_merge(parent::ListExpectedParams(), array("allowed_values", "depends_on", "sql"));
  590. }
  591. // To be overriden, used in GetSQLColumns
  592. protected function GetSQLCol() {return "VARCHAR(255)";}
  593. public function GetEditClass() {return "String";}
  594. public function GetValuesDef() {return $this->Get("allowed_values");}
  595. public function GetPrerequisiteAttributes() {return $this->Get("depends_on");}
  596. public function IsDirectField() {return true;}
  597. public function IsScalar() {return true;}
  598. public function IsWritable() {return true;}
  599. public function GetSQLExpr() {return $this->Get("sql");}
  600. public function GetDefaultValue() {return $this->MakeRealValue("", null);}
  601. public function IsNullAllowed() {return false;}
  602. //
  603. protected function ScalarToSQL($value) {return $value;} // format value as a valuable SQL literal (quoted outside)
  604. public function GetSQLExpressions($sPrefix = '')
  605. {
  606. $aColumns = array();
  607. // Note: to optimize things, the existence of the attribute is determined by the existence of one column with an empty suffix
  608. $aColumns[''] = $this->Get("sql");
  609. return $aColumns;
  610. }
  611. public function FromSQLToValue($aCols, $sPrefix = '')
  612. {
  613. $value = $this->MakeRealValue($aCols[$sPrefix.''], null);
  614. return $value;
  615. }
  616. public function GetSQLValues($value)
  617. {
  618. $aValues = array();
  619. $aValues[$this->Get("sql")] = $this->ScalarToSQL($value);
  620. return $aValues;
  621. }
  622. public function GetSQLColumns()
  623. {
  624. $aColumns = array();
  625. $aColumns[$this->Get("sql")] = $this->GetSQLCol();
  626. return $aColumns;
  627. }
  628. public function GetFilterDefinitions()
  629. {
  630. return array($this->GetCode() => new FilterFromAttribute($this));
  631. }
  632. public function GetBasicFilterOperators()
  633. {
  634. return array("="=>"equals", "!="=>"differs from");
  635. }
  636. public function GetBasicFilterLooseOperator()
  637. {
  638. return "=";
  639. }
  640. public function GetBasicFilterSQLExpr($sOpCode, $value)
  641. {
  642. $sQValue = CMDBSource::Quote($value);
  643. switch ($sOpCode)
  644. {
  645. case '!=':
  646. return $this->GetSQLExpr()." != $sQValue";
  647. break;
  648. case '=':
  649. default:
  650. return $this->GetSQLExpr()." = $sQValue";
  651. }
  652. }
  653. }
  654. /**
  655. * Base class for all kind of DB attributes, with the exception of external keys
  656. *
  657. * @package iTopORM
  658. */
  659. class AttributeDBField extends AttributeDBFieldVoid
  660. {
  661. static protected function ListExpectedParams()
  662. {
  663. return array_merge(parent::ListExpectedParams(), array("default_value", "is_null_allowed"));
  664. }
  665. public function GetDefaultValue() {return $this->MakeRealValue($this->Get("default_value"), null);}
  666. public function IsNullAllowed() {return $this->Get("is_null_allowed");}
  667. }
  668. /**
  669. * Map an integer column to an attribute
  670. *
  671. * @package iTopORM
  672. */
  673. class AttributeInteger extends AttributeDBField
  674. {
  675. static protected function ListExpectedParams()
  676. {
  677. return parent::ListExpectedParams();
  678. //return array_merge(parent::ListExpectedParams(), array());
  679. }
  680. public function GetEditClass() {return "String";}
  681. protected function GetSQLCol() {return "INT(11)";}
  682. public function GetValidationPattern()
  683. {
  684. return "^[0-9]+$";
  685. }
  686. public function GetBasicFilterOperators()
  687. {
  688. return array(
  689. "!="=>"differs from",
  690. "="=>"equals",
  691. ">"=>"greater (strict) than",
  692. ">="=>"greater than",
  693. "<"=>"less (strict) than",
  694. "<="=>"less than",
  695. "in"=>"in"
  696. );
  697. }
  698. public function GetBasicFilterLooseOperator()
  699. {
  700. // Unless we implement an "equals approximately..." or "same order of magnitude"
  701. return "=";
  702. }
  703. public function GetBasicFilterSQLExpr($sOpCode, $value)
  704. {
  705. $sQValue = CMDBSource::Quote($value);
  706. switch ($sOpCode)
  707. {
  708. case '!=':
  709. return $this->GetSQLExpr()." != $sQValue";
  710. break;
  711. case '>':
  712. return $this->GetSQLExpr()." > $sQValue";
  713. break;
  714. case '>=':
  715. return $this->GetSQLExpr()." >= $sQValue";
  716. break;
  717. case '<':
  718. return $this->GetSQLExpr()." < $sQValue";
  719. break;
  720. case '<=':
  721. return $this->GetSQLExpr()." <= $sQValue";
  722. break;
  723. case 'in':
  724. if (!is_array($value)) throw new CoreException("Expected an array for argument value (sOpCode='$sOpCode')");
  725. return $this->GetSQLExpr()." IN ('".implode("', '", $value)."')";
  726. break;
  727. case '=':
  728. default:
  729. return $this->GetSQLExpr()." = \"$value\"";
  730. }
  731. }
  732. public function GetNullValue()
  733. {
  734. return null;
  735. }
  736. public function IsNull($proposedValue)
  737. {
  738. return is_null($proposedValue);
  739. }
  740. public function MakeRealValue($proposedValue, $oHostObj)
  741. {
  742. if (is_null($proposedValue)) return null;
  743. if ($proposedValue === '') return null; // 0 is transformed into '' !
  744. return (int)$proposedValue;
  745. }
  746. public function ScalarToSQL($value)
  747. {
  748. assert(is_numeric($value) || is_null($value));
  749. return $value; // supposed to be an int
  750. }
  751. }
  752. /**
  753. * Map a decimal value column (suitable for financial computations) to an attribute
  754. * internally in PHP such numbers are represented as string. Should you want to perform
  755. * a calculation on them, it is recommended to use the BC Math functions in order to
  756. * retain the precision
  757. *
  758. * @package iTopORM
  759. */
  760. class AttributeDecimal extends AttributeDBField
  761. {
  762. static protected function ListExpectedParams()
  763. {
  764. return array_merge(parent::ListExpectedParams(), array('digits', 'decimals' /* including precision */));
  765. }
  766. public function GetEditClass() {return "String";}
  767. protected function GetSQLCol() {return "DECIMAL(".$this->Get('digits').",".$this->Get('decimals').")";}
  768. public function GetValidationPattern()
  769. {
  770. $iNbDigits = $this->Get('digits');
  771. $iPrecision = $this->Get('decimals');
  772. $iNbIntegerDigits = $iNbDigits - $iPrecision - 1; // -1 because the first digit is treated separately in the pattern below
  773. return "^[-+]?[0-9]\d{0,$iNbIntegerDigits}(\.\d{0,$iPrecision})?$";
  774. }
  775. public function GetBasicFilterOperators()
  776. {
  777. return array(
  778. "!="=>"differs from",
  779. "="=>"equals",
  780. ">"=>"greater (strict) than",
  781. ">="=>"greater than",
  782. "<"=>"less (strict) than",
  783. "<="=>"less than",
  784. "in"=>"in"
  785. );
  786. }
  787. public function GetBasicFilterLooseOperator()
  788. {
  789. // Unless we implement an "equals approximately..." or "same order of magnitude"
  790. return "=";
  791. }
  792. public function GetBasicFilterSQLExpr($sOpCode, $value)
  793. {
  794. $sQValue = CMDBSource::Quote($value);
  795. switch ($sOpCode)
  796. {
  797. case '!=':
  798. return $this->GetSQLExpr()." != $sQValue";
  799. break;
  800. case '>':
  801. return $this->GetSQLExpr()." > $sQValue";
  802. break;
  803. case '>=':
  804. return $this->GetSQLExpr()." >= $sQValue";
  805. break;
  806. case '<':
  807. return $this->GetSQLExpr()." < $sQValue";
  808. break;
  809. case '<=':
  810. return $this->GetSQLExpr()." <= $sQValue";
  811. break;
  812. case 'in':
  813. if (!is_array($value)) throw new CoreException("Expected an array for argument value (sOpCode='$sOpCode')");
  814. return $this->GetSQLExpr()." IN ('".implode("', '", $value)."')";
  815. break;
  816. case '=':
  817. default:
  818. return $this->GetSQLExpr()." = \"$value\"";
  819. }
  820. }
  821. public function GetNullValue()
  822. {
  823. return null;
  824. }
  825. public function IsNull($proposedValue)
  826. {
  827. return is_null($proposedValue);
  828. }
  829. public function MakeRealValue($proposedValue, $oHostObj)
  830. {
  831. if (is_null($proposedValue)) return null;
  832. if ($proposedValue == '') return null;
  833. return (string)$proposedValue;
  834. }
  835. public function ScalarToSQL($value)
  836. {
  837. assert(is_null($value) || preg_match('/'.$this->GetValidationPattern().'/', $value));
  838. return (string)$value; // treated as a string
  839. }
  840. }
  841. /**
  842. * Map a boolean column to an attribute
  843. *
  844. * @package iTopORM
  845. */
  846. class AttributeBoolean extends AttributeInteger
  847. {
  848. static protected function ListExpectedParams()
  849. {
  850. return parent::ListExpectedParams();
  851. //return array_merge(parent::ListExpectedParams(), array());
  852. }
  853. public function GetEditClass() {return "Integer";}
  854. protected function GetSQLCol() {return "TINYINT(1)";}
  855. public function MakeRealValue($proposedValue, $oHostObj)
  856. {
  857. if (is_null($proposedValue)) return null;
  858. if ($proposedValue === '') return null;
  859. if ((int)$proposedValue) return true;
  860. return false;
  861. }
  862. public function ScalarToSQL($value)
  863. {
  864. if ($value) return 1;
  865. return 0;
  866. }
  867. }
  868. /**
  869. * Map a varchar column (size < ?) to an attribute
  870. *
  871. * @package iTopORM
  872. */
  873. class AttributeString extends AttributeDBField
  874. {
  875. static protected function ListExpectedParams()
  876. {
  877. return parent::ListExpectedParams();
  878. //return array_merge(parent::ListExpectedParams(), array());
  879. }
  880. public function GetEditClass() {return "String";}
  881. protected function GetSQLCol() {return "VARCHAR(255)";}
  882. public function GetValidationPattern()
  883. {
  884. $sPattern = $this->GetOptional('validation_pattern', '');
  885. if (empty($sPattern))
  886. {
  887. return parent::GetValidationPattern();
  888. }
  889. else
  890. {
  891. return $sPattern;
  892. }
  893. }
  894. public function CheckFormat($value)
  895. {
  896. $sRegExp = $this->GetValidationPattern();
  897. if (empty($sRegExp))
  898. {
  899. return true;
  900. }
  901. else
  902. {
  903. $sRegExp = str_replace('/', '\\/', $sRegExp);
  904. return preg_match("/$sRegExp/", $value);
  905. }
  906. }
  907. public function GetMaxSize()
  908. {
  909. return 255;
  910. }
  911. public function GetBasicFilterOperators()
  912. {
  913. return array(
  914. "="=>"equals",
  915. "!="=>"differs from",
  916. "Like"=>"equals (no case)",
  917. "NotLike"=>"differs from (no case)",
  918. "Contains"=>"contains",
  919. "Begins with"=>"begins with",
  920. "Finishes with"=>"finishes with"
  921. );
  922. }
  923. public function GetBasicFilterLooseOperator()
  924. {
  925. return "Contains";
  926. }
  927. public function GetBasicFilterSQLExpr($sOpCode, $value)
  928. {
  929. $sQValue = CMDBSource::Quote($value);
  930. switch ($sOpCode)
  931. {
  932. case '=':
  933. case '!=':
  934. return $this->GetSQLExpr()." $sOpCode $sQValue";
  935. case 'Begins with':
  936. return $this->GetSQLExpr()." LIKE ".CMDBSource::Quote("$value%");
  937. case 'Finishes with':
  938. return $this->GetSQLExpr()." LIKE ".CMDBSource::Quote("%$value");
  939. case 'Contains':
  940. return $this->GetSQLExpr()." LIKE ".CMDBSource::Quote("%$value%");
  941. case 'NotLike':
  942. return $this->GetSQLExpr()." NOT LIKE $sQValue";
  943. case 'Like':
  944. default:
  945. return $this->GetSQLExpr()." LIKE $sQValue";
  946. }
  947. }
  948. public function GetNullValue()
  949. {
  950. return '';
  951. }
  952. public function IsNull($proposedValue)
  953. {
  954. return ($proposedValue == '');
  955. }
  956. public function MakeRealValue($proposedValue, $oHostObj)
  957. {
  958. if (is_null($proposedValue)) return '';
  959. return (string)$proposedValue;
  960. }
  961. public function ScalarToSQL($value)
  962. {
  963. if (!is_string($value) && !is_null($value))
  964. {
  965. throw new CoreWarning('Expected the attribute value to be a string', array('found_type' => gettype($value), 'value' => $value, 'class' => $this->GetCode(), 'attribute' => $this->GetHostClass()));
  966. }
  967. return $value;
  968. }
  969. public function GetAsCSV($sValue, $sSeparator = ',', $sTextQualifier = '"', $oHostObject = null)
  970. {
  971. $sFrom = array("\r\n", $sTextQualifier);
  972. $sTo = array("\n", $sTextQualifier.$sTextQualifier);
  973. $sEscaped = str_replace($sFrom, $sTo, (string)$sValue);
  974. return $sTextQualifier.$sEscaped.$sTextQualifier;
  975. }
  976. }
  977. /**
  978. * An attibute that matches an object class
  979. *
  980. * @package iTopORM
  981. */
  982. class AttributeClass extends AttributeString
  983. {
  984. static protected function ListExpectedParams()
  985. {
  986. return array_merge(parent::ListExpectedParams(), array("class_category", "more_values"));
  987. }
  988. public function __construct($sCode, $aParams)
  989. {
  990. $this->m_sCode = $sCode;
  991. $aParams["allowed_values"] = new ValueSetEnumClasses($aParams['class_category'], $aParams['more_values']);
  992. parent::__construct($sCode, $aParams);
  993. }
  994. public function GetDefaultValue()
  995. {
  996. $sDefault = parent::GetDefaultValue();
  997. if (!$this->IsNullAllowed() && $this->IsNull($sDefault))
  998. {
  999. // For this kind of attribute specifying null as default value
  1000. // is authorized even if null is not allowed
  1001. // Pick the first one...
  1002. $aClasses = $this->GetAllowedValues();
  1003. $sDefault = key($aClasses);
  1004. }
  1005. return $sDefault;
  1006. }
  1007. public function GetAsHTML($sValue, $oHostObject = null)
  1008. {
  1009. if (empty($sValue)) return '';
  1010. return MetaModel::GetName($sValue);
  1011. }
  1012. public function RequiresIndex()
  1013. {
  1014. return true;
  1015. }
  1016. public function GetBasicFilterLooseOperator()
  1017. {
  1018. return '=';
  1019. }
  1020. }
  1021. /**
  1022. * An attibute that matches one of the language codes availables in the dictionnary
  1023. *
  1024. * @package iTopORM
  1025. */
  1026. class AttributeApplicationLanguage extends AttributeString
  1027. {
  1028. static protected function ListExpectedParams()
  1029. {
  1030. return parent::ListExpectedParams();
  1031. }
  1032. public function __construct($sCode, $aParams)
  1033. {
  1034. $this->m_sCode = $sCode;
  1035. $aAvailableLanguages = Dict::GetLanguages();
  1036. $aLanguageCodes = array();
  1037. foreach($aAvailableLanguages as $sLangCode => $aInfo)
  1038. {
  1039. $aLanguageCodes[$sLangCode] = $aInfo['description'].' ('.$aInfo['localized_description'].')';
  1040. }
  1041. $aParams["allowed_values"] = new ValueSetEnum($aLanguageCodes);
  1042. parent::__construct($sCode, $aParams);
  1043. }
  1044. public function RequiresIndex()
  1045. {
  1046. return true;
  1047. }
  1048. public function GetBasicFilterLooseOperator()
  1049. {
  1050. return '=';
  1051. }
  1052. }
  1053. /**
  1054. * The attribute dedicated to the finalclass automatic attribute
  1055. *
  1056. * @package iTopORM
  1057. */
  1058. class AttributeFinalClass extends AttributeString
  1059. {
  1060. public function __construct($sCode, $aParams)
  1061. {
  1062. $this->m_sCode = $sCode;
  1063. $aParams["allowed_values"] = null;
  1064. parent::__construct($sCode, $aParams);
  1065. $this->m_sValue = $this->Get("default_value");
  1066. }
  1067. public function IsWritable()
  1068. {
  1069. return false;
  1070. }
  1071. public function RequiresIndex()
  1072. {
  1073. return true;
  1074. }
  1075. public function SetFixedValue($sValue)
  1076. {
  1077. $this->m_sValue = $sValue;
  1078. }
  1079. public function GetDefaultValue()
  1080. {
  1081. return $this->m_sValue;
  1082. }
  1083. public function GetAsHTML($sValue, $oHostObject = null)
  1084. {
  1085. if (empty($sValue)) return '';
  1086. return MetaModel::GetName($sValue);
  1087. }
  1088. public function GetBasicFilterLooseOperator()
  1089. {
  1090. return '=';
  1091. }
  1092. }
  1093. /**
  1094. * Map a varchar column (size < ?) to an attribute that must never be shown to the user
  1095. *
  1096. * @package iTopORM
  1097. */
  1098. class AttributePassword extends AttributeString
  1099. {
  1100. static protected function ListExpectedParams()
  1101. {
  1102. return parent::ListExpectedParams();
  1103. //return array_merge(parent::ListExpectedParams(), array());
  1104. }
  1105. public function GetEditClass() {return "Password";}
  1106. protected function GetSQLCol() {return "VARCHAR(64)";}
  1107. public function GetMaxSize()
  1108. {
  1109. return 64;
  1110. }
  1111. public function GetFilterDefinitions()
  1112. {
  1113. // Note: due to this, you will get an error if a password is being declared as a search criteria (see ZLists)
  1114. // not allowed to search on passwords!
  1115. return array();
  1116. }
  1117. public function GetAsHTML($sValue, $oHostObject = null)
  1118. {
  1119. if (strlen($sValue) == 0)
  1120. {
  1121. return '';
  1122. }
  1123. else
  1124. {
  1125. return '******';
  1126. }
  1127. }
  1128. }
  1129. /**
  1130. * Map a text column (size < 255) to an attribute that is encrypted in the database
  1131. * The encryption is based on a key set per iTop instance. Thus if you export your
  1132. * database (in SQL) to someone else without providing the key at the same time
  1133. * the encrypted fields will remain encrypted
  1134. *
  1135. * @package iTopORM
  1136. */
  1137. class AttributeEncryptedString extends AttributeString
  1138. {
  1139. static $sKey = null; // Encryption key used for all encrypted fields
  1140. public function __construct($sCode, $aParams)
  1141. {
  1142. parent::__construct($sCode, $aParams);
  1143. if (self::$sKey == null)
  1144. {
  1145. self::$sKey = MetaModel::GetConfig()->GetEncryptionKey();
  1146. }
  1147. }
  1148. protected function GetSQLCol() {return "TINYBLOB";}
  1149. public function GetMaxSize()
  1150. {
  1151. return 255;
  1152. }
  1153. public function GetFilterDefinitions()
  1154. {
  1155. // Note: due to this, you will get an error if a an encrypted field is declared as a search criteria (see ZLists)
  1156. // not allowed to search on encrypted fields !
  1157. return array();
  1158. }
  1159. public function MakeRealValue($proposedValue, $oHostObj)
  1160. {
  1161. if (is_null($proposedValue)) return null;
  1162. return (string)$proposedValue;
  1163. }
  1164. /**
  1165. * Decrypt the value when reading from the database
  1166. */
  1167. public function FromSQLToValue($aCols, $sPrefix = '')
  1168. {
  1169. $oSimpleCrypt = new SimpleCrypt();
  1170. $sValue = $oSimpleCrypt->Decrypt(self::$sKey, $aCols[$sPrefix]);
  1171. return $sValue;
  1172. }
  1173. /**
  1174. * Encrypt the value before storing it in the database
  1175. */
  1176. public function GetSQLValues($value)
  1177. {
  1178. $oSimpleCrypt = new SimpleCrypt();
  1179. $encryptedValue = $oSimpleCrypt->Encrypt(self::$sKey, $value);
  1180. $aValues = array();
  1181. $aValues[$this->Get("sql")] = $encryptedValue;
  1182. return $aValues;
  1183. }
  1184. }
  1185. // Wiki formatting - experimental
  1186. //
  1187. // [[<objClass>:<objName>]]
  1188. // Example: [[Server:db1.tnut.com]]
  1189. define('WIKI_OBJECT_REGEXP', '/\[\[(.+):(.+)\]\]/U');
  1190. // <url>
  1191. // Example: http://romain:trustno1@127.0.0.1:8888/iTop-trunk/modules/itop-caches/itop-caches.php?agument=machin%20#monAncre
  1192. 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");
  1193. // SHEME............. USER.................... PASSWORD...................... HOST/IP......... PORT.......... PATH...................... GET................................... ANCHOR....................
  1194. // Origin of this regexp: http://www.php.net/manual/fr/function.preg-match.php#93824
  1195. /**
  1196. * Map a text column (size > ?) to an attribute
  1197. *
  1198. * @package iTopORM
  1199. */
  1200. class AttributeText extends AttributeString
  1201. {
  1202. public function GetEditClass() {return "Text";}
  1203. protected function GetSQLCol() {return "TEXT";}
  1204. public function GetMaxSize()
  1205. {
  1206. // Is there a way to know the current limitation for mysql?
  1207. // See mysql_field_len()
  1208. return 65535;
  1209. }
  1210. static public function RenderWikiHtml($sText)
  1211. {
  1212. if (preg_match_all(WIKI_URL, $sText, $aAllMatches, PREG_SET_ORDER /* important !*/ |PREG_OFFSET_CAPTURE /* important ! */))
  1213. {
  1214. $aUrls = array();
  1215. $i = count($aAllMatches);
  1216. // Replace the URLs by an actual hyperlink <a href="...">...</a>
  1217. // Let's do it backwards so that the initial positions are not modified by the replacement
  1218. // This works if the matches are captured: in the order they occur in the string AND
  1219. // with their offset (i.e. position) inside the string
  1220. while($i > 0)
  1221. {
  1222. $i--;
  1223. $sUrl = $aAllMatches[$i][0][0]; // String corresponding to the main pattern
  1224. $iPos = $aAllMatches[$i][0][1]; // Position of the main pattern
  1225. $sText = substr_replace($sText, "<a href=\"$sUrl\">$sUrl</a>", $iPos, strlen($sUrl));
  1226. }
  1227. }
  1228. if (preg_match_all(WIKI_OBJECT_REGEXP, $sText, $aAllMatches, PREG_SET_ORDER))
  1229. {
  1230. foreach($aAllMatches as $iPos => $aMatches)
  1231. {
  1232. $sClass = $aMatches[1];
  1233. $sName = $aMatches[2];
  1234. if (MetaModel::IsValidClass($sClass))
  1235. {
  1236. $oObj = MetaModel::GetObjectByName($sClass, $sName, false /* MustBeFound */);
  1237. if (is_object($oObj))
  1238. {
  1239. // Propose a std link to the object
  1240. $sText = str_replace($aMatches[0], $oObj->GetHyperlink(), $sText);
  1241. }
  1242. else
  1243. {
  1244. // Propose a std link to the object
  1245. $sClassLabel = MetaModel::GetName($sClass);
  1246. $sText = str_replace($aMatches[0], "<span class=\"wiki_broken_link\">$sClassLabel:$sName</span>", $sText);
  1247. // Later: propose a link to create a new object
  1248. // Anyhow... there is no easy way to suggest default values based on the given FRIENDLY name
  1249. //$sText = preg_replace('/\[\[(.+):(.+)\]\]/', '<a href="'.utils::GetAbsoluteUrlAppRoot().'pages/UI.php?operation=new&class='.$sClass.'&default[att1]=xxx&default[att2]=yyy">'.$sName.'</a>', $sText);
  1250. }
  1251. }
  1252. }
  1253. }
  1254. return $sText;
  1255. }
  1256. public function GetAsHTML($sValue, $oHostObject = null)
  1257. {
  1258. $sValue = parent::GetAsHTML($sValue);
  1259. $sValue = self::RenderWikiHtml($sValue);
  1260. $aStyles = array();
  1261. if ($this->GetWidth() != '')
  1262. {
  1263. $aStyles[] = 'width:'.$this->GetWidth();
  1264. }
  1265. if ($this->GetHeight() != '')
  1266. {
  1267. $aStyles[] = 'height:'.$this->GetHeight();
  1268. }
  1269. $sStyle = '';
  1270. if (count($aStyles) > 0)
  1271. {
  1272. $aStyles[] = 'overflow:auto';
  1273. $sStyle = 'style="'.implode(';', $aStyles).'"';
  1274. }
  1275. return "<div $sStyle>".str_replace("\n", "<br>\n", $sValue).'</div>';
  1276. }
  1277. public function GetEditValue($sValue)
  1278. {
  1279. if (preg_match_all(WIKI_OBJECT_REGEXP, $sValue, $aAllMatches, PREG_SET_ORDER))
  1280. {
  1281. foreach($aAllMatches as $iPos => $aMatches)
  1282. {
  1283. $sClass = $aMatches[1];
  1284. $sName = $aMatches[2];
  1285. if (MetaModel::IsValidClass($sClass))
  1286. {
  1287. $sClassLabel = MetaModel::GetName($sClass);
  1288. $sValue = str_replace($aMatches[0], "[[$sClassLabel:$sName]]", $sValue);
  1289. }
  1290. }
  1291. }
  1292. return $sValue;
  1293. }
  1294. public function MakeRealValue($proposedValue, $oHostObj)
  1295. {
  1296. $sValue = $proposedValue;
  1297. if (preg_match_all(WIKI_OBJECT_REGEXP, $sValue, $aAllMatches, PREG_SET_ORDER))
  1298. {
  1299. foreach($aAllMatches as $iPos => $aMatches)
  1300. {
  1301. $sClassLabel = $aMatches[1];
  1302. $sName = $aMatches[2];
  1303. if (!MetaModel::IsValidClass($sClassLabel))
  1304. {
  1305. $sClass = MetaModel::GetClassFromLabel($sClassLabel);
  1306. if ($sClass)
  1307. {
  1308. $sValue = str_replace($aMatches[0], "[[$sClass:$sName]]", $sValue);
  1309. }
  1310. }
  1311. }
  1312. }
  1313. return $sValue;
  1314. }
  1315. public function GetAsXML($value, $oHostObject = null)
  1316. {
  1317. return Str::pure2xml($value);
  1318. }
  1319. public function GetWidth()
  1320. {
  1321. return $this->GetOptional('width', '');
  1322. }
  1323. public function GetHeight()
  1324. {
  1325. return $this->GetOptional('height', '');
  1326. }
  1327. }
  1328. /**
  1329. * Map a log to an attribute
  1330. *
  1331. * @package iTopORM
  1332. */
  1333. class AttributeLongText extends AttributeText
  1334. {
  1335. protected function GetSQLCol() {return "LONGTEXT";}
  1336. public function GetMaxSize()
  1337. {
  1338. // Is there a way to know the current limitation for mysql?
  1339. // See mysql_field_len()
  1340. return 65535*1024; // Limited... still 64 Mb!
  1341. }
  1342. }
  1343. /**
  1344. * An attibute that stores a case log (i.e journal)
  1345. *
  1346. * @package iTopORM
  1347. */
  1348. class AttributeCaseLog extends AttributeText
  1349. {
  1350. public function GetNullValue()
  1351. {
  1352. return '';
  1353. }
  1354. public function IsNull($proposedValue)
  1355. {
  1356. if (!($proposedValue instanceof ormCaseLog))
  1357. {
  1358. return ($proposedValue == '');
  1359. }
  1360. return ($proposedValue->GetText() == '');
  1361. }
  1362. public function ScalarToSQL($value)
  1363. {
  1364. if (!is_string($value) && !is_null($value))
  1365. {
  1366. throw new CoreWarning('Expected the attribute value to be a string', array('found_type' => gettype($value), 'value' => $value, 'class' => $this->GetCode(), 'attribute' => $this->GetHostClass()));
  1367. }
  1368. return $value;
  1369. }
  1370. public function GetEditClass() {return "CaseLog";}
  1371. public function GetEditValue($sValue) { return ''; } // New 'edit' value is always blank since it will be appended to the existing log
  1372. public function GetDefaultValue() {return new ormCaseLog();}
  1373. public function Equals($val1, $val2) {return ($val1->GetText() == $val2->GetText());}
  1374. // Facilitate things: allow the user to Set the value from a string
  1375. public function MakeRealValue($proposedValue, $oHostObj)
  1376. {
  1377. if (!($proposedValue instanceof ormCaseLog))
  1378. {
  1379. // Append the new value if an instance of the object is supplied
  1380. //
  1381. $oPreviousLog = null;
  1382. if ($oHostObj != null)
  1383. {
  1384. $oPreviousLog = $oHostObj->Get($this->GetCode());
  1385. if (!is_object($oPreviousLog))
  1386. {
  1387. $oPreviousLog = $oHostObj->GetOriginal($this->GetCode());;
  1388. }
  1389. }
  1390. if (is_object($oPreviousLog))
  1391. {
  1392. $oCaseLog = clone($oPreviousLog);
  1393. }
  1394. else
  1395. {
  1396. $oCaseLog = new ormCaseLog();
  1397. }
  1398. if (strlen($proposedValue) > 0)
  1399. {
  1400. $oCaseLog->AddLogEntry(parent::MakeRealValue($proposedValue, $oHostObj));
  1401. }
  1402. return $oCaseLog;
  1403. }
  1404. return $proposedValue;
  1405. }
  1406. public function GetSQLExpressions($sPrefix = '')
  1407. {
  1408. if ($sPrefix == '')
  1409. {
  1410. $sPrefix = $this->GetCode();
  1411. }
  1412. $aColumns = array();
  1413. // Note: to optimize things, the existence of the attribute is determined by the existence of one column with an empty suffix
  1414. $aColumns[''] = $sPrefix;
  1415. $aColumns['_index'] = $sPrefix.'_index';
  1416. return $aColumns;
  1417. }
  1418. public function FromSQLToValue($aCols, $sPrefix = '')
  1419. {
  1420. if (!isset($aCols[$sPrefix]))
  1421. {
  1422. $sAvailable = implode(', ', array_keys($aCols));
  1423. throw new MissingColumnException("Missing column '$sPrefix' from {$sAvailable}");
  1424. }
  1425. $sLog = $aCols[$sPrefix];
  1426. if (isset($aCols[$sPrefix.'_index']))
  1427. {
  1428. $sIndex = $aCols[$sPrefix.'_index'];
  1429. }
  1430. else
  1431. {
  1432. // For backward compatibility, allow the current state to be: 1 log, no index
  1433. $sIndex = '';
  1434. }
  1435. if (strlen($sIndex) > 0)
  1436. {
  1437. $aIndex = unserialize($sIndex);
  1438. $value = new ormCaseLog($sLog, $aIndex);
  1439. }
  1440. else
  1441. {
  1442. $value = new ormCaseLog($sLog);
  1443. }
  1444. return $value;
  1445. }
  1446. public function GetSQLValues($value)
  1447. {
  1448. if (!($value instanceOf ormCaseLog))
  1449. {
  1450. $value = new ormCaseLog('');
  1451. }
  1452. $aValues = array();
  1453. $aValues[$this->GetCode()] = $value->GetText();
  1454. $aValues[$this->GetCode().'_index'] = serialize($value->GetIndex());
  1455. return $aValues;
  1456. }
  1457. public function GetSQLColumns()
  1458. {
  1459. $aColumns = array();
  1460. $aColumns[$this->GetCode()] = 'LONGTEXT'; // 2^32 (4 Gb)
  1461. $aColumns[$this->GetCode().'_index'] = 'BLOB';
  1462. return $aColumns;
  1463. }
  1464. public function GetAsHTML($value, $oHostObject = null)
  1465. {
  1466. if ($value instanceOf ormCaseLog)
  1467. {
  1468. $sContent = $value->GetAsHTML(null, false, array(__class__, 'RenderWikiHtml'));
  1469. }
  1470. else
  1471. {
  1472. $sContent = '';
  1473. }
  1474. $aStyles = array();
  1475. if ($this->GetWidth() != '')
  1476. {
  1477. $aStyles[] = 'width:'.$this->GetWidth();
  1478. }
  1479. if ($this->GetHeight() != '')
  1480. {
  1481. $aStyles[] = 'height:'.$this->GetHeight();
  1482. }
  1483. $sStyle = '';
  1484. if (count($aStyles) > 0)
  1485. {
  1486. $sStyle = 'style="'.implode(';', $aStyles).'"';
  1487. }
  1488. return "<div class=\"caselog\" $sStyle>".$sContent.'</div>'; }
  1489. public function GetAsCSV($value, $sSeparator = ',', $sTextQualifier = '"', $oHostObject = null)
  1490. {
  1491. if ($value instanceOf ormCaseLog)
  1492. {
  1493. return parent::GetAsCSV($value->GetText(), $sSeparator, $sTextQualifier, $oHostObject);
  1494. }
  1495. else
  1496. {
  1497. return '';
  1498. }
  1499. }
  1500. public function GetAsXML($value, $oHostObject = null)
  1501. {
  1502. if ($value instanceOf ormCaseLog)
  1503. {
  1504. return parent::GetAsXML($value->GetText(), $oHostObject);
  1505. }
  1506. else
  1507. {
  1508. return '';
  1509. }
  1510. }
  1511. }
  1512. /**
  1513. * Map a text column (size > ?), containing HTML code, to an attribute
  1514. *
  1515. * @package iTopORM
  1516. */
  1517. class AttributeHTML extends AttributeText
  1518. {
  1519. public function GetEditClass() {return "HTML";}
  1520. public function GetAsHTML($sValue, $oHostObject = null)
  1521. {
  1522. return $sValue;
  1523. }
  1524. }
  1525. /**
  1526. * Specialization of a string: email
  1527. *
  1528. * @package iTopORM
  1529. */
  1530. class AttributeEmailAddress extends AttributeString
  1531. {
  1532. public function GetValidationPattern()
  1533. {
  1534. // return "^([0-9a-zA-Z]([-.\\w]*[0-9a-zA-Z])*@([0-9a-zA-Z][-\\w]*[0-9a-zA-Z]\\.)+[a-zA-Z]{2,9})$";
  1535. return "^[a-zA-Z0-9._-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,4}$";
  1536. }
  1537. public function GetAsHTML($sValue, $oHostObject = null)
  1538. {
  1539. if (empty($sValue)) return '';
  1540. return '<a class="mailto" href="mailto:'.$sValue.'">'.parent::GetAsHTML($sValue).'</a>';
  1541. }
  1542. }
  1543. /**
  1544. * Specialization of a string: IP address
  1545. *
  1546. * @package iTopORM
  1547. */
  1548. class AttributeIPAddress extends AttributeString
  1549. {
  1550. public function GetValidationPattern()
  1551. {
  1552. $sNum = '(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])';
  1553. return "^($sNum\\.$sNum\\.$sNum\\.$sNum)$";
  1554. }
  1555. }
  1556. /**
  1557. * Specialization of a string: OQL expression
  1558. *
  1559. * @package iTopORM
  1560. */
  1561. class AttributeOQL extends AttributeText
  1562. {
  1563. }
  1564. /**
  1565. * Specialization of a string: template (contains iTop placeholders like $current_contact_id$ or $this->name$)
  1566. *
  1567. * @package iTopORM
  1568. */
  1569. class AttributeTemplateString extends AttributeString
  1570. {
  1571. }
  1572. /**
  1573. * Specialization of a text: template (contains iTop placeholders like $current_contact_id$ or $this->name$)
  1574. *
  1575. * @package iTopORM
  1576. */
  1577. class AttributeTemplateText extends AttributeText
  1578. {
  1579. }
  1580. /**
  1581. * Specialization of a HTML: template (contains iTop placeholders like $current_contact_id$ or $this->name$)
  1582. *
  1583. * @package iTopORM
  1584. */
  1585. class AttributeTemplateHTML extends AttributeText
  1586. {
  1587. public function GetEditClass() {return "HTML";}
  1588. public function GetAsHTML($sValue, $oHostObject = null)
  1589. {
  1590. return $sValue;
  1591. }
  1592. }
  1593. /**
  1594. * Map a enum column to an attribute
  1595. *
  1596. * @package iTopORM
  1597. */
  1598. class AttributeEnum extends AttributeString
  1599. {
  1600. static protected function ListExpectedParams()
  1601. {
  1602. return parent::ListExpectedParams();
  1603. //return array_merge(parent::ListExpectedParams(), array());
  1604. }
  1605. public function GetEditClass() {return "String";}
  1606. protected function GetSQLCol()
  1607. {
  1608. $oValDef = $this->GetValuesDef();
  1609. if ($oValDef)
  1610. {
  1611. $aValues = CMDBSource::Quote(array_keys($oValDef->GetValues(array(), "")), true);
  1612. }
  1613. else
  1614. {
  1615. $aValues = array();
  1616. }
  1617. if (count($aValues) > 0)
  1618. {
  1619. // The syntax used here do matters
  1620. // In particular, I had to remove unnecessary spaces to
  1621. // make sure that this string will match the field type returned by the DB
  1622. // (used to perform a comparison between the current DB format and the data model)
  1623. return "ENUM(".implode(",", $aValues).")";
  1624. }
  1625. else
  1626. {
  1627. return "VARCHAR(255)"; // ENUM() is not an allowed syntax!
  1628. }
  1629. }
  1630. public function ScalarToSQL($value)
  1631. {
  1632. // Note: for strings, the null value is an empty string and it is recorded as such in the DB
  1633. // but that wasn't working for enums, because '' is NOT one of the allowed values
  1634. // that's why a null value must be forced to a real null
  1635. $value = parent::ScalarToSQL($value);
  1636. if ($this->IsNull($value))
  1637. {
  1638. return null;
  1639. }
  1640. else
  1641. {
  1642. return $value;
  1643. }
  1644. }
  1645. public function RequiresIndex()
  1646. {
  1647. return false;
  1648. }
  1649. public function GetBasicFilterOperators()
  1650. {
  1651. return parent::GetBasicFilterOperators();
  1652. }
  1653. public function GetBasicFilterLooseOperator()
  1654. {
  1655. return '=';
  1656. }
  1657. public function GetBasicFilterSQLExpr($sOpCode, $value)
  1658. {
  1659. return parent::GetBasicFilterSQLExpr($sOpCode, $value);
  1660. }
  1661. public function GetAsHTML($sValue, $oHostObject = null)
  1662. {
  1663. if (is_null($sValue))
  1664. {
  1665. // Unless a specific label is defined for the null value of this enum, use a generic "undefined" label
  1666. $sLabel = Dict::S('Class:'.$this->GetHostClass().'/Attribute:'.$this->GetCode().'/Value:'.$sValue, Dict::S('Enum:Undefined'));
  1667. }
  1668. else
  1669. {
  1670. $sLabel = Dict::S('Class:'.$this->GetHostClass().'/Attribute:'.$this->GetCode().'/Value:'.$sValue, $sValue);
  1671. }
  1672. $sDescription = Dict::S('Class:'.$this->GetHostClass().'/Attribute:'.$this->GetCode().'/Value:'.$sValue.'+', $sValue);
  1673. // later, we could imagine a detailed description in the title
  1674. return "<span title=\"$sDescription\">".parent::GetAsHtml($sLabel)."</span>";
  1675. }
  1676. public function GetEditValue($sValue)
  1677. {
  1678. $sLabel = Dict::S('Class:'.$this->GetHostClass().'/Attribute:'.$this->GetCode().'/Value:'.$sValue, $sValue);
  1679. return $sLabel;
  1680. }
  1681. public function GetAllowedValues($aArgs = array(), $sContains = '')
  1682. {
  1683. $aRawValues = parent::GetAllowedValues($aArgs, $sContains);
  1684. if (is_null($aRawValues)) return null;
  1685. $aLocalizedValues = array();
  1686. foreach ($aRawValues as $sKey => $sValue)
  1687. {
  1688. $aLocalizedValues[$sKey] = Dict::S('Class:'.$this->GetHostClass().'/Attribute:'.$this->GetCode().'/Value:'.$sKey, $sKey);
  1689. }
  1690. return $aLocalizedValues;
  1691. }
  1692. /**
  1693. * Processes the input value to align it with the values supported
  1694. * by this type of attribute. In this case: turns empty strings into nulls
  1695. * @param mixed $proposedValue The value to be set for the attribute
  1696. * @return mixed The actual value that will be set
  1697. */
  1698. public function MakeRealValue($proposedValue, $oHostObj)
  1699. {
  1700. if ($proposedValue == '') return null;
  1701. return parent::MakeRealValue($proposedValue, $oHostObj);
  1702. }
  1703. }
  1704. /**
  1705. * Map a date+time column to an attribute
  1706. *
  1707. * @package iTopORM
  1708. */
  1709. class AttributeDateTime extends AttributeDBField
  1710. {
  1711. static protected function GetDateFormat()
  1712. {
  1713. return "Y-m-d H:i:s";
  1714. }
  1715. static protected function ListExpectedParams()
  1716. {
  1717. return parent::ListExpectedParams();
  1718. //return array_merge(parent::ListExpectedParams(), array());
  1719. }
  1720. public function GetEditClass() {return "DateTime";}
  1721. protected function GetSQLCol() {return "TIMESTAMP";}
  1722. public static function GetAsUnixSeconds($value)
  1723. {
  1724. $oDeadlineDateTime = new DateTime($value);
  1725. $iUnixSeconds = $oDeadlineDateTime->format('U');
  1726. return $iUnixSeconds;
  1727. }
  1728. // #@# THIS HAS TO REVISED
  1729. // Having null not allowed was interpreted by mySQL
  1730. // which was creating the field with the flag 'ON UPDATE CURRENT_TIMESTAMP'
  1731. // Then, on each update of the record, the field was modified.
  1732. // We will have to specify the default value if we want to restore this option
  1733. // In fact, we could also have more verbs dedicated to the DB:
  1734. // GetDBDefaultValue()... or GetDBFieldCreationStatement()....
  1735. public function IsNullAllowed() {return true;}
  1736. public function GetDefaultValue()
  1737. {
  1738. $default = parent::GetDefaultValue();
  1739. if (!parent::IsNullAllowed())
  1740. {
  1741. if (empty($default))
  1742. {
  1743. $default = date(self::GetDateFormat());
  1744. }
  1745. }
  1746. return $default;
  1747. }
  1748. // END OF THE WORKAROUND
  1749. ///////////////////////////////////////////////////////////////
  1750. public function GetValidationPattern()
  1751. {
  1752. 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$";
  1753. }
  1754. public function GetBasicFilterOperators()
  1755. {
  1756. return array(
  1757. "="=>"equals",
  1758. "!="=>"differs from",
  1759. "<"=>"before",
  1760. "<="=>"before",
  1761. ">"=>"after (strictly)",
  1762. ">="=>"after",
  1763. "SameDay"=>"same day (strip time)",
  1764. "SameMonth"=>"same year/month",
  1765. "SameYear"=>"same year",
  1766. "Today"=>"today",
  1767. ">|"=>"after today + N days",
  1768. "<|"=>"before today + N days",
  1769. "=|"=>"equals today + N days",
  1770. );
  1771. }
  1772. public function GetBasicFilterLooseOperator()
  1773. {
  1774. // Unless we implement a "same xxx, depending on given precision" !
  1775. return "=";
  1776. }
  1777. public function GetBasicFilterSQLExpr($sOpCode, $value)
  1778. {
  1779. $sQValue = CMDBSource::Quote($value);
  1780. switch ($sOpCode)
  1781. {
  1782. case '=':
  1783. case '!=':
  1784. case '<':
  1785. case '<=':
  1786. case '>':
  1787. case '>=':
  1788. return $this->GetSQLExpr()." $sOpCode $sQValue";
  1789. case 'SameDay':
  1790. return "DATE(".$this->GetSQLExpr().") = DATE($sQValue)";
  1791. case 'SameMonth':
  1792. return "DATE_FORMAT(".$this->GetSQLExpr().", '%Y-%m') = DATE_FORMAT($sQValue, '%Y-%m')";
  1793. case 'SameYear':
  1794. return "MONTH(".$this->GetSQLExpr().") = MONTH($sQValue)";
  1795. case 'Today':
  1796. return "DATE(".$this->GetSQLExpr().") = CURRENT_DATE()";
  1797. case '>|':
  1798. return "DATE(".$this->GetSQLExpr().") > DATE_ADD(CURRENT_DATE(), INTERVAL $sQValue DAY)";
  1799. case '<|':
  1800. return "DATE(".$this->GetSQLExpr().") < DATE_ADD(CURRENT_DATE(), INTERVAL $sQValue DAY)";
  1801. case '=|':
  1802. return "DATE(".$this->GetSQLExpr().") = DATE_ADD(CURRENT_DATE(), INTERVAL $sQValue DAY)";
  1803. default:
  1804. return $this->GetSQLExpr()." = $sQValue";
  1805. }
  1806. }
  1807. public function MakeRealValue($proposedValue, $oHostObj)
  1808. {
  1809. if (is_null($proposedValue))
  1810. {
  1811. return null;
  1812. }
  1813. if (is_string($proposedValue) && ($proposedValue == "") && $this->IsNullAllowed())
  1814. {
  1815. return null;
  1816. }
  1817. if (!is_numeric($proposedValue))
  1818. {
  1819. return $proposedValue;
  1820. }
  1821. return date(self::GetDateFormat(), $proposedValue);
  1822. }
  1823. public function ScalarToSQL($value)
  1824. {
  1825. if (is_null($value))
  1826. {
  1827. return null;
  1828. }
  1829. elseif (empty($value))
  1830. {
  1831. // Make a valid date for MySQL. TO DO: support NULL as a literal value for fields that can be null.
  1832. return '0000-00-00 00:00:00';
  1833. }
  1834. return $value;
  1835. }
  1836. public function GetAsHTML($value, $oHostObject = null)
  1837. {
  1838. return Str::pure2html($value);
  1839. }
  1840. public function GetAsXML($value, $oHostObject = null)
  1841. {
  1842. return Str::pure2xml($value);
  1843. }
  1844. public function GetAsCSV($sValue, $sSeparator = ',', $sTextQualifier = '"', $oHostObject = null)
  1845. {
  1846. $sFrom = array("\r\n", $sTextQualifier);
  1847. $sTo = array("\n", $sTextQualifier.$sTextQualifier);
  1848. $sEscaped = str_replace($sFrom, $sTo, (string)$sValue);
  1849. return '"'.$sEscaped.'"';
  1850. }
  1851. /**
  1852. * Parses a string to find some smart search patterns and build the corresponding search/OQL condition
  1853. * Each derived class is reponsible for defining and processing their own smart patterns, the base class
  1854. * does nothing special, and just calls the default (loose) operator
  1855. * @param string $sSearchText The search string to analyze for smart patterns
  1856. * @param FieldExpression The FieldExpression representing the atttribute code in this OQL query
  1857. * @param Hash $aParams Values of the query parameters
  1858. * @return Expression The search condition to be added (AND) to the current search
  1859. */
  1860. public function GetSmartConditionExpression($sSearchText, FieldExpression $oField, &$aParams)
  1861. {
  1862. // Possible smart patterns
  1863. $aPatterns = array(
  1864. 'between' => array('pattern' => '/^\[(.*),(.*)\]$/', 'operator' => 'n/a'),
  1865. 'greater than or equal' => array('pattern' => '/^>=(.*)$/', 'operator' => '>='),
  1866. 'greater than' => array('pattern' => '/^>(.*)$/', 'operator' => '>'),
  1867. 'less than or equal' => array('pattern' => '/^<=(.*)$/', 'operator' => '<='),
  1868. 'less than' => array('pattern' => '/^<(.*)$/', 'operator' => '<'),
  1869. );
  1870. $sPatternFound = '';
  1871. $aMatches = array();
  1872. foreach($aPatterns as $sPatName => $sPattern)
  1873. {
  1874. if (preg_match($sPattern['pattern'], $sSearchText, $aMatches))
  1875. {
  1876. $sPatternFound = $sPatName;
  1877. break;
  1878. }
  1879. }
  1880. switch($sPatternFound)
  1881. {
  1882. case 'between':
  1883. $sParamName1 = $oField->GetParent().'_'.$oField->GetName().'_1';
  1884. $oRightExpr = new VariableExpression($sParamName1);
  1885. $aParams[$sParamName1] = $aMatches[1];
  1886. $oCondition1 = new BinaryExpression($oField, '>=', $oRightExpr);
  1887. $sParamName2 = $oField->GetParent().'_'.$oField->GetName().'_2';
  1888. $oRightExpr = new VariableExpression($sParamName2);
  1889. $sOperator = $this->GetBasicFilterLooseOperator();
  1890. $aParams[$sParamName2] = $aMatches[2];
  1891. $oCondition2 = new BinaryExpression($oField, '<=', $oRightExpr);
  1892. $oNewCondition = new BinaryExpression($oCondition1, 'AND', $oCondition2);
  1893. break;
  1894. case 'greater than':
  1895. case 'greater than or equal':
  1896. case 'less than':
  1897. case 'less than or equal':
  1898. $sSQLOperator = $aPatterns[$sPatternFound]['operator'];
  1899. $sParamName = $oField->GetParent().'_'.$oField->GetName();
  1900. $oRightExpr = new VariableExpression($sParamName);
  1901. $aParams[$sParamName] = $aMatches[1];
  1902. $oNewCondition = new BinaryExpression($oField, $sSQLOperator, $oRightExpr);
  1903. break;
  1904. default:
  1905. $oNewCondition = parent::GetSmartConditionExpression($sSearchText, $oField, $aParams);
  1906. }
  1907. return $oNewCondition;
  1908. }
  1909. }
  1910. /**
  1911. * Store a duration as a number of seconds
  1912. *
  1913. * @package iTopORM
  1914. */
  1915. class AttributeDuration extends AttributeInteger
  1916. {
  1917. public function GetEditClass() {return "Duration";}
  1918. protected function GetSQLCol() {return "INT(11) UNSIGNED";}
  1919. public function GetNullValue() {return '0';}
  1920. public function GetDefaultValue()
  1921. {
  1922. return 0;
  1923. }
  1924. public function MakeRealValue($proposedValue, $oHostObj)
  1925. {
  1926. if (is_null($proposedValue)) return null;
  1927. if (!is_numeric($proposedValue)) return null;
  1928. if ( ((int)$proposedValue) < 0) return null;
  1929. return (int)$proposedValue;
  1930. }
  1931. public function ScalarToSQL($value)
  1932. {
  1933. if (is_null($value))
  1934. {
  1935. return null;
  1936. }
  1937. return $value;
  1938. }
  1939. public function GetAsHTML($value, $oHostObject = null)
  1940. {
  1941. return Str::pure2html(self::FormatDuration($value));
  1942. }
  1943. static function FormatDuration($duration)
  1944. {
  1945. $aDuration = self::SplitDuration($duration);
  1946. $sResult = '';
  1947. if ($duration < 60)
  1948. {
  1949. // Less than 1 min
  1950. $sResult = Dict::Format('Core:Duration_Seconds', $aDuration['seconds']);
  1951. }
  1952. else if ($duration < 3600)
  1953. {
  1954. // less than 1 hour, display it in minutes/seconds
  1955. $sResult = Dict::Format('Core:Duration_Minutes_Seconds', $aDuration['minutes'], $aDuration['seconds']);
  1956. }
  1957. else if ($duration < 86400)
  1958. {
  1959. // Less than 1 day, display it in hours/minutes/seconds
  1960. $sResult = Dict::Format('Core:Duration_Hours_Minutes_Seconds', $aDuration['hours'], $aDuration['minutes'], $aDuration['seconds']);
  1961. }
  1962. else
  1963. {
  1964. // more than 1 day, display it in days/hours/minutes/seconds
  1965. $sResult = Dict::Format('Core:Duration_Days_Hours_Minutes_Seconds', $aDuration['days'], $aDuration['hours'], $aDuration['minutes'], $aDuration['seconds']);
  1966. }
  1967. return $sResult;
  1968. }
  1969. static function SplitDuration($duration)
  1970. {
  1971. $duration = (int) $duration;
  1972. $days = floor($duration / 86400);
  1973. $hours = floor(($duration - (86400*$days)) / 3600);
  1974. $minutes = floor(($duration - (86400*$days + 3600*$hours)) / 60);
  1975. $seconds = ($duration % 60); // modulo
  1976. return array( 'days' => $days, 'hours' => $hours, 'minutes' => $minutes, 'seconds' => $seconds );
  1977. }
  1978. }
  1979. /**
  1980. * Map a date+time column to an attribute
  1981. *
  1982. * @package iTopORM
  1983. */
  1984. class AttributeDate extends AttributeDateTime
  1985. {
  1986. const MYDATEFORMAT = "Y-m-d";
  1987. static protected function GetDateFormat()
  1988. {
  1989. return "Y-m-d";
  1990. }
  1991. static protected function ListExpectedParams()
  1992. {
  1993. return parent::ListExpectedParams();
  1994. //return array_merge(parent::ListExpectedParams(), array());
  1995. }
  1996. public function GetEditClass() {return "Date";}
  1997. protected function GetSQLCol() {return "DATE";}
  1998. public function GetValidationPattern()
  1999. {
  2000. 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)))$";
  2001. }
  2002. }
  2003. /**
  2004. * A dead line stored as a date & time
  2005. * The only difference with the DateTime attribute is the display:
  2006. * relative to the current time
  2007. */
  2008. class AttributeDeadline extends AttributeDateTime
  2009. {
  2010. public function GetAsHTML($value, $oHostObject = null)
  2011. {
  2012. $sResult = '';
  2013. if ($value !== null)
  2014. {
  2015. $value = AttributeDateTime::GetAsUnixSeconds($value);
  2016. $difference = $value - time();
  2017. if ($difference >= 0)
  2018. {
  2019. $sResult = self::FormatDuration($difference);
  2020. }
  2021. else
  2022. {
  2023. $sResult = Dict::Format('UI:DeadlineMissedBy_duration', self::FormatDuration(-$difference));
  2024. }
  2025. }
  2026. return $sResult;
  2027. }
  2028. static function FormatDuration($duration)
  2029. {
  2030. $days = floor($duration / 86400);
  2031. $hours = floor(($duration - (86400*$days)) / 3600);
  2032. $minutes = floor(($duration - (86400*$days + 3600*$hours)) / 60);
  2033. $sResult = '';
  2034. if ($duration < 60)
  2035. {
  2036. // Less than 1 min
  2037. $sResult =Dict::S('UI:Deadline_LessThan1Min');
  2038. }
  2039. else if ($duration < 3600)
  2040. {
  2041. // less than 1 hour, display it in minutes
  2042. $sResult =Dict::Format('UI:Deadline_Minutes', $minutes);
  2043. }
  2044. else if ($duration < 86400)
  2045. {
  2046. // Less that 1 day, display it in hours/minutes
  2047. $sResult =Dict::Format('UI:Deadline_Hours_Minutes', $hours, $minutes);
  2048. }
  2049. else
  2050. {
  2051. // Less that 1 day, display it in hours/minutes
  2052. $sResult =Dict::Format('UI:Deadline_Days_Hours_Minutes', $days, $hours, $minutes);
  2053. }
  2054. return $sResult;
  2055. }
  2056. }
  2057. /**
  2058. * Map a foreign key to an attribute
  2059. * AttributeExternalKey and AttributeExternalField may be an external key
  2060. * the difference is that AttributeExternalKey corresponds to a column into the defined table
  2061. * where an AttributeExternalField corresponds to a column into another table (class)
  2062. *
  2063. * @package iTopORM
  2064. */
  2065. class AttributeExternalKey extends AttributeDBFieldVoid
  2066. {
  2067. static protected function ListExpectedParams()
  2068. {
  2069. return array_merge(parent::ListExpectedParams(), array("targetclass", "is_null_allowed", "on_target_delete"));
  2070. }
  2071. public function GetEditClass() {return "ExtKey";}
  2072. protected function GetSQLCol() {return "INT(11)";}
  2073. public function RequiresIndex()
  2074. {
  2075. return true;
  2076. }
  2077. public function IsExternalKey($iType = EXTKEY_RELATIVE) {return true;}
  2078. public function GetTargetClass($iType = EXTKEY_RELATIVE) {return $this->Get("targetclass");}
  2079. public function GetKeyAttDef($iType = EXTKEY_RELATIVE){return $this;}
  2080. public function GetKeyAttCode() {return $this->GetCode();}
  2081. public function GetDefaultValue() {return 0;}
  2082. public function IsNullAllowed() {return $this->Get("is_null_allowed");}
  2083. public function GetBasicFilterOperators()
  2084. {
  2085. return parent::GetBasicFilterOperators();
  2086. }
  2087. public function GetBasicFilterLooseOperator()
  2088. {
  2089. return parent::GetBasicFilterLooseOperator();
  2090. }
  2091. public function GetBasicFilterSQLExpr($sOpCode, $value)
  2092. {
  2093. return parent::GetBasicFilterSQLExpr($sOpCode, $value);
  2094. }
  2095. // overloaded here so that an ext key always have the answer to
  2096. // "what are your possible values?"
  2097. public function GetValuesDef()
  2098. {
  2099. $oValSetDef = $this->Get("allowed_values");
  2100. if (!$oValSetDef)
  2101. {
  2102. // Let's propose every existing value
  2103. $oValSetDef = new ValueSetObjects('SELECT '.$this->GetTargetClass());
  2104. }
  2105. return $oValSetDef;
  2106. }
  2107. public function GetAllowedValues($aArgs = array(), $sContains = '')
  2108. {
  2109. //throw new Exception("GetAllowedValues on ext key has been deprecated");
  2110. try
  2111. {
  2112. return parent::GetAllowedValues($aArgs, $sContains);
  2113. }
  2114. catch (MissingQueryArgument $e)
  2115. {
  2116. // Some required arguments could not be found, enlarge to any existing value
  2117. $oValSetDef = new ValueSetObjects('SELECT '.$this->GetTargetClass());
  2118. return $oValSetDef->GetValues($aArgs, $sContains);
  2119. }
  2120. }
  2121. public function GetAllowedValuesAsObjectSet($aArgs = array(), $sContains = '')
  2122. {
  2123. $oValSetDef = $this->GetValuesDef();
  2124. $oSet = $oValSetDef->ToObjectSet($aArgs, $sContains);
  2125. return $oSet;
  2126. }
  2127. public function GetDeletionPropagationOption()
  2128. {
  2129. return $this->Get("on_target_delete");
  2130. }
  2131. public function GetNullValue()
  2132. {
  2133. return 0;
  2134. }
  2135. public function IsNull($proposedValue)
  2136. {
  2137. return ($proposedValue == 0);
  2138. }
  2139. public function MakeRealValue($proposedValue, $oHostObj)
  2140. {
  2141. if (is_null($proposedValue)) return 0;
  2142. if ($proposedValue === '') return 0;
  2143. if (MetaModel::IsValidObject($proposedValue)) return $proposedValue->GetKey();
  2144. return (int)$proposedValue;
  2145. }
  2146. public function GetMaximumComboLength()
  2147. {
  2148. return $this->GetOptional('max_combo_length', MetaModel::GetConfig()->Get('max_combo_length'));
  2149. }
  2150. public function GetMinAutoCompleteChars()
  2151. {
  2152. return $this->GetOptional('min_autocomplete_chars', MetaModel::GetConfig()->Get('min_autocomplete_chars'));
  2153. }
  2154. public function AllowTargetCreation()
  2155. {
  2156. return $this->GetOptional('allow_target_creation', MetaModel::GetConfig()->Get('allow_target_creation'));
  2157. }
  2158. }
  2159. /**
  2160. * Special kind of External Key to manage a hierarchy of objects
  2161. */
  2162. class AttributeHierarchicalKey extends AttributeExternalKey
  2163. {
  2164. static protected function ListExpectedParams()
  2165. {
  2166. $aParams = parent::ListExpectedParams();
  2167. //unset($aParams[array_search('targetclass', $aParams)]);
  2168. //print_r($aParams);
  2169. return $aParams; // TODO: mettre les bons parametres ici !!
  2170. }
  2171. public function GetEditClass() {return "ExtKey";}
  2172. public function RequiresIndex()
  2173. {
  2174. return true;
  2175. }
  2176. public function IsHierarchicalKey() {return true;}
  2177. public function GetKeyAttDef($iType = EXTKEY_RELATIVE){return $this;}
  2178. public function GetKeyAttCode() {return $this->GetCode();}
  2179. public function GetBasicFilterOperators()
  2180. {
  2181. return parent::GetBasicFilterOperators();
  2182. }
  2183. public function GetBasicFilterLooseOperator()
  2184. {
  2185. return parent::GetBasicFilterLooseOperator();
  2186. }
  2187. public function GetSQLColumns()
  2188. {
  2189. $aColumns = array();
  2190. $aColumns[$this->GetCode()] = 'INT(11)';
  2191. $aColumns[$this->GetSQLLeft()] = 'INT(11)';
  2192. $aColumns[$this->GetSQLRight()] = 'INT(11)';
  2193. return $aColumns;
  2194. }
  2195. public function GetSQLRight()
  2196. {
  2197. return $this->GetCode().'_right';
  2198. }
  2199. public function GetSQLLeft()
  2200. {
  2201. return $this->GetCode().'_left';
  2202. }
  2203. public function GetSQLValues($value)
  2204. {
  2205. if (!is_array($value))
  2206. {
  2207. $aValues[$this->GetCode()] = $value;
  2208. }
  2209. else
  2210. {
  2211. $aValues = array();
  2212. $aValues[$this->GetCode()] = $value[$this->GetCode()];
  2213. $aValues[$this->GetSQLRight()] = $value[$this->GetSQLRight()];
  2214. $aValues[$this->GetSQLLeft()] = $value[$this->GetSQLLeft()];
  2215. }
  2216. return $aValues;
  2217. }
  2218. public function GetAllowedValues($aArgs = array(), $sContains = '')
  2219. {
  2220. if (array_key_exists('this', $aArgs))
  2221. {
  2222. // Hierarchical keys have one more constraint: the "parent value" cannot be
  2223. // "under" themselves
  2224. $iRootId = $aArgs['this']->GetKey();
  2225. if ($iRootId > 0) // ignore objects that do no exist in the database...
  2226. {
  2227. $oValSetDef = $this->GetValuesDef();
  2228. $sClass = $this->GetHostClass(); // host class == target class for HK
  2229. $oFilter = DBObjectSearch::FromOQL("SELECT $sClass AS node JOIN $sClass AS root ON node.".$this->GetCode()." NOT BELOW root.id WHERE root.id = $iRootId");
  2230. $oValSetDef->AddCondition($oFilter);
  2231. }
  2232. }
  2233. else
  2234. {
  2235. return parent::GetAllowedValues($aArgs, $sContains);
  2236. }
  2237. }
  2238. public function GetAllowedValuesAsObjectSet($aArgs = array(), $sContains = '')
  2239. {
  2240. $oValSetDef = $this->GetValuesDef();
  2241. if (array_key_exists('this', $aArgs))
  2242. {
  2243. // Hierarchical keys have one more constraint: the "parent value" cannot be
  2244. // "under" themselves
  2245. $iRootId = $aArgs['this']->GetKey();
  2246. if ($iRootId > 0) // ignore objects that do no exist in the database...
  2247. {
  2248. $aValuesSetDef = $this->GetValuesDef();
  2249. $sClass = $this->GetHostClass(); // host class == target class for HK
  2250. $oFilter = DBObjectSearch::FromOQL("SELECT $sClass AS node JOIN $sClass AS root ON node.".$this->GetCode()." NOT BELOW root.id WHERE root.id = $iRootId");
  2251. $oValSetDef->AddCondition($oFilter);
  2252. }
  2253. }
  2254. $oSet = $oValSetDef->ToObjectSet($aArgs, $sContains);
  2255. return $oSet;
  2256. }
  2257. }
  2258. /**
  2259. * An attribute which corresponds to an external key (direct or indirect)
  2260. *
  2261. * @package iTopORM
  2262. */
  2263. class AttributeExternalField extends AttributeDefinition
  2264. {
  2265. static protected function ListExpectedParams()
  2266. {
  2267. return array_merge(parent::ListExpectedParams(), array("extkey_attcode", "target_attcode"));
  2268. }
  2269. public function GetEditClass() {return "ExtField";}
  2270. protected function GetSQLCol()
  2271. {
  2272. // throw new CoreException("external attribute: does it make any sense to request its type ?");
  2273. $oExtAttDef = $this->GetExtAttDef();
  2274. return $oExtAttDef->GetSQLCol();
  2275. }
  2276. public function GetSQLExpressions($sPrefix = '')
  2277. {
  2278. if ($sPrefix == '')
  2279. {
  2280. return array('' => $this->GetCode());
  2281. }
  2282. else
  2283. {
  2284. return $sPrefix;
  2285. }
  2286. }
  2287. public function GetLabel()
  2288. {
  2289. $oRemoteAtt = $this->GetExtAttDef();
  2290. $sDefault = $oRemoteAtt->GetLabel();
  2291. return Dict::S('Class:'.$this->m_sHostClass.'/Attribute:'.$this->m_sCode, $sDefault);
  2292. }
  2293. public function GetDescription()
  2294. {
  2295. $oRemoteAtt = $this->GetExtAttDef();
  2296. $sDefault = $oRemoteAtt->GetDescription();
  2297. return Dict::S('Class:'.$this->m_sHostClass.'/Attribute:'.$this->m_sCode.'+', $sDefault);
  2298. }
  2299. public function GetHelpOnEdition()
  2300. {
  2301. $oRemoteAtt = $this->GetExtAttDef();
  2302. $sDefault = $oRemoteAtt->GetHelpOnEdition();
  2303. return Dict::S('Class:'.$this->m_sHostClass.'/Attribute:'.$this->m_sCode.'?', $sDefault);
  2304. }
  2305. public function IsExternalKey($iType = EXTKEY_RELATIVE)
  2306. {
  2307. switch($iType)
  2308. {
  2309. case EXTKEY_ABSOLUTE:
  2310. // see further
  2311. $oRemoteAtt = $this->GetExtAttDef();
  2312. return $oRemoteAtt->IsExternalKey($iType);
  2313. case EXTKEY_RELATIVE:
  2314. return false;
  2315. default:
  2316. throw new CoreException("Unexpected value for argument iType: '$iType'");
  2317. }
  2318. }
  2319. public function GetTargetClass($iType = EXTKEY_RELATIVE)
  2320. {
  2321. return $this->GetKeyAttDef($iType)->GetTargetClass();
  2322. }
  2323. public function IsExternalField() {return true;}
  2324. public function GetKeyAttCode() {return $this->Get("extkey_attcode");}
  2325. public function GetExtAttCode() {return $this->Get("target_attcode");}
  2326. public function GetKeyAttDef($iType = EXTKEY_RELATIVE)
  2327. {
  2328. switch($iType)
  2329. {
  2330. case EXTKEY_ABSOLUTE:
  2331. // see further
  2332. $oRemoteAtt = $this->GetExtAttDef();
  2333. if ($oRemoteAtt->IsExternalField())
  2334. {
  2335. return $oRemoteAtt->GetKeyAttDef(EXTKEY_ABSOLUTE);
  2336. }
  2337. else if ($oRemoteAtt->IsExternalKey())
  2338. {
  2339. return $oRemoteAtt;
  2340. }
  2341. return $this->GetKeyAttDef(EXTKEY_RELATIVE); // which corresponds to the code hereafter !
  2342. case EXTKEY_RELATIVE:
  2343. return MetaModel::GetAttributeDef($this->GetHostClass(), $this->Get("extkey_attcode"));
  2344. default:
  2345. throw new CoreException("Unexpected value for argument iType: '$iType'");
  2346. }
  2347. }
  2348. public function GetExtAttDef()
  2349. {
  2350. $oKeyAttDef = $this->GetKeyAttDef();
  2351. $oExtAttDef = MetaModel::GetAttributeDef($oKeyAttDef->Get("targetclass"), $this->Get("target_attcode"));
  2352. if (!is_object($oExtAttDef)) throw new CoreException("Invalid external field ".$this->GetCode()." in class ".$this->GetHostClass().". The class ".$oKeyAttDef->Get("targetclass")." has no attribute ".$this->Get("target_attcode"));
  2353. return $oExtAttDef;
  2354. }
  2355. public function GetSQLExpr()
  2356. {
  2357. $oExtAttDef = $this->GetExtAttDef();
  2358. return $oExtAttDef->GetSQLExpr();
  2359. }
  2360. public function GetDefaultValue()
  2361. {
  2362. $oExtAttDef = $this->GetExtAttDef();
  2363. return $oExtAttDef->GetDefaultValue();
  2364. }
  2365. public function IsNullAllowed()
  2366. {
  2367. $oExtAttDef = $this->GetExtAttDef();
  2368. return $oExtAttDef->IsNullAllowed();
  2369. }
  2370. public function IsScalar()
  2371. {
  2372. $oExtAttDef = $this->GetExtAttDef();
  2373. return $oExtAttDef->IsScalar();
  2374. }
  2375. public function GetFilterDefinitions()
  2376. {
  2377. return array($this->GetCode() => new FilterFromAttribute($this));
  2378. }
  2379. public function GetBasicFilterOperators()
  2380. {
  2381. $oExtAttDef = $this->GetExtAttDef();
  2382. return $oExtAttDef->GetBasicFilterOperators();
  2383. }
  2384. public function GetBasicFilterLooseOperator()
  2385. {
  2386. $oExtAttDef = $this->GetExtAttDef();
  2387. return $oExtAttDef->GetBasicFilterLooseOperator();
  2388. }
  2389. public function GetBasicFilterSQLExpr($sOpCode, $value)
  2390. {
  2391. $oExtAttDef = $this->GetExtAttDef();
  2392. return $oExtAttDef->GetBasicFilterSQLExpr($sOpCode, $value);
  2393. }
  2394. public function GetNullValue()
  2395. {
  2396. $oExtAttDef = $this->GetExtAttDef();
  2397. return $oExtAttDef->GetNullValue();
  2398. }
  2399. public function IsNull($proposedValue)
  2400. {
  2401. $oExtAttDef = $this->GetExtAttDef();
  2402. return $oExtAttDef->IsNull($proposedValue);
  2403. }
  2404. public function MakeRealValue($proposedValue, $oHostObj)
  2405. {
  2406. $oExtAttDef = $this->GetExtAttDef();
  2407. return $oExtAttDef->MakeRealValue($proposedValue, $oHostObj);
  2408. }
  2409. public function ScalarToSQL($value)
  2410. {
  2411. // This one could be used in case of filtering only
  2412. $oExtAttDef = $this->GetExtAttDef();
  2413. return $oExtAttDef->ScalarToSQL($value);
  2414. }
  2415. // Do not overload GetSQLExpression here because this is handled in the joins
  2416. //public function GetSQLExpressions($sPrefix = '') {return array();}
  2417. // Here, we get the data...
  2418. public function FromSQLToValue($aCols, $sPrefix = '')
  2419. {
  2420. $oExtAttDef = $this->GetExtAttDef();
  2421. return $oExtAttDef->FromSQLToValue($aCols, $sPrefix);
  2422. }
  2423. public function GetAsHTML($value, $oHostObject = null)
  2424. {
  2425. $oExtAttDef = $this->GetExtAttDef();
  2426. return $oExtAttDef->GetAsHTML($value);
  2427. }
  2428. public function GetAsXML($value, $oHostObject = null)
  2429. {
  2430. $oExtAttDef = $this->GetExtAttDef();
  2431. return $oExtAttDef->GetAsXML($value);
  2432. }
  2433. public function GetAsCSV($value, $sSeparator = ',', $sTestQualifier = '"', $oHostObject = null)
  2434. {
  2435. $oExtAttDef = $this->GetExtAttDef();
  2436. return $oExtAttDef->GetAsCSV($value, $sSeparator, $sTestQualifier);
  2437. }
  2438. }
  2439. /**
  2440. * Map a varchar column to an URL (formats the ouput in HMTL)
  2441. *
  2442. * @package iTopORM
  2443. */
  2444. class AttributeURL extends AttributeString
  2445. {
  2446. static protected function ListExpectedParams()
  2447. {
  2448. //return parent::ListExpectedParams();
  2449. return array_merge(parent::ListExpectedParams(), array("target"));
  2450. }
  2451. public function GetEditClass() {return "String";}
  2452. public function GetAsHTML($sValue, $oHostObject = null)
  2453. {
  2454. $sTarget = $this->Get("target");
  2455. if (empty($sTarget)) $sTarget = "_blank";
  2456. $sLabel = Str::pure2html($sValue);
  2457. if (strlen($sLabel) > 40)
  2458. {
  2459. // Truncate the length to about 40 characters, by removing the middle
  2460. $sLabel = substr($sLabel, 0, 25).'...'.substr($sLabel, -15);
  2461. }
  2462. return "<a target=\"$sTarget\" href=\"$sValue\">$sLabel</a>";
  2463. }
  2464. public function GetValidationPattern()
  2465. {
  2466. return "^(http|https|ftp)\://[a-zA-Z0-9\-\.]+(:[a-zA-Z0-9]*)?/?([a-zA-Z0-9\-\._\?\,\'/\\\+&amp;%\$#\=~])*$";
  2467. }
  2468. }
  2469. /**
  2470. * A blob is an ormDocument, it is stored as several columns in the database
  2471. *
  2472. * @package iTopORM
  2473. */
  2474. class AttributeBlob extends AttributeDefinition
  2475. {
  2476. static protected function ListExpectedParams()
  2477. {
  2478. return array_merge(parent::ListExpectedParams(), array("depends_on"));
  2479. }
  2480. public function GetEditClass() {return "Document";}
  2481. public function IsDirectField() {return true;}
  2482. public function IsScalar() {return true;}
  2483. public function IsWritable() {return true;}
  2484. public function GetDefaultValue() {return "";}
  2485. public function IsNullAllowed() {return $this->GetOptional("is_null_allowed", false);}
  2486. // Facilitate things: allow the user to Set the value from a string
  2487. public function MakeRealValue($proposedValue, $oHostObj)
  2488. {
  2489. if (!is_object($proposedValue))
  2490. {
  2491. return new ormDocument($proposedValue, 'text/plain');
  2492. }
  2493. return $proposedValue;
  2494. }
  2495. public function GetSQLExpressions($sPrefix = '')
  2496. {
  2497. if ($sPrefix == '')
  2498. {
  2499. $sPrefix = $this->GetCode();
  2500. }
  2501. $aColumns = array();
  2502. // Note: to optimize things, the existence of the attribute is determined by the existence of one column with an empty suffix
  2503. $aColumns[''] = $sPrefix.'_mimetype';
  2504. $aColumns['_data'] = $sPrefix.'_data';
  2505. $aColumns['_filename'] = $sPrefix.'_filename';
  2506. return $aColumns;
  2507. }
  2508. public function FromSQLToValue($aCols, $sPrefix = '')
  2509. {
  2510. if (!isset($aCols[$sPrefix]))
  2511. {
  2512. $sAvailable = implode(', ', array_keys($aCols));
  2513. throw new MissingColumnException("Missing column '$sPrefix' from {$sAvailable}");
  2514. }
  2515. $sMimeType = $aCols[$sPrefix];
  2516. if (!isset($aCols[$sPrefix.'_data']))
  2517. {
  2518. $sAvailable = implode(', ', array_keys($aCols));
  2519. throw new MissingColumnException("Missing column '".$sPrefix."_data' from {$sAvailable}");
  2520. }
  2521. $data = $aCols[$sPrefix.'_data'];
  2522. if (!isset($aCols[$sPrefix.'_filename']))
  2523. {
  2524. $sAvailable = implode(', ', array_keys($aCols));
  2525. throw new MissingColumnException("Missing column '".$sPrefix."_filename' from {$sAvailable}");
  2526. }
  2527. $sFileName = $aCols[$sPrefix.'_filename'];
  2528. $value = new ormDocument($data, $sMimeType, $sFileName);
  2529. return $value;
  2530. }
  2531. public function GetSQLValues($value)
  2532. {
  2533. // #@# Optimization: do not load blobs anytime
  2534. // As per mySQL doc, selecting blob columns will prevent mySQL from
  2535. // using memory in case a temporary table has to be created
  2536. // (temporary tables created on disk)
  2537. // We will have to remove the blobs from the list of attributes when doing the select
  2538. // then the use of Get() should finalize the load
  2539. if ($value instanceOf ormDocument)
  2540. {
  2541. $aValues = array();
  2542. $aValues[$this->GetCode().'_data'] = $value->GetData();
  2543. $aValues[$this->GetCode().'_mimetype'] = $value->GetMimeType();
  2544. $aValues[$this->GetCode().'_filename'] = $value->GetFileName();
  2545. }
  2546. else
  2547. {
  2548. $aValues = array();
  2549. $aValues[$this->GetCode().'_data'] = '';
  2550. $aValues[$this->GetCode().'_mimetype'] = '';
  2551. $aValues[$this->GetCode().'_filename'] = '';
  2552. }
  2553. return $aValues;
  2554. }
  2555. public function GetSQLColumns()
  2556. {
  2557. $aColumns = array();
  2558. $aColumns[$this->GetCode().'_data'] = 'LONGBLOB'; // 2^32 (4 Gb)
  2559. $aColumns[$this->GetCode().'_mimetype'] = 'VARCHAR(255)';
  2560. $aColumns[$this->GetCode().'_filename'] = 'VARCHAR(255)';
  2561. return $aColumns;
  2562. }
  2563. public function GetFilterDefinitions()
  2564. {
  2565. return array();
  2566. // still not working... see later...
  2567. return array(
  2568. $this->GetCode().'->filename' => new FilterFromAttribute($this, '_filename'),
  2569. $this->GetCode().'_mimetype' => new FilterFromAttribute($this, '_mimetype'),
  2570. $this->GetCode().'_mimetype' => new FilterFromAttribute($this, '_mimetype')
  2571. );
  2572. }
  2573. public function GetBasicFilterOperators()
  2574. {
  2575. return array();
  2576. }
  2577. public function GetBasicFilterLooseOperator()
  2578. {
  2579. return '=';
  2580. }
  2581. public function GetBasicFilterSQLExpr($sOpCode, $value)
  2582. {
  2583. return 'true';
  2584. }
  2585. public function GetAsHTML($value, $oHostObject = null)
  2586. {
  2587. if (is_object($value))
  2588. {
  2589. return $value->GetAsHTML();
  2590. }
  2591. }
  2592. public function GetAsCSV($sValue, $sSeparator = ',', $sTextQualifier = '"', $oHostObject = null)
  2593. {
  2594. return ''; // Not exportable in CSV !
  2595. }
  2596. public function GetAsXML($value, $oHostObject = null)
  2597. {
  2598. return ''; // Not exportable in XML, or as CDATA + some subtags ??
  2599. }
  2600. }
  2601. /**
  2602. * One way encrypted (hashed) password
  2603. */
  2604. class AttributeOneWayPassword extends AttributeDefinition
  2605. {
  2606. static protected function ListExpectedParams()
  2607. {
  2608. return array_merge(parent::ListExpectedParams(), array("depends_on"));
  2609. }
  2610. public function GetEditClass() {return "One Way Password";}
  2611. public function IsDirectField() {return true;}
  2612. public function IsScalar() {return true;}
  2613. public function IsWritable() {return true;}
  2614. public function GetDefaultValue() {return "";}
  2615. public function IsNullAllowed() {return $this->GetOptional("is_null_allowed", false);}
  2616. // Facilitate things: allow the user to Set the value from a string or from an ormPassword (already encrypted)
  2617. public function MakeRealValue($proposedValue, $oHostObj)
  2618. {
  2619. $oPassword = $proposedValue;
  2620. if (!is_object($oPassword))
  2621. {
  2622. $oPassword = new ormPassword('', '');
  2623. $oPassword->SetPassword($proposedValue);
  2624. }
  2625. return $oPassword;
  2626. }
  2627. public function GetSQLExpressions($sPrefix = '')
  2628. {
  2629. if ($sPrefix == '')
  2630. {
  2631. $sPrefix = $this->GetCode();
  2632. }
  2633. $aColumns = array();
  2634. // Note: to optimize things, the existence of the attribute is determined by the existence of one column with an empty suffix
  2635. $aColumns[''] = $sPrefix.'_hash';
  2636. $aColumns['_salt'] = $sPrefix.'_salt';
  2637. return $aColumns;
  2638. }
  2639. public function FromSQLToValue($aCols, $sPrefix = '')
  2640. {
  2641. if (!isset($aCols[$sPrefix]))
  2642. {
  2643. $sAvailable = implode(', ', array_keys($aCols));
  2644. throw new MissingColumnException("Missing column '$sPrefix' from {$sAvailable}");
  2645. }
  2646. $hashed = $aCols[$sPrefix];
  2647. if (!isset($aCols[$sPrefix.'_salt']))
  2648. {
  2649. $sAvailable = implode(', ', array_keys($aCols));
  2650. throw new MissingColumnException("Missing column '".$sPrefix."_salt' from {$sAvailable}");
  2651. }
  2652. $sSalt = $aCols[$sPrefix.'_salt'];
  2653. $value = new ormPassword($hashed, $sSalt);
  2654. return $value;
  2655. }
  2656. public function GetSQLValues($value)
  2657. {
  2658. // #@# Optimization: do not load blobs anytime
  2659. // As per mySQL doc, selecting blob columns will prevent mySQL from
  2660. // using memory in case a temporary table has to be created
  2661. // (temporary tables created on disk)
  2662. // We will have to remove the blobs from the list of attributes when doing the select
  2663. // then the use of Get() should finalize the load
  2664. if ($value instanceOf ormPassword)
  2665. {
  2666. $aValues = array();
  2667. $aValues[$this->GetCode().'_hash'] = $value->GetHash();
  2668. $aValues[$this->GetCode().'_salt'] = $value->GetSalt();
  2669. }
  2670. else
  2671. {
  2672. $aValues = array();
  2673. $aValues[$this->GetCode().'_hash'] = '';
  2674. $aValues[$this->GetCode().'_salt'] = '';
  2675. }
  2676. return $aValues;
  2677. }
  2678. public function GetSQLColumns()
  2679. {
  2680. $aColumns = array();
  2681. $aColumns[$this->GetCode().'_hash'] = 'TINYBLOB';
  2682. $aColumns[$this->GetCode().'_salt'] = 'TINYBLOB';
  2683. return $aColumns;
  2684. }
  2685. public function GetImportColumns()
  2686. {
  2687. $aColumns = array();
  2688. $aColumns[$this->GetCode()] = 'TINYTEXT';
  2689. return $aColumns;
  2690. }
  2691. public function FromImportToValue($aCols, $sPrefix = '')
  2692. {
  2693. if (!isset($aCols[$sPrefix]))
  2694. {
  2695. $sAvailable = implode(', ', array_keys($aCols));
  2696. throw new MissingColumnException("Missing column '$sPrefix' from {$sAvailable}");
  2697. }
  2698. $sClearPwd = $aCols[$sPrefix];
  2699. $oPassword = new ormPassword('', '');
  2700. $oPassword->SetPassword($sClearPwd);
  2701. return $oPassword;
  2702. }
  2703. public function GetFilterDefinitions()
  2704. {
  2705. return array();
  2706. // still not working... see later...
  2707. }
  2708. public function GetBasicFilterOperators()
  2709. {
  2710. return array();
  2711. }
  2712. public function GetBasicFilterLooseOperator()
  2713. {
  2714. return '=';
  2715. }
  2716. public function GetBasicFilterSQLExpr($sOpCode, $value)
  2717. {
  2718. return 'true';
  2719. }
  2720. public function GetAsHTML($value, $oHostObject = null)
  2721. {
  2722. if (is_object($value))
  2723. {
  2724. return $value->GetAsHTML();
  2725. }
  2726. }
  2727. public function GetAsCSV($sValue, $sSeparator = ',', $sTextQualifier = '"', $oHostObject = null)
  2728. {
  2729. return ''; // Not exportable in CSV
  2730. }
  2731. public function GetAsXML($value, $oHostObject = null)
  2732. {
  2733. return ''; // Not exportable in XML
  2734. }
  2735. }
  2736. // Indexed array having two dimensions
  2737. class AttributeTable extends AttributeText
  2738. {
  2739. public function GetEditClass() {return "Text";}
  2740. protected function GetSQLCol() {return "TEXT";}
  2741. public function GetMaxSize()
  2742. {
  2743. return null;
  2744. }
  2745. // Facilitate things: allow the user to Set the value from a string
  2746. public function MakeRealValue($proposedValue, $oHostObj)
  2747. {
  2748. if (!is_array($proposedValue))
  2749. {
  2750. return array(0 => array(0 => $proposedValue));
  2751. }
  2752. return $proposedValue;
  2753. }
  2754. public function FromSQLToValue($aCols, $sPrefix = '')
  2755. {
  2756. try
  2757. {
  2758. $value = @unserialize($aCols[$sPrefix.'']);
  2759. if ($value === false)
  2760. {
  2761. $value = $this->MakeRealValue($aCols[$sPrefix.''], null);
  2762. }
  2763. }
  2764. catch(Exception $e)
  2765. {
  2766. $value = $this->MakeRealValue($aCols[$sPrefix.''], null);
  2767. }
  2768. return $value;
  2769. }
  2770. public function GetSQLValues($value)
  2771. {
  2772. $aValues = array();
  2773. $aValues[$this->Get("sql")] = serialize($value);
  2774. return $aValues;
  2775. }
  2776. public function GetAsHTML($value, $oHostObject = null)
  2777. {
  2778. if (!is_array($value))
  2779. {
  2780. throw new CoreException('Expecting an array', array('found' => get_class($value)));
  2781. }
  2782. if (count($value) == 0)
  2783. {
  2784. return "";
  2785. }
  2786. $sRes = "<TABLE class=\"listResults\">";
  2787. $sRes .= "<TBODY>";
  2788. foreach($value as $iRow => $aRawData)
  2789. {
  2790. $sRes .= "<TR>";
  2791. foreach ($aRawData as $iCol => $cell)
  2792. {
  2793. $sCell = str_replace("\n", "<br>\n", Str::pure2html((string)$cell));
  2794. $sRes .= "<TD>$sCell</TD>";
  2795. }
  2796. $sRes .= "</TR>";
  2797. }
  2798. $sRes .= "</TBODY>";
  2799. $sRes .= "</TABLE>";
  2800. return $sRes;
  2801. }
  2802. }
  2803. // The PHP value is a hash array, it is stored as a TEXT column
  2804. class AttributePropertySet extends AttributeTable
  2805. {
  2806. public function GetEditClass() {return "Text";}
  2807. protected function GetSQLCol() {return "TEXT";}
  2808. // Facilitate things: allow the user to Set the value from a string
  2809. public function MakeRealValue($proposedValue, $oHostObj)
  2810. {
  2811. if (!is_array($proposedValue))
  2812. {
  2813. return array('?' => (string)$proposedValue);
  2814. }
  2815. return $proposedValue;
  2816. }
  2817. public function GetAsHTML($value, $oHostObject = null)
  2818. {
  2819. if (!is_array($value))
  2820. {
  2821. throw new CoreException('Expecting an array', array('found' => get_class($value)));
  2822. }
  2823. if (count($value) == 0)
  2824. {
  2825. return "";
  2826. }
  2827. $sRes = "<TABLE class=\"listResults\">";
  2828. $sRes .= "<TBODY>";
  2829. foreach($value as $sProperty => $sValue)
  2830. {
  2831. $sRes .= "<TR>";
  2832. $sCell = str_replace("\n", "<br>\n", Str::pure2html((string)$sValue));
  2833. $sRes .= "<TD class=\"label\">$sProperty</TD><TD>$sCell</TD>";
  2834. $sRes .= "</TR>";
  2835. }
  2836. $sRes .= "</TBODY>";
  2837. $sRes .= "</TABLE>";
  2838. return $sRes;
  2839. }
  2840. }
  2841. /**
  2842. * The attribute dedicated to the friendly name automatic attribute (not written)
  2843. *
  2844. * @package iTopORM
  2845. */
  2846. class AttributeComputedFieldVoid extends AttributeDefinition
  2847. {
  2848. static protected function ListExpectedParams()
  2849. {
  2850. return array_merge(parent::ListExpectedParams(), array());
  2851. }
  2852. public function GetEditClass() {return "";}
  2853. public function GetValuesDef() {return null;}
  2854. public function GetPrerequisiteAttributes() {return $this->Get("depends_on");}
  2855. public function IsDirectField() {return true;}
  2856. public function IsScalar() {return true;}
  2857. public function IsWritable() {return false;}
  2858. public function GetSQLExpr() {return null;}
  2859. public function GetDefaultValue() {return $this->MakeRealValue("", null);}
  2860. public function IsNullAllowed() {return false;}
  2861. //
  2862. // protected function ScalarToSQL($value) {return $value;} // format value as a valuable SQL literal (quoted outside)
  2863. public function GetSQLExpressions($sPrefix = '')
  2864. {
  2865. if ($sPrefix == '')
  2866. {
  2867. $sPrefix = $this->GetCode();
  2868. }
  2869. return array('' => $sPrefix);
  2870. }
  2871. public function FromSQLToValue($aCols, $sPrefix = '')
  2872. {
  2873. return null;
  2874. }
  2875. public function GetSQLValues($value)
  2876. {
  2877. return array();
  2878. }
  2879. public function GetSQLColumns()
  2880. {
  2881. return array();
  2882. }
  2883. public function GetFilterDefinitions()
  2884. {
  2885. return array($this->GetCode() => new FilterFromAttribute($this));
  2886. }
  2887. public function GetBasicFilterOperators()
  2888. {
  2889. return array();
  2890. }
  2891. public function GetBasicFilterLooseOperator()
  2892. {
  2893. return "=";
  2894. }
  2895. public function GetBasicFilterSQLExpr($sOpCode, $value)
  2896. {
  2897. $sQValue = CMDBSource::Quote($value);
  2898. switch ($sOpCode)
  2899. {
  2900. case '!=':
  2901. return $this->GetSQLExpr()." != $sQValue";
  2902. break;
  2903. case '=':
  2904. default:
  2905. return $this->GetSQLExpr()." = $sQValue";
  2906. }
  2907. }
  2908. }
  2909. /**
  2910. * The attribute dedicated to the friendly name automatic attribute (not written)
  2911. *
  2912. * @package iTopORM
  2913. */
  2914. class AttributeFriendlyName extends AttributeComputedFieldVoid
  2915. {
  2916. public function __construct($sCode, $sExtKeyAttCode)
  2917. {
  2918. $this->m_sCode = $sCode;
  2919. $aParams = array();
  2920. // $aParams["is_null_allowed"] = false,
  2921. $aParams["default_value"] = '';
  2922. $aParams["extkey_attcode"] = $sExtKeyAttCode;
  2923. parent::__construct($sCode, $aParams);
  2924. $this->m_sValue = $this->Get("default_value");
  2925. }
  2926. public function GetKeyAttCode() {return $this->Get("extkey_attcode");}
  2927. // n/a, the friendly name is made of a complex expression (see GetNameSpec)
  2928. protected function GetSQLCol() {return "";}
  2929. public function FromSQLToValue($aCols, $sPrefix = '')
  2930. {
  2931. $sValue = $aCols[$sPrefix];
  2932. return $sValue;
  2933. }
  2934. /**
  2935. * Encrypt the value before storing it in the database
  2936. */
  2937. public function GetSQLValues($value)
  2938. {
  2939. return array();
  2940. }
  2941. public function IsWritable()
  2942. {
  2943. return false;
  2944. }
  2945. public function IsDirectField()
  2946. {
  2947. return false;
  2948. }
  2949. public function SetFixedValue($sValue)
  2950. {
  2951. $this->m_sValue = $sValue;
  2952. }
  2953. public function GetDefaultValue()
  2954. {
  2955. return $this->m_sValue;
  2956. }
  2957. public function GetAsHTML($sValue, $oHostObject = null)
  2958. {
  2959. return Str::pure2html((string)$sValue);
  2960. }
  2961. }
  2962. ?>