tripal_stock-relationships.inc 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533
  1. <?php
  2. /**
  3. * @file
  4. * @todo Add file header description
  5. */
  6. /**
  7. *
  8. *
  9. * @ingroup tripal_stock
  10. */
  11. function tripal_stock_add_ALL_relationships_page($node) {
  12. $output = '';
  13. $output .= tripal_stock_add_chado_properties_progress('relationships') . '<br />';
  14. $output .= '<b>All Relationships should include the CURRENT Individual (' . $node->stock->uniquename . ')</b><br />';
  15. $output .= '<br />';
  16. $output .= theme('tripal_stock_relationships', $node);
  17. $output .= '<br /><br />';
  18. $output .= drupal_get_form('tripal_stock_add_ONE_relationship_form', $node);
  19. $output .= '<br />';
  20. $output .= drupal_get_form('tripal_stock_add_chado_properties_navigate', 'relationships', $node->nid);
  21. return $output;
  22. }
  23. /**
  24. * Implements Hook_form(): Handles adding of Relationships to Stocks
  25. *
  26. * @ingroup tripal_stock
  27. */
  28. function tripal_stock_add_ONE_relationship_form($form_state, $node) {
  29. $stock_id = $node->stock->stock_id;
  30. $organism_id = $node->stock->organism_id->organism_id;
  31. $_SESSION['organism'] = $organism_id; //needed for autocomplete enter stock to work
  32. $form['rel_nid'] = array(
  33. '#type' => 'hidden',
  34. '#value' => $node->nid
  35. );
  36. $form['add_relationships'] = array(
  37. '#type' => 'fieldset',
  38. '#title' => t('Add Relationships') . '<span class="form-optional" title="This field is optional">(optional)</span>',
  39. );
  40. $form['add_relationships']['description'] = array(
  41. '#type' => 'item',
  42. '#value' => t('Relationships are specified as follows: (Subject) (Type of Relationship) (Object). For example, Fred is_the_paternal_parent_of Matty, where Fred & Matty are both stocks.')
  43. );
  44. $form['add_relationships']['subject_id'] = array(
  45. '#type' => 'textfield',
  46. '#title' => t('Subject'),
  47. '#description' => 'The Uniquename, Name, Database Reference or Synonym of a Stock can be used here',
  48. );
  49. $type_options = tripal_cv_get_cvterm_options( variable_get('chado_stock_relationship_cv', 'null') );
  50. $type_options[0] = 'Select a Type';
  51. ksort($type_options);
  52. $form['add_relationships']['type_id'] = array(
  53. '#type' => 'select',
  54. '#title' => t('Type of Relationship'),
  55. '#options' => $type_options
  56. );
  57. $form['add_relationships']['object_id'] = array(
  58. '#type' => 'textfield',
  59. '#title' => t('Object'),
  60. '#description' => 'The Uniquename, Name, Database Reference or Synonym of a Stock can be used here',
  61. );
  62. $form['add_relationships']['r_description'] = array(
  63. '#type' => 'textarea',
  64. '#title' => t('Notes on the relationship') . '<span class="form-optional" title="This field is optional">+</span>',
  65. '#description' => t('Should not include Genotypes and Phenotypes'),
  66. );
  67. $form['add_relationships']['submit'] = array(
  68. '#type' => 'submit',
  69. '#value' => t('Add a Relationship')
  70. );
  71. $form['add_relationships']['r_stock_id'] = array(
  72. '#type' => 'value',
  73. '#value' => $stock_id,
  74. '#required' => TRUE
  75. );
  76. $form['add_relationships']['r_stock_uniquename'] = array(
  77. '#type' => 'value',
  78. '#value' => $node->stock->uniquename,
  79. '#required' => TRUE
  80. );
  81. return $form;
  82. }
  83. /**
  84. *
  85. *
  86. * @ingroup tripal_stock
  87. */
  88. function tripal_stock_add_ONE_relationship_form_validate($form, &$form_state) {
  89. //Require Validation if adding
  90. if ($form_state['clicked_button']['#value'] == t('Add a Relationship') ) {
  91. // check valid stock selected for subject
  92. $subject_results = tripal_stock_get_stock_by_name_identifier( $form_state['values']['subject_id'], $_SESSION['organism']);
  93. if (sizeof($subject_results) > 1) {
  94. $links= array();
  95. for ($i=0; $i<sizeof($subject_results); $i++) {
  96. $links[] = l($i+1, "node/" . $subject_results[$i]->nid); }
  97. $message = "Too many stocks match '" . $form_state['values']['subject_id'] . "'! "
  98. . " Please refine your input to match ONLY ONE stock. <br />"
  99. . "To aid in this process, here are the stocks that match your initial input: "
  100. . join(', ', $links);
  101. form_set_error('subject_id', $message);
  102. }
  103. elseif (sizeof($subject_results) < 1) {
  104. form_set_error('subject_id', t("There are no stocks matching your input. Please check your input for typos and/or lookup the stock <a href='!url'>here</a>", array('!url' => url('stocks'))));
  105. }
  106. elseif (sizeof($subject_results) == 1) {
  107. $form_state['values']['subject_id'] = $subject_results[0]->stock->stock_id;
  108. }
  109. // check valid stock selected for object
  110. $object_results = tripal_stock_get_stock_by_name_identifier( $form_state['values']['object_id'], $_SESSION['organism']);
  111. if (sizeof($object_results) > 1) {
  112. $links= array();
  113. for ($i=0; $i<sizeof($object_results); $i++) {
  114. $links[] = l($i+1, "node/" . $object_results[$i]->nid); }
  115. $message = t("Too many stocks match '%object'! Please refine your input to match
  116. ONLY ONE stock. <br /> To aid in this process, here are the stocks that match your
  117. initial input: %stocks.",
  118. array('%object' => $form_state['values']['object_id'],
  119. '%stocks' => join(', ', $links)
  120. )
  121. );
  122. form_set_error('object_id', $message);
  123. }
  124. elseif (sizeof($object_results) < 1) {
  125. form_set_error('object_id', t("There are no stocks matching your input. Please check your input for typos and/or lookup the stock <a href='!url'>here</a>", array('!url' => url('stocks'))));
  126. }
  127. elseif (sizeof($object_results) == 1) {
  128. $form_state['values']['object_id'] = $object_results[0]->stock->stock_id;
  129. }
  130. // check valid type selected
  131. if ($form_state['values']['type_id'] == 0) {
  132. form_set_error('type_id', 'Please select a type of relationship.');
  133. }
  134. else {
  135. $sql = "SELECT count(*) as count FROM {cvterm} WHERE cvterm_id = :cvterm_id";
  136. $tmp_obj = chado_query($sql, array(':cvterm_id' => $form_state['values']['type_id']))->fetchObject();
  137. if ($tmp_obj->count != 1) {
  138. form_set_error('type_id', 'The type you selected is not valid. Please choose another one.');
  139. }
  140. }
  141. // check either subject or object is the current stock
  142. if ( $subject_results[0]->nid != $form_state['values']['rel_nid'] ) {
  143. if ( $object_results[0]->nid != $form_state['values']['rel_nid'] ) {
  144. form_set_error('subject_id', 'Either Subject or Object must be the current stock (' . $form_state['values']['r_stock_uniquename'] . ').');
  145. }
  146. }
  147. } //end of require validation if adding relationship
  148. }
  149. /**
  150. *
  151. *
  152. * @ingroup tripal_stock
  153. */
  154. function tripal_stock_add_ONE_relationship_form_submit($form, &$form_state) {
  155. if ($form_state['values']['subject_id'] > 0) {
  156. $sql = "
  157. INSERT INTO {stock_relationship} (subject_id, type_id, object_id, value)
  158. VALUES (:subject_id, :type_id, :object_id, :value)
  159. ";
  160. chado_query($sql, array(':subject_id' => $form_state['values']['subject_id'],
  161. ':type_id' => $form_state['values']['type_id'],
  162. ':object_id' => $form_state['values']['object_id'],
  163. ':value' => $form_state['values']['r_description']));
  164. drupal_set_message(t('Successfully Added Relationship.'));
  165. } //end of insert relationship
  166. }
  167. /**
  168. *
  169. *
  170. * @ingroup tripal_stock
  171. */
  172. function tripal_stock_edit_ALL_relationships_page($node) {
  173. $output = '';
  174. $output .= drupal_get_form('tripal_stock_edit_ALL_relationships_form', $node);
  175. $output .= '<br />';
  176. $output .= drupal_get_form('tripal_stock_add_ONE_relationship_form', $node);
  177. $output .= '<br />';
  178. $output .= drupal_get_form('tripal_stock_back_to_stock_button', $node->nid);
  179. return $output;
  180. }
  181. /**
  182. * Implements Hook_form()
  183. *
  184. * @ingroup tripal_stock
  185. */
  186. function tripal_stock_edit_ALL_relationships_form($form_state, $node) {
  187. $form = array();
  188. // All Stock Relationships
  189. $node = tripal_core_expand_chado_vars($node, 'table', 'stock_relationship');
  190. // compile all relationships into one variable
  191. $relationships = array();
  192. if (is_array($node->stock->stock_relationship->subject_id)) {
  193. foreach ($node->stock->stock_relationship->subject_id as $r) {
  194. $relationships[$r->stock_relationship_id] = $r;
  195. }
  196. }
  197. elseif (is_object($node->stock->stock_relationship->subject_id)) {
  198. $relationships[$node->stock->stock_relationship->subject_id->stock_relationship_id] = $node->stock->stock_relationship->subject_id;
  199. }
  200. if (is_array($node->stock->stock_relationship->object_id)) {
  201. foreach ($node->stock->stock_relationship->object_id as $r) {
  202. $relationships[$r->stock_relationship_id] = $r;
  203. }
  204. }
  205. elseif (is_object($node->stock->stock_relationship->object_id)) {
  206. $relationships[$node->stock->stock_relationship->object_id->stock_relationship_id] = $node->stock->stock_relationship->object_id;
  207. }
  208. $form['nid'] = array(
  209. '#type' => 'hidden',
  210. '#value' => $node->nid
  211. );
  212. $form['r_stock_uniquename'] = array(
  213. '#type' => 'hidden',
  214. '#value' => $node->stock->uniquename
  215. );
  216. $i=0;
  217. if (sizeof($relationships) != 0) {
  218. foreach ($relationships as $r) {
  219. $i++;
  220. $form["num-$i"] = array(
  221. '#type' => 'item',
  222. '#value' => $i . '.'
  223. );
  224. $form["id-$i"] = array(
  225. '#type' => 'hidden',
  226. '#value' => $r->stock_relationship_id
  227. );
  228. //Enter relationship specific fields
  229. if ( $node->stock->stock_id != $r->subject_id->stock_id ) {
  230. $default = $r->subject_id->uniquename;
  231. $description = l($r->subject_id->name, 'node/' . $r->subject_id->nid);
  232. }
  233. else { $default = $node->stock->uniquename; $description = 'Current Stock'; }
  234. $form["subject_id-$i"] = array(
  235. '#type' => 'textfield',
  236. //'#title' => t('Subject'),
  237. '#required' => TRUE,
  238. '#size' => 30,
  239. '#default_value' => $default,
  240. '#description' => t('%description', array('%description' => $description)),
  241. );
  242. $type_options = tripal_cv_get_cvterm_options( variable_get('chado_stock_relationship_cv', 'null') );
  243. ksort($type_options);
  244. $form["type_id-$i"] = array(
  245. '#type' => 'select',
  246. //'#title' => t('Type of Relationship'),
  247. '#options' => $type_options,
  248. '#required' => TRUE,
  249. '#default_value' => $r->type_id->cvterm_id
  250. );
  251. if ( $node->stock->stock_id != $r->object_id->stock_id ) {
  252. $default = $r->object_id->uniquename;
  253. $description = l($r->object_id->name, 'node/' . $r->object_id->nid);
  254. }
  255. else { $default = $node->stock->uniquename; $description = 'Current Stock'; }
  256. $form["object_id-$i"] = array(
  257. '#type' => 'textfield',
  258. //'#title' => t('Object'),
  259. '#required' => TRUE,
  260. '#size' => 30,
  261. '#default_value' => $default,
  262. '#description' => $description
  263. );
  264. $form["submit-$i"] = array(
  265. '#type' => 'submit',
  266. '#value' => t("Delete #$i")
  267. );
  268. }} //end of foreach relationship
  269. $form['num_relationships'] = array(
  270. '#type' => 'hidden',
  271. '#value' => $i
  272. );
  273. $form["submit-edits"] = array(
  274. '#type' => 'submit',
  275. '#value' => t('Update Relationships')
  276. );
  277. return $form;
  278. }
  279. /**
  280. *
  281. *
  282. * @ingroup tripal_stock
  283. */
  284. function tripal_stock_edit_ALL_relationships_form_validate($form, &$form_state) {
  285. // Only Require if Updating Relationships
  286. if ($form_state['clicked_button']['#value'] == t('Update Relationships') ) {
  287. for ($i=1; $i<=$form_state['values']['num_relationships']; $i++) {
  288. // check valid stock selected for subject
  289. $subject_results = tripal_stock_get_stock_by_name_identifier( $form_state['values']["subject_id-$i"], $_SESSION['organism']);
  290. if (sizeof($subject_results) > 1) {
  291. $links= array();
  292. for ($j=0; $j<sizeof($subject_results); $j++) {
  293. $links[] = l($j+1, "node/" . $subject_results[$j]->nid); }
  294. $message = t("Too many stocks match '%subject'! Please refine your input to match
  295. ONLY ONE stock. <br /> To aid in this process, here are the stocks that match
  296. your initial input: %stocks",
  297. array('%subject' => $form_state['values']["subject_id-$i"],
  298. '%stocks' => join(', ', $links)
  299. )
  300. );
  301. form_set_error("subject_id-$i", $message);
  302. }
  303. elseif (sizeof($subject_results) < 1) {
  304. form_set_error("subject_id-$i", t("There are no stocks matching your input. Please check your input for typos and/or lookup the stock <a href='!url'>here</a>", array('!url' => url('stocks'))));
  305. }
  306. elseif (sizeof($subject_results) == 1) {
  307. $form_state['values']["subject_id-$i"] = $subject_results[0]->stock->stock_id;
  308. }
  309. // check valid stock selected for object
  310. $object_results = tripal_stock_get_stock_by_name_identifier( $form_state['values']["object_id-$i"], $_SESSION['organism']);
  311. if (sizeof($object_results) > 1) {
  312. $links= array();
  313. for ($j=0; $j<sizeof($object_results); $j++) {
  314. $links[] = l($j+1, "node/" . $object_results[$j]->nid); }
  315. $message = "Too many stocks match '" . $form_state['values']["object_id-$i"] . "'! "
  316. . "Please refine your input to match ONLY ONE stock. <br />"
  317. . "To aid in this process, here are the stocks that match your initial input: "
  318. . join(', ', $links);
  319. form_set_error("object_id-$i", $message);
  320. }
  321. elseif (sizeof($object_results) < 1) {
  322. form_set_error("object_id-$i", t("There are no stocks matching your input. Please check your input for typos and/or lookup the stock <a href='!url'>here</a>", array('!url' => url('stocks'))));
  323. }
  324. elseif (sizeof($object_results) == 1) {
  325. $form_state['values']["object_id-$i"] = $object_results[0]->stock->stock_id;
  326. }
  327. // check valid type selected
  328. if ($form_state['values']["type_id-$i"] == 0) {
  329. form_set_error('type_id', 'Please select a type of relationship.');
  330. }
  331. else {
  332. $sql = "SELECT count(*) as count FROM {cvterm} WHERE cvterm_id= :cvterm_id";
  333. $tmp_obj = chado_query($sql, array(':cvterm_id' => $form_state['values']["type_id-$i"]))->fetchObject();
  334. if ($tmp_obj->count != 1) {
  335. form_set_error("type_id-$i", 'The type you selected is not valid. Please choose another one.');
  336. }
  337. }
  338. // check either subject or object is the current stock
  339. if ( $subject_results[0]->nid != $form_state['values']['nid'] ) {
  340. if ( $object_results[0]->nid != $form_state['values']['nid'] ) {
  341. form_set_error("subject_id-$i", 'Either Subject or Object must be the current stock (' . $form_state['values']['r_stock_uniquename'] . ').');
  342. }
  343. }
  344. } // end of for each relationship
  345. } //end of if updating relationships
  346. }
  347. /**
  348. *
  349. *
  350. * @ingroup tripal_stock
  351. */
  352. function tripal_stock_edit_ALL_relationships_form_submit($form, &$form_state) {
  353. if ($form_state['clicked_button']['#value'] == t('Update Relationships') ) {
  354. //Update all
  355. for ($i=1; $i<=$form_state['values']['num_relationships']; $i++) {
  356. //process stock textfields
  357. tripal_stock_update_relationship(
  358. $form_state['values']["id-$i"],
  359. $form_state['values']["subject_id-$i"],
  360. $form_state['values']["type_id-$i"],
  361. $form_state['values']["object_id-$i"]
  362. );
  363. }
  364. drupal_set_message(t("Updated all Relationships"));
  365. drupal_goto('node/' . $form_state['values']['nid']);
  366. }
  367. elseif ( preg_match('/Delete #(\d+)/', $form_state['clicked_button']['#value'], $matches) ) {
  368. $i = $matches[1];
  369. tripal_stock_delete_relationship($form_state['values']["id-$i"]);
  370. drupal_set_message(t("Deleted Relationship"));
  371. }
  372. elseif ($form_state['clicked_button']['#value'] == t('Back to Stock') ) {
  373. drupal_goto('node/' . $form_state['values']['nid']);
  374. }
  375. else {
  376. drupal_set_message(t("Unrecognized Button Pressed"), 'error');
  377. }
  378. }
  379. /**
  380. *
  381. *
  382. * @ingroup tripal_stock
  383. */
  384. function tripal_stock_update_relationship($stock_relationship_id, $subject_id, $cvterm_id, $object_id) {
  385. $sql = "
  386. UPDATE {stock_relationship} SET subject_id = :subject_id, type_id = :type_id, object_id = :object_id
  387. WHERE stock_relationship_id = :stock_relationship_id
  388. ";
  389. chado_query($sql, array(':subject_id' => $subject_id, ':type_id' => $cvterm_id,
  390. ':object_id' => $object_id, ':stock_relationship_id' => $stock_relationship_id));
  391. }
  392. /**
  393. *
  394. *
  395. * @ingroup tripal_stock
  396. */
  397. function tripal_stock_delete_relationship($stock_relationship_id) {
  398. $sql = "DELETE FROM {stock_relationship} WHERE stock_relationship_id = :stock_relationship_id";
  399. chado_query($sql, array(':stock_relationship_id' => $stock_relationship_id));
  400. }
  401. /**
  402. *
  403. *
  404. * @ingroup tripal_stock
  405. */
  406. function theme_tripal_stock_edit_ALL_relationships_form($form) {
  407. $output = '';
  408. $output .= '<br /><fieldset>';
  409. $output .= '<legend>Edit Already Existing Relationships<span class="form-optional" title="This field is optional">(optional)</span></legend>';
  410. $output .= '<p>Each relationship for this stock is listed below, one per line. The textboxes indicating ' .
  411. 'the subject and object of the relationship can contain the uniquename, name, database ' .
  412. 'reference or synonym of a stock of the same organism.</p>';
  413. $output .= '<table>';
  414. $output .= '<tr><th>#</th><th>Subject</th><th>Type</th><th>Object</th><th></th></tr>';
  415. for ($i=1; $i<=$form['num_relationships']['#value']; $i++) {
  416. $output .= '<tr><td>' . drupal_render($form["num-$i"]) . '</td><td>'
  417. . drupal_render($form["subject_id-$i"]) . '</td><td>'
  418. . drupal_render($form["type_id-$i"]) . '</td><td>'
  419. . drupal_render($form["object_id-$i"]) . '</td><td>'
  420. . drupal_render($form["submit-$i"]) . '</td></tr>';
  421. }
  422. $output .= '</table><br />';
  423. $output .= drupal_render($form);
  424. $output .= '</fieldset>';
  425. return $output;
  426. }
  427. /**
  428. *
  429. *
  430. * @ingroup tripal_stock
  431. */
  432. function tripal_stock_list_relationships_for_node($stock_name, $subject_relationships, $object_relationships) {
  433. if (!empty($subject_relationships) OR !empty($object_relationships) ) {
  434. $output = '<table>';
  435. $output .= '<tr><th>Subject</th><th>Relationship Type</th><th>Object</th></tr>';
  436. if (!empty($subject_relationships) ) {
  437. foreach ($subject_relationships as $s) {
  438. $output .= '<tr><td>' . $s->subject_name . '</td><td>' . $s->relationship_type . '</td><td>' . $stock_name . '</td></tr>';
  439. }
  440. }
  441. if (!empty($object_relationships) ) {
  442. foreach ($object_relationships as $o) {
  443. $output .= '<tr><td>' . $stock_name . '</td><td>' . $o->relationship_type . '</td><td>' . $o->object_name . '</td></tr>';
  444. } // end of foreach property
  445. }
  446. $output .= '</table>';
  447. }
  448. else {
  449. $output = 'No Relationships Involving the Current Stock';
  450. }
  451. return $output;
  452. }