chado_linker__pub.inc 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379
  1. <?php
  2. class chado_linker_pub extends TripalField {
  3. /**
  4. * @see TripalField::field_info()
  5. */
  6. function field_info() {
  7. return array(
  8. 'label' => t('Publications'),
  9. 'description' => t('Associates a publication (e.g. journal article,
  10. conference proceedings, book chapter, etc.) with this record.'),
  11. 'default_widget' => 'chado_linker__pub_widget',
  12. 'default_formatter' => 'chado_linker__pub_formatter',
  13. 'settings' => array(),
  14. 'storage' => array(
  15. 'type' => 'field_chado_storage',
  16. 'module' => 'tripal_chado',
  17. 'active' => TRUE
  18. ),
  19. );
  20. }
  21. /**
  22. * @see TripalField::can_attach()
  23. */
  24. protected function can_attach($entity_type, $bundle, $details) {
  25. $table_name = $details['chado_table'];
  26. $type_table = $details['chado_type_table'];
  27. $type_field = $details['chado_type_column'];
  28. $cv_id = $details['chado_cv_id'];
  29. $cvterm_id = $details['chado_cvterm_id'];
  30. // If the linker table does not exists then we don't want to add attach.
  31. $pub_table = $table_name . '_pub';
  32. if (chado_table_exists($pub_table)) {
  33. return TRUE;
  34. }
  35. return FALSE;
  36. }
  37. /**
  38. * @see TripalField::create_info()
  39. */
  40. function create_info($entity_type, $bundle, $details) {
  41. if (!$this->can_attach($entity_type, $bundle, $details)) {
  42. return;
  43. }
  44. $table_name = $details['chado_table'];
  45. $type_table = $details['chado_type_table'];
  46. $type_field = $details['chado_type_column'];
  47. $cv_id = $details['chado_cv_id'];
  48. $cvterm_id = $details['chado_cvterm_id'];
  49. $pub_table = $table_name . '_pub';
  50. $schema = chado_get_schema($pub_table);
  51. $pkey = $schema['primary key'][0];
  52. return array(
  53. 'field_name' => $table_name . '__pub',
  54. 'type' => 'chado_linker__pub',
  55. 'cardinality' => FIELD_CARDINALITY_UNLIMITED,
  56. 'locked' => FALSE,
  57. 'storage' => array(
  58. 'type' => 'field_chado_storage',
  59. ),
  60. 'settings' => array(
  61. 'chado_table' => $pub_table,
  62. 'chado_column' => $pkey,
  63. 'base_table' => $table_name,
  64. 'semantic_web' => 'schema:publication',
  65. ),
  66. );
  67. }
  68. /**
  69. * @see TripalField::create_instance_info()
  70. */
  71. function create_instance_info($entity_type, $bundle, $details) {
  72. if (!$this->can_attach($entity_type, $bundle, $details)) {
  73. return;
  74. }
  75. $table_name = $details['chado_table'];
  76. $type_table = $details['chado_type_table'];
  77. $type_field = $details['chado_type_column'];
  78. $cv_id = $details['chado_cv_id'];
  79. $cvterm_id = $details['chado_cvterm_id'];
  80. return array(
  81. 'field_name' => $table_name . '__pub',
  82. 'entity_type' => $entity_type,
  83. 'bundle' => $bundle->name,
  84. 'label' => 'Publications',
  85. 'description' => 'This record has been referenced or is sourced from
  86. these publications.',
  87. 'required' => FALSE,
  88. 'settings' => array(
  89. 'auto_attach' => FALSE,
  90. ),
  91. 'widget' => array(
  92. 'type' => 'chado_linker__pub_widget',
  93. 'settings' => array(
  94. 'display_label' => 1,
  95. ),
  96. ),
  97. 'display' => array(
  98. 'deafult' => array(
  99. 'label' => 'above',
  100. 'type' => 'chado_linker__pub_formatter',
  101. 'settings' => array(),
  102. ),
  103. ),
  104. );
  105. }
  106. /**
  107. * @see TripalField::widget_info()
  108. */
  109. function widget_info() {
  110. return array(
  111. 'label' => t('Publications'),
  112. 'field types' => array('chado_linker__pub'),
  113. );
  114. }
  115. /**
  116. * @see TripalField::formatter_info()
  117. */
  118. function formatter_info() {
  119. return array(
  120. 'label' => t('Publications'),
  121. 'field types' => array('chado_linker__pub'),
  122. 'settings' => array(
  123. ),
  124. );
  125. }
  126. /**
  127. * @see TripalField::formatter_view()
  128. */
  129. function formatter_view(&$element, $entity_type, $entity, $field,
  130. $instance, $langcode, $items, $display) {
  131. $list_items = array();
  132. $chado_table = $field['settings']['chado_table'];
  133. foreach ($items as $delta => $item) {
  134. if ($item[$chado_table . '__pub_id']) {
  135. $pub = chado_generate_var('pub', array('pub_id' => $item[$chado_table . '__pub_id']));
  136. $list_items[$pub->pyear] = $pub->uniquename;
  137. }
  138. }
  139. krsort($list_items, SORT_NUMERIC);
  140. $list = array(
  141. 'title' => '',
  142. 'items' => $list_items,
  143. 'type' => 'ol',
  144. 'attributes' => array(),
  145. );
  146. if (count($items) > 0) {
  147. $element[0] = array(
  148. '#type' => 'markup',
  149. '#markup' => theme_item_list($list),
  150. );
  151. }
  152. }
  153. /**
  154. * @see TripalField::widget_form()
  155. */
  156. public function widget_form(&$widget, &$form, &$form_state, $field, $instance,
  157. $langcode, $items, $delta, $element) {
  158. $entity = $form['#entity'];
  159. $field_name = $field['field_name'];
  160. // Get the FK column that links to the base table.
  161. $table_name = $field['settings']['chado_table'];
  162. $base_table = $field['settings']['base_table'];
  163. $schema = chado_get_schema($table_name);
  164. $pkey = $schema['primary key'][0];
  165. $fkeys = array_values($schema['foreign keys'][$base_table]['columns']);
  166. $fkey = $fkeys[0];
  167. // Get the field defaults.
  168. $record_id = '';
  169. $fkey_value = $element['#entity']->chado_record_id;
  170. $pub_id = '';
  171. $title = '';
  172. // If the field already has a value then it will come through the $items
  173. // array. This happens when editing an existing record.
  174. if (array_key_exists($delta, $items)) {
  175. $record_id = $items[$delta][$table_name . '__' . $pkey];
  176. $fkey_value = $items[$delta][$table_name . '__' . $fkey];
  177. $pub_id = $items[$delta][$table_name . '__pub_id'];
  178. $title = $items[$delta][$table_name . '--pub__uniquename'];
  179. }
  180. // Check $form_state['values'] to see if an AJAX call set the values.
  181. if (array_key_exists('values', $form_state) and array_key_exists($delta, $form_state['values'])) {
  182. $record_id = tripal_chado_get_field_form_values($table_name, $form_state, $delta, $table_name . '__' . $pkey);
  183. $fkey_value = tripal_chado_get_field_form_values($table_name, $form_state, $delta, $table_name . '__' . $fkey);
  184. $pub_id = tripal_chado_get_field_form_values($table_name, $form_state, $delta, $table_name . '__pub_id');
  185. $title = tripal_chado_get_field_form_values($table_name, $form_state, $delta, $table_name . '__title');
  186. }
  187. $schema = chado_get_schema('pub');
  188. $widget['#table_name'] = $table_name;
  189. $widget['#fkey_field'] = $fkey;
  190. $widget['#element_validate'] = array('chado_linker__pub_widget_validate');
  191. $widget['#theme'] = 'chado_linker__pub_widget';
  192. $widget['#prefix'] = "<span id='$table_name-$delta'>";
  193. $widget['#suffix'] = "</span>";
  194. $widget['value'] = array(
  195. '#type' => 'value',
  196. '#value' => $items[$delta]['value'],
  197. );
  198. $widget[$table_name . '__' . $pkey] = array(
  199. '#type' => 'value',
  200. '#default_value' => $record_id,
  201. );
  202. $widget[$table_name . '__' . $fkey] = array(
  203. '#type' => 'value',
  204. '#default_value' => $fkey_value,
  205. );
  206. $widget[$table_name . '__pub_id'] = array(
  207. '#type' => 'value',
  208. '#default_value' => $pub_id,
  209. );
  210. $widget[$table_name . '--pub__uniquename'] = array(
  211. '#type' => 'textfield',
  212. '#title' => t('Publication ID'),
  213. '#default_value' => $title,
  214. '#autocomplete_path' => 'admin/tripal/storage/chado/auto_name/pub',
  215. '#ajax' => array(
  216. 'callback' => "chado_linker__pub_widget_form_ajax_callback",
  217. 'wrapper' => "$table_name-$delta",
  218. 'effect' => 'fade',
  219. 'method' => 'replace'
  220. ),
  221. '#maxlength' => 100000,
  222. );
  223. }
  224. /**
  225. * @see TripalField::load()
  226. */
  227. function load($field, $entity, $details) {
  228. $record = $details['record'];
  229. $field_name = $field['field_name'];
  230. $field_type = $field['type'];
  231. $field_table = $field['settings']['chado_table'];
  232. $field_column = $field['settings']['chado_column'];
  233. // Get the FK that links to the base record.
  234. $schema = chado_get_schema($field_table);
  235. $pkey = $schema['primary key'][0];
  236. $fkey_lcolumn = key($schema['foreign keys'][$base_table]['columns']);
  237. $fkey_rcolumn = $schema['foreign keys'][$base_table]['columns'][$fkey_lcolumn];
  238. // Set some defaults for the empty record.
  239. $entity->{$field_name}['und'][0] = array(
  240. 'value' => array(),
  241. $field_table . '__' . $pkey => '',
  242. $field_table . '__' . $fkey_lcolumn => '',
  243. $field_table . '__' . 'pub_id' => '',
  244. $field_table . '--' . 'pub__uniquename' => '',
  245. );
  246. $linker_table = $base_table . '_pub';
  247. $options = array(
  248. 'return_array' => 1,
  249. );
  250. $record = chado_expand_var($record, 'table', $linker_table, $options);
  251. if (count($record->$linker_table) > 0) {
  252. $i = 0;
  253. foreach ($record->$linker_table as $index => $linker) {
  254. $pub = $linker->pub_id;
  255. $pub_details = tripal_get_minimal_pub_info($pub);
  256. $pub_details['@type'] = $pub->type_id->dbxref_id->db_id->name . ':' . $pub->type_id->dbxref_id->accession;
  257. $pub_details['publication']['type'] = $pub->type_id->name;
  258. $entity->{$field_name}['und'][$i]['value'] = $pub_details;
  259. $entity->{$field_name}['und'][$i][$field_table . '__' . $pkey] = $linker->$pkey;
  260. $entity->{$field_name}['und'][$i][$field_table . '__' . $fkey_lcolumn] = $linker->$fkey_lcolumn->$fkey_lcolumn;
  261. $entity->{$field_name}['und'][$i][$field_table . '__' . 'pub_id'] = $pub->pub_id;
  262. $entity->{$field_name}['und'][$i][$field_table . '--' . 'pub__uniquename'] = $pub->uniquename;
  263. if (property_exists($pub, 'entity_id')) {
  264. $entity->{$field_name}['und'][$i]['entity_id'] = $pub->entity_id;
  265. $entity->{$field_name}['und'][$i]['entity_type'] = 'TripalEntity';
  266. }
  267. $i++;
  268. }
  269. }
  270. }
  271. }
  272. /**
  273. * Callback function for validating the chado_linker__pub_widget.
  274. */
  275. function chado_linker__pub_widget_validate($element, &$form_state) {
  276. $field_name = $element['#field_name'];
  277. $delta = $element['#delta'];
  278. $table_name = $element['#table_name'];
  279. $fkey = $element['#fkey_field'];
  280. // If the form ID is field_ui_field_edit_form, then the user is editing the
  281. // field's values in the manage fields form of Drupal. We don't want
  282. // to validate it as if it were being used in a data entry form.
  283. if ($form_state['build_info']['form_id'] =='field_ui_field_edit_form') {
  284. return;
  285. }
  286. // Get the field values.
  287. $fkey_value = tripal_chado_get_field_form_values($table_name, $form_state, $delta, $table_name . '__' . $fkey);
  288. $pub_id = tripal_chado_get_field_form_values($table_name, $form_state, $delta, $table_name . '__pub_id');
  289. $uname = tripal_chado_get_field_form_values($table_name, $form_state, $delta, $table_name . '--pub__uniquename');
  290. // If the user provided a uniquename then we want to set the
  291. // foreign key value to be the chado_record_idd
  292. if ($uname) {
  293. // Get the pub. If one with the same name and type is already present
  294. // then use that. Otherwise, insert a new one.
  295. if (!$pub_id) {
  296. $pub = chado_generate_var('pub', array('uniquename' => $uname));
  297. // Set the pub_id and FK value
  298. tripal_chado_set_field_form_values($field_name, $form_state, $pub->pub_id, $delta, $table_name . '__pub_id');
  299. $fkey_value = $element['#entity']->chado_record_id;
  300. tripal_chado_set_field_form_values($field_name, $form_state, $fkey_value, $delta, $table_name . '__' . $fkey);
  301. }
  302. }
  303. else {
  304. // If the $syn_name is not set, then remove the linker FK value to the base table.
  305. tripal_chado_set_field_form_values($field_name, $form_state, '', $delta, $table_name . '__' . $fkey);
  306. tripal_chado_set_field_form_values($field_name, $form_state, '', $delta, $table_name . '__pub_id');
  307. }
  308. }
  309. /**
  310. * An Ajax callback for the pub widget.
  311. */
  312. function chado_linker__pub_widget_form_ajax_callback($form, $form_state) {
  313. $field_name = $form_state['triggering_element']['#parents'][0];
  314. $delta = $form_state['triggering_element']['#parents'][2];
  315. return $form[$field_name]['und'][$delta];
  316. }
  317. /**
  318. * Theme function for the pub widget.
  319. *
  320. * @param $variables
  321. */
  322. function theme_chado_linker__pub_widget($variables) {
  323. $element = $variables['element'];
  324. // These two fields were added to the widget to help identify the fields
  325. // for layout.
  326. $table_name = $element['#table_name'];
  327. $fkey = $element['#fkey_field'];
  328. $layout = "
  329. <div class=\"pub-widget\">
  330. <div class=\"pub-widget-item\">" .
  331. drupal_render($element[$table_name . '--pub__uniquename']) . "
  332. </div>
  333. </div>
  334. ";
  335. return $layout;
  336. }