tripal_views_integration.inc 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282
  1. <?php
  2. /**
  3. * @file
  4. * Contains functions used to manage tripal views integrations
  5. */
  6. /**
  7. * Purpose: Deletes ALL Tripal Views Integrations.
  8. *
  9. * @ingroup tripal_views
  10. */
  11. function tripal_views_delete_all_integrations() {
  12. db_query("DELETE FROM {tripal_views}");
  13. db_query("DELETE FROM {tripal_views_field}");
  14. db_query("DELETE FROM {tripal_views_handlers}");
  15. db_query("DELETE FROM {tripal_views_join}");
  16. drupal_set_message("Successfully deleted all views integration.");
  17. }
  18. /**
  19. * Integrate all chado tables in the schema api. This integration only occurs
  20. * once and sets all Chado tables to a priority of 10
  21. *
  22. * @ingroup tripal_views
  23. */
  24. function tripal_views_integrate_all_chado_tables() {
  25. // First integrate all of the Chado tables. Those that are base tables
  26. // get special treatment.
  27. $tables = chado_get_table_names(TRUE);
  28. $base_tables = array(
  29. 'acquisition', 'analysis', 'assay', 'biomaterial', 'contact', 'cv', 'cvterm',
  30. 'db', 'dbxref', 'environment', 'expression', 'feature', 'featuremap', 'genotype',
  31. 'library', 'nd_experiment', 'nd_geolocation', 'nd_protocol', 'nd_reagent',
  32. 'organism', 'phendesc', 'phenotype', 'phenstatement', 'phylonode', 'phylotree',
  33. 'project', 'protocol', 'pub', 'stock', 'study', 'synonym'
  34. );
  35. foreach ($tables as $tablename) {
  36. $priority = 10;
  37. if (!tripal_is_table_integrated($tablename, $priority)) {
  38. if (in_array($tablename, $base_tables)) {
  39. $table_integration_array = tripal_views_get_integration_array_for_chado_table($tablename, TRUE, $priority);
  40. }
  41. else {
  42. $table_integration_array = tripal_views_get_integration_array_for_chado_table($tablename, FALSE, $priority);
  43. }
  44. if ($table_integration_array) {
  45. tripal_add_views_integration($table_integration_array);
  46. }
  47. }
  48. }
  49. }
  50. /**
  51. * Returns the array needed to integrate a given chado table with views
  52. *
  53. * @param $tablename
  54. * The table to generate the tripal views integration array for
  55. * @return
  56. * The tripal views integration array which is the parameter for
  57. * tripal_add_views_integration($defn_array)
  58. *
  59. * @ingroup tripal_views
  60. */
  61. function tripal_views_get_integration_array_for_chado_table($table_name, $base_table = TRUE, $priority = 9) {
  62. // Get the schema for this table (via the chado schema api)
  63. $schema = chado_get_schema($table_name);
  64. // Base definition array
  65. $defn_array = array(
  66. 'table' => $table_name,
  67. 'type' => 'chado',
  68. 'name' => 'Chado ' . ucwords(str_replace('_', ' ', $table_name)),
  69. 'description' => (!empty($schema['description'])) ? $schema['description'] : ' ',
  70. 'priority' => $priority,
  71. 'base_table' => $base_table,
  72. 'fields' => array(),
  73. );
  74. // Add fields
  75. if (!isset($schema['fields'])) {
  76. tripal_report_error('tripal_views', TRIPAL_NOTICE,
  77. 'There are no fields defined for %table in the Chado Schema API.', array('%table' => $table_name));
  78. return FALSE;
  79. }
  80. foreach ($schema['fields'] as $field_name => $field_schema) {
  81. // Base field definition
  82. if (!empty($field_name) && !empty($field_schema['type'])) {
  83. $defn_array['fields'][$field_name] = array(
  84. 'name' => $field_name,
  85. 'title' => ucwords(str_replace('_', ' ', $field_name)),
  86. 'type' => $field_schema['type'],
  87. 'description' => (!empty($field_schema['description'])) ? $field_schema['description'] : ucwords(str_replace('_', ' ', $field_name)),
  88. 'handlers' => array(),
  89. 'joins' => array()
  90. );
  91. // Add handlers based on type
  92. if (preg_match('/^int/', $field_schema['type'])) {
  93. $defn_array['fields'][$field_name]['handlers'] = array(
  94. /** D6
  95. 'field' => array('name' => 'chado_views_handler_field_numeric'),
  96. 'filter' => array('name' => 'chado_views_handler_filter_numeric'),
  97. 'sort' => array('name' => 'chado_views_handler_sort'),
  98. */
  99. 'field' => array('name' => 'views_handler_field_numeric'),
  100. 'filter' => array('name' => 'views_handler_filter_numeric'),
  101. 'sort' => array('name' => 'views_handler_sort'),
  102. 'argument' => array('name' => 'views_handler_argument_numeric'),
  103. );
  104. }
  105. // Set the defaults for a serial type.
  106. elseif (preg_match('/^serial/', $field_schema['type'])) {
  107. $defn_array['fields'][$field_name]['handlers'] = array(
  108. /** D6
  109. 'field' => array('name' => 'chado_views_handler_field_numeric'),
  110. 'filter' => array('name' => 'chado_views_handler_filter_numeric'),
  111. 'sort' => array('name' => 'chado_views_handler_sort'),
  112. */
  113. 'field' => array('name' => 'views_handler_field_numeric'),
  114. 'filter' => array('name' => 'views_handler_filter_numeric'),
  115. 'sort' => array('name' => 'views_handler_sort'),
  116. 'argument' => array('name' => 'views_handler_argument_numeric'),
  117. );
  118. $defn_array['fields'][$field_name]['type'] = 'int';
  119. }
  120. // Set the defaults for a varchar type.
  121. elseif (preg_match('/^varchar/', $field_schema['type'])) {
  122. $defn_array['fields'][$field_name]['handlers'] = array(
  123. /** D6
  124. 'field' => array('name' => 'chado_views_handler_field'),
  125. 'filter' => array('name' => 'chado_views_handler_filter_string'),
  126. 'sort' => array('name' => 'chado_views_handler_sort'),
  127. */
  128. 'field' => array('name' => 'views_handler_field'),
  129. 'filter' => array('name' => 'views_handler_filter_string'),
  130. 'sort' => array('name' => 'views_handler_sort'),
  131. 'argument' => array('name' => 'views_handler_argument_string'),
  132. );
  133. }
  134. // Set the defaults for a text type.
  135. elseif (preg_match('/^text/', $field_schema['type'])) {
  136. $defn_array['fields'][$field_name]['handlers'] = array(
  137. /** D6
  138. 'field' => array('name' => 'chado_views_handler_field'),
  139. 'filter' => array('name' => 'chado_views_handler_filter_string'),
  140. 'sort' => array('name' => 'chado_views_handler_sort'),
  141. */
  142. 'field' => array('name' => 'views_handler_field'),
  143. 'filter' => array('name' => 'views_handler_filter_string'),
  144. 'sort' => array('name' => 'views_handler_sort'),
  145. 'argument' => array('name' => 'views_handler_argument_string'),
  146. );
  147. }
  148. // Set the defaults for a char type.
  149. elseif (preg_match('/^char/', $field_schema['type'])) {
  150. $defn_array['fields'][$field_name]['handlers'] = array(
  151. /** D6
  152. 'field' => array('name' => 'chado_views_handler_field'),
  153. 'filter' => array('name' => 'chado_views_handler_filter_string'),
  154. 'sort' => array('name' => 'chado_views_handler_sort'),
  155. */
  156. 'field' => array('name' => 'views_handler_field'),
  157. 'filter' => array('name' => 'views_handler_filter_string'),
  158. 'sort' => array('name' => 'views_handler_sort'),
  159. 'argument' => array('name' => 'views_handler_argument_string'),
  160. );
  161. }
  162. // Set the defaults for a boolean type.
  163. elseif (preg_match('/^boolean/', $field_schema['type'])) {
  164. $defn_array['fields'][$field_name]['handlers'] = array(
  165. /**
  166. 'field' => array('name' => 'chado_views_handler_field_boolean'),
  167. 'filter' => array('name' => 'chado_views_handler_filter_boolean_operator'),
  168. 'sort' => array('name' => 'chado_views_handler_sort'),
  169. */
  170. 'field' => array('name' => 'views_handler_field_boolean'),
  171. 'filter' => array('name' => 'views_handler_filter_boolean_operator'),
  172. 'sort' => array('name' => 'views_handler_sort'),
  173. );
  174. }
  175. // Set the defaults for a datatime type.
  176. elseif (preg_match('/^datetime/', $field_schema['type'])) {
  177. $defn_array['fields'][$field_name]['handlers'] = array(
  178. /** D6
  179. 'field' => array('name' => 'chado_views_handler_field_date'),
  180. 'filter' => array('name' => 'chado_views_handler_filter_date'),
  181. 'sort' => array('name' => 'views_handler_sort_date'),
  182. */
  183. 'field' => array('name' => 'views_handler_field_date'),
  184. 'filter' => array('name' => 'views_handler_filter_date'),
  185. 'sort' => array('name' => 'views_handler_sort_date'),
  186. 'argument' => array('name' => 'views_handler_argument_date'),
  187. );
  188. }
  189. // Set the defaults for a float type.
  190. elseif (preg_match('/^float/', $field_schema['type'])) {
  191. $defn_array['fields'][$field_name]['handlers'] = array(
  192. 'field' => array('name' => 'views_handler_field_numeric'),
  193. 'filter' => array('name' => 'views_handler_filter_numeric'),
  194. 'sort' => array('name' => 'views_handler_sort'),
  195. 'argument' => array('name' => 'views_handler_argument_numeric'),
  196. );
  197. }
  198. // If the type is not recognize the default to a string handler.
  199. else {
  200. $defn_array['fields'][$field_name]['handlers'] = array(
  201. /** D6
  202. 'field' => array('name' => 'chado_views_handler_field'),
  203. 'filter' => array('name' => 'chado_views_handler_filter_string'),
  204. 'sort' => array('name' => 'chado_views_handler_sort'),
  205. */
  206. 'field' => array('name' => 'views_handler_field'),
  207. 'filter' => array('name' => 'views_handler_filter_string'),
  208. 'sort' => array('name' => 'views_handler_sort'),
  209. 'argument' => array('name' => 'views_handler_argument_string'),
  210. );
  211. }
  212. // Specify specialty handlers
  213. if ($field_name == 'type_id' OR $field_name == 'cvterm_id') {
  214. $defn_array['fields'][$field_name]['handlers']['filter']['name'] = 'tripal_views_handler_filter_select_cvterm';
  215. }
  216. if (preg_match('/name/',$field_name)) {
  217. $defn_array['fields'][$field_name]['handlers']['filter']['name'] = 'tripal_views_handler_filter_select_string';
  218. }
  219. }
  220. }
  221. // Add Joins & Relationships for foreign keys to fields
  222. if (!isset($schema['foreign keys'])) {
  223. $schema['foreign keys'] = array();
  224. }
  225. foreach ($schema['foreign keys'] as $foreign_key_schema) {
  226. foreach ($foreign_key_schema['columns'] as $left_field => $right_field) {
  227. // Note: Even though there can only be a single join for a foreign key
  228. // we make the joins an array keyed by left_field to ensure that both
  229. // foeign key and referring_tables (see below) can be processed the same.
  230. $defn_array['fields'][$left_field]['joins'][ $foreign_key_schema['table'] ][ $right_field ] = array(
  231. 'table' => $foreign_key_schema['table'],
  232. 'field' => $right_field,
  233. 'handler' => 'views_handler_join',
  234. 'relationship_handler' => 'views_handler_relationship',
  235. );
  236. }
  237. }
  238. // Add in reverse relationships
  239. // Note: The array structure is set up with the left_field keyed array to
  240. // handle more than one join between the same set of tables on different
  241. // fields. For example, the reverse relationship between feature &
  242. // feature_relationship needs to join on both the subject_id and object_id.
  243. if (isset($schema['referring_tables'])) {
  244. foreach ($schema['referring_tables'] as $referring_table) {
  245. // D7 @todo: fix referring_tables in schema to list the keys like foreign keys does
  246. $referring_schema = chado_get_schema($referring_table);
  247. $referring_schema_fk_columns = $referring_schema['foreign keys'][$table_name]['columns'];
  248. foreach ($referring_schema_fk_columns as $left_field => $right_field) {
  249. // Also notice that it doesn't matter whether this is the first or second
  250. // reverse join on this table ($referring_table) to be added since
  251. // having $left_field as the key keeps them separate.
  252. $defn_array['fields'][$right_field]['joins'][ $referring_table ][ $left_field ] = array(
  253. 'table' => $referring_table,
  254. 'field' => $left_field,
  255. 'relationship_handler' => 'views_handler_relationship',
  256. 'relationship_only' => 1
  257. );
  258. }
  259. }
  260. }
  261. return $defn_array;
  262. }