tripal_analysis.chado_node.inc 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797
  1. <?php
  2. /**
  3. * @file
  4. * Implements Drupal Node hooks to create the chado_analysis node content type.
  5. *
  6. * @ingroup tripal_analysis
  7. */
  8. /**
  9. * Implements hook_node_info().
  10. * Provide information to drupal about the node types that we're creating
  11. * in this module
  12. *
  13. * @ingroup tripal_analysis
  14. */
  15. function tripal_analysis_node_info() {
  16. $nodes = array();
  17. $nodes['chado_analysis'] = array(
  18. 'name' => t('Analysis'),
  19. 'base' => 'chado_analysis',
  20. 'description' => t('An analysis'),
  21. 'has_title' => TRUE,
  22. 'locked' => TRUE,
  23. 'chado_node_api' => array(
  24. 'base_table' => 'analysis',
  25. 'hook_prefix' => 'chado_analysis',
  26. 'record_type_title' => array(
  27. 'singular' => t('Analysis'),
  28. 'plural' => t('Analyses')
  29. ),
  30. 'sync_filters' => array(
  31. 'type_id' => FALSE,
  32. 'organism_id' => FALSE,
  33. 'checkboxes' => array('name'),
  34. ),
  35. )
  36. );
  37. return $nodes;
  38. }
  39. /**
  40. * Implements hook_form().
  41. * When editing or creating a new node of type 'chado_analysis' we need
  42. * a form. This function creates the form that will be used for this.
  43. *
  44. * @ingroup tripal_analysis
  45. */
  46. function chado_analysis_form($node, &$form_state) {
  47. $form = array();
  48. // Default values can come in the following ways:
  49. //
  50. // 1) as elements of the $node object. This occurs when editing an existing analysis
  51. // 2) in the $form_state['values'] array which occurs on a failed validation or
  52. // ajax callbacks from non submit form elements
  53. // 3) in the $form_state['input'[ array which occurs on ajax callbacks from submit
  54. // form elements and the form is being rebuilt
  55. //
  56. // set form field defaults
  57. $analysis_id = null;
  58. $analysisname = '';
  59. $program = '';
  60. $programversion = '';
  61. $algorithm = '';
  62. $sourcename = '';
  63. $sourceversion = '';
  64. $sourceuri = '';
  65. $timeexecuted = '';
  66. $description = '';
  67. $d_removed = array(); // lists removed properties
  68. $num_new = 0; // the number of new rows
  69. // if we are editing an existing node then the analysis is already part of the node
  70. if (property_exists($node, 'analysis')) {
  71. $analysis = $node->analysis;
  72. $analysis = chado_expand_var($analysis, 'field', 'analysis.description');
  73. $analysis_id = $analysis->analysis_id;
  74. // get form defaults
  75. $analysisname = $analysis->name;
  76. $program = $analysis->program;
  77. $programversion = $analysis->programversion;
  78. $algorithm = $analysis->algorithm;
  79. $sourcename = $analysis->sourcename;
  80. $sourceversion = $analysis->sourceversion;
  81. $sourceuri = $analysis->sourceuri;
  82. $timeexecuted = $analysis->timeexecuted;
  83. $description = $analysis->description;
  84. $analysis_type = $node->type;
  85. // set the analysis_id in the form
  86. $form['analysis_id'] = array(
  87. '#type' => 'value',
  88. '#value' => $analysis->analysis_id,
  89. );
  90. }
  91. // if we are re constructing the form from a failed validation or ajax callback
  92. // then use the $form_state['values'] values
  93. if (array_key_exists('values', $form_state)) {
  94. $analysisname = $form_state['values']['analysisname'];
  95. $program = $form_state['values']['program'];
  96. $programversion = $form_state['values']['programversion'];
  97. $algorithm = $form_state['values']['algorithm'];
  98. $sourcename = $form_state['values']['sourcename'];
  99. $sourceversion = $form_state['values']['sourceversion'];
  100. $sourceuri = $form_state['values']['sourceuri'];
  101. $timeexecuted = $form_state['values']['timeexecuted'];
  102. $description = $form_state['values']['description'];
  103. $d_removed = $form_state['values']['removed'];
  104. $num_new = $form_state['values']['num_new'] ? $form_state['values']['num_new'] : 0;
  105. $analysis_type = $form_state['values']['analysis_type'];
  106. }
  107. // if we are re building the form from after submission (from ajax call) then
  108. // the values are in the $form_state['input'] array
  109. if (array_key_exists('input', $form_state) and !empty($form_state['input'])) {
  110. $analysisname = $form_state['input']['analysisname'];
  111. $program = $form_state['input']['program'];
  112. $programversion = $form_state['input']['programversion'];
  113. $algorithm = $form_state['input']['algorithm'];
  114. $sourcename = $form_state['input']['sourcename'];
  115. $sourceversion = $form_state['input']['sourceversion'];
  116. $sourceuri = $form_state['input']['sourceuri'];
  117. $timeexecuted = $form_state['input']['timeexecuted'];
  118. $description = $form_state['input']['description'];
  119. $d_removed = isset($form_state['input']['removed']) ? $form_state['input']['removed'] : array();
  120. $num_new = isset($form_state['input']['num_new']) ? $form_state['input']['num_new'] : 0;
  121. $analysis_type = isset($form_state['input']['analysis_type']) ? $form_state['input']['analysis_type'] : '';
  122. }
  123. $form['title']= array(
  124. '#type' => 'value',
  125. '#default_value' => $node->title,
  126. );
  127. $form['instructions'] = array(
  128. '#markup' => t('When adding any type of data it is good to associate it with
  129. an analysis so that site visitors can identify the source of the data including
  130. necessary materials and methods. The fields below imply that all analyses
  131. are derived from some software package. But, data can also be derived via retreival
  132. from an external source or an analysis pipeline with multipel software components.
  133. In these cases, provide values for the fields below that best makes sense
  134. '),
  135. );
  136. $form['analysisname']= array(
  137. '#type' => 'textfield',
  138. '#title' => t('Analysis Name'),
  139. '#required' => TRUE,
  140. '#default_value' => $analysisname,
  141. '#description' => t("This should be a brief name that
  142. describes the analysis succintly. This name will helps the user find analyses."),
  143. );
  144. $form['program']= array(
  145. '#type' => 'textfield',
  146. '#title' => t('Program, Pipeline Name or Method Name'),
  147. '#required' => TRUE,
  148. '#default_value' => $program,
  149. '#description' => t("Program name, e.g. blastx, blastp, sim4, genscan. If the analysis was not derived from a software package, provide a very brief description of the pipeline or method."),
  150. );
  151. $form['programversion']= array(
  152. '#type' => 'textfield',
  153. '#title' => t('Program, Pipeline or Method version'),
  154. '#required' => TRUE,
  155. '#default_value' => $programversion,
  156. '#description' => t("Version description, e.g. TBLASTX 2.0MP-WashU [09-Nov-2000]. Enter 'n/a' if no version is available or applicable."),
  157. );
  158. $form['algorithm']= array(
  159. '#type' => 'textfield',
  160. '#title' => t('Algorithm'),
  161. '#required' => FALSE,
  162. '#default_value' => $algorithm,
  163. '#description' => t("Algorithm name, e.g. blast."),
  164. );
  165. $form['sourcename']= array(
  166. '#type' => 'textfield',
  167. '#title' => t('Source Name'),
  168. '#required' => TRUE,
  169. '#default_value' => $sourcename,
  170. '#description' => t('The name of the source data. This could be a file name, data set name or a
  171. small description for how the data was collected. For long descriptions use the description field below'),
  172. );
  173. $form['sourceversion']= array(
  174. '#type' => 'textfield',
  175. '#title' => t('Source Version'),
  176. '#required' => FALSE,
  177. '#default_value' => $sourceversion,
  178. '#description' => t('If the source dataset has a version, include it here'),
  179. );
  180. $form['sourceuri']= array(
  181. '#type' => 'textfield',
  182. '#title' => t('Source URI'),
  183. '#required' => FALSE,
  184. '#default_value' => $sourceuri,
  185. '#description' => t("This is a permanent URL or URI for the source of the analysis.
  186. Someone could recreate the analysis directly by going to this URI and
  187. fetching the source data (e.g. the blast database, or the training model)."),
  188. );
  189. // Get time saved in chado
  190. $default_time = $timeexecuted;
  191. $year = preg_replace("/^(\d+)-\d+-\d+ .*/", "$1", $default_time);
  192. $month = preg_replace("/^\d+-0?(\d+)-\d+ .*/", "$1", $default_time);
  193. $day = preg_replace("/^\d+-\d+-0?(\d+) .*/", "$1", $default_time);
  194. // If the time is not set, use current time
  195. if (!$default_time) {
  196. $default_time = REQUEST_TIME;
  197. $year = format_date($default_time, 'custom', 'Y');
  198. $month = format_date($default_time, 'custom', 'n');
  199. $day = format_date($default_time, 'custom', 'j');
  200. }
  201. $form['timeexecuted']= array(
  202. '#type' => 'date',
  203. '#title' => t('Time Executed'),
  204. '#required' => TRUE,
  205. '#default_value' => array(
  206. 'year' => $year,
  207. 'month' => $month,
  208. 'day' => $day,
  209. ),
  210. );
  211. $form['description']= array(
  212. '#type' => 'textarea',
  213. '#rows' => 15,
  214. '#title' => t('Materials & Methods (Description and/or Program Settings)'),
  215. '#required' => FALSE,
  216. '#default_value' => $description,
  217. '#description' => t('Please provide all necessary information to allow
  218. someone to recreate the analysis, including materials and methods
  219. for collection of the source data and performing the analysis'),
  220. );
  221. /*
  222. // get node types from analysis extension modules
  223. $sql = "SELECT modulename FROM {tripal_analysis}";
  224. $modules = db_query($sql);
  225. $node_types = array();
  226. $node_types['chado_analysis'] = 'Analysis';
  227. foreach($modules as $module) {
  228. $mtypes = call_user_func($module->modulename . "_node_info");
  229. foreach ($mtypes as $mtypename => $mtype) {
  230. $node_types[$mtypename] = $mtype['name'];
  231. }
  232. }
  233. if (count($node_types) > 0) {
  234. $form['analysis_type'] = array(
  235. '#title' => t('Analysis Type'),
  236. '#type' => t('select'),
  237. '#description' => t("You can change this analysis type to be any other analysis type currently supported by Tripal. Simply change this value and click 'Save'. Then click 'Edit' again to supply additional values."),
  238. '#required' => TRUE,
  239. '#default_value' => $analysis_type,
  240. '#options' => $node_types,
  241. );
  242. } */
  243. // Properties Form
  244. // ----------------------------------
  245. $instructions = t('To add additional properties to the drop down. ' . l("Add terms to the analysis_property vocabulary", "admin/tripal/chado/tripal_cv/cvterm/add") . ".");
  246. $prop_cv = tripal_get_default_cv('analysisprop', 'type_id');
  247. $cv_id = $prop_cv ? $prop_cv->cv_id : NULL;
  248. $details = array(
  249. 'property_table' => 'analysisprop', // the name of the prop table
  250. 'chado_id' => $analysis_id, // the value of analysis_id for this record
  251. 'cv_id' => $cv_id, // the cv.cv_id of the cv governing analysisprop.type_id
  252. 'fieldset_title' => 'Properties',
  253. 'additional_instructions' => $instructions
  254. );
  255. chado_add_node_form_properties($form, $form_state, $details);
  256. return $form;
  257. }
  258. /**
  259. * Implements hook_validate().
  260. * Validates the user input before creating an analysis node
  261. *
  262. * @ingroup tripal_analysis
  263. */
  264. function chado_analysis_validate($node, $form, &$form_state) {
  265. // use the analysis parent to validate the node
  266. tripal_analysis_validate($node, $form, $form_state);
  267. }
  268. /**
  269. * This validation is being used for three activities:
  270. * CASE A: Update a node that exists in both drupal and chado
  271. * CASE B: Synchronizing a node from chado to drupal
  272. * CASE C: Inserting a new node that exists in niether drupal nor chado
  273. *
  274. * @ingroup tripal_analysis
  275. */
  276. function tripal_analysis_validate($node, $form, &$form_state) {
  277. // We only want to validate when the node is saved.
  278. // Since this validate can be called on AJAX and Deletion of the node
  279. // we need to make this check to ensure queries are not executed
  280. // without the proper values.
  281. if($node->op != 'Save') {
  282. return;
  283. }
  284. // we are syncing if we do not have a node ID but we do have a analysis_id. We don't
  285. // need to validate during syncing so just skip it.
  286. if (is_null($node->nid) and property_exists($node, 'analysis_id') and $node->analysis_id != 0) {
  287. return;
  288. }
  289. // remove surrounding white-space on submitted values
  290. $node->analysisname = trim($node->analysisname);
  291. $node->description = trim($node->description);
  292. $node->program = trim($node->program);
  293. $node->programversion = trim($node->programversion);
  294. $node->algorithm = trim($node->algorithm);
  295. $node->sourcename = trim($node->sourcename);
  296. $node->sourceversion = trim($node->sourceversion);
  297. $node->sourceuri = trim($node->sourceuri);
  298. // Validating for an update
  299. if (!is_null($node->nid)) {
  300. // get the existing node
  301. $values = array('analysis_id' => $node->analysis_id);
  302. $result = chado_select_record('analysis', array('*'), $values);
  303. $analysis = $result[0];
  304. // if the name has changed make sure it doesn't conflict with an existing name
  305. if ($analysis->name != $node->analysisname) {
  306. $values = array('name' => $node->analysisname);
  307. $result = chado_select_record('analysis', array('analysis_id'), $values);
  308. if ($result and count($result) > 0) {
  309. form_set_error('analysisname', 'Cannot update the analysis with this analysis name. An analysis with this name already exists.');
  310. return;
  311. }
  312. }
  313. // if the unique constraint has changed check to make sure it doesn't conflict with an
  314. // existing record
  315. if ($analysis->program != $node->program or $analysis->programversion != $node->programversion or
  316. $analysis->sourcename != $node->sourcename) {
  317. $values = array(
  318. 'program' => $node->program,
  319. 'programversion' => $node->programversion,
  320. 'sourcename' => $node->sourcename,
  321. );
  322. $result = chado_select_record('analysis', array('analysis_id'), $values);
  323. if ($result and count($result) > 0) {
  324. if ($analysis->program != $node->program) {
  325. $field = 'program';
  326. }
  327. if ($analysis->programversion != $node->programversion) {
  328. $field = 'programversion';
  329. }
  330. if ($analysis->sourcename != $node->sourcename) {
  331. $field = 'sourcename';
  332. }
  333. form_set_error($field, 'Cannot update the analysis with this program,
  334. program version and source name. An analysis with these values already exists.');
  335. return;
  336. }
  337. }
  338. }
  339. // Validating for an insert
  340. else {
  341. $values = array(
  342. 'program' => $node->program,
  343. 'programversion' => $node->programversion,
  344. 'sourcename' => $node->sourcename,
  345. );
  346. $analysis = chado_select_record('analysis', array('analysis_id'), $values);
  347. if ($analysis and count($analysis) > 0) {
  348. form_set_error('program', 'Cannot add the analysis with this program,
  349. program version and source name. An analysis with these values already exists.');
  350. return;
  351. }
  352. // make sure we have a unique analysis name. This is not a requirement
  353. // for the analysis table but we use the analysis name for the Drupal node
  354. // title, so it should be unique
  355. $values = array('name' => $node->analysisname);
  356. $result = chado_select_record('analysis', array('analysis_id'), $values);
  357. if ($result and count($result) > 0) {
  358. form_set_error('analysisname', 'Cannot add the analysis with this analysis name. An analysis with this name already exists.');
  359. return;
  360. }
  361. }
  362. }
  363. /**
  364. * Implements hook_insert().
  365. * When a new chado_analysis node is created we also need to add information
  366. * to our chado_analysis table. This function is called on insert of a new
  367. * node of type 'chado_analysis' and inserts the necessary information.
  368. *
  369. * @ingroup tripal_analysis
  370. */
  371. function chado_analysis_insert($node) {
  372. $node->analysisname = trim($node->analysisname);
  373. $node->description = trim($node->description);
  374. $node->program = trim($node->program);
  375. $node->programversion = trim($node->programversion);
  376. $node->algorithm = trim($node->algorithm);
  377. $node->sourcename = trim($node->sourcename);
  378. $node->sourceversion = trim($node->sourceversion);
  379. $node->sourceuri = trim($node->sourceuri);
  380. // if there is an analysis_id in the $node object then this must be a sync so
  381. // we can skip adding the analysis as it is already there, although
  382. // we do need to proceed with the rest of the insert
  383. if (!property_exists($node, 'analysis_id')) {
  384. // Create a timestamp so we can insert it into the chado database
  385. $time = $node->timeexecuted;
  386. $month = $time['month'];
  387. $day = $time['day'];
  388. $year = $time['year'];
  389. $timestamp = $month . '/' . $day . '/' . $year;
  390. // insert and then get the newly inserted analysis record
  391. $values = array(
  392. 'name' => $node->analysisname,
  393. 'description' => $node->description,
  394. 'program' => $node->program,
  395. 'programversion' => $node->programversion,
  396. 'algorithm' => $node->algorithm,
  397. 'sourcename' => $node->sourcename,
  398. 'sourceversion' => $node->sourceversion,
  399. 'sourceuri' => $node->sourceuri,
  400. 'timeexecuted' => $timestamp
  401. );
  402. $analysis = chado_insert_record('analysis', $values);
  403. if (!$analysis) {
  404. drupal_set_message(t('Unable to add analysis.', 'warning'));
  405. tripal_report_error('tripal_analysis', TRIPAL_ERROR, 'Insert analysis: Unable to create analysis where values:%values',
  406. array('%values' => print_r($values, TRUE)));
  407. return;
  408. }
  409. $analysis_id = $analysis['analysis_id'];
  410. // now add in the properties
  411. $details = array(
  412. 'property_table' => 'analysisprop',
  413. 'base_table' => 'analysis',
  414. 'foreignkey_name' => 'analysis_id',
  415. 'foreignkey_value' => $analysis_id
  416. );
  417. chado_update_node_form_properties($node, $details);
  418. }
  419. else {
  420. $analysis_id = $node->analysis_id;
  421. }
  422. // Make sure the entry for this analysis doesn't already exist in the
  423. // chado_analysis table if it doesn't exist then we want to add it.
  424. $check_org_id = chado_get_id_from_nid('analysis', $node->nid);
  425. if (!$check_org_id) {
  426. $record = new stdClass();
  427. $record->nid = $node->nid;
  428. $record->vid = $node->vid;
  429. $record->analysis_id = $analysis_id;
  430. drupal_write_record('chado_analysis', $record);
  431. }
  432. // add the analysis to the node object for
  433. // use by other analysis modules that may be using this function
  434. $node->analysis = $analysis;
  435. $node->analysis_id = $analysis_id; // we need to set this for children
  436. }
  437. /**
  438. * Implements hook_delete().
  439. * Removes analysis from the chado database.
  440. *
  441. * @ingroup tripal_analysis
  442. */
  443. function chado_analysis_delete($node) {
  444. $analysis_id = chado_get_id_from_nid('analysis', $node->nid);
  445. // if we don't have an analysis id for this node then this isn't a node of
  446. // type chado_analysis or the entry in the chado_analysis table was lost.
  447. if (!$analysis_id) {
  448. return;
  449. }
  450. // Remove data from the {chado_analysis}, {node}, and {node_revisions} tables
  451. $sql_del = "DELETE FROM {chado_analysis} WHERE nid = :nid AND vid = :vid";
  452. db_query($sql_del, array(':nid' => $node->nid, ':vid' => $node->vid));
  453. $sql_del = "DELETE FROM {node} WHERE nid = :nid AND vid = :vid";
  454. db_query($sql_del, array(':nid' => $node->nid, ':vid' => $node->vid));
  455. $sql_del = "DELETE FROM {node_revision} WHERE nid = :nid AND vid = :vid";
  456. db_query($sql_del, array(':nid' => $node->nid, ':vid' => $node->vid));
  457. //Remove from analysis and analysisprop tables of chado database as well
  458. chado_query("DELETE FROM {analysis} WHERE analysis_id = :analysis_id", array(':analysis_id' => $analysis_id));
  459. }
  460. /**
  461. * Implements hook_update().
  462. * Update analyses
  463. *
  464. * @ingroup tripal_analysis
  465. */
  466. function chado_analysis_update($node) {
  467. $node->analysisname = trim($node->analysisname);
  468. $node->description = trim($node->description);
  469. $node->program = trim($node->program);
  470. $node->programversion = trim($node->programversion);
  471. $node->algorithm = trim($node->algorithm);
  472. $node->sourcename = trim($node->sourcename);
  473. $node->sourceversion = trim($node->sourceversion);
  474. $node->sourceuri = trim($node->sourceuri);
  475. // Create a timestamp so we can insert it into the chado database
  476. $time = $node->timeexecuted;
  477. $month = $time['month'];
  478. $day = $time['day'];
  479. $year = $time['year'];
  480. $timestamp = $month . '/' . $day . '/' . $year;
  481. // update the record in Chado
  482. $analysis_id = chado_get_id_from_nid('analysis', $node->nid);
  483. $match = array(
  484. 'analysis_id' => $node->analysis_id,
  485. );
  486. $values = array(
  487. 'name' => $node->analysisname,
  488. 'description' => $node->description,
  489. 'program' => $node->program,
  490. 'programversion' => $node->programversion,
  491. 'algorithm' => $node->algorithm,
  492. 'sourcename' => $node->sourcename,
  493. 'sourceversion' => $node->sourceversion,
  494. 'sourceuri' => $node->sourceuri,
  495. 'timeexecuted' => $timestamp,
  496. 'analysis_id' => $analysis_id
  497. );
  498. $status = chado_update_record('analysis', $match, $values);
  499. if (!$status) {
  500. drupal_set_message(t('Unable to update analysis.', 'warning'));
  501. tripal_report_error('tripal_analysis', TRIPAL_ERROR, 'Update analysis: Unable to update analysis where values: %values',
  502. array('%values' => print_r($values, TRUE)));
  503. }
  504. // now add in the properties by first removing any the analysis
  505. // already has and adding the ones we have
  506. $details = array(
  507. 'property_table' => 'analysisprop',
  508. 'base_table' => 'analysis',
  509. 'foreignkey_name' => 'analysis_id',
  510. 'foreignkey_value' => $analysis_id
  511. );
  512. chado_update_node_form_properties($node, $details);
  513. }
  514. /**
  515. * Implements hook_load().
  516. * When a node is requested by the user this function is called to allow us
  517. * to add auxiliary data to the node object.
  518. *
  519. * @ingroup tripal_analysis
  520. */
  521. function chado_analysis_load($nodes) {
  522. foreach ($nodes as $nid => $node) {
  523. // find the analysis and add in the details
  524. $analysis_id = chado_get_id_from_nid('analysis', $nid);
  525. // if the nid does not have a matching record then skip this node.
  526. // this can happen with orphaned nodes.
  527. if (!$analysis_id) {
  528. continue;
  529. }
  530. // build the analysis variable
  531. $values = array('analysis_id' => $analysis_id);
  532. $analysis = chado_generate_var('analysis', $values);
  533. // add in the description field
  534. $analysis = chado_expand_var($analysis, 'field', 'analysis.description');
  535. $nodes[$nid]->analysis = $analysis;
  536. // Now get the title
  537. $node->title = chado_get_node_title($node);
  538. }
  539. }
  540. /**
  541. * Implements hook_access().
  542. *
  543. * This hook allows node modules to limit access to the node types they define.
  544. *
  545. * @param $node
  546. * The node on which the operation is to be performed, or, if it does not yet exist, the
  547. * type of node to be created
  548. *
  549. * @param $op
  550. * The operation to be performed
  551. *
  552. * @param $account
  553. * A user object representing the user for whom the operation is to be performed
  554. *
  555. * @return
  556. * If the permission for the specified operation is not set then return FALSE. If the
  557. * permission is set then return NULL as this allows other modules to disable
  558. * access. The only exception is when the $op == 'create'. We will always
  559. * return TRUE if the permission is set.
  560. *
  561. * @ingroup tripal_analysis
  562. */
  563. function chado_analysis_node_access($node, $op, $account) {
  564. $node_type = $node;
  565. if (is_object($node)) {
  566. $node_type = $node->type;
  567. }
  568. if($node_type == 'chado_analysis') {
  569. if ($op == 'create') {
  570. if (!user_access('create chado_analysis content', $account)) {
  571. return NODE_ACCESS_DENY;
  572. }
  573. return NODE_ACCESS_ALLOW;
  574. }
  575. if ($op == 'update') {
  576. if (!user_access('edit chado_analysis content', $account)) {
  577. return NODE_ACCESS_DENY;
  578. }
  579. }
  580. if ($op == 'delete') {
  581. if (!user_access('delete chado_analysis content', $account)) {
  582. return NODE_ACCESS_DENY;
  583. }
  584. }
  585. if ($op == 'view') {
  586. if (!user_access('access chado_analysis content', $account)) {
  587. return NODE_ACCESS_DENY;
  588. }
  589. }
  590. return NODE_ACCESS_IGNORE;
  591. }
  592. }
  593. /**
  594. * Implements hook_node_view().
  595. * Called for all node types.
  596. *
  597. * @ingroup tripal_analysis
  598. */
  599. function tripal_analysis_node_view($node, $view_mode, $langcode) {
  600. switch ($node->type) {
  601. case 'chado_analysis':
  602. // Show feature browser and counts
  603. if ($view_mode == 'full') {
  604. $node->content['tripal_analysis_base'] = array(
  605. '#theme' => 'tripal_analysis_base',
  606. '#node' => $node,
  607. '#tripal_toc_id' => 'base',
  608. '#tripal_toc_title' => 'Overview',
  609. '#weight' => -100,
  610. );
  611. $node->content['tripal_analysis_properties'] = array(
  612. '#theme' => 'tripal_analysis_properties',
  613. '#node' => $node,
  614. '#tripal_toc_id' => 'properties',
  615. '#tripal_toc_title' => 'Properties',
  616. );
  617. }
  618. if ($view_mode == 'teaser') {
  619. $node->content['tripal_analysis_teaser'] = array(
  620. '#theme' => 'tripal_analysis_teaser',
  621. '#node' => $node,
  622. );
  623. }
  624. break;
  625. }
  626. }
  627. /**
  628. * Implements hook_node_presave().
  629. * Called for all node types.
  630. *
  631. * @ingroup tripal_analysis
  632. */
  633. function tripal_analysis_node_presave($node) {
  634. $name = '';
  635. $program = '';
  636. $programversion = '';
  637. $sourcename = '';
  638. // This step is for setting the title for the Drupal node. This title
  639. // is permanent and thus is created to be unique. Title changes provided
  640. // by tokens are generated on the fly dynamically, but the node title
  641. // seen in the content listing needs to be set here. Do not call
  642. // the chado_get_node_title() function here to set the title as the node
  643. // object isn't properly filled out and the function will fail.
  644. // If this is an analysis of some type it will should have three required
  645. // fields for the Chado analysis table: program, programversion and sourcename.
  646. // So we will set the title for any node that has these three fields. Some extension
  647. // modules will use this module as a type of "inherited" class, so we don't know
  648. // for sure when type of analysis we have. If this is a sync then
  649. if (property_exists($node, 'program') and
  650. property_exists($node, 'programversion') and
  651. property_exists($node, 'sourcename')) {
  652. $name = $node->analysisname;
  653. $program = $node->program;
  654. $programversion = $node->programversion;
  655. $sourcename = $node->sourcename;
  656. // now construct the title
  657. $node->title = "$program ($programversion) $sourcename";
  658. if ($name) {
  659. $node->title = $name;
  660. }
  661. // reset the type
  662. //$node->type = $node->analysis_type;
  663. }
  664. else if (property_exists($node, 'analysis')) {
  665. $name = $node->analysis->name;
  666. $program = $node->analysis->program;
  667. $programversion = $node->analysis->programversion;
  668. $sourcename = $node->analysis->sourcename;
  669. // now construct the title
  670. $node->title = "$program ($programversion) $sourcename";
  671. if ($name) {
  672. $node->title = $name;
  673. }
  674. //$node->type = $node->analysis_type;
  675. }
  676. }
  677. /**
  678. * Implements hook_node_insert().
  679. * Acts on all content types.
  680. *
  681. * @ingroup tripal_analysis
  682. */
  683. function tripal_analysis_node_insert($node) {
  684. switch ($node->type) {
  685. case 'chado_analysis':
  686. // We still don't have a fully loaded node object in this hook. Therefore,
  687. // we need to simulate one so that the right values are available for
  688. // the URL to be determined.
  689. $analysis_id = chado_get_id_from_nid('analysis', $node->nid);
  690. $values = array('analysis_id' => $analysis_id);
  691. $analysis = chado_generate_var('analysis', $values);
  692. $node->analysis = $analysis;
  693. // Now get the title
  694. $node->title = chado_get_node_title($node);
  695. // Now use the API to set the path.
  696. chado_set_node_url($node);
  697. break;
  698. }
  699. }
  700. /**
  701. * Implements hook_node_update().
  702. * Acts on all content types.
  703. *
  704. * @ingroup tripal_analysis
  705. */
  706. function tripal_analysis_node_update($node) {
  707. switch ($node->type) {
  708. case 'chado_analysis':
  709. // Now get the title
  710. $node->title = chado_get_node_title($node);
  711. // Now use the API to set the path.
  712. chado_set_node_url($node);
  713. break;
  714. }
  715. }
  716. /**
  717. * Implements [content_type]_chado_node_default_title_format().
  718. *
  719. * Defines a default title format for the Chado Node API to set the titles on
  720. * Chado Analysis nodes based on chado fields.
  721. */
  722. function chado_analysis_chado_node_default_title_format() {
  723. return '[analysis.name]';
  724. }
  725. /**
  726. * Implements hook_chado_node_default_url_format().
  727. *
  728. * Designates a default URL format for analysis nodes.
  729. */
  730. function chado_analysis_chado_node_default_url_format() {
  731. return '/analysis/[analysis.program]/[analysis.programversion]/[analysis.sourcename]';
  732. }