tripal_contact.chado_node.inc 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614
  1. <?php
  2. /**
  3. * @file
  4. * Implements drupal node hooks.
  5. *
  6. * @ingroup tripal_contact
  7. */
  8. /**
  9. * Implementation of hook_node_info().
  10. * This node_info, is a simple node that describes the functionallity of the module.
  11. *
  12. * @ingroup tripal_contact
  13. */
  14. function tripal_contact_node_info() {
  15. return array(
  16. 'chado_contact' => array(
  17. 'name' => t('Contact'),
  18. 'base' => 'chado_contact',
  19. 'description' => t('A contact from the Chado database'),
  20. 'has_title' => TRUE,
  21. 'locked' => TRUE,
  22. 'chado_node_api' => array(
  23. 'base_table' => 'contact',
  24. 'hook_prefix' => 'chado_contact',
  25. 'record_type_title' => array(
  26. 'singular' => t('Contact'),
  27. 'plural' => t('Contacts')
  28. ),
  29. 'sync_filters' => array(
  30. 'type_id' => FALSE,
  31. 'organism_id' => FALSE
  32. ),
  33. )
  34. ),
  35. );
  36. }
  37. /**
  38. * Implementation of hook_form().
  39. *
  40. * @parm $node
  41. * The node that is created when the database is initialized
  42. *
  43. * @parm $form_state
  44. * The state of the form, that has the user entered information that is neccessary for, setting
  45. * up the database tables for the contact
  46. *
  47. * @return $form
  48. * The information that was enterd allong with
  49. *
  50. * @ingroup tripal_contact
  51. */
  52. function chado_contact_form(&$node, $form_state) {
  53. $form = array();
  54. // Default values can come in the following ways:
  55. //
  56. // 1) as elements of the $node object. This occurs when editing an existing contact
  57. // 2) in the $form_state['values'] array which occurs on a failed validation or
  58. // ajax callbacks from non submit form elements
  59. // 3) in the $form_state['input'[ array which occurs on ajax callbacks from submit
  60. // form elements and the form is being rebuilt
  61. //
  62. // set form field defaults
  63. $contact_id = null;
  64. $type_id = 0;
  65. $contactname = '';
  66. $description = '';
  67. // if we are editing an existing node then the contact is already part of the node
  68. if (property_exists($node, 'contact')) {
  69. $contact = $node->contact;
  70. $contact_id = $contact->contact_id;
  71. // get form defaults
  72. $type_id = $contact->type_id->cvterm_id;
  73. $contactname = $contact->name;
  74. // get the contact default values. When this module was first created
  75. // the contact description was incorrectly stored in the $node->body field.
  76. // It is better to store it in the Chado tables. However, the 'description'
  77. // field of the contact table is only 255 characters. So, we are going
  78. // to follow the same as the contact module and store the description in
  79. // the contactprop table and leave the contact.description field blank.
  80. // however, for backwards compatibitily, we check to see if the description
  81. // is in the $node->body field. If it is we'll use that. When the node is
  82. // edited the text will be moved out of the body and into the contactprop
  83. // table where it should belong.
  84. $description = '';
  85. if (property_exists($node, 'body')) {
  86. $description = $node->body;
  87. }
  88. else {
  89. $description = $contact->description;
  90. }
  91. if (!$description) {
  92. $contactprop = tripal_contact_get_property($contact->contact_id, 'contact_description');
  93. $description = (isset($contactprop->value)) ? $contactprop->value : '';
  94. }
  95. // set the contact_id in the form
  96. $form['contact_id'] = array(
  97. '#type' => 'value',
  98. '#value' => $contact->contact_id,
  99. );
  100. }
  101. // if we are re constructing the form from a failed validation or ajax callback
  102. // then use the $form_state['values'] values
  103. if (array_key_exists('values', $form_state)) {
  104. $type_id = $form_state['values']['type_id'];
  105. $contactname = $form_state['values']['contactname'];
  106. $description = $form_state['values']['description'];
  107. }
  108. // if we are re building the form from after submission (from ajax call) then
  109. // the values are in the $form_state['input'] array
  110. if (array_key_exists('input', $form_state) and !empty($form_state['input'])) {
  111. $type_id = $form_state['input']['type_id'];
  112. $contactname = $form_state['input']['contactname'];
  113. $description = $form_state['input']['description'];
  114. }
  115. // get the contact types. These are those that are part of the tripal_contact
  116. // vocabulary and are children of the term 'Contact Type', so we need
  117. // to join on the cvtermpath table and select those with a distance of 1
  118. $sql = "
  119. SELECT CVTS.cvterm_id, CVTS.name
  120. FROM {cvtermpath} CVTP
  121. INNER JOIN {cvterm} CVTS ON CVTP.subject_id = CVTS.cvterm_id
  122. INNER JOIN {cvterm} CVTO ON CVTP.object_id = CVTO.cvterm_id
  123. INNER JOIN {cv} CV ON CVTO.cv_id = CV.cv_id
  124. WHERE
  125. CV.name = 'tripal_contact' AND
  126. CVTO.name = 'Contact Type' AND
  127. CVTP.pathdistance = 1
  128. ORDER BY CVTS.name ASC
  129. ";
  130. $results = chado_query($sql);
  131. $contact_types = array(3723 => 'Person');
  132. while ($contact_type = $results->fetchObject()) {
  133. $contact_types[$contact_type->cvterm_id] = $contact_type->name;
  134. if (strcmp($contact_type->name, "Person") == 0 and !$type_id) {
  135. $type_id = $contact_type->cvterm_id;
  136. }
  137. }
  138. $form['type_id'] = array(
  139. '#type' => 'select',
  140. '#title' => t('Contact Type'),
  141. '#options' => $contact_types,
  142. '#required' => TRUE,
  143. '#default_value' => $type_id,
  144. );
  145. $form['contactname']= array(
  146. '#type' => 'textfield',
  147. '#title' => t('Contact Name'),
  148. '#description' => t('Enter the name of this contact'),
  149. '#required' => TRUE,
  150. '#default_value' => $contactname,
  151. '#maxlength' => 255,
  152. );
  153. $form['description']= array(
  154. '#type' => 'textarea',
  155. '#title' => t('Contact Description'),
  156. '#description' => t('A brief description of the contact'),
  157. '#required' => TRUE,
  158. '#default_value' => $description,
  159. );
  160. // Properties Form
  161. // ----------------------------------
  162. // Need to pass in our own select_options since we use cvtermpath to filter ours
  163. $select_options = array();
  164. $select_options[] = 'Select a Property';
  165. $sql = "
  166. SELECT CVTS.cvterm_id, CVTS.name
  167. FROM {cvtermpath} CVTP
  168. INNER JOIN {cvterm} CVTS ON CVTP.subject_id = CVTS.cvterm_id
  169. INNER JOIN {cvterm} CVTO ON CVTP.object_id = CVTO.cvterm_id
  170. INNER JOIN {cv} CV ON CVTO.cv_id = CV.cv_id
  171. WHERE
  172. CV.name = 'tripal_contact' AND
  173. NOT CVTO.name = 'Contact Type'
  174. ORDER BY CVTS.name ASC";
  175. $prop_types = chado_query($sql);
  176. while ($prop = $prop_types->fetchObject()) {
  177. // add all properties except the Citation. That property is set via the uniquename field
  178. if ($prop->name != 'Citation') {
  179. if (!isset($select_options[$prop->cvterm_id])) {
  180. $select_options[$prop->cvterm_id] = $prop->name;
  181. }
  182. }
  183. }
  184. $details = array(
  185. 'property_table' => 'contactprop',
  186. 'chado_id' => 'contact_id',
  187. 'cv_name' => 'tripal_contact',
  188. 'select_options' => $select_options
  189. );
  190. chado_add_node_form_properties($form, $form_state, $details);
  191. // RELATIONSHIPS FORM
  192. //---------------------------------------------
  193. // We want to use the contact_relationship_types cv if there are any terms available
  194. // and if not, to default to the relationship ontology
  195. $cv_result = chado_select_record('cv',array('cv_id'),array('name' => 'contact_relationship_types'));
  196. $cv_id = $cv_result[0]->cv_id;
  197. $select_options = tripal_cv_get_cvterm_options($cv_id);
  198. if (empty($select_options)) {
  199. $cv_result = chado_select_record('cv',array('cv_id'),array('name' => 'relationship'));
  200. $cv_id = $cv_result[0]->cv_id;
  201. $select_options = tripal_cv_get_cvterm_options($cv_id);
  202. }
  203. // D7 @TODO: tell tripal admin's about this
  204. $details = array(
  205. 'relationship_table' => 'contact_relationship', // the name of the _relationship table
  206. 'base_table' => 'contact', // the name of your chado base table
  207. 'base_foreign_key' => 'contact_id', // the name of the key in your base chado table
  208. 'base_key_value' => $contact_id, // the value of example_id for this record
  209. 'nodetype' => 'contact', // the human-readable name of your node type
  210. 'cv_name' => 'contact_relationship_types', // the cv.name of the cv governing example_relationship.type_id
  211. 'base_name_field' => 'name', // the base table field you want to be used as the name
  212. 'select_options' => $select_options
  213. );
  214. // Adds the form elements to your current form
  215. chado_add_node_form_relationships($form, $form_state, $details);
  216. return $form;
  217. }
  218. /**
  219. * Implements hook_validate().
  220. * Validates submission of form when adding or updating a contact node.
  221. *
  222. * @ingroup tripal_contact
  223. */
  224. function chado_contact_validate($node, $form, &$form_state) {
  225. // remove surrounding white-space on submitted values
  226. $node->contactname = trim($node->contactname);
  227. $node->description = trim($node->description);
  228. // if this is a delete then don't validate
  229. if($node->op == 'Delete') {
  230. return;
  231. }
  232. // we are syncing if we do not have a node ID but we do have a contact_id. We don't
  233. // need to validate during syncing so just skip it.
  234. if (is_null($node->nid) and property_exists($node, 'contact_id') and $node->contact_id != 0) {
  235. return;
  236. }
  237. // Validating for an update
  238. if (property_exists($node, 'nid')) {
  239. // get the existing node
  240. $values = array('contact_id' => $node->contact_id);
  241. $result = chado_select_record('contact', array('*'), $values);
  242. $contact = $result[0];
  243. // if the name has changed make sure it doesn't conflict with an existing name
  244. if ($contact->name != $node->contactname) {
  245. $values = array('name' => $node->contactname);
  246. $result = chado_select_record('contact', array('contact_id'), $values);
  247. if ($result and count($result) > 0) {
  248. form_set_error('contactname', 'Cannot update the contact with this contact name. A contact with this name already exists.');
  249. return;
  250. }
  251. }
  252. }
  253. // Validating for an insert
  254. else {
  255. // The unique constraint for the chado contact table is: name
  256. $values = array(
  257. 'name' => $node->contactname,
  258. );
  259. $contact = chado_select_record('contact', array('contact_id'), $values);
  260. if ($contact and count($contact) > 0) {
  261. form_set_error('contactname', 'Cannot add the contact with this name. A contact with these values already exists.');
  262. return;
  263. }
  264. }
  265. }
  266. /**
  267. * Implements hook_access().
  268. *
  269. * This hook allows node modules to limit access to the node types they define.
  270. *
  271. * @param $node
  272. * The node on which the operation is to be performed, or, if it does not yet exist, the
  273. * type of node to be created
  274. *
  275. * @param $op
  276. * The operation to be performed
  277. *
  278. * @param $account
  279. * A user object representing the user for whom the operation is to be performed
  280. *
  281. * @return
  282. * If the permission for the specified operation is not set then return FALSE. If the
  283. * permission is set then return NULL as this allows other modules to disable
  284. * access. The only exception is when the $op == 'create'. We will always
  285. * return TRUE if the permission is set.
  286. *
  287. * @ingroup tripal_contact
  288. */
  289. function chado_contact_node_access($node, $op, $account ) {
  290. if ($op == 'create') {
  291. if (!user_access('create chado_contact content', $account)) {
  292. return FALSE;
  293. }
  294. return TRUE;
  295. }
  296. if ($op == 'update') {
  297. if (!user_access('edit chado_contact content', $account)) {
  298. return FALSE;
  299. }
  300. }
  301. if ($op == 'delete') {
  302. if (!user_access('delete chado_contact content', $account)) {
  303. return FALSE;
  304. }
  305. }
  306. if ($op == 'view') {
  307. if (!user_access('access chado_contact content', $account)) {
  308. return FALSE;
  309. }
  310. }
  311. return NULL;
  312. }
  313. /**
  314. * Implements of hook_insert().
  315. *
  316. * This function inserts user entered information pertaining to the contact instance into the
  317. * 'contactauthor', 'contactprop', 'chado_contact', 'contact' talble of the database.
  318. *
  319. * @parm $node
  320. * Then node which contains the information stored within the node-ID
  321. *
  322. * @ingroup tripal_contact
  323. */
  324. function chado_contact_insert($node) {
  325. // remove surrounding white-space on submitted values
  326. $node->contactname = trim($node->contactname);
  327. $node->description = trim($node->description);
  328. // if there is a contact_id in the $node object then this must be a sync so
  329. // we can skip adding the contact as it is already there, although
  330. // we do need to proceed with the rest of the insert
  331. if (!property_exists($node, 'contact_id')) {
  332. // insert and then get the newly inserted contact record
  333. $values = array(
  334. 'name' => $node->contactname,
  335. 'description' => '',
  336. 'type_id' => $node->type_id,
  337. );
  338. $contact = chado_insert_record('contact', $values);
  339. if (!$contact) {
  340. drupal_set_message(t('Unable to add contact.', 'warning'));
  341. tripal_report_error('tripal_contact', TRIPAL_ERROR,
  342. 'Insert contact: Unable to create contact where values: %values',
  343. array('%values' => print_r($values, TRUE)));
  344. return;
  345. }
  346. $contact_id = $contact['contact_id'];
  347. // Add the description property
  348. $properties = chado_retrieve_node_form_properties($node);
  349. $contact_descrip_id = tripal_cv_get_cvterm_by_name('contact_description', NULL, 'tripal_contact');
  350. $properties[$contact_descrip_id->cvterm_id][0] = $node->description;
  351. // * Properties Form *
  352. $details = array(
  353. 'property_table' => 'contactprop',
  354. 'base_table' => 'contact',
  355. 'foreignkey_name' => 'contact_id',
  356. 'foreignkey_value' => $contact_id
  357. );
  358. chado_update_node_form_properties($node, $details, $properties);
  359. // * Relationships Form *
  360. $details = array(
  361. 'relationship_table' => 'contact_relationship', // name of the _relationship table
  362. 'foreignkey_value' => $contact_id // value of the contact_id key
  363. );
  364. chado_update_node_form_relationships($node, $details);
  365. }
  366. else {
  367. $contact_id = $node->contact_id;
  368. }
  369. // Make sure the entry for this contact doesn't already exist in the
  370. // chado_contact table if it doesn't exist then we want to add it.
  371. $check_org_id = chado_get_id_from_nid('contact', $node->nid);
  372. if (!$check_org_id) {
  373. $record = new stdClass();
  374. $record->nid = $node->nid;
  375. $record->vid = $node->vid;
  376. $record->contact_id = $contact_id;
  377. drupal_write_record('chado_contact', $record);
  378. }
  379. return TRUE;
  380. }
  381. /**
  382. * Implements hook_update
  383. *
  384. * The purpose of the function is to allow the module to take action when an edited node is being
  385. * updated. It updates any name changes to the database tables that werec reated upon registering a contact.
  386. * As well, the database will be changed, so the user changed information will be saved to the database.
  387. *
  388. * @param $node
  389. * The node being updated
  390. *
  391. * @ingroup tripal_contact
  392. */
  393. function chado_contact_update($node) {
  394. // remove surrounding white-space on submitted values
  395. $node->contactname = trim($node->contactname);
  396. $node->description = trim($node->description);
  397. $contact_id = chado_get_id_from_nid('contact', $node->nid) ;
  398. // update the contact record
  399. $match = array(
  400. 'contact_id' => $contact_id,
  401. );
  402. $values = array(
  403. 'name' => $node->contactname,
  404. 'description' => '',
  405. 'type_id' => $node->type_id
  406. );
  407. $status = chado_update_record('contact', $match, $values);
  408. if (!$status) {
  409. drupal_set_message("Error updating contact", "error");
  410. tripal_report_error('tripal_contact', TRIPAL_ERROR,
  411. "Error updating contact", array());
  412. return;
  413. }
  414. // Add the description property
  415. $properties = chado_retrieve_node_form_properties($node);
  416. $contact_descrip_id = tripal_cv_get_cvterm_by_name('contact_description', NULL, 'tripal_contact');
  417. $properties[$contact_descrip_id->cvterm_id][0] = $node->description;
  418. // now add in the properties by first removing any the contact
  419. // already has and adding the ones we have
  420. $details = array(
  421. 'property_table' => 'contactprop',
  422. 'base_table' => 'contact',
  423. 'foreignkey_name' => 'contact_id',
  424. 'foreignkey_value' => $contact_id
  425. );
  426. chado_update_node_form_properties($node, $details, $properties);
  427. // * Relationships Form *
  428. $details = array(
  429. 'relationship_table' => 'contact_relationship', // name of the _relationship table
  430. 'foreignkey_value' => $contact_id // value of the contact_id key
  431. );
  432. chado_update_node_form_relationships($node, $details);
  433. }
  434. /**
  435. * Implements hook_load().
  436. *
  437. * @param $node
  438. * The node that is to be accessed from the database
  439. *
  440. * @return $node
  441. * The node with the information to be loaded into the database
  442. *
  443. * @ingroup tripal_contact
  444. */
  445. function chado_contact_load($nodes) {
  446. foreach ($nodes as $nid => $node) {
  447. // find the contact and add in the details
  448. $contact_id = chado_get_id_from_nid('contact', $nid);
  449. // get the contact
  450. $values = array('contact_id' => $contact_id);
  451. $contact = chado_generate_var('contact', $values);
  452. // get the contact description from the contactprop table and replace
  453. // the contact.description field with this one (we don't use the contact.description
  454. // field because it is only 255 characters (too small)).
  455. $values = array(
  456. 'contact_id' => $contact->contact_id,
  457. 'type_id' => array(
  458. 'name' => 'contact_description',
  459. ),
  460. );
  461. $options = array(
  462. 'return_array' => 1,
  463. 'include_fk' => array('type_id' => 1),
  464. );
  465. $description = chado_generate_var('contactprop', $values, $options);
  466. if (count($description) == 1) {
  467. $description = chado_expand_var($description, 'field', 'contactprop.value');
  468. $contact->description = $description[0]->value;
  469. }
  470. $nodes[$nid]->contact = $contact;
  471. }
  472. }
  473. /**
  474. * Implements hook_delete().
  475. *
  476. * This function takes a node and if the delete button has been chosen by the user, the contact
  477. * and it's details will be removed.Following,given the node-ID, the instance will be deleted from
  478. * the 'chado_contact' table.
  479. *
  480. * @parm $node
  481. * Then node which contains the information stored within the node-ID
  482. *
  483. * @ingroup tripal_contact
  484. */
  485. function chado_contact_delete(&$node) {
  486. $contact_id = chado_get_id_from_nid('contact', $node->nid);
  487. // if we don't have a contact id for this node then this isn't a node of
  488. // type chado_contact or the entry in the chado_contact table was lost.
  489. if (!$contact_id) {
  490. return;
  491. }
  492. // Remove data from {chado_contact}, {node} and {node_revisions} tables of
  493. // drupal database
  494. $sql_del = "DELETE FROM {chado_contact} WHERE nid = :nid AND vid = :vid";
  495. db_query($sql_del, array(':nid' => $node->nid, ':vid' => $node->vid));
  496. $sql_del = "DELETE FROM {node_revision} WHERE nid = :nid AND vid = :vid";
  497. db_query($sql_del, array(':nid' => $node->nid, ':vid' => $node->vid));
  498. $sql_del = "DELETE FROM {node} WHERE nid = :nid AND vid = :vid";
  499. db_query($sql_del, array(':nid' => $node->nid, ':vid' => $node->vid));
  500. // Remove data from contact and contactprop tables of chado database as well
  501. chado_query("DELETE FROM {contactprop} WHERE contact_id = :contact_id", array(':contact_id' => $contact_id));
  502. chado_query("DELETE FROM {contact} WHERE contact_id = :contact_id", array(':contact_id' => $contact_id));
  503. }
  504. /**
  505. * Implements hook_node_view().
  506. *
  507. * @ingroup tripal_contact
  508. */
  509. function tripal_contact_node_view($node, $view_mode, $langcode) {
  510. switch ($node->type) {
  511. case 'chado_contact':
  512. // Show feature browser and counts
  513. if ($view_mode == 'full') {
  514. $node->content['tripal_contact_base'] = array(
  515. '#markup' => theme('tripal_contact_base', array('node' => $node)),
  516. '#tripal_toc_id' => 'base',
  517. '#tripal_toc_title' => 'Overview',
  518. '#weight' => -100,
  519. );
  520. $node->content['tripal_contact_properties'] = array(
  521. '#markup' => theme('tripal_contact_properties', array('node' => $node)),
  522. '#tripal_toc_id' => 'properties',
  523. '#tripal_toc_title' => 'Properties',
  524. );
  525. $node->content['tripal_contact_publications'] = array(
  526. '#markup' => theme('tripal_contact_publications', array('node' => $node)),
  527. '#tripal_toc_id' => 'publications',
  528. '#tripal_toc_title' => 'Publications',
  529. );
  530. $node->content['tripal_contact_relationships'] = array(
  531. '#markup' => theme('tripal_contact_relationships', array('node' => $node)),
  532. '#tripal_toc_id' => 'relationships',
  533. '#tripal_toc_title' => 'Relationships',
  534. );
  535. }
  536. if ($view_mode == 'teaser') {
  537. $node->content['tripal_contact_teaser'] = array(
  538. '#markup' => theme('tripal_contact_teaser', array('node' => $node)),
  539. );
  540. }
  541. break;
  542. }
  543. }
  544. /**
  545. * Implements hook_node_presave().
  546. *
  547. * @ingroup tripal_contact
  548. */
  549. function tripal_contact_node_presave($node) {
  550. switch ($node->type) {
  551. case 'chado_contact':
  552. // for a form submission the 'contactname' field will be set,
  553. // for a sync, we must pull from the contact object
  554. if(property_exists($node, 'contactname')) {
  555. // set the title
  556. $node->title = $node->contactname;
  557. }
  558. else {
  559. $node->title = $node->contact->name;
  560. }
  561. break;
  562. }
  563. }