tripal_core.chado_nodes.relationships.api.inc 42 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010
  1. <?php
  2. /**
  3. * @file
  4. * API to manage the chado _relationship table for various Tripal Node Types
  5. *
  6. * How To Use:
  7. * @code
  8. function chado_example_form($form, &$form_state) {
  9. // Default values for form elements can come in the following ways:
  10. //
  11. // 1) as elements of the $node object. This occurs when editing an existing node
  12. // 2) in the $form_state['values'] array which occurs on a failed validation or
  13. // ajax callbacks when the ajax call originates from non-submit fields other
  14. // than button
  15. // 3) in the $form_state['input'] array which occurs on ajax callbacks from submit
  16. // form elements (e.g. buttons) and the form is being rebuilt but has not yet
  17. // been validated
  18. //
  19. // The reference elements added by this function do use AJAX calls from buttons,
  20. // therefore, it is important to check for form values in the $form_state['values']
  21. // for case #2 above, and in the $form_state['input'] for case #3.
  22. // See the chado analysis node form for an example.
  23. // Next, add in all the form array definition particular to your node type
  24. // To add in the relationship form elements, you first need to prepare the arguments
  25. // for the function call.
  26. $details = array(
  27. 'relationship_table' => 'example_relationship', // the name of the table linking additional dbxrefs to this node
  28. 'base_table' => 'example', // the name of the chado table this node links to
  29. 'base_foreign_key' => 'example_id', // key to link to the chado content created by this node
  30. 'base_key_value' => $example_id, // the value of the above key
  31. 'fieldset_title' => 'Relationships', // the non-translated title for this fieldset
  32. 'additional_instructions' => '' // a non-stranslated string providing additional instructions
  33. );
  34. // Finally, and add the additional form elements to the form
  35. chado_add_node_form_relationships($form, $form_state, $details);
  36. return $form;
  37. }
  38. function chado_example_insert($node) {
  39. // if there is an example_id in the $node object then this must be a sync so
  40. // we can skip adding the chado_example as it is already there, although
  41. // we do need to proceed with the rest of the insert
  42. if (!property_exists($node, 'example_id')) {
  43. // Add record to chado example table
  44. // Add to any other tables needed
  45. // Add all relationships
  46. // Existing _relationship links with the current example as either the subject_id
  47. // or object_id will be cleared and then re-added
  48. chado_update_node_form_relationships(
  49. $node,
  50. 'example_relationship',
  51. $node->example_id
  52. );
  53. }
  54. // Add record to chado_example linking example_id to new node
  55. }
  56. function chado_example_update($node) {
  57. // Update record in chado example table
  58. // Update any other tables needed
  59. // Update all additional database references
  60. // Existing _relationship links with the current example as either the subject_id
  61. // or object_id will be cleared and then re-added
  62. chado_update_node_form_relationships(
  63. $node,
  64. 'example_relationship',
  65. $node->example_id
  66. );
  67. // Don't need to update chado_example linking table since niether example_id or nid can be changed in update
  68. }
  69. * @endcode
  70. *
  71. * @ingroup tripal_chado_node_api
  72. */
  73. /**
  74. * Provides a form for adding to BASE_relationship and relationship tables
  75. *
  76. * @param $form
  77. * The Drupal form array into which the relationship elements will be added
  78. * @param $form_state
  79. * The corresponding form_state array for the form
  80. * @param $details
  81. * An array defining details needed by this form. Required Keys are:
  82. * - relationship_table: the name of the relationship table (ie: feature_relationship)
  83. * - base_table: the name of the base table (ie: feature)
  84. * - base_foreign_key: the name of the foreign key in the relationship table field linking this table to the non-relationship table (ie: feature_id)
  85. * - base_key_value: the value of the base_foreign_key for the current form (ie: 999 if the feature_id=999)
  86. * - nodetype: the non-translated singular title of this node type
  87. * One of the following:
  88. * - cv_id: the id of the ontology to supply terms for the type dropdown
  89. * - cv_name: the name of the ontology to supply terms for the type dropdown
  90. * Optional keys include:
  91. * - fieldset_title: the non-translated title for this fieldset
  92. * - additional_instructions: a non-translated string providing additional instructions
  93. * - nodetype_plural: the non-translated plural title of this node type
  94. * - select_options: must be an array where the [key] is a valid cvterm_id and
  95. * the [value] is the human-readable name of the option. This is generated from the cv_name/id by default
  96. * - base_name_field: the field in your base table you want to be used as the name of the record
  97. * - subject_field_name: the name of the subject field in your relationship table (default: subject_id)
  98. * - object_field_name: the name of the object field in your relationship table (default: object_id)
  99. *
  100. * @ingroup tripal_chado_node_api
  101. */
  102. function chado_add_node_form_relationships(&$form, &$form_state, $details) {
  103. // make sure the relationship table exists before proceeding.
  104. if (!chado_table_exists($details['relationship_table'])) {
  105. drupal_set_message("Cannot add relationship elements to the form. The relationship table, '" .
  106. $details['relationship_table'] . "', does not exists", "error");
  107. tripal_report_error('tcrel_form', TRIPAL_ERROR, "Cannot add relationship elements to the form.
  108. The relationship table, '%name', cannot be found.", array('%name' => $details['relationship_table']));
  109. return;
  110. }
  111. // make sure the specified cv exists
  112. if (isset($details['cv_name'])) {
  113. // make sure the cv_name is real
  114. $result = chado_select_record('cv',array('cv_id'),array('name' => $details['cv_name']));
  115. if (count($result) == 0) {
  116. drupal_set_message("Cannot add relationship elements to the form. The CV name, '" .
  117. $details['cv_name'] . "', does not exists", "error");
  118. tripal_report_error('tcrel_form', TRIPAL_ERROR, "Cannot add relationship elements to the form.
  119. The CV named, '%name', cannot be found.", array('%name' => $details['cv_name']));
  120. return;
  121. }
  122. // add the cv_id option to the details array
  123. $details['cv_id'] = $result[0]->cv_id;
  124. }
  125. elseif (isset($details['cv_id'])) {
  126. // make sure the cv_id is real
  127. $result = chado_select_record('cv', array('name'), array('cv_id' => $details['cv_id']));
  128. if (count($result) == 0) {
  129. drupal_set_message("Cannot add relationship elements to the form. The CV ID, '" .
  130. $details['cv_id'] . "', does not exist", "error");
  131. tripal_report_error('tcrel_form', TRIPAL_ERROR, "Cannot add relationship elements
  132. to the form. The CV ID, '%id', cannot be found.", array('%id' => $details['cv_id']));
  133. return;
  134. }
  135. // add the cv_name option to the details array
  136. $details['cv_name'] = $result[0]->name;
  137. }
  138. else {
  139. // If we didn't get given a cv identifier, then try retrieving the default one
  140. // using the new cv defaults api
  141. $default_cv = tripal_get_default_cv($details['relationship_table'], 'type_id');
  142. if (!empty($default_cv)) {
  143. $details['cv_id'] = $default_cv->cv_id;
  144. $details['cv_name'] = $default_cv->name;
  145. }
  146. else {
  147. $default_form_link = l('vocabulary defaults configuration page',
  148. 'admin/tripal/chado/tripal_cv/defaults',
  149. array('attributes' => array('target' => '_blank')));
  150. $table = ucwords(str_replace('_',' ',$details['base_table']));
  151. $message = "There is not a default vocabulary set for $table Releationship Types. Please set one using the $default_form_link.";
  152. tripal_set_message($message, TRIPAL_WARNING);
  153. tripal_report_error('tcrel_form', TRIPAL_ERROR, "Please provide either a
  154. 'cv_name' or 'cv_id' as an option for adding relationship to the form", array());
  155. return;
  156. }
  157. }
  158. // Set Defaults for optional fields
  159. $details['fieldset_title'] = (isset($details['fieldset_title'])) ? $details['fieldset_title'] : 'Relationships';
  160. $details['additional_instructions'] = (isset($details['additional_instructions'])) ? $details['additional_instructions'] : '';
  161. $details['nodetype_plural'] = (isset($details['nodetype_plural'])) ? $details['nodetype_plural'] : $details['nodetype'] . 's';
  162. $details['base_name_field'] = (isset($details['base_name_field'])) ? $details['base_name_field'] : 'uniquename';
  163. $details['subject_field_name'] = (isset($details['subject_field_name'])) ? $details['subject_field_name'] : 'subject_id';
  164. $details['object_field_name'] = (isset($details['object_field_name'])) ? $details['object_field_name'] : 'object_id';
  165. $details['form_element_name'] = (isset($details['form_element_name'])) ? $details['form_element_name'] : $details['base_name_field'];
  166. // Some relationship tables don't have a rank
  167. // thus we need to first check this table has a rank before trying to set it
  168. $table_schema = chado_get_schema($details['relationship_table']);
  169. $details['table_has_rank'] = (isset($table_schema['fields']['rank'])) ? TRUE : FALSE;
  170. // Get Relationship Types for the Select List
  171. if (isset($details['select_options'])) {
  172. $type_options = $details['select_options'];
  173. }
  174. else {
  175. if (isset($details['cv_name'])) {
  176. $type_options = array();
  177. $type_options[] = 'Select a Type';
  178. $sql = "
  179. SELECT DISTINCT CVT.cvterm_id, CVT.name, CVT.definition, CV.cv_id as cv_id
  180. FROM {cvterm} CVT
  181. INNER JOIN {cv} CV ON CVT.cv_id = CV.cv_id
  182. WHERE
  183. CV.name = :cv_name AND
  184. NOT CVT.is_obsolete = 1
  185. ORDER BY CVT.name ASC
  186. ";
  187. $cvterms = chado_query($sql, array(':cv_name' => $details['cv_name']));
  188. while ($term = $cvterms->fetchObject()) {
  189. $type_options[$term->cvterm_id] = $term->name;
  190. $details['cv_id'] = $term->cv_id;
  191. }
  192. }
  193. elseif (isset($details['cv_id'])) {
  194. $type_options = array();
  195. $type_options[] = 'Select a Type';
  196. $sql = "
  197. SELECT DISTINCT CVT.cvterm_id, CVT.name, CVT.definition, CV.name AS cv_name
  198. FROM {cvterm} CVT
  199. INNER JOIN {cv} CV ON CVT.cv_id = CV.cv_id
  200. WHERE
  201. CV.cv_id = :cv_id AND
  202. NOT CVT.is_obsolete = 1
  203. ORDER BY CVT.name ASC
  204. ";
  205. $cvterms = chado_query($sql, array(':cv_id' => $details['cv_id']));
  206. while ($term = $cvterms->fetchObject()) {
  207. $type_options[$term->cvterm_id] = $term->name;
  208. $details['cv_name'] = $term->cv_name;
  209. }
  210. }
  211. }
  212. // Tell tripal administrators how to add terms to the relationship types drop down.
  213. if (empty($type_options)) {
  214. $tripal_message = tripal_set_message(
  215. t('There are currently no relationship types! To add additional relationship types to the drop
  216. down list, you need to <a href="@cvtermlink">add a controlled vocabulary term</a>
  217. to the %cv_name controlled vocabulary.',
  218. array(
  219. '%cv_name' => $details['cv_name'],
  220. '@cvtermlink' => url('admin/tripal/chado/tripal_cv/cv/'.$details['cv_id'].'/cvterm/add')
  221. )
  222. ),
  223. TRIPAL_WARNING,
  224. array('return_html' => TRUE)
  225. );
  226. }
  227. else {
  228. $tripal_message = tripal_set_message(
  229. t('To add additional relationship types to the drop down list, you need to <a href="@cvtermlink">add
  230. a controlled vocabulary term</a> to the %cv_name controlled vocabulary.',
  231. array(
  232. '%cv_name' => $details['cv_name'],
  233. '@cvtermlink' => url('admin/tripal/chado/tripal_cv/cv/' . $details['cv_id'] . '/cvterm/add')
  234. )
  235. ),
  236. TRIPAL_INFO,
  237. array('return_html' => TRUE)
  238. );
  239. }
  240. $form['relationships'] = array(
  241. '#type' => 'fieldset',
  242. '#title' => t($details['fieldset_title']),
  243. '#prefix' => "<div id='relationships-fieldset'>",
  244. '#suffix' => '</div>',
  245. '#weight' => 10
  246. );
  247. $form['relationships']['descrip'] = array(
  248. '#type' => 'item',
  249. '#markup' => t('You may add relationships between this %nodetype and other
  250. %nodetype_plural by entering the details below. You may add
  251. as many relationships as desired by clicking the add button on the right. To
  252. remove a relationship, click the remove button. ' . $details['additional_instructions'],
  253. array('%nodetype' => $details['nodetype'], '%nodetype_plural' => $details['nodetype_plural'])),
  254. );
  255. $form['relationships']['admin_message'] = array(
  256. '#type' => 'markup',
  257. '#markup' => $tripal_message
  258. );
  259. // this form element is a tree, so that we don't puke all of the values into then node variable
  260. // it is set as a tree, and keeps them in the $form_state['values']['relationship_table'] heading.
  261. $form['relationships']['relationship_table'] = array(
  262. '#type' => 'markup',
  263. '#tree' => TRUE,
  264. '#prefix' => '<div id="tripal-generic-edit-relationships-table">',
  265. '#suffix' => '</div>',
  266. '#theme' => 'chado_node_relationships_form_table'
  267. );
  268. // Add defaults into form_state to be used elsewhere
  269. $form['relationships']['relationship_table']['details'] = array(
  270. '#type' => 'hidden',
  271. '#value' => serialize($details)
  272. );
  273. // Add relationships already attached to the node
  274. //---------------------------------------------
  275. /* Relationships can come to us in two ways:
  276. *
  277. * 1) In the form state in the $form_state['chado_relationships']. Data is in this field
  278. * when an AJAX call updates the form state or a validation error.
  279. *
  280. * 2) Directly from the database if the record already has _relationships associated. This
  281. * data is only used the first time the form is loaded. On AJAX calls or validation
  282. * errors the fields on the form are populated from the $form_state['chado_relationships']
  283. * entry.
  284. */
  285. if (isset($form_state['chado_relationships'])) {
  286. $existing_rels = $form_state['chado_relationships'];
  287. }
  288. else {
  289. $existing_rels = chado_query(
  290. "SELECT
  291. rel.*,
  292. rel.".$details['subject_field_name']." as subject_id,
  293. rel.".$details['object_field_name']." as object_id,
  294. base1.".$details['base_name_field']." as object_name,
  295. base2.".$details['base_name_field']." as subject_name,
  296. cvterm.name as type_name
  297. FROM {".$details['relationship_table']."} rel
  298. LEFT JOIN {".$details['base_table']."} base1 ON base1.".$details['base_foreign_key']." = rel.".$details['object_field_name']."
  299. LEFT JOIN {".$details['base_table']."} base2 ON base2.".$details['base_foreign_key']." = rel.".$details['subject_field_name']."
  300. LEFT JOIN {cvterm} cvterm ON cvterm.cvterm_id = rel.type_id
  301. WHERE rel.".$details['object_field_name']." = :base_key_value
  302. OR rel.".$details['subject_field_name']." = :base_key_value",
  303. array(':base_key_value' => $details['base_key_value'])
  304. );
  305. }
  306. /* The format of the $existing_rels' array is either:
  307. *
  308. * From the chado_relationships array:
  309. * $form_state['chado_relationships'] = array(
  310. * '[type_id]-[rank]' => array(
  311. * 'object_id' => [the _relationship.object_id value],
  312. * 'object_name' => [the base_table.uniquename value linked on base_foreign_key=object_id],
  313. * 'subject_id' => [the _relationship.subject_id value],
  314. * 'subject_name' => [the base_table.uniquename value linked on base_foreign_key=subject_id],
  315. * 'type_id' => [the _relationship.type_id value],
  316. * 'type_name' => [the cvterm.name value linked on type_id],
  317. * 'rank' => [the _relationship.rank value],
  318. * ),
  319. * );
  320. *
  321. * OR
  322. * Populated from the database:
  323. * $existing_rels = array(
  324. * 0 => array(
  325. * 'relationship_id' => [the _relationship.relationship_id value],
  326. * 'object_id' => [the _relationship.object_id value],
  327. * 'object_name' => [the base_table.uniquename value linked on base_foreign_key=object_id],
  328. * 'subject_id' => [the _relationship.subject_id value],
  329. * 'subject_name' => [the base_table.uniquename value linked on base_foreign_key=subject_id],
  330. * 'type_id' => [the _relationship.type_id value],
  331. * 'type_name' => [the cvterm.name value linked on type_id],
  332. * 'rank' => [the _relationship.rank value],
  333. * ),
  334. * );
  335. *
  336. * NOTE: The main difference is the key
  337. *
  338. * Loop on the array elements of the $existing_rels array and add
  339. * an element to the form for each one.
  340. */
  341. foreach ($existing_rels as $relationship) {
  342. if (array_key_exists($relationship->type_id, $type_options)) {
  343. // We're using a unique id as a rank placeholder to ensure all relationships are shown
  344. // We can't use the actual rank b/c there can be two relationships with the same type
  345. // and rank as long as the subject_id and object_id are switched. For example, you can
  346. // have Fred is_paternal_parent_of Max and Max is_paternal_parent_of Lui (both rank=0)
  347. $rank = uniqid();
  348. $form['relationships']['relationship_table'][$relationship->type_id]['#type'] = 'markup';
  349. $form['relationships']['relationship_table'][$relationship->type_id]['#type'] = '';
  350. $form['relationships']['relationship_table'][$relationship->type_id][$rank]['#type'] = 'markup';
  351. $form['relationships']['relationship_table'][$relationship->type_id][$rank]['#value'] = '';
  352. $form['relationships']['relationship_table'][$relationship->type_id][$rank]['object_id'] = array(
  353. '#type' => 'hidden',
  354. '#value' => $relationship->object_id
  355. );
  356. $form['relationships']['relationship_table'][$relationship->type_id][$rank]['subject_id'] = array(
  357. '#type' => 'hidden',
  358. '#value' => $relationship->subject_id
  359. );
  360. $form['relationships']['relationship_table'][$relationship->type_id][$rank]['type_id'] = array(
  361. '#type' => 'hidden',
  362. '#value' => $relationship->type_id
  363. );
  364. $form['relationships']['relationship_table'][$relationship->type_id][$rank]['object_name'] = array(
  365. '#type' => 'markup',
  366. '#markup' => $relationship->object_name
  367. );
  368. $form['relationships']['relationship_table'][$relationship->type_id][$rank]['type_name'] = array(
  369. '#type' => 'markup',
  370. '#markup' => $relationship->type_name
  371. );
  372. $form['relationships']['relationship_table'][$relationship->type_id][$rank]['subject_name'] = array(
  373. '#type' => 'markup',
  374. '#markup' => $relationship->subject_name
  375. );
  376. $form['relationships']['relationship_table'][$relationship->type_id][$rank]['rank'] = array(
  377. '#type' => 'markup',
  378. '#markup' => $rank
  379. );
  380. $form['relationships']['relationship_table'][$relationship->type_id][$rank]['rel_action'] = array(
  381. '#type' => 'submit',
  382. '#value' => t('Remove'),
  383. '#name' => "rel_remove-".$relationship->type_id.'-'.$rank,
  384. '#ajax' => array(
  385. 'callback' => 'chado_add_node_form_relationships_ajax_update',
  386. 'wrapper' => 'tripal-generic-edit-relationships-table',
  387. 'effect' => 'fade',
  388. 'method' => 'replace',
  389. 'prevent' => 'click'
  390. ),
  391. // When this button is clicked, the form will be validated and submitted.
  392. // Therefore, we set custom submit and validate functions to override the
  393. // default node form submit. In the validate function we validate only the
  394. // relationship fields and in the submit we remove the indicated relationship
  395. // from the chado_relationships array. In order to keep validate errors
  396. // from the node form validate and Drupal required errors for non-relationship fields
  397. // preventing the user from removing relationships we set the #limit_validation_errors below
  398. '#validate' => array('chado_add_node_form_relationships_form_remove_button_validate'),
  399. '#submit' => array('chado_add_node_form_relationships_remove_button_submit'),
  400. // Limit the validation of the form upon clicking this button to the relationship_table tree
  401. // No other fields will be validated (ie: no fields from the main form or any other api
  402. // added form).
  403. '#limit_validation_errors' => array(
  404. array('relationship_table') // Validate all fields within $form_state['values']['relationship_table']
  405. )
  406. );
  407. }
  408. }
  409. $form['relationships']['relationship_table']['new']['object_name'] = array(
  410. '#type' => 'textfield',
  411. '#autocomplete_path' => 'tripal_ajax/relationship_nodeform/' . $details['base_table'] . '/' . $details['base_name_field'].'/name_to_id'
  412. );
  413. $form['relationships']['relationship_table']['new']['object_is_current'] = array(
  414. '#type' => 'checkbox',
  415. '#title' => t('Current '.$details['nodetype']),
  416. );
  417. $form['relationships']['relationship_table']['new']['type_name'] = array(
  418. '#type' => 'select',
  419. '#options' => $type_options,
  420. );
  421. $form['relationships']['relationship_table']['new']['subject_name'] = array(
  422. '#type' => 'textfield',
  423. '#autocomplete_path' => 'tripal_ajax/relationship_nodeform/' . $details['base_table'] . '/' . $details['base_name_field'].'/name_to_id'
  424. );
  425. $form['relationships']['relationship_table']['new']['subject_is_current'] = array(
  426. '#type' => 'checkbox',
  427. '#title' => t('Current ' . $details['nodetype']),
  428. );
  429. $form['relationships']['relationship_table']['new']['rank'] = array(
  430. '#type' => 'markup',
  431. '#markup' => ''
  432. );
  433. $form['relationships']['relationship_table']['new']['rel_action'] = array(
  434. '#type' => 'submit',
  435. '#value' => t('Add'),
  436. '#name' => 'rel-add',
  437. '#ajax' => array(
  438. 'callback' => 'chado_add_node_form_relationships_ajax_update',
  439. 'wrapper' => 'tripal-generic-edit-relationships-table',
  440. 'effect' => 'fade',
  441. 'method' => 'replace',
  442. ),
  443. // When this button is clicked, the form will be validated and submitted.
  444. // Therefore, we set custom submit and validate functions to override the
  445. // default node form submit. In the validate function we validate only the
  446. // relationship fields and in the submit we add them to the chado_relationships
  447. // array. In order to keep validate errors from the node form validate and Drupal
  448. // required errors for non-relationship fields preventing the user from adding relationships we
  449. // set the #limit_validation_errors below
  450. '#validate' => array('chado_add_node_form_relationships_add_button_validate'),
  451. '#submit' => array('chado_add_node_form_relationships_add_button_submit'),
  452. // Limit the validation of the form upon clicking this button to the relationship_table tree
  453. // No other fields will be validated (ie: no fields from the main form or any other api
  454. // added form).
  455. '#limit_validation_errors' => array(
  456. array('relationship_table') // Ensure relationship table results are not discarded.
  457. )
  458. );
  459. }
  460. /**
  461. * Validate the user input for creating a new relationship.
  462. * Called by the add button in chado_add_node_form_relationships.
  463. *
  464. * @ingroup tripal_core
  465. */
  466. function chado_add_node_form_relationships_add_button_validate($form, &$form_state) {
  467. $details = unserialize($form_state['values']['relationship_table']['details']);
  468. // First deal with autocomplete fields.
  469. // Extract the base_id assuming '(###) NAME FIELD'.
  470. if (!empty($form_state['values']['relationship_table']['new']['subject_name'])) {
  471. if (preg_match('/\((\d+)\) .*/', $form_state['values']['relationship_table']['new']['subject_name'], $matches)) {
  472. $form_state['values']['relationship_table']['new']['subject_id'] = $matches[1];
  473. }
  474. else {
  475. form_set_error('relationship_table][new][subject_name', 'You need to select the subject from the autocomplete drop-down');
  476. }
  477. }
  478. if (!empty($form_state['values']['relationship_table']['new']['object_name'])) {
  479. if (preg_match('/\((\d+)\) .*/', $form_state['values']['relationship_table']['new']['object_name'], $matches)) {
  480. $form_state['values']['relationship_table']['new']['object_id'] = $matches[1];
  481. }
  482. else {
  483. form_set_error('relationship_table][new][object_name', 'You need to select the object from the autocomplete drop-down');
  484. }
  485. }
  486. // NOTE: The only way to specify the current node is via checkbox. This is by
  487. // design since guessing if they meant the current node by name is a
  488. // chicken-egg problem due to the name field only being set to just the name
  489. // only happens once it has been determined which germplasm is the current
  490. // one. Furthermore, we can't use the primary key since this will not have
  491. // been set on insert.
  492. // At least one of the participants must be the current node.
  493. if (!($form_state['values']['relationship_table']['new']['subject_is_current'] OR $form_state['values']['relationship_table']['new']['object_is_current'])) {
  494. form_set_error('relationship_table][new][object_is_current', 'At least one member of the relationship must be
  495. the current '.$details['nodetype'].'. This is specified by checking the "Current '.$details['nodetype'].'"
  496. checkbox for either the subject or object.');
  497. }
  498. // Only one of the participants may be the current node.
  499. // We do not support circular relationships.
  500. if ($form_state['values']['relationship_table']['new']['subject_is_current']
  501. AND $form_state['values']['relationship_table']['new']['object_is_current']) {
  502. form_set_error('relationship_table][new][object_is_current', 'Only one member of the relationship may be
  503. the current '.$details['nodetype'].'. This is specified by checking the "Current '.$details['nodetype'].'"
  504. checkbox for either the subject or object.');
  505. }
  506. // If it was determined current via checkbox, we need to ensure the name
  507. // provided actually matches the current node.
  508. if ($form_state['values']['relationship_table']['new']['subject_is_current']
  509. AND !empty($form_state['values']['relationship_table']['new']['subject_name'])
  510. AND $form_state['values']['relationship_table']['new']['subject_name'] != $form_state['values'][$details['form_element_name']]) {
  511. form_set_error('relationship_table][new][subject_name',
  512. 'The name you supplied for the current '.$details['nodetype'].' doesn\'t match the actual name
  513. of this '.$details['nodetype'].'. If you really meant the subject should be the current '.$details['nodetype'].',
  514. simply leave the textfield empty and re-add this relationship.');
  515. }
  516. if ($form_state['values']['relationship_table']['new']['object_is_current']
  517. AND !empty($form_state['values']['relationship_table']['new']['object_name'])
  518. AND $form_state['values']['relationship_table']['new']['object_name'] != $form_state['values'][$details['form_element_name']]) {
  519. form_set_error('relationship_table][new][object_name',
  520. 'The name you supplied for the current '.$details['nodetype'].' doesn\'t match the actual name
  521. of this '.$details['nodetype'].'. If you really meant the object should be the current '.$details['nodetype'].',
  522. simply leave the textfield empty and re-add this relationship.');
  523. }
  524. // The non-current uniquename must be exist in the base table (subject).
  525. if (!($form_state['values']['relationship_table']['new']['subject_is_current'])) {
  526. $result = chado_select_record(
  527. $details['base_table'],
  528. array($details['base_name_field']),
  529. array($details['base_foreign_key'] => $form_state['values']['relationship_table']['new']['subject_id'])
  530. );
  531. if (!isset($result[0])) {
  532. form_set_error('relationship_table][new][subject_name', 'The subject must be the unique name of an
  533. existing '.$details['nodetype'].' unless the "Current '.$details['nodetype'].'" checkbox is selected');
  534. }
  535. else {
  536. $form_state['values']['relationship_table']['new']['subject_name'] = $result[0]->{$details['base_name_field']};
  537. }
  538. }
  539. // The non-current uniquename must exist in the base table (object).
  540. if (!($form_state['values']['relationship_table']['new']['object_is_current'])) {
  541. $result = chado_select_record(
  542. $details['base_table'],
  543. array($details['base_name_field']),
  544. array($details['base_foreign_key'] => $form_state['values']['relationship_table']['new']['object_id'])
  545. );
  546. if (!isset($result[0])) {
  547. form_set_error('relationship_table][new][object_name', 'The object must be the unique name of an
  548. existing '.$details['nodetype'].' unless the "Current '.$details['nodetype'].'" checkbox is selected');
  549. }
  550. else {
  551. $form_state['values']['relationship_table']['new']['object_name'] = $result[0]->{$details['base_name_field']};
  552. }
  553. }
  554. // The type must be a valid cvterm.
  555. if ($form_state['values']['relationship_table']['new']['type_name']) {
  556. $form_state['values']['relationship_table']['new']['type_id'] = $form_state['values']['relationship_table']['new']['type_name'];
  557. $result = chado_select_record(
  558. 'cvterm',
  559. array('name'),
  560. array('cvterm_id' => $form_state['values']['relationship_table']['new']['type_id'])
  561. );
  562. if (!isset($result[0])) {
  563. form_set_error('relationship_table][new][type_id', 'The select type is not a valid controlled vocabulary term.');
  564. }
  565. else {
  566. $form_state['values']['relationship_table']['new']['type_name'] = $result[0]->name;
  567. }
  568. }
  569. else {
  570. form_set_error('relationship_table][new][type_id', 'Please select a type of relationship');
  571. }
  572. }
  573. /**
  574. * Called by the add button in chado_add_node_form_relationships
  575. *
  576. * Create an array of additional relationships in the form state. This array will then be
  577. * used to rebuild the form in subsequent builds
  578. *
  579. * @ingroup tripal_core
  580. */
  581. function chado_add_node_form_relationships_add_button_submit(&$form, &$form_state) {
  582. $details = unserialize($form_state['values']['relationship_table']['details']);
  583. // if the chado_relationships array is not set then this is the first time modifying the
  584. // relationship table. this means we need to include all the relationships from the db
  585. if (!isset($form_state['chado_relationships'])) {
  586. chado_add_node_form_relationships_create_relationship_formstate_array($form, $form_state);
  587. }
  588. $name = (isset($form_state['node']->{$details['base_table']}->uniquename)) ? $form_state['node']->{$details['base_table']}->uniquename : 'CURRENT';
  589. // get details for the new relationship
  590. if ($form_state['values']['relationship_table']['new']['subject_is_current']) {
  591. $relationship = array(
  592. 'type_id' => $form_state['values']['relationship_table']['new']['type_id'],
  593. 'type_name' => $form_state['values']['relationship_table']['new']['type_name'],
  594. 'object_id' => $form_state['values']['relationship_table']['new']['object_id'],
  595. 'object_name' => $form_state['values']['relationship_table']['new']['object_name'],
  596. 'subject_id' => $form_state['node']->{$details['base_table']}->{$details['base_foreign_key']},
  597. 'subject_name' => $name,
  598. 'rank' => uniqid(),
  599. );
  600. // we don't want the new element to pick up the values from the previous element so wipe them out
  601. unset($form_state['input']['relationship_table']['new']['object_id']);
  602. unset($form_state['input']['relationship_table']['new']['object_name']);
  603. }
  604. else {
  605. $relationship = array(
  606. 'type_id' => $form_state['values']['relationship_table']['new']['type_id'],
  607. 'type_name' => $form_state['values']['relationship_table']['new']['type_name'],
  608. 'object_id' => $form_state['node']->{$details['base_table']}->{$details['base_foreign_key']},
  609. 'object_name' => $name,
  610. 'subject_id' => $form_state['values']['relationship_table']['new']['subject_id'],
  611. 'subject_name' => $form_state['values']['relationship_table']['new']['subject_name'],
  612. 'rank' => uniqid(),
  613. );
  614. // we don't want the new element to pick up the values from the previous element so wipe them out
  615. unset($form_state['input']['relationship_table']['new']['subject_id']);
  616. unset($form_state['input']['relationship_table']['new']['subject_name']);
  617. }
  618. $key = $relationship['type_id'] . '-' . $relationship['rank'];
  619. $form_state['chado_relationships'][$key] = (object) $relationship;
  620. // we don't want the new element to pick up the values from the previous element so wipe them out
  621. unset($form_state['input']['relationship_table']['new']['type_id']);
  622. unset($form_state['input']['relationship_table']['new']['type_name']);
  623. // This is needed to ensure the form builder function is called to
  624. // rebuild the form on ajax requests.
  625. $form_state['rebuild'] = TRUE;
  626. }
  627. /**
  628. * There is no user input for the remove buttons so there is no need to validate
  629. * However, both a submit & validate need to be specified so this is just a placeholder
  630. *
  631. * Called by the many remove buttons in chado_add_node_form_relationships
  632. *
  633. * @ingroup tripal_core
  634. */
  635. function chado_add_node_form_relationships_form_remove_button_validate($form, $form_state) {
  636. // No Validation needed for remove
  637. }
  638. /**
  639. * Remove the correct relationship from the form
  640. * Called by the many remove buttons in chado_add_node_form_relationships
  641. *
  642. * @ingroup tripal_core
  643. */
  644. function chado_add_node_form_relationships_remove_button_submit(&$form, &$form_state) {
  645. // if the chado_relationships array is not set then this is the first time modifying the
  646. // relationship table. this means we need to include all the relationships from the db
  647. chado_add_node_form_relationships_create_relationship_formstate_array($form, $form_state);
  648. // remove the specified relationship from the form relationship table
  649. if(preg_match('/rel_remove-([^-]+-[^-]+)/',$form_state['triggering_element']['#name'],$match)) {
  650. $key = $match[1];
  651. if (array_key_exists($key, $form_state['chado_relationships'])) {
  652. unset($form_state['chado_relationships'][$key]);
  653. }
  654. }
  655. // This is needed to ensure the form builder function is called to
  656. // rebuild the form on ajax requests.
  657. $form_state['rebuild'] = TRUE;
  658. }
  659. /**
  660. * Ajax function which returns the section of the form to be re-rendered
  661. *
  662. * @ingroup tripal_core
  663. */
  664. function chado_add_node_form_relationships_ajax_update($form, $form_state) {
  665. return $form['relationships']['relationship_table'];
  666. }
  667. /**
  668. * Creates an array in form_state containing the existing relationships. This array is
  669. * then modified by the add/remove buttons and used as a source for rebuilding the form.
  670. *
  671. * $form_state['chado_relationships'] = array(
  672. * '[type_id]-[rank]' => array(
  673. * 'object_id' => [the _relationship.object_id value],
  674. * 'object_name' => [the base_table.uniquename value linked on base_foreign_key=object_id],
  675. * 'subject_id' => [the _relationship.subject_id value],
  676. * 'subject_name' => [the base_table.uniquename value linked on base_foreign_key=subject_id],
  677. * 'type_id' => [the _relationship.type_id value],
  678. * 'type_name' => [the cvterm.name value linked on type_id],
  679. * 'rank' => [the _relationship.rank value],
  680. * ),
  681. * );
  682. *
  683. * @ingroup tripal_core
  684. */
  685. function chado_add_node_form_relationships_create_relationship_formstate_array($form, &$form_state) {
  686. $form_state['chado_relationships'] = array();
  687. foreach (element_children($form['relationships']['relationship_table']) as $type_id) {
  688. if ($type_id != 'new') {
  689. foreach (element_children($form['relationships']['relationship_table'][$type_id]) as $rank) {
  690. $element = $form['relationships']['relationship_table'][$type_id][$rank];
  691. $rel = array(
  692. 'type_id' => $element['type_id']['#value'],
  693. 'object_id' => $element['object_id']['#value'],
  694. 'subject_id' => $element['subject_id']['#value'],
  695. 'type_name' => $element['type_name']['#markup'],
  696. 'object_name' => $element['object_name']['#markup'],
  697. 'subject_name' => $element['subject_name']['#markup'],
  698. 'rank' => $element['rank']['#markup']
  699. );
  700. $key = $rel['type_id'] . '-' . $rel['rank'];
  701. $form_state['chado_relationships'][$key] = (object) $rel;
  702. }
  703. }
  704. }
  705. }
  706. /**
  707. * Function to theme the add/remove relationships form into a table
  708. *
  709. * @ingroup tripal_chado_node_api
  710. */
  711. function theme_chado_add_node_form_relationships_table($variables) {
  712. $element = $variables['element'];
  713. $details = unserialize($element['details']['#value']);
  714. $header = array(
  715. 'subject_name' => t('Subject ' . $details['base_name_field']),
  716. 'type_name' => t('Type'),
  717. 'object_name' => t('Object ' . $details['base_name_field']),
  718. 'rel_action' => t('Action')
  719. );
  720. $rows = array();
  721. foreach (element_children($element) as $type_id) {
  722. if ($type_id == 'new') {
  723. $row = array();
  724. $row['data'] = array();
  725. foreach ($header as $fieldname => $title) {
  726. if ($fieldname == 'subject_name') {
  727. $row['data'][] = drupal_render($element[$type_id][$fieldname]) . drupal_render($element[$type_id]['subject_is_current']);
  728. }
  729. elseif ($fieldname == 'object_name') {
  730. $row['data'][] = drupal_render($element[$type_id][$fieldname]) . drupal_render($element[$type_id]['object_is_current']);
  731. }
  732. else {
  733. $row['data'][] = drupal_render($element[$type_id][$fieldname]);
  734. }
  735. }
  736. $rows[] = $row;
  737. }
  738. else {
  739. foreach (element_children($element[$type_id]) as $rank) {
  740. $row = array();
  741. $row['data'] = array();
  742. foreach ($header as $fieldname => $title) {
  743. $row['data'][] = drupal_render($element[$type_id][$rank][$fieldname]);
  744. }
  745. $rows[] = $row;
  746. }
  747. }
  748. }
  749. return theme('table', array(
  750. 'header' => $header,
  751. 'rows' => $rows,
  752. 'sticky' => FALSE
  753. ));
  754. }
  755. /**
  756. * This function is used in a hook_insert, hook_update for a node form
  757. * when the relationships form has been added to the form. It retrieves all of the relationships
  758. * and returns them in an array of the format:
  759. *
  760. * $relationships[<type_id>][<rank>] = array(
  761. * 'subject_id' => <subject_id>,
  762. * 'object_id' => <object_id>,
  763. * );
  764. *
  765. * This array can then be used for inserting or updating relationships manually
  766. *
  767. * @param $node
  768. *
  769. * @return
  770. * A relationship array
  771. *
  772. * @ingroup tripal_chado_node_api
  773. */
  774. function chado_retrieve_node_form_relationships($node) {
  775. $rels = array();
  776. if (isset($node->relationship_table)) {
  777. foreach ($node->relationship_table as $type_id => $elements) {
  778. if ($type_id != 'new' AND $type_id != 'details') {
  779. foreach ($elements as $rank => $relationships) {
  780. $rels[$type_id][$rank]['subject_id'] = $relationships['subject_id'];
  781. $rels[$type_id][$rank]['object_id'] = $relationships['object_id'];
  782. }
  783. }
  784. }
  785. }
  786. return $rels;
  787. }
  788. /**
  789. * This function is used in hook_insert or hook_update and handles inserting of
  790. * relationships between the current nodetype and other memebers of the same nodetype
  791. *
  792. * @param $node
  793. * The node passed into hook_insert & hook_update
  794. * @param $details
  795. * - relationship_table: the name of the _relationship linking table (ie: feature_relationship)
  796. * - foreignkey_value: the value of the foreign key (ie: 445, if there exists a feature where feature_id=445)
  797. * @param $retrieved_relationships
  798. * An array of relationships from chado_retrieve_node_form_relationships($node). This
  799. * can be used if you need special handling for some of the relationships.
  800. *
  801. * @ingroup tripal_chado_node_api
  802. */
  803. function chado_update_node_form_relationships($node, $details, $retrieved_relationships = FALSE) {
  804. $relationship_table = $details['relationship_table'];
  805. $current_id = $details['foreignkey_value'];
  806. if (isset($node->relationship_table) AND ($current_id > 0)) {
  807. // determine whether there is a rank in this relationship table
  808. $form_details = unserialize($node->relationship_table['details']);
  809. $has_rank = $form_details['table_has_rank'];
  810. // First remove existing relationships links
  811. chado_delete_record(
  812. $relationship_table,
  813. array($form_details['subject_field_name'] => $current_id)
  814. );
  815. chado_delete_record(
  816. $relationship_table,
  817. array($form_details['object_field_name'] => $current_id)
  818. );
  819. // Add back in relationships as needed
  820. if ($retrieved_relationships) {
  821. $relationships = $retrieved_relationships;
  822. }
  823. else {
  824. $relationships = chado_retrieve_node_form_relationships($node);
  825. }
  826. foreach ($relationships as $type_id => $ranks) {
  827. foreach ($ranks as $rank => $element) {
  828. $values = array(
  829. $form_details['subject_field_name'] => $element['subject_id'],
  830. 'type_id' => $type_id,
  831. $form_details['object_field_name'] => $element['object_id']
  832. );
  833. // Set the current id if not already
  834. // this is usually only necessary in an insert
  835. if (empty($values[$form_details['subject_field_name']])) {
  836. $values[$form_details['subject_field_name']] = $current_id;
  837. }
  838. if (empty($values[$form_details['object_field_name']])) {
  839. $values[$form_details['object_field_name']] = $current_id;
  840. }
  841. if ($has_rank) {
  842. // Ensure that the rank is Set & Current
  843. $rank_select = chado_get_table_max_rank(
  844. $relationship_table,
  845. array(
  846. $form_details['subject_field_name'] => $values['subject_id'],
  847. 'type_id' => $values['type_id'],
  848. $form_details['object_field_name'] => $values['object_id'],
  849. )
  850. );
  851. $values['rank'] = $rank_select + 1;
  852. }
  853. // add relationship
  854. $success_link = chado_insert_record(
  855. $relationship_table,
  856. $values
  857. );
  858. }
  859. }
  860. }
  861. }
  862. /**
  863. * Handles autocomplete for subject & object id
  864. *
  865. * @param $string
  866. * The part of the string already typed in the textfield
  867. *
  868. * @ingroup tripal_core
  869. */
  870. function chado_add_node_form_relationships_name_to_id_callback($base_table, $name_field, $string) {
  871. $matches = array();
  872. $base_key = $base_table.'_id';
  873. $query = db_select('chado.'.$base_table, 'b')
  874. ->fields('b', array($base_key, $name_field))
  875. ->condition($name_field, '%' . db_like($string) . '%', 'LIKE');
  876. $result = $query->execute();
  877. // save the query to matches
  878. foreach ($result as $row) {
  879. if (strlen($row->{$name_field}) > 50) {
  880. $key = '('.$row->{$base_key}.') ' . substr($row->{$name_field}, 0, 50) . '...';
  881. }
  882. else {
  883. $key = '('.$row->{$base_key}.') ' . $row->{$name_field};
  884. }
  885. $matches[$key] = check_plain($row->{$name_field});
  886. }
  887. // return for JS
  888. drupal_json_output($matches);
  889. }