tripal_entities.chado_entity.inc 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  1. <?php
  2. /**
  3. *
  4. * Implements hook_entity_load().
  5. */
  6. function tripal_entities_entity_presave($entity, $type) {
  7. }
  8. /**
  9. *
  10. * @param $entity
  11. * @param $type
  12. */
  13. function tripal_entities_entity_postsave($entity, $type) {
  14. // Set the title for this entity using the chado data.
  15. $title = chado_get_entity_title($entity);
  16. $ec = new TripalEntityController($entity->type);
  17. $ec->setTitle($entity, $title);
  18. }
  19. /**
  20. *
  21. * Implements hook_entity_load().
  22. */
  23. function tripal_entities_entity_load($entities, $type) {
  24. }
  25. /**
  26. *
  27. * Implements hook_entity_insert().
  28. */
  29. function tripal_entities_entity_insert($entity, $type) {
  30. }
  31. /**
  32. *
  33. * Implements hook_entity_update().
  34. */
  35. function tripal_entities_entity_update($entity, $type) {
  36. }
  37. /**
  38. *
  39. * Implements hook_entity_delete().
  40. */
  41. function tripal_entities_entity_delete($entity, $type) {
  42. $record = db_select('chado_entity', 'ce')
  43. ->fields('ce', array('chado_entity_id', 'data_table', 'record_id'))
  44. ->condition('entity_id', $entity->id)
  45. ->execute()
  46. ->fetchObject();
  47. if ($record && property_exists($record, 'chado_entity_id')) {
  48. // Delete the corresponding record in Chado
  49. $table = $record->data_table;
  50. $record_id = $record->record_id;
  51. chado_delete_record($table, array($table . '_id' => $record_id));
  52. //Delete the record in the public.chado_entity table
  53. $sql = "DELETE FROM {chado_entity} WHERE chado_entity_id = :id";
  54. db_query($sql, array(':id' => $record->chado_entity_id));
  55. }
  56. }
  57. /**
  58. * @param unknown $display
  59. * @param unknown $context
  60. */
  61. function tripal_entities_field_widget_form_alter(&$element, &$form_state, $context) {
  62. if (array_key_exists('#field_name', $element)) {
  63. $field_name = $element['#field_name'];
  64. $matches = array();
  65. if (preg_match('/(.+?)__(.+?)$/', $field_name, $matches)) {
  66. $tablename = $matches[1];
  67. $colname = $matches[2];
  68. $schema = chado_get_schema($tablename);
  69. // The timelastmodified field exists in many Chado tables. We want
  70. // the form element to update to the most recent time rather than the time
  71. // in the database.
  72. if ($colname == 'timelastmodified' and $schema['fields'][$colname]['type'] == 'datetime') {
  73. // We want the default value for the field to be the current time.
  74. $element['#default_value']['value'] = format_date(time(), 'custom', "Y-m-d H:i:s", 'UTC');
  75. $element['#date_items']['value'] = $element['#default_value']['value'];
  76. }
  77. // We want the date combo fieldset to be collaspible so we will
  78. // add our own theme_wrapper to replace the one added by the date
  79. // module.
  80. if (array_key_exists($colname, $schema['fields']) and $schema['fields'][$colname]['type'] == 'datetime') {
  81. $element['#theme_wrappers'] = array('tripal_entities_date_combo');
  82. }
  83. }
  84. }
  85. }
  86. /**
  87. * This theme function is meant to override the data_combo theme.
  88. *
  89. * @param $variables
  90. */
  91. function theme_tripal_entities_date_combo($variables) {
  92. $element = $variables['element'];
  93. $field = field_info_field($element['#field_name']);
  94. $instance = field_info_instance($element['#entity_type'], $element['#field_name'], $element['#bundle']);
  95. // Group start/end items together in fieldset.
  96. $fieldset = array(
  97. '#title' => t($element['#title']) . ' ' . ($element['#delta'] > 0 ? intval($element['#delta'] + 1) : ''),
  98. '#value' => '',
  99. '#description' => !empty($element['#fieldset_description']) ? $element['#fieldset_description'] : '',
  100. '#attributes' => array(),
  101. '#children' => $element['#children'],
  102. '#attributes' => array('class' => array('collapsible', 'collapsed')),
  103. );
  104. return theme('fieldset', array('element' => $fieldset));
  105. }
  106. /**
  107. * Implements hook_chado_field_alter().
  108. *
  109. */
  110. function tripal_entities_chado_field_alter(&$field) {
  111. if (!array_key_exists('field_settings', $field)) {
  112. return;
  113. }
  114. // If the field doesn't list the Chado table or column then just return.
  115. if (!array_key_exists('chado_table', $field['field_settings']) or
  116. !array_key_exists('chado_column', $field['field_settings'])) {
  117. return;
  118. }
  119. // Here we provide new field types and widgets for FK fields
  120. // and fields that need special attention.
  121. if ($field['field_settings']['chado_column'] =='organism_id') {
  122. $field['field_type'] = 'organism_id';
  123. $field['widget_type'] = 'tripal_fields_organism_select_widget';
  124. $field['label'] = 'Organism';
  125. $field['description'] = 'Select an organism.';
  126. }
  127. else if ($field['field_settings']['chado_column'] =='dbxref_id') {
  128. $field['field_type'] = 'dbxref_id';
  129. $field['widget_type'] = 'tripal_fields_primary_dbxref_widget';
  130. $field['label'] = 'Primary Cross Reference';;
  131. $field['description'] = 'This record can be cross-referenced with a
  132. record in another online database. The primary reference is for the
  133. most prominent reference. At a minimum, the database and accession
  134. must be provided. To remove a set reference, change the database
  135. field to "Select a Database".';
  136. }
  137. else if ($field['field_settings']['chado_table'] == 'feature' and
  138. $field['field_settings']['chado_column'] == 'md5checksum') {
  139. $field['field_type'] = 'md5checksum';
  140. $field['widget_type'] = 'tripal_fields_md5checksum_checkbox_widget';
  141. $field['label'] = 'MD5 Checksum';
  142. $field['description'] = 'Generating MD5 checksum for the sequence.';
  143. }
  144. else if ($field['field_settings']['chado_table'] == 'feature' and $field['field_settings']['chado_column'] == 'seqlen') {
  145. $field['field_type'] = 'seqlen';
  146. $field['widget_type'] = 'tripal_fields_seqlen_hidden_widget';
  147. $field['label'] = 'Seqlen';
  148. $field['description'] = 'The length of the residues.';
  149. }
  150. else if ($field['field_settings']['chado_table'] == 'feature' and $field['field_settings']['chado_column'] == 'residues') {
  151. $field['field_type'] = 'residues';
  152. $field['widget_type'] = 'tripal_fields_residues_textarea_widget';
  153. $field['label'] = 'Residues';
  154. $field['description'] = 'Please provide an IUPAC compatible residues for this feature. Spaces and new lines are allowed.';
  155. }
  156. else if ($field['label'] == 'Timeaccessioned') {
  157. $field['label'] = 'Time Accessioned';
  158. $field['description'] = 'Please enter the time that this record was first added to the database.';
  159. }
  160. else if ($field['label'] == 'Timelastmodified') {
  161. $field['label'] = 'Time Last Modified';
  162. $field['description'] = 'Please enter the time that this record was last modified. The default is the current time.';
  163. }
  164. }
  165. /**
  166. * Determines whether the given user has access to a tripal data entity.
  167. *
  168. * @param $op
  169. * The operation being performed. One of 'view', 'update', 'create', 'delete'
  170. * or just 'edit' (being the same as 'create' or 'update').
  171. * @param $entity
  172. * Optionally a tripal data entity or a tripal data type to check access for.
  173. * If nothing is given, access for all types is determined.
  174. * @param $account
  175. * The user to check for. Leave it to NULL to check for the global user.
  176. * @return boolean
  177. * Whether access is allowed or not.
  178. */
  179. function tripal_entities_entity_access($op, $entity = NULL, $account = NULL) {
  180. if (user_access('administer tripal data', $account)) {
  181. return TRUE;
  182. }
  183. if (isset($entity) && $type_name = $entity->type) {
  184. $op = ($op == 'view') ? 'view' : 'edit';
  185. if (user_access("$op any $type_name data", $account)) {
  186. return TRUE;
  187. }
  188. }
  189. return FALSE;
  190. }
  191. /**
  192. * Menu callback to display an entity.
  193. *
  194. * As we load the entity for display, we're responsible for invoking a number
  195. * of hooks in their proper order.
  196. *
  197. * @see hook_entity_prepare_view()
  198. * @see hook_entity_view()
  199. * @see hook_entity_view_alter()
  200. */
  201. function tripal_entities_view_entity($entity, $view_mode = 'full') {
  202. $content = '';
  203. $controller = entity_get_controller($entity->type);
  204. $content = $controller->view(array($entity->id => $entity));
  205. drupal_set_title($entity->title);
  206. return $content;
  207. }
  208. /**
  209. * Menu title callback for showing individual entities
  210. */
  211. function tripal_entities_entity_title($entity){
  212. if ($entity) {
  213. return $entity->title;
  214. }
  215. }