tripal_chado.variables.api.inc 47 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108
  1. <?php
  2. /**
  3. * @file
  4. * This API generates objects containing the full details of a record(s) in chado.
  5. */
  6. /**
  7. * Generates an object containing the full details of a record(s) in Chado.
  8. *
  9. * The object returned contains key/value pairs where the keys are the fields
  10. * in the Chado table.
  11. *
  12. * The returned object differs from the array returned by chado_select_record()
  13. * as all foreign key relationships in the Chado table have been followed and
  14. * those data are also included. This function automatically excludes some
  15. * fields and tables. Fields that are extremely long, such as text fields are
  16. * automatically excluded to prevent long page loads. Linking tables that have
  17. * a many-to-one relationship with the record are also excluded. Use the
  18. * chado_expand_var() to manually add in excluded fields and data from linker
  19. * tables.
  20. *
  21. * Example Usage:
  22. * @code
  23. * $values = array(
  24. * 'name' => 'Medtr4g030710'
  25. * );
  26. * $feature = chado_generate_var('feature', $values);
  27. * @endcode
  28. *
  29. * The $values array passed to this fucntion can be of the same format used
  30. * by the chado_select_record() function.
  31. *
  32. * If a field is a foreign key then its value is an object that contains
  33. * key/value pairs for that record. The following code provides examples
  34. * for retrieving values associated with the record, either as columns in the
  35. * original Chado table or as columns in linked records through foreign keys:
  36. * @code
  37. * // Get the feature name.
  38. * $name = $feature->name;
  39. * // Get the feature unique name.
  40. * $uniquename = $feature->uniquename;
  41. * // Get the feature type. Because the type name is obtained via
  42. * // a foreign key with the cvterm table, the objects are nested
  43. * // and we can follow the foreign key fields to retrieve those values
  44. * $type = $feature->type_id->name;
  45. * // Get the name of the vocabulary.
  46. * $cv = $feature->type_id->cv_id->name;
  47. * // Get the vocabulary id.
  48. * $cv_id = $feature->type_id->cv_id->cv_id;
  49. * @endcode
  50. *
  51. *
  52. * This will return an object if there is only one feature with the name
  53. * Medtr4g030710 or it will return an array of feature objects if more than one
  54. * feature has that name.
  55. *
  56. * Note to Module Designers: Fields can be excluded by default from these
  57. * objects by implementing one of the following hooks:
  58. * - hook_exclude_field_from_tablename_by_default (where tablename is the
  59. * name of the table): This hook allows you to add fields to be excluded
  60. * on a per table basis. Simply implement this hook to return an array of
  61. * fields to be excluded. The following example will ensure that
  62. * feature.residues is excluded from a feature object by default:
  63. * @code
  64. * mymodule_exclude_field_from_feature_by_default() {
  65. * return array('residues' => TRUE);
  66. * }
  67. * @endcode
  68. * - hook_exclude_type_by_default:
  69. * This hook allows you to exclude fields using conditional. This
  70. * function should return an array of postgresql types mapped to criteria.
  71. * If the field types of any table match the criteria then the field
  72. * is excluded. Tokens available in criteria are &gt;field_value&lt;
  73. * and &gt;field_name&lt;. The following example will exclude all text
  74. * fields with a length > 50. Thus if $feature.residues is longer than
  75. * 50 it will be excluded, otherwise it will be added.
  76. * @code
  77. * mymodule_exclude_type_by_default() {
  78. * return array('text' => 'length(&gt;field_value&lt; ) > 50');
  79. * }
  80. * @endcode
  81. *
  82. *
  83. * @param $table
  84. * The name of the base table to generate a variable for
  85. * @param $values
  86. * A select values array that selects the records you want from the base table
  87. * (this has the same form as chado_select_record)
  88. * @param $base_options
  89. * An array containing options for the base table. For example, an
  90. * option of 'order_by' may be used to sort results in the base table
  91. * if more than one are returned. The options must be compatible with
  92. * the options accepted by the chado_select_record() function.
  93. * Additionally, These options are available for this function:
  94. * -return_array:
  95. * can be provided to force the function to always return an array. Default
  96. * behavior is to return a single record if only one record exists or to
  97. * return an array if multiple records exist.
  98. * - include_fk:
  99. * an array of FK relationships to follow. By default, the
  100. * chado_select_record function will follow all FK relationships but this
  101. * may generate more queries then is desired slowing down this function
  102. * call when there are lots of FK relationships to follow. Provide an
  103. * array specifying the fields to include. For example, if expanding a
  104. * property table (e.g. featureprop) and you want the CV and accession
  105. * but do not want the DB the following array would work:
  106. *
  107. * $table_options = array(
  108. * 'include_fk' => array(
  109. * 'type_id' => array(
  110. * 'cv_id' => 1,
  111. * 'dbxref_id' => 1,
  112. * )
  113. * )
  114. * );
  115. *
  116. * The above array will expand the 'type_id' of the property table but only
  117. * further expand the cv_id and the dbxref_id and will go no further.
  118. * - pager:
  119. * Use this option if it is desired to return only a subset of results
  120. * so that they may be shown within a Drupal-style pager. This should be
  121. * an array with two keys: 'limit' and 'element'. The value of 'limit'
  122. * should specify the number of records to return and 'element' is a
  123. * unique integer to differentiate between pagers when more than one
  124. * appear on a page. The 'element' should start with zero and increment by
  125. * one for each pager.
  126. * @return
  127. * Either an object (if only one record was selected from the base table)
  128. * or an array of objects (if more than one record was selected from the
  129. * base table). If the option 'return_array' is provided the function
  130. * always returns an array.
  131. *
  132. * @ingroup tripal_chado_query_api
  133. */
  134. function chado_generate_var($table, $values, $base_options = array()) {
  135. $all = new stdClass();
  136. $return_array = 0;
  137. if (array_key_exists('return_array', $base_options)) {
  138. $return_array = 1;
  139. }
  140. $include_fk = FALSE;
  141. if (array_key_exists('include_fk', $base_options)) {
  142. $include_fk = $base_options['include_fk'];
  143. }
  144. $pager = array();
  145. if (array_key_exists('pager', $base_options)) {
  146. $pager = $base_options['pager'];
  147. }
  148. // get description for the current table----------------------------------------------------------
  149. $table_desc = chado_get_schema($table);
  150. if (!$table_desc or count($table_desc) == 0) {
  151. tripal_report_error('tripal_chado', TRIPAL_ERROR,
  152. "chado_generate_var: The table '%table' has not been defined. " .
  153. "and cannot be expanded. If this is a custom table, please add it using the Tripal " .
  154. "custom table interface.", array('%table' => $table));
  155. if ($return_array) {
  156. return array();
  157. }
  158. return FALSE;
  159. }
  160. $table_primary_key = $table_desc['primary key'][0];
  161. $table_columns = array_keys($table_desc['fields']);
  162. // Expandable fields without value needed for criteria--------------------------------------------
  163. // Add in the default expandable arrays
  164. // These are used for later expanding fields, tables, foreign keys and nodes
  165. $all->expandable_fields = array();
  166. $all->expandable_foreign_keys = array();
  167. if (array_key_exists('referring_tables', $table_desc) and $table_desc['referring_tables']) {
  168. $all->expandable_tables = $table_desc['referring_tables'];
  169. }
  170. else {
  171. $all->expandable_tables = array();
  172. }
  173. $all->expandable_nodes = array();
  174. // Get fields to be removed by name.................................
  175. // This gets all implementations of hook_exclude_field_from_<table>_by_default()
  176. // where <table> is the current table a variable is being created for.
  177. // This allows modules to specify that some fields should be excluded by default
  178. // For example, tripal core provides a tripal_chado_exclude_field_from_feature_by_default()
  179. // which says that we usually don't want to include the residues field by default since
  180. // it can be very large and cause performance issues.
  181. // If a field is excluded by default it can always be expanded at a later point by calling
  182. // chado_expand_var($chado_var, 'field', <field name as shown in expandable_fields array>);
  183. // First get an array of all the fields to be removed for the current table
  184. // module_invoke_all() is drupal's way of invoking all implementations of the specified
  185. // hook and merging all of the results.
  186. // $fields_to_remove should be an array with the keys matching field names
  187. // and the values being strings to be executed using php_eval() to determine whether
  188. // to exclude the field (evaluates to TRUE) or not (evaluates to FALSE)
  189. $fields_to_remove = module_invoke_all('exclude_field_from_' . $table . '_by_default');
  190. // Now, for each field to be removed
  191. foreach ($fields_to_remove as $field_name => $criteria) {
  192. //replace <field_name> with the current field name
  193. $criteria = preg_replace('/<field_name> /', addslashes($field_name), $criteria);
  194. // if field_value needed we can't deal with this field yet
  195. if (preg_match('/<field_value> /', $criteria)) {
  196. break;
  197. }
  198. //if criteria then remove from query
  199. // @coder-ignore: only module designers can populate $criteria -not a security risk
  200. $success = php_eval('<?php return ' . $criteria . '; ?>');
  201. if ($success) {
  202. unset($table_columns[array_search($field_name, $table_columns)]);
  203. unset($fields_to_remove[$field_name]);
  204. $all->expandable_fields[] = $table . '.' . $field_name;
  205. }
  206. }
  207. // Get fields to be removed by type................................
  208. // This gets all implementations of hook_exclude_type_by_default().
  209. // This allows modules to specify that some types of fields should be excluded by default
  210. // For example, tripal core provides a tripal_chado_exclude_type_by_default() which says
  211. // that text fields are often very large and if they are longer than 250 characters then
  212. // we want to exclude them by default
  213. // If a field is excluded by default it can always be expanded at a later point by calling
  214. // chado_expand_var($chado_var, 'field', <field name as shown in expandable_fields array>);
  215. // First get an array of all the types of fields to be removed for the current table
  216. // module_invoke_all() is drupal's way of invoking all implementations of the specified
  217. // hook and merging all of the results.
  218. // $types_to_remove should be an array with the keys matching field names
  219. // and the values being strings to be executed using php_eval() to determine whether
  220. // to exclude the field (evaluates to TRUE) or not (evaluates to FALSE)
  221. // (ie: array('text' => 'strlen("<field_value> ") > 100');
  222. $types_to_remove = module_invoke_all('exclude_type_by_default');
  223. // Get a list of all the types of fields
  224. // the key is the type of field and the value is an array of fields of this type
  225. $field_types = array();
  226. foreach ($table_desc['fields'] as $field_name => $field_array) {
  227. $field_types[$field_array['type']][] = $field_name;
  228. }
  229. // We want to use the types to remove in conjunction with our table field descriptions
  230. // to determine which fields might need to be removed
  231. foreach ($types_to_remove as $field_type => $criteria) {
  232. // if there are fields of that type to remove
  233. if (isset($field_types[$field_type])) {
  234. // Do any processing needed on the php criteria
  235. //replace <field_name> with the current field name
  236. $criteria = preg_replace('/<field_name> /', addslashes($field_name), $criteria);
  237. foreach ($field_types[$field_type] as $field_name) {
  238. // if field_value needed we can't deal with this field yet
  239. if (preg_match('/<field_value>/', $criteria)) {
  240. $fields_to_remove[$field_name] = $criteria;
  241. continue;
  242. }
  243. // if criteria then remove from query
  244. // (as long as <field_value> is not needed for the criteria to be evaluated)
  245. // @coder-ignore: only module designers can populate $criteria -not a security risk
  246. $success = php_eval('<?php return ' . $criteria . '; ?>');
  247. if ($success) {
  248. unset($table_columns[array_search($field_name, $table_columns)]);
  249. $all->expandable_fields[] = $table . '.' . $field_name;
  250. }
  251. } //end of foreach field of that type
  252. }
  253. } //end of foreach type to be removed
  254. // get the values for the record in the current table---------------------------------------------
  255. $results = chado_select_record($table, $table_columns, $values, $base_options);
  256. if ($results) {
  257. // Iterate through each result.
  258. foreach ($results as $key => $object) {
  259. // Add empty expandable_x arrays
  260. $object->expandable_fields = $all->expandable_fields;
  261. $object->expandable_foreign_keys = $all->expandable_foreign_keys;
  262. $object->expandable_tables = $all->expandable_tables;
  263. $object->expandable_nodes = $all->expandable_nodes;
  264. // add curent table
  265. $object->tablename = $table;
  266. // For Tripal v2 compatibility
  267. // check if the current table maps to a node type-----------------------------------------------
  268. // if this table is connected to a node there will be a chado_tablename table in drupal
  269. if (module_exists('tripal_core') and db_table_exists('chado_' . $table)) {
  270. // that has a foreign key to this one ($table_desc['primary key'][0]
  271. // and to the node table (nid)
  272. $sql = "
  273. SELECT $table_primary_key, nid
  274. FROM {chado_$table}
  275. WHERE $table_primary_key = :$table_primary_key
  276. ";
  277. $mapping = db_query($sql, array(":$table_primary_key" => $object->{$table_primary_key}))->fetchObject();
  278. if ($mapping and $mapping->$table_primary_key) {
  279. $object->nid = $mapping->nid;
  280. $object->expandable_nodes[] = $table;
  281. }
  282. }
  283. // Check to see if the current table maps to an entity
  284. $entity_id = db_select('chado_entity', 'ce')
  285. ->fields('ce', array('entity_id'))
  286. ->condition('data_table', $table)
  287. ->condition('record_id', $object->{$table_primary_key})
  288. ->execute()
  289. ->fetchField();
  290. if ($entity_id) {
  291. $object->entity_id = $entity_id;
  292. }
  293. // remove any fields where criteria needs to be evalulated---------------------------------------
  294. // The fields to be removed can be populated by implementing either
  295. // hook_exclude_field_from_<table>_by_default() where <table> is the current table
  296. // OR hook_exclude_type_by_default() where there are fields of the specified type in the current table
  297. // It only reaches this point if the criteria specified for whether or not to
  298. // exclude the field includes <field_value> which means it has to be evaluated after
  299. // the query has been executed
  300. foreach ($fields_to_remove as $field_name => $criteria) {
  301. // If the field is an object then we don't support exclusion of it
  302. // For example, if the field is a foreign key
  303. if (!isset($object->{$field_name})) {
  304. break;
  305. }
  306. // replace <field_value> with the actual value of the field from the query
  307. $criteria = preg_replace('/<field_value>/', addslashes($object->{$field_name}), $criteria);
  308. // evaluate the criteria, if TRUE is returned then exclude the field
  309. // excluded fields can be expanded later by calling
  310. // chado_expand_var($var, 'field', <field name as shown in expandable_fields array>);
  311. $success = php_eval('<?php return ' . $criteria . '; ?>');
  312. if ($success) {
  313. unset($object->{$field_name});
  314. $object->expandable_fields[] = $table . '.' . $field_name;
  315. }
  316. }
  317. // recursively follow foreign key relationships nesting objects as we go------------------------
  318. if (array_key_exists('foreign keys', $table_desc) and $table_desc['foreign keys']) {
  319. foreach ($table_desc['foreign keys'] as $foreign_key_array) {
  320. $foreign_table = $foreign_key_array['table'];
  321. foreach ($foreign_key_array['columns'] as $foreign_key => $primary_key) {
  322. // Note: Foreign key is the field in the current table whereas primary_key is the field in
  323. // the table referenced by the foreign key
  324. //Dont do anything if the foreign key is empty
  325. if (empty($object->{$foreign_key})) {
  326. continue;
  327. }
  328. if (is_array($include_fk)) {
  329. // don't recurse if the callee has supplied an $fk_include list and this
  330. // FK table is not in the list.
  331. if (is_array($include_fk) and !array_key_exists($foreign_key, $include_fk)) {
  332. $object->expandable_foreign_keys[] = $table . '.' . $foreign_key . ' => ' . $foreign_table;
  333. continue;
  334. }
  335. }
  336. // if we have the option but it is not an array then we don't recurse any furutehr
  337. if ($include_fk === TRUE) {
  338. $object->expandable_foreign_keys[] = $table . '.' . $foreign_key . ' => ' . $foreign_table;
  339. continue;
  340. }
  341. // get the record from the foreign table
  342. $foreign_values = array($primary_key => $object->{$foreign_key});
  343. $options = array();
  344. if (is_array($include_fk)) {
  345. $options['include_fk'] = $include_fk[$foreign_key];
  346. }
  347. $foreign_object = chado_generate_var($foreign_table, $foreign_values, $options);
  348. // add the foreign record to the current object in a nested manner
  349. $object->{$foreign_key} = $foreign_object;
  350. // Flatten expandable_x arrays so only in the bottom object
  351. if (property_exists($object->{$foreign_key}, 'expandable_fields') and
  352. is_array($object->{$foreign_key}->expandable_fields)) {
  353. $object->expandable_fields = array_merge(
  354. $object->expandable_fields,
  355. $object->{$foreign_key}->expandable_fields
  356. );
  357. unset($object->{$foreign_key}->expandable_fields);
  358. }
  359. if (property_exists($object->{$foreign_key}, 'expandable_foreign_keys') and
  360. is_array($object->{$foreign_key}->expandable_foreign_keys)) {
  361. $object->expandable_foreign_keys = array_merge(
  362. $object->expandable_foreign_keys,
  363. $object->{$foreign_key}->expandable_foreign_keys
  364. );
  365. unset($object->{$foreign_key}->expandable_foreign_keys);
  366. }
  367. if (property_exists($object->{$foreign_key}, 'expandable_tables') and
  368. is_array($object->{$foreign_key}->expandable_tables)) {
  369. $object->expandable_tables = array_merge(
  370. $object->expandable_tables,
  371. $object->{$foreign_key}->expandable_tables
  372. );
  373. unset($object->{$foreign_key}->expandable_tables);
  374. }
  375. if (property_exists($object->{$foreign_key}, 'expandable_nodes') and
  376. is_array($object->{$foreign_key}->expandable_nodes)) {
  377. $object->expandable_nodes = array_merge(
  378. $object->expandable_nodes,
  379. $object->{$foreign_key}->expandable_nodes
  380. );
  381. unset($object->{$foreign_key}->expandable_nodes);
  382. }
  383. }
  384. }
  385. $results[$key] = $object;
  386. }
  387. }
  388. }
  389. // convert the results into an array
  390. $results_arr = array();
  391. foreach ($results as $record) {
  392. $results_arr[] = $record;
  393. }
  394. // check only one result returned
  395. if (!$return_array) {
  396. if (sizeof($results_arr) == 1) {
  397. // add results to object
  398. return $results_arr[0];
  399. }
  400. elseif (!empty($results_arr)) {
  401. return $results_arr;
  402. }
  403. else {
  404. // no results returned
  405. }
  406. }
  407. // the caller has requested results are always returned as
  408. // an array
  409. else {
  410. if (!$results_arr) {
  411. return array();
  412. }
  413. else {
  414. return $results_arr;
  415. }
  416. }
  417. }
  418. /**
  419. * Retrieves fields, or tables that were excluded by default from a variable.
  420. *
  421. * The chado_generate_var() function automatically excludes some
  422. * fields and tables from the default form of a variable. Fields that are
  423. * extremely long, such as text fields are automatically excluded to prevent
  424. * long page loads. Linking tables that have a many-to-one relationship with
  425. * the record are also excluded. This function allows for custom expansion
  426. * of the record created by chado_generate_var() by specifyin the field and
  427. * tables that should be added.
  428. *
  429. * Example Usage:
  430. * @code
  431. * // Get a chado object to be expanded
  432. * $values = array(
  433. * 'name' => 'Medtr4g030710'
  434. * );
  435. * $features = chado_generate_var('feature', $values);
  436. * // Expand the feature.residues field
  437. * $feature = chado_expand_var($feature, 'field', 'feature.residues');
  438. * // Expand the feature properties (featureprop table)
  439. * $feature = chado_expand_var($feature, 'table', 'featureprop');
  440. * @endcode
  441. *
  442. * If a field is requested, it's value is added where it normally is expected
  443. * in the record. If a table is requested then a new key/value element is
  444. * added to the record. The key is the table's name and the value is an
  445. * array of records (of the same type created by chado_generate_var()). For
  446. * example, expanding a 'feature' record to include a 'pub' record via the
  447. * 'feature_pub' table. The following provides a simple example for how
  448. * the 'feature_pub' table is added.
  449. *
  450. * @code
  451. * array(
  452. * 'feature_id' => 1
  453. * 'name' => 'blah',
  454. * 'uniquename' => 'blah',
  455. * ....
  456. * 'feature_pub => array(
  457. * [pub object],
  458. * [pub object],
  459. * [pub object],
  460. * [pub object],
  461. * )
  462. * )
  463. * @endcode
  464. *
  465. * where [pub object] is a record of a publication as created by
  466. * chado_generate_var().
  467. *
  468. * If the requested table has multiple foreign keys, such as the 'featureloc'
  469. * or 'feature_genotype' tables, then an additional level is added to the
  470. * array where the foreign key column names are added. An example feature
  471. * record with an expanded featureloc table is shown below:
  472. *
  473. * @code
  474. * array(
  475. * 'feature_id' => 1
  476. * 'name' => 'blah',
  477. * 'uniquename' => 'blah',
  478. * ....
  479. * 'featureloc => array(
  480. * 'srcfeature_id' => array(
  481. * [feature object],
  482. * ...
  483. * )
  484. * 'feature_id' => array(
  485. * [feature object],
  486. * ...
  487. * )
  488. * )
  489. * )
  490. * @endcode
  491. *
  492. * @param $object
  493. * This must be an object generated using chado_generate_var()
  494. * @param $type
  495. * Indicates what is being expanded. Must be one of 'field', 'foreign_key',
  496. * 'table', 'node'. While field and node are self-explanitory, it might help
  497. * to note that 'table' refers to tables that have a foreign key pointing to
  498. * the current table (ie: featureprop is a table that can be expanded for
  499. * features) and 'foreign_key' expands a foreign key in the current table
  500. * that might have been excluded (ie: feature.type_id for features).
  501. * @param $to_expand
  502. * The name of the field/foreign_key/table/node to be expanded
  503. * @param $table_options
  504. * - order_by:
  505. * An array containing options for the base table. For example, an
  506. * option of 'order_by' may be used to sort results in the base table
  507. * if more than one are returned. The options must be compatible with
  508. * the options accepted by the chado_select_record() function.
  509. * - return_array:
  510. * Additionally, The option 'return_array' can be provided to force
  511. * the function to expand tables as an array. Default behavior is to expand
  512. * a table as single record if only one record exists or to expand as an array if
  513. * multiple records exist.
  514. * - include_fk:
  515. * an array of FK relationships to follow. By default, the
  516. * chado_expand_var function will follow all FK relationships but this
  517. * may generate more queries then is desired slowing down this function call when
  518. * there are lots of FK relationships to follow. Provide an array specifying the
  519. * fields to include. For example, if expanding a property table (e.g. featureprop)
  520. * and you want the CV and accession but do not want the DB the following
  521. * array would work:
  522. * $table_options = array(
  523. * 'include_fk' => array(
  524. * 'type_id' => array(
  525. * 'cv_id' => 1,
  526. * 'dbxref_id' => 1,
  527. * )
  528. * )
  529. * );
  530. *
  531. * The above array will expand the 'type_id' of the property table but only
  532. * further expand the cv_id and the dbxref_id and will go no further.
  533. * - pager:
  534. * Use this option if it is desired to return only a subset of results
  535. * so that they may be shown within a Drupal-style pager. This should be
  536. * an array with two keys: 'limit' and 'element'. The value of 'limit'
  537. * should specify the number of records to return and 'element' is a
  538. * unique integer to differentiate between pagers when more than one
  539. * appear on a page. The 'element' should start with zero and increment by
  540. * one for each pager. This only works when type is a 'table'.
  541. * - filter:
  542. * This options is only used where type=table and allows you to
  543. * expand only a subset of results based on the given criteria. Criteria
  544. * should provided as an array of [field name] => [value] similar to the
  545. * values array provided to chado_generate_var(). For example, when expanding
  546. * the featureprop table for a feature, you will already get only properties
  547. * for that feature, this option allows you to further get only properties
  548. * of a given type by passing in array('type_id' => array('name' => [name of type]))
  549. * @return
  550. * A chado object supplemented with the field/table/node requested to be expanded.
  551. * If the type is a table and it has already been expanded no changes is made to the
  552. * returned object
  553. *
  554. *
  555. * @ingroup tripal_chado_query_api
  556. */
  557. function chado_expand_var($object, $type, $to_expand, $table_options = array()) {
  558. // make sure we have a value
  559. if (!$object) {
  560. tripal_report_error('tripal_chado',
  561. TRIPAL_ERROR,
  562. 'Cannot pass non array as argument, $object, to chado_expand_var function.',
  563. array());
  564. return $object;
  565. }
  566. // check to see if we are expanding an array of objects
  567. if (is_array($object)) {
  568. foreach ($object as $index => $o) {
  569. $object[$index] = chado_expand_var($o, $type, $to_expand);
  570. }
  571. return $object;
  572. }
  573. // get the base table name
  574. $base_table = $object->tablename;
  575. switch ($type) {
  576. case "field": //--------------------------------------------------------------------------------
  577. if (preg_match('/(\w+)\.(\w+)/', $to_expand, $matches)) {
  578. $tablename = $matches[1];
  579. $fieldname = $matches[2];
  580. $table_desc = chado_get_schema($tablename);
  581. // BASE CASE: the field is from the current table
  582. if ($base_table == $tablename) {
  583. // Use the table description to fully describe the current object
  584. // in a $values array to be used to select the field from chado
  585. $values = array();
  586. foreach ($table_desc['primary key'] as $key) {
  587. if(property_exists($object, $key)) {
  588. $values[$key] = $object->{$key};
  589. }
  590. }
  591. // Retrieve the field from Chado
  592. $results = chado_select_record($tablename, array($fieldname), $values);
  593. // Check that the field was retrieved correctly
  594. if (isset($results[0])) {
  595. $object->{$fieldname} = $results[0]->{$fieldname};
  596. $object->expanded = $to_expand;
  597. }
  598. // If it wasn't retrieved correctly, we need to warn the administrator
  599. }
  600. // RECURSIVE CASE: the field is in a nested object
  601. else {
  602. // We want to look at each field and if it's an object then we want to
  603. // attempt to expand the field in it via recursion
  604. foreach ((array) $object as $field_name => $field_value) {
  605. if (is_object($field_value)) {
  606. $object->{$field_name} = chado_expand_var(
  607. $field_value,
  608. 'field',
  609. $to_expand
  610. );
  611. }
  612. } //end of for each field in the current object
  613. }
  614. }
  615. // Otherwise we weren't able to extract the parts of the field to expand
  616. // Thus we will warn the administrator
  617. else {
  618. tripal_report_error('tripal_chado', TRIPAL_ERROR,
  619. 'chado_expand_var: Field (%field) not in the right format. " .
  620. "It should be <tablename>.<fieldname>', array('%field' => $to_expand));
  621. }
  622. break;
  623. case "foreign_key": //--------------------------------------------------------------------------
  624. if (preg_match('/(\w+)\.(\w+) => (\w+)/', $to_expand, $matches)) {
  625. $table_name = $matches[1];
  626. $field_name = $matches[2];
  627. $foreign_table = $matches[3];
  628. $table_desc = chado_get_schema($table_name);
  629. // BASE CASE: The foreign key is from the current table
  630. if ($base_table == $table_name) {
  631. // Get the value of the foreign key from the object
  632. $field_value = $object->{$field_name};
  633. // Get the name of the field in the foreign table using the table description
  634. // For example, with the feature.type_id => cvterm.cvterm_id we need cvterm_id
  635. $foreign_field_name = FALSE;
  636. foreach ($table_desc['foreign keys'][$foreign_table]['columns'] as $left => $right) {
  637. if ($right == $field_name) {
  638. $foreign_field_name = $left;
  639. }
  640. }
  641. // Check that we were able to determine the field name in the foreign table
  642. if ($foreign_field_name) {
  643. // Generate a chado variable of the foreign key
  644. // For example, if the foreign key to expand is feature.type_id
  645. // then we want to generate a chado cvterm variable that matches the feature.type_id
  646. $foreign_var = chado_generate_var(
  647. $foreign_table, // thus in the example above, generate a cvterm var
  648. array($foreign_field_name => $field_value), // where the cvterm.cvterm_id = feature.type_id value
  649. $table_options //pass in the same options given to this function
  650. );
  651. // Check that the foreign object was returned
  652. if ($foreign_var) {
  653. // It was so now we can add this chado variable to our current object
  654. // in place of the key value
  655. $object->{$field_name} = $foreign_var;
  656. $object->expanded = $to_expand;
  657. }
  658. // Otherwise we weren't able to expand the foreign key
  659. else {
  660. tripal_report_error('tripal_chado', TRIPAL_ERROR,
  661. 'chado_expand_var: unable to retrieve the object desribed by the foreign key
  662. while trying to expand %fk.',
  663. array('%fk' => $to_expand));
  664. }
  665. }
  666. // Else we were unable to determine the field name in the foreign table
  667. else {
  668. tripal_report_error('tripal_chado', TRIPAL_ERROR,
  669. 'chado_expand_var: unable to determine the field name in the table the foreign
  670. key points to while trying to expand %fk.',
  671. array('%fk' => $to_expand));
  672. }
  673. }
  674. // RECURSIVE CASE: Check any nested objects
  675. else {
  676. foreach ((array) $object as $field_name => $field_value) {
  677. if (is_object($field_value)) {
  678. $object->{$field_name} = chado_expand_var(
  679. $field_value,
  680. 'foreign_key',
  681. $to_expand
  682. );
  683. }
  684. } //end of for each field in the current object
  685. }
  686. }
  687. // Otherwise we weren't able to extract the parts of the foreign key to expand
  688. // Thus we will warn the administrator
  689. else {
  690. tripal_report_error('tripal_chado', TRIPAL_ERROR,
  691. 'chado_expand_var: foreign_key (%fk) not in the right format. " .
  692. "It should be <tablename>.<fieldname>', array('%fk' => $to_expand));
  693. }
  694. break;
  695. case "table": //--------------------------------------------------------------------------------
  696. $foreign_table = $to_expand;
  697. // BASE CASE: don't expand the table it already is expanded
  698. if (array_key_exists($foreign_table, $object)) {
  699. return $object;
  700. }
  701. $foreign_table_desc = chado_get_schema($foreign_table);
  702. // TODO: if we don't get a foreign_table (which could happen of a custom table
  703. // is not correctly defined or the table name is mispelled then we should return
  704. // gracefully.
  705. // BASE CASE: If it's connected to the base table via a FK constraint
  706. // then we have all the information needed to expand it now
  707. if (array_key_exists($base_table, $foreign_table_desc['foreign keys'])) {
  708. foreach ($foreign_table_desc['foreign keys'][$base_table]['columns'] as $left => $right) {
  709. // if the FK value in the base table is not there then we can't expand it, so just skip it.
  710. if (!$object->{$right}) {
  711. continue;
  712. }
  713. // If the user wants to limit the results they expand, make sure
  714. // those criteria are taken into account.
  715. if (isset($table_options['filter'])) {
  716. if (is_array($table_options['filter'])) {
  717. $filter_criteria = $table_options['filter'];
  718. $filter_criteria[$left] = $object->{$right};
  719. }
  720. else {
  721. // If they supplied criteria but it's not in the correct format
  722. // then warn them but proceed as though criteria was not supplied.
  723. $filter_criteria = array($left => $object->{$right});
  724. tripal_report_error('tripal_chado', TRIPAL_WARNING,
  725. 'chado_expand_var: unable to apply supplied filter criteria
  726. since it should be an array. You supplied %criteria',
  727. array('%criteria' => print_r($table_options['filter'], TRUE))
  728. );
  729. }
  730. }
  731. else {
  732. $filter_criteria = array($left => $object->{$right});
  733. }
  734. // generate a new object for this table using the FK values in the base table.
  735. $new_options = $table_options;
  736. $foreign_object = chado_generate_var($foreign_table, $filter_criteria, $new_options);
  737. // if the generation of the object was successful, update the base object to include it.
  738. if ($foreign_object) {
  739. // in the case where the foreign key relationship exists more
  740. // than once with the same table we want to alter the array structure to
  741. // include the field name.
  742. if (count($foreign_table_desc['foreign keys'][$base_table]['columns']) > 1) {
  743. if (!property_exists($object, $foreign_table)) {
  744. $object->{$foreign_table} = new stdClass();
  745. }
  746. $object->{$foreign_table}->{$left} = $foreign_object;
  747. $object->expanded = $to_expand;
  748. }
  749. else {
  750. if (!property_exists($object, $foreign_table)) {
  751. $object->{$foreign_table} = new stdClass();
  752. }
  753. $object->{$foreign_table} = $foreign_object;
  754. $object->expanded = $to_expand;
  755. }
  756. }
  757. // if the object returned is NULL then handle that
  758. else {
  759. // in the case where the foreign key relationship exists more
  760. // than once with the same table we want to alter the array structure to
  761. // include the field name.
  762. if (count($foreign_table_desc['foreign keys'][$base_table]['columns']) > 1) {
  763. if (!property_exists($object, $foreign_table)) {
  764. $object->{$foreign_table} = new stdClass();
  765. }
  766. $object->{$foreign_table}->{$left} = NULL;
  767. }
  768. else {
  769. $object->{$foreign_table} = NULL;
  770. }
  771. }
  772. }
  773. }
  774. // RECURSIVE CASE: if the table is not connected directly to the current base table
  775. // through a foreign key relationship, then maybe it has a relationship to
  776. // one of the nested objects.
  777. else {
  778. // We need to recurse -the table has a relationship to one of the nested objects
  779. // We assume it's a nested object if the value of the field is an object
  780. $did_expansion = 0;
  781. foreach ((array) $object as $field_name => $field_value) {
  782. // CASE #1: This field is an already expanded foreign key and the table to be
  783. // expanded is in the table referenced by the foreign key
  784. // First of all it can only be expanded if it's an object
  785. // And if it's a foreign key it should have a tablename property
  786. if (is_object($field_value) AND property_exists($field_value, 'tablename')) {
  787. $object->{$field_name} = chado_expand_var($field_value, 'table', $foreign_table);
  788. }
  789. // CASE #2: This field is an already expanded object (ie: the field is actually
  790. // the expanded table name) and the table to be expanded si related to it
  791. // check to see if the $field_name is a valid chado table, we don't need
  792. // to call chado_expand_var on fields that aren't tables
  793. $check = chado_get_schema($field_name);
  794. if ($check) {
  795. $did_expansion = 1;
  796. $object->{$field_name} = chado_expand_var($field_value, 'table', $foreign_table);
  797. }
  798. }
  799. // if we did not expand this table we should return a message that the foreign table
  800. // could not be expanded
  801. if (!$did_expansion) {
  802. tripal_report_error('tripal_chado', TRIPAL_ERROR, 'chado_expand_var: Could not expand %table. ' .
  803. 'The table is either not related to the base object through a foreign key relationships or ' .
  804. 'it is already expanded. First check the object to ensure it doesn’t already contain the ' .
  805. 'data needed and otherwise check the table definition using chado_get_schema() to ensure ' .
  806. 'a proper foreign key relationship is present.',
  807. array('%table' => $foreign_table));
  808. }
  809. }
  810. break;
  811. case "node": //---------------------------------------------------------------------------------
  812. // BASE CASE: if the node to be expanded is for our base table, then just expand it
  813. if ($object->tablename == $to_expand) {
  814. // Load the node based on the current objects nid (node primary key)
  815. $node = NULL;
  816. if (property_exists($object, 'nid')) {
  817. $node = node_load($object->nid);
  818. }
  819. // Try to get the nid based on the tablename
  820. else {
  821. // Invoke all hook_node_info to avoid hard-coding the chado_$table assumption
  822. foreach (module_invoke_all('node_info') as $node_info) {
  823. if (array_key_exists('chado_node_api', $node_info)) {
  824. if ($node_info['chado_node_api']['base_table'] == $object->tablename) {
  825. $key_name = $node_info['chado_node_api']['base_table'] . '_id';
  826. $nid = chado_get_nid_from_id(
  827. $node_info['chado_node_api']['base_table'],
  828. $object->{$key_name},
  829. $node_info['base']);
  830. if ($nid > 0) {
  831. $object->nid = $nid;
  832. $node = node_load($nid);
  833. break;
  834. }
  835. }
  836. }
  837. }
  838. }
  839. // If we have successfully loaded the node...
  840. if ($node) {
  841. // Move expandable arrays from the object into the node
  842. $object->expanded = $to_expand;
  843. $node->expandable_fields = $object->expandable_fields;
  844. unset($object->expandable_fields);
  845. $node->expandable_tables = $object->expandable_tables;
  846. unset($object->expandable_tables);
  847. $node->expandable_nodes = $object->expandable_nodes;
  848. unset($object->expandable_nodes);
  849. // The node becomes the base object with the obejct added to it.
  850. // For example, we may start with a feature object with a name, uniquename , type, etc.
  851. // After expanding we will return the node and at $node->feature you will find the original object
  852. $node->{$base_table} = $object;
  853. $object = $node;
  854. }
  855. // Else we were unable to load the node
  856. else {
  857. // Warn the administrator
  858. if (isset($object->nid)) {
  859. tripal_report_error('tripal_chado', TRIPAL_ERROR, 'chado_expand_var: No node matches the nid (%nid) supplied.',
  860. array('%nid' => $object->nid));
  861. }
  862. else {
  863. tripal_report_error('tripal_chado', TRIPAL_NOTICE, 'chado_expand_var: There is no node for the current object: <pre>%object</pre>', array('%object' => print_r($object,TRUE)));
  864. }
  865. } //end of if node
  866. }
  867. // RECURSIVE CASE: check to see if the node to be expanded associates with a
  868. // chado table within one of the nested objects.
  869. else {
  870. // We need to recurse -the node to expand is one of the nested objects
  871. // We assume it's a nested object if the field value is an object
  872. foreach ((array) $object as $field_name => $field_value) {
  873. if (is_object($field_value)) {
  874. $object->{$field_name} = chado_expand_var(
  875. $field_value,
  876. 'node',
  877. $to_expand
  878. );
  879. }
  880. } //end of for each field in the current object
  881. }
  882. break;
  883. // The $type to be expanded is not yet supported
  884. default:
  885. tripal_report_error('tripal_chado', TRIPAL_ERROR, 'chado_expand_var: Unrecognized type (%type). Should be one of "field", "table", "node".',
  886. array('%type' => $type));
  887. return FALSE;
  888. }
  889. // Move expandable arrays downwards -------------------------------
  890. // If the type was either table or foreign key then a new chado variable was generated
  891. // this variable will have it's own expandable array's which need to be moved down
  892. // and merged with the base objects expandable arrays
  893. // Thus, check all nested objects for expandable arrays
  894. // and if they have them, move them downwards
  895. foreach ( (array)$object as $field_name => $field_value) {
  896. if (is_object($field_value)) {
  897. // The current nested object has expandable arrays
  898. if (isset($field_value->expandable_fields)) {
  899. // Move expandable fields downwards
  900. if (isset($field_value->expandable_fields) and is_array($field_value->expandable_fields)) {
  901. // If the current object has it's own expandable fields then merge them
  902. if (isset($object->expandable_fields)) {
  903. $object->expandable_fields = array_merge(
  904. $object->expandable_fields,
  905. $object->{$field_name}->expandable_fields
  906. );
  907. unset($object->{$field_name}->expandable_fields);
  908. }
  909. // Otherwise, just move the expandable fields downwards
  910. else {
  911. $object->expandable_fields = $object->{$field_name}->expandable_fields;
  912. unset($object->{$field_name}->expandable_fields);
  913. }
  914. }
  915. // Move expandable foreign keys downwards
  916. if (isset($field_value->expandable_foreign_keys) and is_array($field_value->expandable_foreign_keys)) {
  917. // If the current object has it's own expandable foreign keys then merge them
  918. if (isset($object->expandable_foreign_keys)) {
  919. $object->expandable_foreign_keys = array_merge(
  920. $object->expandable_foreign_keys,
  921. $object->{$field_name}->expandable_foreign_keys
  922. );
  923. unset($object->{$field_name}->expandable_foreign_keys);
  924. }
  925. // Otherwise, just move the expandable foreign keys downwards
  926. else {
  927. $object->expandable_foreign_keys = $object->{$field_name}->expandable_foreign_keys;
  928. unset($object->{$field_name}->expandable_foreign_keys);
  929. }
  930. }
  931. // Move expandable tables downwards
  932. if (isset($field_value->expandable_tables) and is_array($field_value->expandable_tables)) {
  933. // If the current object has it's own expandable tables then merge them
  934. if (isset($object->expandable_tables)) {
  935. $object->expandable_tables = array_merge(
  936. $object->expandable_tables,
  937. $object->{$field_name}->expandable_tables
  938. );
  939. unset($object->{$field_name}->expandable_tables);
  940. }
  941. // Otherwise, just move the expandable tables downwards
  942. else {
  943. $object->expandable_tables = $object->{$field_name}->expandable_tables;
  944. unset($object->{$field_name}->expandable_tables);
  945. }
  946. }
  947. // Move expandable nodes downwards
  948. if (isset($field_value->expandable_nodes) and is_array($field_value->expandable_nodes)) {
  949. // If the current object has it's own expandable tables then merge them
  950. if (isset($object->expandable_nodes)) {
  951. $object->expandable_nodes = array_merge(
  952. $object->expandable_nodes,
  953. $object->{$field_name}->expandable_nodes
  954. );
  955. unset($object->{$field_name}->expandable_nodes);
  956. }
  957. // Otherwise, just move the expandable tables downwards
  958. else {
  959. $object->expandable_nodes = $object->{$field_name}->expandable_nodes;
  960. unset($object->{$field_name}->expandable_nodes);
  961. }
  962. }
  963. }
  964. }
  965. }
  966. // Move extended array downwards ----------------------------------
  967. // This tells us what we have expanded (ie: that we succeeded)
  968. // and is needed to remove the entry from the expandable array
  969. // If there is no expanded field in the current object then check any of the nested objects
  970. // and move it down
  971. if (!property_exists($object, 'expanded')) {
  972. // It's a nested object if the value is an object
  973. foreach ( (array)$object as $field_name => $field_value) {
  974. if (is_object($field_value)) {
  975. // Check if the current nested object has an expanded array
  976. if (isset($field_value->expanded)) {
  977. // If so, then move it downwards
  978. $object->expanded = $field_value->expanded;
  979. unset($field_value->expanded);
  980. }
  981. }
  982. }
  983. }
  984. // Check again if there is an expanded field in the current object
  985. // We check again because it might have been moved downwards above
  986. if (property_exists($object, 'expanded')) {
  987. // If so, then remove the expanded identifier from the correct expandable array
  988. $expandable_name = 'expandable_' . $type . 's';
  989. if (property_exists($object, $expandable_name) and $object->{$expandable_name}) {
  990. $key_to_remove = array_search($object->expanded, $object->{$expandable_name});
  991. unset($object->{$expandable_name}[$key_to_remove]);
  992. unset($object->expanded);
  993. }
  994. }
  995. // Finally, Return the object!
  996. return $object;
  997. }