Class: Hyrax::TestDataSeeders::CollectionTypeSeeder

Inherits:
Object
  • Object
show all
Defined in:
app/utils/hyrax/test_data_seeders/collection_type_seeder.rb

Overview

This class was created for use in rake tasks and db/seeds.rb. It generates collection types that can be used in release testing. This data can also be helpful for local development testing.

Adding collection types is non-destructive. If a collection type with the title already exists, it will not be replaced.

Class Attribute Summary collapse

Class Method Summary collapse

Class Attribute Details

.loggerObject

Returns the value of attribute logger.



12
13
14
# File 'app/utils/hyrax/test_data_seeders/collection_type_seeder.rb', line 12

def logger
  @logger
end

Class Method Details

.generate_seeds(logger: Logger.new(STDOUT), allow_seeding_in_production: false) ⇒ Object

rubocop:disable Metrics/MethodLength



14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# File 'app/utils/hyrax/test_data_seeders/collection_type_seeder.rb', line 14

def generate_seeds(logger: Logger.new(STDOUT), allow_seeding_in_production: false) # rubocop:disable Metrics/MethodLength
  raise("TestDataSeeders are not for use in production!") if Rails.env.production? && !allow_seeding_in_production
  @logger = logger

  logger.info("Adding collection types...")

  create_collection_type(title: "Nestable only", badge_color: "#282D3C", nestable: true,
                         description: "Collections of this type can be nested.")
  create_collection_type(title: "Brandable only", badge_color: "#ff6600", brandable: true,
                         description: "Collections of this type can have branding images.")
  create_collection_type(title: "Discoverable only", badge_color: "#00A170", discoverable: true,
                         description: "Collections of this type can have visibility settings modified.")
  create_collection_type(title: "Sharable only", badge_color: "#ff0066", sharable: true, share_applies_to_new_works: false,
                         description: "Collections of this type are sharable.  Works " \
                                      "do NOT inherit sharable settings when they are created.")
  create_collection_type(title: "Sharable only (and works)", badge_color: "#0072B5", sharable: true, share_applies_to_new_works: true,
                         description: "Collections of this type are sharable.  Works " \
                                      "inherit sharable settings when they are created.")
  create_collection_type(title: "Single Membership 1", badge_color: "#b34700", allow_multiple_membership: false,
                         description: "This Single Membership 1 collection type restricts collection membership. " \
                                      "Collections of this type do not allow works to live in multiple collections of this type.")
  create_collection_type(title: "Single Membership 2", badge_color: "#926AA6", allow_multiple_membership: false,
                         description: "This Single Membership 2 collection type restricts collection membership. " \
                                      "Collections of this type do not allow works to live in multiple collections of this type.")
end