Class: Hydra::HeadGenerator

Inherits:
Rails::Generators::Base
  • Object
show all
Defined in:
lib/generators/hydra/head_generator.rb

Instance Method Summary collapse

Instance Method Details

#create_configuration_filesObject

Copy all files in templates/config directory to host config



56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# File 'lib/generators/hydra/head_generator.rb', line 56

def create_configuration_files

  # Initializers
  file_path = "config/initializers/hydra_config.rb"
  copy_file "config/initializers/hydra_config.rb", file_path
  unless model_name == 'user'
    insert_into_file file_path, :after => 'Hydra.configure do |config|' do
        "\n  config.user_model = '#{model_name.classify}'"
    end
  end

  # Role Mappings
  copy_file "config/role_map.yml", "config/role_map.yml"

  # CanCan ability.rb
  copy_file "ability.rb", "app/models/ability.rb"

  # Fedora & Solr YAML files
  invoke('active_fedora:config')

  copy_file 'config/blacklight.yml', force: true
end

#create_conneg_configurationObject



79
80
81
82
83
84
85
86
# File 'lib/generators/hydra/head_generator.rb', line 79

def create_conneg_configuration
  file_path = "config/initializers/mime_types.rb"
  append_to_file file_path do
    "Mime::Type.register \"application/n-triples\", :nt\n" + 
    "Mime::Type.register \"application/ld+json\", :jsonld\n" +
    "Mime::Type.register \"text/turtle\", :ttl"
  end
end

#inject_hydra_controller_behaviorObject

Add Hydra to the application controller



49
50
51
52
53
# File 'lib/generators/hydra/head_generator.rb', line 49

def inject_hydra_controller_behavior
  insert_into_file "app/controllers/application_controller.rb", after: "include Blacklight::Controller\n" do
    "  include Hydra::Controller::ControllerBehavior\n"
  end
end

#inject_hydra_user_behaviorObject

Add Hydra behaviors to the user model



99
100
101
102
103
104
105
106
107
108
109
# File 'lib/generators/hydra/head_generator.rb', line 99

def inject_hydra_user_behavior
  file_path = "app/models/#{model_name.underscore}.rb"
  if File.exists?(file_path)
    inject_into_class file_path, model_name.classify do
      "  # Connects this user object to Hydra behaviors.\n" +
      "  include Hydra::User\n\n"
    end
  else
    puts "     \e[31mFailure\e[0m  Hydra requires a user object in order to apply access controls. This generators assumes that the model is defined in the file #{file_path}, which does not exist.  If you used a different name, please re-run the generator and provide that name as an argument. Such as \b  rails -g hydra:head client"
  end
end

#inject_solr_document_connegObject



88
89
90
91
92
93
94
95
96
# File 'lib/generators/hydra/head_generator.rb', line 88

def inject_solr_document_conneg
  file_path = "app/models/solr_document.rb"
  if File.exists?(file_path)
    inject_into_file file_path, :before => /end\Z/ do
      "\n  # Do content negotiation for AF models. \n" + 
      "\n  use_extension( Hydra::ContentNegotiation )\n"
    end
  end
end

#inject_test_frameworkObject

Config Files & Initializers



25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# File 'lib/generators/hydra/head_generator.rb', line 25

def inject_test_framework
  return if options[:'skip-rspec']

  application("\n" <<
    "    config.generators do |g|\n" <<
    "      g.test_framework :rspec, :spec => true\n" <<
    "    end\n\n"
  )

  gem_group :development, :test do
    gem "rspec-rails"
    gem 'jettywrapper'
  end

  Bundler.with_clean_env do
    run "bundle install"
  end
end

#overwrite_catalog_controllerObject



44
45
46
# File 'lib/generators/hydra/head_generator.rb', line 44

def overwrite_catalog_controller
  copy_file "catalog_controller.rb", "app/controllers/catalog_controller.rb"
end