Module: Hyrax::CollectionBehavior

Extended by:
ActiveSupport::Concern
Includes:
Hydra::AccessControls::Permissions, Hydra::AccessControls::WithAccessRight, Hydra::WithDepositor, Hydra::Works::CollectionBehavior, CollectionNesting, CoreMetadata, HasRepresentative, HumanReadableType, Noid, Permissions
Included in:
Collection
Defined in:
app/models/concerns/hyrax/collection_behavior.rb

Defined Under Namespace

Modules: ClassMethods

Instance Method Summary collapse

Methods included from CollectionNesting

#find_children_of, #reindex_extent, #reindex_extent=, #update_index, #use_nested_reindexing?

Methods included from Permissions::Readable

#private?, #public?, #registered?

Methods included from Permissions::Writable

#paranoid_permissions

Methods included from HumanReadableType

#human_readable_type, #to_solr

Methods included from Noid

#assign_id

Instance Method Details

#add_member_objects(new_member_ids) ⇒ Object

Add member objects by adding this collection to the objects’ member_of_collection association.



59
60
61
62
63
64
65
66
67
68
69
70
71
# File 'app/models/concerns/hyrax/collection_behavior.rb', line 59

def add_member_objects(new_member_ids)
  Array(new_member_ids).collect do |member_id|
    member = ActiveFedora::Base.find(member_id)
    message = Hyrax::MultipleMembershipChecker.new(item: member).check(collection_ids: id, include_current_members: true)
    if message
      member.errors.add(:collections, message)
    else
      member.member_of_collections << self
      member.save!
    end
    member
  end
end

#add_members(new_member_ids) ⇒ Object

Add members using the members association.



53
54
55
56
# File 'app/models/concerns/hyrax/collection_behavior.rb', line 53

def add_members(new_member_ids)
  return if new_member_ids.blank?
  members << ActiveFedora::Base.find(new_member_ids)
end

#bytesFixnum

Deprecated.

to be removed in 4.0.0; this feature was replaced with a hard-coded null implementation

Returns 0.

Returns:

  • (Fixnum)

    0



99
100
101
102
103
104
105
# File 'app/models/concerns/hyrax/collection_behavior.rb', line 99

def bytes
  Deprecation.warn('#bytes has been deprecated for removal in Hyrax 4.0.0; ' \
                   'The implementation of the indexed Collection size ' \
                   'feature is extremely inefficient, so it has been removed. ' \
                   'This method now returns a hard-coded `0` for compatibility.')
  0
end

#collection_typeObject

Get the collection_type when accessed



44
45
46
# File 'app/models/concerns/hyrax/collection_behavior.rb', line 44

def collection_type
  @collection_type ||= Hyrax::CollectionType.find_by_gid!(collection_type_gid)
end

#collection_type=(new_collection_type) ⇒ Object



48
49
50
# File 'app/models/concerns/hyrax/collection_behavior.rb', line 48

def collection_type=(new_collection_type)
  self.collection_type_gid = new_collection_type.gid
end

#member_objectsObject



73
74
75
# File 'app/models/concerns/hyrax/collection_behavior.rb', line 73

def member_objects
  ActiveFedora::Base.where("member_of_collection_ids_ssim:#{id}")
end

#permission_templateHyrax::PermissionTemplate

Retrieve the permission template for this collection.

Returns:

Raises:

  • (ActiveRecord::RecordNotFound)


111
112
113
# File 'app/models/concerns/hyrax/collection_behavior.rb', line 111

def permission_template
  Hyrax::PermissionTemplate.find_by!(source_id: id)
end

#reset_access_controls!Object

Calculate and update who should have read/edit access to the collections based on who has access in PermissionTemplateAccess



117
118
119
120
121
122
# File 'app/models/concerns/hyrax/collection_behavior.rb', line 117

def reset_access_controls!
  update!(edit_users: permission_template_edit_users,
          edit_groups: permission_template_edit_groups,
          read_users: permission_template_read_users,
          read_groups: (permission_template_read_groups + visibility_group).uniq)
end

#to_sObject



77
78
79
# File 'app/models/concerns/hyrax/collection_behavior.rb', line 77

def to_s
  title.present? ? title.join(' | ') : 'No Title'
end