tripal_chado.query.api.inc 66 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845
  1. <?php
  2. /**
  3. * @file
  4. * Provides an API for querying of chado including inserting, updating, deleting and
  5. * selecting from chado.
  6. */
  7. /**
  8. * Get max rank for a given set of criteria
  9. * This function was developed with the many property tables in chado in mind but will
  10. * work for any table with a rank
  11. *
  12. * @params tablename: the name of the chado table you want to select the max rank from
  13. * this table must contain a rank column of type integer
  14. * @params where_options: array(
  15. * <column_name> => array(
  16. * 'type' => <type of column: INT/STRING>,
  17. * 'value' => <the value you want to filter on>,
  18. * 'exact' => <if TRUE use =; if FALSE use ~>,
  19. * )
  20. * )
  21. * where options should include the id and type for that table to correctly
  22. * group a set of records together where the only difference are the value and rank
  23. * @return the maximum rank
  24. *
  25. * @ingroup tripal_chado_api
  26. */
  27. function chado_get_table_max_rank($tablename, $where_options) {
  28. $where_clauses = array();
  29. $where_args = array();
  30. //generate the where clause from supplied options
  31. // the key is the column name
  32. $i = 0;
  33. $sql = "
  34. SELECT max(rank) as max_rank, count(rank) as count
  35. FROM {".$tablename."}
  36. WHERE
  37. ";
  38. foreach ($where_options as $key => $value) {
  39. $where_clauses[] = "$key = :$key";
  40. $where_args[":$key"] = $value;
  41. }
  42. $sql .= implode($where_clauses, ' AND ');
  43. $result = chado_query($sql, $where_args)->fetchObject();
  44. if ($result->count > 0) {
  45. return $result->max_rank;
  46. }
  47. else {
  48. return -1;
  49. }
  50. }
  51. /**
  52. * Alter Chado connection settings.
  53. *
  54. * This hook is useful for multi-chado instances. Tripal core functions
  55. * call the chado_set_active() function (e.g. chado_query) but there is no
  56. * opportunity elsewhere to set the active database. This is useful in two
  57. * cases: 1) Users are managed at the database level as in the case of
  58. * SouthGreen Bioinformatics Platform tools (e.g. Banana Genone Hub).
  59. * This allows custom modules to change the database connections on a per-user
  60. * basis, and each user permissions is managed at the database level. Users
  61. * are managed at the database level to provid the same access restrictions
  62. * across various tools that use Chado (e,g, Artemis) 2) When there are
  63. * simply two Chado instances housed in different Chado databases and the
  64. * module needs to control which one is being used at any given time.
  65. *
  66. * @param $settings
  67. * An array containing
  68. *
  69. * @see chado_set_active()
  70. *
  71. * @ingroup tripal_chado_api
  72. */
  73. function hook_chado_connection_alter(&$settings) {
  74. // This example shows how we could make sure no table of the 'public' schema
  75. // would be allowed in the coming queries: to do so, the caller will call
  76. // "chado_set_active('chado_only');" and the hook will remove 'public' from
  77. // the search path.
  78. if ('chado_only' == $settings['dbname']) {
  79. $settings['new_active_db'] = 'chado';
  80. // We don't include 'public' in search path.
  81. $settings['new_search_path'] = 'chado';
  82. }
  83. }
  84. /**
  85. * Set the Tripal Database
  86. *
  87. * The chado_set_active function is used to prevent namespace collisions
  88. * when Chado and Drupal are installed in the same database but in different
  89. * schemas. It is also used when using Drupal functions such as
  90. * db_table_exists().
  91. *
  92. * The connection settings can be altered through the hook
  93. * hook_chado_connection_alter.
  94. *
  95. * Current active connection name is stored in the global variable
  96. * $GLOBALS['chado_active_db'].
  97. *
  98. * @see hook_chado_connection_alter()
  99. *
  100. * @ingroup tripal_chado_api
  101. */
  102. function chado_set_active($dbname = 'default') {
  103. // Check if the chado_active_db has been set yet.
  104. if (!array_key_exists('chado_active_db', $GLOBALS)) {
  105. $GLOBALS['chado_active_db'] = 'default';
  106. }
  107. $previous_db = $active_db = $GLOBALS['chado_active_db'];
  108. $search_path = 'public';
  109. // Change only if 'chado' has been specified.
  110. if ($dbname == 'chado') {
  111. $active_db = 'chado';
  112. $search_path = 'chado,public';
  113. }
  114. $settings = array(
  115. 'dbname' => $dbname,
  116. 'new_active_db' => &$active_db,
  117. 'new_search_path' => &$search_path,
  118. );
  119. // Will call all modules implementing hook_chado_search_path_alter
  120. // note: hooks can alter $active_db and $search_path.
  121. drupal_alter('chado_connection', $settings);
  122. // set chado_active_db to remember active db
  123. $GLOBALS['chado_active_db'] = $active_db;
  124. // set PostgreSQL search_path
  125. db_query('SET search_path TO ' . $search_path);
  126. return $previous_db;
  127. }
  128. /**
  129. * @defgroup tripal_chado_query_api Chado Query API
  130. * @ingroup tripal_chado_api
  131. * @{
  132. * Provides an API for querying of chado including inserting, updating, deleting and
  133. * selecting from specific chado tables. There is also a generic function, chado_query(),
  134. * to execute and SQL statement on chado. It is ideal to use these functions to interact
  135. * with chado in order to keep your module compatible with both local & external chado
  136. * databases. Furthermore, it ensures connection to the chado database is taken care
  137. * of for you.
  138. *
  139. * Generic Queries to a specifc chado table:
  140. *
  141. * chado_select_record( [table name], [columns to select], [specify record to select], [options*] )
  142. * This function allows you to select various columns from the specified chado table. Although
  143. * you can only select from a single table, you can specify the record to select using values
  144. * from related tables through use of a nested array. For example, the following code shows
  145. * you how to select the name and uniquename of a feature based on it's type and source
  146. * organism.
  147. * @code
  148. * $values = array(
  149. * 'organism_id' => array(
  150. * 'genus' => 'Citrus',
  151. * 'species' => 'sinensis',
  152. * ),
  153. * 'type_id' => array (
  154. * 'cv_id' => array (
  155. * 'name' => 'sequence',
  156. * ),
  157. * 'name' => 'gene',
  158. * 'is_obsolete' => 0
  159. * ),
  160. * );
  161. * $result = chado_select_record(
  162. * 'feature', // table to select from
  163. * array('name', 'uniquename'), // columns to select
  164. * $values // record to select (see variable defn. above)
  165. * );
  166. * @endcode
  167. *
  168. * chado_insert_record( [table name], [values to insert], [options*] )
  169. * This function allows you to insert a single record into a specific table. The values to
  170. * insert are specified using an associative array where the keys are the column names to
  171. * insert into and they point to the value to be inserted into that column. If the column
  172. * is a foreign key, the key will point to an array specifying the record in the foreign
  173. * table and then the primary key of that record will be inserted in the column. For example,
  174. * the following code will insert a feature and for the type_id, the cvterm.cvterm_id of
  175. * the cvterm record will be inserted and for the organism_id, the organism.organism_id
  176. * of the organism_record will be inserted.
  177. * @code
  178. * $values = array(
  179. * 'organism_id' => array(
  180. * 'genus' => 'Citrus',
  181. * 'species' => 'sinensis',
  182. * ),
  183. * 'name' => 'orange1.1g000034m.g',
  184. * 'uniquename' => 'orange1.1g000034m.g',
  185. * 'type_id' => array (
  186. * 'cv_id' => array (
  187. * 'name' => 'sequence',
  188. * ),
  189. * 'name' => 'gene',
  190. * 'is_obsolete' => 0
  191. * ),
  192. * );
  193. * $result = chado_insert_record(
  194. * 'feature', // table to insert into
  195. * $values // values to insert
  196. * );
  197. * @endcode
  198. *
  199. * chado_update_record( [table name], [specify record to update], [values to change], [options*] )
  200. * This function allows you to update records in a specific chado table. The record(s)
  201. * you wish to update are specified the same as in the select function above and
  202. * the values to be update are specified the same as the values to be inserted were. For
  203. * example, the following code species that a feature with a given uniquename, organism_id,
  204. * and type_id (the unique constraint for the feature table) will be updated with a new name,
  205. * and the type changed from a gene to an mRNA.
  206. * @code
  207. * $umatch = array(
  208. * 'organism_id' => array(
  209. * 'genus' => 'Citrus',
  210. * 'species' => 'sinensis',
  211. * ),
  212. * 'uniquename' => 'orange1.1g000034m.g7',
  213. * 'type_id' => array (
  214. * 'cv_id' => array (
  215. * 'name' => 'sequence',
  216. * ),
  217. * 'name' => 'gene',
  218. * 'is_obsolete' => 0
  219. * ),
  220. * );
  221. * $uvalues = array(
  222. * 'name' => 'orange1.1g000034m.g',
  223. * 'type_id' => array (
  224. * 'cv_id' => array (
  225. * 'name' => 'sequence',
  226. * ),
  227. * 'name' => 'mRNA',
  228. * 'is_obsolete' => 0
  229. * ),
  230. * );
  231. * $result = chado_update_record('feature',$umatch,$uvalues);
  232. * @endcode
  233. *
  234. * chado_delete_record( [table name], [specify records to delete], [options*] )
  235. * This function allows you to delete records from a specific chado table. The record(s)
  236. * to delete are specified the same as the record to select/update was above. For example,
  237. * the following code will delete all genes from the organism Citrus sinensis.
  238. * @code
  239. * $values = array(
  240. * 'organism_id' => array(
  241. * 'genus' => 'Citrus',
  242. * 'species' => 'sinensis',
  243. * ),
  244. * 'type_id' => array (
  245. * 'cv_id' => array (
  246. * 'name' => 'sequence',
  247. * ),
  248. * 'name' => 'gene',
  249. * 'is_obsolete' => 0
  250. * ),
  251. * );
  252. * $result = chado_select_record(
  253. * 'feature', // table to select from
  254. * $values // records to delete (see variable defn. above)
  255. * );
  256. * @endcode
  257. *
  258. * Generic Queries for any SQL:
  259. *
  260. * Often it is necessary to select from more then one table in chado or to execute
  261. * other complex queries that cannot be handled efficiently by the above functions. It is
  262. * for this reason that the chado_query( [sql string], [arguments to sub-in to the sql] )
  263. * function was created. This function allows you to execute any SQL directly on the
  264. * chado database and should be used with care. If any user input will be used in the query
  265. * make sure to put a placeholder in your SQL string and then define the value in the
  266. * arguments array. This will make sure that the user input is santized and safe through
  267. * type-checking and escaping. The following code shows an example of how to use user input
  268. * resulting from a form and would be called withing the form submit function.
  269. * @code
  270. * $sql = "SELECT F.name, CVT.name as type_name, ORG.common_name
  271. * FROM feature F
  272. * LEFT JOIN cvterm CVT ON F.type_id = CVT.cvterm_id
  273. * LEFT JOIN organism ORG ON F.organism_id = ORG.organism_id
  274. * WHERE
  275. * F.uniquename = :feature_uniquename";
  276. * $args = array( ':feature_uniquename' => $form_state['values']['uniquename'] );
  277. * $result = chado_query( $sql, $args );
  278. * foreach ($result as $r) { [Do something with the records here] }
  279. * @endcode
  280. *
  281. * If you are going to need more then a couple fields, you might want to use the
  282. * Chado Variables API (specifically chado_generate_var()) to select all
  283. * of the common fields needed including following foreign keys.
  284. *
  285. * Loading of Variables from chado data:
  286. *
  287. * These functions, chado_generate_var() and chado_expand_var(), generate objects
  288. * containing the full details of a record(s) in chado. These should be used in all
  289. * theme templates.
  290. *
  291. * This differs from the objects returned by chado_select_record in so far as all foreign key
  292. * relationships have been followed meaning you have more complete details. Thus this function
  293. * should be used whenever you need a full variable and chado_select_record should be used if
  294. * you only case about a few columns.
  295. *
  296. * The initial variable is generated by the
  297. * chado_generate_var([table], [filter criteria], [optional options])
  298. * function. An example of how to use this function is:
  299. * @code
  300. $values = array(
  301. 'name' => 'Medtr4g030710'
  302. );
  303. $features = chado_generate_var('feature', $values);
  304. * @endcode
  305. * This will return an object if there is only one feature with the name Medtr4g030710 or it will
  306. * return an array of feature objects if more than one feature has that name.
  307. *
  308. * Some tables and fields are excluded by default. To have those tables & fields added to
  309. * your variable you can use the
  310. * chado_expand_var([chado variable], [type], [what to expand], [optional options])
  311. * function. An example of how to use this function is:
  312. * @code
  313. // Get a chado object to be expanded
  314. $values = array(
  315. 'name' => 'Medtr4g030710'
  316. );
  317. $features = chado_generate_var('feature', $values);
  318. // Expand the organism node
  319. $feature = chado_expand_var($feature, 'node', 'organism');
  320. // Expand the feature.residues field
  321. $feature = chado_expand_var($feature, 'field', 'feature.residues');
  322. // Expand the feature properties (featureprop table)
  323. $feature = chado_expand_var($feature, 'table', 'featureprop');
  324. * @endcode
  325. */
  326. /**
  327. * Provides a generic routine for inserting into any Chado table
  328. *
  329. * Use this function to insert a record into any Chado table. The first
  330. * argument specifies the table for inserting and the second is an array
  331. * of values to be inserted. The array is mutli-dimensional such that
  332. * foreign key lookup values can be specified.
  333. *
  334. * @param $table
  335. * The name of the chado table for inserting
  336. * @param $values
  337. * An associative array containing the values for inserting.
  338. * @param $options
  339. * An array of options such as:
  340. * - skip_validation: TRUE or FALSE. If TRUE will skip all the validation steps and
  341. * just try to insert as is. This is much faster but results in unhandled
  342. * non user-friendly errors if the insert fails.
  343. * - return_record: by default, the function will return the record but with
  344. * the primary keys added after insertion. To simply return TRUE on success
  345. * set this option to FALSE
  346. *
  347. * @return
  348. * On success this function returns the inserted record with the new primary keys
  349. * added to the returned array. On failure, it returns FALSE.
  350. *
  351. * Example usage:
  352. * @code
  353. * $values = array(
  354. * 'organism_id' => array(
  355. * 'genus' => 'Citrus',
  356. * 'species' => 'sinensis',
  357. * ),
  358. * 'name' => 'orange1.1g000034m.g',
  359. * 'uniquename' => 'orange1.1g000034m.g',
  360. * 'type_id' => array (
  361. * 'cv_id' => array (
  362. * 'name' => 'sequence',
  363. * ),
  364. * 'name' => 'gene',
  365. * 'is_obsolete' => 0
  366. * ),
  367. * );
  368. * $result = chado_insert_record('feature',$values);
  369. * @endcode
  370. * The above code inserts a record into the feature table. The $values array is
  371. * nested such that the organism is selected by way of the organism_id foreign
  372. * key constraint by specifying the genus and species. The cvterm is also
  373. * specified using its foreign key and the cv_id for the cvterm is nested as
  374. * well.
  375. *
  376. * @ingroup tripal_chado_query_api
  377. */
  378. function chado_insert_record($table, $values, $options = array()) {
  379. $print_errors = (isset($options['print_errors'])) ? $options['print_errors'] : FALSE;
  380. if (!is_array($values)) {
  381. tripal_report_error('tripal_chado', TRIPAL_ERROR,
  382. 'Cannot pass non array as values for inserting.', array(),
  383. array('print' => $print_errors)
  384. );
  385. return FALSE;
  386. }
  387. if (count($values)==0) {
  388. tripal_report_error('tripal_chado', TRIPAL_ERROR,
  389. 'Cannot pass an empty array as values for inserting.',
  390. array(),array('print' => $print_errors)
  391. );
  392. return FALSE;
  393. }
  394. // set defaults for options. If we don't set defaults then
  395. // we get memory leaks when we try to access the elements
  396. if (!is_array($options)) {
  397. $options = array();
  398. }
  399. if (!array_key_exists('skip_validation', $options)) {
  400. $options['skip_validation'] = FALSE;
  401. }
  402. if (!array_key_exists('return_record', $options)) {
  403. $options['return_record'] = TRUE;
  404. }
  405. $insert_values = array();
  406. if (array_key_exists('skip_validation', $options)) {
  407. $validate = !$options['skip_validation'];
  408. }
  409. else {
  410. $validate = TRUE;
  411. }
  412. // get the table description
  413. $table_desc = chado_get_schema($table);
  414. if (empty($table_desc)) {
  415. tripal_report_error('tripal_chado', TRIPAL_WARNING,
  416. 'chado_insert_record; There is no table description for !table_name',
  417. array('!table_name' => $table), array('print' => $print_errors)
  418. );
  419. }
  420. // iterate through the values array and create a new 'insert_values' array
  421. // that has all the values needed for insert with all foreign relationsihps
  422. // resolved.
  423. foreach ($values as $field => $value) {
  424. // make sure the field is in the table description. If not then return an error
  425. // message
  426. if (!array_key_exists($field, $table_desc['fields'])) {
  427. tripal_report_error('tripal_chado', TRIPAL_ERROR,
  428. "chado_insert_record; The field '%field' does not exist " .
  429. "for the table '%table'. Cannot perform insert. Values: %array",
  430. array('%field' => $field, '%table' => $table, '%array' => print_r($values, 1)),
  431. array('print' => $print_errors)
  432. );
  433. return FALSE;
  434. }
  435. if (is_array($value)) {
  436. // select the value from the foreign key relationship for this value
  437. $results = chado_schema_get_foreign_key($table_desc, $field, $value);
  438. if (sizeof($results) > 1) {
  439. tripal_report_error('tripal_chado', TRIPAL_ERROR,
  440. 'chado_insert_record: Too many records match the criteria supplied for !foreign_key foreign key constraint (!criteria)',
  441. array('!foreign_key' => $field, '!criteria' => print_r($value, TRUE)),
  442. array('print' => $print_errors)
  443. );
  444. return FALSE;
  445. }
  446. elseif (sizeof($results) < 1) {
  447. tripal_report_error('tripal_chado', TRIPAL_DEBUG,
  448. 'chado_insert_record: no record matches criteria supplied for !foreign_key foreign key constraint (!criteria)',
  449. array('!foreign_key' => $field, '!criteria' => print_r($value, TRUE)),
  450. array('print' => $print_errors)
  451. );
  452. return FALSE;
  453. }
  454. else {
  455. $insert_values[$field] = $results[0];
  456. }
  457. }
  458. else {
  459. $insert_values[$field] = $value;
  460. }
  461. }
  462. if ($validate) {
  463. // check for violation of any unique constraints
  464. $ukeys = array();
  465. if (array_key_exists('unique keys', $table_desc)) {
  466. $ukeys = $table_desc['unique keys'];
  467. }
  468. $ukselect_cols = array();
  469. $ukselect_vals = array();
  470. if ($ukeys) {
  471. foreach ($ukeys as $name => $fields) {
  472. foreach ($fields as $index => $field) {
  473. // build the arrays for performing a select that will check the contraint
  474. $ukselect_cols[] = $field;
  475. if (!array_key_exists($field, $insert_values)) {
  476. if (array_key_exists('default', $table_desc['fields'][$field])) {
  477. $ukselect_vals[$field] = $table_desc['fields'][$field]['default'];
  478. }
  479. }
  480. else {
  481. $ukselect_vals[$field] = $insert_values[$field];
  482. }
  483. }
  484. // now check the constraint
  485. if (chado_select_record($table, $ukselect_cols, $ukselect_vals)) {
  486. tripal_report_error('tripal_chado', TRIPAL_ERROR,
  487. "chado_insert_record; Cannot insert duplicate record into $table table: !values",
  488. array('!values' => print_r($values, TRUE)), array('print' => $print_errors)
  489. );
  490. return FALSE;
  491. }
  492. }
  493. }
  494. // If trying to insert a field that is the primary key, make sure it also
  495. // is unique.
  496. if (array_key_exists('primary key', $table_desc)) {
  497. $pkey = $table_desc['primary key'][0];
  498. if (array_key_exists($pkey, $insert_values)) {
  499. $coptions = array();
  500. if (chado_select_record($table, array($pkey), array($pkey => $insert_values[$pkey]), $coptions)) {
  501. tripal_report_error('tripal_chado', TRIPAL_ERROR,
  502. 'chado_insert_record; Cannot insert duplicate primary key into !table table: !values',
  503. array('!table' => $table, '!values' => print_r($values, TRUE)),
  504. array('print' => $print_errors)
  505. );
  506. return FALSE;
  507. }
  508. }
  509. }
  510. // Make sure required fields have a value.
  511. if (!is_array($table_desc['fields'])) {
  512. $table_desc['fields'] = array();
  513. tripal_report_error('tripal_chado', TRIPAL_WARNING,
  514. "chado_insert_record; %table missing fields: \n %schema",
  515. array('%table' => $table, '%schema' => print_r($table_desc, 1)),
  516. array('print' => $print_errors)
  517. );
  518. }
  519. foreach ($table_desc['fields'] as $field => $def) {
  520. // A field is considered missing if it cannot be NULL and there is no
  521. // default value for it or it is of type 'serial'.
  522. if (array_key_exists('NOT NULL', $def) and
  523. !array_key_exists($field, $insert_values) and
  524. !array_key_exists('default', $def) and
  525. strcmp($def['type'], serial) != 0) {
  526. tripal_report_error('tripal_chado', TRIPAL_ERROR,
  527. "chado_insert_record; Field %table.%field cannot be NULL: %values",
  528. array('%table' => $table, '%field' => $field, '%values' => print_r($values, 1)),
  529. array('print' => $print_errors)
  530. );
  531. return FALSE;
  532. }
  533. }
  534. }
  535. // End of validation.
  536. // Now build the insert SQL statement
  537. $ifields = array(); // contains the names of the fields
  538. $itypes = array(); // contains placeholders for the sql query
  539. $ivalues = array(); // contains the values of the fields
  540. foreach ($insert_values as $field => $value) {
  541. $ifields[] = $field;
  542. if (strcmp($value, '__NULL__')==0) {
  543. $itypes[] = "NULL";
  544. }
  545. else {
  546. $itypes[] = ":$field";
  547. $ivalues[":$field"] = $value;
  548. }
  549. }
  550. // create the SQL
  551. $sql = 'INSERT INTO {' . $table . '} (' . implode(", ", $ifields) . ") VALUES (" . implode(", ", $itypes) . ")";
  552. $result = chado_query($sql, $ivalues);
  553. // if we have a result then add primary keys to return array
  554. if ($options['return_record'] == TRUE and $result) {
  555. if (array_key_exists('primary key', $table_desc) and is_array($table_desc['primary key'])) {
  556. foreach ($table_desc['primary key'] as $field) {
  557. $sql = "SELECT CURRVAL('{" . $table . "_" . $field . "_seq}')";
  558. $results = chado_query($sql);
  559. $value = $results->fetchField();
  560. if (!$value) {
  561. tripal_report_error('tripal_chado', TRIPAL_ERROR,
  562. "chado_insert_record; not able to retrieve primary key after insert: %sql",
  563. array('%sql' => $sql),
  564. array('print' => $print_errors)
  565. );
  566. return FALSE;
  567. }
  568. $values[$field] = $value;
  569. }
  570. }
  571. return $values;
  572. }
  573. elseif ($options['return_record'] == FALSE and $result) {
  574. return TRUE;
  575. }
  576. else {
  577. tripal_report_error('tripal_chado', TRIPAL_ERROR,
  578. 'chado_insert_record; Cannot insert record into "%table": %values',
  579. array('%table' => $table, '%values' => print_r($values, 1)),
  580. array('print' => $print_errors)
  581. );
  582. return FALSE;
  583. }
  584. return FALSE;
  585. }
  586. /**
  587. * Provides a generic routine for updating into any Chado table
  588. *
  589. * Use this function to update a record in any Chado table. The first
  590. * argument specifies the table for inserting, the second is an array
  591. * of values to matched for locating the record for updating, and the third
  592. * argument give the values to update. The arrays are mutli-dimensional such
  593. * that foreign key lookup values can be specified.
  594. *
  595. * @param $table
  596. * The name of the chado table for inserting
  597. * @param $match
  598. * An associative array containing the values for locating a record to update.
  599. * @param $values
  600. * An associative array containing the values for updating.
  601. * @param $options
  602. * An array of options such as:
  603. * - return_record: by default, the function will return the TRUE if the record
  604. * was succesfully updated. However, set this option to TRUE to return the
  605. * record that was updated. The returned record will have the fields provided
  606. * but the primary key (if available for the table) will be added to the record.
  607. * @return
  608. * On success this function returns TRUE. On failure, it returns FALSE.
  609. *
  610. * Example usage:
  611. * @code
  612. $umatch = array(
  613. 'organism_id' => array(
  614. 'genus' => 'Citrus',
  615. 'species' => 'sinensis',
  616. ),
  617. 'uniquename' => 'orange1.1g000034m.g7',
  618. 'type_id' => array (
  619. 'cv_id' => array (
  620. 'name' => 'sequence',
  621. ),
  622. 'name' => 'gene',
  623. 'is_obsolete' => 0
  624. ),
  625. );
  626. $uvalues = array(
  627. 'name' => 'orange1.1g000034m.g',
  628. 'type_id' => array (
  629. 'cv_id' => array (
  630. 'name' => 'sequence',
  631. ),
  632. 'name' => 'mRNA',
  633. 'is_obsolete' => 0
  634. ),
  635. );
  636. * $result = chado_update_record('feature',$umatch,$uvalues);
  637. * @endcode
  638. * The above code species that a feature with a given uniquename, organism_id,
  639. * and type_id (the unique constraint for the feature table) will be updated.
  640. * The organism_id is specified as a nested array that uses the organism_id
  641. * foreign key constraint to lookup the specified values to find the exact
  642. * organism_id. The same nested struture is also used for specifying the
  643. * values to update. The function will find the record that matches the
  644. * columns specified and update the record with the avlues in the $uvalues array.
  645. *
  646. * @TODO: Support Complex filtering as is done in chado_select_record();
  647. *
  648. * @ingroup tripal_chado_query_api
  649. */
  650. function chado_update_record($table, $match, $values, $options = NULL) {
  651. $print_errors = (isset($options['print_errors'])) ? $options['print_errors'] : FALSE;
  652. if (!is_array($values)) {
  653. tripal_report_error('tripal_chado', TRIPAL_ERROR,
  654. 'Cannot pass non array as values for updating.',
  655. array(), array('print' => $print_errors)
  656. );
  657. return FALSE;
  658. }
  659. if (count($values)==0) {
  660. tripal_report_error('tripal_chado', TRIPAL_ERROR,
  661. 'Cannot pass an empty array as values for updating.',
  662. array(), array('print' => $print_errors)
  663. );
  664. return FALSE;
  665. }
  666. if (!is_array($match)) {
  667. tripal_report_error('tripal_chado', TRIPAL_ERROR,
  668. 'Cannot pass non array as values for matching.',
  669. array(), array('print' => $print_errors)
  670. );
  671. return FALSE;
  672. }
  673. if (count($match)==0) {
  674. tripal_report_error('tripal_chado', TRIPAL_ERROR,
  675. 'Cannot pass an empty array as values for matching.',
  676. array(), array('print' => $print_errors)
  677. );
  678. return FALSE;
  679. }
  680. // set defaults for options. If we don't set defaults then
  681. // we get memory leaks when we try to access the elements
  682. if (!is_array($options)) {
  683. $options = array();
  684. }
  685. if (!array_key_exists('return_record', $options)) {
  686. $options['return_record'] = FALSE;
  687. }
  688. $update_values = array(); // contains the values to be updated
  689. $update_matches = array(); // contains the values for the where clause
  690. // get the table description
  691. $table_desc = chado_get_schema($table);
  692. if (!$table_desc) {
  693. tripal_report_error('tripal_chado', TRIPAL_ERROR,
  694. 'The table name, %table, does not exist.',
  695. array('%table', $table), array('print' => $print_errors)
  696. );
  697. return FALSE;
  698. }
  699. // if the user wants us to return the record then we need to get the
  700. // unique primary key if one exists. That way we can add it to the
  701. // values that get returned at the end of the function
  702. $pkeys = array();
  703. if ($options['return_record'] == TRUE) {
  704. if (array_key_exists('primary key', $table_desc) and is_array($table_desc['primary key'])) {
  705. $columns = array();
  706. $stmt_suffix = '';
  707. foreach ($table_desc['primary key'] as $field) {
  708. $columns[] = $field;
  709. $stmt_suffix .= substr($field, 0, 2);
  710. }
  711. $options2 = array();
  712. $results = chado_select_record($table, $columns, $match, $options2);
  713. if (count($results) > 0) {
  714. foreach ($results as $index => $pkey) {
  715. $pkeys[] = $pkey;
  716. }
  717. }
  718. }
  719. }
  720. // get the values needed for matching in the SQL statement
  721. foreach ($match as $field => $value) {
  722. if (is_array($value)) {
  723. $results = chado_schema_get_foreign_key($table_desc, $field, $value);
  724. if (sizeof($results) > 1) {
  725. tripal_report_error('tripal_chado', TRIPAL_ERROR,
  726. 'chado_update_record: When trying to find record to update, too many records match the criteria supplied for !foreign_key foreign key constraint (!criteria)',
  727. array('!foreign_key' => $field, '!criteria' => print_r($value, TRUE)),
  728. array('print' => $print_errors)
  729. );
  730. return FALSE;
  731. }
  732. elseif (sizeof($results) < 1) {
  733. tripal_report_error('tripal_chado', TRIPAL_DEBUG,
  734. 'chado_update_record: When trying to find record to update, no record matches criteria supplied for !foreign_key foreign key constraint (!criteria)',
  735. array('!foreign_key' => $field, '!criteria' => print_r($value, TRUE)),
  736. array('print' => $print_errors)
  737. );
  738. return FALSE;
  739. }
  740. else {
  741. $update_matches[$field] = $results[0];
  742. }
  743. }
  744. else {
  745. $update_matches[$field] = $value;
  746. }
  747. }
  748. // get the values used for updating
  749. foreach ($values as $field => &$value) {
  750. if (is_array($value)) {
  751. $foreign_options = array();
  752. // select the value from the foreign key relationship for this value
  753. $results = chado_schema_get_foreign_key($table_desc, $field, $value, $foreign_options);
  754. if (sizeof($results) > 1) {
  755. tripal_report_error('tripal_chado', TRIPAL_ERROR,
  756. 'chado_update_record: When trying to find update values, too many records match the criteria supplied for !foreign_key foreign key constraint (!criteria)',
  757. array('!foreign_key' => $field, '!criteria' => print_r($value, TRUE)),
  758. array('print' => $print_errors)
  759. );
  760. return FALSE;
  761. }
  762. elseif (sizeof($results) < 1) {
  763. tripal_report_error('tripal_chado', TRIPAL_DEBUG,
  764. 'chado_update_record: When trying to find update values, no record matches criteria supplied for !foreign_key foreign key constraint (!criteria)',
  765. array('!foreign_key' => $field, '!criteria' => print_r($value,TRUE)),
  766. array('print' => $print_errors)
  767. );
  768. return FALSE;
  769. }
  770. else {
  771. $update_values[$field] = $results[0];
  772. }
  773. }
  774. else {
  775. $update_values[$field] = $value;
  776. }
  777. }
  778. // now build the SQL statement
  779. $sql = 'UPDATE {' . $table . '} SET ';
  780. $args = array(); // arguments passed to chado_query
  781. foreach ($update_values as $field => $value) {
  782. if (strcmp($value, '__NULL__') == 0) {
  783. $sql .= " $field = NULL, ";
  784. }
  785. else {
  786. $sql .= " $field = :$field, ";
  787. $args[":$field"] = $value;
  788. }
  789. }
  790. $sql = drupal_substr($sql, 0, -2); // get rid of the trailing comma & space
  791. $sql .= " WHERE ";
  792. foreach ($update_matches as $field => $value) {
  793. if (strcmp($value, '__NULL__')==0) {
  794. $sql .= " $field = NULL AND ";
  795. }
  796. else {
  797. $sql .= " $field = :$field AND ";
  798. $args[":$field"] = $value;
  799. }
  800. }
  801. $sql = drupal_substr($sql, 0, -4); // get rid of the trailing 'AND'
  802. $result = chado_query($sql, $args);
  803. // if we have a result then add primary keys to return array
  804. if ($options['return_record'] == TRUE and $result) {
  805. // only if we have a single result do we want to add the primary keys to the values
  806. // array. If the update matched many records we can't add the pkeys
  807. if (count($pkeys) == 1) {
  808. foreach ($pkeys as $index => $pkey) {
  809. foreach ($pkey as $field => $fvalue) {
  810. $values[$field] = $fvalue;
  811. }
  812. }
  813. }
  814. return $values;
  815. }
  816. elseif ($options['return_record'] == FALSE and $result) {
  817. return TRUE;
  818. }
  819. else {
  820. tripal_report_error('tripal_chado', TRIPAL_ERROR,
  821. "chado_update_record: Cannot update record in %table table. \nMatch: %match \nValues: %values",
  822. array('%table' => table, '%match' => print_r($match,TRUE), '%values' => print_r($values, 1)),
  823. array('print' => $print_errors)
  824. );
  825. return FALSE;
  826. }
  827. return FALSE;
  828. }
  829. /**
  830. * Provides a generic function for deleting a record(s) from any chado table
  831. *
  832. * Use this function to delete a record(s) in any Chado table. The first
  833. * argument specifies the table to delete from and the second is an array
  834. * of values to match for locating the record(s) to be deleted. The arrays
  835. * are mutli-dimensional such that foreign key lookup values can be specified.
  836. *
  837. * @param $table
  838. * The name of the chado table for inserting
  839. * @param $match
  840. * An associative array containing the values for locating a record to update.
  841. * @param $options
  842. * Currently there are no options
  843. * @return
  844. * On success this function returns TRUE. On failure, it returns FALSE.
  845. *
  846. * Example usage:
  847. * @code
  848. $umatch = array(
  849. 'organism_id' => array(
  850. 'genus' => 'Citrus',
  851. 'species' => 'sinensis',
  852. ),
  853. 'uniquename' => 'orange1.1g000034m.g7',
  854. 'type_id' => array (
  855. 'cv_id' => array (
  856. 'name' => 'sequence',
  857. ),
  858. 'name' => 'gene',
  859. 'is_obsolete' => 0
  860. ),
  861. );
  862. $uvalues = array(
  863. 'name' => 'orange1.1g000034m.g',
  864. 'type_id' => array (
  865. 'cv_id' => array (
  866. 'name' => 'sequence',
  867. ),
  868. 'name' => 'mRNA',
  869. 'is_obsolete' => 0
  870. ),
  871. );
  872. * $result = chado_update_record('feature', $umatch, $uvalues);
  873. * @endcode
  874. * The above code species that a feature with a given uniquename, organism_id,
  875. * and type_id (the unique constraint for the feature table) will be deleted.
  876. * The organism_id is specified as a nested array that uses the organism_id
  877. * foreign key constraint to lookup the specified values to find the exact
  878. * organism_id. The same nested struture is also used for specifying the
  879. * values to update. The function will find all records that match the
  880. * columns specified and delete them.
  881. *
  882. * @TODO: Support Complex filtering as is done in chado_select_record();
  883. *
  884. * @ingroup tripal_chado_query_api
  885. */
  886. function chado_delete_record($table, $match, $options = NULL) {
  887. if (!is_array($match)) {
  888. tripal_report_error('tripal_chado', TRIPAL_ERROR,
  889. 'Cannot pass non array as values for matching.', array());
  890. return FALSE;
  891. }
  892. if (count($match)==0) {
  893. tripal_report_error('tripal_chado', TRIPAL_ERROR,
  894. 'Cannot pass an empty array as values for matching.', array());
  895. return FALSE;
  896. }
  897. // set defaults for options. If we don't set defaults then
  898. // we get memory leaks when we try to access the elements
  899. if (!is_array($options)) {
  900. $options = array();
  901. }
  902. $delete_matches = array(); // contains the values for the where clause
  903. // get the table description
  904. $table_desc = chado_get_schema($table);
  905. $fields = $table_desc['fields'];
  906. if (empty($table_desc)) {
  907. tripal_report_error('tripal_chado', TRIPAL_WARNING,
  908. 'chado_insert_record; There is no table description for !table_name',
  909. array('!table_name' => $table), array('print' => $print_errors)
  910. );
  911. }
  912. // get the values needed for matching in the SQL statement
  913. foreach ($match as $field => $value) {
  914. if (is_array($value)) {
  915. // if the user has specified an array of values to delete rather than
  916. // FK relationships the keep those in our match
  917. if (array_values($value) === $value) {
  918. $delete_matches[$field] = $value;
  919. }
  920. else {
  921. $results = chado_schema_get_foreign_key($table_desc, $field, $value);
  922. if (sizeof($results) > 1) {
  923. tripal_report_error('tripal_chado', TRIPAL_ERROR,
  924. 'chado_delete_record: When trying to find record to delete, too many records match the criteria supplied for !foreign_key foreign key constraint (!criteria)',
  925. array('!foreign_key' => $field, '!criteria' => print_r($value, TRUE)));
  926. return FALSE;
  927. }
  928. elseif (sizeof($results) < 1) {
  929. //tripal_report_error('tripal_chado', TRIPAL_ERROR, 'chado_delete_record: 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)));
  930. }
  931. else {
  932. $delete_matches[$field] = $results[0];
  933. }
  934. }
  935. }
  936. else {
  937. $delete_matches[$field] = $value;
  938. }
  939. }
  940. // now build the SQL statement
  941. $sql = 'DELETE FROM {' . $table . '} WHERE ';
  942. $args = array();
  943. foreach ($delete_matches as $field => $value) {
  944. // if we have an array values then this is an "IN" clasue.
  945. if (count($value) > 1) {
  946. $sql .= "$field IN (";
  947. $index = 0;
  948. foreach ($value as $v) {
  949. $sql .= ":$field" . $index . ", ";
  950. $args[":$field" . $index] = $v;
  951. $index++;
  952. }
  953. $sql = drupal_substr($sql, 0, -2); // get rid of trailing ', '
  954. $sql .= ") AND ";
  955. }
  956. else {
  957. if (strcmp($value, '__NULL__') == 0) {
  958. $sql .= " $field = NULL AND ";
  959. }
  960. else {
  961. $sql .= " $field = :$field AND ";
  962. $args[":$field"] = $value;
  963. }
  964. }
  965. }
  966. $sql = drupal_substr($sql, 0, -4); // get rid of the trailing 'AND'
  967. // finally perform the delete. If successful, return the updated record
  968. $result = chado_query($sql, $args);
  969. if ($result) {
  970. return TRUE;
  971. }
  972. else {
  973. tripal_report_error('tripal_chado', TRIPAL_ERROR,
  974. "Cannot delete record in $table table. Match:" . print_r($match, 1) . ". Values: " . print_r($values, 1), array());
  975. return FALSE;
  976. }
  977. return FALSE;
  978. }
  979. /**
  980. * Provides a generic routine for selecting data from a Chado table
  981. *
  982. * Use this function to perform a simple select from any Chado table.
  983. *
  984. * @param $table
  985. * The name of the chado table for inserting
  986. * @param $columns
  987. * An array of column names
  988. * @param $values
  989. * An associative array containing the values for filtering the results. In the
  990. * case where multiple values for the same time are to be selected an additional
  991. * entry for the field should appear for each value. If you need to filter
  992. * results using more complex methods see the 'Complex Filtering' section below.
  993. * @param $options
  994. * An associative array of additional options where the key is the option
  995. * and the value is the value of that option.
  996. *
  997. * Additional Options Include:
  998. * - has_record
  999. * Set this argument to 'TRUE' to have this function return a numeric
  1000. * value for the number of records rather than the array of records. this
  1001. * can be useful in 'if' statements to check the presence of particula records.
  1002. * - return_sql
  1003. * Set this to 'TRUE' to have this function return an array where the first
  1004. * element is the sql that would have been run and the second is an array of
  1005. * arguments.
  1006. * - case_insensitive_columns
  1007. * An array of columns to do a case insensitive search on.
  1008. * - regex_columns
  1009. * An array of columns where the value passed in should be treated as a regular expression
  1010. * - order_by
  1011. * An associative array containing the column names of the table as keys
  1012. * and the type of sort (i.e. ASC, DESC) as the values. The results in the
  1013. * query will be sorted by the key values in the direction listed by the value
  1014. * - is_duplicate: TRUE or FALSE. Checks the values submited to see if
  1015. * they violate any of the unique constraints. If not, the record
  1016. * is returned, if so, FALSE is returned.
  1017. * - pager: Use this option if it is desired to return only a subset of results
  1018. * so that they may be shown with in a Drupal-style pager. This should be
  1019. * an array with two keys: 'limit' and 'element'. The value of 'limit'
  1020. * should specify the number of records to return and 'element' is a
  1021. * unique integer to differentiate between pagers when more than one
  1022. * appear on a page. The 'element' should start with zero and increment by
  1023. * one for each pager.
  1024. * -limit: Specifies the number of records to return.
  1025. * -offset: Indicates the number of records to skip before returning records.
  1026. *
  1027. * @return
  1028. * An array of results, FALSE if the query was not executed
  1029. * correctly, an empty array if no records were matched, or the number of records
  1030. * in the dataset if $has_record is set.
  1031. * If the option 'is_duplicate' is provided and the record is a duplicate it
  1032. * will return the duplicated record. If the 'has_record' option is provided
  1033. * a value of TRUE will be returned if a record exists and FALSE will bee
  1034. * returned if there are not records.
  1035. *
  1036. * Example usage:
  1037. * @code
  1038. * $columns = array('feature_id', 'name');
  1039. * $values = array(
  1040. * 'organism_id' => array(
  1041. * 'genus' => 'Citrus',
  1042. * 'species' => array('sinensis', 'clementina'),
  1043. * ),
  1044. * 'uniquename' => 'orange1.1g000034m.g',
  1045. * 'type_id' => array (
  1046. * 'cv_id' => array (
  1047. * 'name' => 'sequence',
  1048. * ),
  1049. * 'name' => 'gene',
  1050. * 'is_obsolete' => 0
  1051. * ),
  1052. * );
  1053. * $options = array(
  1054. * 'order_by' => array(
  1055. * 'name' => 'ASC'
  1056. * ),
  1057. * );
  1058. * $result = chado_select_record('feature',$columns,$values,$options);
  1059. * @endcode
  1060. * The above code selects a record from the feature table using the three fields
  1061. * that uniquely identify a feature. The $columns array simply lists the columns
  1062. * to select. The $values array is nested such that the organism is identified by
  1063. * way of the organism_id foreign key constraint by specifying the genus and
  1064. * species. The cvterm is also specified using its foreign key and the cv_id
  1065. * for the cvterm is nested as well. In the example above, two different species
  1066. * are allowed to match
  1067. *
  1068. * Complex Filtering:
  1069. * All of the documentation above supports filtering based on 'is equal to'
  1070. * or 'is NULL'. If your criteria doesn't fall into one of these two categories
  1071. * then you need to provide an array with additional details such as the operator
  1072. * as well as the value. An example follows and will be discussed in detail.
  1073. * @code
  1074. $columns = array('feature_id', 'fmin', 'fmax');
  1075. // Regular criteria specifying the parent feature to retrieve locations from.
  1076. $values = array(
  1077. 'srcfeature_id' => array(
  1078. 'uniquename' => 'MtChr01'
  1079. 'type_id' => array(
  1080. 'name' => 'pseudomolecule'
  1081. ),
  1082. ),
  1083. );
  1084. // Complex filtering to specify the range to return locations from.
  1085. $values['fmin'][] = array(
  1086. 'op' => '>',
  1087. 'data' => 15
  1088. );
  1089. $values['fmin'][] = array(
  1090. 'op' => '<',
  1091. 'data' => 100
  1092. );
  1093. $results = chado_select_record('featureloc', $columns, $values);
  1094. * @endcode
  1095. * The above code example will return all of the name, start and end of all
  1096. * the features that start within MtChr1:15-100bp. Note that complex filtering
  1097. * can be used in conjunction with basic filtering and that multiple criteria,
  1098. * even for the same field can be entered.
  1099. *
  1100. * @ingroup tripal_chado_query_api
  1101. */
  1102. function chado_select_record($table, $columns, $values, $options = NULL) {
  1103. // Set defaults for options. If we don't set defaults then
  1104. // we get memory leaks when we try to access the elements.
  1105. if (!is_array($options)) {
  1106. $options = array();
  1107. }
  1108. if (!array_key_exists('case_insensitive_columns', $options)) {
  1109. $options['case_insensitive_columns'] = array();
  1110. }
  1111. if (!array_key_exists('regex_columns', $options)) {
  1112. $options['regex_columns'] = array();
  1113. }
  1114. if (!array_key_exists('order_by', $options)) {
  1115. $options['order_by'] = array();
  1116. }
  1117. if (!array_key_exists('return_sql', $options)) {
  1118. $options['return_sql'] = FALSE;
  1119. }
  1120. if (!array_key_exists('has_record', $options)) {
  1121. $options['has_record'] = FALSE;
  1122. }
  1123. if (!array_key_exists('is_duplicate', $options)) {
  1124. $options['is_duplicate'] = FALSE;
  1125. }
  1126. $pager = array();
  1127. if (array_key_exists('pager', $options)) {
  1128. $pager = $options['pager'];
  1129. }
  1130. $print_errors = FALSE;
  1131. if (isset($options['print_errors'])) {
  1132. $print_errors = $options['print_errors'];
  1133. }
  1134. // Check that our columns and values arguments are proper arrays.
  1135. if (!is_array($columns)) {
  1136. tripal_report_error('tripal_chado', TRIPAL_ERROR,
  1137. 'chado_select_record; the $columns argument must be an array. Columns:%columns',
  1138. array('%columns' => print_r($columns, TRUE)),
  1139. array('print' => $print_errors)
  1140. );
  1141. return FALSE;
  1142. }
  1143. if (!is_array($values)) {
  1144. tripal_report_error('tripal_chado', TRIPAL_ERROR,
  1145. 'chado_select_record; the $values argument must be an array. Values:%values',
  1146. array('%values' => print_r($values, TRUE)),
  1147. array('print' => $print_errors)
  1148. );
  1149. return FALSE;
  1150. }
  1151. // Get the table description.
  1152. $table_desc = chado_get_schema($table);
  1153. if (empty($table_desc)) {
  1154. tripal_report_error('tripal_chado', TRIPAL_WARNING,
  1155. 'chado_insert_record; There is no table description for !table_name',
  1156. array('!table_name' => $table), array('print' => $print_errors)
  1157. );
  1158. }
  1159. $select = '';
  1160. $from = '';
  1161. $where = array();
  1162. $args = array();
  1163. if ($options['is_duplicate'] and array_key_exists('unique keys', $table_desc)) {
  1164. $ukeys = $table_desc['unique keys'];
  1165. $has_results = 0;
  1166. // iterate through the unique constraints and reset the values and columns
  1167. // arrays to only include these fields
  1168. foreach ($ukeys as $cname => $fields) {
  1169. if ($has_results) {
  1170. continue;
  1171. }
  1172. $new_values = array();
  1173. $new_columns = array();
  1174. $new_options = array();
  1175. $uq_sname = "uq_" . $table . "_";
  1176. $has_pkey = 0;
  1177. // include the primary key in the results returned
  1178. if (array_key_exists('primary key', $table_desc)) {
  1179. $has_pkey = 1;
  1180. $pkeys = $table_desc['primary key'];
  1181. foreach ($pkeys as $index => $key) {
  1182. array_push($new_columns, $key);
  1183. }
  1184. }
  1185. // recreate the $values and $columns arrays
  1186. foreach ($fields as $field) {
  1187. if (array_key_exists($field, $values)) {
  1188. $new_values[$field] = $values[$field];
  1189. $uq_sname .= substr($field, 0, 2);
  1190. // if there is no primary key then use the unique contraint fields
  1191. if (!$has_pkey) {
  1192. array_push($new_columns, $field);
  1193. }
  1194. }
  1195. // if the field doesn't exist in the values array then
  1196. // substitute any default values
  1197. elseif (array_key_exists('default', $table_desc['fields'][$field])) {
  1198. $new_values[$field] = $table_desc['fields'][$field]['default'];
  1199. $uq_sname .= substr($field, 0, 2);
  1200. if (!$has_pkey) {
  1201. array_push($new_columns, $field);
  1202. }
  1203. }
  1204. // if there is no value (default or otherwise) check if this field is
  1205. // allowed to be null
  1206. elseif (!$table_desc['fields'][$field]['not null']) {
  1207. $new_values[$field] = NULL;
  1208. $uq_sname .= "n" . substr($field, 0, 2);
  1209. if (!$has_pkey) {
  1210. array_push($new_columns, $field);
  1211. }
  1212. }
  1213. // if the array key doesn't exist in the values given by the caller
  1214. // and there is no default value then we cannot check if the record
  1215. // is a duplicate so return FALSE
  1216. else {
  1217. tripal_report_error('tripal_chado', TRIPAL_ERROR,
  1218. 'chado_select_record: There is no value for %field thus we cannot ' .
  1219. 'check if this record for table, %table, is unique. %values',
  1220. array('%field' => $field, '%table' => $table, '%values' => print_r($values, TRUE)),
  1221. array('print' => $print_errors));
  1222. return FALSE;
  1223. }
  1224. }
  1225. $results = chado_select_record($table, $new_columns, $new_values, $new_options);
  1226. // if we have a duplicate record then return the results
  1227. if (count($results) > 0) {
  1228. $has_results = 1;
  1229. }
  1230. unset($new_columns);
  1231. unset($new_values);
  1232. unset($new_options);
  1233. }
  1234. if ($options['has_record'] and $has_results) {
  1235. return TRUE;
  1236. }
  1237. else {
  1238. return $results;
  1239. }
  1240. }
  1241. // Process the values array into where clauses and retrieve foreign keys. The
  1242. // $where array should always be an integer-indexed array with each value
  1243. // being an array with a 'field', 'op', and 'data' keys with all foreign keys
  1244. // followed.
  1245. foreach ($values as $field => $value) {
  1246. // Require the field be in the table description.
  1247. if (!array_key_exists($field, $table_desc['fields'])) {
  1248. tripal_report_error('tripal_chado', TRIPAL_ERROR,
  1249. 'chado_select_record: The field "%field" does not exist for the table "%table". Cannot perform query. Values: %array',
  1250. array('%field' => $field, '%table' => $table, '%array' => print_r($values, 1)),
  1251. array('print' => $print_errors)
  1252. );
  1253. return array();
  1254. }
  1255. $select[] = $field;
  1256. // CASE 1: We have an array for a value.
  1257. if (is_array($value)) {
  1258. // CASE 1a: If there is only one element in the array, treat it the same
  1259. // as a non-array value.
  1260. if (count($value) == 1 AND is_int(key($value))) {
  1261. $value = array_pop($value);
  1262. $op = '=';
  1263. chado_select_record_check_value_type($op, $value, $table_desc['fields'][$field]['type']);
  1264. $where[] = array(
  1265. 'field' => $field,
  1266. 'op' => $op,
  1267. 'data' => $value
  1268. );
  1269. }
  1270. // CASE 1b: If there is a 'data' key in the array then we have the new
  1271. // complex filtering format with a single criteria.
  1272. elseif (isset($value['data']) AND isset($value['op'])) {
  1273. $value['field'] = $field;
  1274. $where[] = $value;
  1275. }
  1276. // CASE 1c: If we have an integer indexed array and the first element is
  1277. // not an array then we have a simple array of values to be used for an IN clause.
  1278. elseif (is_int(key($value)) AND !is_array(current($value))) {
  1279. $where[] = array(
  1280. 'field' => $field,
  1281. 'op' => 'IN',
  1282. 'data' => $value
  1283. );
  1284. }
  1285. // We have a multi-dimensional array: 2 cases...
  1286. else {
  1287. // CASE 1d: If there is a multi-dimensional array with each sub-array
  1288. // containing a data key then we have the new complex filtering format
  1289. // with multiple criteria.
  1290. if (isset($value[0]['data']) AND isset($value[0]['op'])) {
  1291. foreach ($value as $subvalue) {
  1292. $subvalue['field'] = $field;
  1293. $where[] = $subvalue;
  1294. }
  1295. }
  1296. // CASE 1e: We have a multi-dimensional array that doesn't fit any of the
  1297. // above cases then we have a foreign key definition to follow.
  1298. else {
  1299. // Select the value from the foreign key relationship for this value.
  1300. $foreign_options = array(
  1301. 'regex_columns' => $options['regex_columns'],
  1302. );
  1303. $results = chado_schema_get_foreign_key($table_desc, $field, $value, $foreign_options);
  1304. // Ensure that looking up the foreign key didn't fail in an error.
  1305. if ($results === FALSE OR $results === NULL) {
  1306. tripal_report_error('tripal_chado', TRIPAL_ERROR,
  1307. 'chado_select_record: could not follow the foreign key definition
  1308. for %field where the definition supplied was %value',
  1309. array('%field' => $field, '%value' => print_r($value, TRUE))
  1310. );
  1311. return array();
  1312. }
  1313. // Ensure that there were results returned.
  1314. elseif (count($results)==0) {
  1315. tripal_report_error('tripal_chado', TRIPAL_ERROR,
  1316. 'chado_select_record: the foreign key definition for \'%field\' '.
  1317. 'returned no results where the definition supplied was %value',
  1318. array('%field' => $field, '%value' => print_r($value, TRUE))
  1319. );
  1320. return array();
  1321. }
  1322. // If there was only a single resutlt then add it using an op of =.
  1323. elseif (count($results) == 1) {
  1324. $results = array_pop($results);
  1325. $op = '=';
  1326. chado_select_record_check_value_type($op, $results, $table_desc['fields'][$field]['type']);
  1327. $where[] = array(
  1328. 'field' => $field,
  1329. 'op' => $op,
  1330. 'data' => $results
  1331. );
  1332. }
  1333. // Otherwise multiple results were returned so we want to form an
  1334. // IN (x, y, z) expression.
  1335. else {
  1336. $where[] = array(
  1337. 'field' => $field,
  1338. 'op' => 'IN',
  1339. 'data' => $results
  1340. );
  1341. }
  1342. }
  1343. }
  1344. }
  1345. // CASE 2: We have a single value.
  1346. else {
  1347. $op = '=';
  1348. chado_select_record_check_value_type($op, $value, $table_desc['fields'][$field]['type']);
  1349. $where[] = array(
  1350. 'field' => $field,
  1351. 'op' => $op,
  1352. 'data' => $value
  1353. );
  1354. }
  1355. // Support Deprecated method for regex conditions.
  1356. $current_key = key($where);
  1357. if (in_array($field, $options['regex_columns'])) {
  1358. $where[$current_key]['op'] = '~*';
  1359. }
  1360. }
  1361. // Now build the SQL.
  1362. if (empty($where)) {
  1363. // Sometimes want to select everything.
  1364. $sql = "SELECT " . implode(', ', $columns) . " ";
  1365. $sql .= 'FROM {' . $table . '} ';
  1366. }
  1367. else {
  1368. $sql = "SELECT " . implode(', ', $columns) . " ";
  1369. $sql .= 'FROM {' . $table . '} ';
  1370. // If $values is empty then we want all results so no where clause.
  1371. if (!empty($values)) {
  1372. $sql .= "WHERE ";
  1373. }
  1374. foreach ($where as $clause_num => $value_def) {
  1375. switch ($value_def['op']) {
  1376. // Deal with 'field IN (x, y, z)' where clauses.
  1377. case 'IN':
  1378. $sql .= $value_def['field'] . " IN (";
  1379. $index = 0;
  1380. foreach ($value_def['data'] as $v) {
  1381. $placeholder = ':' . $value_def['field'] . $clause_num .'_' . $index;
  1382. $sql .= $placeholder . ', ';
  1383. $args[$placeholder] = $v;
  1384. $index++;
  1385. }
  1386. $sql = drupal_substr($sql, 0, -2); // remove trailing ', '
  1387. $sql .= ") AND ";
  1388. break;
  1389. // Deal with IS NULL.
  1390. case 'IS NULL':
  1391. $sql .= $value_def['field'] . ' IS NULL AND ';
  1392. break;
  1393. // Default is [field] [op] [data].
  1394. default:
  1395. $placeholder = ':'. $value_def['field'] . $clause_num;
  1396. // Support case insensitive columns.
  1397. if (in_array($value_def['field'], $options['case_insensitive_columns'])) {
  1398. $sql .= 'lower(' . $value_def['field'] .') '. $value_def['op'] .' lower('. $placeholder . ') AND ';
  1399. }
  1400. else {
  1401. $sql .= $value_def['field'] .' '. $value_def['op'] .' '. $placeholder . ' AND ';
  1402. }
  1403. $args[$placeholder] = $value_def['data'];
  1404. }
  1405. } // end foreach item in where clause.
  1406. $sql = drupal_substr($sql, 0, -4); // get rid of the trailing 'AND '
  1407. } // end if (empty($where)){ } else {
  1408. // Add any ordering of the results to the SQL statement.
  1409. if (count($options['order_by']) > 0) {
  1410. $sql .= " ORDER BY ";
  1411. foreach ($options['order_by'] as $field => $dir) {
  1412. $sql .= "$field $dir, ";
  1413. }
  1414. $sql = drupal_substr($sql, 0, -2); // get rid of the trailing ', '
  1415. }
  1416. // Limit the records returned
  1417. if (array_key_exists('limit', $options) and is_numeric($options['limit'])) {
  1418. $sql .= " LIMIT " . $options['limit'];
  1419. if (array_key_exists('offset', $options) and is_numeric($options['offset'])) {
  1420. $sql .= " OFFSET " . $options['offset'];
  1421. }
  1422. }
  1423. // if the caller has requested the SQL rather than the results then do so.
  1424. if ($options['return_sql'] == TRUE) {
  1425. return array('sql' => $sql, 'args' => $args);
  1426. }
  1427. if (array_key_exists('limit', $pager)) {
  1428. $total_records = 0;
  1429. $resource = chado_pager_query($sql, $args, $pager['limit'], $pager['element'], NULL, $total_records);
  1430. }
  1431. else {
  1432. $resource = chado_query($sql, $args);
  1433. }
  1434. // Format results into an array.
  1435. $results = array();
  1436. foreach ($resource as $r) {
  1437. $results[] = $r;
  1438. }
  1439. if ($options['has_record']) {
  1440. return count($results);
  1441. }
  1442. return $results;
  1443. }
  1444. /**
  1445. * Helper Function: check that the value is the correct type.
  1446. *
  1447. * This function is used by chado_select_record() when building the $where
  1448. * clause array to ensure that any single values are the correct type based
  1449. * on the table definition. Furthermore, it ensures that NULL's are caught
  1450. * changing the operator to 'IS NULL'.
  1451. * @code
  1452. $op = '=';
  1453. chado_select_record_check_value_type($op, $value, $table_desc['fields'][$field]['type']);
  1454. $where[] = array(
  1455. 'field' => $field,
  1456. 'op' => $op,
  1457. 'data' => $value
  1458. );
  1459. * @endcode
  1460. *
  1461. * @param $op
  1462. * The operator being used. This is mostly passed in to allow it to be changed
  1463. * if a NULL value is detected.
  1464. * @param $value
  1465. * The value to be checked and adjusted.
  1466. * @param $type
  1467. * The type from the table definition that's used to determine the type of
  1468. * value.
  1469. */
  1470. function chado_select_record_check_value_type(&$op, &$value, $type) {
  1471. if ($value === NULL) {
  1472. $op = 'IS NULL';
  1473. }
  1474. elseif ($type == 'int') {
  1475. $value = (int) $value;
  1476. }
  1477. }
  1478. /**
  1479. * Use this function instead of db_query() to avoid switching databases
  1480. * when making query to the chado database
  1481. *
  1482. * Will use a chado persistent connection if it already exists
  1483. *
  1484. * @param $sql
  1485. * The sql statement to execute
  1486. *
  1487. * @param $args
  1488. * The array of arguments, with the same structure as passed to
  1489. * the db_query() function of Drupal.
  1490. *
  1491. * @return
  1492. * DatabaseStatementInterface A prepared statement object, already executed.
  1493. *
  1494. * Example usage:
  1495. * @code
  1496. * $sql = "SELECT F.name, CVT.name as type_name, ORG.common_name
  1497. * FROM {feature} F
  1498. * LEFT JOIN {cvterm} CVT ON F.type_id = CVT.cvterm_id
  1499. * LEFT JOIN {organism} ORG ON F.organism_id = ORG.organism_id
  1500. * WHERE
  1501. * F.uniquename = :feature_uniquename";
  1502. * $args = array( ':feature_uniquename' => $form_state['values']['uniquename'] );
  1503. * $result = chado_query( $sql, $args );
  1504. * foreach ($result as $r) { [Do something with the records here] }
  1505. * @endcode
  1506. *
  1507. * @ingroup tripal_chado_query_api
  1508. */
  1509. function chado_query($sql, $args = array()) {
  1510. $is_local = $GLOBALS["chado_is_local"];
  1511. // Args should be an array
  1512. if (!is_array($args)) {
  1513. tripal_report_error('tripal_chado', TRIPAL_ERROR,
  1514. 'chado_query; Need to pass an array to chado_query, "%value" passed instead. Query: %query',
  1515. array('%value' => $args, '%query' => $sql)
  1516. );
  1517. return FALSE;
  1518. }
  1519. // if Chado is local to the database then prefix the Chado table
  1520. // names with 'chado'.
  1521. if ($is_local) {
  1522. $sql = preg_replace('/\n/', '', $sql); // remove carriage returns
  1523. $sql = preg_replace('/\{(.*?)\}/', 'chado.$1', $sql);
  1524. // the featureloc table has some indexes that use function that call other functions
  1525. // and those calls do not reference a schema, therefore, any tables with featureloc
  1526. // must automaticaly have the chado schema set as active to find
  1527. if (preg_match('/chado.featureloc/i', $sql) or preg_match('/chado.feature/i', $sql)) {
  1528. $previous_db = chado_set_active('chado') ;
  1529. $results = db_query($sql, $args);
  1530. chado_set_active($previous_db);
  1531. }
  1532. // for all other tables we should have everything in scope so just run the query
  1533. else {
  1534. $results = db_query($sql, $args);
  1535. }
  1536. }
  1537. // if Chado is not local to the Drupal database then we have to
  1538. // switch to another database
  1539. else {
  1540. $previous_db = chado_set_active('chado') ;
  1541. $results = db_query($sql, $args);
  1542. chado_set_active($previous_db);
  1543. }
  1544. return $results;
  1545. }
  1546. /**
  1547. * Use this function instead of pager_query() when selecting a
  1548. * subset of records from a Chado table.
  1549. *
  1550. * @param $query
  1551. * The SQL statement to execute, this is followed by a variable number of args
  1552. * used as substitution values in the SQL statement.
  1553. * @param $args
  1554. * The array of arguments for the query. They keys are the placeholders
  1555. * @param $limit
  1556. * The number of query results to display per page.
  1557. * @param $element
  1558. * An numeric identifier used to distinguish between multiple pagers on one page.
  1559. * @param $count_query
  1560. * An SQL query used to count matching records.
  1561. *
  1562. * @returns
  1563. * A database query result resource or FALSE if the query was not
  1564. * executed correctly
  1565. *
  1566. * @ingroup tripal_chado_query_api
  1567. */
  1568. function chado_pager_query($query, $args, $limit, $element, $count_query = '') {
  1569. // get the page and offset for the pager
  1570. $page = isset($_GET['page']) ? $_GET['page'] : '0';
  1571. $offset = $limit * $page;
  1572. $q = $_GET['q'];
  1573. // Construct a count query if none was given.
  1574. if (!isset($count_query)) {
  1575. $count_query = preg_replace(array('/SELECT.*?FROM /As', '/ORDER BY .*/'),
  1576. array('SELECT COUNT(*) FROM ', ''), $query);
  1577. }
  1578. // We calculate the total of pages as ceil(items / limit).
  1579. $results = chado_query($count_query, $args);
  1580. if (!$results) {
  1581. tripal_report_error('tripal_chado', TRIPAL_ERROR,
  1582. "chado_pager_query(): Query failed: %cq", array('%cq' => $count_query));
  1583. return;
  1584. }
  1585. $total_records = $results->fetchField();
  1586. // set a session variable for storing the total number of records
  1587. $GLOBALS['chado_pager'][$q][$element]['total_records'] = $total_records;
  1588. pager_default_initialize($total_records, $limit, $element);
  1589. $query .= ' LIMIT ' . (int) $limit . ' OFFSET ' . (int) $offset;
  1590. $results = chado_query($query, $args);
  1591. return $results;
  1592. }
  1593. /**
  1594. * A function to retrieve the total number of records for a pager that
  1595. * was generated using the chado_pager_query() function
  1596. *
  1597. * @param $element
  1598. * The $element argument that was passed to the chado_pager_query function
  1599. *
  1600. * @ingroup tripal_chado_query_api
  1601. */
  1602. function chado_pager_get_count($element) {
  1603. $q = $_GET['q'];
  1604. if (array_key_exists($q, $GLOBALS['chado_pager']) and
  1605. array_key_exists($element, $GLOBALS['chado_pager'][$q])) {
  1606. return $GLOBALS['chado_pager'][$q][$element]['total_records'];
  1607. }
  1608. else {
  1609. return 0;
  1610. }
  1611. }
  1612. /**
  1613. * Gets the value of a foreign key relationship
  1614. *
  1615. * This function is used by chado_select_record, chado_insert_record,
  1616. * and chado_update_record to iterate through the associate array of
  1617. * values that gets passed to each of those routines. The values array
  1618. * is nested where foreign key contraints are used to specify a value that. See
  1619. * documentation for any of those functions for further information.
  1620. *
  1621. * @param $table_desc
  1622. * A table description for the table with the foreign key relationship to be identified generated by
  1623. * hook_chado_<table name>_schema()
  1624. * @param $field
  1625. * The field in the table that is the foreign key.
  1626. * @param $values
  1627. * An associative array containing the values
  1628. * @param $options
  1629. * An associative array of additional options where the key is the option
  1630. * and the value is the value of that option. These options are passed on to chado_select_record.
  1631. *
  1632. * Additional Options Include:
  1633. * - case_insensitive_columns
  1634. * An array of columns to do a case insensitive search on.
  1635. * - regex_columns
  1636. * An array of columns where the value passed in should be treated as a regular expression
  1637. *
  1638. * @return
  1639. * A string containg the results of the foreign key lookup, or FALSE if failed.
  1640. *
  1641. * Example usage:
  1642. * @code
  1643. *
  1644. * $values = array(
  1645. * 'genus' => 'Citrus',
  1646. * 'species' => 'sinensis',
  1647. * );
  1648. * $value = chado_schema_get_foreign_key('feature', 'organism_id',$values);
  1649. *
  1650. * @endcode
  1651. * The above code selects a record from the feature table using the three fields
  1652. * that uniquely identify a feature. The $columns array simply lists the columns
  1653. * to select. The $values array is nested such that the organism is identified by
  1654. * way of the organism_id foreign key constraint by specifying the genus and
  1655. * species. The cvterm is also specified using its foreign key and the cv_id
  1656. * for the cvterm is nested as well.
  1657. *
  1658. * @ingroup tripal_chado
  1659. */
  1660. function chado_schema_get_foreign_key($table_desc, $field, $values, $options = NULL) {
  1661. // set defaults for options. If we don't set defaults then
  1662. // we get memory leaks when we try to access the elements
  1663. if (!is_array($options)) {
  1664. $options = array();
  1665. }
  1666. if (!array_key_exists('case_insensitive_columns', $options)) {
  1667. $options['case_insensitive_columns'] = array();
  1668. }
  1669. if (!array_key_exists('regex_columns', $options)) {
  1670. $options['regex_columns'] = array();
  1671. }
  1672. // get the list of foreign keys for this table description and
  1673. // iterate through those until we find the one we're looking for
  1674. $fkeys = '';
  1675. if (array_key_exists('foreign keys', $table_desc)) {
  1676. $fkeys = $table_desc['foreign keys'];
  1677. }
  1678. if ($fkeys) {
  1679. foreach ($fkeys as $name => $def) {
  1680. if (is_array($def['table'])) {
  1681. //foreign key was described 2X
  1682. $message = "The foreign key " . $name . " was defined twice. Please check modules "
  1683. . "to determine if hook_chado_schema_<version>_" . $table_desc['table'] . "() was "
  1684. . "implemented and defined this foreign key when it wasn't supposed to. Modules "
  1685. . "this hook was implemented in: " . implode(', ',
  1686. module_implements("chado_" . $table_desc['table'] . "_schema")) . ".";
  1687. tripal_report_error('tripal_chado', $message);
  1688. drupal_set_message(check_plain($message), 'error');
  1689. continue;
  1690. }
  1691. $table = $def['table'];
  1692. $columns = $def['columns'];
  1693. // iterate through the columns of the foreign key relationship
  1694. foreach ($columns as $left => $right) {
  1695. // does the left column in the relationship match our field?
  1696. if (strcmp($field, $left) == 0) {
  1697. // the column name of the foreign key matches the field we want
  1698. // so this is the right relationship. Now we want to select
  1699. $select_cols = array($right);
  1700. $result = chado_select_record($table, $select_cols, $values, $options);
  1701. $fields = array();
  1702. if ($result and count($result) > 0) {
  1703. foreach ($result as $obj) {
  1704. $fields[] = $obj->$right;
  1705. }
  1706. return $fields;
  1707. }
  1708. }
  1709. }
  1710. }
  1711. }
  1712. else {
  1713. // @todo: what do we do if we get to this point and we have a fk
  1714. // relationship expected but we don't have any definition for one in the
  1715. // table schema??
  1716. $version = $GLOBALS["chado_version"];
  1717. $message = t("There is no foreign key relationship defined for " . $field . " .
  1718. To define a foreign key relationship, determine the table this foreign
  1719. key referrs to (<foreign table>) and then implement
  1720. hook_chado_chado_schema_v<version>_<foreign table>(). See
  1721. tripal_chado_chado_v1_2_schema_feature for an example. Chado version: $version");
  1722. tripal_report_error('tripal_chado', $message);
  1723. drupal_set_message(check_plain($message), 'error');
  1724. }
  1725. return array();
  1726. }