Class: Hyrax::Install

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

Instance Method Summary collapse

Instance Method Details

#catalog_controllerObject



69
70
71
# File 'lib/generators/hyrax/install_generator.rb', line 69

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

#configure_usage_statsObject



99
100
101
# File 'lib/generators/hyrax/install_generator.rb', line 99

def configure_usage_stats
  copy_file 'config/analytics.yml', 'config/analytics.yml'
end

#copy_helperObject



124
125
126
# File 'lib/generators/hyrax/install_generator.rb', line 124

def copy_helper
  copy_file 'hyrax_helper.rb', 'app/helpers/hyrax_helper.rb'
end

#create_workflowObject



86
87
88
89
# File 'lib/generators/hyrax/install_generator.rb', line 86

def create_workflow
  template('workflow.json.erb', "config/workflows/default_workflow.json")
  template('mediated_deposit_workflow.json.erb', "config/workflows/mediated_deposit_workflow.json")
end

#datatablesObject



149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
# File 'lib/generators/hyrax/install_generator.rb', line 149

def datatables
  javascript_manifest = 'app/assets/javascripts/application.js'
  # Generator is broken https://github.com/rweng/jquery-datatables-rails/issues/225
  # generate 'jquery:datatables:install bootstrap3'
  insert_into_file javascript_manifest, after: /jquery.?\n/ do
    "//= require jquery_ujs\n" \
    "//= require dataTables/jquery.dataTables\n" \
    "//= require dataTables/bootstrap/3/jquery.dataTables.bootstrap\n"
  end

  # This is only necessary for Rails 5.1 and hopefully is temporary.
  # There was some trouble getting the file-manager javascript (remote forms) to work well
  # with rails-ujs. Note jquery_ujs was added to the block above (after jQuery)
  gsub_file javascript_manifest, 'require rails-ujs', ''

  insert_into_file 'app/assets/stylesheets/application.css', before: ' *= require_self' do
    " *= require dataTables/bootstrap/3/jquery.dataTables.bootstrap\n"
  end
end

#inject_abilityObject

we’re going to inject this into the local app, so that it’s easy to disable.



104
105
106
107
108
109
# File 'lib/generators/hyrax/install_generator.rb', line 104

def inject_ability
  inject_into_file 'app/models/ability.rb', after: /Hydra::Ability\s*\n/ do
    "  include Hyrax::Ability\n"\
    "  self.ability_logic += [:everyone_can_create_curation_concerns]\n\n"
  end
end

#inject_hyrax_application_controller_behaviorObject

Add behaviors to the application controller



112
113
114
115
116
117
118
119
120
121
122
# File 'lib/generators/hyrax/install_generator.rb', line 112

def inject_hyrax_application_controller_behavior
  file_path = "app/controllers/application_controller.rb"
  if File.exist?(file_path)
    insert_into_file file_path, after: /Hydra::Controller::ControllerBehavior\s*\n/ do
      "\n  # Adds Hyrax behaviors into the application controller" \
      "\n  include Hyrax::Controller\n"
    end
  else
    puts "     \e[31mFailure\e[0m  Could not find #{file_path}.  To add Hyrax behaviors to your Controllers, you must include the Hyrax::Controller module in the Controller class definition."
  end
end

#inject_routesObject

The engine routes have to come after the devise routes so that /users/sign_in will work



56
57
58
59
60
61
62
63
64
65
66
67
# File 'lib/generators/hyrax/install_generator.rb', line 56

def inject_routes
  # Remove root route that was added by blacklight generator
  gsub_file 'config/routes.rb', /root (:to =>|to:) "catalog#index"/, ''

  inject_into_file 'config/routes.rb', after: /devise_for :users\s*\n/ do
    "  mount Qa::Engine => '/authorities'\n"\
    "  mount Hyrax::Engine, at: '/'\n"\
    "  resources :welcome, only: 'index'\n"\
    "  root 'hyrax/homepage#index'\n"\
    "  curation_concerns_basic_routes\n"\
  end
end

#inject_skip_blacklilght_flash_discardingObject

Blacklight::Controller will by default add an after_action filter to discard all flash messages on xhr requests. This has caused problems when we perform a post-redirect-get cycle using xhr and turbolinks. This injector will modify the generated ApplicationController to skip this action. TODO: This may be removed in Blacklight 7.x, so we’ll likely need to remove this after updating.



181
182
183
184
185
# File 'lib/generators/hyrax/install_generator.rb', line 181

def inject_skip_blacklilght_flash_discarding
  insert_into_file "app/controllers/application_controller.rb", after: "include Blacklight::Controller\n" do
    "  skip_after_action :discard_flash_if_xhr\n"
  end
end

#inject_solr_document_behaviorObject

Add behaviors to the SolrDocument model



74
75
76
77
78
79
80
81
82
83
84
# File 'lib/generators/hyrax/install_generator.rb', line 74

def inject_solr_document_behavior
  file_path = 'app/models/solr_document.rb'
  if File.exist?(file_path)
    inject_into_file file_path, after: /include Blacklight::Solr::Document.*$/ do
      "\n  # Adds Hyrax behaviors to the SolrDocument.\n" \
        "  include Hyrax::SolrDocumentBehavior\n"
    end
  else
    puts "     \e[31mFailure\e[0m  Hyrax requires a SolrDocument object. This generators assumes that the model is defined in the file #{file_path}, which does not exist."
  end
end

#insert_builderObject



49
50
51
52
53
# File 'lib/generators/hyrax/install_generator.rb', line 49

def insert_builder
  insert_into_file 'app/models/search_builder.rb', after: /include Hydra::AccessControlsEnforcement/ do
    "\n  include Hyrax::SearchFilters\n"
  end
end

#install_assetsObject



132
133
134
# File 'lib/generators/hyrax/install_generator.rb', line 132

def install_assets
  generate "hyrax:assets"
end


142
143
144
145
146
147
# File 'lib/generators/hyrax/install_generator.rb', line 142

def install_blacklight_gallery
  generate "blacklight_gallery:install"
  # This was pulling in an extra copy of bootstrap, so we added the needed
  # includes to hyrax.scss
  remove_file 'app/assets/stylesheets/blacklight_gallery.css.scss'
end

#install_configObject



91
92
93
# File 'lib/generators/hyrax/install_generator.rb', line 91

def install_config
  generate "hyrax:config"
end

#install_mailboxerObject



95
96
97
# File 'lib/generators/hyrax/install_generator.rb', line 95

def install_mailboxer
  generate "mailboxer:install"
end

#noid_rails_database_minter_initializeObject



169
170
171
# File 'lib/generators/hyrax/install_generator.rb', line 169

def noid_rails_database_minter_initialize
  generate 'noid:rails:install'
end

#qa_tablesObject



128
129
130
# File 'lib/generators/hyrax/install_generator.rb', line 128

def qa_tables
  generate 'qa:local:tables'
end

#replace_blacklight_layoutObject



44
45
46
47
# File 'lib/generators/hyrax/install_generator.rb', line 44

def replace_blacklight_layout
  gsub_file 'app/controllers/application_controller.rb', /layout 'blacklight'/,
            "include Hyrax::ThemedLayoutController\n  with_themed_layout '1_column'\n"
end

#riiif_image_serverObject



173
174
175
# File 'lib/generators/hyrax/install_generator.rb', line 173

def riiif_image_server
  generate 'hyrax:riiif' unless options[:'skip-riiif']
end

#run_required_generatorsObject



35
36
37
38
39
40
41
42
# File 'lib/generators/hyrax/install_generator.rb', line 35

def run_required_generators
  say_status('info', '[Hyrax] GENERATING BLACKLIGHT', :blue)
  generate 'blacklight:install --devise'
  say_status('info', '[Hyrax] GENERATING HYDRA-HEAD', :blue)
  generate 'hydra:head -f'
  generate "hyrax:models#{options[:force] ? ' -f' : ''}"
  generate 'browse_everything:config'
end

#use_browser_validationsObject



136
137
138
139
140
# File 'lib/generators/hyrax/install_generator.rb', line 136

def use_browser_validations
  gsub_file 'config/initializers/simple_form.rb',
            /browser_validations = false/,
            'browser_validations = true'
end