chado_linker__pub.inc 11 KB

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