Skip to content

Commit 5c692b7

Browse files
committed
[RAILS] Updated the application templates to support Rails 5 & Elasticsearch 5
This patch adds support for both Rails 5 and Elasticsearch 5 for the application templates in `elasticsearch-rails/lib/rails/templates/`. The main problems on the Elasticsearch side have been in incorrect mapping, which still used the `multi_field` property type. The mapping definition in the `searchable.rb` and `searchable.dsl.rb` has been fixed, along with small fixes in HTML views an the `SearchController`. On the Rails side, the `quiet_assets` gem has been removed, as originally reported by @frontandstart in elastic#634, and various fixes in the HTML views (using `params.permit`, ...) and in the controller test (using the new syntax for passing parameters) have been done. The templates are still compatible with Rails 4. Closes elastic#655
1 parent 69a561b commit 5c692b7

11 files changed

+89
-113
lines changed

elasticsearch-rails/lib/rails/templates/01-basic.rb

+10-8
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,9 @@
4141

4242
# ----- Download Elasticsearch --------------------------------------------------------------------
4343

44-
unless (Net::HTTP.get(URI.parse('http://localhost:9200')) rescue false)
44+
ELASTICSEARCH_URL = ENV.fetch('ELASTICSEARCH_URL', 'http://localhost:9200')
45+
46+
unless (Net::HTTP.get(URI.parse(ELASTICSEARCH_URL)) rescue false)
4547
COMMAND = <<-COMMAND.gsub(/^ /, '')
4648
curl -# -O "http://download.elasticsearch.org/elasticsearch/elasticsearch/elasticsearch-1.0.1.tar.gz"
4749
tar -zxf elasticsearch-1.0.1.tar.gz
@@ -116,6 +118,7 @@
116118
# ----- Auxiliary gems ----------------------------------------------------------------------------
117119

118120
gem 'mocha', group: 'test', require: 'mocha/api'
121+
gem 'rails-controller-testing', group: 'test'
119122

120123
# ----- Remove CoffeeScript, Sass and "all that jazz" ---------------------------------------------
121124

@@ -145,9 +148,8 @@
145148
puts '-'*80, ''; sleep 0.25
146149

147150
environment 'config.assets.logger = false', env: 'development'
148-
gem 'quiet_assets', group: "development"
151+
environment 'config.assets.quiet = true', env: 'development'
149152

150-
git add: "Gemfile*"
151153
git add: "config/"
152154
git commit: "-m 'Disabled asset logging in development'"
153155

@@ -208,7 +210,7 @@ def search
208210
CODE
209211
end
210212

211-
inject_into_file 'app/views/articles/index.html.erb', after: %r{<h1>Listing articles</h1>}i do
213+
inject_into_file 'app/views/articles/index.html.erb', after: %r{<h1>.*Articles</h1>}i do
212214
<<-CODE
213215
214216
@@ -236,21 +238,21 @@ def search
236238
end
237239
CODE
238240

239-
gsub_file "#{Rails::VERSION::STRING > '4' ? 'test/controllers' : 'test/functional'}/articles_controller_test.rb", %r{setup do.*?end}m, <<-CODE
241+
gsub_file "test/controllers/articles_controller_test.rb", %r{setup do.*?end}m, <<-CODE
240242
setup do
241243
@article = articles(:one)
242244
243-
Article.__elasticsearch__.import
245+
Article.__elasticsearch__.import force: true
244246
Article.__elasticsearch__.refresh_index!
245247
end
246248
CODE
247249

248-
inject_into_file "#{Rails::VERSION::STRING > '4' ? 'test/controllers' : 'test/functional'}/articles_controller_test.rb", after: %r{test "should get index" do.*?end}m do
250+
inject_into_file "test/controllers/articles_controller_test.rb", after: %r{test "should get index" do.*?end}m do
249251
<<-CODE
250252
251253
252254
test "should get search results" do
253-
get :search, q: 'mystring'
255+
#{ Rails::VERSION::STRING > '5' ? 'get search_articles_url(q: "mystring")' : 'get :search, q: "mystring"' }
254256
assert_response :success
255257
assert_not_nil assigns(:articles)
256258
assert_equal 2, assigns(:articles).size

elasticsearch-rails/lib/rails/templates/02-pretty.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -154,8 +154,8 @@ def self.search(query)
154154

155155
# ----- Customize the header -----------------------------------------------------------------
156156

157-
gsub_file 'app/views/articles/index.html.erb', %r{<h1>Listing articles</h1>} do |match|
158-
"<h1><%= controller.action_name == 'search' ? 'Searching articles' : 'Listing articles' %></h1>"
157+
gsub_file 'app/views/articles/index.html.erb', %r{<h1>.*Articles</h1>} do |match|
158+
"<h1><%= controller.action_name == 'search' ? 'Search results' : 'Articles' %></h1>"
159159
end
160160

161161
# ----- Customize the results listing -------------------------------------------------------------

elasticsearch-rails/lib/rails/templates/03-expert.rb

+8-28
Original file line numberDiff line numberDiff line change
@@ -77,19 +77,6 @@
7777
git add: "config/"
7878
git commit: "-m 'Added Pry as the console for development'"
7979

80-
# ----- Disable asset logging in development ------------------------------------------------------
81-
82-
puts
83-
say_status "Application", "Disabling asset logging in development...\n", :yellow
84-
puts '-'*80, ''; sleep 0.25
85-
86-
environment 'config.assets.logger = false', env: 'development'
87-
gem 'quiet_assets', group: "development"
88-
89-
git add: "Gemfile*"
90-
git add: "config/"
91-
git commit: "-m 'Disabled asset logging in development'"
92-
9380
# ----- Run bundle install ------------------------------------------------------------------------
9481

9582
run "bundle install"
@@ -173,11 +160,10 @@ class Article < ActiveRecord::Base
173160
end
174161
CODE
175162

176-
gsub_file "#{Rails::VERSION::STRING > '4' ? 'test/models' : 'test/unit' }/article_test.rb", %r{assert_equal 'foo', definition\[:query\]\[:multi_match\]\[:query\]}, "assert_equal 'foo', definition.to_hash[:query][:bool][:should][0][:multi_match][:query]"
163+
gsub_file "test/models/article_test.rb", %r{assert_equal 'foo', definition\[:query\]\[:multi_match\]\[:query\]}, "assert_equal 'foo', definition.to_hash[:query][:bool][:should][0][:multi_match][:query]"
177164

178165
# copy_file File.expand_path('../searchable.rb', __FILE__), 'app/models/concerns/searchable.rb'
179-
get 'https://raw.githubusercontent.com/elastic/elasticsearch-rails/master/elasticsearch-rails/lib/rails/templates/searchable.rb',
180-
'app/models/concerns/searchable.rb'
166+
get 'https://raw.githubusercontent.com/elastic/elasticsearch-rails/master/elasticsearch-rails/lib/rails/templates/searchable.rb', 'app/models/concerns/searchable.rb'
181167

182168
insert_into_file "app/models/article.rb", after: "ActiveRecord::Base" do
183169
<<-CODE
@@ -205,8 +191,7 @@ class Article < ActiveRecord::Base
205191
run "bundle install"
206192

207193
# copy_file File.expand_path('../indexer.rb', __FILE__), 'app/workers/indexer.rb'
208-
get 'https://raw.githubusercontent.com/elastic/elasticsearch-rails/master/elasticsearch-rails/lib/rails/templates/indexer.rb',
209-
'app/workers/indexer.rb'
194+
get 'https://raw.githubusercontent.com/elastic/elasticsearch-rails/master/elasticsearch-rails/lib/rails/templates/indexer.rb', 'app/workers/indexer.rb'
210195

211196
insert_into_file "test/test_helper.rb",
212197
"require 'sidekiq/testing'\n\n",
@@ -241,19 +226,16 @@ def index
241226
end
242227

243228
# copy_file File.expand_path('../search_controller_test.rb', __FILE__), 'test/controllers/search_controller_test.rb'
244-
get 'https://raw.githubusercontent.com/elastic/elasticsearch-rails/master/elasticsearch-rails/lib/rails/templates/search_controller_test.rb',
245-
'test/controllers/search_controller_test.rb'
229+
get 'https://raw.githubusercontent.com/elastic/elasticsearch-rails/master/elasticsearch-rails/lib/rails/templates/search_controller_test.rb', 'test/controllers/search_controller_test.rb'
246230

247231
route "get '/search', to: 'search#index', as: 'search'"
248232
gsub_file 'config/routes.rb', %r{root to: 'articles#index'$}, "root to: 'search#index'"
249233

250234
# copy_file File.expand_path('../index.html.erb', __FILE__), 'app/views/search/index.html.erb'
251-
get 'https://raw.githubusercontent.com/elastic/elasticsearch-rails/master/elasticsearch-rails/lib/rails/templates/index.html.erb',
252-
'app/views/search/index.html.erb'
235+
get 'https://raw.githubusercontent.com/elastic/elasticsearch-rails/master/elasticsearch-rails/lib/rails/templates/index.html.erb', 'app/views/search/index.html.erb'
253236

254237
# copy_file File.expand_path('../search.css', __FILE__), 'app/assets/stylesheets/search.css'
255-
get 'https://raw.githubusercontent.com/elastic/elasticsearch-rails/master/elasticsearch-rails/lib/rails/templates/search.css',
256-
'app/assets/stylesheets/search.css'
238+
get 'https://raw.githubusercontent.com/elastic/elasticsearch-rails/master/elasticsearch-rails/lib/rails/templates/search.css', 'app/assets/stylesheets/search.css'
257239

258240
git add: "app/controllers/ test/controllers/ config/routes.rb"
259241
git add: "app/views/search/ app/assets/stylesheets/search.css"
@@ -304,13 +286,11 @@ def index
304286
puts '-'*80, ''; sleep 0.25
305287

306288
# copy_file File.expand_path('../articles.yml.gz', __FILE__), 'db/articles.yml.gz'
307-
get 'https://raw.githubusercontent.com/elastic/elasticsearch-rails/master/elasticsearch-rails/lib/rails/templates/articles.yml.gz',
308-
'db/articles.yml.gz'
289+
get 'https://raw.githubusercontent.com/elastic/elasticsearch-rails/master/elasticsearch-rails/lib/rails/templates/articles.yml.gz', 'db/articles.yml.gz'
309290

310291
remove_file 'db/seeds.rb'
311292
# copy_file File.expand_path('../seeds.rb', __FILE__), 'db/seeds.rb'
312-
get 'https://raw.githubusercontent.com/elastic/elasticsearch-rails/master/elasticsearch-rails/lib/rails/templates/seeds.rb',
313-
'db/seeds.rb'
293+
get 'https://raw.githubusercontent.com/elastic/elasticsearch-rails/master/elasticsearch-rails/lib/rails/templates/seeds.rb', 'db/seeds.rb'
314294

315295
rake "db:reset"
316296
rake "environment elasticsearch:import:model CLASS='Article' BATCH=100 FORCE=y"

elasticsearch-rails/lib/rails/templates/04-dsl.rb

+5-7
Original file line numberDiff line numberDiff line change
@@ -39,16 +39,14 @@
3939
# ----- Change the search definition implementation and associated views and tests ----------------
4040

4141
# copy_file File.expand_path('../searchable.dsl.rb', __FILE__), 'app/models/concerns/searchable.rb', force: true
42-
get 'https://raw.githubusercontent.com/elastic/elasticsearch-rails/master/elasticsearch-rails/lib/rails/templates/searchable.dsl.rb',
43-
'app/models/concerns/searchable.rb', force: true
42+
get 'https://raw.githubusercontent.com/elastic/elasticsearch-rails/master/elasticsearch-rails/lib/rails/templates/searchable.dsl.rb', 'app/models/concerns/searchable.rb', force: true
4443

4544
# copy_file File.expand_path('../index.html.dsl.erb', __FILE__), 'app/views/search/index.html.erb', force: true
46-
get 'https://raw.githubusercontent.com/elastic/elasticsearch-rails/master/elasticsearch-rails/lib/rails/templates/index.html.dsl.erb',
47-
'app/views/search/index.html.erb', force: true
45+
get 'https://raw.githubusercontent.com/elastic/elasticsearch-rails/master/elasticsearch-rails/lib/rails/templates/index.html.dsl.erb', 'app/views/search/index.html.erb', force: true
4846

4947
gsub_file "test/controllers/search_controller_test.rb", %r{test "should return facets" do.*?end}m, <<-CODE
5048
test "should return aggregations" do
51-
get :index, q: 'one'
49+
get :index, params: { q: 'one' }
5250
assert_response :success
5351
5452
aggregations = assigns(:articles).response.response['aggregations']
@@ -65,7 +63,7 @@
6563

6664
gsub_file "test/controllers/search_controller_test.rb", %r{test "should filter search results and the author and published date facets when user selects a category" do.*?end}m, <<-CODE
6765
test "should filter search results and the author and published date facets when user selects a category" do
68-
get :index, q: 'one', c: 'One'
66+
get :index, params: { q: 'one', c: 'One' }
6967
assert_response :success
7068
7169
assert_equal 2, assigns(:articles).size
@@ -82,7 +80,7 @@
8280

8381
gsub_file "test/controllers/search_controller_test.rb", %r{test "should filter search results and the category and published date facets when user selects a category" do.*?end}m, <<-CODE
8482
test "should filter search results and the category and published date facets when user selects a category" do
85-
get :index, q: 'one', a: 'Mary Smith'
83+
get :index, params: { q: 'one', a: 'Mary Smith' }
8684
assert_response :success
8785
8886
assert_equal 1, assigns(:articles).size

elasticsearch-rails/lib/rails/templates/05-settings-files.rb

-6
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,6 @@
3232
git add: "config/elasticsearch/articles_settings.json"
3333
git commit: "-m 'Create the articles settings file'"
3434

35-
# ----- Temporarily set local repo for testing ----------------------------------------------------
36-
37-
gsub_file "Gemfile",
38-
%r{gem 'elasticsearch-model', git: 'git://github.com/elasticsearch/elasticsearch-rails.git'},
39-
"gem 'elasticsearch-model', path: File.expand_path('../../../../../../elasticsearch-model', __FILE__)"
40-
4135
# ----- Run bundle install ------------------------------------------------------------------------
4236

4337
run "bundle install"

elasticsearch-rails/lib/rails/templates/index.html.dsl.erb

+9-9
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@
3737
sorted by <%= sort.humanize.downcase %> <span class="caret"></span>
3838
</button>
3939
<ul class="dropdown-menu" role="menu">
40-
<li><%= link_to "Sort by published on", search_path(params.except(:controller, :action).merge(s: 'published_on')), class: 'btn-xs' %></li>
41-
<li><%= link_to "Sort by relevancy", search_path(params.except(:controller, :action).merge(s: nil)), class: 'btn-xs' %></li>
40+
<li><%= link_to "Sort by published on", search_path(params.permit(:q, :a, :c, :s, :w, :comments).merge(s: 'published_on')), class: 'btn-xs' %></li>
41+
<li><%= link_to "Sort by relevancy", search_path(params.permit(:q, :a, :c, :s, :w, :comments).merge(s: nil)), class: 'btn-xs' %></li>
4242
</ul>
4343
</div>
4444
</div>
@@ -54,7 +54,7 @@
5454
<% if @articles.response.suggestions.terms.present? %>
5555
Maybe you mean
5656
<%= @articles.response.suggestions.terms.map do |term|
57-
link_to term, search_path(params.except(:controller, :action).merge q: term)
57+
link_to term, search_path(params.permit(:q, :a, :c, :s, :w, :comments).merge q: term)
5858
end.to_sentence(last_word_connector: ' or ').html_safe %>?
5959
<% end %>
6060
</p>
@@ -65,12 +65,12 @@
6565
<% unless @articles.size < 1 %>
6666

6767
<div class="categories panel panel-default">
68-
<p class="panel-heading"><%= link_to 'All Sections &rarr;'.html_safe, search_path(params.except(:controller, :action).merge(c: nil))%></p>
68+
<p class="panel-heading"><%= link_to 'All Sections &rarr;'.html_safe, search_path(params.permit(:q, :a, :c, :s, :w, :comments).merge(c: nil))%></p>
6969

7070
<div class="list-group">
7171
<% @articles.response.response['aggregations']['categories']['categories']['buckets'].each do |c| %>
7272
<%=
73-
link_to search_path(params.except(:controller, :action).merge(c: c['key'])),
73+
link_to search_path(params.permit(:q, :a, :c, :s, :w, :comments).merge(c: c['key'])),
7474
class: "list-group-item#{' active' if params[:c] == c['key']}" do
7575
c['key'].titleize.html_safe + content_tag(:small, c['doc_count'], class: 'badge').html_safe
7676
end
@@ -80,12 +80,12 @@
8080
</div>
8181

8282
<div class="authors panel panel-default">
83-
<p class="panel-heading"><%= link_to 'All Authors &rarr;'.html_safe, search_path(params.except(:controller, :action).merge(a: nil))%></p>
83+
<p class="panel-heading"><%= link_to 'All Authors &rarr;'.html_safe, search_path(params.permit(:q, :a, :c, :s, :w, :comments).merge(a: nil))%></p>
8484

8585
<div class="list-group">
8686
<% @articles.response.response['aggregations']['authors']['authors']['buckets'].each do |a| %>
8787
<%=
88-
link_to search_path(params.except(:controller, :action).merge(a: a['key'])),
88+
link_to search_path(params.permit(:q, :a, :c, :s, :w, :comments).merge(a: a['key'])),
8989
class: "list-group-item#{' active' if params[:a] == a['key']}" do
9090
a['key'].titleize.html_safe + content_tag(:small, a['doc_count'], class: 'badge').html_safe
9191
end
@@ -95,7 +95,7 @@
9595
</div>
9696

9797
<div class="authors panel panel-default">
98-
<p class="panel-heading"><%= link_to 'Any Date &rarr;'.html_safe, search_path(params.except(:controller, :action).merge(w: nil))%></p>
98+
<p class="panel-heading"><%= link_to 'Any Date &rarr;'.html_safe, search_path(params.permit(:q, :a, :c, :s, :w, :comments).merge(w: nil))%></p>
9999

100100
<div class="list-group">
101101
<% @articles.response.response['aggregations']['published']['published']['buckets'].each do |w| %>
@@ -104,7 +104,7 @@
104104
__end = __start.end_of_week
105105
__date = __start.to_date.to_s(:iso)
106106

107-
link_to search_path(params.except(:controller, :action).merge(w: __date)),
107+
link_to search_path(params.permit(:q, :a, :c, :s, :w, :comments).merge(w: __date)),
108108
class: "list-group-item#{' active' if params[:w] == __date}" do
109109
"#{__start.to_date.to_s(:short)} &mdash; #{__end.to_date.to_s(:short)}".html_safe + \
110110
content_tag(:small, w['doc_count'], class: 'badge').html_safe

elasticsearch-rails/lib/rails/templates/index.html.erb

+12-12
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@
3737
sorted by <%= sort.humanize.downcase %> <span class="caret"></span>
3838
</button>
3939
<ul class="dropdown-menu" role="menu">
40-
<li><%= link_to "Sort by published on", search_path(params.except(:controller, :action).merge(s: 'published_on')), class: 'btn-xs' %></li>
41-
<li><%= link_to "Sort by relevancy", search_path(params.except(:controller, :action).merge(s: nil)), class: 'btn-xs' %></li>
40+
<li><%= link_to "Sort by published on", search_path(params.permit(:q, :a, :c, :s, :w, :comments).merge(s: 'published_on')), class: 'btn-xs' %></li>
41+
<li><%= link_to "Sort by relevancy", search_path(params.permit(:q, :a, :c, :s, :w, :comments).merge(s: nil)), class: 'btn-xs' %></li>
4242
</ul>
4343
</div>
4444
</div>
@@ -47,14 +47,14 @@
4747
<hr>
4848
</div>
4949

50-
<% if @articles.size < 1 && @articles.response.suggest.present? %>
50+
<% if @articles.size < 1 && @articles.response.suggestions.present? %>
5151
<div class="col-md-12">
5252
<p class="alert alert-warning">
5353
No documents have been found.
54-
<% if @articles.response.suggest['suggest_title'].present? || @articles.response.suggest['suggest_body'].present? %>
54+
<% if @articles.response.suggestions['suggest_title'].present? || @articles.response.suggestions['suggest_body'].present? %>
5555
Maybe you mean
56-
<%= @articles.response.suggest.map { |k,v| v.first['options'] }.flatten.map {|v| v['text']}.uniq.map do |term|
57-
link_to term, search_path(params.except(:controller, :action).merge q: term)
56+
<%= @articles.response.suggestions.map { |k,v| v.first['options'] }.flatten.map {|v| v['text']}.uniq.map do |term|
57+
link_to term, search_path(params.permit(:q, :a, :c, :s, :w, :comments).merge q: term)
5858
end.to_sentence(last_word_connector: ' or ').html_safe %>?
5959
<% end %>
6060
</p>
@@ -65,12 +65,12 @@
6565
<% unless @articles.size < 1 %>
6666

6767
<div class="categories panel panel-default">
68-
<p class="panel-heading"><%= link_to 'All Sections &rarr;'.html_safe, search_path(params.except(:controller, :action).merge(c: nil))%></p>
68+
<p class="panel-heading"><%= link_to 'All Sections &rarr;'.html_safe, search_path(params.permit(:q, :a, :c, :s, :w, :comments).merge(c: nil))%></p>
6969

7070
<div class="list-group">
7171
<% @articles.response.response['aggregations']['categories']['categories']['buckets'].each do |c| %>
7272
<%=
73-
link_to search_path(params.except(:controller, :action).merge(c: c['key'])),
73+
link_to search_path(params.permit(:q, :a, :c, :s, :w, :comments).merge(c: c['key'])),
7474
class: "list-group-item#{' active' if params[:c] == c['key']}" do
7575
c['key'].titleize.html_safe + content_tag(:small, c['doc_count'], class: 'badge').html_safe
7676
end
@@ -80,12 +80,12 @@
8080
</div>
8181

8282
<div class="authors panel panel-default">
83-
<p class="panel-heading"><%= link_to 'All Authors &rarr;'.html_safe, search_path(params.except(:controller, :action).merge(a: nil))%></p>
83+
<p class="panel-heading"><%= link_to 'All Authors &rarr;'.html_safe, search_path(params.permit(:q, :a, :c, :s, :w, :comments).merge(a: nil))%></p>
8484

8585
<div class="list-group">
8686
<% @articles.response.response['aggregations']['authors']['authors']['buckets'].each do |a| %>
8787
<%=
88-
link_to search_path(params.except(:controller, :action).merge(a: a['key'])),
88+
link_to search_path(params.permit(:q, :a, :c, :s, :w, :comments).merge(a: a['key'])),
8989
class: "list-group-item#{' active' if params[:a] == a['key']}" do
9090
a['key'].titleize.html_safe + content_tag(:small, a['doc_count'], class: 'badge').html_safe
9191
end
@@ -95,7 +95,7 @@
9595
</div>
9696

9797
<div class="authors panel panel-default">
98-
<p class="panel-heading"><%= link_to 'Any Date &rarr;'.html_safe, search_path(params.except(:controller, :action).merge(w: nil))%></p>
98+
<p class="panel-heading"><%= link_to 'Any Date &rarr;'.html_safe, search_path(params.permit(:q, :a, :c, :s, :w, :comments).merge(w: nil))%></p>
9999

100100
<div class="list-group">
101101
<% @articles.response.response['aggregations']['published']['published']['buckets'].each do |w| %>
@@ -104,7 +104,7 @@
104104
__end = __start.end_of_week
105105
__date = __start.to_date.to_s(:iso)
106106

107-
link_to search_path(params.except(:controller, :action).merge(w: __date)),
107+
link_to search_path(params.permit(:q, :a, :c, :s, :w, :comments).merge(w: __date)),
108108
class: "list-group-item#{' active' if params[:w] == __date}" do
109109
"#{__start.to_date.to_s(:short)} &mdash; #{__end.to_date.to_s(:short)}".html_safe + \
110110
content_tag(:small, w['doc_count'], class: 'badge').html_safe

0 commit comments

Comments
 (0)