tripal_core.views.inc 9.1 KB

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