tripal_chado.entity.inc 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359
  1. <?php
  2. /**
  3. * Implements hook_entity_create().
  4. *
  5. * This hook is called when brand new entities are created, but
  6. * they are not loaded so the hook_entity_load() is not yet called. We
  7. * can use this hook to add properties to the entity before saving.
  8. *
  9. * @param $entity
  10. * The entity being created.
  11. * @param $type
  12. * The type of entity being created.
  13. * @param $bundle (OPTIONAL)
  14. * The bundle object for the current entity.
  15. */
  16. function tripal_chado_entity_create(&$entity, $type, $bundle = NULL) {
  17. if ($type == 'TripalEntity') {
  18. // Set some defaults on vars needed by this module.
  19. if (!property_exists($entity, 'chado_table')) {
  20. $entity->chado_table = NULL;
  21. $entity->chado_column = NULL;
  22. $entity->chado_linker = NULL;
  23. $entity->chado_type_id = NULL;
  24. $entity->chado_type_value = NULL;
  25. $entity->chado_base_type_id = NULL;
  26. // Add in the Chado table information for this entity type.
  27. if (!$bundle) {
  28. $bundle = tripal_load_bundle_entity(array('name' => $entity->bundle));
  29. }
  30. if ($bundle->data_table) {
  31. $entity->chado_table = $bundle->data_table;
  32. $entity->chado_column = $bundle->type_column;
  33. $entity->chado_linker = $bundle->type_linker_table;
  34. $entity->chado_type_id = $bundle->type_id;
  35. $entity->chado_type_value = $bundle->type_value;
  36. $entity->chado_base_type_id = $bundle->base_type_id;
  37. }
  38. }
  39. if (!property_exists($entity, 'chado_record')) {
  40. $entity->chado_record = NULL;
  41. $entity->chado_record_id = NULL;
  42. }
  43. }
  44. }
  45. /**
  46. * Implements hook_entity_presave().
  47. */
  48. function tripal_chado_entity_presave($entity, $type) {
  49. }
  50. /**
  51. * Implements hook_entity_postsave().
  52. */
  53. function tripal_chado_entity_postsave($entity, $type) {
  54. }
  55. /**
  56. * Implements hook_entity_load().
  57. */
  58. function tripal_chado_entity_load($entities, $type) {
  59. if ($type == 'TripalBundle') {
  60. foreach ($entities as $bundle) {
  61. // We want to add in the record ID to the entity.
  62. if (property_exists($bundle, 'id')) {
  63. $chado_bundle = db_select('chado_bundle', 'cb')
  64. ->fields('cb')
  65. ->condition('cb.bundle_id', $bundle->id)
  66. ->execute()
  67. ->fetchObject();
  68. if ($chado_bundle) {
  69. $bundle->data_table = $chado_bundle->data_table;
  70. $bundle->type_linker_table = $chado_bundle->type_linker_table;
  71. $bundle->type_column = $chado_bundle->type_column;
  72. $bundle->type_id = $chado_bundle->type_id;
  73. $bundle->type_value = $chado_bundle->type_value;
  74. $bundle->base_type_id = $chado_bundle->base_type_id;
  75. }
  76. }
  77. }
  78. }
  79. if ($type == 'TripalEntity') {
  80. foreach ($entities as $entity) {
  81. // We want to add in the record ID to the entity.
  82. if (property_exists($entity, 'id')) {
  83. // Set some defaults on vars needed by this module.
  84. $entity->chado_table = NULL;
  85. $entity->chado_column = NULL;
  86. $entity->chado_record = NULL;
  87. $entity->chado_record_id = NULL;
  88. // Add in the Chado table information for this entity type.
  89. $bundle = tripal_load_bundle_entity(array('name' => $entity->bundle));
  90. if (!$bundle) {
  91. continue;
  92. }
  93. $entity->chado_table = $bundle->data_table;
  94. $entity->chado_column = $bundle->type_column;
  95. $chado_entity_table = chado_get_bundle_entity_table($bundle);
  96. $chado_entity = db_select($chado_entity_table, 'ce')
  97. ->fields('ce')
  98. ->condition('ce.entity_id', $entity->id)
  99. ->execute()
  100. ->fetchObject();
  101. if ($chado_entity) {
  102. $schema = chado_get_schema($entity->chado_table);
  103. $record = chado_generate_var($entity->chado_table, array($schema['primary key'][0] => $chado_entity->record_id));
  104. $entity->chado_record = $record;
  105. $entity->chado_record_id = $chado_entity->record_id;
  106. }
  107. }
  108. }
  109. }
  110. }
  111. /**
  112. *
  113. * Implements hook_entity_insert().
  114. */
  115. function tripal_chado_entity_insert($entity, $type) {
  116. }
  117. /**
  118. *
  119. * Implements hook_entity_update().
  120. */
  121. function tripal_chado_entity_update($entity, $type) {
  122. }
  123. /**
  124. *
  125. * Implements hook_entity_delete().
  126. */
  127. function tripal_chado_entity_delete($entity, $type) {
  128. if ($type !== 'TripalEntity') {
  129. return;
  130. }
  131. // Delete the removed entity from the corresponding chado_bio_data_x table
  132. $bundle = $entity->bundle;
  133. db_delete("chado_{$bundle}")->condition('entity_id', $entity->id)->execute();
  134. }
  135. /**
  136. * Implements hook_tripal_default_title_format().
  137. *
  138. * Overrides the default titles.
  139. */
  140. function tripal_chado_tripal_default_title_format($bundle, $available_tokens) {
  141. $format = array();
  142. $table = $bundle->data_table;
  143. if ($table == 'organism') {
  144. if (chado_get_version() <= '1.2') {
  145. $format[] = array(
  146. 'format' => '[taxrank__genus] [taxrank__species]',
  147. 'weight' => -5
  148. );
  149. }
  150. else {
  151. $format[] = array(
  152. 'format' => '[taxrank__genus] [taxrank__species] [taxrank__infraspecific_taxon,TAXRANK:0000045]',
  153. 'weight' => -5
  154. );
  155. }
  156. }
  157. if ($table == 'arraydesign') {
  158. $format[] = array(
  159. 'format' => '[schema__name]',
  160. 'weight' => -5
  161. );
  162. }
  163. if ($table == 'assay') {
  164. $format[] = array(
  165. 'format' => '[schema__name]',
  166. 'weight' => -5
  167. );
  168. }
  169. if ($table == 'biomaterial') {
  170. $format[] = array(
  171. 'format' => '[schema__name]',
  172. 'weight' => -5
  173. );
  174. }
  175. if ($table == 'analysis') {
  176. $format[] = array(
  177. 'format' => '[schema__name]',
  178. 'weight' => -5
  179. );
  180. }
  181. if ($table == 'feature') {
  182. $format[] = array(
  183. 'format' => '[schema__name]',
  184. 'weight' => -5
  185. );
  186. }
  187. if ($table == 'featuremap') {
  188. $format[] = array(
  189. 'format' => '[schema__name]',
  190. 'weight' => -5
  191. );
  192. }
  193. if ($table == 'stock') {
  194. $format[] = array(
  195. 'format' => '[schema__name]',
  196. 'weight' => -5
  197. );
  198. }
  199. if ($table == 'pub') {
  200. $format[] = array(
  201. 'format' => '[tpub__title]',
  202. 'weight' => -5,
  203. );
  204. }
  205. if ($table == 'cvterm') {
  206. $format[] = array(
  207. 'format' => '[schema__name]',
  208. 'weight' => -5,
  209. );
  210. }
  211. if ($table == 'project') {
  212. $format[] = array(
  213. 'format' => '[schema__name]',
  214. 'weight' => -5,
  215. );
  216. }
  217. if ($table == 'contact') {
  218. $format[] = array(
  219. 'format' => '[schema__name]',
  220. 'weight' => -5,
  221. );
  222. }
  223. if ($table == 'phylotree') {
  224. $format[] = array(
  225. 'format' => '[schema__name]',
  226. 'weight' => -5,
  227. );
  228. }
  229. if ($table == 'library') {
  230. $format[] = array(
  231. 'format' => '[schema__name]',
  232. 'weight' => -5,
  233. );
  234. }
  235. if ($table == 'protocol') {
  236. $format[] = array(
  237. 'format' => '[schema__name]',
  238. 'weight' => -5,
  239. );
  240. }
  241. return $format;
  242. }
  243. /**
  244. * Implements hook_entity_view().
  245. */
  246. function tripal_chado_entity_view($entity, $type, $view_mode, $langcode) {
  247. // If this entity is a TripalEntity and is a full view, then
  248. // we want to support the legacy view, but only if the legacy
  249. // module is enabled (the functions exist).
  250. if ($type =='TripalEntity') {
  251. // Use the generic template to render the fields
  252. if ($view_mode == 'full') {
  253. // Get the Chado table for this data type.
  254. $bundle = tripal_load_bundle_entity(array('name' => $entity->bundle));
  255. $chado_table = $bundle->data_table;
  256. $chado_field = $bundle->type_column;
  257. // Get the list of templates that should be used for entities and generatte
  258. // the key in the array for this entity type (using the chado table the
  259. // entity maps to).
  260. $enabled_templates = variable_get('tripal_chado_enabled_legacy_templates', array());
  261. $legacy_template = 'legacy_template--chado_' . $chado_table;
  262. // If the site admin has indicated that this entity type should use
  263. // a legacy tmplate then prepare the entity and content to fake a
  264. // node.
  265. if (key_exists($legacy_template, $enabled_templates) && $enabled_templates[$legacy_template]) {
  266. // Remove the fields added by the chado_field_storage.
  267. $fields = field_info_fields();
  268. foreach($fields as $field) {
  269. if ($field['storage']['type'] == 'field_chado_storage' or
  270. $field['storage']['type'] == 'tripal_no_storage') {
  271. $field_name = $field['field_name'];
  272. if (property_exists($entity, $field_name)) {
  273. $entity->$field_name = NULL;
  274. unset($entity->content[$field_name]);
  275. }
  276. }
  277. }
  278. // Make the entity look like a node.
  279. $entity->type = 'chado_' . $chado_table;
  280. $entity->$chado_table = $entity->chado_record;
  281. // Add any node specific fields to the entity to fake the node.
  282. $node_schema = drupal_get_schema('node');
  283. foreach ($node_schema['fields'] as $field_name => $details) {
  284. if (!property_exists($entity, $field_name)) {
  285. $entity->$field_name = '';
  286. if (array_key_exists('default', $details)) {
  287. $entity->$field_name = $details['default'];
  288. }
  289. }
  290. }
  291. // Now call the module's node_view hook to add additional
  292. // content to our 'fake' entity node.
  293. $modules = module_list();
  294. foreach ($modules as $mname => $details) {
  295. $function_name = $mname . '_node_view';
  296. if (function_exists($function_name)) {
  297. $function_name($entity, $view_mode, $langcode);
  298. }
  299. }
  300. }
  301. }
  302. }
  303. }
  304. /**
  305. * Implements hook_entity_view_alter().
  306. *
  307. * This function is used to support legacy Tripal v2 templates
  308. * for use with Tripal v3 entities.
  309. */
  310. function tripal_chado_entity_view_alter(&$build) {
  311. // For the legacy support, we need to make sure the TOC
  312. // is built.
  313. if ($build['#entity_type'] == 'TripalEntity') {
  314. $enabled_templates = variable_get('tripal_chado_enabled_legacy_templates', array());
  315. $entity = $build['#entity'];
  316. $legacy_template = 'legacy_template--' . $entity->type;
  317. if (key_exists($legacy_template, $enabled_templates) && $enabled_templates[$legacy_template]) {
  318. $build['#entity']->nid = NULL;
  319. $build['#node'] = $build['#entity'];
  320. $modules = module_list();
  321. foreach ($modules as $mname => $details) {
  322. $function_name = $mname . '_node_view_alter';
  323. if (function_exists($function_name)) {
  324. $function_name($build);
  325. }
  326. }
  327. }
  328. }
  329. }