tripal_stock-db_references.inc 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439
  1. <?php
  2. /**
  3. * @file
  4. * @todo Add file header description
  5. */
  6. /**
  7. * Display the ADD Database References to Stock Page
  8. *
  9. * This page is displayed after the stock is created as part of a simulated multi-part form
  10. *
  11. * @param $node
  12. * The stock node to add the database references to
  13. *
  14. * @return
  15. * HTML formatted output
  16. *
  17. * @ingroup tripal_stock
  18. */
  19. function tripal_stock_add_ALL_dbreferences_page($node) {
  20. $output = '';
  21. $output .= tripal_stock_add_chado_properties_progress('db_references') . '<br />';
  22. $output .= '<b>All Database References should strictly pertain to THE CURRENT Individual</b><br />';
  23. $output .= '<br />';
  24. $output .= theme('tripal_stock_references', $node);
  25. $output .= '<br /><br />';
  26. $output .= drupal_get_form('tripal_stock_add_ONE_dbreference_form', $node);
  27. $output .= '<br />';
  28. $output .= drupal_get_form('tripal_stock_add_chado_properties_navigate', 'db_references', $node->nid);
  29. return $output;
  30. }
  31. /**
  32. * Implements Hook_form(): Handles adding of Database References to Stocks
  33. *
  34. * @param $form_state
  35. * An array describing the current state of the form
  36. * @param $node
  37. * The stock node to add the database reference to
  38. *
  39. * @return
  40. * An array describing the form to be rendered
  41. *
  42. * @ingroup tripal_stock
  43. */
  44. function tripal_stock_add_ONE_dbreference_form($form_state, $node) {
  45. $stock_id = $node->stock->stock_id;
  46. $form['db_nid'] = array(
  47. '#type' => 'hidden',
  48. '#value' => $node->nid
  49. );
  50. $form['add_dbreference'] = array(
  51. '#type' => 'fieldset',
  52. '#title' => t('Add Database References') . '<span class="form-optional" title="This field is optional">(optional)</span>',
  53. );
  54. $form['add_properties']['db_stock_id'] = array(
  55. '#type' => 'value',
  56. '#value' => $stock_id,
  57. '#required' => TRUE
  58. );
  59. $form['add_dbreference']['accession'] = array(
  60. '#type' => 'textfield',
  61. '#title' => t('Accession Number'),
  62. );
  63. $form['add_dbreference']['db_description'] = array(
  64. '#type' => 'textarea',
  65. '#title' => t('Description of Database Reference') . '<span class="form-optional" title="This field is optional">+</span>',
  66. '#description' => t('Optionally enter a description about the database accession.')
  67. );
  68. $db_options = tripal_db_get_db_options();
  69. $db_options[0] = 'Select a Database';
  70. ksort($db_options);
  71. $form['add_dbreference']['database'] = array(
  72. '#type' => 'select',
  73. '#title' => t('Database'),
  74. '#options' => $db_options,
  75. );
  76. $form['add_dbreference']['submit'] = array(
  77. '#type' => 'submit',
  78. '#value' => t('Add Database Reference')
  79. );
  80. return $form;
  81. }
  82. /**
  83. * Implements hook_form_validate(): Validates the input from tripal_stock_add_ONE_dbreference_form()
  84. *
  85. * @param $form
  86. * An array describing the form that was rendered
  87. * @param $form_state
  88. * An array describing the current state of the form including user input
  89. *
  90. * @ingroup tripal_stock
  91. */
  92. function tripal_stock_add_ONE_dbreference_form_validate($form, &$form_state) {
  93. // Only ensure db reference valid if adding
  94. if ($form_state['clicked_button']['#value'] == t('Add Database Reference') ) {
  95. //Do work of required validators
  96. if ($form_state['values']['accession'] == '') {
  97. form_set_error('accession', 'Accession field is Required.');
  98. }
  99. // Check database is valid db_id in chado
  100. if ( $form_state['values']['database'] > 0) {
  101. $sql = "SELECT count(*) as count FROM {db} WHERE db_id = :db_id";
  102. $tmp_obj = chado_query($sql, array(':db_id' => $form_state['values']['database']))->fetchObject();
  103. if ($tmp_obj->count != 1) {
  104. form_set_error('database', 'The database you selected is not valid. Please choose another one.');
  105. }
  106. }
  107. else {
  108. form_set_error('database', 'Please select a database');
  109. }
  110. // Check Accession is unique for database
  111. $sql = "SELECT count(*) as count FROM {dbxref} WHERE accession = :accession";
  112. $tmp_obj = chado_query($sql, array(':accession' => $form_state['values']['accession']))->fetchObject();
  113. if ($tmp_obj->count > 0) {
  114. form_set_error('accession', 'This accession has already been assigned to another stock.');
  115. }
  116. } //end of if adding
  117. }
  118. /**
  119. * Implements hoook_form_submit(): Actually adds the db reference to the stock
  120. *
  121. * @param $form
  122. * An array describing the form that was rendered
  123. * @param $form_state
  124. * An array describing the current state of the form including user input
  125. *
  126. * @ingroup tripal_stock
  127. */
  128. function tripal_stock_add_ONE_dbreference_form_submit($form, &$form_state) {
  129. // FIX: Sometimes on programatic submission of form (drupal_execute) values in the form state get lost
  130. // however, the post values always seem to be correct
  131. if (empty($form_state['values']['db_stock_id'])) {
  132. $form_state['values']['db_stock_id'] = $form_state['clicked_button']['#post']['db_stock_id']; }
  133. // Only Create if valid
  134. if ($form_state['values']['database'] > 0) {
  135. // create dbxref
  136. $sql = "
  137. INSERT INTO {dbxref} (db_id, accession, description)
  138. VALUES (:db_id, :accession, :description)
  139. ";
  140. chado_query($sql, array(':db_id' => $form_state['values']['database'],
  141. ':accession' => $form_state['values']['accession'],
  142. ':description' => $form_state['values']['db_description']
  143. ));
  144. //create stock_dbxref
  145. $dbxref = tripal_db_get_dbxref_by_accession($form_state['values']['accession'], $form_state['values']['database']);
  146. if (!empty($dbxref->dbxref_id)) {
  147. $sl = "INSERT INTO {stock_dbxref} (stock_id, dbxref_id) VALUES (:stock_id, :dbxref_id)";
  148. chado_query($sql, array(':stock_id' => $form_state['values']['db_stock_id'],
  149. ':dbxref_id' => $dbxref->dbxref_id));
  150. drupal_set_message(t('Successfully Added Database Reference'));
  151. }
  152. else {
  153. drupal_set_message(t('Database reference NOT successfully created...'), 'error');
  154. } //end of if dbxref was created successfully
  155. } //end of if valid db reference
  156. }
  157. /**
  158. * Display the EDIT Database References to Stock Page
  159. *
  160. * This page is displayed as a tab on each stock details page (by default)
  161. *
  162. * @param $node
  163. * The stock node to add the database references to
  164. *
  165. * @return
  166. * HTML formatted output
  167. *
  168. * @ingroup tripal_stock
  169. */
  170. function tripal_stock_edit_ALL_dbreferences_page($node) {
  171. $output = '';
  172. $output .= drupal_get_form('tripal_stock_edit_ALL_db_references_form', $node);
  173. $output .= '<br />';
  174. $output .= drupal_get_form('tripal_stock_add_ONE_dbreference_form', $node);
  175. $output .= '<br />';
  176. $output .= drupal_get_form('tripal_stock_back_to_stock_button', $node->nid);
  177. return $output;
  178. }
  179. /**
  180. * Implements Hook_form(): Handles adding of Database References to Stocks
  181. *
  182. * Specifically this adds dbxrefs to a current stock using the stock_dbxref table
  183. *
  184. * @param $form_state
  185. * An array describing the current state of the form
  186. * @param $node
  187. * The stock node whose database references should be edited
  188. *
  189. * @return
  190. * An array describing the form to be rendered
  191. *
  192. * @ingroup tripal_stock
  193. */
  194. function tripal_stock_edit_ALL_db_references_form($form_state, $node) {
  195. $form = array();
  196. // Add database references to the node
  197. $node = tripal_core_expand_chado_vars($node, 'table', 'stock_dbxref');
  198. $form['nid'] = array(
  199. '#type' => 'hidden',
  200. '#value' => $node->nid
  201. );
  202. $i=0;
  203. if (!$node->stock->stock_dbxref) {
  204. $node->stock->stock_dbxref = array();
  205. }
  206. elseif (!is_array($node->stock->stock_dbxref)) {
  207. $node->stock->stock_dbxref = array($node->stock->stock_dbxref);
  208. }
  209. if (sizeof($node->stock->stock_dbxref) != 0) {
  210. foreach ($node->stock->stock_dbxref as $ref) {
  211. $i++;
  212. $form["num-$i"] = array(
  213. '#type' => 'item',
  214. '#value' => $i . '.'
  215. );
  216. $form["accession-$i"] = array(
  217. '#type' => 'textfield',
  218. //'#title' => t('Accession'),
  219. '#size' => 30,
  220. '#required' => TRUE,
  221. '#default_value' => $ref->dbxref_id->accession
  222. );
  223. $db_options = tripal_db_get_db_options();
  224. $db_options[0] = 'Select a Database';
  225. ksort($db_options);
  226. $form["database-$i"] = array(
  227. '#type' => 'select',
  228. //'#title' => t('Database'),
  229. '#options' => $db_options,
  230. '#default_value' => $ref->dbxref_id->db_id->db_id
  231. );
  232. $form["id-$i"] = array(
  233. '#type' => 'hidden',
  234. '#value' => $ref->dbxref_id->dbxref_id
  235. );
  236. $form["submit-$i"] = array(
  237. '#type' => 'submit',
  238. '#value' => t("Delete #$i")
  239. );
  240. }} //end of foreach db ref
  241. $form['num_db_references'] = array(
  242. '#type' => 'hidden',
  243. '#value' => $i
  244. );
  245. $form["submit-edits"] = array(
  246. '#type' => 'submit',
  247. '#value' => t('Update DB References')
  248. );
  249. return $form;
  250. }
  251. /**
  252. * Implements hook_form_submit(): Actually edits the database references
  253. *
  254. * @param $form
  255. * An array representing the form
  256. * @param $form_state
  257. * An array representing the current state of the form including user input
  258. *
  259. * @ingroup tripal_stock
  260. */
  261. function tripal_stock_edit_ALL_db_references_form_submit($form, &$form_state) {
  262. if ($form_state['clicked_button']['#value'] == t('Update DB References') ) {
  263. //Update all
  264. for ($i=1; $i<=$form_state['values']['num_db_references']; $i++) {
  265. tripal_stock_update_db_reference(
  266. $form_state['values']["id-$i"],
  267. $form_state['values']["database-$i"],
  268. $form_state['values']["accession-$i"]
  269. );
  270. }
  271. drupal_set_message(t("Updated all Database References"));
  272. drupal_goto('node/' . $form_state['values']['nid']);
  273. }
  274. elseif ( preg_match('/Delete #(\d+)/', $form_state['clicked_button']['#value'], $matches) ) {
  275. $i = $matches[1];
  276. tripal_stock_delete_db_reference($form_state['values']["id-$i"]);
  277. drupal_set_message(t("Deleted Database Reference"));
  278. }
  279. else {
  280. drupal_set_message(t("Unrecognized Button Pressed"), 'error');
  281. }
  282. }
  283. /**
  284. * Updates a Database Reference
  285. *
  286. * @todo Make this function more generic ie: update all parts of the dbxref and db
  287. *
  288. * @param $dbxref_id
  289. * The unique chado identifier of the database reference to be updated
  290. * @param $database_id
  291. * The new database ID
  292. * @param $accession
  293. * The new accession
  294. *
  295. * @ingroup tripal_stock
  296. */
  297. function tripal_stock_update_db_reference($dbxref_id, $database_id, $accession) {
  298. $sql = "UPDATE {dbxref} SET db_id = :db_id, accession = :accession WHERE dbxref_id = :dbxref_id";
  299. chado_query($sql, array(':db_id' => $database_id, ':accession' => $accession, ':dbxref_id' => $dbxref_id));
  300. }
  301. /**
  302. * Deletes a given database reference
  303. *
  304. * @param $dbxref_id
  305. * The chado unique idenfier for the database reference to be deleted
  306. *
  307. * @return
  308. * TRUE on success; FALSE otherwise
  309. *
  310. * @ingroup tripal_stock
  311. */
  312. function tripal_stock_delete_db_reference($dbxref_id) {
  313. chado_query("DELETE FROM {dbxref} WHERE dbxref_id = :dbxref_id", array(':dbxref_id' => $dbxref_id));
  314. chado_query("DELETE FROM {stock_dbxref} WHERE dbxref_id = :dbxref_id", array(':dbxref_id' => $dbxref_id));
  315. }
  316. /**
  317. * Themes the Edit All Database References for a stock form
  318. *
  319. * @param $form
  320. * An array describing the form to be themed
  321. *
  322. * @return
  323. * An HTML rendering of the form
  324. *
  325. * @ingroup tripal_stock
  326. */
  327. function theme_tripal_stock_edit_ALL_db_references_form($form) {
  328. $output = '';
  329. $output .= '<br /><fieldset>';
  330. $output .= '<legend>Edit Existing Database References<span class="form-optional" title="This field is optional">(optional)</span></legend>';
  331. $output .= '<p>Below is a list of already existing database references, one per line. When entering a database reference, the accession '
  332. .'is a unique identifier for this stock in the specified database.</p>';
  333. $output .= '<table>';
  334. $output .= '<tr><th>#</th><th>Database</th><th>Accession</th><th></th></tr>';
  335. for ($i=1; $i<=$form['num_db_references']['#value']; $i++) {
  336. $output .= '<tr><td>' . drupal_render($form["num-$i"]) . '</td><td>'
  337. . drupal_render($form["database-$i"]) . '</td><td>'
  338. . drupal_render($form["accession-$i"]) . '</td><td>'
  339. . drupal_render($form["submit-$i"]) . '</td></tr>';
  340. }
  341. $output .= '</table><br />';
  342. $output .= drupal_render($form);
  343. $output .= '</fieldset>';
  344. return $output;
  345. }
  346. /**
  347. * List all database references for a given node
  348. *
  349. * @todo Make this function a theme function
  350. *
  351. * @param $db_references
  352. * An array of database references to be listed
  353. *
  354. * @return
  355. * HTML representation of the list
  356. *
  357. * @ingroup tripal_stock
  358. */
  359. function tripal_stock_list_dbreferences_for_node($db_references) {
  360. if (!empty($db_references) ) {
  361. $output = '<table>';
  362. $output .= '<tr><th>Database</th><th>Accession</th></tr>';
  363. foreach ($db_references as $db) {
  364. $output .= '<tr><td>' . $db->db_name . '</td><td>' . $db->accession . '</td></tr>';
  365. } // end of foreach db reference
  366. $output .= '</table>';
  367. }
  368. else {
  369. $output = 'No Database References Added to the Current Stock';
  370. }
  371. return $output;
  372. }