tripal_core.views.inc 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310
  1. <?php
  2. include('views/handlers/views_handler_join_chado_through_linking.inc');
  3. //include('views/handlers/views_handler_join_chado_one2many.inc');
  4. /**
  5. * @defgroup views Views Integration
  6. * @{
  7. * Provide rules for formatting and composition of fields
  8. * @}
  9. */
  10. /**
  11. * @defgroup views_field_handlers Views Field Handlers
  12. * @{
  13. * Provide rules for formatting and composition of fields
  14. * @}
  15. * @ingroup views
  16. */
  17. /**
  18. * @defgroup views_filter_handlers Views Filter Handlers
  19. * @{
  20. * Provide the ability to filter based on specified data
  21. * @}
  22. * @ingroup views
  23. */
  24. /**
  25. * @defgroup views_sort_handlers Views Sort Handlers
  26. * @{
  27. * Provide methods describing how specific data should be sorted
  28. * @}
  29. * @ingroup views
  30. */
  31. /**
  32. * @defgroup views_argument_handlers Views Arguement Handlers
  33. * @{
  34. * Provide the ability to filter pased on arguments in the path of the view
  35. * @}
  36. * @ingroup views
  37. */
  38. /**
  39. * Implements hook_views_handlers()
  40. *
  41. * Purpose: Register all custom handlers with views
  42. * where a handler describes either "the type of field",
  43. * "how a field should be filtered", "how a field should be sorted"
  44. *
  45. * @return
  46. * An array of handler definitions
  47. *
  48. * @ingroup tripal_core
  49. */
  50. function tripal_core_views_handlers() {
  51. return array(
  52. 'info' => array(
  53. 'path' => drupal_get_path('module', 'tripal_core') . '/views/handlers',
  54. ),
  55. 'handlers' => array(
  56. 'views_handler_field_node_optional' => array(
  57. 'parent' => 'views_handler_field_node',
  58. ),
  59. 'views_handler_field_cvterm_name' => array(
  60. 'parent' => 'views_handler_field',
  61. ),
  62. 'views_handler_field_chado_tf_boolean' => array(
  63. 'parent' => 'views_handler_field_boolean',
  64. ),
  65. 'views_handler_field_chado_count' => array(
  66. 'parent' => 'views_handler_field',
  67. ),
  68. 'views_handler_filter_chado_select_string' => array(
  69. 'parent' => 'views_handler_filter_string',
  70. ),
  71. 'views_handler_filter_chado_select_cvterm_name' => array(
  72. 'parent' => 'views_handler_filter_string',
  73. ),
  74. 'views_handler_filter_chado_boolean' => array(
  75. 'parent' => 'views_handler_filter_boolean_operator',
  76. ),
  77. 'views_handler_field_chado_rel_by_type' => array(
  78. 'parent' => 'views_handler_field_prerender_list',
  79. ),
  80. 'views_handler_join_chado_one2many' => array(
  81. 'parent' => 'views_join'
  82. ),
  83. 'views_handler_filter_no_results' => array(
  84. 'parent' => 'views_handler_filter'
  85. ),
  86. ),
  87. );
  88. }
  89. function tripal_core_views_data () {
  90. // Define Global Fields -------------
  91. // Filter handler that lets the admin say:
  92. // "Show no results until they enter search parameters"
  93. $data['views']['search_results'] = array(
  94. 'title' => t('Search Results'),
  95. 'help' => t('Delay results until Apply/Search is clicked by the user.'),
  96. 'filter' => array(
  97. 'handler' => 'views_handler_filter_no_results',
  98. ),
  99. );
  100. return $data;
  101. }
  102. /**
  103. * Implements hook_views_pre_render
  104. *
  105. * Purpose: Intercepts the view after the query has been executed
  106. * All the results are stored in $view->result
  107. * Looking up the NID here ensures the query is only executed once
  108. * for all stocks in the table.
  109. *
  110. * @todo add if !<chado/drupal same db> around NID portion
  111. *
  112. * @ingroup tripal_core
  113. */
  114. function tripal_core_views_pre_render (&$view) {
  115. //Add Node IDs in to every table that needs them
  116. // @see file: tripal_core.views.inc
  117. tripal_core_add_node_ids_to_view ($view);
  118. }
  119. /**
  120. * Adds nid fields to all pertinent view results
  121. *
  122. * Purpose: To add basetable_nid fields to all result arrays of a view
  123. * only if the basetable_nid field is added. This function will only be
  124. * called if chado/drupal are not in the same database (ie: only if
  125. * a join between the base and node table isn't possible.
  126. *
  127. * Note: Supports adding Node IDs to analysis, feature, library, organism, stock
  128. *
  129. * @param $view
  130. * the view object passed to hook_views_pre_render
  131. *
  132. * @return the views object with nids added to the result array
  133. *
  134. * @ingroup tripal_core
  135. */
  136. function tripal_core_add_node_ids_to_view (&$view) {
  137. //-----Analysis----------------------------------------------
  138. if (!empty($view->field['analysis_nid'])) {
  139. // retrieve the analysis_id for each record in the views current page
  140. $analysis_ids = array();
  141. foreach ($view->result as $row_num => $row) {
  142. if (!empty($row->analysis_id)) {
  143. //we're looking at analysis id field already in table
  144. $analysis_ids[$row_num] = $row->analysis_id;
  145. } else {
  146. //we're looking at analysis id added by field handler
  147. $analysis_ids[$row_num] = $row->analysis_analysis_id;
  148. }
  149. }
  150. $unique_analysis_ids = array_filter($analysis_ids);
  151. $unique_analysis_ids = array_unique($unique_analysis_ids);
  152. if (!empty($unique_analysis_ids)) {
  153. // Using the list of analysis_ids from the view
  154. // lookup the NIDs from drupal
  155. // and add that to the results of the view
  156. $sql = "SELECT nid, analysis_id FROM {chado_analysis} WHERE analysis_id IN (".implode(',',$unique_analysis_ids).")";
  157. $resource = db_query($sql);
  158. while ($r = db_fetch_object($resource)) {
  159. $keys = array_keys($analysis_ids, $r->analysis_id);
  160. foreach ($keys as $k) {
  161. $view->result[$k]->analysis_nid = $r->nid;
  162. }
  163. }
  164. } // if there are any analysis'
  165. } //end of case for analysis NID
  166. //-----Feature-----------------------------------------------
  167. if (!empty($view->field['feature_nid'])) {
  168. // retrieve the feature_id for each record in the views current page
  169. $feature_ids = array();
  170. foreach ($view->result as $row_num => $row) {
  171. if (!empty($row->feature_id)) {
  172. //we're looking at feature id field already in table
  173. $feature_ids[$row_num] = $row->feature_id;
  174. } else {
  175. //we're looking at feature id added by field handler
  176. $feature_ids[$row_num] = $row->feature_feature_id;
  177. }
  178. }
  179. $unique_feature_ids = array_filter($feature_ids);
  180. $unique_feature_ids = array_unique($unique_feature_ids);
  181. if (!empty($unique_feature_ids)) {
  182. // Using the list of feature_ids from the view
  183. // lookup the NIDs from drupal
  184. // and add that to the results of the view
  185. $sql = "SELECT nid, feature_id FROM {chado_feature} WHERE feature_id IN (".implode(',',$unique_feature_ids).")";
  186. $resource = db_query($sql);
  187. while ($r = db_fetch_object($resource)) {
  188. $keys = array_keys($feature_ids, $r->feature_id);
  189. foreach ($keys as $k) {
  190. $view->result[$k]->feature_nid = $r->nid;
  191. }
  192. }
  193. } // if there are any features
  194. } //end of case for feature NID
  195. //-----Library-----------------------------------------------
  196. if (!empty($view->field['library_nid'])) {
  197. // retrieve the library_id for each record in the views current page
  198. $library_ids = array();
  199. foreach ($view->result as $row_num => $row) {
  200. if (!empty($row->library_id)) {
  201. //we're looking at library id field already in table
  202. $library_ids[$row_num] = $row->library_id;
  203. } else {
  204. //we're looking at library id added by field handler
  205. $library_ids[$row_num] = $row->library_library_id;
  206. }
  207. }
  208. $unique_library_ids = array_filter($library_ids);
  209. $unique_library_ids = array_unique($unique_library_ids);
  210. if (!empty($unique_library_ids)) {
  211. // Using the list of library_ids from the view
  212. // lookup the NIDs from drupal
  213. // and add that to the results of the view
  214. $sql = "SELECT nid, library_id FROM {chado_library} WHERE library_id IN (".implode(',',$unique_library_ids).")";
  215. $resource = db_query($sql);
  216. while ($r = db_fetch_object($resource)) {
  217. $keys = array_keys($library_ids, $r->library_id);
  218. foreach ($keys as $k) {
  219. $view->result[$k]->library_nid = $r->nid;
  220. }
  221. }
  222. } // if there are libraries
  223. } //end of case for library NID
  224. //-----Organism----------------------------------------------
  225. if (!empty($view->field['organism_nid'])) {
  226. // retrieve the organism_id for each record in the views current page
  227. $organism_ids = array();
  228. foreach ($view->result as $row_num => $row) {
  229. if (!empty($row->organism_id)) {
  230. //we're looking at organism id field already in table
  231. $organism_ids[$row_num] = $row->organism_id;
  232. } else {
  233. //we're looking at organism id added by field handler
  234. $organism_ids[$row_num] = $row->organism_organism_id;
  235. }
  236. }
  237. $unique_organism_ids = array_filter($organism_ids);
  238. $unique_organism_ids = array_unique($unique_organism_ids);
  239. if (!empty($unique_organism_ids)) {
  240. // Using the list of organism_ids from the view
  241. // lookup the NIDs from drupal
  242. // and add that to the results of the view
  243. $sql = "SELECT nid, organism_id FROM {chado_organism} WHERE organism_id IN (".implode(',',$unique_organism_ids).")";
  244. $resource = db_query($sql);
  245. while ($r = db_fetch_object($resource)) {
  246. $keys = array_keys($organism_ids, $r->organism_id);
  247. foreach ($keys as $k) {
  248. $view->result[$k]->organism_nid = $r->nid;
  249. }
  250. }
  251. } // if there are organisms
  252. } //end of case for organism NID
  253. //-----Stock-------------------------------------------------
  254. if (!empty($view->field['stock_nid'])) {
  255. // retrieve the stock_id for each record in the views current page
  256. $stock_ids = array();
  257. foreach ($view->result as $row_num => $row) {
  258. if (!empty($row->stock_id)) {
  259. //we're looking at stock id field already in table
  260. $stock_ids[$row_num] = $row->stock_id;
  261. } else {
  262. //we're looking at stock id added by field handler
  263. $stock_ids[$row_num] = $row->stock_stock_id;
  264. }
  265. }
  266. $unique_stock_ids = array_filter($stock_ids);
  267. $unique_stock_ids = array_unique($unique_stock_ids);
  268. if (!empty($unique_stock_ids)) {
  269. // Using the list of stock_ids from the view
  270. // lookup the NIDs from drupal
  271. // and add that to the results of the view
  272. $sql = "SELECT nid, stock_id FROM {chado_stock} WHERE stock_id IN (".implode(',',$unique_stock_ids).")";
  273. $resource = db_query($sql);
  274. while ($r = db_fetch_object($resource)) {
  275. $keys = array_keys($stock_ids, $r->stock_id);
  276. foreach ($keys as $k) {
  277. $view->result[$k]->stock_nid = $r->nid;
  278. }
  279. }
  280. } //if there are stocks
  281. } //end of case for stock NID
  282. return $view;
  283. }