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



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

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



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

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



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

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



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

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



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

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
# 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"
  end

  Bundler.with_clean_env do
    run "bundle install"
  end
end

#overwrite_catalog_controllerObject



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

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