Sha256: 3b9a91dac415be2d100689084d32104a30fb9271fe9503fb73749cbfd064bd10

Contents?: true

Size: 1.35 KB

Versions: 25

Compression:

Stored size: 1.35 KB

Contents

# frozen_string_literal: true
module Hyrax
  class CollectionTypeParticipant < ActiveRecord::Base
    self.table_name = 'collection_type_participants'
    belongs_to :hyrax_collection_type, class_name: 'CollectionType'

    MANAGE_ACCESS = 'manage'
    CREATE_ACCESS = 'create'

    GROUP_TYPE = 'group'
    USER_TYPE = 'user'

    validates :agent_id, presence: true
    validates :agent_type, presence: true, inclusion: { in: [GROUP_TYPE, USER_TYPE],
                                                        message: "%<value>s is not a valid agent type.  Accepts: #{GROUP_TYPE}, #{USER_TYPE}" }
    validates :access, presence: true, inclusion: { in: [MANAGE_ACCESS, CREATE_ACCESS],
                                                    message: "%<value>s is not a valid access.  Accepts: #{MANAGE_ACCESS}, #{CREATE_ACCESS}" }
    validates :hyrax_collection_type_id, presence: true

    def manager?
      access == MANAGE_ACCESS
    end

    def creator?
      access == CREATE_ACCESS
    end

    def label
      return agent_id unless agent_type == GROUP_TYPE
      case agent_id
      when ::Ability.registered_group_name
        I18n.t('hyrax.admin.admin_sets.form_participant_table.registered_users')
      when ::Ability.admin_group_name
        I18n.t('hyrax.admin.admin_sets.form_participant_table.admin_users')
      else
        agent_id
      end
    end
  end
end

Version data entries

25 entries across 25 versions & 1 rubygems

Version Path
hyrax-5.0.1 app/models/hyrax/collection_type_participant.rb
hyrax-5.0.0 app/models/hyrax/collection_type_participant.rb
hyrax-5.0.0.rc3 app/models/hyrax/collection_type_participant.rb
hyrax-5.0.0.rc2 app/models/hyrax/collection_type_participant.rb
hyrax-5.0.0.rc1 app/models/hyrax/collection_type_participant.rb
hyrax-3.6.0 app/models/hyrax/collection_type_participant.rb
hyrax-4.0.0 app/models/hyrax/collection_type_participant.rb
hyrax-4.0.0.rc3 app/models/hyrax/collection_type_participant.rb
hyrax-4.0.0.rc2 app/models/hyrax/collection_type_participant.rb
hyrax-4.0.0.rc1 app/models/hyrax/collection_type_participant.rb
hyrax-3.5.0 app/models/hyrax/collection_type_participant.rb
hyrax-4.0.0.beta2 app/models/hyrax/collection_type_participant.rb
hyrax-3.4.2 app/models/hyrax/collection_type_participant.rb
hyrax-4.0.0.beta1 app/models/hyrax/collection_type_participant.rb
hyrax-3.4.1 app/models/hyrax/collection_type_participant.rb
hyrax-3.4.0 app/models/hyrax/collection_type_participant.rb
hyrax-3.3.0 app/models/hyrax/collection_type_participant.rb
hyrax-3.2.0 app/models/hyrax/collection_type_participant.rb
hyrax-3.1.0 app/models/hyrax/collection_type_participant.rb
hyrax-3.0.2 app/models/hyrax/collection_type_participant.rb