Module: Hydra::EmbargoService
- Defined in:
- app/services/hydra/embargo_service.rb
Class Method Summary collapse
-
.assets_under_embargo ⇒ Object
Returns all assets with embargo release date set (assumes that when lease visibility is applied to assets whose leases have expired, the lease expiration date will be removed from its metadata).
-
.assets_with_deactivated_embargoes ⇒ Object
Returns all assets that have had embargoes deactivated in the past.
-
.assets_with_expired_embargoes ⇒ Object
Returns all assets with embargo release date set to a date in the past.
Class Method Details
.assets_under_embargo ⇒ Object
Returns all assets with embargo release date set
(assumes that when lease visibility is applied to assets
whose leases have expired, the lease expiration date will be removed from its metadata)
16 17 18 |
# File 'app/services/hydra/embargo_service.rb', line 16 def ActiveFedora::Base.where("#{Hydra.config...release_date}:[* TO *]") end |
.assets_with_deactivated_embargoes ⇒ Object
Returns all assets that have had embargoes deactivated in the past.
21 22 23 |
# File 'app/services/hydra/embargo_service.rb', line 21 def ActiveFedora::Base.where("#{Hydra.config...history}:*") end |
.assets_with_expired_embargoes ⇒ Object
Returns all assets with embargo release date set to a date in the past
9 10 11 |
# File 'app/services/hydra/embargo_service.rb', line 9 def ActiveFedora::Base.where("#{Hydra.config...release_date}:[* TO NOW]") end |