tripal_chado_views.views.inc 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689
  1. <?php
  2. /**
  3. * @file
  4. * Chado Views Integration
  5. */
  6. include 'views/handlers/tripal_views_handler_area_action_links.inc';
  7. /**
  8. * Implements hook_views_handlers().
  9. *
  10. * Purpose: Register all custom handlers with views
  11. * where a handler describes either "the type of field",
  12. * "how a field should be filtered", "how a field should be sorted"
  13. *
  14. * @return
  15. * An array of handler definitions
  16. *
  17. * @ingroup tripal_chado_views
  18. */
  19. function tripal_chado_views_views_handlers() {
  20. return array(
  21. 'info' => array(
  22. 'path' => drupal_get_path('module', 'tripal_chado_views') . '/views/handlers',
  23. ),
  24. 'handlers' => array(
  25. // Custom Tripal Field Handlers
  26. /** CANT FIX UNTIL Tripal Feature is working
  27. 'tripal_views_handler_field_sequence' => array(
  28. 'parent' => 'views_handler_field',
  29. ),
  30. */
  31. // Custom area handler
  32. 'tripal_views_handler_area_action_links' => array(
  33. 'parent' => 'views_handler_area',
  34. ),
  35. // Custom Tripal Filter Handlers
  36. 'tripal_views_handler_filter_no_results' => array(
  37. 'parent' => 'views_handler_filter'
  38. ),
  39. 'tripal_views_handler_filter_select_cvterm' => array(
  40. 'parent' => 'tripal_views_handler_filter_select_string',
  41. ),
  42. 'tripal_views_handler_filter_select_id' => array(
  43. 'parent' => 'tripal_views_handler_filter_select_string',
  44. ),
  45. 'tripal_views_handler_filter_select_string' => array(
  46. 'parent' => 'views_handler_filter_string',
  47. ),
  48. 'tripal_views_handler_filter_textarea' => array(
  49. 'parent' => 'views_handler_filter',
  50. ),
  51. 'tripal_views_handler_filter_file_upload' => array(
  52. 'parent' => 'views_handler_filter',
  53. ),
  54. /** D7 @todo: get handlers working
  55. */
  56. /** CANT FIX UNTIL Tripal Feature is working
  57. 'tripal_views_handler_filter_sequence' => array(
  58. 'parent' => 'chado_views_handler_filter_string',
  59. ),
  60. */
  61. ),
  62. );
  63. }
  64. /**
  65. * Implements hook_views_pre_render().
  66. *
  67. * Purpose: Intercepts the view after the query has been executed
  68. * All the results are stored in $view->result
  69. * Looking up the NID here ensures the query is only executed once
  70. * for all stocks in the table.
  71. *
  72. * @ingroup tripal_chado_views
  73. */
  74. function tripal_chado_views_views_pre_render(&$view) {
  75. // We need to unset the exposed_input for the view so we can repopulate that
  76. // variable. This is necessary if we're using the file_upload_combo
  77. // custom form element which adds the file_path variable to the $_GET after the
  78. // view has populated the $view->exposed_input variable
  79. unset($view->exposed_input);
  80. // Add css if tripal admin tagged view
  81. if ($view->tag == 'tripal admin') {
  82. $tripal_admin_view_css = drupal_get_path('module', 'tripal_chado_views') . '/theme/css/tripal_views_admin_views.css';
  83. drupal_add_css($tripal_admin_view_css);
  84. }
  85. }
  86. /**
  87. * Implements hook_views_data().
  88. *
  89. * Generates a dynamic data array for Views
  90. *
  91. * This function is a hook used by the Views module. It populates and
  92. * returns a data array that specifies for the Views module the base table,
  93. * the tables it joins with and handlers. The data array is populated
  94. * using the data stored in the tripal_views tables.
  95. *
  96. * @return a data array formatted for the Views module
  97. *
  98. * D7 @todo: Add support for materialized views relationships using the new method
  99. *
  100. * @ingroup tripal_chado_views
  101. */
  102. function tripal_chado_views_views_data() {
  103. $data = array();
  104. // Manually integrate the drupal.tripal_views* tables
  105. $data = tripal_chado_views_views_data_tripal_views_tables($data);
  106. // Determine the name of the chado schema
  107. $chado_schema = tripal_get_schema_name('chado');
  108. // MAKE SURE ALL CHADO TABLES ARE INTEGRATED
  109. tripal_chado_views_integrate_all_chado_tables();
  110. // DEFINE GLOBAL FIELDS
  111. // Filter handler that lets the admin say:
  112. // "Show no results until they enter search parameters"
  113. $data['views']['search_results'] = array(
  114. 'title' => t('Delay Results'),
  115. 'help' => t('Delay results until Apply/Search is clicked by the user.'),
  116. 'filter' => array(
  117. 'handler' => 'tripal_views_handler_filter_no_results',
  118. ),
  119. );
  120. $data['views']['action_links_area'] = array(
  121. 'title' => t('Action Links'),
  122. 'help' => t('Add action links to the view.'),
  123. 'area' => array(
  124. 'handler' => 'tripal_views_handler_area_action_links',
  125. ),
  126. );
  127. $tvi_query = db_query('SELECT * FROM {tripal_views}');
  128. // INTEGRATE THE LIGHTEST SETUP FOR EACH TABLE
  129. foreach ($tvi_query as $tvi_row) {
  130. // check to see if this is the lightest (drupal-style) priority setup for this table
  131. // if not then don't use this definition
  132. $lightest_priority_setup = tripal_is_lightest_priority_setup($tvi_row->setup_id, $tvi_row->table_name);
  133. if (!$lightest_priority_setup) {
  134. continue;
  135. }
  136. // ids we'll use for queries
  137. $setup_id = $tvi_row->setup_id;
  138. $mview_id = $tvi_row->mview_id;
  139. // holds the base table name and fields
  140. $base_table = '';
  141. $base_fields = array();
  142. // indicated whether the current table is a base table or not
  143. $is_base_table = $tvi_row->base_table;
  144. // POPULATE THE BASE TABLE NAME AND FIELDS
  145. // If an $mview_id is given then get the materialized view info,
  146. // otherwise get the Chado table info
  147. $legacy_mview = FALSE;
  148. if ($mview_id) {
  149. // get the base table name from the materialized view
  150. // D7 TODO: Check DBTNG changes work
  151. $sql = "SELECT name, mv_specs FROM {tripal_mviews} WHERE mview_id = :id";
  152. $mview_table = db_query($sql, array(':id' => $mview_id));
  153. $mview_table = $mview_table->fetchObject();
  154. $base_table = $mview_table->name;
  155. if (!empty($mview_table->mv_specs)) {
  156. $legacy_mview = TRUE;
  157. }
  158. }
  159. if ($legacy_mview) {
  160. // get the columns in this materialized view. They are separated by commas
  161. // where the first word is the column name and the rest is the type
  162. $columns = explode(",", $mview_table->mv_specs);
  163. foreach ($columns as $column) {
  164. $column = trim($column); // trim trailing and leading spaces
  165. preg_match("/^(.*?)\ (.*?)$/", $column, $matches);
  166. $column_name = $matches[1];
  167. $column_type = $matches[2];
  168. $base_fields[$column_name] = array(
  169. 'column_name' => $column_name,
  170. 'type' => $column_type,
  171. );
  172. }
  173. // get the field name and descriptions
  174. // D7 TODO: Check DBTNG changes work
  175. $sql = "SELECT * FROM {tripal_views_field} WHERE setup_id=:setup";
  176. $query = db_query($sql, array(':setup' => $setup_id));
  177. foreach($query as $field) {
  178. $base_fields[$field->column_name]['name'] = $field->name;
  179. $base_fields[$field->column_name]['help'] = $field->description;
  180. }
  181. }
  182. // if this is not a legacy materialized view
  183. else {
  184. $base_table = $tvi_row->table_name;
  185. // get the table description
  186. $table_desc = chado_get_schema($base_table);
  187. $fields = $table_desc['fields'];
  188. if (!is_array($fields)) {
  189. $fields = array();
  190. }
  191. foreach ($fields as $column => $attrs) {
  192. $base_fields[$column] = array(
  193. 'column_name' => $column,
  194. // Add a default for type since module developers may sometimes need to use a
  195. // PostgreSQL-specific type.
  196. 'type' => (isset($attrs['type'])) ? $attrs['type'] : 'text',
  197. );
  198. // If PostgreSQL-specifc types are needed the module developer should be given
  199. // a way to set the most closely matching type for views. They should also be
  200. // allowed to override the type for views. This can be done by adding a views_type
  201. // to the schema definition :-).
  202. if (isset($attrs['views_type'])) {
  203. $base_fields[$column]['type'] = $attrs['views_type'];
  204. }
  205. // Tell admin about this feature and warn them that we made an assumption for them.
  206. if (!isset($attrs['type']) AND !isset($attrs['views_type'])) {
  207. tripal_report_error(
  208. 'tripal_views',
  209. TRIPAL_WARNING,
  210. "Unable to determine the type for %column thus we have defaulted to type 'text'.
  211. Tip: This may be due to setting a postgresql-specific type. Solution: Add a
  212. 'views_type' to your schema definition to specify what type should be used.",
  213. array('%column' => $column)
  214. );
  215. }
  216. }
  217. // get the field name and descriptions
  218. $sql = "SELECT * FROM {tripal_views_field} WHERE setup_id=:setup";
  219. $query = db_query($sql, array(':setup' => $setup_id));
  220. foreach ($query as $field) {
  221. $base_fields[$field->column_name]['name'] = $field->name;
  222. $base_fields[$field->column_name]['help'] = $field->description;
  223. }
  224. }
  225. // SETUP THE BASE TABLE INFO IN THE DATA ARRAY
  226. $data[$base_table]['table']['group'] = t("$tvi_row->name");
  227. if ($is_base_table) {
  228. $data[$base_table]['table']['base'] = array(
  229. 'group' => "$tvi_row->name",
  230. 'title' => "$tvi_row->name",
  231. 'help' => $tvi_row->comment,
  232. 'search_path' => $chado_schema
  233. );
  234. }
  235. else {
  236. $data[$base_table]['table'] = array(
  237. 'group' => "$tvi_row->name",
  238. 'title' => "$tvi_row->name",
  239. 'help' => $tvi_row->comment,
  240. 'search_path' => $chado_schema
  241. );
  242. }
  243. // ADD THE FIELDS TO THE DATA ARRAY
  244. foreach ($base_fields as $column_name => $base_field) {
  245. if (!isset($base_field['name'])) {
  246. $data[$base_table][$column_name] = array(
  247. 'title' => t($column_name),
  248. 'help' => t($column_name),
  249. 'field' => array(
  250. 'click sortable' => TRUE,
  251. ),
  252. );
  253. tripal_report_error(
  254. 'tripal_chado_views',
  255. TRIPAL_DEBUG,
  256. "The name and help were not set for %table.%column. As a consequence the column
  257. name has been used... You should ensure that the 'name' and 'help' keys for
  258. this field are set in the integration array (priority = %priority)",
  259. array(
  260. '%table'=> $base_table,
  261. '%column' => $column_name,
  262. '%priority' => $tvi_row->priority
  263. )
  264. );
  265. }
  266. else {
  267. $data[$base_table][$column_name] = array(
  268. 'title' => t($base_field['name']),
  269. 'help' => t($base_field['help']),
  270. 'field' => array(
  271. 'click sortable' => TRUE,
  272. ),
  273. );
  274. }
  275. // now add the handlers
  276. $sql = "SELECT * FROM {tripal_views_handlers} WHERE setup_id = :setup AND column_name = :column";
  277. $handlers = db_query($sql, array(':setup' => $setup_id, ':column' => $column_name));
  278. $num_handlers = 0;
  279. foreach ($handlers as $handler) {
  280. $num_handlers++;
  281. $data[$base_table][$column_name][$handler->handler_type]['handler'] = $handler->handler_name;
  282. // Add in any additional arguments
  283. // This should be a serialized array including (at a minimum) name => <handler name>
  284. if ($handler->arguments) {
  285. $data[$base_table][$column_name][$handler->handler_type] = array_merge($data[$base_table][$column_name][$handler->handler_type], unserialize($handler->arguments));
  286. }
  287. };
  288. // If there were no handlers applied to the current field then warn the administrator!
  289. if ($num_handlers == 0) {
  290. tripal_report_error(
  291. 'tripal_chado_views',
  292. TRIPAL_DEBUG,
  293. "No handlers were registered for %table.%column. This means there is no views
  294. functionality for this column. To register handlers, make sure the 'handlers'
  295. key for this field is set in the integration array (priority = %priority).
  296. The supported keys include 'field', 'filter', 'sort', 'relationship'. Look
  297. at the tripal_add_views_integration() for additional details.",
  298. array(
  299. '%table'=> $base_table,
  300. '%column' => $column_name,
  301. '%priority' => $tvi_row->priority
  302. )
  303. );
  304. }
  305. }
  306. // ADD JOINS & RELATIONSHIPS TO DATA ARRAY
  307. // only add joins if this is a base table
  308. // this keeps the list of available fields manageable
  309. // all other tables should be added via relationships
  310. $sql = "SELECT * FROM {tripal_views_join} WHERE setup_id = :setup";
  311. $joins = db_query($sql, array(':setup' => $setup_id));
  312. if (!isset($joins)) {
  313. $joins = array();
  314. }
  315. foreach ($joins as $join) {
  316. $left_table = $join->left_table;
  317. $left_field = $join->left_field;
  318. $base_table = $join->base_table;
  319. $base_field = $join->base_field;
  320. $handler = $join->handler;
  321. $base_title = ucwords(str_replace('_', ' ', $base_table));
  322. $left_title = ucwords(str_replace('_', ' ', $left_table));
  323. // if the 'node' table is in our integrated list then
  324. // we want to skip it. It shouldn't be there.
  325. if ($left_table == 'node') {
  326. continue;
  327. }
  328. // add join entry
  329. if (!$join->relationship_only) {
  330. $data[$left_table]['table']['join'][$base_table] = array(
  331. 'left_field' => $base_field,
  332. 'field' => $left_field,
  333. );
  334. if ($handler) {
  335. $data[$left_table]['table']['join'][$base_table]['handler'] = $handler;
  336. }
  337. if (!empty($join->arguments)) {
  338. array_merge($data[$left_table]['table']['join'][$base_table], unserialize($join->arguments));
  339. }
  340. }
  341. // warn if deprecated method of relationship addition was used (ie: through handlers)
  342. if (isset($data[$base_table][$base_field]['relationship'])) {
  343. tripal_report_error('tripal_chado_views', TRIPAL_NOTICE,
  344. 'DEPRECATED: Currently using tripal_views_handlers to store relationship for %base => %left when you should be using tripal_views_joins.',
  345. array('%base' => $base_table, '%left' => $left_table));
  346. }
  347. // Add relationship entry.
  348. // NOTE: we use a fake field name to allow us to have multiple
  349. // relationships for the same field (ie: feature.feature_id has many
  350. // Many relationships but views only supports a single one).
  351. $fake_field = $base_field . '_to_' . $left_table;
  352. // Bug Fix: The old $fake_field used above doesn't take into account
  353. // multiple relationships to the same left table. To keep backwards
  354. // compatibility, this old fake_field needs to continue to be used for
  355. // the LAST recorded relationship. However, for all previously set
  356. // relationships we can use an improved fake name which takes into
  357. // account the left field and ensures all relationships for a single
  358. // left table are not condensed into a single relationship.
  359. if (array_key_exists($fake_field, $data[$base_table])) {
  360. // Again, note that we can't just change the fake_name after finding
  361. // there is more than one relationship because then the FIRST
  362. // relationship would keep the old fake_name rather than the LAST
  363. // which keeps backwards compatiblity since the old naming caused all
  364. // previous relationships be be overridden by the next one.
  365. // Thus we first need to determine the left field of the previous
  366. // join for this table combination and then use that to form our
  367. // improved fake field.
  368. $previous_left_field = $data[$base_table][$fake_field]['relationship']['base field'];
  369. $improved_fake_field = $base_field . '_to_' . $left_table . "." . $previous_left_field;
  370. $data[$base_table][$improved_fake_field] = $data[$base_table][$fake_field];
  371. }
  372. $data[$base_table][$fake_field] = array(
  373. 'title' => "$base_title.$base_field => $left_title.$left_field",
  374. 'help' => t("Joins @base to @left", array('@base' => "$base_title.$base_field", '@left' => "$left_title.$left_field")),
  375. 'relationship' => array(
  376. 'handler' => $join->relationship_handler,
  377. 'title' => t("$base_field => $left_title ($left_field)"),
  378. 'label' => t("$base_field => $left_title ($left_field)"),
  379. 'real field' => $base_field,
  380. 'base' => $left_table,
  381. 'base field' => $left_field
  382. )
  383. );
  384. if (!empty($join->arguments)) {
  385. array_merge($data[$base_table][$fake_field]['relationship'], unserialize($join->arguments));
  386. }
  387. }
  388. }
  389. return $data;
  390. }
  391. /**
  392. * Describes the tripal views integration tables to views for the administration views
  393. *
  394. * @ingroup tripal_chado_views
  395. */
  396. function tripal_chado_views_views_data_tripal_views_tables($data) {
  397. $data['tripal_views']['table']['group'] = t('Chado Views Integration');
  398. $data['tripal_views']['table']['base'] = array(
  399. 'field' => 'setup_id', // This is the identifier field for the view.
  400. 'title' => t('Chado Views Integration'),
  401. 'help' => t('Specifications on how to integrate various tables with Drupal Views'),
  402. 'weight' => -10,
  403. );
  404. // Implicit Join to Materialized Views
  405. $data['tripal_views']['table']['join'] = array(
  406. 'tripal_mviews' => array(
  407. 'left_field' => 'mview_id',
  408. 'field' => 'mview_id',
  409. ),
  410. );
  411. // setup_id
  412. $data['tripal_views']['setup_id'] = array(
  413. 'title' => t('Setup ID'),
  414. 'help' => t('Primary key of the integration'),
  415. 'field' => array(
  416. 'handler' => 'views_handler_field_numeric',
  417. 'click sortable' => TRUE,
  418. ),
  419. 'filter' => array(
  420. 'handler' => 'views_handler_filter_numeric',
  421. ),
  422. 'sort' => array(
  423. 'handler' => 'views_handler_sort',
  424. ),
  425. );
  426. // mview_id
  427. $data['tripal_views']['mview_id'] = array(
  428. 'title' => t('Materialized View ID'),
  429. 'help' => t('The primary key of the Mview integrated.'),
  430. 'field' => array(
  431. 'handler' => 'views_handler_field_numeric',
  432. 'click sortable' => TRUE,
  433. ),
  434. 'filter' => array(
  435. 'handler' => 'views_handler_filter_numeric',
  436. ),
  437. 'sort' => array(
  438. 'handler' => 'views_handler_sort',
  439. ),
  440. );
  441. // base_table
  442. $data['tripal_views']['base_table'] = array(
  443. 'title' => t('Base Table?'),
  444. 'help' => t('Whether the table being integrated should be considered a base table.'),
  445. 'field' => array(
  446. 'handler' => 'views_handler_field_boolean',
  447. 'click sortable' => TRUE,
  448. ),
  449. 'filter' => array(
  450. 'handler' => 'views_handler_filter_boolean_operator',
  451. 'label' => t('Base Table?'),
  452. 'type' => 'yes-no',
  453. 'use equal' => TRUE,
  454. ),
  455. 'sort' => array(
  456. 'handler' => 'views_handler_sort',
  457. ),
  458. );
  459. // table_name
  460. $data['tripal_views']['table_name'] = array(
  461. 'title' => t('Chado Table Name'),
  462. 'help' => t('The name of the table being integrated'),
  463. 'field' => array(
  464. 'handler' => 'views_handler_field',
  465. 'click sortable' => TRUE, // This is use by the table display plugin.
  466. ),
  467. 'sort' => array(
  468. 'handler' => 'views_handler_sort',
  469. ),
  470. 'filter' => array(
  471. 'handler' => 'views_handler_filter_string',
  472. ),
  473. 'argument' => array(
  474. 'handler' => 'views_handler_argument_string',
  475. ),
  476. );
  477. // priority
  478. $data['tripal_views']['priority'] = array(
  479. 'title' => t('Priority'),
  480. 'help' => t('The priority of the integration.'),
  481. 'field' => array(
  482. 'handler' => 'views_handler_field_numeric',
  483. 'click sortable' => TRUE,
  484. ),
  485. 'filter' => array(
  486. 'handler' => 'views_handler_filter_numeric',
  487. ),
  488. 'sort' => array(
  489. 'handler' => 'views_handler_sort',
  490. ),
  491. );
  492. // name
  493. $data['tripal_views']['name'] = array(
  494. 'title' => t('Name'),
  495. 'help' => t('The name of the integration'),
  496. 'field' => array(
  497. 'handler' => 'views_handler_field',
  498. 'click sortable' => TRUE, // This is use by the table display plugin.
  499. ),
  500. 'sort' => array(
  501. 'handler' => 'views_handler_sort',
  502. ),
  503. 'filter' => array(
  504. 'handler' => 'views_handler_filter_string',
  505. ),
  506. 'argument' => array(
  507. 'handler' => 'views_handler_argument_string',
  508. ),
  509. );
  510. // comment
  511. $data['tripal_views']['comment'] = array(
  512. 'title' => t('Description'),
  513. 'help' => t('Short description or comment about this integration.'),
  514. 'field' => array(
  515. 'handler' => 'views_handler_field',
  516. 'click sortable' => TRUE, // This is use by the table display plugin.
  517. ),
  518. 'sort' => array(
  519. 'handler' => 'views_handler_sort',
  520. ),
  521. 'filter' => array(
  522. 'handler' => 'views_handler_filter_string',
  523. ),
  524. 'argument' => array(
  525. 'handler' => 'views_handler_argument_string',
  526. ),
  527. );
  528. return $data;
  529. }
  530. /**
  531. * Implements hook_views_data_alter().
  532. * Used to add Chado <-> Node Joins & Relationships
  533. * since you need to add to the $data['node'] to do this
  534. *
  535. * @ingroup tripal_chado_views
  536. */
  537. function tripal_chado_views_views_data_alter(&$data) {
  538. // ADD IN NODE JOINS & RELATIONSHIPS
  539. // D7 @todo: Create custom handler to allow join from Node => Base (ie: organism)
  540. // with the addition of a single relationship
  541. // D7 @todo: Create custom handler to allow join from Base (ie: organism)
  542. // with the addition of a single relationship
  543. // D7 @todo: Add support for Mview <-> Node joins and relationships
  544. $tvi_query = db_query('SELECT * FROM {tripal_views} WHERE base_table=1');
  545. foreach ($tvi_query as $tvi_row) {
  546. //ids we'll use for queries
  547. $setup_id = $tvi_row->setup_id;
  548. $base_table = $tvi_row->table_name;
  549. $linker_table = 'chado_' . $base_table;
  550. $base_title = ucwords(str_replace('_', ' ', $base_table));
  551. // add in joins to the node tables if the Chado schema is local
  552. if (chado_is_local()) {
  553. // if a node linking table exists then add in the joins
  554. if (db_table_exists($linker_table)) {
  555. // Adds content (node) fields to chado base table field lists automatically
  556. $data['node']['table']['join'][$linker_table] = array(
  557. 'left_field' => 'nid',
  558. 'field' => 'nid',
  559. );
  560. $data[$linker_table]['table']['join'][$base_table] = array(
  561. 'left_field' => $base_table . '_id',
  562. 'field' => $base_table . '_id',
  563. );
  564. $data['node']['table']['join'][$base_table] = array(
  565. 'left_table' => $linker_table,
  566. 'left_field' => 'nid',
  567. 'field' => 'nid',
  568. );
  569. // Adds in a chado base table => node relationship
  570. // This allows controlled joining to multiple nodes per line
  571. // Use Case: link to feature and organism nodes on a feature listing
  572. // D7 todo: a custom relationship handler to get from feature.organism_id => organism node
  573. // without 1st needing to add relationship to organism table
  574. $base_field = $base_table . '_id';
  575. $data[$linker_table][$base_field] = array(
  576. 'group' => $base_title,
  577. 'title' => $base_title . 'Node',
  578. 'help' => t("Links @base_title to it's node.", array('@base_title' => $base_title)),
  579. 'relationship' => array(
  580. 'handler' => 'views_handler_relationship',
  581. 'title' => t("@base_title => Node", array('@base_title' => $base_title)),
  582. 'label' => t("@base_title => Node", array('@base_title' => $base_title)),
  583. 'real field' => 'nid',
  584. 'base' => 'node',
  585. 'base field' => 'nid'
  586. ),
  587. );
  588. // Add Chado fields to a node-based view
  589. // This will only be done with relationships
  590. $base_field = $base_table . '_id';
  591. $data['node'][$base_field] = array(
  592. 'group' => $base_title,
  593. 'title' => $base_title,
  594. 'help' => t("Links node to chado @base_title.", array('@base_title' => $base_title)),
  595. 'relationship' => array(
  596. 'handler' => 'views_handler_relationship',
  597. 'title' => t("Node => @base_title", array('@base_title' => $base_title)),
  598. 'label' => t("Node => @base_title", array('@base_title' => $base_title)),
  599. 'real field' => 'nid',
  600. 'base' => $linker_table,
  601. 'base field' => 'nid'
  602. ),
  603. );
  604. }
  605. }
  606. }
  607. return $data;
  608. }
  609. /**
  610. * Implementation of hook_views_pre_view().
  611. *
  612. * Merge the $_GET and $_POST into the $_GET. This is because
  613. * Views and Views Data Export modules only uses the $_GET variable but
  614. * file uploads require $_POST. We need to make sure these two modules
  615. * have access to everything needed for this view to work properly.
  616. *
  617. * @ingroup tripal_chado_views
  618. */
  619. function tripal_chado_views_views_pre_view(&$view, &$display_id, &$args) {
  620. $_GET = array_merge($_GET, $_POST);
  621. }