tripal_core.chado_nodes.relationships.api.inc 45 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054
  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. // Group all of the chado node api fieldsets into vertical tabs.
  241. $form['chado_node_api'] = array(
  242. '#type' => 'vertical_tabs',
  243. '#attached' => array(
  244. 'css' => array(
  245. 'chado-node-api' => drupal_get_path('module', 'tripal_core') . '/theme/css/chado_node_api.css',
  246. ),
  247. ),
  248. );
  249. $form['relationships'] = array(
  250. '#type' => 'fieldset',
  251. '#title' => t($details['fieldset_title']),
  252. '#collapsible' => TRUE,
  253. '#collapsed' => TRUE,
  254. '#group' => 'chado_node_api',
  255. '#weight' => 10,
  256. '#attributes' => array('class' => array('chado-node-api','relationships')),
  257. '#attached' => array(
  258. 'js' => array(
  259. 'chado-node-api-vertical-tabs' => drupal_get_path('module', 'tripal_core') . '/theme/js/chadoNodeApi_updateVerticalTabSummary.js',
  260. ),
  261. ),
  262. );
  263. $instructions = 'Relationships should be read like a sentence ([subject] [type]
  264. [object]) in order to determine their direction and thus their meaning. When
  265. adding a relationship, it is easiest to first select the type of relationship you would
  266. like to enter and then select whether the current %nodetype is the subject
  267. or object (based on which "sentence" makes sense). Finally enter the other
  268. %nodetype in the remaining text box (making sure to select from the
  269. autocomplete drop-down) before clicking "Add". To remove incorrect relationships, click the
  270. "Remove" button. Note: you cannot edit previously added relationships
  271. but instead need to remove and re-add them.';
  272. $form['relationships']['descrip'] = array(
  273. '#type' => 'item',
  274. '#markup' => t('<p><strong>Relate the current %nodetype with others that already exist.</strong></p><p>'. $instructions . $details['additional_instructions'] . '</p>', array('%nodetype' => $details['nodetype'])),
  275. );
  276. // this form element is a tree, so that we don't puke all of the values into then node variable
  277. // it is set as a tree, and keeps them in the $form_state['values']['relationship_table'] heading.
  278. $form['relationships']['relationship_table'] = array(
  279. '#type' => 'markup',
  280. '#tree' => TRUE,
  281. '#prefix' => '<div id="tripal-generic-edit-relationships-table">',
  282. '#suffix' => '</div>',
  283. '#theme' => 'chado_node_relationships_form_table'
  284. );
  285. // Add defaults into form_state to be used elsewhere
  286. $form['relationships']['relationship_table']['details'] = array(
  287. '#type' => 'hidden',
  288. '#value' => serialize($details)
  289. );
  290. // We need to provide feedback to the user that changes made
  291. // are not saved until the node is saved.
  292. $form['relationships']['relationship_table']['save_warning'] = array(
  293. '#type' => 'markup',
  294. '#prefix' => '<div id="relationship-save-warning" class="messages warning" style="display:none;">',
  295. '#suffix' => '</div>',
  296. '#markup' => '* The changes to these relationships will not be saved until the "Save" button at the bottom of this form is clicked. <span class="specific-changes"></span>',
  297. '#attached' => array(
  298. 'js' => array(
  299. 'chado-node-api-unsaved' => drupal_get_path('module', 'tripal_core') . '/theme/js/chadoNodeApi_unsavedNotify.js',
  300. ),
  301. ),
  302. );
  303. // Add relationships already attached to the node
  304. //---------------------------------------------
  305. /* Relationships can come to us in two ways:
  306. *
  307. * 1) In the form state in the $form_state['chado_relationships']. Data is in this field
  308. * when an AJAX call updates the form state or a validation error.
  309. *
  310. * 2) Directly from the database if the record already has _relationships associated. This
  311. * data is only used the first time the form is loaded. On AJAX calls or validation
  312. * errors the fields on the form are populated from the $form_state['chado_relationships']
  313. * entry.
  314. */
  315. if (isset($form_state['chado_relationships'])) {
  316. $existing_rels = $form_state['chado_relationships'];
  317. }
  318. else {
  319. $existing_rels = chado_query(
  320. "SELECT
  321. rel.*,
  322. rel.".$details['relationship_table']."_id as relationship_id,
  323. rel.".$details['subject_field_name']." as subject_id,
  324. rel.".$details['object_field_name']." as object_id,
  325. base1.".$details['base_name_field']." as object_name,
  326. base2.".$details['base_name_field']." as subject_name,
  327. cvterm.name as type_name
  328. FROM {".$details['relationship_table']."} rel
  329. LEFT JOIN {".$details['base_table']."} base1 ON base1.".$details['base_foreign_key']." = rel.".$details['object_field_name']."
  330. LEFT JOIN {".$details['base_table']."} base2 ON base2.".$details['base_foreign_key']." = rel.".$details['subject_field_name']."
  331. LEFT JOIN {cvterm} cvterm ON cvterm.cvterm_id = rel.type_id
  332. WHERE rel.".$details['object_field_name']." = :base_key_value
  333. OR rel.".$details['subject_field_name']." = :base_key_value",
  334. array(':base_key_value' => $details['base_key_value'])
  335. );
  336. }
  337. /* The format of the $existing_rels' array is either:
  338. *
  339. * From the chado_relationships array:
  340. * $form_state['chado_relationships'] = array(
  341. * '[type_id]-[_relationship_id]' => array(
  342. * 'relationship_id' => [the _relationship._relationship_id value OR a temporary value if not yet saved to the database],
  343. * 'object_id' => [the _relationship.object_id value],
  344. * 'object_name' => [the base_table.uniquename value linked on base_foreign_key=object_id],
  345. * 'subject_id' => [the _relationship.subject_id value],
  346. * 'subject_name' => [the base_table.uniquename value linked on base_foreign_key=subject_id],
  347. * 'type_id' => [the _relationship.type_id value],
  348. * 'type_name' => [the cvterm.name value linked on type_id],
  349. * 'rank' => [the _relationship.rank value OR NULL if not yet saved to the database],
  350. * ),
  351. * );
  352. *
  353. * OR
  354. * Populated from the database:
  355. * $existing_rels = array(
  356. * 0 => array(
  357. * 'relationship_id' => [the _relationship._relationship_id value],
  358. * 'object_id' => [the _relationship.object_id value],
  359. * 'object_name' => [the base_table.uniquename value linked on base_foreign_key=object_id],
  360. * 'subject_id' => [the _relationship.subject_id value],
  361. * 'subject_name' => [the base_table.uniquename value linked on base_foreign_key=subject_id],
  362. * 'type_id' => [the _relationship.type_id value],
  363. * 'type_name' => [the cvterm.name value linked on type_id],
  364. * 'rank' => [the _relationship.rank value],
  365. * ),
  366. * );
  367. *
  368. * NOTE: The main difference is the key
  369. *
  370. * Loop on the array elements of the $existing_rels array and add
  371. * an element to the form for each one.
  372. */
  373. $num_relationships = 0;
  374. foreach ($existing_rels as $relationship) {
  375. if (array_key_exists($relationship->type_id, $type_options)) {
  376. $num_relationships++;
  377. $form['relationships']['relationship_table'][$relationship->type_id]['#type'] = 'markup';
  378. $form['relationships']['relationship_table'][$relationship->type_id]['#type'] = '';
  379. $form['relationships']['relationship_table'][$relationship->type_id][$relationship->relationship_id]['#type'] = 'markup';
  380. $form['relationships']['relationship_table'][$relationship->type_id][$relationship->relationship_id]['#value'] = '';
  381. $form['relationships']['relationship_table'][$relationship->type_id][$relationship->relationship_id]['#attributes'] = array(
  382. 'class' => array('relationship', 'saved')
  383. );
  384. // Determine whether this relationship is unsaved or not.
  385. // We can tell this by looking at the relationship_id: if it's not
  386. // saved yet we will have entered a TEMP###.
  387. if (preg_match('/^TEMP/', $relationship->relationship_id)) {
  388. $form['relationships']['relationship_table'][$relationship->type_id][$relationship->relationship_id]['#attributes'] = array(
  389. 'class' => array('relationship', 'unsaved')
  390. );
  391. }
  392. $form['relationships']['relationship_table'][$relationship->type_id][$relationship->relationship_id]['relationship_id'] = array(
  393. '#type' => 'markup',
  394. '#markup' => $relationship->relationship_id
  395. );
  396. $form['relationships']['relationship_table'][$relationship->type_id][$relationship->relationship_id]['object_id'] = array(
  397. '#type' => 'hidden',
  398. '#value' => $relationship->object_id
  399. );
  400. $form['relationships']['relationship_table'][$relationship->type_id][$relationship->relationship_id]['subject_id'] = array(
  401. '#type' => 'hidden',
  402. '#value' => $relationship->subject_id
  403. );
  404. $form['relationships']['relationship_table'][$relationship->type_id][$relationship->relationship_id]['type_id'] = array(
  405. '#type' => 'hidden',
  406. '#value' => $relationship->type_id
  407. );
  408. $form['relationships']['relationship_table'][$relationship->type_id][$relationship->relationship_id]['object_name'] = array(
  409. '#type' => 'markup',
  410. '#markup' => $relationship->object_name
  411. );
  412. $form['relationships']['relationship_table'][$relationship->type_id][$relationship->relationship_id]['type_name'] = array(
  413. '#type' => 'markup',
  414. '#markup' => $relationship->type_name
  415. );
  416. $form['relationships']['relationship_table'][$relationship->type_id][$relationship->relationship_id]['subject_name'] = array(
  417. '#type' => 'markup',
  418. '#markup' => $relationship->subject_name,
  419. '#prefix' => '<span class="row-unsaved-warning"></span>'
  420. );
  421. $form['relationships']['relationship_table'][$relationship->type_id][$relationship->relationship_id]['rank'] = array(
  422. '#type' => 'markup',
  423. '#markup' => (isset($relationship->rank)) ? $relationship->rank : NULL
  424. );
  425. $form['relationships']['relationship_table'][$relationship->type_id][$relationship->relationship_id]['rel_action'] = array(
  426. '#type' => 'submit',
  427. '#value' => t('Remove'),
  428. '#name' => "relationships_remove-".$relationship->type_id.'-'.$relationship->relationship_id,
  429. '#ajax' => array(
  430. 'callback' => 'chado_add_node_form_subtable_ajax_update',
  431. 'wrapper' => 'tripal-generic-edit-relationships-table',
  432. 'effect' => 'fade',
  433. 'method' => 'replace',
  434. 'prevent' => 'click'
  435. ),
  436. // When this button is clicked, the form will be validated and submitted.
  437. // Therefore, we set custom submit and validate functions to override the
  438. // default node form submit. In the validate function we validate only the
  439. // relationship fields and in the submit we remove the indicated relationship
  440. // from the chado_relationships array. In order to keep validate errors
  441. // from the node form validate and Drupal required errors for non-relationship fields
  442. // preventing the user from removing relationships we set the #limit_validation_errors below
  443. '#validate' => array('chado_add_node_form_subtables_remove_button_validate'),
  444. '#submit' => array('chado_add_node_form_subtables_remove_button_submit'),
  445. // Limit the validation of the form upon clicking this button to the relationship_table tree
  446. // No other fields will be validated (ie: no fields from the main form or any other api
  447. // added form).
  448. '#limit_validation_errors' => array(
  449. array('relationship_table') // Validate all fields within $form_state['values']['relationship_table']
  450. )
  451. );
  452. }
  453. }
  454. // Quickly add a hidden field stating how many relationships are currently added.
  455. $form['relationships']['num_relationships'] = array(
  456. '#type' => 'hidden',
  457. '#value' => $num_relationships,
  458. '#attributes' => array('class' => 'num-relationships')
  459. );
  460. // Form elements for adding a new relationship
  461. //---------------------------------------------
  462. $form['relationships']['relationship_table']['new']['object_name'] = array(
  463. '#type' => 'textfield',
  464. '#autocomplete_path' => 'tripal_ajax/relationship_nodeform/' . $details['base_table'] . '/' . $details['base_name_field'].'/name_to_id'
  465. );
  466. $form['relationships']['relationship_table']['new']['object_is_current'] = array(
  467. '#type' => 'checkbox',
  468. '#title' => t('Current '.$details['nodetype']),
  469. );
  470. $form['relationships']['relationship_table']['new']['type_name'] = array(
  471. '#type' => 'select',
  472. '#options' => $type_options,
  473. );
  474. $form['relationships']['relationship_table']['new']['subject_name'] = array(
  475. '#type' => 'textfield',
  476. '#autocomplete_path' => 'tripal_ajax/relationship_nodeform/' . $details['base_table'] . '/' . $details['base_name_field'].'/name_to_id'
  477. );
  478. $form['relationships']['relationship_table']['new']['subject_is_current'] = array(
  479. '#type' => 'checkbox',
  480. '#title' => t('Current ' . $details['nodetype']),
  481. );
  482. $form['relationships']['relationship_table']['new']['rank'] = array(
  483. '#type' => 'markup',
  484. '#markup' => ''
  485. );
  486. $form['relationships']['relationship_table']['new']['rel_action'] = array(
  487. '#type' => 'submit',
  488. '#value' => t('Add'),
  489. '#name' => 'relationships-add',
  490. '#ajax' => array(
  491. 'callback' => 'chado_add_node_form_subtable_ajax_update',
  492. 'wrapper' => 'tripal-generic-edit-relationships-table',
  493. 'effect' => 'fade',
  494. 'method' => 'replace',
  495. ),
  496. // When this button is clicked, the form will be validated and submitted.
  497. // Therefore, we set custom submit and validate functions to override the
  498. // default node form submit. In the validate function we validate only the
  499. // relationship fields and in the submit we add them to the chado_relationships
  500. // array. In order to keep validate errors from the node form validate and Drupal
  501. // required errors for non-relationship fields preventing the user from adding relationships we
  502. // set the #limit_validation_errors below
  503. '#validate' => array('chado_add_node_form_subtables_add_button_validate'),
  504. '#submit' => array('chado_add_node_form_subtables_add_button_submit'),
  505. // Limit the validation of the form upon clicking this button to the relationship_table tree
  506. // No other fields will be validated (ie: no fields from the main form or any other api
  507. // added form).
  508. '#limit_validation_errors' => array(
  509. array('relationship_table') // Ensure relationship table results are not discarded.
  510. )
  511. );
  512. $form['relationships']['admin_message'] = array(
  513. '#type' => 'markup',
  514. '#markup' => $tripal_message
  515. );
  516. }
  517. /**
  518. * Validate the user input for creating a new relationship.
  519. * Called by the add button in chado_add_node_form_relationships.
  520. *
  521. * @ingroup tripal_core
  522. */
  523. function chado_add_node_form_relationships_add_button_validate($form, &$form_state) {
  524. $details = unserialize($form_state['values']['relationship_table']['details']);
  525. // First deal with autocomplete fields.
  526. // Extract the base_id assuming '(###) NAME FIELD'.
  527. if (!empty($form_state['values']['relationship_table']['new']['subject_name'])) {
  528. if (preg_match('/\((\d+)\) .*/', $form_state['values']['relationship_table']['new']['subject_name'], $matches)) {
  529. $form_state['values']['relationship_table']['new']['subject_id'] = $matches[1];
  530. }
  531. else {
  532. form_set_error('relationship_table][new][subject_name', 'You need to select the subject from the autocomplete drop-down');
  533. }
  534. }
  535. if (!empty($form_state['values']['relationship_table']['new']['object_name'])) {
  536. if (preg_match('/\((\d+)\) .*/', $form_state['values']['relationship_table']['new']['object_name'], $matches)) {
  537. $form_state['values']['relationship_table']['new']['object_id'] = $matches[1];
  538. }
  539. else {
  540. form_set_error('relationship_table][new][object_name', 'You need to select the object from the autocomplete drop-down');
  541. }
  542. }
  543. // NOTE: The only way to specify the current node is via checkbox. This is by
  544. // design since guessing if they meant the current node by name is a
  545. // chicken-egg problem due to the name field only being set to just the name
  546. // only happens once it has been determined which germplasm is the current
  547. // one. Furthermore, we can't use the primary key since this will not have
  548. // been set on insert.
  549. // At least one of the participants must be the current node.
  550. if (!($form_state['values']['relationship_table']['new']['subject_is_current'] OR $form_state['values']['relationship_table']['new']['object_is_current'])) {
  551. form_set_error('relationship_table][new][object_is_current', 'At least one member of the relationship must be
  552. the current '.$details['nodetype'].'. This is specified by checking the "Current '.$details['nodetype'].'"
  553. checkbox for either the subject or object.');
  554. }
  555. // Only one of the participants may be the current node.
  556. // We do not support circular relationships.
  557. if ($form_state['values']['relationship_table']['new']['subject_is_current']
  558. AND $form_state['values']['relationship_table']['new']['object_is_current']) {
  559. form_set_error('relationship_table][new][object_is_current', 'Only one member of the relationship may be
  560. the current '.$details['nodetype'].'. This is specified by checking the "Current '.$details['nodetype'].'"
  561. checkbox for either the subject or object.');
  562. }
  563. // If it was determined current via checkbox, we need to ensure the name
  564. // provided actually matches the current node.
  565. if ($form_state['values']['relationship_table']['new']['subject_is_current']
  566. AND !empty($form_state['values']['relationship_table']['new']['subject_name'])
  567. AND $form_state['values']['relationship_table']['new']['subject_name'] != $form_state['values'][$details['form_element_name']]) {
  568. form_set_error('relationship_table][new][subject_name',
  569. 'The name you supplied for the current '.$details['nodetype'].' doesn\'t match the actual name
  570. of this '.$details['nodetype'].'. If you really meant the subject should be the current '.$details['nodetype'].',
  571. simply leave the textfield empty and re-add this relationship.');
  572. }
  573. if ($form_state['values']['relationship_table']['new']['object_is_current']
  574. AND !empty($form_state['values']['relationship_table']['new']['object_name'])
  575. AND $form_state['values']['relationship_table']['new']['object_name'] != $form_state['values'][$details['form_element_name']]) {
  576. form_set_error('relationship_table][new][object_name',
  577. 'The name you supplied for the current '.$details['nodetype'].' doesn\'t match the actual name
  578. of this '.$details['nodetype'].'. If you really meant the object should be the current '.$details['nodetype'].',
  579. simply leave the textfield empty and re-add this relationship.');
  580. }
  581. // The non-current uniquename must be exist in the base table (subject).
  582. if (!($form_state['values']['relationship_table']['new']['subject_is_current'])) {
  583. $result = chado_select_record(
  584. $details['base_table'],
  585. array($details['base_name_field']),
  586. array($details['base_foreign_key'] => $form_state['values']['relationship_table']['new']['subject_id'])
  587. );
  588. if (!isset($result[0])) {
  589. form_set_error('relationship_table][new][subject_name', 'The subject must be the unique name of an
  590. existing '.$details['nodetype'].' unless the "Current '.$details['nodetype'].'" checkbox is selected');
  591. }
  592. else {
  593. $form_state['values']['relationship_table']['new']['subject_name'] = $result[0]->{$details['base_name_field']};
  594. }
  595. }
  596. // The non-current uniquename must exist in the base table (object).
  597. if (!($form_state['values']['relationship_table']['new']['object_is_current'])) {
  598. $result = chado_select_record(
  599. $details['base_table'],
  600. array($details['base_name_field']),
  601. array($details['base_foreign_key'] => $form_state['values']['relationship_table']['new']['object_id'])
  602. );
  603. if (!isset($result[0])) {
  604. form_set_error('relationship_table][new][object_name', 'The object must be the unique name of an
  605. existing '.$details['nodetype'].' unless the "Current '.$details['nodetype'].'" checkbox is selected');
  606. }
  607. else {
  608. $form_state['values']['relationship_table']['new']['object_name'] = $result[0]->{$details['base_name_field']};
  609. }
  610. }
  611. // The type must be a valid cvterm.
  612. if ($form_state['values']['relationship_table']['new']['type_name']) {
  613. $form_state['values']['relationship_table']['new']['type_id'] = $form_state['values']['relationship_table']['new']['type_name'];
  614. $result = chado_select_record(
  615. 'cvterm',
  616. array('name'),
  617. array('cvterm_id' => $form_state['values']['relationship_table']['new']['type_id'])
  618. );
  619. if (!isset($result[0])) {
  620. form_set_error('relationship_table][new][type_id', 'The select type is not a valid controlled vocabulary term.');
  621. }
  622. else {
  623. $form_state['values']['relationship_table']['new']['type_name'] = $result[0]->name;
  624. }
  625. }
  626. else {
  627. form_set_error('relationship_table][new][type_id', 'Please select a type of relationship');
  628. }
  629. }
  630. /**
  631. * Called by the add button in chado_add_node_form_relationships
  632. *
  633. * Create an array of additional relationships in the form state. This array will then be
  634. * used to rebuild the form in subsequent builds
  635. *
  636. * @ingroup tripal_core
  637. */
  638. function chado_add_node_form_relationships_add_button_submit($form, &$form_state) {
  639. $details = unserialize($form_state['values']['relationship_table']['details']);
  640. // if the chado_relationships array is not set then this is the first time modifying the
  641. // relationship table. this means we need to include all the relationships from the db
  642. if (!isset($form_state['chado_relationships'])) {
  643. chado_add_node_form_relationships_create_relationship_formstate_array($form, $form_state);
  644. }
  645. $name = (isset($form_state['node']->{$details['base_table']}->uniquename)) ? $form_state['node']->{$details['base_table']}->uniquename : 'CURRENT';
  646. // get details for the new relationship
  647. if ($form_state['values']['relationship_table']['new']['subject_is_current']) {
  648. $relationship = array(
  649. 'type_id' => $form_state['values']['relationship_table']['new']['type_id'],
  650. 'type_name' => $form_state['values']['relationship_table']['new']['type_name'],
  651. 'object_id' => $form_state['values']['relationship_table']['new']['object_id'],
  652. 'object_name' => $form_state['values']['relationship_table']['new']['object_name'],
  653. 'subject_id' => $form_state['node']->{$details['base_table']}->{$details['base_foreign_key']},
  654. 'subject_name' => $name,
  655. 'rank' => NULL,
  656. 'relationship_id' => 'TEMP' . uniqid()
  657. );
  658. // we don't want the new element to pick up the values from the previous element so wipe them out
  659. unset($form_state['input']['relationship_table']['new']['object_id']);
  660. unset($form_state['input']['relationship_table']['new']['object_name']);
  661. }
  662. else {
  663. $relationship = array(
  664. 'type_id' => $form_state['values']['relationship_table']['new']['type_id'],
  665. 'type_name' => $form_state['values']['relationship_table']['new']['type_name'],
  666. 'object_id' => $form_state['node']->{$details['base_table']}->{$details['base_foreign_key']},
  667. 'object_name' => $name,
  668. 'subject_id' => $form_state['values']['relationship_table']['new']['subject_id'],
  669. 'subject_name' => $form_state['values']['relationship_table']['new']['subject_name'],
  670. 'rank' => NULL,
  671. 'relationship_id' => 'TEMP' . uniqid(),
  672. );
  673. // we don't want the new element to pick up the values from the previous element so wipe them out
  674. unset($form_state['input']['relationship_table']['new']['subject_id']);
  675. unset($form_state['input']['relationship_table']['new']['subject_name']);
  676. }
  677. $key = $relationship['type_id'] . '-' . $relationship['relationship_id'];
  678. $form_state['chado_relationships'][$key] = (object) $relationship;
  679. // we don't want the new element to pick up the values from the previous element so wipe them out
  680. unset($form_state['input']['relationship_table']['new']['type_id']);
  681. unset($form_state['input']['relationship_table']['new']['type_name']);
  682. }
  683. /**
  684. * Called by the many remove buttons in chado_add_node_form_relationships
  685. *
  686. * @ingroup tripal_core
  687. */
  688. function chado_add_node_form_relationships_remove_button_validate($form, &$form_state) {
  689. // No validation needed.
  690. }
  691. /**
  692. * Remove the correct relationship from the form
  693. * Called by the many remove buttons in chado_add_node_form_relationships
  694. *
  695. * @ingroup tripal_core
  696. */
  697. function chado_add_node_form_relationships_remove_button_submit(&$form, &$form_state) {
  698. // if the chado_relationships array is not set then this is the first time modifying the
  699. // relationship table. this means we need to include all the relationships from the db
  700. chado_add_node_form_relationships_create_relationship_formstate_array($form, $form_state);
  701. // remove the specified relationship from the form relationship table
  702. if(preg_match('/relationships_remove-([^-]+-[^-]+)/',$form_state['triggering_element']['#name'],$match)) {
  703. $key = $match[1];
  704. if (array_key_exists($key, $form_state['chado_relationships'])) {
  705. unset($form_state['chado_relationships'][$key]);
  706. }
  707. }
  708. }
  709. /**
  710. * Creates an array in form_state containing the existing relationships. This array is
  711. * then modified by the add/remove buttons and used as a source for rebuilding the form.
  712. *
  713. * $form_state['chado_relationships'] = array(
  714. * '[type_id]-[rank]' => array(
  715. * 'object_id' => [the _relationship.object_id value],
  716. * 'object_name' => [the base_table.uniquename value linked on base_foreign_key=object_id],
  717. * 'subject_id' => [the _relationship.subject_id value],
  718. * 'subject_name' => [the base_table.uniquename value linked on base_foreign_key=subject_id],
  719. * 'type_id' => [the _relationship.type_id value],
  720. * 'type_name' => [the cvterm.name value linked on type_id],
  721. * 'rank' => [the _relationship.rank value],
  722. * ),
  723. * );
  724. *
  725. * @ingroup tripal_core
  726. */
  727. function chado_add_node_form_relationships_create_relationship_formstate_array($form, &$form_state) {
  728. $form_state['chado_relationships'] = array();
  729. foreach (element_children($form['relationships']['relationship_table']) as $type_id) {
  730. if ($type_id != 'new') {
  731. foreach (element_children($form['relationships']['relationship_table'][$type_id]) as $relationship_id) {
  732. $element = $form['relationships']['relationship_table'][$type_id][$relationship_id];
  733. $rel = array(
  734. 'type_id' => $element['type_id']['#value'],
  735. 'object_id' => $element['object_id']['#value'],
  736. 'subject_id' => $element['subject_id']['#value'],
  737. 'type_name' => $element['type_name']['#markup'],
  738. 'object_name' => $element['object_name']['#markup'],
  739. 'subject_name' => $element['subject_name']['#markup'],
  740. 'rank' => $element['rank']['#markup'],
  741. 'relationship_id' => $relationship_id,
  742. );
  743. $key = $rel['type_id'] . '-' . $rel['relationship_id'];
  744. $form_state['chado_relationships'][$key] = (object) $rel;
  745. }
  746. }
  747. }
  748. }
  749. /**
  750. * Function to theme the add/remove relationships form into a table
  751. *
  752. * @ingroup tripal_chado_node_api
  753. */
  754. function theme_chado_add_node_form_relationships_table($variables) {
  755. $element = $variables['element'];
  756. $details = unserialize($element['details']['#value']);
  757. $header = array(
  758. 'subject_name' => t('Subject ' . $details['base_name_field']),
  759. 'type_name' => t('Type'),
  760. 'object_name' => t('Object ' . $details['base_name_field']),
  761. 'rel_action' => t('Action')
  762. );
  763. $rows = array();
  764. foreach (element_children($element) as $type_id) {
  765. if ($type_id == 'new') {
  766. $row = array();
  767. $row['data'] = array();
  768. foreach ($header as $fieldname => $title) {
  769. if ($fieldname == 'subject_name') {
  770. $row['data'][] = drupal_render($element[$type_id][$fieldname]) . drupal_render($element[$type_id]['subject_is_current']);
  771. }
  772. elseif ($fieldname == 'object_name') {
  773. $row['data'][] = drupal_render($element[$type_id][$fieldname]) . drupal_render($element[$type_id]['object_is_current']);
  774. }
  775. else {
  776. $row['data'][] = drupal_render($element[$type_id][$fieldname]);
  777. }
  778. }
  779. $rows[] = $row;
  780. }
  781. else {
  782. foreach (element_children($element[$type_id]) as $rank) {
  783. $row = array();
  784. $row['data'] = array();
  785. $row['class'] = $element[$type_id][$rank]['#attributes']['class'];
  786. foreach ($header as $fieldname => $title) {
  787. $row['data'][] = drupal_render($element[$type_id][$rank][$fieldname]);
  788. }
  789. $rows[] = $row;
  790. }
  791. }
  792. }
  793. return render($element['save_warning']) . theme('table', array(
  794. 'header' => $header,
  795. 'rows' => $rows,
  796. 'sticky' => FALSE
  797. ));
  798. }
  799. /**
  800. * This function is used in a hook_insert, hook_update for a node form
  801. * when the relationships form has been added to the form. It retrieves all of the relationships
  802. * and returns them in an array of the format:
  803. *
  804. * $relationships[<type_id>][<rank>] = array(
  805. * 'subject_id' => <subject_id>,
  806. * 'object_id' => <object_id>,
  807. * );
  808. *
  809. * This array can then be used for inserting or updating relationships manually
  810. *
  811. * @param $node
  812. *
  813. * @return
  814. * A relationship array
  815. *
  816. * @ingroup tripal_chado_node_api
  817. */
  818. function chado_retrieve_node_form_relationships($node) {
  819. $rels = array();
  820. if (isset($node->relationship_table)) {
  821. foreach ($node->relationship_table as $type_id => $elements) {
  822. if ($type_id != 'new' AND $type_id != 'details') {
  823. foreach ($elements as $rank => $relationships) {
  824. $rels[$type_id][$rank]['subject_id'] = $relationships['subject_id'];
  825. $rels[$type_id][$rank]['object_id'] = $relationships['object_id'];
  826. }
  827. }
  828. }
  829. }
  830. return $rels;
  831. }
  832. /**
  833. * This function is used in hook_insert or hook_update and handles inserting of
  834. * relationships between the current nodetype and other memebers of the same nodetype
  835. *
  836. * @param $node
  837. * The node passed into hook_insert & hook_update
  838. * @param $details
  839. * - relationship_table: the name of the _relationship linking table (ie: feature_relationship)
  840. * - foreignkey_value: the value of the foreign key (ie: 445, if there exists a feature where feature_id=445)
  841. * @param $retrieved_relationships
  842. * An array of relationships from chado_retrieve_node_form_relationships($node). This
  843. * can be used if you need special handling for some of the relationships.
  844. *
  845. * @ingroup tripal_chado_node_api
  846. */
  847. function chado_update_node_form_relationships($node, $details, $retrieved_relationships = FALSE) {
  848. $relationship_table = $details['relationship_table'];
  849. $current_id = $details['foreignkey_value'];
  850. if (isset($node->relationship_table) AND ($current_id > 0)) {
  851. // determine whether there is a rank in this relationship table
  852. $form_details = unserialize($node->relationship_table['details']);
  853. $has_rank = $form_details['table_has_rank'];
  854. // First remove existing relationships links
  855. chado_delete_record(
  856. $relationship_table,
  857. array($form_details['subject_field_name'] => $current_id)
  858. );
  859. chado_delete_record(
  860. $relationship_table,
  861. array($form_details['object_field_name'] => $current_id)
  862. );
  863. // Add back in relationships as needed
  864. if ($retrieved_relationships) {
  865. $relationships = $retrieved_relationships;
  866. }
  867. else {
  868. $relationships = chado_retrieve_node_form_relationships($node);
  869. }
  870. foreach ($relationships as $type_id => $ranks) {
  871. foreach ($ranks as $rank => $element) {
  872. $values = array(
  873. $form_details['subject_field_name'] => $element['subject_id'],
  874. 'type_id' => $type_id,
  875. $form_details['object_field_name'] => $element['object_id']
  876. );
  877. // Set the current id if not already
  878. // this is usually only necessary in an insert
  879. if (empty($values[$form_details['subject_field_name']])) {
  880. $values[$form_details['subject_field_name']] = $current_id;
  881. }
  882. if (empty($values[$form_details['object_field_name']])) {
  883. $values[$form_details['object_field_name']] = $current_id;
  884. }
  885. if ($has_rank) {
  886. // Ensure that the rank is Set & Current
  887. $rank_select = chado_get_table_max_rank(
  888. $relationship_table,
  889. array(
  890. $form_details['subject_field_name'] => $values['subject_id'],
  891. 'type_id' => $values['type_id'],
  892. $form_details['object_field_name'] => $values['object_id'],
  893. )
  894. );
  895. $values['rank'] = $rank_select + 1;
  896. }
  897. // add relationship
  898. $success_link = chado_insert_record(
  899. $relationship_table,
  900. $values
  901. );
  902. }
  903. }
  904. }
  905. }
  906. /**
  907. * Handles autocomplete for subject & object id
  908. *
  909. * @param $string
  910. * The part of the string already typed in the textfield
  911. *
  912. * @ingroup tripal_core
  913. */
  914. function chado_add_node_form_relationships_name_to_id_callback($base_table, $name_field, $string) {
  915. $matches = array();
  916. $base_key = $base_table.'_id';
  917. $query = db_select('chado.'.$base_table, 'b')
  918. ->fields('b', array($base_key, $name_field))
  919. ->condition($name_field, '%' . db_like($string) . '%', 'LIKE');
  920. $result = $query->execute();
  921. // save the query to matches
  922. foreach ($result as $row) {
  923. if (strlen($row->{$name_field}) > 50) {
  924. $key = '('.$row->{$base_key}.') ' . substr($row->{$name_field}, 0, 50) . '...';
  925. }
  926. else {
  927. $key = '('.$row->{$base_key}.') ' . $row->{$name_field};
  928. }
  929. $matches[$key] = check_plain($row->{$name_field});
  930. }
  931. // return for JS
  932. drupal_json_output($matches);
  933. }