tripal_stock.chado_node.inc 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907
  1. <?php
  2. /**
  3. * @file Stock Node Functionality
  4. */
  5. /**
  6. * Implements hook_node_info(): registers a stock node type
  7. *
  8. * @return
  9. * An array describing various details of the node
  10. *
  11. * @ingroup tripal_stock
  12. */
  13. function tripal_stock_node_info() {
  14. return array(
  15. 'chado_stock' => array(
  16. 'name' => t('Stock'),
  17. 'base' => 'chado_stock',
  18. 'description' => t('A Chado Stock is a collection of material that can be sampled and have experiments performed on it.'),
  19. 'has_title' => TRUE,
  20. 'has_body' => FALSE,
  21. 'chado_node_api' => array(
  22. 'base_table' => 'stock',
  23. 'hook_prefix' => 'chado_stock',
  24. 'record_type_title' => array(
  25. 'singular' => t('Stock'),
  26. 'plural' => t('Stocks')
  27. ),
  28. 'sync_filters' => array(
  29. 'type_id' => TRUE,
  30. 'organism_id' => TRUE
  31. ),
  32. )
  33. ),
  34. );
  35. }
  36. /**
  37. * Implements hook_load(): Prepares the chado_stock node
  38. *
  39. * @param $node
  40. * The basic node containing all variables common to all nodes
  41. *
  42. * @return
  43. * A stock node containing all the variables from the basic node and all stock specific variables
  44. *
  45. * D7 @todo: Make optimizations to take advantage of $nodes
  46. *
  47. * @ingroup tripal_stock
  48. */
  49. function chado_stock_load($nodes) {
  50. $new_nodes = array();
  51. foreach ($nodes as $nid => $node) {
  52. // get the stock details from chado
  53. $stock_id = chado_get_id_for_node('stock', $node->nid);
  54. if (empty($stock_id)) {
  55. tripal_core_report_error('tripal_stock', TRIPAL_ERROR,
  56. 'Unable to retrieve stock_id for %title (NID = %nid).',
  57. array('%title' => $node->title, '%nid' => $node->nid)
  58. );
  59. }
  60. else {
  61. // build the variable with all the stock details
  62. $values = array('stock_id' => $stock_id);
  63. $stock = tripal_core_generate_chado_var('stock', $values);
  64. // by default, the titles are saved using the unique constraint. We will
  65. // keep it the same, but remove the duplicate name if the unique name and name
  66. // are identical
  67. $title_type = variable_get('chado_stock_title', 'unique_constraint');
  68. if($title_type == 'unique_constraint') {
  69. if (strcmp($stock->name, $stock->uniquename)==0) {
  70. $node->title = $stock->name . " (" . $stock->type_id->name . ") " . $stock->organism_id->genus . " " . $stock->organism_id->species ;
  71. }
  72. // in previous version of Tripal, the stock title was simply the unique name.
  73. // so, we recreate the title just to be sure all of our stock pages are consistent
  74. else {
  75. $node->title = $stock->name . ", " . $stock->uniquename . " (" . $stock->type_id->name . ") " . $stock->organism_id->genus . " " . $stock->organism_id->species ;
  76. }
  77. }
  78. // set the title to be the stock name or uniquename as configured
  79. if($title_type == 'stock_name') {
  80. $node->title = $stock->name;
  81. }
  82. if($title_type == 'stock_unique_name') {
  83. $node->title = $stock->uniquename;
  84. }
  85. // add this to the node
  86. $node->stock = $stock;
  87. }
  88. $new_nodes[$nid] = $node;
  89. }
  90. return $new_nodes;
  91. }
  92. /**
  93. * Implements hook_form(): Creates the main Add/Edit/Delete Form for chado stocks
  94. *
  95. * Parts to be added by this form
  96. * name,
  97. * uniquename,
  98. * description,
  99. * type => select from cvterm with key cvterm_id,
  100. * organism => select from available with key organism_id
  101. * main_db_reference => accession, version, description, db_name(select from dropdown)
  102. *
  103. * @param $node
  104. * An empty node object on insert OR the current stock node object on update
  105. * @param $form_state
  106. * The current state of the form
  107. *
  108. * @return
  109. * A description of the form to be rendered by drupal_get_form()
  110. *
  111. * @ingroup tripal_stock
  112. */
  113. function chado_stock_form($node, $form_state) {
  114. // If existing stock then expand all fields needed using the chado API
  115. if (isset($node->nid)) {
  116. $fields_needed = array('stock.uniquename', 'stock.name', 'stock.stock_id', 'stock.type_id', 'stock.organism_id', 'stock.description', 'stock.dbxref_id', 'dbxref.accession', 'dbxref.description', 'dbxref.db_id', 'db.db_id');
  117. foreach ($fields_needed as $field_name) {
  118. // Check to see if it's excluded and expand it if so
  119. if (isset($node->expandable_fields)) {
  120. if (in_array($field_name, $node->expandable_fields)) {
  121. $node = tripal_core_expand_chado_vars($node, 'field', $field_name);
  122. }
  123. }
  124. }
  125. }
  126. // Default values can come in the following ways:
  127. //
  128. // 1) as elements of the $node object. This occurs when editing an existing stock
  129. // 2) in the $form_state['values'] array which occurs on a failed validation or
  130. // ajax callbacks from non submit form elements
  131. // 3) in the $form_state['input'] array which occurs on ajax callbacks from submit
  132. // form elements and the form is being rebuilt
  133. //
  134. // set form field defaults
  135. $sname = '';
  136. $uniquename = '';
  137. $stock_id = 0;
  138. $type_id = 0;
  139. $organism_id = 0;
  140. $sdescription = '';
  141. $dbxref_accession = '';
  142. $dbxref_description = '';
  143. $dbxref_database = 0;
  144. // 1) if we are editing an existing node then the stock is already part of the node
  145. if (property_exists($node, 'stock')) {
  146. $sname = $node->stock->name;
  147. $uniquename = $node->stock->uniquename;
  148. $stock_id = $node->stock->stock_id;
  149. $type_id = $node->stock->type_id->cvterm_id;
  150. $organism_id = $node->stock->organism_id->organism_id;
  151. $sdescription = $node->stock->description;
  152. if (isset($node->stock->dbxref_id->db_id)) {
  153. $dbxref_accession = $node->stock->dbxref_id->accession;
  154. $dbxref_description = $node->stock->dbxref_id->description;
  155. $dbxref_database = $node->stock->dbxref_id->db_id->db_id;
  156. }
  157. }
  158. // 2) if we are re constructing the form from a failed validation or ajax callback
  159. // then use the $form_state['values'] values
  160. if (array_key_exists('values', $form_state)) {
  161. $sname = $form_state['values']['sname'];
  162. $uniquename = $form_state['values']['uniquename'];
  163. $stock_id = $form_state['values']['stock_id'];
  164. $type_id = $form_state['values']['type_id'];
  165. $organism_id = $form_state['values']['organism_id'];
  166. $sdescription = $form_state['values']['description'];
  167. $dbxref_accession = $form_state['values']['accession'];
  168. $dbxref_description = $form_state['values']['db_description'];
  169. $dbxref_database = $form_state['values']['database'];
  170. }
  171. // 3) if we are re building the form from after submission (from ajax call) then
  172. // the values are in the $form_state['input'] array
  173. if (array_key_exists('input', $form_state) and !empty($form_state['input'])) {
  174. $sname = $form_state['input']['sname'];
  175. $uniquename = $form_state['input']['uniquename'];
  176. $stock_id = $form_state['input']['stock_id'];
  177. $type_id = $form_state['input']['type_id'];
  178. $organism_id = $form_state['input']['organism_id'];
  179. $sdescription = $form_state['input']['description'];
  180. $dbxref_accession = $form_state['input']['accession'];
  181. $dbxref_description = $form_state['input']['db_description'];
  182. $dbxref_database = $form_state['input']['database'];
  183. }
  184. $form['manually_edit_chado'] = array(
  185. '#type' => 'hidden',
  186. '#value' => TRUE,
  187. );
  188. $form['names'] = array(
  189. '#type' => 'fieldset',
  190. '#title' => t('Stock Name')
  191. );
  192. $form['names']['sname'] = array(
  193. '#type' => 'textfield',
  194. '#title' => t('Name'),
  195. '#default_value' => $sname,
  196. '#required' => TRUE
  197. );
  198. $form['names']['uniquename'] = array(
  199. '#type' => 'textfield',
  200. '#title' => t('Unique Name'),
  201. '#default_value' => $uniquename,
  202. '#required' => TRUE
  203. );
  204. $form['names']['stock_id'] = array(
  205. '#type' => 'hidden',
  206. '#value' => $stock_id,
  207. );
  208. $form['details'] = array(
  209. '#type' => 'fieldset',
  210. '#title' => t('Stock Details')
  211. );
  212. $type_options = tripal_cv_get_cvterm_options( variable_get('chado_stock_types_cv', 'NULL') );
  213. $type_options[0] = 'Select a Type';
  214. $form['details']['type_id'] = array(
  215. '#type' => 'select',
  216. '#title' => t('Type of Stock'),
  217. '#options' => $type_options,
  218. '#default_value' => $type_id,
  219. '#required' => TRUE,
  220. );
  221. // get the list of organisms
  222. $sql = "SELECT * FROM {organism} ORDER BY genus, species";
  223. $org_rset = chado_query($sql);
  224. $organisms = array();
  225. $organisms[''] = '';
  226. while ($organism = $org_rset->fetchObject()) {
  227. $organisms[$organism->organism_id] = "$organism->genus $organism->species ($organism->common_name)";
  228. }
  229. $form['details']['organism_id'] = array(
  230. '#type' => 'select',
  231. '#title' => t('Source Organism for stock'),
  232. '#default_value' => $organism_id,
  233. '#options' => $organisms,
  234. '#required' => TRUE
  235. );
  236. $form['details']['stock_description'] = array(
  237. '#type' => 'textarea',
  238. '#title' => t('Notes'),
  239. '#default_value' => $sdescription,
  240. '#description' => t('Briefly enter any notes on the above stock. This should not include phenotypes or genotypes.'),
  241. );
  242. $form['database_reference'] = array(
  243. '#type' => 'fieldset',
  244. '#title' => t('Stock Database Reference')
  245. );
  246. $form['database_reference']['accession'] = array(
  247. '#type' => 'textfield',
  248. '#title' => t('Accession'),
  249. '#default_value' => $dbxref_accession,
  250. );
  251. $form['database_reference']['db_description'] = array(
  252. '#type' => 'textarea',
  253. '#title' => t('Description of Database Reference'),
  254. '#default_value' => $dbxref_description,
  255. '#description' => t('Optionally enter a description about the database accession.')
  256. );
  257. $db_options = tripal_db_get_db_options();
  258. $db_options[0] = 'Select a Database';
  259. $form['database_reference']['database'] = array(
  260. '#type' => 'select',
  261. '#title' => t('Database'),
  262. '#options' => $db_options,
  263. '#default_value' => $dbxref_database
  264. );
  265. // PROPERTIES FORM
  266. //---------------------------------------------
  267. $details = array(
  268. 'property_table' => 'stockprop',
  269. 'base_foreign_key' => 'stock_id',
  270. 'base_key_value' => $stock_id,
  271. 'cv_id' => variable_get('chado_stock_prop_types_cv', FALSE)
  272. );
  273. chado_node_properties_form($form, $form_state, $details);
  274. // ADDITIONAL DBXREFS FORM
  275. //---------------------------------------------
  276. $details = array(
  277. 'linking_table' => 'stock_dbxref',
  278. 'base_foreign_key' => 'stock_id',
  279. 'base_key_value' => $stock_id
  280. );
  281. chado_node_additional_dbxrefs_form($form, $form_state, $details);
  282. // RELATIONSHIPS FORM
  283. //---------------------------------------------
  284. $details = array(
  285. 'relationship_table' => 'stock_relationship',
  286. 'base_table' => 'stock',
  287. 'base_foreign_key' => 'stock_id',
  288. 'base_key_value' => $stock_id,
  289. 'nodetype' => 'stock',
  290. 'cv_id' => variable_get('chado_stock_relationship_cv', 0)
  291. );
  292. chado_node_relationships_form($form, $form_state, $details);
  293. return $form;
  294. }
  295. /**
  296. * Implements hook_validate(): Validate the input from the chado_stock node form
  297. *
  298. * @param $node
  299. * The current node including fields with the form element names and submitted values
  300. * @param $form
  301. * A description of the form to be rendered by drupal_get_form()
  302. *
  303. * @ingroup tripal_stock
  304. */
  305. function chado_stock_validate(&$node, $form, &$form_state) {
  306. // remove surrounding whitespace
  307. $node->uniquename = trim($node->uniquename);
  308. $node->sname = trim($node->sname);
  309. $node->stock_description = trim($node->stock_description);
  310. $node->accession = trim($node->accession);
  311. $node->db_description = trim($node->db_description);
  312. // if this is a delete then don't validate
  313. if($node->op == 'Delete') {
  314. return;
  315. }
  316. // we are syncing if we do not have a node ID but we do have a stock_id. We don't
  317. // need to validate during syncing so just skip it.
  318. if (is_null($node->nid) and property_exists($node, 'stock_id') and $node->stock_id != 0) {
  319. return;
  320. }
  321. $int_in_chado_sql = "SELECT count(*) as count FROM {:table} WHERE :column = :value";
  322. $string_in_chado_sql = "SELECT count(*) as count FROM {:table} WHERE :column = :value";
  323. // if this is an update, we want to make sure that a different stock for
  324. // the organism doesn't already have this uniquename. We don't want to give
  325. // two sequences the same uniquename
  326. if (property_exists($node, 'nid')) {
  327. $sql = "
  328. SELECT *
  329. FROM {stock} S
  330. INNER JOIN {cvterm} CVT ON S.type_id = CVT.cvterm_id
  331. WHERE
  332. uniquename = :uname AND organism_id = :organism_id AND
  333. CVT.name = :cvtname AND NOT stock_id = :stock_id
  334. ";
  335. $result = chado_query($sql, array(':uname' => $node->uniquename,
  336. ':organism_id' => $node->organism_id, ':cvtname' => $node->type_id,
  337. ':stock_id' => $node->stock_id))->fetchObject();
  338. if ($result) {
  339. form_set_error('uniquename', t("Stock update cannot proceed. The stock name '$node->uniquename' is not unique for this organism. Please provide a unique name for this stock."));
  340. }
  341. }
  342. // if this is an insert then we just need to make sure this name doesn't
  343. // already exist for this organism if it does then we need to throw an error
  344. else {
  345. $sql = "
  346. SELECT *
  347. FROM {Stock} S
  348. INNER JOIN {cvterm} CVT ON S.type_id = CVT.cvterm_id
  349. WHERE uniquename = :uname AND organism_id = :organism_id AND CVT.name = :cvtname";
  350. $result = chado_query($sql, array(':uname' => $node->uniquename,
  351. ':organism_id' => $node->organism_id, ':cvtname' => $node->type_id))->fetchObject();
  352. if ($result) {
  353. form_set_error('uniquename', t("Stock insert cannot proceed. The stock name '$node->uniquename' already exists for this organism. Please provide a unique name for this stock."));
  354. }
  355. }
  356. // Check Type of Stock is valid cvterm_id in chado ( $form['values']['details']['type_id'] )
  357. if ($node->type_id == 0) {
  358. form_set_error('type_id', 'Please select a type of stock.');
  359. }
  360. else {
  361. $replace = array(':table' => 'cvterm', ':column' => 'cvterm_id');
  362. $new_sql = str_replace(array_keys($replace),$replace,$int_in_chado_sql);
  363. $num_rows = chado_query($new_sql, array(':value' => $node->type_id))->fetchObject();
  364. if ( $num_rows->count != 1) {
  365. form_set_error('type_id', "The type you selected is not valid. Please choose another one. (CODE:$num_rows)"); }
  366. }
  367. // Check Source Organism is valid organism_id in chado ( $form['values']['details']['organism_id'] )
  368. if ( $node->organism_id == 0) {
  369. form_set_error('organism_id', 'Please select a source organism for this stock');
  370. }
  371. else {
  372. $replace = array(':table' => 'organism', ':column' => 'organism_id');
  373. $new_sql = str_replace(array_keys($replace),$replace,$int_in_chado_sql);
  374. $num_rows = chado_query($new_sql, array(':value' => $node->organism_id))->fetchObject();
  375. if ( $num_rows->count != 1 ) {
  376. form_set_error('organism_id', "The organism you selected is not valid. Please choose another one. (CODE:$num_rows)"); }
  377. }
  378. // Check if Accession also database
  379. if ($node->accession != '') {
  380. if ($node->database == 0) {
  381. // there is an accession but no database selected
  382. form_set_error('database', 'You need to enter both a database and an accession for that database in order to add a database reference.');
  383. }
  384. }
  385. else {
  386. if ($node->database > 0) {
  387. // there is a database selected but no accession
  388. form_set_error('accession', 'You need to enter both a database and an accession for that database in order to add a database reference.');
  389. }
  390. }
  391. // Check database is valid db_id in chado ( $form['values']['database_reference']['database'] )
  392. if ( $node->database > 0) {
  393. $replace = array(':table' => 'db', ':column' => 'db_id');
  394. $new_sql = str_replace(array_keys($replace),$replace,$int_in_chado_sql);
  395. $num_rows = chado_query($new_sql, array(':value' => $node->database))->fetchObject();
  396. if ($num_rows->count != 1) {
  397. form_set_error('database', 'The database you selected is not valid. Please choose another one.'); }
  398. }
  399. }
  400. /**
  401. * Implements hook_insert(): Inserts data from chado_stock_form() into drupal and chado
  402. *
  403. * @param $node
  404. * The current node including fields with the form element names and submitted values
  405. *
  406. * @return
  407. * TRUE if the node was successfully inserted into drupal/chado; FALSE otherwise
  408. *
  409. * @ingroup tripal_stock
  410. */
  411. function chado_stock_insert($node) {
  412. // if there is an stock_id in the $node object then this must be a sync so
  413. // we can skip adding the stock to chado as it is already there, although
  414. // we do need to proceed with the rest of the insert
  415. if (property_exists($node, 'manually_edit_chado')) {
  416. // before we can add the stock, we must add the dbxref if one has been
  417. // provided by the user.
  418. $dbxref_status = 0;
  419. if (!empty($node->accession) ) {
  420. if (!empty($node->database) ) {
  421. $values = array(
  422. 'db_id' => $node->database,
  423. 'accession' => $node->accession,
  424. );
  425. if (!tripal_core_chado_select('dbxref', array('dbxref_id'), $values)) {
  426. $values['description'] = $node->db_description;
  427. $values['version'] = '1';
  428. $dbxref_status = tripal_core_chado_insert('dbxref', $values);
  429. if (!$dbxref_status) {
  430. drupal_set_message(t('Unable to add database reference to this stock.'), 'warning');
  431. tripal_core_report_error('tripal_stock', TRIPAL_WARNING,
  432. 'Insert Stock: Unable to create dbxref where values:%values',
  433. array('%values' => print_r($values, TRUE)));
  434. }
  435. }
  436. else {
  437. $dbxref_status = 1;
  438. }
  439. }
  440. }
  441. // create stock including the dbxref
  442. $stock = '';
  443. if ($dbxref_status) {
  444. $values = array(
  445. 'dbxref_id' => array(
  446. 'db_id' => $node->database,
  447. 'accession' => $node->accession
  448. ),
  449. 'organism_id' => $node->organism_id,
  450. 'name' => $node->sname,
  451. 'uniquename' => $node->uniquename,
  452. 'description' => $node->stock_description,
  453. 'type_id' => $node->type_id
  454. );
  455. $stock = tripal_core_chado_insert('stock', $values);
  456. }
  457. // create a stock without a dbxref
  458. else {
  459. $values = array(
  460. 'organism_id' => $node->organism_id,
  461. 'name' => $node->sname,
  462. 'uniquename' => $node->uniquename,
  463. 'description' => $node->stock_description,
  464. 'type_id' => $node->type_id
  465. );
  466. $stock = tripal_core_chado_insert('stock', $values);
  467. }
  468. if (is_array($stock)) {
  469. $stock_added = TRUE;
  470. $stock_id = $stock['stock_id'];
  471. }
  472. else {
  473. $stock_added = FALSE;
  474. }
  475. if ($stock_added) {
  476. // Now add properties
  477. $details = array(
  478. 'property_table' => 'stockprop',
  479. 'base_table' => 'stock',
  480. 'foreignkey_name' => 'stock_id',
  481. 'foreignkey_value' => $stock_id
  482. );
  483. chado_node_properties_form_update_properties($node, $details);
  484. // Now add the additional references
  485. $details = array(
  486. 'linking_table' => 'stock_dbxref',
  487. 'foreignkey_name' => 'stock_id',
  488. 'foreignkey_value' => $stock_id
  489. );
  490. chado_node_additional_dbxrefs_form_update_dbxrefs($node, $details);
  491. // Now add in relationships
  492. $details = array(
  493. 'relationship_table' => 'stock_relationship',
  494. 'foreignkey_value' => $node->stock_id
  495. );
  496. chado_node_relationships_form_update_relationships($node, $details);
  497. }
  498. } //end of adding stock to chado
  499. else {
  500. // stock already exists since this is a sync
  501. $stock_added = TRUE;
  502. $stock['stock_id'] = $node->stock_id;
  503. }
  504. // if the stock creation was succesful then add the URL and the entry in the
  505. // chado_stock table
  506. if ($stock_added) {
  507. // add the entry to the chado_stock table
  508. db_insert('chado_stock')->fields(array(
  509. 'nid' => (int) $node->nid,
  510. 'vid' => (int) $node->vid,
  511. 'stock_id' => (int) $stock['stock_id']
  512. ))->execute();
  513. }
  514. else {
  515. drupal_set_message(t('Error during stock creation.'), 'error');
  516. tripal_core_report_error('tripal_stock', TRIPAL_WARNING,
  517. 'Insert Stock: Unable to create stock where values:%values',
  518. array('%values' => print_r($values, TRUE)));
  519. return FALSE;
  520. }
  521. }
  522. /**
  523. * Implements hook_update(): Handles Editing/Updating of main stock info
  524. *
  525. * NOTE: Currently just writes over all old data
  526. *
  527. * @param $node
  528. * The current node including fields with the form element names and submitted values
  529. *
  530. * @return
  531. * TRUE if the node was successfully updated in drupal/chado; FALSE otherwise
  532. *
  533. * @ingroup tripal_stock
  534. */
  535. function chado_stock_update($node) {
  536. if ($node->revision) {
  537. // there is no way to handle revisions in Chado but leave
  538. // this here just to make not we've addressed it.
  539. }
  540. //update dbxref
  541. $dbxref_status = NULL;
  542. $dbxref_present = FALSE;
  543. if ($node->database) {
  544. $dbxref_present = TRUE;
  545. if ($node->accession) {
  546. $dbxref_mode = '';
  547. $stock = tripal_core_chado_select(
  548. 'stock',
  549. array('dbxref_id', 'type_id'),
  550. array('stock_id' => $node->stock_id)
  551. );
  552. if ($stock[0]->dbxref_id) {
  553. $values = array(
  554. 'db_id' => $node->database,
  555. 'accession' => $node->accession,
  556. 'description' => $node->db_description
  557. );
  558. $dbxref_status = tripal_core_chado_update(
  559. 'dbxref',
  560. array('dbxref_id' => $stock[0]->dbxref_id),
  561. $values
  562. );
  563. $dbxref_mode = 'Update';
  564. }
  565. else {
  566. if ($stock[0]->type_id) {
  567. //create the dbxref
  568. //used the type_id as a control to check we have a stock but not a dbxref
  569. $values = array(
  570. 'db_id' => $node->database,
  571. 'accession' => $node->accession,
  572. 'description' => $node->db_description,
  573. 'version' => '1',
  574. );
  575. $dbxref_status = tripal_core_chado_insert(
  576. 'dbxref',
  577. $values
  578. );
  579. $dbxref_mode = 'Create';
  580. }
  581. else {
  582. drupal_set_message(t('Unable to find stock to Update'), 'error');
  583. tripal_core_report_error('tripal_stock', TRIPAL_ERROR,
  584. 'Stock Update: Unable to find stock to update using values: %values',
  585. array('%values', print_r($values, TRUE))
  586. );
  587. return FALSE;
  588. }
  589. }
  590. }
  591. if (!$dbxref_status) {
  592. tripal_core_report_error('tripal_stock', TRIPAL_WARNING,
  593. 'Stock Update: Unable to %mode main stock dbxref with values: %values',
  594. array('%values' => print_r($values, TRUE), '%mode' => $dbxref_mode));
  595. }
  596. }
  597. //can't change stock id which is all thats stored in drupal thus only update chado
  598. $update_values = array(
  599. 'organism_id' => $node->organism_id,
  600. 'name' => $node->sname,
  601. 'uniquename' => $node->uniquename,
  602. 'description' => $node->stock_description,
  603. 'type_id' => $node->type_id,
  604. );
  605. if ($dbxref_present) {
  606. if ($dbxref_status) {
  607. $update_values['dbxref_id'] = array(
  608. 'db_id' => $node->database,
  609. 'accession' => $node->accession
  610. );
  611. }
  612. }
  613. $status = tripal_core_chado_update('stock', array('stock_id' => $node->stock_id), $update_values);
  614. if (!$status) {
  615. drupal_set_message(t('Unable to update stock'), 'error');
  616. tripal_core_report_error('tripal_stock', TRIPAL_ERROR,
  617. 'Stock Update: Unable to update stock using match values: %mvalues and update values: %uvalues',
  618. array('%mvalues' => print_r(array('stock_id' => $node->stock_id), TRUE), '%uvalues' => print_r($update_values, TRUE))
  619. );
  620. }
  621. else {
  622. // set the URL for this stock page
  623. $values = array('stock_id' => $node->stock_id);
  624. $stock = tripal_core_chado_select('stock', array('*'), $values);
  625. }
  626. // now update the properties
  627. if ($node->stock_id > 0) {
  628. $details = array(
  629. 'property_table' => 'stockprop',
  630. 'base_table' => 'stock',
  631. 'foreignkey_name' => 'stock_id',
  632. 'foreignkey_value' => $node->stock_id
  633. );
  634. chado_node_properties_form_update_properties($node, $details);
  635. }
  636. // now update the additional dbxrefs
  637. if ($node->stock_id > 0) {
  638. $details = array(
  639. 'linking_table' => 'stock_dbxref',
  640. 'foreignkey_name' => 'stock_id',
  641. 'foreignkey_value' => $node->stock_id
  642. );
  643. chado_node_additional_dbxrefs_form_update_dbxrefs($node, $details);
  644. }
  645. // now update relationships
  646. if ($node->stock_id > 0) {
  647. $details = array(
  648. 'relationship_table' => 'stock_relationship',
  649. 'foreignkey_value' => $node->stock_id
  650. );
  651. chado_node_relationships_form_update_relationships($node, $details);
  652. }
  653. }
  654. /**
  655. * Implements hook_delete(): Handles deleting of chado_stocks
  656. *
  657. * NOTE: Currently deletes data -no undo or record-keeping functionality
  658. *
  659. * @param $node
  660. * The current node including fields with the form element names and submitted values
  661. *
  662. * @return
  663. * TRUE if the node was successfully deleted from drupal/chado; FALSE otherwise
  664. *
  665. * @ingroup tripal_stock
  666. */
  667. function chado_stock_delete($node) {
  668. // Set stock in chado: is_obsolete = TRUE
  669. chado_query("DELETE FROM {stock} WHERE stock_id = :stock_id", array(':stock_id' => $node->stock->stock_id));
  670. //remove drupal node and all revisions
  671. db_query("DELETE FROM {chado_stock} WHERE nid = :nid", array(':nid' => $node->nid));
  672. }
  673. /**
  674. * Used by Tripal Chado Node API during sync'ing of nodes
  675. */
  676. function chado_stock_chado_node_sync_create_new_node($new_node, $record) {
  677. $new_node->organism_id = $record->organism_id;
  678. $new_node->sname = $record->name;
  679. $new_node->uniquename = $record->uniquename;
  680. $new_node->type_id = $record->type_id;
  681. return $new_node;
  682. }
  683. /**
  684. * @ingroup tripal_stock
  685. */
  686. function tripal_stock_node_presave($node) {
  687. switch ($node->type) {
  688. case 'chado_stock':
  689. // for a form submission the fields part of the node object
  690. // but for a sync the feilds are in an object of the node
  691. $organism_id = null;
  692. $sname = '';
  693. $uniquename = '';
  694. $type = '';
  695. if(property_exists($node, 'organism_id')) {
  696. $organism_id = $node->organism_id;
  697. $sname = $node->sname;
  698. $uniquename = $node->uniquename;
  699. $type_id = $node->type_id;
  700. $values = array('cvterm_id' => $node->type_id);
  701. $cvterm = tripal_core_chado_select('cvterm', array('name'), $values);
  702. $type = $cvterm[0]->name;
  703. }
  704. else {
  705. $organism_id = $node->stock->organism_id;
  706. $sname = $node->stock->name;
  707. $uniquename = $node->stock->uniquename;
  708. $type = $node->stock->type_id->name;
  709. }
  710. $values = array('organism_id' => $organism_id);
  711. $organism = tripal_core_chado_select('organism', array('genus','species'), $values);
  712. $node->title = "$sname, $uniquename ($type) " . $organism[0]->genus . ' ' . $organism[0]->species;
  713. if ($name == $uname) {
  714. $node->title = "$sname ($type) " . $organism[0]->genus . ' ' . $organism[0]->species;
  715. }
  716. break;
  717. }
  718. }
  719. /**
  720. * @ingroup tripal_stock
  721. */
  722. function tripal_stock_node_insert($node) {
  723. switch ($node->type) {
  724. case 'chado_stock':
  725. if (!$node->stock_id) {
  726. $sql = "SELECT * FROM {chado_stock} WHERE nid = :nid";
  727. $chado_stock = db_query($sql, array(':nid' => $node->nid))->fetchObject();
  728. $node->stock_id = $chado_stock->stock_id;
  729. }
  730. // remove any previous alias
  731. db_query("DELETE FROM {url_alias} WHERE source = :source", array(':source' => "node/$node->nid"));
  732. // set the URL for this stock page
  733. $url_alias = tripal_stock_get_stock_url($node);
  734. $path_alias = array("source" => "node/$node->nid", "alias" => $url_alias);
  735. path_save($path_alias);
  736. break;
  737. }
  738. }
  739. /**
  740. * @ingroup tripal_stock
  741. */
  742. function tripal_stock_node_update($node) {
  743. switch ($node->type) {
  744. case 'chado_stock':
  745. // remove any previous alias
  746. db_query("DELETE FROM {url_alias} WHERE source = :source", array(':source' => "node/$node->nid"));
  747. // set the URL for this stock page
  748. $url_alias = tripal_stock_get_stock_url($node);
  749. $path_alias = array("source" => "node/$node->nid", "alias" => $url_alias);
  750. path_save($path_alias);
  751. break;
  752. }
  753. }
  754. /**
  755. * @ingroup tripal_stock
  756. */
  757. function tripal_stock_node_view($node, $view_mode, $langcode) {
  758. switch ($node->type) {
  759. case 'chado_stock':
  760. if ($view_mode == 'full') {
  761. $node->content['tripal_stock_base'] = array(
  762. '#markup' => theme('tripal_stock_base', array('node' => $node)),
  763. '#tripal_toc_id' => 'base',
  764. '#tripal_toc_title' => 'Overview',
  765. '#weight' => -100,
  766. );
  767. $node->content['tripal_stock_collections'] = array(
  768. '#markup' => theme('tripal_stock_collections', array('node' => $node)),
  769. '#tripal_toc_id' => 'collections',
  770. '#tripal_toc_title' => 'Stock Collections',
  771. );
  772. $node->content['tripal_stock_properties'] = array(
  773. '#markup' => theme('tripal_stock_properties', array('node' => $node)),
  774. '#tripal_toc_id' => 'properties',
  775. '#tripal_toc_title' => 'Properties',
  776. );
  777. $node->content['tripal_stock_references'] = array(
  778. '#markup' => theme('tripal_stock_references', array('node' => $node)),
  779. '#tripal_toc_id' => 'references',
  780. '#tripal_toc_title' => 'References',
  781. );
  782. $node->content['tripal_stock_relationships'] = array(
  783. '#markup' => theme('tripal_stock_relationships', array('node' => $node)),
  784. '#tripal_toc_id' => 'relationships',
  785. '#tripal_toc_title' => 'Relationships',
  786. );
  787. $node->content['tripal_stock_synonyms'] = array(
  788. '#markup' => theme('tripal_stock_synonyms', array('node' => $node)),
  789. '#tripal_toc_id' => 'synonyms',
  790. '#tripal_toc_title' => 'Synonyms',
  791. );
  792. $node->content['tripal_stock_publications'] = array(
  793. '#markup' => theme('tripal_stock_publications', array('node' => $node)),
  794. '#tripal_toc_id' => 'publications',
  795. '#tripal_toc_title' => 'Publications',
  796. );
  797. }
  798. if ($view_mode == 'teaser') {
  799. $node->content['tripal_stock_teaser'] = array(
  800. '#markup' => theme('tripal_stock_teaser', array('node' => $node)),
  801. );
  802. }
  803. break;
  804. case 'chado_organism':
  805. if ($view_mode == 'full') {
  806. $node->content['tripal_organism_stocks'] = array(
  807. '#markup' => theme('tripal_organism_stocks', array('node' => $node)),
  808. '#tripal_toc_id' => 'stocks',
  809. '#tripal_toc_title' => 'Stocks',
  810. );
  811. }
  812. break;
  813. }
  814. }