tripal_organism.chado_node.inc 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644
  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' => 'managed_file',
  165. '#title' => t('Organism Image'),
  166. '#description' => t('Add an image to display for this organism.'),
  167. '#progress_indicator' => 'bar',
  168. '#upload_location' => 'public://tripal/tripal_organism/images/',
  169. );
  170. // PROPERTIES FORM
  171. //---------------------------------------------
  172. $prop_cv = tripal_get_default_cv('organismprop', 'type_id');
  173. $cv_id = $prop_cv ? $prop_cv->cv_id : NULL;
  174. $details = array(
  175. 'property_table' => 'organismprop', // the name of the prop table
  176. 'chado_id' => $organism_id, // the value of organism_id for this record
  177. 'cv_id' => $cv_id // the cv.cv_id of the cv governing organismprop.type_id
  178. );
  179. // Adds the form elements to your current form
  180. chado_add_node_form_properties($form, $form_state, $details);
  181. // ADDITIONAL DBXREFS FORM
  182. //---------------------------------------------
  183. $details = array(
  184. 'linking_table' => 'organism_dbxref', // the name of the _dbxref table
  185. 'base_foreign_key' => 'organism_id', // the name of the key in your base chado table
  186. 'base_key_value' => $organism_id // the value of organism_id for this record
  187. );
  188. // Adds the form elements to your current form
  189. chado_add_node_form_dbxrefs($form, $form_state, $details);
  190. return $form;
  191. }
  192. /**
  193. * Implementation of hook_validate().
  194. *
  195. * @param $node
  196. * @param $form
  197. * @param $form_state
  198. *
  199. * @ingroup tripal_organism
  200. */
  201. function chado_organism_validate($node, $form, &$form_state) {
  202. // if this is a delete then don't validate
  203. if($node->op == 'Delete') {
  204. return;
  205. }
  206. // we are syncing if we do not have a node ID but we do have a organism_id. We don't
  207. // need to validate during syncing so just skip it.
  208. if (is_null($node->nid) and property_exists($node, 'organism_id') and $node->organism_id != 0) {
  209. return;
  210. }
  211. // remove any white space around values
  212. $node->genus = trim($node->genus);
  213. $node->species = trim($node->species);
  214. $node->abbreviation = trim($node->abbreviation);
  215. $node->common_name = trim($node->common_name);
  216. $node->description = trim($node->description);
  217. // Validating for an update
  218. if (property_exists($node, 'organism_id')) {
  219. $sql = "
  220. SELECT *
  221. FROM {organism} O
  222. WHERE
  223. genus = :genus AND
  224. species = :species AND NOT
  225. organism_id = :organism_id
  226. ";
  227. $args = array(':genus' => $node->genus, ':species' => $node->species, ':organism_id' => $node->organism_id);
  228. $result = chado_query($sql, $args)->fetchObject();
  229. if ($result) {
  230. form_set_error('genus', t("Update cannot proceed. The organism genus
  231. '$node->genus' and species '$node->species' is already present in the database."));
  232. tripal_report_error('tripal_organism', TRIPAL_WARNING,
  233. 'Update organism: genus and species already exists: %values',
  234. array('%values' => "genus = $node->genus, species = $node->species"));
  235. }
  236. }
  237. // Validating for an insert
  238. else {
  239. $values = array(
  240. 'genus' => $node->genus,
  241. 'species' => $node->species,
  242. );
  243. $organism = chado_select_record('organism', array('organism_id'), $values);
  244. if (sizeof($organism) > 0) {
  245. form_set_error('genus', 'Cannot add the organism with this genus and species.
  246. The organism already exists.');
  247. tripal_report_error('tripal_organism', TRIPAL_WARNING,
  248. 'Insert organism: genus and species already exists: %values',
  249. array('%values' => "genus = $node->genus, species = $node->species"));
  250. }
  251. }
  252. }
  253. /**
  254. * Implements hook_insert().
  255. *
  256. * When a new chado_organism node is created we also need to add information
  257. * to our chado_organism table. This function is called on insert of a new node
  258. * of type 'chado_organism' and inserts the necessary information.
  259. *
  260. * @ingroup tripal_organism
  261. */
  262. function chado_organism_insert($node) {
  263. // remove any white space around values
  264. $node->genus = trim($node->genus);
  265. $node->species = trim($node->species);
  266. $node->abbreviation = trim($node->abbreviation);
  267. $node->common_name = trim($node->common_name);
  268. $node->description = trim($node->description);
  269. // if there is an organism_id in the $node object then this must be a sync so
  270. // we can skip adding the organism as it is already there, although
  271. // we do need to proceed with the rest of the insert
  272. if (!property_exists($node, 'organism_id')) {
  273. $values = array(
  274. 'genus' => $node->genus,
  275. 'species' => $node->species,
  276. 'abbreviation' => $node->abbreviation,
  277. 'common_name' => $node->common_name,
  278. 'comment' => $node->description
  279. );
  280. $organism = chado_insert_record('organism', $values);
  281. if (!$organism) {
  282. drupal_set_message(t('Unable to add organism.', 'warning'));
  283. tripal_report_error('tripal_organism', TRIPAL_ERROR, 'Insert Organism: Unable to create organism where values:%values',
  284. array('%values' => print_r($values, TRUE)));
  285. return;
  286. }
  287. $organism_id = $organism['organism_id'];
  288. if ($organism_id) {
  289. // * Properties Form *
  290. $details = array(
  291. 'property_table' => 'organismprop', // the name of the prop table
  292. 'base_table' => 'organism', // the name of your chado base table
  293. 'foreignkey_name' => 'organism_id', // the name of the key in your base table
  294. 'foreignkey_value' => $organism_id // the value of the example_id key
  295. );
  296. chado_update_node_form_properties($node, $details);
  297. // * Additional DBxrefs Form *
  298. $details = array(
  299. 'linking_table' => 'organism_dbxref', // the name of your _dbxref table
  300. 'foreignkey_name' => 'organism_id', // the name of the key in your base table
  301. 'foreignkey_value' => $organism_id // the value of the organism_id key
  302. );
  303. chado_update_node_form_dbxrefs($node, $details);
  304. }
  305. }
  306. else {
  307. $organism_id = $node->organism_id;
  308. }
  309. // Make sure the entry for this organism doesn't already exist in the
  310. // chado_organism table if it doesn't exist then we want to add it.
  311. $check_org_id = chado_get_id_from_nid('organism', $node->nid);
  312. if (!$check_org_id) {
  313. $record = new stdClass();
  314. $record->nid = $node->nid;
  315. $record->vid = $node->vid;
  316. $record->organism_id = $organism_id;
  317. drupal_write_record('chado_organism', $record);
  318. }
  319. // add the image
  320. if (property_exists($node, 'organism_image')) {
  321. chado_organism_add_image($node);
  322. }
  323. }
  324. /**
  325. * Implements hook_update().
  326. *
  327. * @ingroup tripal_organism
  328. */
  329. function chado_organism_update($node) {
  330. // remove any white space around values
  331. $node->genus = trim($node->genus);
  332. $node->species = trim($node->species);
  333. $node->abbreviation = trim($node->abbreviation);
  334. $node->common_name = trim($node->common_name);
  335. $node->description = trim($node->description);
  336. $organism_id = chado_get_id_from_nid('organism', $node->nid);
  337. if ($node->revision) {
  338. // there is no way to handle revisions in Chado but leave
  339. // this here just to make not we've addressed it.
  340. }
  341. $match = array(
  342. 'organism_id' => $organism_id,
  343. );
  344. $values = array(
  345. 'genus' => $node->genus,
  346. 'species' => $node->species,
  347. 'abbreviation' => $node->abbreviation,
  348. 'common_name' => $node->common_name,
  349. 'comment' => $node->description
  350. );
  351. $org_status = chado_update_record('organism', $match, $values);
  352. chado_organism_add_image($node);
  353. // * Properties Form *
  354. $details = array(
  355. 'property_table' => 'organismprop', // the name of the prop table
  356. 'base_table' => 'organism', // the name of your chado base table
  357. 'foreignkey_name' => 'organism_id', // the name of the key in your base table
  358. 'foreignkey_value' => $organism_id // the value of the example_id key
  359. );
  360. chado_update_node_form_properties($node, $details);
  361. // * Additional DBxrefs Form *
  362. $details = array(
  363. 'linking_table' => 'organism_dbxref', // the name of your _dbxref table
  364. 'foreignkey_name' => 'organism_id', // the name of the key in your base table
  365. 'foreignkey_value' => $organism_id // the value of the organism_id key
  366. );
  367. chado_update_node_form_dbxrefs($node, $details);
  368. }
  369. /**
  370. * Adds the image to the organism node and cleans up any old images.
  371. *
  372. * @param $node
  373. * The node object.
  374. */
  375. function chado_organism_add_image($node) {
  376. // If there is already an organism image, then remove it it if
  377. // no other modules are using it
  378. $fid = db_select('file_usage', 'fu')
  379. ->fields('fu', array('fid'))
  380. ->condition('module', 'tripal_organism')
  381. ->condition('type', 'organism_image')
  382. ->condition('id', $node->nid)
  383. ->execute()
  384. ->fetchField();
  385. if ($fid) {
  386. $file = file_load($fid);
  387. file_usage_delete($file, 'tripal_organism', 'organism_image', $node->nid);
  388. file_delete($file);
  389. }
  390. // Save the uploaded file
  391. $file = file_load($node->organism_image);
  392. if ($file) {
  393. $file->status = FILE_STATUS_PERMANENT;
  394. file_save($file);
  395. file_usage_add($file, 'tripal_organism', 'organism_image', $node->nid);
  396. }
  397. }
  398. /**
  399. * Implements hook_delete().
  400. *
  401. * Delete organism from both drupal and chado databases. Check dependency before
  402. * deleting from chado.
  403. *
  404. * @ingroup tripal_organism
  405. */
  406. function chado_organism_delete($node) {
  407. $organism_id = chado_get_id_from_nid('organism', $node->nid);
  408. // if we don't have an organism id for this node then this isn't a node of
  409. // type chado_organism or the entry in the chado_organism table was lost.
  410. if (!$organism_id) {
  411. return;
  412. }
  413. // Remove data from the {chado_organism}, {node}, and {node_revisions} tables
  414. $sql_del = "DELETE FROM {chado_organism} WHERE nid = :nid AND vid = :vid";
  415. db_query($sql_del, array(':nid' => $node->nid, ':vid' => $node->vid));
  416. $sql_del = "DELETE FROM {node} WHERE nid = :nid AND vid = :vid";
  417. db_query($sql_del, array(':nid' => $node->nid, ':vid' => $node->vid));
  418. $sql_del = "DELETE FROM {node_revision} WHERE nid = :nid AND vid = :vid";
  419. db_query($sql_del, array(':nid' => $node->nid, ':vid' => $node->vid));
  420. // Test dependency before deleting from chado database. If a library or
  421. // feature depends on this organism, don't delete it
  422. $sql = "SELECT feature_id FROM {feature} WHERE organism_id = :organism_id";
  423. $check_feature = chado_query($sql, array(':organism_id' => $organism_id))->fetchObject();
  424. $sql = "SELECT library_id FROM {library} WHERE organism_id = :organism_id";
  425. $check_lib = chado_query($sql, array(':organism_id' => $organism_id))->fetchObject();
  426. $sql = "SELECT stock_id FROM {stock} WHERE organism_id = :organism_id";
  427. $check_stock = chado_query($sql, array(':organism_id' => $organism_id))->fetchObject();
  428. if (!$check_lib && !$check_feature && !$check_stock) {
  429. chado_delete_record('organism', array('organism_id' => $organism_id));
  430. }
  431. else {
  432. 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');
  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. // This step is for setting the title for the Drupal node. This title
  473. // is permanent and thus is created to be unique. Title changes provided
  474. // by tokens are generated on the fly dynamically, but the node title
  475. // seen in the content listing needs to be set here. Do not call
  476. // the chado_get_node_title() function here to set the title as the node
  477. // object isn't properly filled out and the function will fail.
  478. case 'chado_organism':
  479. // when syncing the details are not present in the $node object
  480. // as they are when submitted via the form. Therefore, if we do
  481. // not see any field values from the form, we assume this fucntion
  482. // is being called for syncing, so we must set the title accordingly
  483. if (property_exists($node, 'genus')) {
  484. $node->title = $node->genus . " " . $node->species;
  485. }
  486. else if (property_exists($node, 'organism')) {
  487. $node->title = $node->organism->genus . " " . $node->organism->species;
  488. }
  489. break;
  490. }
  491. }
  492. /**
  493. * Implements hook_node_view().
  494. *
  495. * @ingroup tripal_organism
  496. */
  497. function tripal_organism_node_view($node, $view_mode, $langcode) {
  498. switch ($node->type) {
  499. case 'chado_organism':
  500. // Show feature browser and counts
  501. if ($view_mode == 'full') {
  502. $node->content['tripal_organism_base'] = array(
  503. '#markup' => theme('tripal_organism_base', array('node' => $node)),
  504. '#tripal_toc_id' => 'base',
  505. '#tripal_toc_title' => 'Overview',
  506. '#weight' => -100,
  507. );
  508. $node->content['tripal_organism_properties'] = array(
  509. '#markup' => theme('tripal_organism_properties', array('node' => $node)),
  510. '#tripal_toc_id' => 'properties',
  511. '#tripal_toc_title' => 'Properties',
  512. );
  513. $node->content['tripal_organism_references'] = array(
  514. '#markup' => theme('tripal_organism_references', array('node' => $node)),
  515. '#tripal_toc_id' => 'references',
  516. '#tripal_toc_title' => 'Cross References',
  517. );
  518. }
  519. if ($view_mode == 'teaser') {
  520. $node->content['tripal_organism_teaser'] = array(
  521. '#markup' => theme('tripal_organism_teaser', array('node' => $node)),
  522. );
  523. }
  524. break;
  525. }
  526. }
  527. /**
  528. * Implements hook_node_insert().
  529. * Acts on all content types.
  530. *
  531. * @ingroup tripal_organism
  532. */
  533. function tripal_organism_node_insert($node) {
  534. switch ($node->type) {
  535. case 'chado_organism':
  536. // find the organism and add in the details
  537. $organism_id = chado_get_id_from_nid('organism', $node->nid);
  538. $values = array('organism_id' => $organism_id);
  539. $organism = chado_generate_var('organism', $values);
  540. $node->organism = $organism;
  541. // Now get the title
  542. $node->title = chado_get_node_title($node);
  543. // Now use the API to set the path.
  544. chado_set_node_url($node);
  545. break;
  546. }
  547. }
  548. /**
  549. * Implements hook_node_update().
  550. * Acts on all content types.
  551. *
  552. * @ingroup tripal_organism
  553. */
  554. function tripal_organism_node_update($node) {
  555. switch ($node->type) {
  556. case 'chado_organism':
  557. // Now get the title.
  558. $node->title = chado_get_node_title($node);
  559. // Now use the API to set the path.
  560. chado_set_node_url($node);
  561. break;
  562. }
  563. }
  564. /**
  565. * Implements [content_type]_chado_node_default_title_format().
  566. *
  567. * Defines a default title format for the Chado Node API to set the titles on
  568. * Chado organism nodes based on chado fields.
  569. */
  570. function chado_organism_chado_node_default_title_format() {
  571. return '[organism.genus] [organism.species]';
  572. }
  573. /**
  574. * Implements hook_chado_node_default_url_format().
  575. *
  576. * Designates a default URL format for organism nodes.
  577. */
  578. function chado_organism_chado_node_default_url_format() {
  579. return '/organism/[organism.genus]/[organism.species]';
  580. }