tripal_chado.entity.inc 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364
  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(['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(['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,
  104. [$schema['primary key'][0] => $chado_entity->record_id]);
  105. $entity->chado_record = $record;
  106. $entity->chado_record_id = $chado_entity->record_id;
  107. }
  108. }
  109. }
  110. }
  111. }
  112. /**
  113. *
  114. * Implements hook_entity_insert().
  115. */
  116. function tripal_chado_entity_insert($entity, $type) {
  117. }
  118. /**
  119. *
  120. * Implements hook_entity_update().
  121. */
  122. function tripal_chado_entity_update($entity, $type) {
  123. }
  124. /**
  125. *
  126. * Implements hook_entity_delete().
  127. */
  128. function tripal_chado_entity_delete($entity, $type) {
  129. if ($type !== 'TripalEntity') {
  130. return;
  131. }
  132. // Delete the removed entity from the corresponding chado_bio_data_x table
  133. $bundle = $entity->bundle;
  134. db_delete("chado_{$bundle}")->condition('entity_id', $entity->id)->execute();
  135. }
  136. /**
  137. * Implements hook_tripal_default_title_format().
  138. *
  139. * Overrides the default titles.
  140. */
  141. function tripal_chado_tripal_default_title_format($bundle, $available_tokens) {
  142. $format = [];
  143. $table = $bundle->data_table;
  144. if ($table == 'organism') {
  145. if (chado_get_version() <= '1.2') {
  146. $format[] = [
  147. 'format' => '[taxrank__genus] [taxrank__species]',
  148. 'weight' => -5,
  149. ];
  150. }
  151. else {
  152. $format[] = [
  153. 'format' => '[taxrank__genus] [taxrank__species] [taxrank__infraspecific_taxon,TAXRANK:0000045]',
  154. 'weight' => -5,
  155. ];
  156. }
  157. }
  158. if ($table == 'arraydesign') {
  159. $format[] = [
  160. 'format' => '[schema__name]',
  161. 'weight' => -5,
  162. ];
  163. }
  164. if ($table == 'assay') {
  165. $format[] = [
  166. 'format' => '[schema__name]',
  167. 'weight' => -5,
  168. ];
  169. }
  170. if ($table == 'biomaterial') {
  171. $format[] = [
  172. 'format' => '[schema__name]',
  173. 'weight' => -5,
  174. ];
  175. }
  176. if ($table == 'analysis') {
  177. $format[] = [
  178. 'format' => '[schema__name]',
  179. 'weight' => -5,
  180. ];
  181. }
  182. if ($table == 'feature') {
  183. $format[] = [
  184. 'format' => '[schema__name]',
  185. 'weight' => -5,
  186. ];
  187. }
  188. if ($table == 'featuremap') {
  189. $format[] = [
  190. 'format' => '[schema__name]',
  191. 'weight' => -5,
  192. ];
  193. }
  194. if ($table == 'stock') {
  195. $format[] = [
  196. 'format' => '[schema__name]',
  197. 'weight' => -5,
  198. ];
  199. }
  200. if ($table == 'pub') {
  201. $format[] = [
  202. 'format' => '[tpub__title]',
  203. 'weight' => -5,
  204. ];
  205. }
  206. if ($table == 'cvterm') {
  207. $format[] = [
  208. 'format' => '[schema__name]',
  209. 'weight' => -5,
  210. ];
  211. }
  212. if ($table == 'project') {
  213. $format[] = [
  214. 'format' => '[schema__name]',
  215. 'weight' => -5,
  216. ];
  217. }
  218. if ($table == 'contact') {
  219. $format[] = [
  220. 'format' => '[schema__name]',
  221. 'weight' => -5,
  222. ];
  223. }
  224. if ($table == 'phylotree') {
  225. $format[] = [
  226. 'format' => '[schema__name]',
  227. 'weight' => -5,
  228. ];
  229. }
  230. if ($table == 'library') {
  231. $format[] = [
  232. 'format' => '[schema__name]',
  233. 'weight' => -5,
  234. ];
  235. }
  236. if ($table == 'protocol') {
  237. $format[] = [
  238. 'format' => '[schema__name]',
  239. 'weight' => -5,
  240. ];
  241. }
  242. return $format;
  243. }
  244. /**
  245. * Implements hook_entity_view().
  246. */
  247. function tripal_chado_entity_view($entity, $type, $view_mode, $langcode) {
  248. // If this entity is a TripalEntity and is a full view, then
  249. // we want to support the legacy view, but only if the legacy
  250. // module is enabled (the functions exist).
  251. if ($type == 'TripalEntity') {
  252. // Use the generic template to render the fields
  253. if ($view_mode == 'full') {
  254. // Get the Chado table for this data type.
  255. $bundle = tripal_load_bundle_entity(['name' => $entity->bundle]);
  256. $chado_table = $bundle->data_table;
  257. $chado_field = $bundle->type_column;
  258. // Get the list of templates that should be used for entities and generatte
  259. // the key in the array for this entity type (using the chado table the
  260. // entity maps to).
  261. $enabled_templates = variable_get('tripal_chado_enabled_legacy_templates',
  262. []);
  263. $legacy_template = 'legacy_template--chado_' . $chado_table;
  264. // If the site admin has indicated that this entity type should use
  265. // a legacy tmplate then prepare the entity and content to fake a
  266. // node.
  267. if (key_exists($legacy_template,
  268. $enabled_templates) && $enabled_templates[$legacy_template]) {
  269. // Remove the fields added by the chado_field_storage.
  270. $fields = field_info_fields();
  271. foreach ($fields as $field) {
  272. if ($field['storage']['type'] == 'field_chado_storage' or $field['storage']['type'] == 'tripal_no_storage') {
  273. $field_name = $field['field_name'];
  274. if (property_exists($entity, $field_name)) {
  275. $entity->$field_name = NULL;
  276. unset($entity->content[$field_name]);
  277. }
  278. }
  279. }
  280. // Make the entity look like a node.
  281. $entity->type = 'chado_' . $chado_table;
  282. $entity->$chado_table = $entity->chado_record;
  283. // Add any node specific fields to the entity to fake the node.
  284. $node_schema = drupal_get_schema('node');
  285. foreach ($node_schema['fields'] as $field_name => $details) {
  286. if (!property_exists($entity, $field_name)) {
  287. $entity->$field_name = '';
  288. if (array_key_exists('default', $details)) {
  289. $entity->$field_name = $details['default'];
  290. }
  291. }
  292. }
  293. // Now call the module's node_view hook to add additional
  294. // content to our 'fake' entity node.
  295. $modules = module_list();
  296. foreach ($modules as $mname => $details) {
  297. $function_name = $mname . '_node_view';
  298. if (function_exists($function_name)) {
  299. $function_name($entity, $view_mode, $langcode);
  300. }
  301. }
  302. }
  303. }
  304. }
  305. }
  306. /**
  307. * Implements hook_entity_view_alter().
  308. *
  309. * This function is used to support legacy Tripal v2 templates
  310. * for use with Tripal v3 entities.
  311. */
  312. function tripal_chado_entity_view_alter(&$build) {
  313. // For the legacy support, we need to make sure the TOC
  314. // is built.
  315. if ($build['#entity_type'] == 'TripalEntity') {
  316. $enabled_templates = variable_get('tripal_chado_enabled_legacy_templates',
  317. []);
  318. $entity = $build['#entity'];
  319. $legacy_template = 'legacy_template--' . $entity->type;
  320. if (key_exists($legacy_template,
  321. $enabled_templates) && $enabled_templates[$legacy_template]) {
  322. $build['#entity']->nid = NULL;
  323. $build['#node'] = $build['#entity'];
  324. $modules = module_list();
  325. foreach ($modules as $mname => $details) {
  326. $function_name = $mname . '_node_view_alter';
  327. if (function_exists($function_name)) {
  328. $function_name($build);
  329. }
  330. }
  331. }
  332. }
  333. }