tripal_organism.chado_node.inc 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628
  1. <?php
  2. /**
  3. * @file
  4. * Implements the organims node content type
  5. */
  6. /**
  7. * Implements hook_node_info().
  8. *
  9. * Provide information to drupal about the node types that we're creating
  10. * in this module
  11. *
  12. * @ingroup tripal_organism
  13. */
  14. function tripal_organism_node_info() {
  15. $nodes = array();
  16. $nodes['chado_organism'] = array(
  17. 'name' => t('Organism'),
  18. 'base' => 'chado_organism',
  19. 'description' => t('An organism'),
  20. 'has_title' => TRUE,
  21. 'locked' => TRUE,
  22. 'chado_node_api' => array(
  23. 'base_table' => 'organism',
  24. 'hook_prefix' => 'chado_organism',
  25. 'record_type_title' => array(
  26. 'singular' => t('Organism'),
  27. 'plural' => t('Organisms')
  28. ),
  29. 'sync_filters' => array(
  30. 'type_id' => FALSE,
  31. 'organism_id' => FALSE,
  32. 'checkboxes' => array('genus', 'species'),
  33. ),
  34. )
  35. );
  36. return $nodes;
  37. }
  38. /**
  39. * Implement hook_node_access().
  40. *
  41. * This hook allows node modules to limit access to the node types they define.
  42. *
  43. * @param $node
  44. * The node on which the operation is to be performed, or, if it does not yet exist, the
  45. * type of node to be created
  46. *
  47. * @param $op
  48. * The operation to be performed
  49. *
  50. *
  51. * @param $account
  52. * A user object representing the user for whom the operation is to be performed
  53. *
  54. * @return
  55. * If the permission for the specified operation is not set then return FALSE. If the
  56. * permission is set then return NULL as this allows other modules to disable
  57. * access. The only exception is when the $op == 'create'. We will always
  58. * return TRUE if the permission is set.
  59. *
  60. * @ingroup tripal_organism
  61. */
  62. function chado_organism_node_access($node, $op, $account) {
  63. $node_type = $node;
  64. if (is_object($node)) {
  65. $node_type = $node->type;
  66. }
  67. if($node_type == 'chado_organism') {
  68. if ($op == 'create') {
  69. if (!user_access('create chado_organism content', $account)) {
  70. return NODE_ACCESS_DENY;
  71. }
  72. return NODE_ACCESS_ALLOW;
  73. }
  74. if ($op == 'update') {
  75. if (!user_access('edit chado_organism content', $account)) {
  76. return NODE_ACCESS_DENY;
  77. }
  78. }
  79. if ($op == 'delete') {
  80. if (!user_access('delete chado_organism content', $account)) {
  81. return NODE_ACCESS_DENY;
  82. }
  83. }
  84. if ($op == 'view') {
  85. if (!user_access('access chado_organism content', $account)) {
  86. return NODE_ACCESS_DENY;
  87. }
  88. }
  89. return NODE_ACCESS_IGNORE;
  90. }
  91. }
  92. /**
  93. * Implement hook_form().
  94. *
  95. * When editing or creating a new node of type 'chado_organism' we need
  96. * a form. This function creates the form that will be used for this.
  97. *
  98. * @ingroup tripal_organism
  99. */
  100. function chado_organism_form($node, $form_state) {
  101. $form = array();
  102. // we have a file upload element on the form soe we need the multipart encoding type
  103. $form['#attributes']['enctype'] = 'multipart/form-data';
  104. // if the organism is part of the node object then we are editing. If not we are inserting
  105. if (property_exists($node, 'organism')) {
  106. $organism = $node->organism;
  107. // add in the comment since it is a text field and may not be included if too big
  108. $organism = chado_expand_var($organism, 'field', 'organism.comment');
  109. // get form defaults
  110. $abbreviation = property_exists($node, 'abbreviation') ? property_exists($node, 'abbreviation') : $organism->abbreviation;
  111. $genus = property_exists($node, 'genus') ? property_exists($node, 'genus') : $organism->genus;
  112. $species = property_exists($node, 'species') ? property_exists($node, 'species') : $organism->species;
  113. $common_name = property_exists($node, 'common_name') ? property_exists($node, 'common_name') : $organism->common_name;
  114. $description = property_exists($node, 'description') ? property_exists($node, 'description') : $organism->comment;
  115. $organism_image = property_exists($node, 'organism_image') ? property_exists($node, 'organism_image') : '';
  116. // set the organism_id in the form
  117. $form['organism_id'] = array(
  118. '#type' => 'value',
  119. '#value' => $organism->organism_id,
  120. );
  121. $organism_id = $organism->organism_id;
  122. }
  123. else {
  124. // get form defaults
  125. $abbreviation = property_exists($node, 'abbreviation') ? property_exists($node, 'abbreviation') : '';
  126. $genus = property_exists($node, 'genus') ? property_exists($node, 'genus') : '';
  127. $species = property_exists($node, 'species') ? property_exists($node, 'species') : '';
  128. $common_name = property_exists($node, 'common_name') ? property_exists($node, 'common_name') : '';
  129. $description = property_exists($node, 'description') ? property_exists($node, 'description') : '';
  130. $organism_image = property_exists($node, 'organism_image') ? property_exists($node, 'organism_image') : '';
  131. $organism_id = NULL;
  132. }
  133. $form['genus']= array(
  134. '#type' => 'textfield',
  135. '#title' => t('Genus'),
  136. '#required' => TRUE,
  137. '#default_value' => $genus,
  138. );
  139. $form['species']= array(
  140. '#type' => 'textfield',
  141. '#title' => t('Species'),
  142. '#required' => TRUE,
  143. '#default_value' => $species,
  144. );
  145. $form['abbreviation']= array(
  146. '#type' => 'textfield',
  147. '#title' => t('Abbreviation'),
  148. '#required' => TRUE,
  149. '#default_value' => $abbreviation,
  150. );
  151. $form['common_name']= array(
  152. '#type' => 'textfield',
  153. '#title' => t('Common Name'),
  154. '#required' => TRUE,
  155. '#default_value' => $common_name,
  156. );
  157. $form['description']= array(
  158. '#type' => 'textarea',
  159. '#rows' => 15,
  160. '#title' => t('Description'),
  161. '#default_value' => $description,
  162. );
  163. $form['organism_image']= array(
  164. '#type' => 'file',
  165. '#title' => t('Organism Image'),
  166. '#description' => 'Add an image for this organism',
  167. '#progress_indicator' => 'bar',
  168. );
  169. // PROPERTIES FORM
  170. //---------------------------------------------
  171. $prop_cv = tripal_get_default_cv('organismprop', 'type_id');
  172. $cv_id = $prop_cv ? $prop_cv->cv_id : NULL;
  173. $details = array(
  174. 'property_table' => 'organismprop', // the name of the prop table
  175. 'chado_id' => $organism_id, // the value of organism_id for this record
  176. 'cv_id' => $cv_id // the cv.cv_id of the cv governing organismprop.type_id
  177. );
  178. // Adds the form elements to your current form
  179. chado_add_node_form_properties($form, $form_state, $details);
  180. // ADDITIONAL DBXREFS FORM
  181. //---------------------------------------------
  182. $details = array(
  183. 'linking_table' => 'organism_dbxref', // the name of the _dbxref table
  184. 'base_foreign_key' => 'organism_id', // the name of the key in your base chado table
  185. 'base_key_value' => $organism_id // the value of organism_id for this record
  186. );
  187. // Adds the form elements to your current form
  188. chado_add_node_form_dbxrefs($form, $form_state, $details);
  189. return $form;
  190. }
  191. /**
  192. * Implementation of hook_validate().
  193. *
  194. * @param $node
  195. * @param $form
  196. * @param $form_state
  197. *
  198. * @ingroup tripal_organism
  199. */
  200. function chado_organism_validate($node, $form, &$form_state) {
  201. // if this is a delete then don't validate
  202. if($node->op == 'Delete') {
  203. return;
  204. }
  205. // we are syncing if we do not have a node ID but we do have a organism_id. We don't
  206. // need to validate during syncing so just skip it.
  207. if (is_null($node->nid) and property_exists($node, 'organism_id') and $node->organism_id != 0) {
  208. return;
  209. }
  210. // remove any white space around values
  211. $node->genus = trim($node->genus);
  212. $node->species = trim($node->species);
  213. $node->abbreviation = trim($node->abbreviation);
  214. $node->common_name = trim($node->common_name);
  215. $node->description = trim($node->description);
  216. // Validating for an update
  217. if (property_exists($node, 'organism_id')) {
  218. $sql = "
  219. SELECT *
  220. FROM {organism} O
  221. WHERE
  222. genus = :genus AND
  223. species = :species AND NOT
  224. organism_id = :organism_id
  225. ";
  226. $args = array(':genus' => $node->genus, ':species' => $node->species, ':organism_id' => $node->organism_id);
  227. $result = chado_query($sql, $args)->fetchObject();
  228. if ($result) {
  229. form_set_error('genus', t("Update cannot proceed. The organism genus
  230. '$node->genus' and species '$node->species' is already present in the database."));
  231. tripal_report_error('tripal_organism', TRIPAL_WARNING,
  232. 'Update organism: genus and species already exists: %values',
  233. array('%values' => "genus = $node->genus, species = $node->species"));
  234. }
  235. }
  236. // Validating for an insert
  237. else {
  238. $values = array(
  239. 'genus' => $node->genus,
  240. 'species' => $node->species,
  241. );
  242. $organism = chado_select_record('organism', array('organism_id'), $values);
  243. if (sizeof($organism) > 0) {
  244. form_set_error('genus', 'Cannot add the organism with this genus and species.
  245. The organism already exists.');
  246. tripal_report_error('tripal_organism', TRIPAL_WARNING,
  247. 'Insert organism: genus and species already exists: %values',
  248. array('%values' => "genus = $node->genus, species = $node->species"));
  249. }
  250. }
  251. }
  252. /**
  253. * Implements hook_insert().
  254. *
  255. * When a new chado_organism node is created we also need to add information
  256. * to our chado_organism table. This function is called on insert of a new node
  257. * of type 'chado_organism' and inserts the necessary information.
  258. *
  259. * @ingroup tripal_organism
  260. */
  261. function chado_organism_insert($node) {
  262. // remove any white space around values
  263. $node->genus = trim($node->genus);
  264. $node->species = trim($node->species);
  265. $node->abbreviation = trim($node->abbreviation);
  266. $node->common_name = trim($node->common_name);
  267. $node->description = trim($node->description);
  268. // if there is an organism_id in the $node object then this must be a sync so
  269. // we can skip adding the organism as it is already there, although
  270. // we do need to proceed with the rest of the insert
  271. if (!property_exists($node, 'organism_id')) {
  272. $values = array(
  273. 'genus' => $node->genus,
  274. 'species' => $node->species,
  275. 'abbreviation' => $node->abbreviation,
  276. 'common_name' => $node->common_name,
  277. 'comment' => $node->description
  278. );
  279. $organism = chado_insert_record('organism', $values);
  280. if (!$organism) {
  281. drupal_set_message(t('Unable to add organism.', 'warning'));
  282. tripal_report_error('tripal_organism', TRIPAL_ERROR, 'Insert Organism: Unable to create organism where values:%values',
  283. array('%values' => print_r($values, TRUE)));
  284. return;
  285. }
  286. $organism_id = $organism['organism_id'];
  287. if ($organism_id) {
  288. // * Properties Form *
  289. $details = array(
  290. 'property_table' => 'organismprop', // the name of the prop table
  291. 'base_table' => 'organism', // the name of your chado base table
  292. 'foreignkey_name' => 'organism_id', // the name of the key in your base table
  293. 'foreignkey_value' => $organism_id // the value of the example_id key
  294. );
  295. chado_update_node_form_properties($node, $details);
  296. // * Additional DBxrefs Form *
  297. $details = array(
  298. 'linking_table' => 'organism_dbxref', // the name of your _dbxref table
  299. 'foreignkey_name' => 'organism_id', // the name of the key in your base table
  300. 'foreignkey_value' => $organism_id // the value of the organism_id key
  301. );
  302. chado_update_node_form_dbxrefs($node, $details);
  303. }
  304. }
  305. else {
  306. $organism_id = $node->organism_id;
  307. }
  308. // Make sure the entry for this organism doesn't already exist in the
  309. // chado_organism table if it doesn't exist then we want to add it.
  310. $check_org_id = chado_get_id_from_nid('organism', $node->nid);
  311. if (!$check_org_id) {
  312. $record = new stdClass();
  313. $record->nid = $node->nid;
  314. $record->vid = $node->vid;
  315. $record->organism_id = $organism_id;
  316. drupal_write_record('chado_organism', $record);
  317. }
  318. // add the image
  319. chado_organism_add_image($node);
  320. }
  321. /**
  322. * Implements hook_update().
  323. *
  324. * @ingroup tripal_organism
  325. */
  326. function chado_organism_update($node) {
  327. // remove any white space around values
  328. $node->genus = trim($node->genus);
  329. $node->species = trim($node->species);
  330. $node->abbreviation = trim($node->abbreviation);
  331. $node->common_name = trim($node->common_name);
  332. $node->description = trim($node->description);
  333. $organism_id = chado_get_id_from_nid('organism', $node->nid);
  334. if ($node->revision) {
  335. // there is no way to handle revisions in Chado but leave
  336. // this here just to make not we've addressed it.
  337. }
  338. $match = array(
  339. 'organism_id' => $organism_id,
  340. );
  341. $values = array(
  342. 'genus' => $node->genus,
  343. 'species' => $node->species,
  344. 'abbreviation' => $node->abbreviation,
  345. 'common_name' => $node->common_name,
  346. 'comment' => $node->description
  347. );
  348. $org_status = chado_update_record('organism', $match, $values);
  349. // add the image
  350. chado_organism_add_image($node);
  351. // * Properties Form *
  352. $details = array(
  353. 'property_table' => 'organismprop', // the name of the prop table
  354. 'base_table' => 'organism', // the name of your chado base table
  355. 'foreignkey_name' => 'organism_id', // the name of the key in your base table
  356. 'foreignkey_value' => $organism_id // the value of the example_id key
  357. );
  358. chado_update_node_form_properties($node, $details);
  359. // * Additional DBxrefs Form *
  360. $details = array(
  361. 'linking_table' => 'organism_dbxref', // the name of your _dbxref table
  362. 'foreignkey_name' => 'organism_id', // the name of the key in your base table
  363. 'foreignkey_value' => $organism_id // the value of the organism_id key
  364. );
  365. chado_update_node_form_dbxrefs($node, $details);
  366. }
  367. /**
  368. * Implements hook_delete().
  369. *
  370. * Delete organism from both drupal and chado databases. Check dependency before
  371. * deleting from chado.
  372. *
  373. * @ingroup tripal_organism
  374. */
  375. function chado_organism_delete($node) {
  376. $organism_id = chado_get_id_from_nid('organism', $node->nid);
  377. // if we don't have an organism id for this node then this isn't a node of
  378. // type chado_organism or the entry in the chado_organism table was lost.
  379. if (!$organism_id) {
  380. return;
  381. }
  382. // Remove data from the {chado_organism}, {node}, and {node_revisions} tables
  383. $sql_del = "DELETE FROM {chado_organism} WHERE nid = :nid AND vid = :vid";
  384. db_query($sql_del, array(':nid' => $node->nid, ':vid' => $node->vid));
  385. $sql_del = "DELETE FROM {node} WHERE nid = :nid AND vid = :vid";
  386. db_query($sql_del, array(':nid' => $node->nid, ':vid' => $node->vid));
  387. $sql_del = "DELETE FROM {node_revision} WHERE nid = :nid AND vid = :vid";
  388. db_query($sql_del, array(':nid' => $node->nid, ':vid' => $node->vid));
  389. // Test dependency before deleting from chado database. If a library or
  390. // feature depends on this organism, don't delete it
  391. $sql = "SELECT feature_id FROM {feature} WHERE organism_id = :organism_id";
  392. $check_feature = chado_query($sql, array(':organism_id' => $organism_id))->fetchObject();
  393. $sql = "SELECT library_id FROM {library} WHERE organism_id = :organism_id";
  394. $check_lib = chado_query($sql, array(':organism_id' => $organism_id))->fetchObject();
  395. $sql = "SELECT stock_id FROM {stock} WHERE organism_id = :organism_id";
  396. $check_stock = chado_query($sql, array(':organism_id' => $organism_id))->fetchObject();
  397. if (!$check_lib && !$check_feature && !$check_stock) {
  398. chado_delete_record('organism', array('organism_id' => $organism_id));
  399. }
  400. else {
  401. drupal_set_message(t("Warning: other data depends on this organism. The organism page was removed from this site but the organism was removed from Chado."), 'warning');
  402. }
  403. }
  404. /**
  405. * Add an image to an organims node
  406. *
  407. * @param $node
  408. * The node to add an image to
  409. *
  410. * The file is specified in the $_FILES array created by Drupal
  411. *
  412. * @ingroup tripal_organism
  413. */
  414. function chado_organism_add_image($node) {
  415. // check to see if a file was uploaded. If so then copy it to the images
  416. // directory for display with the organism
  417. if (isset($_FILES['files']) &&
  418. $_FILES['files']['name']['organism_image'] &&
  419. is_uploaded_file($_FILES['files']['tmp_name']['organism_image'])) {
  420. // make sure the destination directory exists
  421. $dest = tripal_get_files_dir() . "/tripal_organism/images";
  422. file_prepare_directory($dest, FILE_CREATE_DIRECTORY);
  423. // now move the file
  424. $validators = array('file_validate_is_image' => array());
  425. $destination = "public://tripal/tripal_organism/images/";
  426. $file = file_save_upload('organism_image', $validators, $destination);
  427. if (!$file) {
  428. drupal_set_message(t("Organism image was not uploaded."));
  429. }
  430. else {
  431. file_move($file, $destination . "/" . $node->nid . ".jpg", FILE_EXISTS_REPLACE);
  432. }
  433. }
  434. }
  435. /**
  436. * Implements hook_load().
  437. *
  438. * When a node is requested by the user this function is called to allow us
  439. * to add auxiliary data to the node object.
  440. *
  441. * @ingroup tripal_organism
  442. */
  443. function chado_organism_load($nodes) {
  444. foreach ($nodes as $nid => $node) {
  445. // find the organism and add in the details
  446. $organism_id = chado_get_id_from_nid('organism', $nid);
  447. // if the nid does not have a matching record then skip this node.
  448. // this can happen with orphaned nodes.
  449. if (!$organism_id) {
  450. continue;
  451. }
  452. // build the organism variable
  453. $values = array('organism_id' => $organism_id);
  454. $organism = chado_generate_var('organism', $values);
  455. // add in the description field
  456. $organism = chado_expand_var($organism, 'field', 'organism.comment');
  457. $nodes[$nid]->organism = $organism;
  458. // Now get the title
  459. $node->title = chado_get_node_title($node);
  460. }
  461. }
  462. /**
  463. * Implements hook_node_presave(). Acts on all content types.
  464. *
  465. * @param $node
  466. * The node to be saved
  467. *
  468. * @ingroup tripal_organism
  469. */
  470. function tripal_organism_node_presave($node) {
  471. switch ($node->type) {
  472. case 'chado_organism':
  473. // when syncing the details are not present in the $node object
  474. // as they are when submitted via the form. Therefore, if we do
  475. // not see any field values from the form, we assume this fucntion
  476. // is being called for syncing, so we must set the title accordingly
  477. if (property_exists($node, 'genus')) {
  478. $node->title = $node->genus . " " . $node->species;
  479. }
  480. else if (property_exists($node, 'organism')) {
  481. $node->title = $node->organism->genus . " " . $node->organism->species;
  482. }
  483. break;
  484. }
  485. }
  486. /**
  487. * Implements hook_node_view().
  488. *
  489. * @ingroup tripal_organism
  490. */
  491. function tripal_organism_node_view($node, $view_mode, $langcode) {
  492. switch ($node->type) {
  493. case 'chado_organism':
  494. // Show feature browser and counts
  495. if ($view_mode == 'full') {
  496. $node->content['tripal_organism_base'] = array(
  497. '#markup' => theme('tripal_organism_base', array('node' => $node)),
  498. '#tripal_toc_id' => 'base',
  499. '#tripal_toc_title' => 'Overview',
  500. '#weight' => -100,
  501. );
  502. $node->content['tripal_organism_properties'] = array(
  503. '#markup' => theme('tripal_organism_properties', array('node' => $node)),
  504. '#tripal_toc_id' => 'properties',
  505. '#tripal_toc_title' => 'Properties',
  506. );
  507. $node->content['tripal_organism_references'] = array(
  508. '#markup' => theme('tripal_organism_references', array('node' => $node)),
  509. '#tripal_toc_id' => 'references',
  510. '#tripal_toc_title' => 'Cross References',
  511. );
  512. }
  513. if ($view_mode == 'teaser') {
  514. $node->content['tripal_organism_teaser'] = array(
  515. '#markup' => theme('tripal_organism_teaser', array('node' => $node)),
  516. );
  517. }
  518. break;
  519. }
  520. }
  521. /**
  522. * Implements hook_node_insert().
  523. * Acts on all content types.
  524. *
  525. * @ingroup tripal_organism
  526. */
  527. function tripal_organism_node_insert($node) {
  528. switch ($node->type) {
  529. case 'chado_organism':
  530. // find the organism and add in the details
  531. $organism_id = chado_get_id_from_nid('organism', $node->nid);
  532. $values = array('organism_id' => $organism_id);
  533. $organism = chado_generate_var('organism', $values);
  534. $node->organism = $organism;
  535. // Now get the title
  536. $node->title = chado_get_node_title($node);
  537. break;
  538. }
  539. }
  540. /**
  541. * Implements hook_node_update().
  542. * Acts on all content types.
  543. *
  544. * @ingroup tripal_organism
  545. */
  546. function tripal_organism_node_update($node) {
  547. switch ($node->type) {
  548. case 'chado_organism':
  549. // find the organism and add in the details
  550. $organism_id = chado_get_id_from_nid('organism', $node->nid);
  551. $values = array('organism_id' => $organism_id);
  552. $organism = chado_generate_var('organism', $values);
  553. $node->organism = $organism;
  554. // Now get the title
  555. $node->title = chado_get_node_title($node);
  556. break;
  557. }
  558. }
  559. /**
  560. * Implements [content_type]_chado_node_default_title_format().
  561. *
  562. * Defines a default title format for the Chado Node API to set the titles on
  563. * Chado organism nodes based on chado fields.
  564. */
  565. function chado_organism_chado_node_default_title_format() {
  566. return '[organism.genus] [organism.species]';
  567. }