123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454 |
- <?php
- /**
- * Implements hook_entity_create().
- *
- * This hook is called when brand new entities are created, but
- * they are not loaded so the hook_entity_load() is not yet called. We
- * can use this hook to add properties to the entity before saving.
- *
- * @param $entity
- * The entity being created.
- * @param $type
- * The type of entity being created.
- * @param $bundle (OPTIONAL)
- * The bundle object for the current entity.
- */
- function tripal_chado_entity_create(&$entity, $type, $bundle = NULL) {
- if ($type == 'TripalEntity') {
- // Set some defaults on vars needed by this module.
- if (!property_exists($entity, 'chado_table')) {
- $entity->chado_table = NULL;
- $entity->chado_column = NULL;
- $entity->chado_linker = NULL;
- $entity->chado_type_id = NULL;
- $entity->chado_type_value = NULL;
- $entity->chado_base_type_id = NULL;
- // Add in the Chado table information for this entity type.
- if (!$bundle) {
- $bundle = tripal_load_bundle_entity(['name' => $entity->bundle]);
- }
- if ($bundle->data_table) {
- $entity->chado_table = $bundle->data_table;
- $entity->chado_column = $bundle->type_column;
- $entity->chado_linker = $bundle->type_linker_table;
- $entity->chado_type_id = $bundle->type_id;
- $entity->chado_type_value = $bundle->type_value;
- $entity->chado_base_type_id = $bundle->base_type_id;
- }
- }
- if (!property_exists($entity, 'chado_record')) {
- $entity->chado_record = NULL;
- $entity->chado_record_id = NULL;
- }
- }
- }
- /**
- * Implements hook_entity_presave().
- */
- function tripal_chado_entity_presave($entity, $type) {
- }
- /**
- * Implements hook_entity_postsave().
- */
- function tripal_chado_entity_postsave($entity, $type) {
- }
- /**
- * Implements hook_entity_load().
- */
- function tripal_chado_entity_load($entities, $type) {
- if ($type == 'TripalBundle') {
- foreach ($entities as $bundle) {
- // We want to add in the record ID to the entity.
- if (property_exists($bundle, 'id')) {
- $chado_bundle = db_select('chado_bundle', 'cb')
- ->fields('cb')
- ->condition('cb.bundle_id', $bundle->id)
- ->execute()
- ->fetchObject();
- if ($chado_bundle) {
- $bundle->data_table = $chado_bundle->data_table;
- $bundle->type_linker_table = $chado_bundle->type_linker_table;
- $bundle->type_column = $chado_bundle->type_column;
- $bundle->type_id = $chado_bundle->type_id;
- $bundle->type_value = $chado_bundle->type_value;
- $bundle->base_type_id = $chado_bundle->base_type_id;
- }
- }
- }
- }
- if ($type == 'TripalEntity') {
- foreach ($entities as $entity) {
- // We want to add in the record ID to the entity.
- if (property_exists($entity, 'id')) {
- // Set some defaults on vars needed by this module.
- $entity->chado_table = NULL;
- $entity->chado_column = NULL;
- $entity->chado_record = NULL;
- $entity->chado_record_id = NULL;
- // Add in the Chado table information for this entity type.
- $bundle = tripal_load_bundle_entity(['name' => $entity->bundle]);
- if (!$bundle) {
- continue;
- }
- $entity->chado_table = $bundle->data_table;
- $entity->chado_column = $bundle->type_column;
- $chado_entity_table = chado_get_bundle_entity_table($bundle);
- $chado_entity = db_select($chado_entity_table, 'ce')
- ->fields('ce')
- ->condition('ce.entity_id', $entity->id)
- ->execute()
- ->fetchObject();
- if ($chado_entity) {
- $schema = chado_get_schema($entity->chado_table);
- $record = chado_generate_var($entity->chado_table,
- [$schema['primary key'][0] => $chado_entity->record_id]);
- $entity->chado_record = $record;
- $entity->chado_record_id = $chado_entity->record_id;
- }
- }
- }
- }
- }
- /**
- *
- * Implements hook_entity_insert().
- */
- function tripal_chado_entity_insert($entity, $type) {
- }
- /**
- *
- * Implements hook_entity_update().
- */
- function tripal_chado_entity_update($entity, $type) {
- }
- /**
- *
- * Implements hook_entity_delete().
- */
- function tripal_chado_entity_delete($entity, $type) {
- if ($type !== 'TripalEntity') {
- return;
- }
- // Delete the removed entity from the corresponding chado_bio_data_x table
- $bundle = $entity->bundle;
- db_delete("chado_{$bundle}")->condition('entity_id', $entity->id)->execute();
- }
- /**
- * Implements hook_tripal_default_title_format().
- *
- * Overrides the default titles.
- */
- function tripal_chado_tripal_default_title_format($bundle, $available_tokens) {
- $format = [];
- $table = $bundle->data_table;
- if ($table == 'organism') {
- if (chado_get_version() <= '1.2') {
- $format[] = [
- 'format' => '[taxrank__genus] [taxrank__species]',
- 'weight' => -5,
- ];
- }
- else {
- $format[] = [
- 'format' => '[taxrank__genus] [taxrank__species] [taxrank__infraspecific_taxon,TAXRANK:0000045]',
- 'weight' => -5,
- ];
- }
- }
- if ($table == 'arraydesign') {
- $format[] = [
- 'format' => '[schema__name]',
- 'weight' => -5,
- ];
- }
- if ($table == 'assay') {
- $format[] = [
- 'format' => '[schema__name]',
- 'weight' => -5,
- ];
- }
- if ($table == 'biomaterial') {
- $format[] = [
- 'format' => '[schema__name]',
- 'weight' => -5,
- ];
- }
- if ($table == 'analysis') {
- $format[] = [
- 'format' => '[schema__name]',
- 'weight' => -5,
- ];
- }
- if ($table == 'feature') {
- $format[] = [
- 'format' => '[schema__name]',
- 'weight' => -5,
- ];
- }
- if ($table == 'featuremap') {
- $format[] = [
- 'format' => '[schema__name]',
- 'weight' => -5,
- ];
- }
- if ($table == 'stock') {
- $format[] = [
- 'format' => '[schema__name]',
- 'weight' => -5,
- ];
- }
- if ($table == 'pub') {
- $format[] = [
- 'format' => '[tpub__title]',
- 'weight' => -5,
- ];
- }
- if ($table == 'cvterm') {
- $format[] = [
- 'format' => '[schema__name]',
- 'weight' => -5,
- ];
- }
- if ($table == 'project') {
- $format[] = [
- 'format' => '[schema__name]',
- 'weight' => -5,
- ];
- }
- if ($table == 'contact') {
- $format[] = [
- 'format' => '[schema__name]',
- 'weight' => -5,
- ];
- }
- if ($table == 'phylotree') {
- $format[] = [
- 'format' => '[schema__name]',
- 'weight' => -5,
- ];
- }
- if ($table == 'library') {
- $format[] = [
- 'format' => '[schema__name]',
- 'weight' => -5,
- ];
- }
- if ($table == 'protocol') {
- $format[] = [
- 'format' => '[schema__name]',
- 'weight' => -5,
- ];
- }
- return $format;
- }
- /**
- * Implements hook_entity_view().
- */
- function tripal_chado_entity_view($entity, $type, $view_mode, $langcode) {
- // If this entity is a TripalEntity and is a full view, then
- // we want to support the legacy view, but only if the legacy
- // module is enabled (the functions exist).
- if ($type == 'TripalEntity') {
- // Use the generic template to render the fields
- if ($view_mode == 'full') {
- // Get the Chado table for this data type.
- $bundle = tripal_load_bundle_entity(['name' => $entity->bundle]);
- $chado_table = $bundle->data_table;
- $chado_field = $bundle->type_column;
- // Get the list of templates that should be used for entities and generatte
- // the key in the array for this entity type (using the chado table the
- // entity maps to).
- $enabled_templates = variable_get('tripal_chado_enabled_legacy_templates',
- []);
- $legacy_template = 'legacy_template--chado_' . $chado_table;
- // If the site admin has indicated that this entity type should use
- // a legacy tmplate then prepare the entity and content to fake a
- // node.
- if (key_exists($legacy_template,
- $enabled_templates) && $enabled_templates[$legacy_template]) {
- // Remove the fields added by the chado_field_storage.
- $fields = field_info_fields();
- foreach ($fields as $field) {
- if ($field['storage']['type'] == 'field_chado_storage' or $field['storage']['type'] == 'tripal_no_storage') {
- $field_name = $field['field_name'];
- if (property_exists($entity, $field_name)) {
- $entity->$field_name = NULL;
- unset($entity->content[$field_name]);
- }
- }
- }
- // Make the entity look like a node.
- $entity->type = 'chado_' . $chado_table;
- $entity->$chado_table = $entity->chado_record;
- // Add any node specific fields to the entity to fake the node.
- $node_schema = drupal_get_schema('node');
- foreach ($node_schema['fields'] as $field_name => $details) {
- if (!property_exists($entity, $field_name)) {
- $entity->$field_name = '';
- if (array_key_exists('default', $details)) {
- $entity->$field_name = $details['default'];
- }
- }
- }
- // Now call the module's node_view hook to add additional
- // content to our 'fake' entity node.
- $modules = module_list();
- foreach ($modules as $mname => $details) {
- $function_name = $mname . '_node_view';
- if (function_exists($function_name)) {
- $function_name($entity, $view_mode, $langcode);
- }
- }
- }
- }
- }
- }
- /**
- * Implements hook_entity_view_alter().
- *
- * This function is used to support legacy Tripal v2 templates
- * for use with Tripal v3 entities.
- */
- function tripal_chado_entity_view_alter(&$build) {
- // For the legacy support, we need to make sure the TOC
- // is built.
- if ($build['#entity_type'] == 'TripalEntity') {
- $enabled_templates = variable_get('tripal_chado_enabled_legacy_templates',
- []);
- $entity = $build['#entity'];
- $legacy_template = 'legacy_template--' . $entity->type;
- if (key_exists($legacy_template,
- $enabled_templates) && $enabled_templates[$legacy_template]) {
- $build['#entity']->nid = NULL;
- $build['#node'] = $build['#entity'];
- $modules = module_list();
- foreach ($modules as $mname => $details) {
- $function_name = $mname . '_node_view_alter';
- if (function_exists($function_name)) {
- $function_name($build);
- }
- }
- }
- }
- }
- /**
- * Job callback to perform the deletion of orphaned entities.
- *
- * @param int $bundle_id
- *
- * @throws \Exception
- */
- function tripal_chado_delete_orphaned_entities($bundle_id) {
- $bundle = db_query('SELECT bundle_id, data_table
- FROM {chado_bundle} CB WHERE bundle_id = :id',
- [':id' => $bundle_id])->fetchObject();
- $bundle_table = db_escape_table("chado_bio_data_{$bundle->bundle_id}");
- $chado_table = db_escape_table($bundle->data_table);
- $schema = chado_get_schema($chado_table);
- $primary_key = is_array($schema) ? $schema['primary key'][0] : NULL;
- $count = (int) db_query('SELECT count(*) FROM {' . $bundle_table . '} BT
- LEFT JOIN {chado.' . $chado_table . '} CT ON BT.record_id = CT.' . $primary_key . '
- WHERE CT.' . $primary_key . ' IS NULL')->fetchField();
- if ($count === 0) {
- print "Unable to find any orphaned entities.\n";
- return;
- }
- print "Found $count orphaned entities.\n";
- $chunk = 500;
- $progress = 0;
- print "Progress: {$progress}%; Memory: " . number_format(memory_get_usage()) . " bytes\r";
- for ($i = 0; $i < $count; $i += $chunk) {
- // Get a chunk of orphaned entities
- $entities = db_query('SELECT entity_id FROM {' . $bundle_table . '} BT
- LEFT JOIN {chado}.' . $chado_table . ' CT ON BT.record_id = CT.' . $primary_key . '
- WHERE CT.' . $primary_key . ' IS NULL
- ORDER BY entity_id desc
- LIMIT :limit', [
- ':limit' => $chunk,
- ])->fetchAll();
- // Extract entity ids
- $ids = array_map(function ($entity) {
- return (int) $entity->entity_id;
- }, $entities);
- // Tell the user that selected entities are not present
- if (empty($ids)) {
- tripal_report_error('tripal_chado', TRIPAL_ERROR,
- 'Unable to find selected entities while attempting to delete orphaned entities.');
- continue;
- }
- // Many warnings get printed when deleting an entity that has no
- // associated chado record which make it really hard to follow progress.
- // Therefore, let's suppress any output from the delete function. Errors
- // are still detected when the delete function returns false.
- $errors = [];
- ob_start(function ($buffer) {
- unset($buffer);
- });
- putenv('TRIPAL_SUPPRESS_ERRORS=true');
- try {
- // This will trigger all needed hooks
- /** @var \TripalEntityController $controller */
- $controller = entity_get_controller('TripalEntity');
- if ($controller->delete($ids) === FALSE) {
- $errors[] = "\nFailed to delete chunk {$i}/{$count}!\n";
- }
- $controller->resetCache($ids);
- } catch (Exception $exception) {
- $errors[] = "\nERROR: " . $exception->getMessage()."\n";
- }
- putenv('TRIPAL_SUPPRESS_ERRORS=false');
- ob_end_clean();
-
- // Print collected errors if any.
- foreach($errors as $error) {
- print $error;
- }
- // Report progress
- $progress = number_format(($i + $chunk) / $count * 100, 2);
- print "Progress: {$progress}%; Memory: " . number_format(memory_get_usage()) . " bytes\r";
- }
- print "Progress: 100%; Memory: " . number_format(memory_get_usage()) . " bytes\n";
- print "Done.\n";
- }
|