tripal_core.chado_general.api.inc 8.6 KB

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