Sha256: 0e2efd7cbdd4200bbf2c0c05a4b2cb38a7caa6b2aedb7cfe7f0c319b10a65eb3

Contents?: true

Size: 1.37 KB

Versions: 9

Compression:

Stored size: 1.37 KB

Contents

# Copyright © 2012 The Pennsylvania State University
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

require 'hydra/model_methods'
module Sufia
  module ModelMethods
    extend ActiveSupport::Concern
    include Hydra::ModelMethods

    # OVERRIDE to support Hydra::Datastream::Properties which does not
    #   respond to :depositor_values but :depositor
    # Adds metadata about the depositor to the asset
    # Most important behavior: if the asset has a rightsMetadata datastream, this method will add +depositor_id+ to its individual edit permissions.

    def apply_depositor_metadata(depositor_id)
      rights_ds = self.datastreams["rightsMetadata"]
      prop_ds = self.datastreams["properties"]

      rights_ds.update_indexed_attributes([:edit_access, :person]=>depositor_id) unless rights_ds.nil?
      prop_ds.depositor = depositor_id unless prop_ds.nil?

      return true
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
sufia-0.0.7 lib/sufia/model_methods.rb
sufia-0.0.6 lib/sufia/model_methods.rb
sufia-0.0.5 lib/sufia/model_methods.rb
sufia-0.0.4 lib/sufia/model_methods.rb
sufia-0.0.3 lib/sufia/model_methods.rb
sufia-0.0.2 lib/sufia/model_methods.rb
sufia-0.0.1 lib/sufia/model_methods.rb
sufia-0.0.1.pre2 lib/sufia/model_methods.rb
sufia-0.0.1.pre1 lib/sufia/model_methods.rb