tripal_core.chado_nodes.relationships.api.inc 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860
  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_node_relationships_form($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_node_relationships_form_update_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_node_relationships_form_update_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 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_node_relationships_form(&$form, &$form_state, $details) {
  103. $form_state['rebuild'] = TRUE;
  104. // Set Defaults for optional fields
  105. $details['fieldset_title'] = (isset($details['fieldset_title'])) ? $details['fieldset_title'] : 'Relationships';
  106. $details['additional_instructions'] = (isset($details['additional_instructions'])) ? $details['additional_instructions'] : '';
  107. $details['nodetype_plural'] = (isset($details['nodetype_plural'])) ? $details['nodetype_plural'] : $details['nodetype'] . 's';
  108. $details['base_name_field'] = (isset($details['base_name_field'])) ? $details['base_name_field'] : 'uniquename';
  109. $details['subject_field_name'] = (isset($details['subject_field_name'])) ? $details['subject_field_name'] : 'subject_id';
  110. $details['object_field_name'] = (isset($details['object_field_name'])) ? $details['object_field_name'] : 'object_id';
  111. // Some relationship tables don't have a rank
  112. // thus we need to first check this table has a rank before trying to set it
  113. $table_schema = tripal_core_get_chado_table_schema($details['relationship_table']);
  114. $details['table_has_rank'] = (isset($table_schema['fields']['rank'])) ? TRUE : FALSE;
  115. // Get Property Types for the Select List
  116. if (isset($details['select_options'])) {
  117. $type_options = $details['select_options'];
  118. }
  119. else {
  120. if (isset($details['cv_name'])) {
  121. $type_options = array();
  122. $type_options[] = 'Select a Property';
  123. $sql = "
  124. SELECT DISTINCT CVT.cvterm_id, CVT.name, CVT.definition
  125. FROM {cvterm} CVT
  126. INNER JOIN {cv} CV ON CVT.cv_id = CV.cv_id
  127. WHERE
  128. CV.name = :cv_name AND
  129. NOT CVT.is_obsolete = 1
  130. ORDER BY CVT.name ASC
  131. ";
  132. $prop_types = chado_query($sql, array(':cv_name' => $details['cv_name']));
  133. while ($prop = $prop_types->fetchObject()) {
  134. $type_options[$prop->cvterm_id] = $prop->name;
  135. }
  136. } elseif (isset($details['cv_id'])) {
  137. $type_options = array();
  138. $type_options[] = 'Select a Property';
  139. $sql = "
  140. SELECT DISTINCT CVT.cvterm_id, CVT.name, CVT.definition
  141. FROM {cvterm} CVT
  142. INNER JOIN {cv} CV ON CVT.cv_id = CV.cv_id
  143. WHERE
  144. CV.cv_id = :cv_id AND
  145. NOT CVT.is_obsolete = 1
  146. ORDER BY CVT.name ASC
  147. ";
  148. $prop_types = chado_query($sql, array(':cv_id' => $details['cv_id']));
  149. while ($prop = $prop_types->fetchObject()) {
  150. $type_options[$prop->cvterm_id] = $prop->name;
  151. }
  152. }
  153. }
  154. $form['relationships'] = array(
  155. '#type' => 'fieldset',
  156. '#title' => t($details['fieldset_title']),
  157. '#description' => t('You may add relationships between this %nodetype and other
  158. %nodetype_plural by entering the details below. You may add
  159. as many relationships as desired by clicking the add button on the right. To
  160. remove a relationship, click the remove button. ' . $details['additional_instructions'],
  161. array('%nodetype' => $details['nodetype'], '%nodetype_plural' => $details['nodetype_plural'])),
  162. '#prefix' => "<div id='relationships-fieldset'>",
  163. '#suffix' => '</div>'
  164. );
  165. // this form element is a tree, so that we don't puke all of the values into then node variable
  166. // it is set as a tree, and keeps them in the $form_state['values']['relationship_table'] heading.
  167. $form['relationships']['relationship_table'] = array(
  168. '#type' => 'markup',
  169. '#tree' => TRUE,
  170. '#prefix' => '<div id="tripal-generic-edit-relationships-table">',
  171. '#suffix' => '</div>',
  172. '#theme' => 'chado_node_relationships_form_table'
  173. );
  174. // Add defaults into form_state to be used elsewhere
  175. $form['relationships']['relationship_table']['details'] = array(
  176. '#type' => 'hidden',
  177. '#value' => serialize($details)
  178. );
  179. // Add relationships already attached to the node
  180. //---------------------------------------------
  181. /* Relationships can come to us in two ways:
  182. *
  183. * 1) In the form state in the $form_state['chado_relationships']. Data is in this field
  184. * when an AJAX call updates the form state or a validation error.
  185. *
  186. * 2) Directly from the database if the record already has _relationships associated. This
  187. * data is only used the first time the form is loaded. On AJAX calls or validation
  188. * errors the fields on the form are populated from the $form_state['chado_relationships']
  189. * entry.
  190. */
  191. if (isset($form_state['chado_relationships'])) {
  192. $existing_rels = $form_state['chado_relationships'];
  193. }
  194. else {
  195. $existing_rels = chado_query(
  196. "SELECT
  197. rel.*,
  198. rel.".$details['subject_field_name']." as subject_id,
  199. rel.".$details['object_field_name']." as object_id,
  200. base1.".$details['base_name_field']." as object_name,
  201. base2.".$details['base_name_field']." as subject_name,
  202. cvterm.name as type_name
  203. FROM {".$details['relationship_table']."} rel
  204. LEFT JOIN {".$details['base_table']."} base1 ON base1.".$details['base_foreign_key']." = rel.".$details['object_field_name']."
  205. LEFT JOIN {".$details['base_table']."} base2 ON base2.".$details['base_foreign_key']." = rel.".$details['subject_field_name']."
  206. LEFT JOIN {cvterm} cvterm ON cvterm.cvterm_id = rel.type_id
  207. WHERE rel.".$details['object_field_name']." = :base_key_value
  208. OR rel.".$details['subject_field_name']." = :base_key_value",
  209. array(':base_key_value' => $details['base_key_value'])
  210. );
  211. }
  212. /* The format of the $existing_rels' array is either:
  213. *
  214. * From the chado_relationships array:
  215. * $form_state['chado_relationships'] = array(
  216. * '[type_id]-[rank]' => array(
  217. * 'object_id' => [the _relationship.object_id value],
  218. * 'object_name' => [the base_table.uniquename value linked on base_foreign_key=object_id],
  219. * 'subject_id' => [the _relationship.subject_id value],
  220. * 'subject_name' => [the base_table.uniquename value linked on base_foreign_key=subject_id],
  221. * 'type_id' => [the _relationship.type_id value],
  222. * 'type_name' => [the cvterm.name value linked on type_id],
  223. * 'rank' => [the _relationship.rank value],
  224. * ),
  225. * );
  226. *
  227. * OR
  228. * Populated from the database:
  229. * $existing_rels = array(
  230. * 0 => array(
  231. * 'relationship_id' => [the _relationship.relationship_id value],
  232. * 'object_id' => [the _relationship.object_id value],
  233. * 'object_name' => [the base_table.uniquename value linked on base_foreign_key=object_id],
  234. * 'subject_id' => [the _relationship.subject_id value],
  235. * 'subject_name' => [the base_table.uniquename value linked on base_foreign_key=subject_id],
  236. * 'type_id' => [the _relationship.type_id value],
  237. * 'type_name' => [the cvterm.name value linked on type_id],
  238. * 'rank' => [the _relationship.rank value],
  239. * ),
  240. * );
  241. *
  242. * NOTE: The main difference is the key
  243. *
  244. * Loop on the array elements of the $existing_rels array and add
  245. * an element to the form for each one.
  246. */
  247. foreach ($existing_rels as $relationship) {
  248. if (array_key_exists($relationship->type_id, $type_options)) {
  249. $rank = (isset($relationship->rank)) ? $relationship->rank : 0;
  250. $form['relationships']['relationship_table'][$relationship->type_id]['#type'] = 'markup';
  251. $form['relationships']['relationship_table'][$relationship->type_id]['#type'] = '';
  252. $form['relationships']['relationship_table'][$relationship->type_id][$rank]['#type'] = 'markup';
  253. $form['relationships']['relationship_table'][$relationship->type_id][$rank]['#value'] = '';
  254. $form['relationships']['relationship_table'][$relationship->type_id][$rank]['object_id'] = array(
  255. '#type' => 'hidden',
  256. '#value' => $relationship->object_id
  257. );
  258. $form['relationships']['relationship_table'][$relationship->type_id][$rank]['subject_id'] = array(
  259. '#type' => 'hidden',
  260. '#value' => $relationship->subject_id
  261. );
  262. $form['relationships']['relationship_table'][$relationship->type_id][$rank]['type_id'] = array(
  263. '#type' => 'hidden',
  264. '#value' => $relationship->type_id
  265. );
  266. $form['relationships']['relationship_table'][$relationship->type_id][$rank]['object_name'] = array(
  267. '#type' => 'markup',
  268. '#markup' => $relationship->object_name
  269. );
  270. $form['relationships']['relationship_table'][$relationship->type_id][$rank]['type_name'] = array(
  271. '#type' => 'markup',
  272. '#markup' => $relationship->type_name
  273. );
  274. $form['relationships']['relationship_table'][$relationship->type_id][$rank]['subject_name'] = array(
  275. '#type' => 'markup',
  276. '#markup' => $relationship->subject_name
  277. );
  278. $form['relationships']['relationship_table'][$relationship->type_id][$rank]['rank'] = array(
  279. '#type' => 'markup',
  280. '#markup' => $rank
  281. );
  282. $form['relationships']['relationship_table'][$relationship->type_id][$rank]['rel_action'] = array(
  283. '#type' => 'submit',
  284. '#value' => t('Remove'),
  285. '#name' => "rel_remove-".$relationship->type_id.'-'.$rank,
  286. '#ajax' => array(
  287. 'callback' => 'chado_node_relationships_form_ajax_update',
  288. 'wrapper' => 'tripal-generic-edit-relationships-table',
  289. 'effect' => 'fade',
  290. 'method' => 'replace',
  291. 'prevent' => 'click'
  292. ),
  293. // When this button is clicked, the form will be validated and submitted.
  294. // Therefore, we set custom submit and validate functions to override the
  295. // default node form submit. In the validate function we validate only the
  296. // relationship fields and in the submit we remove the indicated relationship
  297. // from the chado_relationships array. In order to keep validate errors
  298. // from the node form validate and Drupal required errors for non-relationship fields
  299. // preventing the user from removing relationships we set the #limit_validation_errors below
  300. '#validate' => array('chado_node_relationships_form_remove_button_validate'),
  301. '#submit' => array('chado_node_relationships_form_remove_button_submit'),
  302. // Limit the validation of the form upon clicking this button to the relationship_table tree
  303. // No other fields will be validated (ie: no fields from the main form or any other api
  304. // added form).
  305. '#limit_validation_errors' => array(
  306. array('relationship_table') // Validate all fields within $form_state['values']['relationship_table']
  307. )
  308. );
  309. }
  310. }
  311. $form['relationships']['relationship_table']['new']['object_name'] = array(
  312. '#type' => 'textfield',
  313. '#autocomplete_path' => 'tripal_ajax/relationship_nodeform/'.$details['base_table'].'/'.$details['base_name_field'].'/name_to_id'
  314. );
  315. $form['relationships']['relationship_table']['new']['object_is_current'] = array(
  316. '#type' => 'checkbox',
  317. '#title' => t('Current '.$details['nodetype']),
  318. );
  319. $form['relationships']['relationship_table']['new']['type_name'] = array(
  320. '#type' => 'select',
  321. '#options' => $type_options,
  322. );
  323. $form['relationships']['relationship_table']['new']['subject_name'] = array(
  324. '#type' => 'textfield',
  325. '#autocomplete_path' => 'tripal_ajax/relationship_nodeform/'.$details['base_table'].'/'.$details['base_name_field'].'/name_to_id'
  326. );
  327. $form['relationships']['relationship_table']['new']['subject_is_current'] = array(
  328. '#type' => 'checkbox',
  329. '#title' => t('Current '.$details['nodetype']),
  330. );
  331. $form['relationships']['relationship_table']['new']['rank'] = array(
  332. '#type' => 'markup',
  333. '#markup' => ''
  334. );
  335. $form['relationships']['relationship_table']['new']['rel_action'] = array(
  336. '#type' => 'submit',
  337. '#value' => t('Add'),
  338. '#name' => 'rel_add',
  339. '#ajax' => array(
  340. 'callback' => 'chado_node_relationships_form_ajax_update',
  341. 'wrapper' => 'tripal-generic-edit-relationships-table',
  342. 'effect' => 'fade',
  343. 'method' => 'replace',
  344. 'prevent' => 'click'
  345. ),
  346. // When this button is clicked, the form will be validated and submitted.
  347. // Therefore, we set custom submit and validate functions to override the
  348. // default node form submit. In the validate function we validate only the
  349. // relationship fields and in the submit we add them to the chado_relationships
  350. // array. In order to keep validate errors from the node form validate and Drupal
  351. // required errors for non-relationship fields preventing the user from adding relationships we
  352. // set the #limit_validation_errors below
  353. '#validate' => array('chado_node_relationships_form_add_button_validate'),
  354. '#submit' => array('chado_node_relationships_form_add_button_submit'),
  355. // Limit the validation of the form upon clicking this button to the relationship_table tree
  356. // No other fields will be validated (ie: no fields from the main form or any other api
  357. // added form).
  358. '#limit_validation_errors' => array(
  359. array('relationship_table') // Validate all fields within $form_state['values']['relationship_table']
  360. )
  361. );
  362. }
  363. /**
  364. * Validate the user input for creating a new relationship
  365. * Called by the add button in chado_node_relationships_form
  366. *
  367. * @ingroup tripal_chado_node_api
  368. */
  369. function chado_node_relationships_form_add_button_validate($form, &$form_state) {
  370. $details = unserialize($form_state['values']['relationship_table']['details']);
  371. // First deal with autocomplete fields
  372. // extract the base_id assuming '(###) NAME FIELD'
  373. if (!empty($form_state['values']['relationship_table']['new']['subject_name'])) {
  374. if (preg_match('/\((\d+)\) .*/', $form_state['values']['relationship_table']['new']['subject_name'], $matches)) {
  375. $form_state['values']['relationship_table']['new']['subject_id'] = $matches[1];
  376. }
  377. else {
  378. form_set_error('subject_name', 'You need to select the subject from the autocomplete drop-down');
  379. }
  380. }
  381. if (!empty($form_state['values']['relationship_table']['new']['object_name'])) {
  382. if (preg_match('/\((\d+)\) .*/', $form_state['values']['relationship_table']['new']['object_name'], $matches)) {
  383. $form_state['values']['relationship_table']['new']['object_id'] = $matches[1];
  384. }
  385. else {
  386. form_set_error('object_name', 'You need to select the subject from the autocomplete drop-down');
  387. }
  388. }
  389. // At least one of the participants must be the current node
  390. if (!($form_state['values']['relationship_table']['new']['subject_is_current'] OR $form_state['values']['relationship_table']['new']['object_is_current'])) {
  391. // If the checkbox isn't set then check to see if either has the same uniquename as the node
  392. if ($form_state['values']['relationship_table']['new']['subject_name'] == $form_state['values']['uniquename']) {
  393. $form_state['values']['relationship_table']['new']['subject_is_current'] = 1;
  394. form_set_error('subject_is_current', 'To set the current '.$details['nodetype'].', select the
  395. checkbox. You entered the unique name of the current '.$details['nodetype'].' as the subject,
  396. is this what you meant to do?');
  397. }
  398. elseif ($form_state['values']['relationship_table']['new']['subject_name'] == $form_state['values']['uniquename']) {
  399. $form_state['values']['relationship_table']['new']['object_is_current'] = 1;
  400. form_set_error('subject_is_current', 'To set the current '.$details['nodetype'].', select the
  401. checkbox. You entered the unique name of the current '.$details['nodetype'].' as the subject,
  402. is this what you meant to do?');
  403. }
  404. else {
  405. form_set_error('object_is_current', 'At least one member of the relationship must be
  406. the current '.$details['nodetype'].'. This is specified by checking the "Current '.$details['nodetype'].'"
  407. checkbox for either the subject or object.');
  408. }
  409. }
  410. // The non-current uniquename must be exist in the base table (subject)
  411. if (!($form_state['values']['relationship_table']['new']['subject_is_current'])) {
  412. $result = tripal_core_chado_select(
  413. $details['base_table'],
  414. array($details['base_name_field']),
  415. array($details['base_foreign_key'] => $form_state['values']['relationship_table']['new']['subject_id'])
  416. );
  417. if (!isset($result[0])) {
  418. form_set_error('subject_name', 'The subject must be the unique name of an
  419. existing '.$details['nodetype'].' unless the "Current '.$details['nodetype'].'" checkbox is selected');
  420. }
  421. else {
  422. $form_state['values']['relationship_table']['new']['subject_name'] = $result[0]->{$details['base_name_field']};
  423. }
  424. }
  425. // The non-current uniquename must exist in the base table (object)
  426. if (!($form_state['values']['relationship_table']['new']['object_is_current'])) {
  427. $result = tripal_core_chado_select(
  428. $details['base_table'],
  429. array($details['base_name_field']),
  430. array($details['base_foreign_key'] => $form_state['values']['relationship_table']['new']['object_id'])
  431. );
  432. if (!isset($result[0])) {
  433. form_set_error('object_name', 'The object must be the unique name of an
  434. existing '.$details['nodetype'].' unless the "Current '.$details['nodetype'].'" checkbox is selected');
  435. }
  436. else {
  437. $form_state['values']['relationship_table']['new']['object_name'] = $result[0]->{$details['base_name_field']};
  438. }
  439. }
  440. // The type must be a valid cvterm
  441. if ($form_state['values']['relationship_table']['new']['type_name']) {
  442. $form_state['values']['relationship_table']['new']['type_id'] = $form_state['values']['relationship_table']['new']['type_name'];
  443. $result = tripal_core_chado_select(
  444. 'cvterm',
  445. array('name'),
  446. array('cvterm_id' => $form_state['values']['relationship_table']['new']['type_id'])
  447. );
  448. if (!isset($result[0])) {
  449. form_set_error('type_id', 'The select type is not a valid controlled vocabulary term.');
  450. }
  451. else {
  452. $form_state['values']['relationship_table']['new']['type_name'] = $result[0]->name;
  453. }
  454. }
  455. else {
  456. form_set_error('type_id', 'Please select a type of relationship');
  457. }
  458. }
  459. /**
  460. * Called by the add button in chado_node_relationships_form
  461. *
  462. * Create an array of additional relationships in the form state. This array will then be
  463. * used to rebuild the form in subsequent builds
  464. *
  465. * @ingroup tripal_chado_node_api
  466. */
  467. function chado_node_relationships_form_add_button_submit(&$form, &$form_state) {
  468. $details = unserialize($form_state['values']['relationship_table']['details']);
  469. // if the chado_relationships array is not set then this is the first time modifying the
  470. // relationship table. this means we need to include all the relationships from the db
  471. if (!isset($form_state['chado_relationships'])) {
  472. chado_node_relationships_form_create_relationship_formstate_array($form, $form_state);
  473. }
  474. $name = (isset($form_state['node']->{$details['base_table']}->uniquename)) ? $form_state['node']->{$details['base_table']}->uniquename : 'CURRENT';
  475. // get details for the new relationship
  476. if ($form_state['values']['relationship_table']['new']['subject_is_current']) {
  477. $relationship = array(
  478. 'type_id' => $form_state['values']['relationship_table']['new']['type_id'],
  479. 'type_name' => $form_state['values']['relationship_table']['new']['type_name'],
  480. 'object_id' => $form_state['values']['relationship_table']['new']['object_id'],
  481. 'object_name' => $form_state['values']['relationship_table']['new']['object_name'],
  482. 'subject_id' => $form_state['node']->{$details['base_table']}->{$details['base_foreign_key']},
  483. 'subject_name' => $name,
  484. 'rank' => '0',
  485. );
  486. }
  487. else {
  488. $relationship = array(
  489. 'type_id' => $form_state['values']['relationship_table']['new']['type_id'],
  490. 'type_name' => $form_state['values']['relationship_table']['new']['type_name'],
  491. 'object_id' => $form_state['node']->{$details['base_table']}->{$details['base_foreign_key']},
  492. 'object_name' => $name,
  493. 'subject_id' => $form_state['values']['relationship_table']['new']['subject_id'],
  494. 'subject_name' => $form_state['values']['relationship_table']['new']['subject_name'],
  495. 'rank' => '0',
  496. );
  497. }
  498. $key = $relationship['type_id'] . '-' . $relationship['rank'];
  499. $form_state['chado_relationships'][$key] = (object) $relationship;
  500. $form_state['rebuild'] = TRUE;
  501. }
  502. /**
  503. * There is no user input for the remove buttons so there is no need to validate
  504. * However, both a submit & validate need to be specified so this is just a placeholder
  505. *
  506. * Called by the many remove buttons in chado_node_relationships_form
  507. *
  508. * @ingroup tripal_chado_node_api
  509. */
  510. function chado_node_relationships_form_remove_button_validate($form, $form_state) {
  511. // No Validation needed for remove
  512. }
  513. /**
  514. * Remove the correct relationship from the form
  515. * Called by the many remove buttons in chado_node_relationships_form
  516. *
  517. * @ingroup tripal_chado_node_api
  518. */
  519. function chado_node_relationships_form_remove_button_submit(&$form, &$form_state) {
  520. // if the chado_relationships array is not set then this is the first time modifying the
  521. // relationship table. this means we need to include all the relationships from the db
  522. if (!isset($form_state['chado_relationships'])) {
  523. chado_node_relationships_form_create_relationship_formstate_array($form, $form_state);
  524. }
  525. // remove the specified relationship from the form relationship table
  526. if(preg_match('/rel_remove-([^-]+-[^-]+)/',$form_state['triggering_element']['#name'],$match)) {
  527. $key = $match[1];
  528. if (array_key_exists($key, $form_state['chado_relationships'])) {
  529. unset($form_state['chado_relationships'][$key]);
  530. }
  531. }
  532. $form_state['rebuild'] = TRUE;
  533. }
  534. /**
  535. * Ajax function which returns the section of the form to be re-rendered
  536. *
  537. * @ingroup tripal_chado_node_api
  538. */
  539. function chado_node_relationships_form_ajax_update($form, $form_state) {
  540. return $form['relationships']['relationship_table'];
  541. }
  542. /**
  543. * Creates an array in form_state containing the existing relationships. This array is
  544. * then modified by the add/remove buttons and used as a source for rebuilding the form.
  545. *
  546. * $form_state['chado_relationships'] = array(
  547. * '[type_id]-[rank]' => array(
  548. * 'object_id' => [the _relationship.object_id value],
  549. * 'object_name' => [the base_table.uniquename value linked on base_foreign_key=object_id],
  550. * 'subject_id' => [the _relationship.subject_id value],
  551. * 'subject_name' => [the base_table.uniquename value linked on base_foreign_key=subject_id],
  552. * 'type_id' => [the _relationship.type_id value],
  553. * 'type_name' => [the cvterm.name value linked on type_id],
  554. * 'rank' => [the _relationship.rank value],
  555. * ),
  556. * );
  557. *
  558. * @ingroup tripal_chado_node_api
  559. */
  560. function chado_node_relationships_form_create_relationship_formstate_array($form, &$form_state) {
  561. $form_state['chado_relationships'] = array();
  562. foreach (element_children($form['relationships']['relationship_table']) as $type_id) {
  563. if ($type_id != 'new') {
  564. foreach (element_children($form['relationships']['relationship_table'][$type_id]) as $rank) {
  565. $element = $form['relationships']['relationship_table'][$type_id][$rank];
  566. $rel = array(
  567. 'type_id' => $element['type_id']['#value'],
  568. 'object_id' => $element['object_id']['#value'],
  569. 'subject_id' => $element['subject_id']['#value'],
  570. 'type_name' => $element['type_name']['#markup'],
  571. 'object_name' => $element['object_name']['#markup'],
  572. 'subject_name' => $element['subject_name']['#markup'],
  573. 'rank' => $element['rank']['#markup']
  574. );
  575. $key = $rel['type_id'] . '-' . $rel['rank'];
  576. $form_state['chado_relationships'][$key] = (object) $rel;
  577. }
  578. }
  579. }
  580. }
  581. /**
  582. * Function to theme the add/remove relationships form into a table
  583. *
  584. * @ingroup tripal_chado_node_api
  585. */
  586. function theme_chado_node_relationships_form_table($variables) {
  587. $element = $variables['element'];
  588. $details = unserialize($element['details']['#value']);
  589. $header = array(
  590. 'object_name' => t('Object ' . $details['base_name_field']),
  591. 'type_name' => t('Type'),
  592. 'subject_name' => t('Subject ' . $details['base_name_field']),
  593. 'rank' => t('Rank'),
  594. 'rel_action' => t('Action')
  595. );
  596. $rows = array();
  597. foreach (element_children($element) as $type_id) {
  598. if ($type_id == 'new') {
  599. $row = array();
  600. $row['data'] = array();
  601. foreach ($header as $fieldname => $title) {
  602. if ($fieldname == 'subject_name') {
  603. $row['data'][] = drupal_render($element[$type_id][$fieldname]) . drupal_render($element[$type_id]['subject_is_current']);
  604. }
  605. elseif ($fieldname == 'object_name') {
  606. $row['data'][] = drupal_render($element[$type_id][$fieldname]) . drupal_render($element[$type_id]['object_is_current']);
  607. }
  608. else {
  609. $row['data'][] = drupal_render($element[$type_id][$fieldname]);
  610. }
  611. }
  612. $rows[] = $row;
  613. }
  614. else {
  615. foreach (element_children($element[$type_id]) as $rank) {
  616. $row = array();
  617. $row['data'] = array();
  618. foreach ($header as $fieldname => $title) {
  619. $row['data'][] = drupal_render($element[$type_id][$rank][$fieldname]);
  620. }
  621. $rows[] = $row;
  622. }
  623. }
  624. }
  625. return theme('table', array(
  626. 'header' => $header,
  627. 'rows' => $rows
  628. ));
  629. }
  630. /**
  631. * This function is used in a hook_insert, hook_update for a node form
  632. * when the relationships form has been added to the form. It retrieves all of the relationships
  633. * and returns them in an array of the format:
  634. *
  635. * $relationships[<type_id>][<rank>] = array(
  636. * 'subject_id' => <subject_id>,
  637. * 'object_id' => <object_id>,
  638. * );
  639. *
  640. * This array can then be used for inserting or updating relationships manually
  641. *
  642. * @param $node
  643. *
  644. * @return
  645. * A relationship array
  646. *
  647. * @ingroup tripal_chado_node_api
  648. */
  649. function chado_node_relationships_form_retreive($node) {
  650. $rels = array();
  651. if (isset($node->relationship_table)) {
  652. foreach ($node->relationship_table as $type_id => $elements) {
  653. if ($type_id != 'new' AND $type_id != 'details') {
  654. foreach ($elements as $rank => $relationships) {
  655. $rels[$type_id][$rank]['subject_id'] = $relationships['subject_id'];
  656. $rels[$type_id][$rank]['object_id'] = $relationships['object_id'];
  657. }
  658. }
  659. }
  660. }
  661. return $rels;
  662. }
  663. /**
  664. * This function is used in hook_insert or hook_update and handles inserting of
  665. * relationships between the current nodetype and other memebers of the same nodetype
  666. *
  667. * @param $node
  668. * The node passed into hook_insert & hook_update
  669. * @param $details
  670. * - relationship_table: the name of the _relationship linking table (ie: feature_relationship)
  671. * - foreignkey_value: the value of the foreign key (ie: 445, if there exists a feature where feature_id=445)
  672. * @param $retrieved_relationships
  673. * An array of relationships from chado_node_relationships_form_retreive($node). This
  674. * can be used if you need special handling for some of the relationships.
  675. *
  676. * @ingroup tripal_chado_node_api
  677. */
  678. function chado_node_relationships_form_update_relationships($node, $details, $retrieved_relationships = FALSE) {
  679. $relationship_table = $details['relationship_table'];
  680. $current_id = $details['foreignkey_value'];
  681. if (isset($node->relationship_table) AND ($current_id > 0)) {
  682. // determine whether there is a rank in this relationship table
  683. $form_details = unserialize($node->relationship_table['details']);
  684. $has_rank = $form_details['table_has_rank'];
  685. // First remove existing relationships links
  686. tripal_core_chado_delete(
  687. $relationship_table,
  688. array($form_details['subject_field_name'] => $current_id)
  689. );
  690. tripal_core_chado_delete(
  691. $relationship_table,
  692. array($form_details['object_field_name'] => $current_id)
  693. );
  694. // Add back in relationships as needed
  695. if ($retrieved_relationships) {
  696. $relationships = $retrieved_relationships;
  697. }
  698. else {
  699. $relationships = chado_node_relationships_form_retreive($node);
  700. }
  701. foreach ($relationships as $type_id => $ranks) {
  702. foreach ($ranks as $rank => $element) {
  703. $values = array(
  704. $form_details['subject_field_name'] => $element['subject_id'],
  705. 'type_id' => $type_id,
  706. $form_details['object_field_name'] => $element['object_id']
  707. );
  708. // Set the current id if not already
  709. // this is usually only necessary in an insert
  710. if (empty($values[$form_details['subject_field_name']])) {
  711. $values[$form_details['subject_field_name']] = $current_id;
  712. }
  713. if (empty($values[$form_details['object_field_name']])) {
  714. $values[$form_details['object_field_name']] = $current_id;
  715. }
  716. if ($has_rank) {
  717. // Ensure that the rank is Set & Current
  718. $rank_select = tripal_core_get_max_chado_rank(
  719. $relationship_table,
  720. array(
  721. $form_details['subject_field_name'] => $values['subject_id'],
  722. 'type_id' => $values['type_id'],
  723. $form_details['object_field_name'] => $values['object_id'],
  724. )
  725. );
  726. $values['rank'] = $rank_select + 1;
  727. }
  728. // add relationship
  729. $success_link = tripal_core_chado_insert(
  730. $relationship_table,
  731. $values
  732. );
  733. }
  734. }
  735. }
  736. }
  737. /**
  738. * Handles autocomplete for subject & object id
  739. *
  740. * @param $string
  741. * The part of the string already typed in the textfield
  742. */
  743. function chado_node_relationships_name_to_id_callback($base_table, $name_field, $string) {
  744. $matches = array();
  745. $base_key = $base_table.'_id';
  746. $result = db_select('chado.'.$base_table, 'b')
  747. ->fields('b', array($base_key, $name_field))
  748. ->condition($name_field, '%' . db_like($string) . '%', 'LIKE')
  749. ->execute();
  750. // save the query to matches
  751. foreach ($result as $row) {
  752. $key = '('.$row->{$base_key}.') '.substr($row->{$name_field},0,50) . '...';
  753. $matches[$key] = check_plain($row->{$name_field});
  754. }
  755. // return for JS
  756. drupal_json_output($matches);
  757. }