tripal_contact.chado_node.inc 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730
  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 = chado_get_property(
  93. 'contact',
  94. $contact->contact_id,
  95. 'contact_description',
  96. 'tripal_contact'
  97. );
  98. $description = (isset($contactprop->value)) ? $contactprop->value : '';
  99. }
  100. // set the contact_id in the form
  101. $form['contact_id'] = array(
  102. '#type' => 'value',
  103. '#value' => $contact->contact_id,
  104. );
  105. }
  106. // if we are re constructing the form from a failed validation or ajax callback
  107. // then use the $form_state['values'] values
  108. if (array_key_exists('values', $form_state)) {
  109. $type_id = $form_state['values']['type_id'];
  110. $contactname = $form_state['values']['contactname'];
  111. $description = $form_state['values']['description'];
  112. }
  113. // if we are re building the form from after submission (from ajax call) then
  114. // the values are in the $form_state['input'] array
  115. if (array_key_exists('input', $form_state) and !empty($form_state['input'])) {
  116. $type_id = $form_state['input']['type_id'];
  117. $contactname = $form_state['input']['contactname'];
  118. $description = $form_state['input']['description'];
  119. }
  120. // get the contact type
  121. $type_cv = tripal_get_default_cv('contact', 'type_id');
  122. if ($type_cv->name == 'tripal_contact') {
  123. // get the contact types. If the default is the 'tripal_contact' vocabulary,
  124. // then we want terms that are part of the tripal_contact
  125. // vocabulary and are children of the term 'Contact Type', so we need
  126. // to join on the cvtermpath table and select those with a distance of 1
  127. $sql = "
  128. SELECT CVTS.cvterm_id, CVTS.name
  129. FROM {cvtermpath} CVTP
  130. INNER JOIN {cvterm} CVTS ON CVTP.subject_id = CVTS.cvterm_id
  131. INNER JOIN {cvterm} CVTO ON CVTP.object_id = CVTO.cvterm_id
  132. INNER JOIN {cv} CV ON CVTO.cv_id = CV.cv_id
  133. WHERE
  134. CV.name = 'tripal_contact' AND
  135. CVTO.name = 'Contact Type' AND
  136. CVTP.pathdistance = 1
  137. ORDER BY CVTS.name ASC
  138. ";
  139. $results = chado_query($sql);
  140. while ($contact_type = $results->fetchObject()) {
  141. $contact_types[$contact_type->cvterm_id] = $contact_type->name;
  142. if (strcmp($contact_type->name, "Person") == 0 and !$type_id) {
  143. $type_id = $contact_type->cvterm_id;
  144. }
  145. }
  146. }
  147. else {
  148. $contact_types = tripal_get_cvterm_default_select_options('contact', 'type_id', 'contact types');
  149. }
  150. $form['type_id'] = array(
  151. '#type' => 'select',
  152. '#title' => t('Contact Type'),
  153. '#options' => $contact_types,
  154. '#required' => TRUE,
  155. '#default_value' => $type_id,
  156. );
  157. $form['contactname']= array(
  158. '#type' => 'textfield',
  159. '#title' => t('Contact Name'),
  160. '#description' => t('Enter the name of this contact'),
  161. '#required' => TRUE,
  162. '#default_value' => $contactname,
  163. '#maxlength' => 255,
  164. );
  165. $form['description']= array(
  166. '#type' => 'textarea',
  167. '#title' => t('Contact Description'),
  168. '#description' => t('A brief description of the contact'),
  169. '#required' => TRUE,
  170. '#default_value' => $description,
  171. );
  172. // Properties Form
  173. // ----------------------------------
  174. $prop_cv = tripal_get_default_cv('contactprop', 'type_id');
  175. $cv_id = $prop_cv ? $prop_cv->cv_id : NULL;
  176. $select_options = array();
  177. // the Tripal contact vocabulary is heirarchical so if that vocab is default we
  178. // want to use the subset of terms not under the type 'Contact Type' for our
  179. // properties list.
  180. if($prop_cv->name == 'tripal_contact') {
  181. // Need to pass in our own select_options since we use cvtermpath to filter ours
  182. $select_options[] = 'Select a Property';
  183. $sql = "
  184. SELECT CVTS.cvterm_id, CVTS.name
  185. FROM {cvtermpath} CVTP
  186. INNER JOIN {cvterm} CVTS ON CVTP.subject_id = CVTS.cvterm_id
  187. INNER JOIN {cvterm} CVTO ON CVTP.object_id = CVTO.cvterm_id
  188. INNER JOIN {cv} CV ON CVTO.cv_id = CV.cv_id
  189. WHERE
  190. CV.name = 'tripal_contact' AND
  191. NOT CVTO.name = 'Contact Type'
  192. ORDER BY CVTS.name ASC";
  193. $prop_types = chado_query($sql);
  194. while ($prop = $prop_types->fetchObject()) {
  195. // add all properties except the Citation. That property is set via the uniquename field
  196. if ($prop->name != 'Citation') {
  197. if (!isset($select_options[$prop->cvterm_id])) {
  198. $select_options[$prop->cvterm_id] = $prop->name;
  199. }
  200. }
  201. }
  202. }
  203. $details = array(
  204. 'property_table' => 'contactprop',
  205. 'chado_id' => $contact_id,
  206. 'cv_id' => $cv_id,
  207. 'select_options' => $select_options,
  208. );
  209. chado_add_node_form_properties($form, $form_state, $details);
  210. // RELATIONSHIPS FORM
  211. //---------------------------------------------
  212. $relationship_cv = tripal_get_default_cv('contact_relationship', 'type_id');
  213. $cv_id = $relationship_cv ? $relationship_cv->cv_id : NULL;
  214. $details = array(
  215. 'relationship_table' => 'contact_relationship', // the name of the _relationship table
  216. 'base_table' => 'contact', // the name of your chado base table
  217. 'base_foreign_key' => 'contact_id', // the name of the key in your base chado table
  218. 'base_key_value' => $contact_id, // the value of example_id for this record
  219. 'nodetype' => 'contact', // the human-readable name of your node type
  220. 'cv_id' => $cv_id, // the cv.cv_id of the cv governing contact_relationship.type_id
  221. 'base_name_field' => 'name', // the base table field you want to be used as the name
  222. );
  223. // Adds the form elements to your current form
  224. chado_add_node_form_relationships($form, $form_state, $details);
  225. return $form;
  226. }
  227. /**
  228. * Implements hook_validate().
  229. * Validates submission of form when adding or updating a contact node.
  230. *
  231. * @ingroup tripal_contact
  232. */
  233. function chado_contact_validate($node, $form, &$form_state) {
  234. // if this is a delete then don't validate
  235. if($node->op == 'Delete') {
  236. return;
  237. }
  238. // we are syncing if we do not have a node ID but we do have a contact_id. We don't
  239. // need to validate during syncing so just skip it.
  240. if (is_null($node->nid) and property_exists($node, 'contact_id') and $node->contact_id != 0) {
  241. return;
  242. }
  243. // remove surrounding white-space on submitted values
  244. $node->contactname = trim($node->contactname);
  245. $node->description = trim($node->description);
  246. // Validating for an update
  247. if (!is_null($node->nid)) {
  248. // get the existing node
  249. $values = array('contact_id' => $node->contact_id);
  250. $result = chado_select_record('contact', array('*'), $values);
  251. $contact = $result[0];
  252. // if the name has changed make sure it doesn't conflict with an existing name
  253. if ($contact->name != $node->contactname) {
  254. $values = array('name' => $node->contactname);
  255. $result = chado_select_record('contact', array('contact_id'), $values);
  256. if ($result and count($result) > 0) {
  257. form_set_error('contactname', 'Cannot update the contact with this contact name. A contact with this name already exists.');
  258. return;
  259. }
  260. }
  261. }
  262. // Validating for an insert
  263. else {
  264. // The unique constraint for the chado contact table is: name
  265. $values = array(
  266. 'name' => $node->contactname,
  267. );
  268. $contact = chado_select_record('contact', array('contact_id'), $values);
  269. if ($contact and count($contact) > 0) {
  270. form_set_error('contactname', 'Cannot add the contact with this name. A contact with these values already exists.');
  271. return;
  272. }
  273. }
  274. }
  275. /**
  276. * Implements hook_access().
  277. *
  278. * This hook allows node modules to limit access to the node types they define.
  279. *
  280. * @param $node
  281. * The node on which the operation is to be performed, or, if it does not yet exist, the
  282. * type of node to be created
  283. *
  284. * @param $op
  285. * The operation to be performed
  286. *
  287. * @param $account
  288. * A user object representing the user for whom the operation is to be performed
  289. *
  290. * @return
  291. * If the permission for the specified operation is not set then return FALSE. If the
  292. * permission is set then return NULL as this allows other modules to disable
  293. * access. The only exception is when the $op == 'create'. We will always
  294. * return TRUE if the permission is set.
  295. *
  296. * @ingroup tripal_contact
  297. */
  298. function chado_contact_node_access($node, $op, $account ) {
  299. $node_type = $node;
  300. if (is_object($node)) {
  301. $node_type = $node->type;
  302. }
  303. if($node_type == 'chado_contact') {
  304. if ($op == 'create') {
  305. if (!user_access('create chado_contact content', $account)) {
  306. return NODE_ACCESS_DENY;
  307. }
  308. return NODE_ACCESS_ALLOW;
  309. }
  310. if ($op == 'update') {
  311. if (!user_access('edit chado_contact content', $account)) {
  312. return NODE_ACCESS_DENY;
  313. }
  314. }
  315. if ($op == 'delete') {
  316. if (!user_access('delete chado_contact content', $account)) {
  317. return NODE_ACCESS_DENY;
  318. }
  319. }
  320. if ($op == 'view') {
  321. if (!user_access('access chado_contact content', $account)) {
  322. return NODE_ACCESS_DENY;
  323. }
  324. }
  325. }
  326. return NODE_ACCESS_IGNORE;
  327. }
  328. /**
  329. * Implements of hook_insert().
  330. *
  331. * This function inserts user entered information pertaining to the contact instance into the
  332. * 'contactauthor', 'contactprop', 'chado_contact', 'contact' talble of the database.
  333. *
  334. * @parm $node
  335. * Then node which contains the information stored within the node-ID
  336. *
  337. * @ingroup tripal_contact
  338. */
  339. function chado_contact_insert($node) {
  340. // remove surrounding white-space on submitted values
  341. $node->contactname = trim($node->contactname);
  342. $node->description = trim($node->description);
  343. // if there is a contact_id in the $node object then this must be a sync so
  344. // we can skip adding the contact as it is already there, although
  345. // we do need to proceed with the rest of the insert
  346. if (!property_exists($node, 'contact_id')) {
  347. // insert and then get the newly inserted contact record
  348. $values = array(
  349. 'name' => $node->contactname,
  350. 'description' => '',
  351. 'type_id' => $node->type_id,
  352. );
  353. $contact = chado_insert_record('contact', $values);
  354. if (!$contact) {
  355. drupal_set_message(t('Unable to add contact.', 'warning'));
  356. tripal_report_error('tripal_contact', TRIPAL_ERROR,
  357. 'Insert contact: Unable to create contact where values: %values',
  358. array('%values' => print_r($values, TRUE)));
  359. return;
  360. }
  361. $contact_id = $contact['contact_id'];
  362. // Add the description property
  363. $properties = chado_retrieve_node_form_properties($node);
  364. $contact_descrip_id = tripal_get_cvterm(array(
  365. 'name' => 'contact_description',
  366. 'cv_id' => array('name' => 'tripal_contact')
  367. ));
  368. $properties[$contact_descrip_id->cvterm_id][0] = $node->description;
  369. // * Properties Form *
  370. $details = array(
  371. 'property_table' => 'contactprop',
  372. 'base_table' => 'contact',
  373. 'foreignkey_name' => 'contact_id',
  374. 'foreignkey_value' => $contact_id
  375. );
  376. chado_update_node_form_properties($node, $details, $properties);
  377. // * Relationships Form *
  378. $details = array(
  379. 'relationship_table' => 'contact_relationship', // name of the _relationship table
  380. 'foreignkey_value' => $contact_id // value of the contact_id key
  381. );
  382. chado_update_node_form_relationships($node, $details);
  383. }
  384. else {
  385. $contact_id = $node->contact_id;
  386. }
  387. // Make sure the entry for this contact doesn't already exist in the
  388. // chado_contact table if it doesn't exist then we want to add it.
  389. $check_org_id = chado_get_id_from_nid('contact', $node->nid);
  390. if (!$check_org_id) {
  391. $record = new stdClass();
  392. $record->nid = $node->nid;
  393. $record->vid = $node->vid;
  394. $record->contact_id = $contact_id;
  395. drupal_write_record('chado_contact', $record);
  396. }
  397. return TRUE;
  398. }
  399. /**
  400. * Implements hook_update
  401. *
  402. * The purpose of the function is to allow the module to take action when an edited node is being
  403. * updated. It updates any name changes to the database tables that werec reated upon registering a contact.
  404. * As well, the database will be changed, so the user changed information will be saved to the database.
  405. *
  406. * @param $node
  407. * The node being updated
  408. *
  409. * @ingroup tripal_contact
  410. */
  411. function chado_contact_update($node) {
  412. // remove surrounding white-space on submitted values
  413. $node->contactname = trim($node->contactname);
  414. $node->description = trim($node->description);
  415. $contact_id = chado_get_id_from_nid('contact', $node->nid) ;
  416. // update the contact record
  417. $match = array(
  418. 'contact_id' => $contact_id,
  419. );
  420. $values = array(
  421. 'name' => $node->contactname,
  422. 'description' => '',
  423. 'type_id' => $node->type_id
  424. );
  425. $status = chado_update_record('contact', $match, $values);
  426. if (!$status) {
  427. drupal_set_message("Error updating contact", "error");
  428. tripal_report_error('tripal_contact', TRIPAL_ERROR,
  429. "Error updating contact", array());
  430. return;
  431. }
  432. // Add the description property
  433. $properties = chado_retrieve_node_form_properties($node);
  434. $contact_descrip_id = tripal_get_cvterm(array(
  435. 'name' => 'contact_description',
  436. 'cv_id' => array('name' => 'tripal_contact')
  437. ));
  438. $properties[$contact_descrip_id->cvterm_id][0] = $node->description;
  439. // now add in the properties by first removing any the contact
  440. // already has and adding the ones we have
  441. $details = array(
  442. 'property_table' => 'contactprop',
  443. 'base_table' => 'contact',
  444. 'foreignkey_name' => 'contact_id',
  445. 'foreignkey_value' => $contact_id
  446. );
  447. chado_update_node_form_properties($node, $details, $properties);
  448. // * Relationships Form *
  449. $details = array(
  450. 'relationship_table' => 'contact_relationship', // name of the _relationship table
  451. 'foreignkey_value' => $contact_id // value of the contact_id key
  452. );
  453. chado_update_node_form_relationships($node, $details);
  454. }
  455. /**
  456. * Implements hook_load().
  457. *
  458. * @param $node
  459. * The node that is to be accessed from the database
  460. *
  461. * @return $node
  462. * The node with the information to be loaded into the database
  463. *
  464. * @ingroup tripal_contact
  465. */
  466. function chado_contact_load($nodes) {
  467. foreach ($nodes as $nid => $node) {
  468. // find the contact and add in the details
  469. $contact_id = chado_get_id_from_nid('contact', $nid);
  470. // if the nid does not have a matching record then skip this node.
  471. // this can happen with orphaned nodes.
  472. if (!$contact_id) {
  473. continue;
  474. }
  475. // get the contact
  476. $values = array('contact_id' => $contact_id);
  477. $contact = chado_generate_var('contact', $values);
  478. // get the contact description from the contactprop table and replace
  479. // the contact.description field with this one (we don't use the contact.description
  480. // field because it is only 255 characters (too small)).
  481. $values = array(
  482. 'contact_id' => $contact->contact_id,
  483. 'type_id' => array(
  484. 'name' => 'contact_description',
  485. ),
  486. );
  487. $options = array(
  488. 'return_array' => 1,
  489. 'include_fk' => array('type_id' => 1),
  490. );
  491. $description = chado_generate_var('contactprop', $values, $options);
  492. if (count($description) == 1) {
  493. $description = chado_expand_var($description, 'field', 'contactprop.value');
  494. $contact->description = $description[0]->value;
  495. }
  496. $nodes[$nid]->contact = $contact;
  497. // Now get the title
  498. $node->title = chado_get_node_title($node);
  499. }
  500. }
  501. /**
  502. * Implements hook_delete().
  503. *
  504. * This function takes a node and if the delete button has been chosen by the user, the contact
  505. * and it's details will be removed.Following,given the node-ID, the instance will be deleted from
  506. * the 'chado_contact' table.
  507. *
  508. * @parm $node
  509. * Then node which contains the information stored within the node-ID
  510. *
  511. * @ingroup tripal_contact
  512. */
  513. function chado_contact_delete(&$node) {
  514. $contact_id = chado_get_id_from_nid('contact', $node->nid);
  515. // if we don't have a contact id for this node then this isn't a node of
  516. // type chado_contact or the entry in the chado_contact table was lost.
  517. if (!$contact_id) {
  518. return;
  519. }
  520. // Remove data from {chado_contact}, {node} and {node_revisions} tables of
  521. // drupal database
  522. $sql_del = "DELETE FROM {chado_contact} WHERE nid = :nid AND vid = :vid";
  523. db_query($sql_del, array(':nid' => $node->nid, ':vid' => $node->vid));
  524. $sql_del = "DELETE FROM {node_revision} WHERE nid = :nid AND vid = :vid";
  525. db_query($sql_del, array(':nid' => $node->nid, ':vid' => $node->vid));
  526. $sql_del = "DELETE FROM {node} WHERE nid = :nid AND vid = :vid";
  527. db_query($sql_del, array(':nid' => $node->nid, ':vid' => $node->vid));
  528. // Remove data from contact and contactprop tables of chado database as well
  529. chado_query("DELETE FROM {contactprop} WHERE contact_id = :contact_id", array(':contact_id' => $contact_id));
  530. chado_query("DELETE FROM {contact} WHERE contact_id = :contact_id", array(':contact_id' => $contact_id));
  531. }
  532. /**
  533. * Implements hook_node_view().
  534. *
  535. * @ingroup tripal_contact
  536. */
  537. function tripal_contact_node_view($node, $view_mode, $langcode) {
  538. switch ($node->type) {
  539. case 'chado_contact':
  540. // Show feature browser and counts
  541. if ($view_mode == 'full') {
  542. $node->content['tripal_contact_base'] = array(
  543. '#markup' => theme('tripal_contact_base', array('node' => $node)),
  544. '#tripal_toc_id' => 'base',
  545. '#tripal_toc_title' => 'Overview',
  546. '#weight' => -100,
  547. );
  548. $node->content['tripal_contact_properties'] = array(
  549. '#markup' => theme('tripal_contact_properties', array('node' => $node)),
  550. '#tripal_toc_id' => 'properties',
  551. '#tripal_toc_title' => 'Properties',
  552. );
  553. $node->content['tripal_contact_publications'] = array(
  554. '#markup' => theme('tripal_contact_publications', array('node' => $node)),
  555. '#tripal_toc_id' => 'publications',
  556. '#tripal_toc_title' => 'Publications',
  557. );
  558. $node->content['tripal_contact_relationships'] = array(
  559. '#markup' => theme('tripal_contact_relationships', array('node' => $node)),
  560. '#tripal_toc_id' => 'relationships',
  561. '#tripal_toc_title' => 'Relationships',
  562. );
  563. }
  564. if ($view_mode == 'teaser') {
  565. $node->content['tripal_contact_teaser'] = array(
  566. '#markup' => theme('tripal_contact_teaser', array('node' => $node)),
  567. );
  568. }
  569. break;
  570. }
  571. }
  572. /**
  573. * Implements hook_node_presave().
  574. *
  575. * @ingroup tripal_contact
  576. */
  577. function tripal_contact_node_presave($node) {
  578. switch ($node->type) {
  579. case 'chado_contact':
  580. // for a form submission the 'contactname' field will be set,
  581. // for a sync, we must pull from the contact object
  582. if (property_exists($node, 'contactname')) {
  583. // set the title
  584. $node->title = $node->contactname;
  585. }
  586. else if (property_exists($node, 'contact')) {
  587. $node->title = $node->contact->name;
  588. }
  589. break;
  590. }
  591. }
  592. /**
  593. * Implements hook_node_insert().
  594. * Acts on all content types.
  595. *
  596. * @ingroup tripal_contact
  597. */
  598. function tripal_contact_node_insert($node) {
  599. switch ($node->type) {
  600. case 'chado_contact':
  601. // find the contact and add in the details
  602. $contact_id = chado_get_id_from_nid('contact', $node->nid);
  603. // get the contact
  604. $values = array('contact_id' => $contact_id);
  605. $contact = chado_generate_var('contact', $values);
  606. $node->contact = $contact;
  607. // Now get the title
  608. $node->title = chado_get_node_title($node);
  609. // Now use the API to set the path.
  610. chado_set_node_url($node);
  611. break;
  612. }
  613. }
  614. /**
  615. * Implements hook_node_update().
  616. * Acts on all content types.
  617. *
  618. * @ingroup tripal_contact
  619. */
  620. function tripal_contact_node_update($node) {
  621. switch ($node->type) {
  622. case 'chado_contact':
  623. // Set the title
  624. $node->title = chado_get_node_title($node);
  625. // Now use the API to set the path.
  626. chado_set_node_url($node);
  627. break;
  628. }
  629. }
  630. /**
  631. * Implements [content_type]_chado_node_default_title_format().
  632. *
  633. * Defines a default title format for the Chado Node API to set the titles on
  634. * Chado contact nodes based on chado fields.
  635. */
  636. function chado_contact_chado_node_default_title_format() {
  637. return '[contact.name]';
  638. }
  639. /**
  640. * Implements hook_chado_node_default_url_format().
  641. *
  642. * Designates a default URL format for contact nodes.
  643. */
  644. function chado_contact_chado_node_default_url_format() {
  645. return '/contact/[contact.name]';
  646. }
  647. /**
  648. * Implements [content_type]_chado_node_sync_select_query().
  649. *
  650. * Adds a where clause to the query to exclude the NULL contact.
  651. */
  652. function chado_contact_chado_node_sync_select_query($query) {
  653. $query['where_clauses']['title'][] = 'contact.name <> :contact_name_null1';
  654. $query['where_clauses']['title'][] = 'contact.name <> :contact_name_null2';
  655. $query['where_args']['title'][':contact_name_null1'] = 'null';
  656. $query['where_args']['title'][':contact_name_null2'] = 'NULL';
  657. return $query;
  658. }