tripal_core.general_chado.api.inc 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251
  1. <?php
  2. require_once "tripal_core.schema_v1.2.api.inc";
  3. require_once "tripal_core.schema_v1.11.api.inc";
  4. // Globals used by Tripals Error catching functions
  5. // Should match those defined by watchdog
  6. define('TRIPAL_CRITICAL',2);
  7. define('TRIPAL_ERROR',3);
  8. define('TRIPAL_WARNING',4);
  9. define('TRIPAL_NOTICE',5);
  10. define('TRIPAL_INFO',6);
  11. define('TRIPAL_DEBUG',7);
  12. /**
  13. * This function is used to set the global Chado variables
  14. */
  15. function tripal_core_set_globals() {
  16. // these global variables are meant to be accessed by all Tripal
  17. // modules to find the chado version installed and if Chado is local.
  18. // these variables are stored as globals rather than using the drupal_set_variable
  19. // functions because the Drupal functions make databaes queries and for long
  20. // running loaders we don't want those queries repeatedly.
  21. $GLOBALS["chado_is_installed"] = tripal_core_is_chado_installed();
  22. if ($GLOBALS["chado_is_installed"]) {
  23. $GLOBALS["chado_is_local"] = tripal_core_is_chado_local();
  24. $GLOBALS["chado_version"] = tripal_core_get_chado_version();
  25. $GLOBALS["exact_chado_version"] = tripal_core_get_chado_version(TRUE);
  26. }
  27. }
  28. /**
  29. * Provide better error notice for Tripal
  30. * @param $type
  31. * The catagory to which this message belongs. Can be any string, but the general
  32. * practice is to use the name of the module.
  33. * @param $message
  34. * The message to store in the log. Keep $message translatable by not concatenating
  35. * dynamic values into it! Variables in the message should be added by using placeholder
  36. * strings alongside the variables argument to declare the value of the placeholders.
  37. * See t() for documentation on how $message and $variables interact.
  38. * @param $variables
  39. * Array of variables to replace in the message on display or NULL if message is
  40. * already translated or not possible to translate.
  41. * @param $severity
  42. * The severity of the message; one of the following values:
  43. * - TRIPAL_CRITICAL: Critical conditions.
  44. * - TRIPAL_ERROR: Error conditions.
  45. * - TRIPAL_WARNING: Warning conditions.
  46. * - TRIPAL_NOTICE: (default) Normal but significant conditions.
  47. * - TRIPAL_INFO: Informational messages.
  48. * - TRIPAL_DEBUG: Debug-level messages.
  49. * @param $options
  50. * An array of options. Some available options include:
  51. * - print: prints the error message to the screen. Useful when display is the command-line
  52. */
  53. function tripal_core_report_error($type, $severity, $message, $variables = array(), $options = array()) {
  54. // Get human-readable severity string
  55. $severity_string = '';
  56. switch ($severity) {
  57. case TRIPAL_CRITICAL:
  58. $severity_string = 'CRITICAL';
  59. break;
  60. case TRIPAL_ERROR:
  61. $severity_string = 'ERROR';
  62. break;
  63. case TRIPAL_WARNING:
  64. $severity_string = 'WARNING';
  65. break;
  66. case TRIPAL_NOTICE:
  67. $severity_string = 'NOTICE';
  68. break;
  69. case TRIPAL_INFO:
  70. $severity_string = 'INFO';
  71. break;
  72. case TRIPAL_DEBUG:
  73. $severity_string = 'DEBUG';
  74. break;
  75. }
  76. // Send to watchdog
  77. try {
  78. watchdog($type, $message, $variables, $severity);
  79. }
  80. catch (Exception $e) {
  81. print "CRITICAL (TRIPAL_CORE): Unable to register error message with watchdog";
  82. $options['print'] = TRUE;
  83. }
  84. // If print option supplied then print directly to the screen
  85. if (isset($options['print'])) {
  86. if (sizeof($variables) > 0) {
  87. $message = str_replace(array_keys($variables), $variables, $message);
  88. }
  89. print $severity_string . ' (' . strtoupper($type) . '):' . $message . "\n";
  90. }
  91. }
  92. /**
  93. * @file
  94. * The Tripal Core API
  95. *
  96. * This file provides the API needed for all other Tripal and Tripal dependent
  97. * modules.
  98. *
  99. *
  100. * @defgroup tripal_chado_api Chado API
  101. * @ingroup tripal_core_api
  102. * @{
  103. * Provides an application programming interface (API) to manage data withing the Chado database.
  104. * This includes functions for selecting, inserting, updating and deleting records
  105. * in Chado tables. The functions will ensure proper integrity contraints are met
  106. * for inserts and updates.
  107. *
  108. * Also, a set of functions is provided for creating template variables. First,
  109. * is the tripal_core_generate_chado_vars which is used to select one ore more
  110. * records from a table and return an array with foreign key relationships fully
  111. * populated. For example, if selecting a feature, the organism_id and type_id
  112. * would be present in the returned array as a nested array with their respective
  113. * foreign keys also nested. The only fields that are not included are text
  114. * fields (which may be very large) or many-to-many foreign key relationships.
  115. * However, these fields and relationships can be expanded using the
  116. * tripal_core_expand_chado_vars.
  117. *
  118. * When a row from a chado table is selected using these two functions, it provides
  119. * a way for users who want to cutomize Drupal template files to access all data
  120. * associate with a specific record.
  121. *
  122. * Finally, the property tables in Chado generally follow the same format. Therefore
  123. * there is a set of functions for inserting, updating and deleting properties for
  124. * any table. This provides quick lookup of properties (provided the CV term is
  125. * known).
  126. *
  127. * @}
  128. *
  129. */
  130. /**
  131. * Get chado id for a node. E.g, if you want to get 'analysis_id' from the
  132. * 'analysis' table for a synced 'chado_analysis' node, (the same for
  133. * organisms and features):
  134. * $analysis_id = chado_get_id_for_node ('analysis', $node->nid)
  135. * $organism_id = chado_get_id_for_node ('organism', $node->nid)
  136. * $feature_id = chado_get_id_for_node ('feature', $node->nid)
  137. *
  138. * @param $table
  139. * @param $nid
  140. *
  141. * @ingroup tripal_chado_api
  142. */
  143. function chado_get_id_for_node($table, $nid) {
  144. $sql = "SELECT " . $table . "_id as id FROM {chado_$table} WHERE nid = :nid";
  145. return db_query($sql, array(':nid' => $nid))->fetchField();
  146. }
  147. /**
  148. * Get node id for a chado feature/organism/analysis. E.g, if you want to
  149. * get the node id for an analysis, use:
  150. * $nid = chado_get_node_id ('analysis', $analysis_id)
  151. * Likewise,
  152. * $nid = chado_get_node_id ('organism', $organism_id)
  153. * $nid = chado_get_node_id ('feature', $feature_id)
  154. *
  155. * @ingroup tripal_chado_api
  156. */
  157. function chado_get_node_id($table, $id) {
  158. $sql = "SELECT nid FROM {chado_$table} WHERE " . $table . "_id = :" . $table . "_id";
  159. return db_query($sql, array(":" . $table . "_id" => $id))->fetchField();
  160. }
  161. /**
  162. * Set the Tripal Database
  163. *
  164. * The tripal_db_set_active function is used to prevent namespace collisions
  165. * when chado and drupal are installed in the same database but in different
  166. * schemas. It is also used for backwards compatibility with older versions
  167. * of tripal or in cases where chado is located outside of the Drupal database.
  168. * or when using Drupal functions such as db_table_exists()
  169. *
  170. * @ingroup tripal_chado_api
  171. */
  172. function tripal_db_set_active($dbname = 'default') {
  173. global $databases, $active_db;
  174. if ($dbname ) {
  175. if ($dbname == 'chado') {
  176. db_query('set search_path to chado,public');
  177. return 'default';
  178. }
  179. else {
  180. db_query('set search_path to public');
  181. return 'chado';
  182. }
  183. }
  184. // if the 'chado' database is in the $db_url variable then chado is
  185. // not in the same Drupal database, so we don't need to set any
  186. // search_path and can just change the database
  187. elseif (array_key_exists($dbname, $databases)) {
  188. return db_set_active($dbname);
  189. }
  190. }
  191. /**
  192. * Get max rank for a given set of criteria
  193. * This function was developed with the many property tables in chado in mind but will
  194. * work for any table with a rank
  195. *
  196. * @params tablename: the name of the chado table you want to select the max rank from
  197. * this table must contain a rank column of type integer
  198. * @params where_options: array(
  199. * <column_name> => array(
  200. * 'type' => <type of column: INT/STRING>,
  201. * 'value' => <the value you want to filter on>,
  202. * 'exact' => <if TRUE use =; if FALSE use ~>,
  203. * )
  204. * )
  205. * where options should include the id and type for that table to correctly
  206. * group a set of records together where the only difference are the value and rank
  207. * @return the maximum rank
  208. *
  209. */
  210. function tripal_core_get_max_chado_rank($tablename, $where_options) {
  211. $where_clauses = array();
  212. $where_args = array();
  213. //generate the where clause from supplied options
  214. // the key is the column name
  215. $i = 0;
  216. $sql = "
  217. SELECT max(rank) as max_rank, count(rank) as count
  218. FROM {".$tablename."}
  219. WHERE
  220. ";
  221. foreach ($where_options as $key => $value) {
  222. $where_clauses[] = "$key = :$key";
  223. $where_args[":$key"] = $value;
  224. }
  225. $sql .= implode($where_clauses, ' AND ');
  226. $result = chado_query($sql, $where_args)->fetchObject();
  227. if ($result->count > 0) {
  228. return $result->max_rank;
  229. }
  230. else {
  231. return -1;
  232. }
  233. }