tripal_core.generic_query.api.inc 46 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344
  1. <?php
  2. /**
  3. * @file
  4. * Provides an API for querying of chado
  5. */
  6. /**
  7. * Provides a generic routine for inserting into any Chado table
  8. *
  9. * Use this function to insert a record into any Chado table. The first
  10. * argument specifies the table for inserting and the second is an array
  11. * of values to be inserted. The array is mutli-dimensional such that
  12. * foreign key lookup values can be specified.
  13. *
  14. * @param $table
  15. * The name of the chado table for inserting
  16. * @param $values
  17. * An associative array containing the values for inserting.
  18. * @param $options
  19. * An array of options such as:
  20. * - skip_validation: TRUE or FALSE. If TRUE will skip all the validation steps and
  21. * just try to insert as is. This is much faster but results in unhandled
  22. * non user-friendly errors if the insert fails.
  23. * - return_record: by default, the function will return the record but with
  24. * the primary keys added after insertion. To simply return TRUE on success
  25. * set this option to FALSE
  26. *
  27. * @return
  28. * On success this function returns the inserted record with the new primary keys
  29. * added to the returned array. On failure, it returns FALSE.
  30. *
  31. * Example usage:
  32. * @code
  33. * $values = array(
  34. * 'organism_id' => array(
  35. * 'genus' => 'Citrus',
  36. * 'species' => 'sinensis',
  37. * ),
  38. * 'name' => 'orange1.1g000034m.g',
  39. * 'uniquename' => 'orange1.1g000034m.g',
  40. * 'type_id' => array (
  41. * 'cv_id' => array (
  42. * 'name' => 'sequence',
  43. * ),
  44. * 'name' => 'gene',
  45. * 'is_obsolete' => 0
  46. * ),
  47. * );
  48. * $result = tripal_core_chado_insert('feature',$values);
  49. * @endcode
  50. * The above code inserts a record into the feature table. The $values array is
  51. * nested such that the organism is selected by way of the organism_id foreign
  52. * key constraint by specifying the genus and species. The cvterm is also
  53. * specified using its foreign key and the cv_id for the cvterm is nested as
  54. * well.
  55. *
  56. * @ingroup tripal_chado_api
  57. */
  58. function tripal_core_chado_insert($table, $values, $options = array()) {
  59. $print_errors = (isset($options['print_errors'])) ? $options['print_errors'] : FALSE;
  60. if (!is_array($values)) {
  61. tripal_core_report_error(
  62. 'tripal_core',
  63. TRIPAL_ERROR,
  64. 'Cannot pass non array as values for inserting.',
  65. array(),
  66. array('print' => $print_errors)
  67. );
  68. return FALSE;
  69. }
  70. if (count($values)==0) {
  71. tripal_core_report_error(
  72. 'tripal_core',
  73. TRIPAL_ERROR,
  74. 'Cannot pass an empty array as values for inserting.',
  75. array(),
  76. array('print' => $print_errors)
  77. );
  78. return FALSE;
  79. }
  80. // set defaults for options. If we don't set defaults then
  81. // we get memory leaks when we try to access the elements
  82. if (!is_array($options)) {
  83. $options = array();
  84. }
  85. if (!array_key_exists('skip_validation', $options)) {
  86. $options['skip_validation'] = FALSE;
  87. }
  88. if (!array_key_exists('return_record', $options)) {
  89. $options['return_record'] = TRUE;
  90. }
  91. $insert_values = array();
  92. if (array_key_exists('skip_validation', $options)) {
  93. $validate = !$options['skip_validation'];
  94. }
  95. else {
  96. $validate = TRUE;
  97. }
  98. // get the table description
  99. $table_desc = tripal_core_get_chado_table_schema($table);
  100. if (empty($table_desc)) {
  101. tripal_core_report_error('tripal_core', TRIPAL_WARNING,
  102. 'tripal_core_chado_insert; There is no table description for !table_name',
  103. array('!table_name' => $table), array('print' => $print_errors)
  104. );
  105. }
  106. // iterate through the values array and create a new 'insert_values' array
  107. // that has all the values needed for insert with all foreign relationsihps
  108. // resolved.
  109. foreach ($values as $field => $value) {
  110. // make sure the field is in the table description. If not then return an error
  111. // message
  112. if (!array_key_exists($field, $table_desc['fields'])) {
  113. tripal_core_report_error(
  114. 'tripal_core',
  115. TRIPAL_ERROR,
  116. "tripal_core_chado_insert; The field '%field' does not exist " .
  117. "for the table '%table'. Cannot perform insert. Values: %array",
  118. array('%field' => $field, '%table' => $table, '%array' => print_r($values, 1)),
  119. array('print' => $print_errors)
  120. );
  121. return FALSE;
  122. }
  123. if (is_array($value)) {
  124. // select the value from the foreign key relationship for this value
  125. $results = tripal_core_chado_get_foreign_key($table_desc, $field, $value);
  126. if (sizeof($results) > 1) {
  127. tripal_core_report_error(
  128. 'tripal_core',
  129. TRIPAL_ERROR,
  130. 'tripal_core_chado_insert: Too many records match the criteria supplied for !foreign_key foreign key constraint (!criteria)',
  131. array('!foreign_key' => $field, '!criteria' => print_r($value, TRUE)),
  132. array('print' => $print_errors)
  133. );
  134. }
  135. elseif (sizeof($results) < 1) {
  136. tripal_core_report_error(
  137. 'tripal_core',
  138. TRIPAL_DEBUG,
  139. 'tripal_core_chado_insert: no record matches criteria supplied for !foreign_key foreign key constraint (!criteria)',
  140. array('!foreign_key' => $field, '!criteria' => print_r($value, TRUE)),
  141. array('print' => $print_errors)
  142. );
  143. }
  144. else {
  145. $insert_values[$field] = $results[0];
  146. }
  147. }
  148. else {
  149. $insert_values[$field] = $value;
  150. }
  151. }
  152. if ($validate) {
  153. // check for violation of any unique constraints
  154. $ukeys = array();
  155. if (array_key_exists('unique keys', $table_desc)) {
  156. $ukeys = $table_desc['unique keys'];
  157. }
  158. $ukselect_cols = array();
  159. $ukselect_vals = array();
  160. if ($ukeys) {
  161. foreach ($ukeys as $name => $fields) {
  162. foreach ($fields as $index => $field) {
  163. // build the arrays for performing a select that will check the contraint
  164. $ukselect_cols[] = $field;
  165. if (!array_key_exists($field, $insert_values)) {
  166. if (array_key_exists('default', $table_desc['fields'][$field])) {
  167. $ukselect_vals[$field] = $table_desc['fields'][$field]['default'];
  168. }
  169. }
  170. else {
  171. $ukselect_vals[$field] = $insert_values[$field];
  172. }
  173. }
  174. // now check the constraint
  175. if (tripal_core_chado_select($table, $ukselect_cols, $ukselect_vals)) {
  176. tripal_core_report_error('tripal_core', TRIPAL_ERROR,
  177. "tripal_core_chado_insert; Cannot insert duplicate record into $table table: !values",
  178. array('!values' => print_r($values, TRUE)), array('print' => $print_errors)
  179. );
  180. return FALSE;
  181. }
  182. }
  183. }
  184. // if trying to insert a field that is the primary key, make sure it also is unique
  185. if (array_key_exists('primary key', $table_desc)) {
  186. $pkey = $table_desc['primary key'][0];
  187. if (array_key_exists($pkey, $insert_values)) {
  188. $coptions = array();
  189. if (tripal_core_chado_select($table, array($pkey), array($pkey => $insert_values[$pkey]), $coptions)) {
  190. tripal_core_report_error('tripal_core', TRIPAL_ERROR,
  191. 'tripal_core_chado_insert; Cannot insert duplicate primary key into !table table: !values',
  192. array('!table' => $table, '!values' => print_r($values, TRUE)),
  193. array('print' => $print_errors)
  194. );
  195. return FALSE;
  196. }
  197. }
  198. }
  199. // make sure required fields have a value
  200. if (!is_array($table_desc['fields'])) {
  201. $table_desc['fields'] = array();
  202. tripal_core_report_error(
  203. 'tripal_core',
  204. TRIPAL_WARNING,
  205. "tripal_core_chado_insert; %table missing fields: \n %schema",
  206. array('%table' => $table, '%schema' => print_r($table_desc, 1)),
  207. array('print' => $print_errors)
  208. );
  209. }
  210. foreach ($table_desc['fields'] as $field => $def) {
  211. // a field is considered missing if it cannot be NULL and there is no default
  212. // value for it or it is of type 'serial'
  213. if (array_key_exists('NOT NULL', $def) and
  214. !array_key_exists($field, $insert_values) and
  215. !array_key_exists('default', $def) and
  216. strcmp($def['type'], serial) != 0) {
  217. tripal_core_report_error(
  218. 'tripal_core',
  219. TRIPAL_ERROR,
  220. "tripal_core_chado_insert; Field %table.%field cannot be NULL: %values",
  221. array('%table' => $table, '%field' => $field, '%values' => print_r($values, 1)),
  222. array('print' => $print_errors)
  223. );
  224. return FALSE;
  225. }
  226. }
  227. } //end of validation
  228. // Now build the insert SQL statement
  229. $ifields = array(); // contains the names of the fields
  230. $itypes = array(); // contains placeholders for the sql query
  231. $ivalues = array(); // contains the values of the fields
  232. $i = 1;
  233. foreach ($insert_values as $field => $value) {
  234. $ifields[] = $field;
  235. $ivalues[":$field"] = $value;
  236. $i++;
  237. if (strcmp($value, '__NULL__')==0) {
  238. $itypes[] = "NULL";
  239. }
  240. else {
  241. $itypes[] = ":$field";
  242. }
  243. }
  244. // create the SQL
  245. $sql = 'INSERT INTO {' . $table . '} (' . implode(", ", $ifields) . ") VALUES (" . implode(", ", $itypes) . ")";
  246. $result = chado_query($sql, $ivalues);
  247. // if we have a result then add primary keys to return array
  248. if ($options['return_record'] == TRUE and $result) {
  249. if (array_key_exists('primary key', $table_desc) and is_array($table_desc['primary key'])) {
  250. foreach ($table_desc['primary key'] as $field) {
  251. $sql = "SELECT CURRVAL('{" . $table . "_" . $field . "_seq}')";
  252. $results = chado_query($sql);
  253. $value = $results->fetchField();
  254. if (!$value) {
  255. tripal_core_report_error(
  256. 'tripal_core',
  257. TRIPAL_ERROR,
  258. "tripal_core_chado_insert; not able to retrieve primary key after insert: %sql",
  259. array('%sql' => $sql),
  260. array('print' => $print_errors)
  261. );
  262. return FALSE;
  263. }
  264. $values[$field] = $value;
  265. }
  266. }
  267. return $values;
  268. }
  269. elseif ($options['return_record'] == FALSE and $result) {
  270. return TRUE;
  271. }
  272. else {
  273. tripal_core_report_error(
  274. 'tripal_core',
  275. TRIPAL_ERROR,
  276. 'tripal_core_chado_insert; Cannot insert record into "%table": %values',
  277. array('%table' => $table, '%values' => print_r($values, 1)),
  278. array('print' => $print_errors)
  279. );
  280. return FALSE;
  281. }
  282. return FALSE;
  283. }
  284. /**
  285. * Provides a generic routine for updating into any Chado table
  286. *
  287. * Use this function to update a record in any Chado table. The first
  288. * argument specifies the table for inserting, the second is an array
  289. * of values to matched for locating the record for updating, and the third
  290. * argument give the values to update. The arrays are mutli-dimensional such
  291. * that foreign key lookup values can be specified.
  292. *
  293. * @param $table
  294. * The name of the chado table for inserting
  295. * @param $match
  296. * An associative array containing the values for locating a record to update.
  297. * @param $values
  298. * An associative array containing the values for updating.
  299. * @param $options
  300. * An array of options such as:
  301. * - return_record: by default, the function will return the TRUE if the record
  302. * was succesfully updated. However, set this option to TRUE to return the
  303. * record that was updated. The returned record will have the fields provided
  304. * but the primary key (if available for the table) will be added to the record.
  305. * @return
  306. * On success this function returns TRUE. On failure, it returns FALSE.
  307. *
  308. * Example usage:
  309. * @code
  310. $umatch = array(
  311. 'organism_id' => array(
  312. 'genus' => 'Citrus',
  313. 'species' => 'sinensis',
  314. ),
  315. 'uniquename' => 'orange1.1g000034m.g7',
  316. 'type_id' => array (
  317. 'cv_id' => array (
  318. 'name' => 'sequence',
  319. ),
  320. 'name' => 'gene',
  321. 'is_obsolete' => 0
  322. ),
  323. );
  324. $uvalues = array(
  325. 'name' => 'orange1.1g000034m.g',
  326. 'type_id' => array (
  327. 'cv_id' => array (
  328. 'name' => 'sequence',
  329. ),
  330. 'name' => 'mRNA',
  331. 'is_obsolete' => 0
  332. ),
  333. );
  334. * $result = tripal_core_chado_update('feature',$umatch,$uvalues);
  335. * @endcode
  336. * The above code species that a feature with a given uniquename, organism_id,
  337. * and type_id (the unique constraint for the feature table) will be updated.
  338. * The organism_id is specified as a nested array that uses the organism_id
  339. * foreign key constraint to lookup the specified values to find the exact
  340. * organism_id. The same nested struture is also used for specifying the
  341. * values to update. The function will find the record that matches the
  342. * columns specified and update the record with the avlues in the $uvalues array.
  343. *
  344. * @ingroup tripal_chado_api
  345. */
  346. function tripal_core_chado_update($table, $match, $values, $options = NULL) {
  347. $print_errors = (isset($options['print_errors'])) ? $options['print_errors'] : FALSE;
  348. if (!is_array($values)) {
  349. tripal_core_report_error(
  350. 'tripal_core',
  351. TRIPAL_ERROR,
  352. 'Cannot pass non array as values for updating.',
  353. array(),
  354. array('print' => $print_errors)
  355. );
  356. return FALSE;
  357. }
  358. if (count($values)==0) {
  359. tripal_core_report_error(
  360. 'tripal_core',
  361. TRIPAL_ERROR,
  362. 'Cannot pass an empty array as values for updating.',
  363. array(),
  364. array('print' => $print_errors)
  365. );
  366. return FALSE;
  367. }
  368. if (!is_array($match)) {
  369. tripal_core_report_error(
  370. 'tripal_core',
  371. TRIPAL_ERROR,
  372. 'Cannot pass non array as values for matching.',
  373. array(),
  374. array('print' => $print_errors)
  375. );
  376. return FALSE;
  377. }
  378. if (count($match)==0) {
  379. tripal_core_report_error(
  380. 'tripal_core',
  381. TRIPAL_ERROR,
  382. 'Cannot pass an empty array as values for matching.',
  383. array(),
  384. array('print' => $print_errors)
  385. );
  386. return FALSE;
  387. }
  388. // set defaults for options. If we don't set defaults then
  389. // we get memory leaks when we try to access the elements
  390. if (!is_array($options)) {
  391. $options = array();
  392. }
  393. if (!array_key_exists('return_record', $options)) {
  394. $options['return_record'] = FALSE;
  395. }
  396. $update_values = array(); // contains the values to be updated
  397. $update_matches = array(); // contains the values for the where clause
  398. // get the table description
  399. $table_desc = tripal_core_get_chado_table_schema($table);
  400. // if the user wants us to return the record then we need to get the
  401. // unique primary key if one exists. That way we can add it to the
  402. // values that get returned at the end of the function
  403. $pkeys = array();
  404. if ($options['return_record'] == TRUE) {
  405. if (array_key_exists('primary key', $table_desc) and is_array($table_desc['primary key'])) {
  406. $columns = array();
  407. $stmt_suffix = '';
  408. foreach ($table_desc['primary key'] as $field) {
  409. $columns[] = $field;
  410. $stmt_suffix .= substr($field, 0, 2);
  411. }
  412. $options2 = array();
  413. $results = tripal_core_chado_select($table, $columns, $match, $options2);
  414. if (count($results) > 0) {
  415. foreach ($results as $index => $pkey) {
  416. $pkeys[] = $pkey;
  417. }
  418. }
  419. }
  420. }
  421. // get the values needed for matching in the SQL statement
  422. foreach ($match as $field => $value) {
  423. if (is_array($value)) {
  424. $results = tripal_core_chado_get_foreign_key($table_desc, $field, $value);
  425. if (sizeof($results) > 1) {
  426. tripal_core_report_error('tripal_core', TRIPAL_ERROR,
  427. 'tripal_core_chado_update: When trying to find record to update, too many records match the criteria supplied for !foreign_key foreign key constraint (!criteria)',
  428. array('!foreign_key' => $field, '!criteria' => print_r($value, TRUE)),
  429. array('print' => $print_errors)
  430. );
  431. }
  432. elseif (sizeof($results) < 1) {
  433. tripal_core_report_error('tripal_core',TRIPAL_DEBUG,
  434. 'tripal_core_chado_update: When trying to find record to update, no record matches criteria supplied for !foreign_key foreign key constraint (!criteria)',
  435. array('!foreign_key' => $field, '!criteria' => print_r($value, TRUE)),
  436. array('print' => $print_errors)
  437. );
  438. }
  439. else {
  440. $update_matches[$field] = $results[0];
  441. }
  442. }
  443. else {
  444. $update_matches[$field] = $value;
  445. }
  446. }
  447. // get the values used for updating
  448. foreach ($values as $field => $value) {
  449. if (is_array($value)) {
  450. $foreign_options = array();
  451. // select the value from the foreign key relationship for this value
  452. $results = tripal_core_chado_get_foreign_key($table_desc, $field, $value, $foreign_options);
  453. if (sizeof($results) > 1) {
  454. tripal_core_report_error(
  455. 'tripal_core',
  456. TRIPAL_ERROR,
  457. 'tripal_core_chado_update: When trying to find update values, too many records match the criteria supplied for !foreign_key foreign key constraint (!criteria)',
  458. array('!foreign_key' => $field, '!criteria' => print_r($value, TRUE)),
  459. array('print' => $print_errors)
  460. );
  461. }
  462. elseif (sizeof($results) < 1) {
  463. tripal_core_report_error(
  464. 'tripal_core',
  465. TRIPAL_DEBUG,
  466. 'tripal_core_chado_update: When trying to find update values, no record matches criteria supplied for !foreign_key foreign key constraint (!criteria)',
  467. array('!foreign_key' => $field, '!criteria' => print_r($value,TRUE)),
  468. array('print' => $print_errors)
  469. );
  470. }
  471. else {
  472. $update_values[$field] = $results[0];
  473. }
  474. }
  475. else {
  476. $update_values[$field] = $value;
  477. }
  478. }
  479. // now build the SQL statement
  480. $sql = 'UPDATE {' . $table . '} SET ';
  481. $args = array(); // arguments passed to chado_query
  482. foreach ($update_values as $field => $value) {
  483. if (strcmp($value, '__NULL__') == 0) {
  484. $sql .= " $field = NULL, ";
  485. }
  486. else {
  487. $sql .= " $field = :$field, ";
  488. $args[":$field"] = $value;
  489. }
  490. }
  491. $sql = drupal_substr($sql, 0, -2); // get rid of the trailing comma & space
  492. $sql .= " WHERE ";
  493. foreach ($update_matches as $field => $value) {
  494. if (strcmp($value, '__NULL__')==0) {
  495. $sql .= " $field = NULL AND ";
  496. }
  497. else {
  498. $sql .= " $field = :$field AND ";
  499. $args[":$field"] = $value;
  500. }
  501. }
  502. $sql = drupal_substr($sql, 0, -4); // get rid of the trailing 'AND'
  503. $result = chado_query($sql, $args);
  504. // if we have a result then add primary keys to return array
  505. if ($options['return_record'] == TRUE and $result) {
  506. // only if we have a single result do we want to add the primary keys to the values
  507. // array. If the update matched many records we can't add the pkeys
  508. if (count($pkeys) == 1) {
  509. foreach ($pkeys as $index => $pkey) {
  510. foreach ($pkey as $field => $fvalue) {
  511. $values[$field] = $fvalue;
  512. }
  513. }
  514. }
  515. return $values;
  516. }
  517. elseif ($options['return_record'] == FALSE and $result) {
  518. return TRUE;
  519. }
  520. else {
  521. tripal_core_report_error(
  522. 'tripal_core',
  523. TRIPAL_ERROR,
  524. "tripal_core_chado_update: Cannot update record in %table table. \nMatch: %match \nValues: %values",
  525. array('%table' => table, '%match' => print_r($match,TRUE), '%values' => print_r($values, 1)),
  526. array('print' => $print_errors)
  527. );
  528. return FALSE;
  529. }
  530. return FALSE;
  531. }
  532. /**
  533. * Provides a generic function for deleting a record(s) from any chado table
  534. *
  535. * Use this function to delete a record(s) in any Chado table. The first
  536. * argument specifies the table to delete from and the second is an array
  537. * of values to match for locating the record(s) to be deleted. The arrays
  538. * are mutli-dimensional such that foreign key lookup values can be specified.
  539. *
  540. * @param $table
  541. * The name of the chado table for inserting
  542. * @param $match
  543. * An associative array containing the values for locating a record to update.
  544. * @param $options
  545. * Currently there are no options
  546. * @return
  547. * On success this function returns TRUE. On failure, it returns FALSE.
  548. *
  549. * Example usage:
  550. * @code
  551. $umatch = array(
  552. 'organism_id' => array(
  553. 'genus' => 'Citrus',
  554. 'species' => 'sinensis',
  555. ),
  556. 'uniquename' => 'orange1.1g000034m.g7',
  557. 'type_id' => array (
  558. 'cv_id' => array (
  559. 'name' => 'sequence',
  560. ),
  561. 'name' => 'gene',
  562. 'is_obsolete' => 0
  563. ),
  564. );
  565. $uvalues = array(
  566. 'name' => 'orange1.1g000034m.g',
  567. 'type_id' => array (
  568. 'cv_id' => array (
  569. 'name' => 'sequence',
  570. ),
  571. 'name' => 'mRNA',
  572. 'is_obsolete' => 0
  573. ),
  574. );
  575. * $result = tripal_core_chado_update('feature', $umatch, $uvalues);
  576. * @endcode
  577. * The above code species that a feature with a given uniquename, organism_id,
  578. * and type_id (the unique constraint for the feature table) will be deleted.
  579. * The organism_id is specified as a nested array that uses the organism_id
  580. * foreign key constraint to lookup the specified values to find the exact
  581. * organism_id. The same nested struture is also used for specifying the
  582. * values to update. The function will find all records that match the
  583. * columns specified and delete them.
  584. *
  585. * @ingroup tripal_chado_api
  586. */
  587. function tripal_core_chado_delete($table, $match, $options = NULL) {
  588. if (!is_array($match)) {
  589. watchdog('tripal_core', 'Cannot pass non array as values for matching.', array(),
  590. WATCHDOG_ERROR);
  591. return FALSE;
  592. }
  593. if (count($match)==0) {
  594. watchdog('tripal_core', 'Cannot pass an empty array as values for matching.', array(),
  595. WATCHDOG_ERROR);
  596. return FALSE;
  597. }
  598. // set defaults for options. If we don't set defaults then
  599. // we get memory leaks when we try to access the elements
  600. if (!is_array($options)) {
  601. $options = array();
  602. }
  603. $delete_matches = array(); // contains the values for the where clause
  604. // get the table description
  605. $table_desc = tripal_core_get_chado_table_schema($table);
  606. $fields = $table_desc['fields'];
  607. // get the values needed for matching in the SQL statement
  608. foreach ($match as $field => $value) {
  609. if (is_array($value)) {
  610. // if the user has specified an array of values to delete rather than
  611. // FK relationships the keep those in our match
  612. if (array_values($value) === $value) {
  613. $delete_matches[$field] = $value;
  614. }
  615. else {
  616. $results = tripal_core_chado_get_foreign_key($table_desc, $field, $value);
  617. if (sizeof($results) > 1) {
  618. watchdog('tripal_core', 'tripal_core_chado_delete: When trying to find record to delete, too many records match the criteria supplied for !foreign_key foreign key constraint (!criteria)', array('!foreign_key' => $field, '!criteria' => print_r($value, TRUE)), WATCHDOG_ERROR);
  619. }
  620. elseif (sizeof($results) < 1) {
  621. //watchdog('tripal_core', 'tripal_core_chado_delete: When trying to find record to delete, no record matches criteria supplied for !foreign_key foreign key constraint (!criteria)', array('!foreign_key' => $field, '!criteria' => print_r($value,TRUE)), WATCHDOG_ERROR);
  622. }
  623. else {
  624. $delete_matches[$field] = $results[0];
  625. }
  626. }
  627. }
  628. else {
  629. $delete_matches[$field] = $value;
  630. }
  631. }
  632. // now build the SQL statement
  633. $sql = 'DELETE FROM {' . $table . '} WHERE ';
  634. $args = array();
  635. foreach ($delete_matches as $field => $value) {
  636. // if we have an array values then this is an "IN" clasue.
  637. // we cannot use prepared statements with these
  638. if (count($value) > 1) {
  639. $sql .= "$field IN (";
  640. $index = 0;
  641. foreach ($value as $v) {
  642. $sql .= ":$field" . $index . ", ";
  643. $args[":$field" . $index] = $v;
  644. $index++;
  645. }
  646. $sql = drupal_substr($sql, 0, -2); // get rid of trailing ', '
  647. $sql .= ") AND ";
  648. }
  649. else {
  650. if (strcmp($value, '__NULL__') == 0) {
  651. $sql .= " $field = NULL AND ";
  652. }
  653. else {
  654. $sql .= " $field = :$field AND ";
  655. $args[":$field"] = $value;
  656. }
  657. }
  658. }
  659. $sql = drupal_substr($sql, 0, -4); // get rid of the trailing 'AND'
  660. // finally perform the delete. If successful, return the updated record
  661. $result = chado_query($sql, $args);
  662. if ($result) {
  663. return TRUE;
  664. }
  665. else {
  666. watchdog('tripal_core', "Cannot delete record in $table table. Match:" . print_r($match, 1) . ". Values: " . print_r($values, 1), array(), 'WATCHDOG_ERROR');
  667. return FALSE;
  668. }
  669. return FALSE;
  670. }
  671. /**
  672. * Provides a generic routine for selecting data from a Chado table
  673. *
  674. * Use this function to perform a simple select from any Chado table.
  675. *
  676. * @param $table
  677. * The name of the chado table for inserting
  678. * @param $columns
  679. * An array of column names
  680. * @param $values
  681. * An associative array containing the values for filtering the results. In the
  682. * case where multiple values for the same time are to be selected an additional
  683. * entry for the field should appear for each value
  684. * @param $options
  685. * An associative array of additional options where the key is the option
  686. * and the value is the value of that option.
  687. *
  688. * Additional Options Include:
  689. * - has_record
  690. * Set this argument to 'TRUE' to have this function return a numeric
  691. * value for the number of recrods rather than the array of records. this
  692. * can be useful in 'if' statements to check the presence of particula records.
  693. * - return_sql
  694. * Set this to 'TRUE' to have this function return an array where the first
  695. * element is the sql that would have been run and the second is an array of
  696. * arguments.
  697. * - case_insensitive_columns
  698. * An array of columns to do a case insensitive search on.
  699. * - regex_columns
  700. * An array of columns where the value passed in should be treated as a regular expression
  701. * - order_by
  702. * An associative array containing the column names of the table as keys
  703. * and the type of sort (i.e. ASC, DESC) as the values. The results in the
  704. * query will be sorted by the key values in the direction listed by the value
  705. * - is_duplicate: TRUE or FALSE. Checks the values submited to see if
  706. * they violate any of the unique constraints. If so, the record
  707. * is returned, if not, FALSE is returned.
  708. * - pager: Use this option if it is desired to return only a subset of results
  709. * so that they may be shown with in a Drupal-style pager. This should be
  710. * an array with two keys: 'limit' and 'element'. The value of 'limit'
  711. * should specify the number of records to return and 'element' is a
  712. * unique integer to differentiate between pagers when more than one
  713. * appear on a page. The 'element' should start with zero and increment by
  714. * one for each pager.
  715. *
  716. * @return
  717. * An array of results, FALSE if the query was not executed
  718. * correctly, an empty array if no records were matched, or the number of records
  719. * in the dataset if $has_record is set.
  720. * If the option 'is_duplicate' is provided and the record is a duplicate it
  721. * will return the duplicated record. If the 'has_record' option is provided
  722. * a value of TRUE will be returned if a record exists and FALSE will bee
  723. * returned if there are not records.
  724. *
  725. * Example usage:
  726. * @code
  727. * $columns = array('feature_id', 'name');
  728. * $values = array(
  729. * 'organism_id' => array(
  730. * 'genus' => 'Citrus',
  731. * 'species' => array('sinensis', 'clementina'),
  732. * ),
  733. * 'uniquename' => 'orange1.1g000034m.g',
  734. * 'type_id' => array (
  735. * 'cv_id' => array (
  736. * 'name' => 'sequence',
  737. * ),
  738. * 'name' => 'gene',
  739. * 'is_obsolete' => 0
  740. * ),
  741. * );
  742. * $options = array(
  743. * 'order_by' => array(
  744. * 'name' => 'ASC'
  745. * ),
  746. * );
  747. * $result = tripal_core_chado_select('feature',$columns,$values,$options);
  748. * @endcode
  749. * The above code selects a record from the feature table using the three fields
  750. * that uniquely identify a feature. The $columns array simply lists the columns
  751. * to select. The $values array is nested such that the organism is identified by
  752. * way of the organism_id foreign key constraint by specifying the genus and
  753. * species. The cvterm is also specified using its foreign key and the cv_id
  754. * for the cvterm is nested as well. In the example above, two different species
  755. * are allowed to match
  756. *
  757. * @ingroup tripal_chado_api
  758. */
  759. function tripal_core_chado_select($table, $columns, $values, $options = NULL) {
  760. $print_errors = (isset($options['print_errors'])) ? $options['print_errors'] : FALSE;
  761. if (!is_array($values)) {
  762. tripal_core_report_error('tripal_core', TRIPAL_ERROR, 'Cannot pass non array as values for selecting.',
  763. array(), array('print' => $print_errors)
  764. );
  765. return FALSE;
  766. }
  767. if (!is_array($columns)) {
  768. tripal_core_report_error('tripal_core', TRIPAL_ERROR, 'Cannot pass non array as columns for selecting.',
  769. array(), array('print' => $print_errors)
  770. );
  771. return FALSE;
  772. }
  773. if (count($columns)==0) {
  774. tripal_core_report_error('tripal_core', TRIPAL_ERROR, 'Cannot pass an empty array as columns for selecting.',
  775. array(), array('print' => $print_errors)
  776. );
  777. return FALSE;
  778. }
  779. // set defaults for options. If we don't set defaults then
  780. // we get memory leaks when we try to access the elements
  781. if (!is_array($options)) {
  782. $options = array();
  783. }
  784. if (!array_key_exists('case_insensitive_columns', $options)) {
  785. $options['case_insensitive_columns'] = array();
  786. }
  787. if (!array_key_exists('regex_columns', $options)) {
  788. $options['regex_columns'] = array();
  789. }
  790. if (!array_key_exists('order_by', $options)) {
  791. $options['order_by'] = array();
  792. }
  793. if (!array_key_exists('return_sql', $options)) {
  794. $options['return_sql'] = FALSE;
  795. }
  796. if (!array_key_exists('has_record', $options)) {
  797. $options['has_record'] = FALSE;
  798. }
  799. if (!array_key_exists('is_duplicate', $options)) {
  800. $options['is_duplicate'] = FALSE;
  801. }
  802. $pager = array();
  803. if (array_key_exists('pager', $options)) {
  804. $pager = $options['pager'];
  805. }
  806. // check that our columns and values arguments are proper arrays
  807. if (!is_array($columns)) {
  808. tripal_core_report_error(
  809. 'tripal_core',
  810. TRIPAL_ERROR,
  811. 'tripal_core_chado_select; the $columns argument must be an array. Columns:%columns',
  812. array('%columns' => print_r($columns, TRUE)),
  813. array('print' => $print_errors)
  814. );
  815. return FALSE;
  816. }
  817. if (!is_array($values)) {
  818. tripal_core_report_error(
  819. 'tripal_core',
  820. TRIPAL_ERROR,
  821. 'tripal_core_chado_select; the $values argument must be an array. Values:%values',
  822. array('%values' => print_r($values, TRUE)),
  823. array('print' => $print_errors)
  824. );
  825. return FALSE;
  826. }
  827. // get the table description
  828. $table_desc = tripal_core_get_chado_table_schema($table);
  829. $select = '';
  830. $from = '';
  831. $where = array();
  832. $args = array();
  833. // if the 'use_unique' option is turned on then we want
  834. // to remove all but unique keys
  835. if ($options['is_duplicate'] and array_key_exists('unique keys', $table_desc)) {
  836. $ukeys = $table_desc['unique keys'];
  837. $has_results = 0;
  838. // iterate through the unique constraints and reset the values and columns
  839. // arrays to only include these fields
  840. foreach ($ukeys as $cname => $fields) {
  841. if ($has_results) {
  842. continue;
  843. }
  844. $new_values = array();
  845. $new_columns = array();
  846. $new_options = array();
  847. $uq_sname = "uq_" . $table . "_";
  848. $has_pkey = 0;
  849. // include the primary key in the results returned
  850. if (array_key_exists('primary key', $table_desc)) {
  851. $has_pkey = 1;
  852. $pkeys = $table_desc['primary key'];
  853. foreach ($pkeys as $index => $key) {
  854. array_push($new_columns, $key);
  855. }
  856. }
  857. // recreate the $values and $columns arrays
  858. foreach ($fields as $field) {
  859. if (array_key_exists($field, $values)) {
  860. $new_values[$field] = $values[$field];
  861. $uq_sname .= substr($field, 0, 2);
  862. // if there is no primary key then use the unique contraint fields
  863. if (!$has_pkey) {
  864. array_push($new_columns, $field);
  865. }
  866. }
  867. // if the field doesn't exist in the values array then
  868. // substitute any default values
  869. elseif (array_key_exists('default', $table_desc['fields'][$field])) {
  870. $new_values[$field] = $table_desc['fields'][$field]['default'];
  871. $uq_sname .= substr($field, 0, 2);
  872. if (!$has_pkey) {
  873. array_push($new_columns, $field);
  874. }
  875. }
  876. // if there is no value (default or otherwise) check if this field is
  877. // allowed to be null
  878. elseif (!$table_desc['fields'][$field]['not null']) {
  879. $new_values[$field] = NULL;
  880. $uq_sname .= "n" . substr($field, 0, 2);
  881. if (!$has_pkey) {
  882. array_push($new_columns, $field);
  883. }
  884. }
  885. // if the array key doesn't exist in the values given by the caller
  886. // and there is no default value then we cannot check if the record
  887. // is a duplicate so return FALSE
  888. else {
  889. tripal_core_report_error('tripal_core', TRIPAL_ERROR,
  890. 'tripal_core_chado_select: There is no value for %field thus we cannot check if this record is unique',
  891. array('%field' => $field), array('print' => $print_errors));
  892. return FALSE;
  893. }
  894. }
  895. $results = tripal_core_chado_select($table, $new_columns, $new_values, $new_options);
  896. // if we have a duplicate record then return the results
  897. if (count($results) > 0) {
  898. $has_results = 1;
  899. }
  900. unset($new_columns);
  901. unset($new_values);
  902. unset($new_options);
  903. }
  904. if ($options['has_record'] and $has_results) {
  905. return TRUE;
  906. }
  907. else {
  908. return $results;
  909. }
  910. }
  911. foreach ($values as $field => $value) {
  912. // make sure the field is in the table description. If not then return an error
  913. // message
  914. if (!array_key_exists($field, $table_desc['fields'])) {
  915. tripal_core_report_error('tripal_core', TRIPAL_ERROR,
  916. 'tripal_core_chado_select: The field "%field" does not exist for the table "%table". Cannot perform query. Values: %array',
  917. array('%field' => $field, '%table' => $table, '%array' => print_r($values, 1)),
  918. array('print' => $print_errors)
  919. );
  920. return array();
  921. }
  922. $select[] = $field;
  923. if (is_array($value)) {
  924. // if the user has specified multiple values for matching then this we
  925. // want to catch that and save them in our $where array, otherwise
  926. // we'll descend for a foreign key relationship
  927. if (array_values($value) === $value) {
  928. $where[$field] = $value;
  929. }
  930. else {
  931. // select the value from the foreign key relationship for this value
  932. $foreign_options = array(
  933. 'regex_columns' => $options['regex_columns'],
  934. );
  935. $results = tripal_core_chado_get_foreign_key($table_desc, $field, $value, $foreign_options);
  936. if (!$results or count($results)==0) {
  937. return array();
  938. }
  939. else {
  940. $where[$field] = $results;
  941. }
  942. }
  943. }
  944. else {
  945. // need to catch a 0 and make int if integer field
  946. // but we don't want to catch a NULL
  947. if ($value === NULL) {
  948. $where[$field] = NULL;
  949. }
  950. elseif ($table_desc['fields'][$field]['type'] == 'int') {
  951. $where[$field][] = (int) $value;
  952. }
  953. else {
  954. $where[$field][] = $value;
  955. }
  956. }
  957. }
  958. // now build the SQL and prepared SQL statements. We may not use
  959. // the prepared statement if it wasn't requested in the options or if the
  960. // argument in a where statement has multiple values.
  961. if (empty($where)) {
  962. // sometimes want to select everything
  963. $sql = "SELECT " . implode(', ', $columns) . " ";
  964. $sql .= 'FROM {' . $table . '} ';
  965. // we don't prepare a statement if there is no where clause
  966. $prepared = FALSE;
  967. }
  968. else {
  969. $sql = "SELECT " . implode(', ', $columns) . " ";
  970. $sql .= 'FROM {' . $table . '} ';
  971. // if $values is empty then we want all results so no where clause
  972. if (!empty($values)) {
  973. $sql .= "WHERE ";
  974. }
  975. foreach ($where as $field => $value) {
  976. // if we have multiple values returned then we need an 'IN' statement
  977. // in our where statement
  978. if (count($value) > 1) {
  979. $sql .= "$field IN (";
  980. $index = 0;
  981. foreach ($value as $v) {
  982. $sql .= ":$field" . $index . ', ';
  983. $args[":$field" . $index] = $v;
  984. $index++;
  985. }
  986. $sql = drupal_substr($sql, 0, -2); // remove trailing ', '
  987. $sql .= ") AND ";
  988. }
  989. // if we have a null value then we need an IS NULL in our where statement
  990. elseif ($value === NULL) {
  991. $sql .= "$field IS NULL AND ";
  992. // Need to remove one from the argument count b/c nulls don't add an argument
  993. }
  994. // if we have a single value then we need an = in our where statement
  995. else {
  996. $operator = '=';
  997. if (in_array($field, $options['regex_columns'])) {
  998. $operator = '~*';
  999. }
  1000. if (in_array($field, $options['case_insensitive_columns'])) {
  1001. $sql .= "lower($field) $operator lower(:$field) AND ";
  1002. $args[":$field"] = $value[0];
  1003. }
  1004. else {
  1005. $sql .= "$field $operator :$field AND ";
  1006. $args[":$field"] = $value[0];
  1007. }
  1008. }
  1009. } // end foreach item in where clause
  1010. $sql = drupal_substr($sql, 0, -4); // get rid of the trailing 'AND '
  1011. } // end if (empty($where)){ } else {
  1012. // finally add any ordering of the results to the SQL statement
  1013. if (count($options['order_by']) > 0) {
  1014. $sql .= " ORDER BY ";
  1015. foreach ($options['order_by'] as $field => $dir) {
  1016. $sql .= "$field $dir, ";
  1017. }
  1018. $sql = drupal_substr($sql, 0, -2); // get rid of the trailing ', '
  1019. }
  1020. // if the caller has requested the SQL rather than the results then do so
  1021. if ($options['return_sql'] == TRUE) {
  1022. return array('sql' => $sql, 'args' => $args);
  1023. }
  1024. if (array_key_exists('limit', $pager)) {
  1025. $total_records = 0;
  1026. $resource = chado_pager_query($sql, $args, $pager['limit'], $pager['element'], NULL, $total_records);
  1027. }
  1028. else {
  1029. $resource = chado_query($sql, $args);
  1030. }
  1031. // format results into an array
  1032. $results = array();
  1033. foreach ($resource as $r) {
  1034. $results[] = $r;
  1035. }
  1036. if ($options['has_record']) {
  1037. return count($results);
  1038. }
  1039. return $results;
  1040. }
  1041. /**
  1042. * Use this function instead of db_query() to avoid switching databases
  1043. * when making query to the chado database
  1044. *
  1045. * Will use a chado persistent connection if it already exists
  1046. *
  1047. * @param $sql
  1048. * The sql statement to execute
  1049. *
  1050. * @param $args
  1051. * The array of arguments, with the same structure as passed to
  1052. * the db_query() function of Drupal.
  1053. *
  1054. * @return
  1055. * DatabaseStatementInterface A prepared statement object, already executed.
  1056. *
  1057. * @ingroup tripal_chado_api
  1058. */
  1059. function chado_query($sql, $args = array()) {
  1060. $is_local = $GLOBALS["chado_is_local"];
  1061. // Args should be an array
  1062. if (!is_array($args)) {
  1063. tripal_core_report_error('tripal_core', TRIPAL_ERROR,
  1064. 'chado_query; Need to pass an array to chado_query, "%value" passed instead. Query: %query',
  1065. array('%value' => $args, '%query' => $sql)
  1066. );
  1067. $args = array($args);
  1068. return FALSE;
  1069. }
  1070. // if Chado is local to the database then prefix the Chado table
  1071. // names with 'chado'.
  1072. if ($is_local) {
  1073. $sql = preg_replace('/\n/', '', $sql); // remove carriage returns
  1074. $sql = preg_replace('/\{(.*?)\}/', 'chado.$1', $sql);
  1075. // the featureloc table has some indexes that use function that call other functions
  1076. // and those calls do not reference a schema, therefore, any tables with featureloc
  1077. // must automaticaly have the chado schema set as active to find
  1078. if(preg_match('/chado.featureloc/i', $sql)) {
  1079. $previous_db = tripal_db_set_active('chado') ;
  1080. $results = db_query($sql, $args);
  1081. tripal_db_set_active($previous_db);
  1082. }
  1083. // for all other tables we should have everything in scope so just run the query
  1084. else {
  1085. $results = db_query($sql, $args);
  1086. }
  1087. }
  1088. // if Chado is not local to the Drupal database then we have to
  1089. // switch to another database
  1090. else {
  1091. $previous_db = tripal_db_set_active('chado') ;
  1092. $results = db_query($sql, $args);
  1093. tripal_db_set_active($previous_db);
  1094. }
  1095. return $results;
  1096. }
  1097. /**
  1098. * Use this function instead of pager_query() when selecting a
  1099. * subset of records from a Chado table.
  1100. *
  1101. * @param $query
  1102. * The SQL statement to execute, this is followed by a variable number of args
  1103. * used as substitution values in the SQL statement.
  1104. * @param $args
  1105. * The array of arguments for the query. They keys are the placeholders
  1106. * @param $limit
  1107. * The number of query results to display per page.
  1108. * @param $element
  1109. * An optional integer to distinguish between multiple pagers on one page.
  1110. * @param $count_query
  1111. * An SQL query used to count matching records.
  1112. *
  1113. * @returns
  1114. * A database query result resource or FALSE if the query was not
  1115. * executed correctly
  1116. *
  1117. * @ingroup tripal_chado_api
  1118. */
  1119. function chado_pager_query($query, $args, $limit, $element, $count_query = '') {
  1120. // get the page and offset for the pager
  1121. $page = isset($_GET['page']) ? $_GET['page'] : '0';
  1122. $offset = $limit * $page;
  1123. // Construct a count query if none was given.
  1124. if (!isset($count_query)) {
  1125. $count_query = preg_replace(array('/SELECT.*?FROM /As', '/ORDER BY .*/'),
  1126. array('SELECT COUNT(*) FROM ', ''), $query);
  1127. }
  1128. // We calculate the total of pages as ceil(items / limit).
  1129. $results = chado_query($count_query, $args);
  1130. if (!$results) {
  1131. tripal_core_report_error('tripal_core', TRIPAL_ERROR,
  1132. "chado_pager_query(): Query failed: %cq", array('%cq' => $count_query));
  1133. return;
  1134. }
  1135. $total_records = $results->fetchField();
  1136. // set a session variable for storing the total number of records
  1137. $_SESSION['chado_pager'][$element]['total_records'] = $total_records;
  1138. pager_default_initialize($total_records, $limit, $element);
  1139. $query .= ' LIMIT ' . (int) $limit . ' OFFSET ' . (int) $offset;
  1140. $results = chado_query($query, $args);
  1141. return $results;
  1142. }
  1143. /**
  1144. * Gets the value of a foreign key relationship
  1145. *
  1146. * This function is used by tripal_core_chado_select, tripal_core_chado_insert,
  1147. * and tripal_core_chado_update to iterate through the associate array of
  1148. * values that gets passed to each of those routines. The values array
  1149. * is nested where foreign key contraints are used to specify a value that. See
  1150. * documentation for any of those functions for further information.
  1151. *
  1152. * @param $table_desc
  1153. * A table description for the table with the foreign key relationship to be identified generated by
  1154. * hook_chado_<table name>_schema()
  1155. * @param $field
  1156. * The field in the table that is the foreign key.
  1157. * @param $values
  1158. * An associative array containing the values
  1159. * @param $options
  1160. * An associative array of additional options where the key is the option
  1161. * and the value is the value of that option. These options are passed on to tripal_core_chado_select.
  1162. *
  1163. * Additional Options Include:
  1164. * - case_insensitive_columns
  1165. * An array of columns to do a case insensitive search on.
  1166. * - regex_columns
  1167. * An array of columns where the value passed in should be treated as a regular expression
  1168. *
  1169. * @return
  1170. * A string containg the results of the foreign key lookup, or FALSE if failed.
  1171. *
  1172. * Example usage:
  1173. * @code
  1174. *
  1175. * $values = array(
  1176. * 'genus' => 'Citrus',
  1177. * 'species' => 'sinensis',
  1178. * );
  1179. * $value = tripal_core_chado_get_foreign_key('feature', 'organism_id',$values);
  1180. *
  1181. * @endcode
  1182. * The above code selects a record from the feature table using the three fields
  1183. * that uniquely identify a feature. The $columns array simply lists the columns
  1184. * to select. The $values array is nested such that the organism is identified by
  1185. * way of the organism_id foreign key constraint by specifying the genus and
  1186. * species. The cvterm is also specified using its foreign key and the cv_id
  1187. * for the cvterm is nested as well.
  1188. *
  1189. * @ingroup tripal_chado_api
  1190. */
  1191. function tripal_core_chado_get_foreign_key($table_desc, $field, $values, $options = NULL) {
  1192. // set defaults for options. If we don't set defaults then
  1193. // we get memory leaks when we try to access the elements
  1194. if (!is_array($options)) {
  1195. $options = array();
  1196. }
  1197. if (!array_key_exists('case_insensitive_columns', $options)) {
  1198. $options['case_insensitive_columns'] = array();
  1199. }
  1200. if (!array_key_exists('regex_columns', $options)) {
  1201. $options['regex_columns'] = array();
  1202. }
  1203. // get the list of foreign keys for this table description and
  1204. // iterate through those until we find the one we're looking for
  1205. $fkeys = '';
  1206. if (array_key_exists('foreign keys', $table_desc)) {
  1207. $fkeys = $table_desc['foreign keys'];
  1208. }
  1209. if ($fkeys) {
  1210. foreach ($fkeys as $name => $def) {
  1211. if (is_array($def['table'])) {
  1212. //foreign key was described 2X
  1213. $message = "The foreign key " . $name . " was defined twice. Please check modules "
  1214. . "to determine if hook_chado_schema_<version>_" . $table_desc['table'] . "() was "
  1215. . "implemented and defined this foreign key when it wasn't supposed to. Modules "
  1216. . "this hook was implemented in: " . implode(', ',
  1217. module_implements("chado_" . $table_desc['table'] . "_schema")) . ".";
  1218. watchdog('tripal_core', $message);
  1219. drupal_set_message(check_plain($message), 'error');
  1220. continue;
  1221. }
  1222. $table = $def['table'];
  1223. $columns = $def['columns'];
  1224. // iterate through the columns of the foreign key relationship
  1225. foreach ($columns as $left => $right) {
  1226. // does the left column in the relationship match our field?
  1227. if (strcmp($field, $left) == 0) {
  1228. // the column name of the foreign key matches the field we want
  1229. // so this is the right relationship. Now we want to select
  1230. $select_cols = array($right);
  1231. $result = tripal_core_chado_select($table, $select_cols, $values, $options);
  1232. $fields = array();
  1233. if ($result and count($result) > 0) {
  1234. foreach ($result as $obj) {
  1235. $fields[] = $obj->$right;
  1236. }
  1237. return $fields;
  1238. }
  1239. }
  1240. }
  1241. }
  1242. }
  1243. else {
  1244. // @todo: what do we do if we get to this point and we have a fk
  1245. // relationship expected but we don't have any definition for one in the
  1246. // table schema??
  1247. $version = $GLOBALS["chado_version"];
  1248. $message = t("There is no foreign key relationship defined for " . $field . " .
  1249. To define a foreign key relationship, determine the table this foreign
  1250. key referrs to (<foreign table>) and then implement
  1251. hook_chado_chado_schema_v<version>_<foreign table>(). See
  1252. tripal_feature_chado_v1_2_schema_feature for an example. Chado version: $version");
  1253. watchdog('tripal_core', $message);
  1254. drupal_set_message(check_plain($message), 'error');
  1255. }
  1256. return array();
  1257. }