rucio 32.8.6__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of rucio might be problematic. Click here for more details.
- rucio/__init__.py +18 -0
- rucio/alembicrevision.py +16 -0
- rucio/api/__init__.py +14 -0
- rucio/api/account.py +266 -0
- rucio/api/account_limit.py +287 -0
- rucio/api/authentication.py +302 -0
- rucio/api/config.py +218 -0
- rucio/api/credential.py +60 -0
- rucio/api/did.py +726 -0
- rucio/api/dirac.py +71 -0
- rucio/api/exporter.py +60 -0
- rucio/api/heartbeat.py +62 -0
- rucio/api/identity.py +160 -0
- rucio/api/importer.py +46 -0
- rucio/api/lifetime_exception.py +95 -0
- rucio/api/lock.py +131 -0
- rucio/api/meta.py +85 -0
- rucio/api/permission.py +72 -0
- rucio/api/quarantined_replica.py +69 -0
- rucio/api/replica.py +528 -0
- rucio/api/request.py +220 -0
- rucio/api/rse.py +601 -0
- rucio/api/rule.py +335 -0
- rucio/api/scope.py +89 -0
- rucio/api/subscription.py +255 -0
- rucio/api/temporary_did.py +49 -0
- rucio/api/vo.py +112 -0
- rucio/client/__init__.py +16 -0
- rucio/client/accountclient.py +413 -0
- rucio/client/accountlimitclient.py +155 -0
- rucio/client/baseclient.py +929 -0
- rucio/client/client.py +77 -0
- rucio/client/configclient.py +113 -0
- rucio/client/credentialclient.py +54 -0
- rucio/client/didclient.py +691 -0
- rucio/client/diracclient.py +48 -0
- rucio/client/downloadclient.py +1674 -0
- rucio/client/exportclient.py +44 -0
- rucio/client/fileclient.py +51 -0
- rucio/client/importclient.py +42 -0
- rucio/client/lifetimeclient.py +74 -0
- rucio/client/lockclient.py +99 -0
- rucio/client/metaclient.py +137 -0
- rucio/client/pingclient.py +45 -0
- rucio/client/replicaclient.py +444 -0
- rucio/client/requestclient.py +109 -0
- rucio/client/rseclient.py +664 -0
- rucio/client/ruleclient.py +287 -0
- rucio/client/scopeclient.py +88 -0
- rucio/client/subscriptionclient.py +161 -0
- rucio/client/touchclient.py +78 -0
- rucio/client/uploadclient.py +871 -0
- rucio/common/__init__.py +14 -0
- rucio/common/cache.py +74 -0
- rucio/common/config.py +796 -0
- rucio/common/constants.py +92 -0
- rucio/common/constraints.py +18 -0
- rucio/common/didtype.py +187 -0
- rucio/common/dumper/__init__.py +306 -0
- rucio/common/dumper/consistency.py +449 -0
- rucio/common/dumper/data_models.py +325 -0
- rucio/common/dumper/path_parsing.py +65 -0
- rucio/common/exception.py +1092 -0
- rucio/common/extra.py +37 -0
- rucio/common/logging.py +404 -0
- rucio/common/pcache.py +1387 -0
- rucio/common/policy.py +84 -0
- rucio/common/schema/__init__.py +143 -0
- rucio/common/schema/atlas.py +411 -0
- rucio/common/schema/belleii.py +406 -0
- rucio/common/schema/cms.py +478 -0
- rucio/common/schema/domatpc.py +399 -0
- rucio/common/schema/escape.py +424 -0
- rucio/common/schema/generic.py +431 -0
- rucio/common/schema/generic_multi_vo.py +410 -0
- rucio/common/schema/icecube.py +404 -0
- rucio/common/schema/lsst.py +423 -0
- rucio/common/stomp_utils.py +160 -0
- rucio/common/stopwatch.py +56 -0
- rucio/common/test_rucio_server.py +148 -0
- rucio/common/types.py +158 -0
- rucio/common/utils.py +1946 -0
- rucio/core/__init__.py +14 -0
- rucio/core/account.py +426 -0
- rucio/core/account_counter.py +171 -0
- rucio/core/account_limit.py +357 -0
- rucio/core/authentication.py +563 -0
- rucio/core/config.py +386 -0
- rucio/core/credential.py +218 -0
- rucio/core/did.py +3102 -0
- rucio/core/did_meta_plugins/__init__.py +250 -0
- rucio/core/did_meta_plugins/did_column_meta.py +326 -0
- rucio/core/did_meta_plugins/did_meta_plugin_interface.py +116 -0
- rucio/core/did_meta_plugins/filter_engine.py +573 -0
- rucio/core/did_meta_plugins/json_meta.py +215 -0
- rucio/core/did_meta_plugins/mongo_meta.py +199 -0
- rucio/core/did_meta_plugins/postgres_meta.py +317 -0
- rucio/core/dirac.py +208 -0
- rucio/core/distance.py +164 -0
- rucio/core/exporter.py +59 -0
- rucio/core/heartbeat.py +263 -0
- rucio/core/identity.py +290 -0
- rucio/core/importer.py +248 -0
- rucio/core/lifetime_exception.py +377 -0
- rucio/core/lock.py +474 -0
- rucio/core/message.py +241 -0
- rucio/core/meta.py +190 -0
- rucio/core/monitor.py +441 -0
- rucio/core/naming_convention.py +154 -0
- rucio/core/nongrid_trace.py +124 -0
- rucio/core/oidc.py +1339 -0
- rucio/core/permission/__init__.py +107 -0
- rucio/core/permission/atlas.py +1333 -0
- rucio/core/permission/belleii.py +1076 -0
- rucio/core/permission/cms.py +1166 -0
- rucio/core/permission/escape.py +1076 -0
- rucio/core/permission/generic.py +1128 -0
- rucio/core/permission/generic_multi_vo.py +1148 -0
- rucio/core/quarantined_replica.py +190 -0
- rucio/core/replica.py +3627 -0
- rucio/core/replica_sorter.py +368 -0
- rucio/core/request.py +2241 -0
- rucio/core/rse.py +1835 -0
- rucio/core/rse_counter.py +155 -0
- rucio/core/rse_expression_parser.py +460 -0
- rucio/core/rse_selector.py +277 -0
- rucio/core/rule.py +3419 -0
- rucio/core/rule_grouping.py +1473 -0
- rucio/core/scope.py +152 -0
- rucio/core/subscription.py +316 -0
- rucio/core/temporary_did.py +188 -0
- rucio/core/topology.py +448 -0
- rucio/core/trace.py +361 -0
- rucio/core/transfer.py +1233 -0
- rucio/core/vo.py +151 -0
- rucio/core/volatile_replica.py +123 -0
- rucio/daemons/__init__.py +14 -0
- rucio/daemons/abacus/__init__.py +14 -0
- rucio/daemons/abacus/account.py +106 -0
- rucio/daemons/abacus/collection_replica.py +113 -0
- rucio/daemons/abacus/rse.py +107 -0
- rucio/daemons/atropos/__init__.py +14 -0
- rucio/daemons/atropos/atropos.py +243 -0
- rucio/daemons/auditor/__init__.py +261 -0
- rucio/daemons/auditor/hdfs.py +86 -0
- rucio/daemons/auditor/srmdumps.py +284 -0
- rucio/daemons/automatix/__init__.py +14 -0
- rucio/daemons/automatix/automatix.py +281 -0
- rucio/daemons/badreplicas/__init__.py +14 -0
- rucio/daemons/badreplicas/minos.py +311 -0
- rucio/daemons/badreplicas/minos_temporary_expiration.py +173 -0
- rucio/daemons/badreplicas/necromancer.py +200 -0
- rucio/daemons/bb8/__init__.py +14 -0
- rucio/daemons/bb8/bb8.py +356 -0
- rucio/daemons/bb8/common.py +762 -0
- rucio/daemons/bb8/nuclei_background_rebalance.py +147 -0
- rucio/daemons/bb8/t2_background_rebalance.py +146 -0
- rucio/daemons/c3po/__init__.py +14 -0
- rucio/daemons/c3po/algorithms/__init__.py +14 -0
- rucio/daemons/c3po/algorithms/simple.py +131 -0
- rucio/daemons/c3po/algorithms/t2_free_space.py +125 -0
- rucio/daemons/c3po/algorithms/t2_free_space_only_pop.py +127 -0
- rucio/daemons/c3po/algorithms/t2_free_space_only_pop_with_network.py +279 -0
- rucio/daemons/c3po/c3po.py +342 -0
- rucio/daemons/c3po/collectors/__init__.py +14 -0
- rucio/daemons/c3po/collectors/agis.py +108 -0
- rucio/daemons/c3po/collectors/free_space.py +62 -0
- rucio/daemons/c3po/collectors/jedi_did.py +48 -0
- rucio/daemons/c3po/collectors/mock_did.py +46 -0
- rucio/daemons/c3po/collectors/network_metrics.py +63 -0
- rucio/daemons/c3po/collectors/workload.py +110 -0
- rucio/daemons/c3po/utils/__init__.py +14 -0
- rucio/daemons/c3po/utils/dataset_cache.py +40 -0
- rucio/daemons/c3po/utils/expiring_dataset_cache.py +45 -0
- rucio/daemons/c3po/utils/expiring_list.py +63 -0
- rucio/daemons/c3po/utils/popularity.py +82 -0
- rucio/daemons/c3po/utils/timeseries.py +76 -0
- rucio/daemons/cache/__init__.py +14 -0
- rucio/daemons/cache/consumer.py +191 -0
- rucio/daemons/common.py +391 -0
- rucio/daemons/conveyor/__init__.py +14 -0
- rucio/daemons/conveyor/common.py +530 -0
- rucio/daemons/conveyor/finisher.py +492 -0
- rucio/daemons/conveyor/poller.py +372 -0
- rucio/daemons/conveyor/preparer.py +198 -0
- rucio/daemons/conveyor/receiver.py +206 -0
- rucio/daemons/conveyor/stager.py +127 -0
- rucio/daemons/conveyor/submitter.py +379 -0
- rucio/daemons/conveyor/throttler.py +468 -0
- rucio/daemons/follower/__init__.py +14 -0
- rucio/daemons/follower/follower.py +97 -0
- rucio/daemons/hermes/__init__.py +14 -0
- rucio/daemons/hermes/hermes.py +738 -0
- rucio/daemons/judge/__init__.py +14 -0
- rucio/daemons/judge/cleaner.py +149 -0
- rucio/daemons/judge/evaluator.py +172 -0
- rucio/daemons/judge/injector.py +154 -0
- rucio/daemons/judge/repairer.py +144 -0
- rucio/daemons/oauthmanager/__init__.py +14 -0
- rucio/daemons/oauthmanager/oauthmanager.py +199 -0
- rucio/daemons/reaper/__init__.py +14 -0
- rucio/daemons/reaper/dark_reaper.py +272 -0
- rucio/daemons/reaper/light_reaper.py +255 -0
- rucio/daemons/reaper/reaper.py +701 -0
- rucio/daemons/replicarecoverer/__init__.py +14 -0
- rucio/daemons/replicarecoverer/suspicious_replica_recoverer.py +487 -0
- rucio/daemons/storage/__init__.py +14 -0
- rucio/daemons/storage/consistency/__init__.py +14 -0
- rucio/daemons/storage/consistency/actions.py +753 -0
- rucio/daemons/tracer/__init__.py +14 -0
- rucio/daemons/tracer/kronos.py +513 -0
- rucio/daemons/transmogrifier/__init__.py +14 -0
- rucio/daemons/transmogrifier/transmogrifier.py +753 -0
- rucio/daemons/undertaker/__init__.py +14 -0
- rucio/daemons/undertaker/undertaker.py +137 -0
- rucio/db/__init__.py +14 -0
- rucio/db/sqla/__init__.py +38 -0
- rucio/db/sqla/constants.py +192 -0
- rucio/db/sqla/migrate_repo/__init__.py +14 -0
- rucio/db/sqla/migrate_repo/env.py +111 -0
- rucio/db/sqla/migrate_repo/versions/01eaf73ab656_add_new_rule_notification_state_progress.py +71 -0
- rucio/db/sqla/migrate_repo/versions/0437a40dbfd1_add_eol_at_in_rules.py +50 -0
- rucio/db/sqla/migrate_repo/versions/0f1adb7a599a_create_transfer_hops_table.py +61 -0
- rucio/db/sqla/migrate_repo/versions/102efcf145f4_added_stuck_at_column_to_rules.py +46 -0
- rucio/db/sqla/migrate_repo/versions/13d4f70c66a9_introduce_transfer_limits.py +93 -0
- rucio/db/sqla/migrate_repo/versions/140fef722e91_cleanup_distances_table.py +78 -0
- rucio/db/sqla/migrate_repo/versions/14ec5aeb64cf_add_request_external_host.py +46 -0
- rucio/db/sqla/migrate_repo/versions/156fb5b5a14_add_request_type_to_requests_idx.py +53 -0
- rucio/db/sqla/migrate_repo/versions/1677d4d803c8_split_rse_availability_into_multiple.py +69 -0
- rucio/db/sqla/migrate_repo/versions/16a0aca82e12_create_index_on_table_replicas_path.py +42 -0
- rucio/db/sqla/migrate_repo/versions/1803333ac20f_adding_provenance_and_phys_group.py +46 -0
- rucio/db/sqla/migrate_repo/versions/1a29d6a9504c_add_didtype_chck_to_requests.py +61 -0
- rucio/db/sqla/migrate_repo/versions/1a80adff031a_create_index_on_rules_hist_recent.py +42 -0
- rucio/db/sqla/migrate_repo/versions/1c45d9730ca6_increase_identity_length.py +141 -0
- rucio/db/sqla/migrate_repo/versions/1d1215494e95_add_quarantined_replicas_table.py +75 -0
- rucio/db/sqla/migrate_repo/versions/1d96f484df21_asynchronous_rules_and_rule_approval.py +75 -0
- rucio/db/sqla/migrate_repo/versions/1f46c5f240ac_add_bytes_column_to_bad_replicas.py +46 -0
- rucio/db/sqla/migrate_repo/versions/1fc15ab60d43_add_message_history_table.py +51 -0
- rucio/db/sqla/migrate_repo/versions/2190e703eb6e_move_rse_settings_to_rse_attributes.py +135 -0
- rucio/db/sqla/migrate_repo/versions/21d6b9dc9961_add_mismatch_scheme_state_to_requests.py +65 -0
- rucio/db/sqla/migrate_repo/versions/22cf51430c78_add_availability_column_to_table_rses.py +42 -0
- rucio/db/sqla/migrate_repo/versions/22d887e4ec0a_create_sources_table.py +66 -0
- rucio/db/sqla/migrate_repo/versions/25821a8a45a3_remove_unique_constraint_on_requests.py +54 -0
- rucio/db/sqla/migrate_repo/versions/25fc855625cf_added_unique_constraint_to_rules.py +43 -0
- rucio/db/sqla/migrate_repo/versions/269fee20dee9_add_repair_cnt_to_locks.py +46 -0
- rucio/db/sqla/migrate_repo/versions/271a46ea6244_add_ignore_availability_column_to_rules.py +47 -0
- rucio/db/sqla/migrate_repo/versions/277b5fbb41d3_switch_heartbeats_executable.py +54 -0
- rucio/db/sqla/migrate_repo/versions/27e3a68927fb_remove_replicas_tombstone_and_replicas_.py +39 -0
- rucio/db/sqla/migrate_repo/versions/2854cd9e168_added_rule_id_column.py +48 -0
- rucio/db/sqla/migrate_repo/versions/295289b5a800_processed_by_and__at_in_requests.py +47 -0
- rucio/db/sqla/migrate_repo/versions/2962ece31cf4_add_nbaccesses_column_in_the_did_table.py +48 -0
- rucio/db/sqla/migrate_repo/versions/2af3291ec4c_added_replicas_history_table.py +59 -0
- rucio/db/sqla/migrate_repo/versions/2b69addda658_add_columns_for_third_party_copy_read_.py +47 -0
- rucio/db/sqla/migrate_repo/versions/2b8e7bcb4783_add_config_table.py +72 -0
- rucio/db/sqla/migrate_repo/versions/2ba5229cb54c_add_submitted_at_to_requests_table.py +46 -0
- rucio/db/sqla/migrate_repo/versions/2cbee484dcf9_added_column_volume_to_rse_transfer_.py +45 -0
- rucio/db/sqla/migrate_repo/versions/2edee4a83846_add_source_to_requests_and_requests_.py +48 -0
- rucio/db/sqla/migrate_repo/versions/2eef46be23d4_change_tokens_pk.py +48 -0
- rucio/db/sqla/migrate_repo/versions/2f648fc909f3_index_in_rule_history_on_scope_name.py +42 -0
- rucio/db/sqla/migrate_repo/versions/3082b8cef557_add_naming_convention_table_and_closed_.py +69 -0
- rucio/db/sqla/migrate_repo/versions/30fa38b6434e_add_index_on_service_column_in_the_message_table.py +46 -0
- rucio/db/sqla/migrate_repo/versions/3152492b110b_added_staging_area_column.py +78 -0
- rucio/db/sqla/migrate_repo/versions/32c7d2783f7e_create_bad_replicas_table.py +62 -0
- rucio/db/sqla/migrate_repo/versions/3345511706b8_replicas_table_pk_definition_is_in_.py +74 -0
- rucio/db/sqla/migrate_repo/versions/35ef10d1e11b_change_index_on_table_requests.py +44 -0
- rucio/db/sqla/migrate_repo/versions/379a19b5332d_create_rse_limits_table.py +67 -0
- rucio/db/sqla/migrate_repo/versions/384b96aa0f60_created_rule_history_tables.py +134 -0
- rucio/db/sqla/migrate_repo/versions/3ac1660a1a72_extend_distance_table.py +58 -0
- rucio/db/sqla/migrate_repo/versions/3ad36e2268b0_create_collection_replicas_updates_table.py +79 -0
- rucio/db/sqla/migrate_repo/versions/3c9df354071b_extend_waiting_request_state.py +61 -0
- rucio/db/sqla/migrate_repo/versions/3d9813fab443_add_a_new_state_lost_in_badfilesstatus.py +45 -0
- rucio/db/sqla/migrate_repo/versions/40ad39ce3160_add_transferred_at_to_requests_table.py +46 -0
- rucio/db/sqla/migrate_repo/versions/4207be2fd914_add_notification_column_to_rules.py +65 -0
- rucio/db/sqla/migrate_repo/versions/42db2617c364_create_index_on_requests_external_id.py +42 -0
- rucio/db/sqla/migrate_repo/versions/436827b13f82_added_column_activity_to_table_requests.py +46 -0
- rucio/db/sqla/migrate_repo/versions/44278720f774_update_requests_typ_sta_upd_idx_index.py +46 -0
- rucio/db/sqla/migrate_repo/versions/45378a1e76a8_create_collection_replica_table.py +80 -0
- rucio/db/sqla/migrate_repo/versions/469d262be19_removing_created_at_index.py +43 -0
- rucio/db/sqla/migrate_repo/versions/4783c1f49cb4_create_distance_table.py +61 -0
- rucio/db/sqla/migrate_repo/versions/49a21b4d4357_create_index_on_table_tokens.py +47 -0
- rucio/db/sqla/migrate_repo/versions/4a2cbedda8b9_add_source_replica_expression_column_to_.py +46 -0
- rucio/db/sqla/migrate_repo/versions/4a7182d9578b_added_bytes_length_accessed_at_columns.py +52 -0
- rucio/db/sqla/migrate_repo/versions/4bab9edd01fc_create_index_on_requests_rule_id.py +42 -0
- rucio/db/sqla/migrate_repo/versions/4c3a4acfe006_new_attr_account_table.py +65 -0
- rucio/db/sqla/migrate_repo/versions/4cf0a2e127d4_adding_transient_metadata.py +46 -0
- rucio/db/sqla/migrate_repo/versions/50280c53117c_add_qos_class_to_rse.py +47 -0
- rucio/db/sqla/migrate_repo/versions/52153819589c_add_rse_id_to_replicas_table.py +45 -0
- rucio/db/sqla/migrate_repo/versions/52fd9f4916fa_added_activity_to_rules.py +46 -0
- rucio/db/sqla/migrate_repo/versions/53b479c3cb0f_fix_did_meta_table_missing_updated_at_.py +48 -0
- rucio/db/sqla/migrate_repo/versions/5673b4b6e843_add_wfms_metadata_to_rule_tables.py +50 -0
- rucio/db/sqla/migrate_repo/versions/575767d9f89_added_source_history_table.py +59 -0
- rucio/db/sqla/migrate_repo/versions/58bff7008037_add_started_at_to_requests.py +48 -0
- rucio/db/sqla/migrate_repo/versions/58c8b78301ab_rename_callback_to_message.py +108 -0
- rucio/db/sqla/migrate_repo/versions/5f139f77382a_added_child_rule_id_column.py +57 -0
- rucio/db/sqla/migrate_repo/versions/688ef1840840_adding_did_meta_table.py +51 -0
- rucio/db/sqla/migrate_repo/versions/6e572a9bfbf3_add_new_split_container_column_to_rules.py +50 -0
- rucio/db/sqla/migrate_repo/versions/70587619328_add_comment_column_for_subscriptions.py +46 -0
- rucio/db/sqla/migrate_repo/versions/739064d31565_remove_history_table_pks.py +42 -0
- rucio/db/sqla/migrate_repo/versions/7541902bf173_add_didsfollowed_and_followevents_table.py +93 -0
- rucio/db/sqla/migrate_repo/versions/7ec22226cdbf_new_replica_state_for_temporary_.py +73 -0
- rucio/db/sqla/migrate_repo/versions/810a41685bc1_added_columns_rse_transfer_limits.py +52 -0
- rucio/db/sqla/migrate_repo/versions/83f991c63a93_correct_rse_expression_length.py +45 -0
- rucio/db/sqla/migrate_repo/versions/8523998e2e76_increase_size_of_extended_attributes_.py +46 -0
- rucio/db/sqla/migrate_repo/versions/8ea9122275b1_adding_missing_function_based_indices.py +54 -0
- rucio/db/sqla/migrate_repo/versions/90f47792bb76_add_clob_payload_to_messages.py +48 -0
- rucio/db/sqla/migrate_repo/versions/914b8f02df38_new_table_for_lifetime_model_exceptions.py +70 -0
- rucio/db/sqla/migrate_repo/versions/94a5961ddbf2_add_estimator_columns.py +48 -0
- rucio/db/sqla/migrate_repo/versions/9a1b149a2044_add_saml_identity_type.py +95 -0
- rucio/db/sqla/migrate_repo/versions/9a45bc4ea66d_add_vp_table.py +55 -0
- rucio/db/sqla/migrate_repo/versions/9eb936a81eb1_true_is_true.py +74 -0
- rucio/db/sqla/migrate_repo/versions/a118956323f8_added_vo_table_and_vo_col_to_rse.py +78 -0
- rucio/db/sqla/migrate_repo/versions/a193a275255c_add_status_column_in_messages.py +49 -0
- rucio/db/sqla/migrate_repo/versions/a5f6f6e928a7_1_7_0.py +124 -0
- rucio/db/sqla/migrate_repo/versions/a616581ee47_added_columns_to_table_requests.py +60 -0
- rucio/db/sqla/migrate_repo/versions/a6eb23955c28_state_idx_non_functional.py +53 -0
- rucio/db/sqla/migrate_repo/versions/a74275a1ad30_added_global_quota_table.py +56 -0
- rucio/db/sqla/migrate_repo/versions/a93e4e47bda_heartbeats.py +67 -0
- rucio/db/sqla/migrate_repo/versions/ae2a56fcc89_added_comment_column_to_rules.py +50 -0
- rucio/db/sqla/migrate_repo/versions/b4293a99f344_added_column_identity_to_table_tokens.py +46 -0
- rucio/db/sqla/migrate_repo/versions/b7d287de34fd_removal_of_replicastate_source.py +92 -0
- rucio/db/sqla/migrate_repo/versions/b818052fa670_add_index_to_quarantined_replicas.py +42 -0
- rucio/db/sqla/migrate_repo/versions/b8caac94d7f0_add_comments_column_for_subscriptions_.py +46 -0
- rucio/db/sqla/migrate_repo/versions/b96a1c7e1cc4_new_bad_pfns_table_and_bad_replicas_.py +147 -0
- rucio/db/sqla/migrate_repo/versions/bb695f45c04_extend_request_state.py +78 -0
- rucio/db/sqla/migrate_repo/versions/bc68e9946deb_add_staging_timestamps_to_request.py +53 -0
- rucio/db/sqla/migrate_repo/versions/bf3baa1c1474_correct_pk_and_idx_for_history_tables.py +74 -0
- rucio/db/sqla/migrate_repo/versions/c0937668555f_add_qos_policy_map_table.py +56 -0
- rucio/db/sqla/migrate_repo/versions/c129ccdb2d5_add_lumiblocknr_to_dids.py +46 -0
- rucio/db/sqla/migrate_repo/versions/ccdbcd48206e_add_did_type_column_index_on_did_meta_.py +68 -0
- rucio/db/sqla/migrate_repo/versions/cebad904c4dd_new_payload_column_for_heartbeats.py +48 -0
- rucio/db/sqla/migrate_repo/versions/d1189a09c6e0_oauth2_0_and_jwt_feature_support_adding_.py +149 -0
- rucio/db/sqla/migrate_repo/versions/d23453595260_extend_request_state_for_preparer.py +106 -0
- rucio/db/sqla/migrate_repo/versions/d6dceb1de2d_added_purge_column_to_rules.py +47 -0
- rucio/db/sqla/migrate_repo/versions/d6e2c3b2cf26_remove_third_party_copy_column_from_rse.py +45 -0
- rucio/db/sqla/migrate_repo/versions/d91002c5841_new_account_limits_table.py +105 -0
- rucio/db/sqla/migrate_repo/versions/e138c364ebd0_extending_columns_for_filter_and_.py +52 -0
- rucio/db/sqla/migrate_repo/versions/e59300c8b179_support_for_archive.py +106 -0
- rucio/db/sqla/migrate_repo/versions/f1b14a8c2ac1_postgres_use_check_constraints.py +30 -0
- rucio/db/sqla/migrate_repo/versions/f41ffe206f37_oracle_global_temporary_tables.py +75 -0
- rucio/db/sqla/migrate_repo/versions/f85a2962b021_adding_transfertool_column_to_requests_.py +49 -0
- rucio/db/sqla/migrate_repo/versions/fa7a7d78b602_increase_refresh_token_size.py +45 -0
- rucio/db/sqla/migrate_repo/versions/fb28a95fe288_add_replicas_rse_id_tombstone_idx.py +38 -0
- rucio/db/sqla/migrate_repo/versions/fe1a65b176c9_set_third_party_copy_read_and_write_.py +44 -0
- rucio/db/sqla/migrate_repo/versions/fe8ea2fa9788_added_third_party_copy_column_to_rse_.py +46 -0
- rucio/db/sqla/models.py +1834 -0
- rucio/db/sqla/sautils.py +48 -0
- rucio/db/sqla/session.py +470 -0
- rucio/db/sqla/types.py +207 -0
- rucio/db/sqla/util.py +521 -0
- rucio/rse/__init__.py +97 -0
- rucio/rse/protocols/__init__.py +14 -0
- rucio/rse/protocols/cache.py +123 -0
- rucio/rse/protocols/dummy.py +112 -0
- rucio/rse/protocols/gfal.py +701 -0
- rucio/rse/protocols/globus.py +243 -0
- rucio/rse/protocols/gsiftp.py +93 -0
- rucio/rse/protocols/http_cache.py +83 -0
- rucio/rse/protocols/mock.py +124 -0
- rucio/rse/protocols/ngarc.py +210 -0
- rucio/rse/protocols/posix.py +251 -0
- rucio/rse/protocols/protocol.py +530 -0
- rucio/rse/protocols/rclone.py +365 -0
- rucio/rse/protocols/rfio.py +137 -0
- rucio/rse/protocols/srm.py +339 -0
- rucio/rse/protocols/ssh.py +414 -0
- rucio/rse/protocols/storm.py +207 -0
- rucio/rse/protocols/webdav.py +547 -0
- rucio/rse/protocols/xrootd.py +295 -0
- rucio/rse/rsemanager.py +752 -0
- rucio/tests/__init__.py +14 -0
- rucio/tests/common.py +244 -0
- rucio/tests/common_server.py +132 -0
- rucio/transfertool/__init__.py +14 -0
- rucio/transfertool/fts3.py +1484 -0
- rucio/transfertool/globus.py +200 -0
- rucio/transfertool/globus_library.py +182 -0
- rucio/transfertool/mock.py +81 -0
- rucio/transfertool/transfertool.py +212 -0
- rucio/vcsversion.py +11 -0
- rucio/version.py +46 -0
- rucio/web/__init__.py +14 -0
- rucio/web/rest/__init__.py +14 -0
- rucio/web/rest/flaskapi/__init__.py +14 -0
- rucio/web/rest/flaskapi/authenticated_bp.py +28 -0
- rucio/web/rest/flaskapi/v1/__init__.py +14 -0
- rucio/web/rest/flaskapi/v1/accountlimits.py +234 -0
- rucio/web/rest/flaskapi/v1/accounts.py +1088 -0
- rucio/web/rest/flaskapi/v1/archives.py +100 -0
- rucio/web/rest/flaskapi/v1/auth.py +1642 -0
- rucio/web/rest/flaskapi/v1/common.py +385 -0
- rucio/web/rest/flaskapi/v1/config.py +305 -0
- rucio/web/rest/flaskapi/v1/credentials.py +213 -0
- rucio/web/rest/flaskapi/v1/dids.py +2204 -0
- rucio/web/rest/flaskapi/v1/dirac.py +116 -0
- rucio/web/rest/flaskapi/v1/export.py +77 -0
- rucio/web/rest/flaskapi/v1/heartbeats.py +129 -0
- rucio/web/rest/flaskapi/v1/identities.py +263 -0
- rucio/web/rest/flaskapi/v1/import.py +133 -0
- rucio/web/rest/flaskapi/v1/lifetime_exceptions.py +315 -0
- rucio/web/rest/flaskapi/v1/locks.py +360 -0
- rucio/web/rest/flaskapi/v1/main.py +83 -0
- rucio/web/rest/flaskapi/v1/meta.py +226 -0
- rucio/web/rest/flaskapi/v1/metrics.py +37 -0
- rucio/web/rest/flaskapi/v1/nongrid_traces.py +97 -0
- rucio/web/rest/flaskapi/v1/ping.py +89 -0
- rucio/web/rest/flaskapi/v1/redirect.py +366 -0
- rucio/web/rest/flaskapi/v1/replicas.py +1866 -0
- rucio/web/rest/flaskapi/v1/requests.py +841 -0
- rucio/web/rest/flaskapi/v1/rses.py +2204 -0
- rucio/web/rest/flaskapi/v1/rules.py +824 -0
- rucio/web/rest/flaskapi/v1/scopes.py +161 -0
- rucio/web/rest/flaskapi/v1/subscriptions.py +646 -0
- rucio/web/rest/flaskapi/v1/templates/auth_crash.html +80 -0
- rucio/web/rest/flaskapi/v1/templates/auth_granted.html +82 -0
- rucio/web/rest/flaskapi/v1/tmp_dids.py +115 -0
- rucio/web/rest/flaskapi/v1/traces.py +100 -0
- rucio/web/rest/flaskapi/v1/vos.py +280 -0
- rucio/web/rest/main.py +19 -0
- rucio/web/rest/metrics.py +28 -0
- rucio-32.8.6.data/data/rucio/etc/alembic.ini.template +71 -0
- rucio-32.8.6.data/data/rucio/etc/alembic_offline.ini.template +74 -0
- rucio-32.8.6.data/data/rucio/etc/globus-config.yml.template +5 -0
- rucio-32.8.6.data/data/rucio/etc/ldap.cfg.template +30 -0
- rucio-32.8.6.data/data/rucio/etc/mail_templates/rule_approval_request.tmpl +38 -0
- rucio-32.8.6.data/data/rucio/etc/mail_templates/rule_approved_admin.tmpl +4 -0
- rucio-32.8.6.data/data/rucio/etc/mail_templates/rule_approved_user.tmpl +17 -0
- rucio-32.8.6.data/data/rucio/etc/mail_templates/rule_denied_admin.tmpl +6 -0
- rucio-32.8.6.data/data/rucio/etc/mail_templates/rule_denied_user.tmpl +17 -0
- rucio-32.8.6.data/data/rucio/etc/mail_templates/rule_ok_notification.tmpl +19 -0
- rucio-32.8.6.data/data/rucio/etc/rse-accounts.cfg.template +25 -0
- rucio-32.8.6.data/data/rucio/etc/rucio.cfg.atlas.client.template +42 -0
- rucio-32.8.6.data/data/rucio/etc/rucio.cfg.template +257 -0
- rucio-32.8.6.data/data/rucio/etc/rucio_multi_vo.cfg.template +234 -0
- rucio-32.8.6.data/data/rucio/requirements.txt +55 -0
- rucio-32.8.6.data/data/rucio/tools/bootstrap.py +34 -0
- rucio-32.8.6.data/data/rucio/tools/merge_rucio_configs.py +147 -0
- rucio-32.8.6.data/data/rucio/tools/reset_database.py +40 -0
- rucio-32.8.6.data/scripts/rucio +2540 -0
- rucio-32.8.6.data/scripts/rucio-abacus-account +75 -0
- rucio-32.8.6.data/scripts/rucio-abacus-collection-replica +47 -0
- rucio-32.8.6.data/scripts/rucio-abacus-rse +79 -0
- rucio-32.8.6.data/scripts/rucio-admin +2434 -0
- rucio-32.8.6.data/scripts/rucio-atropos +61 -0
- rucio-32.8.6.data/scripts/rucio-auditor +199 -0
- rucio-32.8.6.data/scripts/rucio-automatix +51 -0
- rucio-32.8.6.data/scripts/rucio-bb8 +58 -0
- rucio-32.8.6.data/scripts/rucio-c3po +86 -0
- rucio-32.8.6.data/scripts/rucio-cache-client +135 -0
- rucio-32.8.6.data/scripts/rucio-cache-consumer +43 -0
- rucio-32.8.6.data/scripts/rucio-conveyor-finisher +59 -0
- rucio-32.8.6.data/scripts/rucio-conveyor-poller +67 -0
- rucio-32.8.6.data/scripts/rucio-conveyor-preparer +38 -0
- rucio-32.8.6.data/scripts/rucio-conveyor-receiver +44 -0
- rucio-32.8.6.data/scripts/rucio-conveyor-stager +77 -0
- rucio-32.8.6.data/scripts/rucio-conveyor-submitter +140 -0
- rucio-32.8.6.data/scripts/rucio-conveyor-throttler +105 -0
- rucio-32.8.6.data/scripts/rucio-dark-reaper +54 -0
- rucio-32.8.6.data/scripts/rucio-dumper +159 -0
- rucio-32.8.6.data/scripts/rucio-follower +45 -0
- rucio-32.8.6.data/scripts/rucio-hermes +55 -0
- rucio-32.8.6.data/scripts/rucio-judge-cleaner +90 -0
- rucio-32.8.6.data/scripts/rucio-judge-evaluator +138 -0
- rucio-32.8.6.data/scripts/rucio-judge-injector +45 -0
- rucio-32.8.6.data/scripts/rucio-judge-repairer +45 -0
- rucio-32.8.6.data/scripts/rucio-kronos +45 -0
- rucio-32.8.6.data/scripts/rucio-light-reaper +53 -0
- rucio-32.8.6.data/scripts/rucio-minos +54 -0
- rucio-32.8.6.data/scripts/rucio-minos-temporary-expiration +51 -0
- rucio-32.8.6.data/scripts/rucio-necromancer +121 -0
- rucio-32.8.6.data/scripts/rucio-oauth-manager +64 -0
- rucio-32.8.6.data/scripts/rucio-reaper +84 -0
- rucio-32.8.6.data/scripts/rucio-replica-recoverer +249 -0
- rucio-32.8.6.data/scripts/rucio-storage-consistency-actions +75 -0
- rucio-32.8.6.data/scripts/rucio-transmogrifier +78 -0
- rucio-32.8.6.data/scripts/rucio-undertaker +77 -0
- rucio-32.8.6.dist-info/METADATA +83 -0
- rucio-32.8.6.dist-info/RECORD +481 -0
- rucio-32.8.6.dist-info/WHEEL +5 -0
- rucio-32.8.6.dist-info/licenses/AUTHORS.rst +94 -0
- rucio-32.8.6.dist-info/licenses/LICENSE +201 -0
- rucio-32.8.6.dist-info/top_level.txt +1 -0
rucio/api/rule.py
ADDED
|
@@ -0,0 +1,335 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Copyright European Organization for Nuclear Research (CERN) since 2012
|
|
3
|
+
#
|
|
4
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
# you may not use this file except in compliance with the License.
|
|
6
|
+
# You may obtain a copy of the License at
|
|
7
|
+
#
|
|
8
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
#
|
|
10
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
# See the License for the specific language governing permissions and
|
|
14
|
+
# limitations under the License.
|
|
15
|
+
|
|
16
|
+
from typing import Any, TYPE_CHECKING
|
|
17
|
+
|
|
18
|
+
from rucio.api.permission import has_permission
|
|
19
|
+
from rucio.common.config import config_get_bool
|
|
20
|
+
from rucio.common.exception import AccessDenied
|
|
21
|
+
from rucio.common.schema import validate_schema
|
|
22
|
+
from rucio.common.types import InternalAccount, InternalScope
|
|
23
|
+
from rucio.common.utils import api_update_return_dict
|
|
24
|
+
from rucio.core import rule
|
|
25
|
+
from rucio.db.sqla.session import read_session, stream_session, transactional_session
|
|
26
|
+
|
|
27
|
+
if TYPE_CHECKING:
|
|
28
|
+
from sqlalchemy.orm import Session
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
@read_session
|
|
32
|
+
def is_multi_vo(*, session: "Session"):
|
|
33
|
+
"""
|
|
34
|
+
Check whether this instance is configured for multi-VO
|
|
35
|
+
returns: Boolean True if running in multi-VO
|
|
36
|
+
"""
|
|
37
|
+
return config_get_bool('common', 'multi_vo', raise_exception=False, default=False, session=session)
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
@transactional_session
|
|
41
|
+
def add_replication_rule(dids, copies, rse_expression, weight, lifetime, grouping, account, locked, subscription_id, source_replica_expression,
|
|
42
|
+
activity, notify, purge_replicas, ignore_availability, comment, ask_approval, asynchronous, delay_injection, priority,
|
|
43
|
+
split_container, meta, issuer, vo='def', *, session: "Session"):
|
|
44
|
+
"""
|
|
45
|
+
Adds a replication rule.
|
|
46
|
+
|
|
47
|
+
:param dids: The data identifier set.
|
|
48
|
+
:param copies: The number of replicas.
|
|
49
|
+
:param rse_expression: Boolean string expression to give the list of RSEs.
|
|
50
|
+
:param weight: If the weighting option of the replication rule is used, the choice of RSEs takes their weight into account.
|
|
51
|
+
:param lifetime: The lifetime of the replication rules (in seconds).
|
|
52
|
+
:param grouping: ALL - All files will be replicated to the same RSE.
|
|
53
|
+
DATASET - All files in the same dataset will be replicated to the same RSE.
|
|
54
|
+
NONE - Files will be completely spread over all allowed RSEs without any grouping considerations at all.
|
|
55
|
+
:param account: The account owning the rule.
|
|
56
|
+
:param locked: If the rule is locked, it cannot be deleted.
|
|
57
|
+
:param subscription_id: The subscription_id, if the rule is created by a subscription.
|
|
58
|
+
:param source_replica_expression: Only use replicas from this RSE as sources.
|
|
59
|
+
:param activity: Activity to be passed on to the conveyor.
|
|
60
|
+
:param notify: Notification setting of the rule.
|
|
61
|
+
:purge purge_replicas: The purge setting to delete replicas immediately after rule deletion.
|
|
62
|
+
:param ignore_availability: Option to ignore the availability of RSEs.
|
|
63
|
+
:param comment: Comment about the rule.
|
|
64
|
+
:param ask_approval: Ask for approval of this rule.
|
|
65
|
+
:param asynchronous: Create rule asynchronously by judge-injector.
|
|
66
|
+
:param priority: Priority of the transfers.
|
|
67
|
+
:param split_container: Should a container rule be split into individual dataset rules.
|
|
68
|
+
:param meta: WFMS metadata as a dictionary.
|
|
69
|
+
:param issuer: The issuing account of this operation.
|
|
70
|
+
:param vo: The VO to act on.
|
|
71
|
+
:param session: The database session in use.
|
|
72
|
+
:returns: List of created replication rules.
|
|
73
|
+
"""
|
|
74
|
+
if account is None:
|
|
75
|
+
account = issuer
|
|
76
|
+
|
|
77
|
+
if activity is None:
|
|
78
|
+
activity = 'User Subscriptions'
|
|
79
|
+
|
|
80
|
+
kwargs = {'dids': dids, 'copies': copies, 'rse_expression': rse_expression, 'weight': weight, 'lifetime': lifetime,
|
|
81
|
+
'grouping': grouping, 'account': account, 'locked': locked, 'subscription_id': subscription_id,
|
|
82
|
+
'source_replica_expression': source_replica_expression, 'notify': notify, 'activity': activity,
|
|
83
|
+
'purge_replicas': purge_replicas, 'ignore_availability': ignore_availability, 'comment': comment,
|
|
84
|
+
'ask_approval': ask_approval, 'asynchronous': asynchronous, 'delay_injection': delay_injection, 'priority': priority,
|
|
85
|
+
'split_container': split_container, 'meta': meta}
|
|
86
|
+
|
|
87
|
+
validate_schema(name='rule', obj=kwargs, vo=vo)
|
|
88
|
+
|
|
89
|
+
if not has_permission(issuer=issuer, vo=vo, action='add_rule', kwargs=kwargs, session=session):
|
|
90
|
+
raise AccessDenied('Account %s can not add replication rule' % (issuer))
|
|
91
|
+
|
|
92
|
+
account = InternalAccount(account, vo=vo)
|
|
93
|
+
for d in dids:
|
|
94
|
+
d['scope'] = InternalScope(d['scope'], vo=vo)
|
|
95
|
+
|
|
96
|
+
return rule.add_rule(account=account,
|
|
97
|
+
dids=dids,
|
|
98
|
+
copies=copies,
|
|
99
|
+
rse_expression=rse_expression,
|
|
100
|
+
grouping=grouping,
|
|
101
|
+
weight=weight,
|
|
102
|
+
lifetime=lifetime,
|
|
103
|
+
locked=locked,
|
|
104
|
+
subscription_id=subscription_id,
|
|
105
|
+
source_replica_expression=source_replica_expression,
|
|
106
|
+
activity=activity,
|
|
107
|
+
notify=notify,
|
|
108
|
+
purge_replicas=purge_replicas,
|
|
109
|
+
ignore_availability=ignore_availability,
|
|
110
|
+
comment=comment,
|
|
111
|
+
ask_approval=ask_approval,
|
|
112
|
+
asynchronous=asynchronous,
|
|
113
|
+
delay_injection=delay_injection,
|
|
114
|
+
priority=priority,
|
|
115
|
+
split_container=split_container,
|
|
116
|
+
meta=meta,
|
|
117
|
+
session=session)
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
@read_session
|
|
121
|
+
def get_replication_rule(rule_id, issuer, vo='def', *, session: "Session"):
|
|
122
|
+
"""
|
|
123
|
+
Get replication rule by it's id.
|
|
124
|
+
|
|
125
|
+
:param rule_id: The rule_id to get.
|
|
126
|
+
:param issuer: The issuing account of this operation.
|
|
127
|
+
:param vo: The VO of the issuer.
|
|
128
|
+
:param session: The database session in use.
|
|
129
|
+
"""
|
|
130
|
+
kwargs = {'rule_id': rule_id}
|
|
131
|
+
if is_multi_vo(session=session) and not has_permission(issuer=issuer, vo=vo, action='access_rule_vo', kwargs=kwargs, session=session):
|
|
132
|
+
raise AccessDenied('Account %s can not access rules at other VOs.' % (issuer))
|
|
133
|
+
result = rule.get_rule(rule_id, session=session)
|
|
134
|
+
return api_update_return_dict(result, session=session)
|
|
135
|
+
|
|
136
|
+
|
|
137
|
+
@stream_session
|
|
138
|
+
def list_replication_rules(filters={}, vo='def', *, session: "Session"):
|
|
139
|
+
"""
|
|
140
|
+
Lists replication rules based on a filter.
|
|
141
|
+
|
|
142
|
+
:param filters: dictionary of attributes by which the results should be filtered.
|
|
143
|
+
:param vo: The VO to act on.
|
|
144
|
+
:param session: The database session in use.
|
|
145
|
+
"""
|
|
146
|
+
# If filters is empty, create a new dict to avoid overwriting the function's default
|
|
147
|
+
if not filters:
|
|
148
|
+
filters = {}
|
|
149
|
+
|
|
150
|
+
if 'scope' in filters:
|
|
151
|
+
scope = filters['scope']
|
|
152
|
+
else:
|
|
153
|
+
scope = '*'
|
|
154
|
+
filters['scope'] = InternalScope(scope=scope, vo=vo)
|
|
155
|
+
|
|
156
|
+
if 'account' in filters:
|
|
157
|
+
account = filters['account']
|
|
158
|
+
else:
|
|
159
|
+
account = '*'
|
|
160
|
+
filters['account'] = InternalAccount(account=account, vo=vo)
|
|
161
|
+
|
|
162
|
+
rules = rule.list_rules(filters, session=session)
|
|
163
|
+
for r in rules:
|
|
164
|
+
yield api_update_return_dict(r, session=session)
|
|
165
|
+
|
|
166
|
+
|
|
167
|
+
@read_session
|
|
168
|
+
def list_replication_rule_history(rule_id, issuer, vo='def', *, session: "Session"):
|
|
169
|
+
"""
|
|
170
|
+
Lists replication rule history..
|
|
171
|
+
|
|
172
|
+
:param rule_id: The rule_id to list.
|
|
173
|
+
:param issuer: The issuing account of this operation.
|
|
174
|
+
:param vo: The VO of the issuer.
|
|
175
|
+
:param session: The database session in use.
|
|
176
|
+
"""
|
|
177
|
+
kwargs = {'rule_id': rule_id}
|
|
178
|
+
if is_multi_vo(session=session) and not has_permission(issuer=issuer, vo=vo, action='access_rule_vo', kwargs=kwargs, session=session):
|
|
179
|
+
raise AccessDenied('Account %s can not access rules at other VOs.' % (issuer))
|
|
180
|
+
return rule.list_rule_history(rule_id, session=session)
|
|
181
|
+
|
|
182
|
+
|
|
183
|
+
@stream_session
|
|
184
|
+
def list_replication_rule_full_history(scope, name, vo='def', *, session: "Session"):
|
|
185
|
+
"""
|
|
186
|
+
List the rule history of a DID.
|
|
187
|
+
|
|
188
|
+
:param scope: The scope of the DID.
|
|
189
|
+
:param name: The name of the DID.
|
|
190
|
+
:param vo: The VO to act on.
|
|
191
|
+
:param session: The database session in use.
|
|
192
|
+
"""
|
|
193
|
+
scope = InternalScope(scope, vo=vo)
|
|
194
|
+
rules = rule.list_rule_full_history(scope, name, session=session)
|
|
195
|
+
for r in rules:
|
|
196
|
+
yield api_update_return_dict(r, session=session)
|
|
197
|
+
|
|
198
|
+
|
|
199
|
+
@stream_session
|
|
200
|
+
def list_associated_replication_rules_for_file(scope, name, vo='def', *, session: "Session"):
|
|
201
|
+
"""
|
|
202
|
+
Lists associated replication rules by file.
|
|
203
|
+
|
|
204
|
+
:param scope: Scope of the file..
|
|
205
|
+
:param name: Name of the file.
|
|
206
|
+
:param vo: The VO to act on.
|
|
207
|
+
:param session: The database session in use.
|
|
208
|
+
"""
|
|
209
|
+
scope = InternalScope(scope, vo=vo)
|
|
210
|
+
rules = rule.list_associated_rules_for_file(scope=scope, name=name, session=session)
|
|
211
|
+
for r in rules:
|
|
212
|
+
yield api_update_return_dict(r, session=session)
|
|
213
|
+
|
|
214
|
+
|
|
215
|
+
@transactional_session
|
|
216
|
+
def delete_replication_rule(rule_id, purge_replicas, issuer, vo='def', *, session: "Session"):
|
|
217
|
+
"""
|
|
218
|
+
Deletes a replication rule and all associated locks.
|
|
219
|
+
|
|
220
|
+
:param rule_id: The id of the rule to be deleted
|
|
221
|
+
:param purge_replicas: Purge the replicas immediately
|
|
222
|
+
:param issuer: The issuing account of this operation
|
|
223
|
+
:param vo: The VO to act on.
|
|
224
|
+
:param session: The database session in use.
|
|
225
|
+
:raises: RuleNotFound, AccessDenied
|
|
226
|
+
"""
|
|
227
|
+
kwargs = {'rule_id': rule_id, 'purge_replicas': purge_replicas}
|
|
228
|
+
if is_multi_vo(session=session) and not has_permission(issuer=issuer, vo=vo, action='access_rule_vo', kwargs=kwargs, session=session):
|
|
229
|
+
raise AccessDenied('Account %s can not access rules at other VOs.' % (issuer))
|
|
230
|
+
if not has_permission(issuer=issuer, vo=vo, action='del_rule', kwargs=kwargs):
|
|
231
|
+
raise AccessDenied('Account %s can not remove this replication rule.' % (issuer))
|
|
232
|
+
rule.delete_rule(rule_id=rule_id, purge_replicas=purge_replicas, soft=True, session=session)
|
|
233
|
+
|
|
234
|
+
|
|
235
|
+
@transactional_session
|
|
236
|
+
def update_replication_rule(rule_id: str, options: dict[str, Any], issuer: str, vo: str = 'def', *, session: "Session"):
|
|
237
|
+
"""
|
|
238
|
+
Update lock state of a replication rule.
|
|
239
|
+
|
|
240
|
+
:param rule_id: The rule_id to lock.
|
|
241
|
+
:param options: Options dictionary.
|
|
242
|
+
:param issuer: The issuing account of this operation
|
|
243
|
+
:param vo: The VO to act on.
|
|
244
|
+
:param session: The database session in use.
|
|
245
|
+
:raises: RuleNotFound if no Rule can be found.
|
|
246
|
+
"""
|
|
247
|
+
kwargs = {'rule_id': rule_id, 'options': options}
|
|
248
|
+
if is_multi_vo(session=session) and not has_permission(issuer=issuer, vo=vo, action='access_rule_vo', kwargs=kwargs, session=session):
|
|
249
|
+
raise AccessDenied('Account %s can not access rules at other VOs.' % (issuer))
|
|
250
|
+
if 'approve' in options:
|
|
251
|
+
if not has_permission(issuer=issuer, vo=vo, action='approve_rule', kwargs=kwargs, session=session):
|
|
252
|
+
raise AccessDenied('Account %s can not approve/deny this replication rule.' % (issuer))
|
|
253
|
+
|
|
254
|
+
issuer_ia = InternalAccount(issuer, vo=vo)
|
|
255
|
+
if options['approve']:
|
|
256
|
+
rule.approve_rule(rule_id=rule_id, approver=issuer_ia, session=session)
|
|
257
|
+
else:
|
|
258
|
+
rule.deny_rule(rule_id=rule_id, approver=issuer_ia, reason=options.get('comment', None), session=session)
|
|
259
|
+
else:
|
|
260
|
+
if not has_permission(issuer=issuer, vo=vo, action='update_rule', kwargs=kwargs, session=session):
|
|
261
|
+
raise AccessDenied('Account %s can not update this replication rule.' % (issuer))
|
|
262
|
+
if 'account' in options:
|
|
263
|
+
options['account'] = InternalAccount(options['account'], vo=vo)
|
|
264
|
+
rule.update_rule(rule_id=rule_id, options=options, session=session)
|
|
265
|
+
|
|
266
|
+
|
|
267
|
+
@transactional_session
|
|
268
|
+
def reduce_replication_rule(rule_id, copies, exclude_expression, issuer, vo='def', *, session: "Session"):
|
|
269
|
+
"""
|
|
270
|
+
Reduce the number of copies for a rule by atomically replacing the rule.
|
|
271
|
+
|
|
272
|
+
:param rule_id: Rule to be reduced.
|
|
273
|
+
:param copies: Number of copies of the new rule.
|
|
274
|
+
:param exclude_expression: RSE Expression of RSEs to exclude.
|
|
275
|
+
:param issuer: The issuing account of this operation
|
|
276
|
+
:param vo: The VO to act on.
|
|
277
|
+
:param session: The database session in use.
|
|
278
|
+
:raises: RuleReplaceFailed, RuleNotFound
|
|
279
|
+
"""
|
|
280
|
+
kwargs = {'rule_id': rule_id, 'copies': copies, 'exclude_expression': exclude_expression}
|
|
281
|
+
if is_multi_vo(session=session) and not has_permission(issuer=issuer, vo=vo, action='access_rule_vo', kwargs=kwargs, session=session):
|
|
282
|
+
raise AccessDenied('Account %s can not access rules at other VOs.' % (issuer))
|
|
283
|
+
if not has_permission(issuer=issuer, vo=vo, action='reduce_rule', kwargs=kwargs, session=session):
|
|
284
|
+
raise AccessDenied('Account %s can not reduce this replication rule.' % (issuer))
|
|
285
|
+
|
|
286
|
+
return rule.reduce_rule(rule_id=rule_id, copies=copies, exclude_expression=exclude_expression, session=session)
|
|
287
|
+
|
|
288
|
+
|
|
289
|
+
@read_session
|
|
290
|
+
def examine_replication_rule(rule_id, issuer, vo='def', *, session: "Session"):
|
|
291
|
+
"""
|
|
292
|
+
Examine a replication rule.
|
|
293
|
+
|
|
294
|
+
:param rule_id: The rule_id to get.
|
|
295
|
+
:param issuer: The issuing account of this operation.
|
|
296
|
+
:param vo: The VO of the issuer.
|
|
297
|
+
:param session: The database session in use.
|
|
298
|
+
"""
|
|
299
|
+
kwargs = {'rule_id': rule_id}
|
|
300
|
+
if is_multi_vo(session=session) and not has_permission(issuer=issuer, vo=vo, action='access_rule_vo', kwargs=kwargs, session=session):
|
|
301
|
+
raise AccessDenied('Account %s can not access rules at other VOs.' % (issuer))
|
|
302
|
+
result = rule.examine_rule(rule_id, session=session)
|
|
303
|
+
result = api_update_return_dict(result, session=session)
|
|
304
|
+
if 'transfers' in result:
|
|
305
|
+
result['transfers'] = [api_update_return_dict(t, session=session) for t in result['transfers']]
|
|
306
|
+
return result
|
|
307
|
+
|
|
308
|
+
|
|
309
|
+
@transactional_session
|
|
310
|
+
def move_replication_rule(rule_id, rse_expression, override, issuer, vo='def', *, session: "Session"):
|
|
311
|
+
"""
|
|
312
|
+
Move a replication rule to another RSE and, once done, delete the original one.
|
|
313
|
+
|
|
314
|
+
:param rule_id: Rule to be moved.
|
|
315
|
+
:param rse_expression: RSE expression of the new rule.
|
|
316
|
+
:param override: Configurations to update for the new rule.
|
|
317
|
+
:param session: The DB Session.
|
|
318
|
+
:param vo: The VO to act on.
|
|
319
|
+
:raises: RuleNotFound, RuleReplaceFailed, InvalidRSEExpression, AccessDenied
|
|
320
|
+
"""
|
|
321
|
+
override = override.copy()
|
|
322
|
+
if 'account' in override:
|
|
323
|
+
override['account'] = InternalAccount(override['account'], vo=vo)
|
|
324
|
+
kwargs = {
|
|
325
|
+
'rule_id': rule_id,
|
|
326
|
+
'rse_expression': rse_expression,
|
|
327
|
+
'override': override,
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
if is_multi_vo(session=session) and not has_permission(issuer=issuer, vo=vo, action='access_rule_vo', kwargs=kwargs, session=session):
|
|
331
|
+
raise AccessDenied('Account %s can not access rules at other VOs.' % (issuer))
|
|
332
|
+
if not has_permission(issuer=issuer, vo=vo, action='move_rule', kwargs=kwargs, session=session):
|
|
333
|
+
raise AccessDenied('Account %s can not move this replication rule.' % (issuer))
|
|
334
|
+
|
|
335
|
+
return rule.move_rule(**kwargs, session=session)
|
rucio/api/scope.py
ADDED
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Copyright European Organization for Nuclear Research (CERN) since 2012
|
|
3
|
+
#
|
|
4
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
# you may not use this file except in compliance with the License.
|
|
6
|
+
# You may obtain a copy of the License at
|
|
7
|
+
#
|
|
8
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
#
|
|
10
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
# See the License for the specific language governing permissions and
|
|
14
|
+
# limitations under the License.
|
|
15
|
+
|
|
16
|
+
from typing import TYPE_CHECKING
|
|
17
|
+
|
|
18
|
+
import rucio.api.permission
|
|
19
|
+
import rucio.common.exception
|
|
20
|
+
from rucio.common.schema import validate_schema
|
|
21
|
+
from rucio.common.types import InternalAccount, InternalScope
|
|
22
|
+
from rucio.core import scope as core_scope
|
|
23
|
+
from rucio.db.sqla.session import read_session, transactional_session
|
|
24
|
+
|
|
25
|
+
if TYPE_CHECKING:
|
|
26
|
+
from sqlalchemy.orm import Session
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
@read_session
|
|
30
|
+
def list_scopes(filter_={}, vo='def', *, session: "Session"):
|
|
31
|
+
"""
|
|
32
|
+
Lists all scopes.
|
|
33
|
+
|
|
34
|
+
:param filter_: Dictionary of attributes by which the input data should be filtered
|
|
35
|
+
:param vo: The VO to act on.
|
|
36
|
+
:param session: The database session in use.
|
|
37
|
+
|
|
38
|
+
:returns: A list containing all scopes.
|
|
39
|
+
"""
|
|
40
|
+
# If filter is empty, create a new dict to avoid overwriting the function's default
|
|
41
|
+
if not filter_:
|
|
42
|
+
filter_ = {}
|
|
43
|
+
|
|
44
|
+
if 'scope' in filter_:
|
|
45
|
+
filter_['scope'] = InternalScope(scope=filter_['scope'], vo=vo)
|
|
46
|
+
else:
|
|
47
|
+
filter_['scope'] = InternalScope(scope='*', vo=vo)
|
|
48
|
+
return [scope.external for scope in core_scope.list_scopes(filter_=filter_, session=session)]
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
@transactional_session
|
|
52
|
+
def add_scope(scope, account, issuer, vo='def', *, session: "Session"):
|
|
53
|
+
"""
|
|
54
|
+
Creates a scope for an account.
|
|
55
|
+
|
|
56
|
+
:param account: The account name.
|
|
57
|
+
:param scope: The scope identifier.
|
|
58
|
+
:param issuer: The issuer account.
|
|
59
|
+
:param vo: The VO to act on.
|
|
60
|
+
:param session: The database session in use.
|
|
61
|
+
"""
|
|
62
|
+
|
|
63
|
+
validate_schema(name='scope', obj=scope, vo=vo)
|
|
64
|
+
|
|
65
|
+
kwargs = {'scope': scope, 'account': account}
|
|
66
|
+
if not rucio.api.permission.has_permission(issuer=issuer, vo=vo, action='add_scope', kwargs=kwargs, session=session):
|
|
67
|
+
raise rucio.common.exception.AccessDenied('Account %s can not add scope' % (issuer))
|
|
68
|
+
|
|
69
|
+
scope = InternalScope(scope, vo=vo)
|
|
70
|
+
account = InternalAccount(account, vo=vo)
|
|
71
|
+
|
|
72
|
+
core_scope.add_scope(scope, account, session=session)
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
@read_session
|
|
76
|
+
def get_scopes(account, vo='def', *, session: "Session"):
|
|
77
|
+
"""
|
|
78
|
+
Gets a list of all scopes for an account.
|
|
79
|
+
|
|
80
|
+
:param account: The account name.
|
|
81
|
+
:param vo: The VO to act on.
|
|
82
|
+
:param session: The database session in use.
|
|
83
|
+
|
|
84
|
+
:returns: A list containing the names of all scopes for this account.
|
|
85
|
+
"""
|
|
86
|
+
|
|
87
|
+
account = InternalAccount(account, vo=vo)
|
|
88
|
+
|
|
89
|
+
return [scope.external for scope in core_scope.get_scopes(account, session=session)]
|
|
@@ -0,0 +1,255 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Copyright European Organization for Nuclear Research (CERN) since 2012
|
|
3
|
+
#
|
|
4
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
# you may not use this file except in compliance with the License.
|
|
6
|
+
# You may obtain a copy of the License at
|
|
7
|
+
#
|
|
8
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
#
|
|
10
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
# See the License for the specific language governing permissions and
|
|
14
|
+
# limitations under the License.
|
|
15
|
+
|
|
16
|
+
from collections import namedtuple
|
|
17
|
+
from json import dumps, loads
|
|
18
|
+
from typing import TYPE_CHECKING
|
|
19
|
+
|
|
20
|
+
from rucio.api.permission import has_permission
|
|
21
|
+
from rucio.common.exception import InvalidObject, AccessDenied
|
|
22
|
+
from rucio.common.schema import validate_schema
|
|
23
|
+
from rucio.common.types import InternalAccount, InternalScope
|
|
24
|
+
from rucio.core import subscription
|
|
25
|
+
from rucio.db.sqla.session import read_session, stream_session, transactional_session
|
|
26
|
+
|
|
27
|
+
if TYPE_CHECKING:
|
|
28
|
+
from sqlalchemy.orm import Session
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
SubscriptionRuleState = namedtuple('SubscriptionRuleState', ['account', 'name', 'state', 'count'])
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
@transactional_session
|
|
35
|
+
def add_subscription(name, account, filter_, replication_rules, comments, lifetime, retroactive, dry_run, priority=None, issuer=None, vo='def', *, session: "Session"):
|
|
36
|
+
"""
|
|
37
|
+
Adds a new subscription which will be verified against every new added file and dataset
|
|
38
|
+
|
|
39
|
+
:param account: Account identifier
|
|
40
|
+
:type account: String
|
|
41
|
+
:param name: Name of the subscription
|
|
42
|
+
:type: String
|
|
43
|
+
:param filter_: Dictionary of attributes by which the input data should be filtered
|
|
44
|
+
**Example**: ``{'dsn': 'data11_hi*.express_express.*,data11_hi*physics_MinBiasOverlay*', 'account': 'tzero'}``
|
|
45
|
+
:type filter_: Dict
|
|
46
|
+
:param replication_rules: Replication rules to be set : Dictionary with keys copies, rse_expression, weight, rse_expression
|
|
47
|
+
:type replication_rules: Dict
|
|
48
|
+
:param comments: Comments for the subscription
|
|
49
|
+
:type comments: String
|
|
50
|
+
:param lifetime: Subscription's lifetime (seconds); False if subscription has no lifetime
|
|
51
|
+
:type lifetime: Integer or False
|
|
52
|
+
:param retroactive: Flag to know if the subscription should be applied on previous data
|
|
53
|
+
:type retroactive: Boolean
|
|
54
|
+
:param dry_run: Just print the subscriptions actions without actually executing them (Useful if retroactive flag is set)
|
|
55
|
+
:type dry_run: Boolean
|
|
56
|
+
:param priority: The priority of the subscription
|
|
57
|
+
:type priority: Integer
|
|
58
|
+
:param issuer: The account issuing this operation.
|
|
59
|
+
:type issuer: String
|
|
60
|
+
:param vo: The VO to act on.
|
|
61
|
+
:type vo: String
|
|
62
|
+
:param session: The database session in use.
|
|
63
|
+
:returns: subscription_id
|
|
64
|
+
:rtype: String
|
|
65
|
+
"""
|
|
66
|
+
if not has_permission(issuer=issuer, vo=vo, action='add_subscription', kwargs={'account': account}, session=session):
|
|
67
|
+
raise AccessDenied('Account %s can not add subscription' % (issuer))
|
|
68
|
+
try:
|
|
69
|
+
if filter_:
|
|
70
|
+
if not isinstance(filter_, dict):
|
|
71
|
+
raise TypeError('filter should be a dict')
|
|
72
|
+
validate_schema(name='subscription_filter', obj=filter_, vo=vo)
|
|
73
|
+
if replication_rules:
|
|
74
|
+
if not isinstance(replication_rules, list):
|
|
75
|
+
raise TypeError('replication_rules should be a list')
|
|
76
|
+
else:
|
|
77
|
+
for rule in replication_rules:
|
|
78
|
+
validate_schema(name='activity', obj=rule.get('activity', 'default'), vo=vo)
|
|
79
|
+
else:
|
|
80
|
+
raise InvalidObject('You must specify a rule')
|
|
81
|
+
except ValueError as error:
|
|
82
|
+
raise TypeError(error)
|
|
83
|
+
|
|
84
|
+
account = InternalAccount(account, vo=vo)
|
|
85
|
+
|
|
86
|
+
keys = ['scope', 'account']
|
|
87
|
+
types = [InternalScope, InternalAccount]
|
|
88
|
+
for _key, _type in zip(keys, types):
|
|
89
|
+
if _key in filter_:
|
|
90
|
+
if isinstance(filter_[_key], list):
|
|
91
|
+
filter_[_key] = [_type(val, vo=vo).internal for val in filter_[_key]]
|
|
92
|
+
else:
|
|
93
|
+
filter_[_key] = _type(filter_[_key], vo=vo).internal
|
|
94
|
+
|
|
95
|
+
return subscription.add_subscription(name=name, account=account, filter_=dumps(filter_), replication_rules=dumps(replication_rules),
|
|
96
|
+
comments=comments, lifetime=lifetime, retroactive=retroactive, dry_run=dry_run, priority=priority,
|
|
97
|
+
session=session)
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
@transactional_session
|
|
101
|
+
def update_subscription(name, account, metadata=None, issuer=None, vo='def', *, session: "Session"):
|
|
102
|
+
"""
|
|
103
|
+
Updates a subscription
|
|
104
|
+
|
|
105
|
+
:param name: Name of the subscription
|
|
106
|
+
:type: String
|
|
107
|
+
:param account: Account identifier
|
|
108
|
+
:type account: String
|
|
109
|
+
:param metadata: Dictionary of metadata to update. Supported keys : filter, replication_rules, comments, lifetime, retroactive, dry_run, priority, last_processed
|
|
110
|
+
:type metadata: Dict
|
|
111
|
+
:param issuer: The account issuing this operation.
|
|
112
|
+
:type issuer: String
|
|
113
|
+
:param vo: The VO to act on.
|
|
114
|
+
:type vo: String
|
|
115
|
+
:param session: The database session in use.
|
|
116
|
+
:raises: SubscriptionNotFound if subscription is not found
|
|
117
|
+
"""
|
|
118
|
+
if not has_permission(issuer=issuer, vo=vo, action='update_subscription', kwargs={'account': account}, session=session):
|
|
119
|
+
raise AccessDenied('Account %s can not update subscription' % (issuer))
|
|
120
|
+
try:
|
|
121
|
+
if not isinstance(metadata, dict):
|
|
122
|
+
raise TypeError('metadata should be a dict')
|
|
123
|
+
if 'filter' in metadata and metadata['filter']:
|
|
124
|
+
if not isinstance(metadata['filter'], dict):
|
|
125
|
+
raise TypeError('filter should be a dict')
|
|
126
|
+
validate_schema(name='subscription_filter', obj=metadata['filter'], vo=vo)
|
|
127
|
+
if 'replication_rules' in metadata and metadata['replication_rules']:
|
|
128
|
+
if not isinstance(metadata['replication_rules'], list):
|
|
129
|
+
raise TypeError('replication_rules should be a list')
|
|
130
|
+
else:
|
|
131
|
+
for rule in metadata['replication_rules']:
|
|
132
|
+
validate_schema(name='activity', obj=rule.get('activity', 'default'), vo=vo)
|
|
133
|
+
except ValueError as error:
|
|
134
|
+
raise TypeError(error)
|
|
135
|
+
|
|
136
|
+
account = InternalAccount(account, vo=vo)
|
|
137
|
+
|
|
138
|
+
if 'filter' in metadata and metadata['filter'] is not None:
|
|
139
|
+
filter_ = metadata['filter']
|
|
140
|
+
keys = ['scope', 'account']
|
|
141
|
+
types = [InternalScope, InternalAccount]
|
|
142
|
+
|
|
143
|
+
for _key, _type in zip(keys, types):
|
|
144
|
+
if _key in filter_ and filter_[_key] is not None:
|
|
145
|
+
if isinstance(filter_[_key], list):
|
|
146
|
+
filter_[_key] = [_type(val, vo=vo).internal for val in filter_[_key]]
|
|
147
|
+
else:
|
|
148
|
+
filter_[_key] = _type(filter_[_key], vo=vo).internal
|
|
149
|
+
|
|
150
|
+
return subscription.update_subscription(name=name, account=account, metadata=metadata, session=session)
|
|
151
|
+
|
|
152
|
+
|
|
153
|
+
@stream_session
|
|
154
|
+
def list_subscriptions(name=None, account=None, state=None, vo='def', *, session: "Session"):
|
|
155
|
+
"""
|
|
156
|
+
Returns a dictionary with the subscription information :
|
|
157
|
+
Examples: ``{'status': 'INACTIVE/ACTIVE/BROKEN', 'last_modified_date': ...}``
|
|
158
|
+
|
|
159
|
+
:param name: Name of the subscription
|
|
160
|
+
:type: String
|
|
161
|
+
:param account: Account identifier
|
|
162
|
+
:type account: String
|
|
163
|
+
:param state: Filter for subscription state
|
|
164
|
+
:type state: String
|
|
165
|
+
:param vo: The VO to act on.
|
|
166
|
+
:type vo: String
|
|
167
|
+
:param session: The database session in use.
|
|
168
|
+
:returns: Dictionary containing subscription parameter
|
|
169
|
+
:rtype: Dict
|
|
170
|
+
:raises: exception.NotFound if subscription is not found
|
|
171
|
+
"""
|
|
172
|
+
|
|
173
|
+
if account:
|
|
174
|
+
account = InternalAccount(account, vo=vo)
|
|
175
|
+
else:
|
|
176
|
+
account = InternalAccount('*', vo=vo)
|
|
177
|
+
|
|
178
|
+
subs = subscription.list_subscriptions(name, account, state, session=session)
|
|
179
|
+
|
|
180
|
+
for sub in subs:
|
|
181
|
+
sub['account'] = sub['account'].external
|
|
182
|
+
|
|
183
|
+
if 'filter' in sub:
|
|
184
|
+
fil = loads(sub['filter'])
|
|
185
|
+
if 'account' in fil:
|
|
186
|
+
fil['account'] = [InternalAccount(acc, fromExternal=False).external for acc in fil['account']]
|
|
187
|
+
if 'scope' in fil:
|
|
188
|
+
fil['scope'] = [InternalScope(sco, fromExternal=False).external for sco in fil['scope']]
|
|
189
|
+
sub['filter'] = dumps(fil)
|
|
190
|
+
|
|
191
|
+
yield sub
|
|
192
|
+
|
|
193
|
+
|
|
194
|
+
@stream_session
|
|
195
|
+
def list_subscription_rule_states(name=None, account=None, vo='def', *, session: "Session"):
|
|
196
|
+
"""Returns a list of with the number of rules per state for a subscription.
|
|
197
|
+
|
|
198
|
+
:param name: Name of the subscription
|
|
199
|
+
:param account: Account identifier
|
|
200
|
+
:param vo: The VO to act on.
|
|
201
|
+
:param session: The database session in use.
|
|
202
|
+
:returns: Sequence with SubscriptionRuleState named tuples (account, name, state, count)
|
|
203
|
+
"""
|
|
204
|
+
if account is not None:
|
|
205
|
+
account = InternalAccount(account, vo=vo)
|
|
206
|
+
else:
|
|
207
|
+
account = InternalAccount('*', vo=vo)
|
|
208
|
+
subs = subscription.list_subscription_rule_states(name, account, session=session)
|
|
209
|
+
for sub in subs:
|
|
210
|
+
# sub is an immutable Row so return new named tuple with edited entries
|
|
211
|
+
d = sub._asdict()
|
|
212
|
+
d['account'] = d['account'].external
|
|
213
|
+
yield SubscriptionRuleState(**d)
|
|
214
|
+
|
|
215
|
+
|
|
216
|
+
@transactional_session
|
|
217
|
+
def delete_subscription(subscription_id, vo='def', *, session: "Session"):
|
|
218
|
+
"""
|
|
219
|
+
Deletes a subscription
|
|
220
|
+
|
|
221
|
+
:param subscription_id: Subscription identifier
|
|
222
|
+
:param vo: The VO of the user issuing command
|
|
223
|
+
:param session: The database session in use.
|
|
224
|
+
:type subscription_id: String
|
|
225
|
+
"""
|
|
226
|
+
|
|
227
|
+
raise NotImplementedError
|
|
228
|
+
|
|
229
|
+
|
|
230
|
+
@read_session
|
|
231
|
+
def get_subscription_by_id(subscription_id, vo='def', *, session: "Session"):
|
|
232
|
+
"""
|
|
233
|
+
Get a specific subscription by id.
|
|
234
|
+
|
|
235
|
+
:param subscription_id: The subscription_id to select.
|
|
236
|
+
:param vo: The VO of the user issuing command.
|
|
237
|
+
:param session: The database session in use.
|
|
238
|
+
|
|
239
|
+
:raises: SubscriptionNotFound if no Subscription can be found.
|
|
240
|
+
"""
|
|
241
|
+
sub = subscription.get_subscription_by_id(subscription_id, session=session)
|
|
242
|
+
if sub['account'].vo != vo:
|
|
243
|
+
raise AccessDenied('Unable to get subscription')
|
|
244
|
+
|
|
245
|
+
sub['account'] = sub['account'].external
|
|
246
|
+
|
|
247
|
+
if 'filter' in sub:
|
|
248
|
+
fil = loads(sub['filter'])
|
|
249
|
+
if 'account' in fil:
|
|
250
|
+
fil['account'] = [InternalAccount(acc, fromExternal=False).external for acc in fil['account']]
|
|
251
|
+
if 'scope' in fil:
|
|
252
|
+
fil['scope'] = [InternalScope(sco, fromExternal=False).external for sco in fil['scope']]
|
|
253
|
+
sub['filter'] = dumps(fil)
|
|
254
|
+
|
|
255
|
+
return sub
|