tripal_library.chado_node.inc 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564
  1. <?php
  2. /**
  3. * @file
  4. * Implements the library 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_library
  13. */
  14. function tripal_library_node_info() {
  15. $nodes = array();
  16. $nodes['chado_library'] = array(
  17. 'name' => t('Library'),
  18. 'base' => 'chado_library',
  19. 'description' => t('A library from the chado database'),
  20. 'has_title' => TRUE,
  21. 'locked' => TRUE,
  22. 'chado_node_api' => array(
  23. 'base_table' => 'library',
  24. 'hook_prefix' => 'chado_library',
  25. 'record_type_title' => array(
  26. 'singular' => t('Library'),
  27. 'plural' => t('Libraries')
  28. ),
  29. 'sync_filters' => array(
  30. 'type_id' => TRUE,
  31. 'organism_id' => TRUE
  32. ),
  33. )
  34. );
  35. return $nodes;
  36. }
  37. /**
  38. * Implements hook_form().
  39. *
  40. * When editing or creating a new node of type 'chado_library' we need
  41. * a form. This function creates the form that will be used for this.
  42. *
  43. * @ingroup tripal_library
  44. */
  45. function chado_library_form($node, &$form_state) {
  46. $form = array();
  47. // Default values can come in the following ways:
  48. //
  49. // 1) as elements of the $node object. This occurs when editing an existing library
  50. // 2) in the $form_state['values'] array which occurs on a failed validation or
  51. // ajax callbacks from non submit form elements
  52. // 3) in the $form_state['input'] array which occurs on ajax callbacks from submit
  53. // form elements and the form is being rebuilt
  54. //
  55. // set form field defaults
  56. $library_id = NULL;
  57. $libraryname = '';
  58. $uniquename = '';
  59. $library_type = '';
  60. $organism_id = '';
  61. $description = '';
  62. // if we are editing an existing node then the library is already part of the node
  63. if (property_exists($node, 'library')) {
  64. $library = $node->library;
  65. $library_id = $library->library_id;
  66. $libraryname = $library->name;
  67. $uniquename = $library->uniquename;
  68. $library_type = $library->type_id->cvterm_id;
  69. $organism_id = $library->organism_id->organism_id;
  70. $libprop = tripal_library_get_property($library->library_id, 'Library Description');
  71. $description = $libprop->value;
  72. // keep track of the library id if we have. If we do have one then
  73. // this is an update as opposed to an insert.
  74. $form['library_id'] = array(
  75. '#type' => 'value',
  76. '#value' => $library_id,
  77. );
  78. }
  79. // if we are re constructing the form from a failed validation or ajax callback
  80. // then use the $form_state['values'] values
  81. if (array_key_exists('values', $form_state)) {
  82. $libraryname = $form_state['values']['libraryname'];
  83. $uniquename = $form_state['values']['uniquename'];
  84. $library_type = $form_state['values']['library_type'];
  85. $organism_id = $form_state['values']['organism_id'];
  86. $description = $form_state['values']['description'];
  87. }
  88. // if we are re building the form from after submission (from ajax call) then
  89. // the values are in the $form_state['input'] array
  90. if (array_key_exists('input', $form_state) and !empty($form_state['input'])) {
  91. $libraryname = $form_state['input']['libraryname'];
  92. $uniquename = $form_state['input']['uniquename'];
  93. $library_type = $form_state['input']['library_type'];
  94. $organism_id = $form_state['input']['organism_id'];
  95. $description = $form_state['input']['description'];
  96. }
  97. $form['libraryname']= array(
  98. '#type' => 'textfield',
  99. '#title' => t('Library Name'),
  100. '#description' => t('Please enter the name for this library. Library names should be recognizable but do not need to be unique.'),
  101. '#required' => TRUE,
  102. '#default_value' => $libraryname,
  103. );
  104. $form['uniquename']= array(
  105. '#type' => 'textfield',
  106. '#title' => t('Unique Name'),
  107. '#description' => t('Please enter a unique name for this library. This can be any value used to uniquely identify a library.'),
  108. '#required' => TRUE,
  109. '#default_value' => $uniquename,
  110. );
  111. // get the list of library types
  112. $values = array(
  113. 'cv_id' => array(
  114. 'name' => 'library_type',
  115. )
  116. );
  117. $columns = array('cvterm_id','name');
  118. $options = array('order_by' => array('name' => 'ASC'));
  119. $lib_types = chado_select_record('cvterm', $columns, $values, $options);
  120. $types = array();
  121. $types[''] = '';
  122. foreach($lib_types as $type) {
  123. $types[$type->cvterm_id] = $type->name;
  124. }
  125. $form['library_type'] = array(
  126. '#title' => t('Library Type'),
  127. '#type' => t('select'),
  128. '#description' => t("Choose the library type."),
  129. '#required' => TRUE,
  130. '#default_value' => $library_type,
  131. '#options' => $types,
  132. );
  133. // get the list of organisms
  134. $sql = "SELECT * FROM {organism}";
  135. $org_rset = chado_query($sql);
  136. $organisms = array();
  137. $organisms[''] = '';
  138. while ($organism = $org_rset->fetchObject()) {
  139. $organisms[$organism->organism_id] =
  140. "$organism->genus $organism->species ($organism->common_name)";
  141. }
  142. $form['organism_id'] = array(
  143. '#title' => t('Organism'),
  144. '#type' => t('select'),
  145. '#description' => t("Choose the organism with which this library is associated."),
  146. '#required' => TRUE,
  147. '#default_value' => $organism_id,
  148. '#options' => $organisms,
  149. );
  150. $form['description']= array(
  151. '#type' => 'textarea',
  152. '#title' => t('Library Description'),
  153. '#description' => t('A brief description of the library'),
  154. '#required' => TRUE,
  155. '#default_value' => $description,
  156. );
  157. // PROPERTIES FORM
  158. //---------------------------------------------
  159. // Generate our own select list so we can desclude the description since it has it's
  160. // own form element above
  161. $cv_result = chado_select_record('cv',array('cv_id'),array('name' => 'library_property'));
  162. $cv_id = $cv_result[0]->cv_id;
  163. $select_options = tripal_cv_get_cvterm_options($cv_id);
  164. $descrip_id = array_search('Library Description', $select_options);
  165. unset($select_options[$descrip_id]);
  166. $details = array(
  167. 'property_table' => 'libraryprop', // the name of the prop table
  168. 'chado_id' => $library_id, // the value of library_id for this record
  169. 'cv_name' => 'library_property', // the cv.name of the cv governing libraryprop.type_id
  170. 'select_options' => $select_options
  171. );
  172. // Adds the form elements to your current form
  173. chado_add_node_form_properties($form, $form_state, $details);
  174. // ADDITIONAL DBXREFS FORM
  175. //---------------------------------------------
  176. $details = array(
  177. 'linking_table' => 'library_dbxref', // the name of the _dbxref table
  178. 'base_foreign_key' => 'library_id', // the name of the key in your base chado table
  179. 'base_key_value' => $library_id // the value of library_id for this record
  180. );
  181. // Adds the form elements to your current form
  182. chado_add_node_form_dbxrefs($form, $form_state, $details);
  183. return $form;
  184. }
  185. /**
  186. * Implements hook_validate().
  187. *
  188. * Validates submission of form when adding or updating a library node
  189. *
  190. * @ingroup tripal_library
  191. */
  192. function chado_library_validate($node, $form, &$form_state) {
  193. $node->libraryname = trim($node->libraryname);
  194. $node->uniquename = trim($node->uniquename);
  195. $node->description = trim($node->description);
  196. $lib = 0;
  197. // check to make sure the unique name on the library is unique
  198. // before we try to insert into chado.
  199. if (property_exists($node, 'library_id')) {
  200. $sql = "
  201. SELECT *
  202. FROM {library}
  203. WHERE uniquename = :uname AND NOT library_id = :library_id
  204. ";
  205. $lib = chado_query($sql, array(':uname' => $node->uniquename, ':library_id' => $node->library_id))->fetchObject();
  206. }
  207. else {
  208. $sql = "SELECT * FROM {library} WHERE uniquename = :uname";
  209. $lib = chado_query($sql, array(':uname' => $node->uniquename))->fetchObject();
  210. }
  211. if ($lib) {
  212. form_set_error('uniquename', t('The unique library name already exists. Please choose another'));
  213. }
  214. }
  215. /**
  216. * Implements hook_insert().
  217. *
  218. * When a new chado_library node is created we also need to add information
  219. * to our chado_library table. This function is called on insert of a new node
  220. * of type 'chado_library' and inserts the necessary information.
  221. *
  222. * @ingroup tripal_library
  223. */
  224. function chado_library_insert($node) {
  225. $node->libraryname = trim($node->libraryname);
  226. $node->uniquename = trim($node->uniquename);
  227. $node->description = trim($node->description);
  228. // if there is an library_id in the $node object then this must be a sync so
  229. // we can skip adding the library as it is already there, although
  230. // we do need to proceed with the rest of the insert
  231. if (!property_exists($node, 'library_id')) {
  232. $values = array(
  233. 'name' => $node->libraryname,
  234. 'uniquename' => $node->uniquename,
  235. 'organism_id' => $node->organism_id,
  236. 'type_id' => $node->library_type,
  237. );
  238. $library = chado_insert_record('library', $values);
  239. if (!$library) {
  240. drupal_set_message(t('Unable to add library.', 'warning'));
  241. watchdog('tripal_library', 'Insert library: Unable to create library where values: %values',
  242. array('%values' => print_r($values, TRUE)), WATCHDOG_ERROR);
  243. return;
  244. }
  245. $library_id = $library['library_id'];
  246. // * Properties Form *
  247. // add the description property
  248. $properties = chado_retrieve_node_form_properties($node);
  249. $descrip_id = tripal_cv_get_cvterm_by_name('Library Description', NULL, 'library_property');
  250. $properties[$descrip_id->cvterm_id][0] = $node->description;
  251. $details = array(
  252. 'property_table' => 'libraryprop', // the name of the prop table
  253. 'base_table' => 'library', // the name of your chado base table
  254. 'foreignkey_name' => 'library_id', // the name of the key in your base table
  255. 'foreignkey_value' => $library_id // the value of the library_id key
  256. );
  257. chado_update_node_form_properties($node, $details, $properties);
  258. // * Additional DBxrefs Form *
  259. $details = array(
  260. 'linking_table' => 'library_dbxref', // the name of your _dbxref table
  261. 'foreignkey_name' => 'library_id', // the name of the key in your base table
  262. 'foreignkey_value' => $library_id // the value of the library_id key
  263. );
  264. chado_update_node_form_dbxrefs($node, $details);
  265. }
  266. else {
  267. $library_id = $node->library_id;
  268. }
  269. // Make sure the entry for this library doesn't already exist in the
  270. // chado_library table if it doesn't exist then we want to add it.
  271. $check_org_id = chado_get_id_from_nid('library', $node->nid);
  272. if (!$check_org_id) {
  273. $record = new stdClass();
  274. $record->nid = $node->nid;
  275. $record->vid = $node->vid;
  276. $record->library_id = $library_id;
  277. drupal_write_record('chado_library', $record);
  278. }
  279. }
  280. /**
  281. * Implements hook_update().
  282. *
  283. * @ingroup tripal_library
  284. */
  285. function chado_library_update($node) {
  286. $node->libraryname = trim($node->libraryname);
  287. $node->uniquename = trim($node->uniquename);
  288. $node->description = trim($node->description);
  289. // update the library record
  290. $library_id = chado_get_id_from_nid('library', $node->nid);
  291. $match = array(
  292. 'library_id' => $library_id,
  293. );
  294. $values = array(
  295. 'name' => $node->libraryname,
  296. 'uniquename' => $node->uniquename,
  297. 'organism_id' => $node->organism_id,
  298. 'type_id' => $node->library_type,
  299. );
  300. $status = chado_update_record('library', $match, $values);
  301. if (!$status) {
  302. drupal_set_message(t('Unable to update library.', 'warning'));
  303. watchdog('tripal_library', 'Update library: Unable to update library where values: %values',
  304. array('%values' => print_r($values, TRUE)), WATCHDOG_ERROR);
  305. }
  306. // * Properties Form *
  307. // add the description property
  308. $properties = chado_retrieve_node_form_properties($node);
  309. $descrip_id = tripal_cv_get_cvterm_by_name('Library Description', NULL, 'library_property');
  310. $properties[$descrip_id->cvterm_id][0] = $node->description;
  311. $details = array(
  312. 'property_table' => 'libraryprop', // the name of the prop table
  313. 'base_table' => 'library', // the name of your chado base table
  314. 'foreignkey_name' => 'library_id', // the name of the key in your base table
  315. 'foreignkey_value' => $library_id // the value of the library_id key
  316. );
  317. chado_update_node_form_properties($node, $details, $properties);
  318. // * Additional DBxrefs Form *
  319. $details = array(
  320. 'linking_table' => 'library_dbxref', // the name of your _dbxref table
  321. 'foreignkey_name' => 'library_id', // the name of the key in your base table
  322. 'foreignkey_value' => $library_id // the value of the library_id key
  323. );
  324. chado_update_node_form_dbxrefs($node, $details);
  325. }
  326. /**
  327. * Implements hook_load().
  328. *
  329. * When a node is requested by the user this function is called to allow us
  330. * to add auxiliary data to the node object.
  331. *
  332. * @ingroup tripal_library
  333. */
  334. function chado_library_load($nodes) {
  335. foreach ($nodes as $nid => $node) {
  336. // get the feature details from chado
  337. $library_id = chado_get_id_from_nid('library', $node->nid);
  338. $values = array('library_id' => $library_id);
  339. $library = chado_generate_var('library', $values);
  340. // the uniquename field is a text field so we need to expand it
  341. $library = chado_expand_var($library, 'field', 'library.uniquename');
  342. $nodes[$nid]->library = $library;
  343. }
  344. }
  345. /**
  346. * Implements hook_delete().
  347. *
  348. * Delete data from drupal and chado databases when a node is deleted
  349. *
  350. * @ingroup tripal_library
  351. */
  352. function chado_library_delete(&$node) {
  353. $library_id = chado_get_id_from_nid('library', $node->nid);
  354. // if we don't have a library id for this node then this isn't a node of
  355. // type chado_library or the entry in the chado_library table was lost.
  356. if (!$library_id) {
  357. return;
  358. }
  359. // Remove data from {chado_library}, {node} and {node_revisions} tables of
  360. // drupal database
  361. $sql_del = "DELETE FROM {chado_library} WHERE nid = :nid AND vid = :vid";
  362. db_query($sql_del, array(':nid' => $node->nid, ':vid' => $node->vid));
  363. $sql_del = "DELETE FROM {node_revision} WHERE nid = :nid AND vid = :vid";
  364. db_query($sql_del, array(':nid' => $node->nid, ':vid' => $node->vid));
  365. $sql_del = "DELETE FROM {node} WHERE nid = :nid AND vid = :vid";
  366. db_query($sql_del, array(':nid' => $node->nid, ':vid' => $node->vid));
  367. // Remove data from library and libraryprop tables of chado database as well
  368. chado_query("DELETE FROM {libraryprop} WHERE library_id = :library_id", array(':library_id' => $library_id));
  369. chado_query("DELETE FROM {library} WHERE library_id = :library_id", array(':library_id' => $library_id));
  370. }
  371. /**
  372. * Implement hook_node_access().
  373. *
  374. * This hook allows node modules to limit access to the node types they define.
  375. *
  376. * @param $node
  377. * The node on which the operation is to be performed, or, if it does not yet exist, the
  378. * type of node to be created
  379. *
  380. * @param $op
  381. * The operation to be performed
  382. *
  383. * @param $account
  384. * A user object representing the user for whom the operation is to be performed
  385. *
  386. * @return
  387. * If the permission for the specified operation is not set then return FALSE. If the
  388. * permission is set then return NULL as this allows other modules to disable
  389. * access. The only exception is when the $op == 'create'. We will always
  390. * return TRUE if the permission is set.
  391. *
  392. * @ingroup tripal_library
  393. */
  394. function chado_library_node_access($node, $op, $account) {
  395. $node_type = $node;
  396. if (is_object($node)) {
  397. $node_type = $node->type;
  398. }
  399. if($node_type == 'chado_library') {
  400. if ($op == 'create') {
  401. if (!user_access('create chado_library', $account)) {
  402. return NODE_ACCESS_DENY;
  403. }
  404. return NODE_ACCESS_ALLOW;
  405. }
  406. if ($op == 'update') {
  407. if (!user_access('edit chado_library', $account)) {
  408. return NODE_ACCESS_DENY;
  409. }
  410. }
  411. if ($op == 'delete') {
  412. if (!user_access('delete chado_library', $account)) {
  413. return NODE_ACCESS_DENY;
  414. }
  415. }
  416. if ($op == 'view') {
  417. if (!user_access('access chado_library', $account)) {
  418. return NODE_ACCESS_DENY;
  419. }
  420. }
  421. return NODE_ACCESS_IGNORE;
  422. }
  423. }
  424. /**
  425. * Implements hook_node_view(). Acts on all content types
  426. *
  427. * @ingroup tripal_library
  428. */
  429. function tripal_library_node_view($node, $view_mode, $langcode) {
  430. switch ($node->type) {
  431. case 'chado_library':
  432. if ($view_mode == 'full') {
  433. $node->content['tripal_library_base'] = array(
  434. '#markup' => theme('tripal_library_base', array('node' => $node)),
  435. '#tripal_toc_id' => 'base',
  436. '#tripal_toc_title' => 'Overview',
  437. '#weight' => -100,
  438. );
  439. $node->content['tripal_library_properties'] = array(
  440. '#markup' => theme('tripal_library_properties', array('node' => $node)),
  441. '#tripal_toc_id' => 'properties',
  442. '#tripal_toc_title' => 'Properties',
  443. );
  444. $node->content['tripal_library_publications'] = array(
  445. '#markup' => theme('tripal_library_publications', array('node' => $node)),
  446. '#tripal_toc_id' => 'publications',
  447. '#tripal_toc_title' => 'Publications',
  448. );
  449. $node->content['tripal_library_references'] = array(
  450. '#markup' => theme('tripal_library_references', array('node' => $node)),
  451. '#tripal_toc_id' => 'references',
  452. '#tripal_toc_title' => 'Cross References',
  453. );
  454. $node->content['tripal_library_synonyms'] = array(
  455. '#markup' => theme('tripal_library_synonyms', array('node' => $node)),
  456. '#tripal_toc_id' => 'synonyms',
  457. '#tripal_toc_title' => 'Synonyms',
  458. );
  459. $node->content['tripal_library_terms'] = array(
  460. '#markup' => theme('tripal_library_terms', array('node' => $node)),
  461. '#tripal_toc_id' => 'terms',
  462. '#tripal_toc_title' => 'Annotated Terms',
  463. );
  464. }
  465. if ($view_mode == 'teaser') {
  466. $node->content['tripal_library_teaser'] = array(
  467. '#markup' => theme('tripal_library_teaser', array('node' => $node)),
  468. );
  469. }
  470. break;
  471. case 'chado_organism':
  472. if ($view_mode == 'full') {
  473. $node->content['tripal_organism.libraries'] = array(
  474. '#markup' => theme('tripal_organism.libraries', array('node' => $node)),
  475. '#tripal_toc_id' => 'libraries',
  476. '#tripal_toc_title' => 'Libraries',
  477. );
  478. }
  479. break;
  480. case 'chado_feature':
  481. if ($view_mode == 'full') {
  482. $node->content['tripal_feature.libraries'] = array(
  483. '#markup' => theme('tripal_feature.libraries', array('node' => $node)),
  484. '#tripal_toc_id' => 'libraries',
  485. '#tripal_toc_title' => 'Libraries',
  486. );
  487. }
  488. break;
  489. }
  490. }
  491. /**
  492. * Implements hook_node_presave(). Acts on all node content types.
  493. *
  494. * @ingroup tripal_library
  495. */
  496. function tripal_library_node_presave($node) {
  497. switch ($node->type) {
  498. case 'chado_library':
  499. // for a form submission the 'libraryname' field will be set,
  500. // for a sync, we must pull from the library object
  501. if(property_exists($node, 'libraryname')) {
  502. // set the title
  503. $node->title = $node->libraryname;
  504. }
  505. else {
  506. $node->title = $node->library->name;
  507. }
  508. break;
  509. }
  510. }