Skip to content

Commit a22540f

Browse files
committed
Fix rubocop style issues
1 parent 59499e2 commit a22540f

18 files changed

+131
-81
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,4 @@ tmp
2020
*.o
2121
*.a
2222
mkmf.log
23+
.DS_Store

.rubocop.yml

+54
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
Documentation:
2+
Enabled: true
3+
4+
AllCops:
5+
Include:
6+
- "**/Rakefile"
7+
- "**/config.ru"
8+
Exclude:
9+
- "db/**/*"
10+
- "tmp/**/*"
11+
- "vendor/**/*"
12+
- "bin/**/*"
13+
- "log/**/*"
14+
RunRailsCops: true
15+
16+
Documentation:
17+
Enabled: false
18+
Style/LineLength:
19+
Max: 145
20+
Metrics/AbcSize:
21+
Max: 30
22+
Metrics/BlockNesting:
23+
Max: 3
24+
Metrics/ClassLength:
25+
CountComments: false # count full line comments?
26+
Max: 100
27+
Metrics/CyclomaticComplexity:
28+
Max: 6
29+
Metrics/LineLength:
30+
Max: 80
31+
AllowURI: true
32+
URISchemes:
33+
- http
34+
- https
35+
36+
Style/ClassAndModuleChildren:
37+
Enabled: false
38+
39+
Metrics/MethodLength:
40+
CountComments: false # count full line comments?
41+
Max: 13
42+
43+
Metrics/ParameterLists:
44+
Max: 5
45+
CountKeywordArgs: true
46+
47+
Metrics/PerceivedComplexity:
48+
Max: 7
49+
50+
StringLiterals:
51+
EnforcedStyle: double_quotes
52+
53+
Style/ClassAndModuleChildren:
54+
EnforcedStyle: nested

Gemfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
source 'https://rubygems.org'
1+
source "https://rubygems.org"
22

3-
# Gem's dependencies are specified in `wp-connector.gemspec`.
3+
# Gem"s dependencies are specified in `wp-connector.gemspec`.
44
gemspec

README.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -10,33 +10,33 @@ This library is part of the [**WP on Rails**](https://github.com/wponrails) proj
1010

1111
To prepare a WP installation to be used in a **WP on Rails** architecture the [**wp-relinquish**](https://github.com/wponrails/wp-relinquish) plugin is provided. It provides a means to configure WP actions to send notifications as webhook calls to a Rails application equipped with **wp-connector**.
1212

13-
When using **WP on Rails** the content's *master data* resides in WP's database, as that's where is it created and modified. The Rails application that is connected to WP stores merely a copy of the data, a cache, on the basis of which the public requests are served.
13+
When using **WP on Rails** the content"s *master data* resides in WP"s database, as that"s where is it created and modified. The Rails application that is connected to WP stores merely a copy of the data, a cache, on the basis of which the public requests are served.
1414

1515
The main reasons for not using WP to serve public web requests:
1616

1717
* **Security** — The internet is a dangerous place and WordPress has proven to be a popular target for malicious hackers. By not serving public requests from WP, but only the admin interface, the attack surface is significantly reduced.
1818
* **Performance** — Performance tuning WP can be difficult, especially when a generic caching-proxy (such as Varnish) is not viable due to dynamic content such as ads or personalization. Application frameworks provide means for fine-grained caching strategies that are needed to serve high-traffic websites containing dynamic content.
1919
* **Cost (TCO) of customizations** — Customizing WP, and maintaining those customizations, is costly (laborious) and risky (error prone) compared to building custom functionality on top of an application framework (which is specifically designed for that purpose).
2020
* **Upgrade path** — Keeping a customized WP installation up-to-date can be a pain, and WP-updates come ever more often. When WP is not used to serve public requests and customizations are not built into WP most of this pain avoided.
21-
* **Modern browser interfaces** — The new bread of JavaScript UI frameworks (such as Facebook's [React](http://facebook.github.io/react) and Google's [AngularJS](https://angularjs.org)) have features like "isomorphism" (allowing JS views to be pre-rendered on the server) and "two-way data-binding". These features expect certain server-side behavior and usually consume JSON data instead of HTML. The Rails community provides many tools to facilitate these new UI libraries from the server-side.
21+
* **Modern browser interfaces** — The new bread of JavaScript UI frameworks (such as Facebook"s [React](http://facebook.github.io/react) and Google"s [AngularJS](https://angularjs.org)) have features like "isomorphism" (allowing JS views to be pre-rendered on the server) and "two-way data-binding". These features expect certain server-side behavior and usually consume JSON data instead of HTML. The Rails community provides many tools to facilitate these new UI libraries from the server-side.
2222

2323

2424
## How it works
2525

2626
After the Rails application receives the webhook call from WP, simply notifying that some content is created or modified, a delayed job to fetch the content is scheduled using [Sidekiq](http://sidekiq.org). The content is not fetched immediately, but scheduled for a fraction of a second later, the reason for this is twofold:
2727

2828
1. The webhook call is synchronous, responding as soon as possible is needed to keep the admin interface of WP responsive.
29-
2. It is not guaranteed that all WP's processing is complete (some actions may still fire) by the time the webhook call is made.
29+
2. It is not guaranteed that all WP"s processing is complete (some actions may still fire) by the time the webhook call is made.
3030

3131
The delayed job fetches the relevant content from WP using the [WP-REST-API](http://wp-api.org) (this can be one or more requests), then possibly transforms and/or enriches the data, and finally stores it using a regular ActiveRecord model. The logic for the fetch and transform/enrich steps is simply part of the ActiveRecord model definition.
3232

3333

3434
## Installation
3535

36-
Add this line to your Rails application's `Gemfile`:
36+
Add this line to your Rails application"s `Gemfile`:
3737

3838
```ruby
39-
gem 'wp-connector', :github => 'wponrails/wp-connector'
39+
gem "wp-connector", :github => "wponrails/wp-connector"
4040
```
4141

4242
Then execute `bundle install`.
@@ -52,7 +52,7 @@ Rails.configuration.x.wordpress_url = "http://wordpress-site.dev/"
5252
```
5353
Here `wordpress-site.dev` is the domain for your Wordpress site.
5454

55-
This configures some models, `['articles', 'news_articles', 'pages']`, for paginated requests to the WP-REST API.
55+
This configures some models, `["articles", "news_articles", "pages"]`, for paginated requests to the WP-REST API.
5656
```ruby
5757
Rails.configuration.x.wp_api_paginated_models = %w(articles news_articles pages)
5858
```
@@ -67,8 +67,8 @@ Installing the routes for the webhook endpoint (in `config/routes.rb` of your Ra
6767

6868
```ruby
6969
# wp-connector endpoints
70-
post 'wp-connector/:model', to: 'wp_connector#model_save'
71-
delete 'wp-connector/:model/:id', to: 'wp_connector#model_delete'
70+
post "wp-connector/:model", to: "wp_connector#model_save"
71+
delete "wp-connector/:model/:id", to: "wp_connector#model_delete"
7272
```
7373

7474
Create a `WpConnectorController` class (in `app/controllers/wp_connector_controller.rb`) that specifies a `webhook` action. For example for the `Post` type:
@@ -176,7 +176,7 @@ class Author < ActiveRecord::Base
176176
# ... snip ...
177177

178178
def self.wp_type
179-
'wp_post_type_name'
179+
"wp_post_type_name"
180180
end
181181

182182
# ... snap ...
@@ -230,7 +230,7 @@ You know the drill :)
230230

231231
1. Fork it.
232232
2. Create your feature branch (`git checkout -b my-new-feature`).
233-
3. Commit your changes (`git commit -am 'Add some feature'`).
233+
3. Commit your changes (`git commit -am "Add some feature"`).
234234
4. Push to the branch (`git push origin my-new-feature`).
235235
5. Submit a "Pull Request".
236236

Rakefile

-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
11
require "bundler/gem_tasks"
2-

app/controllers/concerns/wp_preview_tools.rb

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ def validate_preview_token(wp_post_model, &block)
1313
return if wp_post_model.status == "publish"
1414

1515
unless params[:token] == token(wp_post_model)
16-
head :unauthorized and return unless block_given?
16+
head :unauthorized && return unless block_given?
1717

1818
block.call
1919
end
2020

2121
# return true for clearer debugging
22-
return true
22+
true
2323
end
2424

2525
#
@@ -35,7 +35,7 @@ def token(wp_post_model)
3535
# This to avoid NotFound errors due to the delaying of WP API calls.
3636
#
3737
def retry_when_preview(retrying = false, &block)
38-
raise "retry_when_preview requires a block" unless block_given?
38+
fail "retry_when_preview requires a block" unless block_given?
3939
return block.call
4040
rescue ActiveRecord::ActiveRecordError => e
4141
raise e if !params[:preview] || retrying

app/controllers/concerns/wp_webhook_endpoint.rb

+4-4
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def wp_id_from_params
2424
# Convenience method for finding the `preview` of an incoming POST request.
2525
#
2626
def preview_from_params
27-
# some systems send in a string '1' or '0' for booleans. Map it to boolean:
27+
# some systems send in a string "1" or "0" for booleans. Map it to boolean:
2828
to_bool params[:preview]
2929
end
3030

@@ -33,9 +33,9 @@ def preview_from_params
3333
#
3434
def render_json_200_or_404(success)
3535
if success
36-
render json: {status: 200, message: 'OK'}
36+
render json: { status: 200, message: "OK" }
3737
else
38-
render json: {status: 404, message: 'Not found'}
38+
render json: { status: 404, message: "Not found" }
3939
end
4040
end
4141

@@ -49,6 +49,6 @@ def require_valid_api_key
4949
def to_bool(string)
5050
return true if string == true || string =~ (/^(true|t|yes|y|1)$/i)
5151
return false if string == false || string.blank? || string =~ (/^(false|f|no|n|0)$/i)
52-
raise ArgumentError.new("invalid value for Boolean: \"#{string}\"")
52+
fail(ArgumentError, "invalid value for Boolean: \"#{string}\"")
5353
end
5454
end

app/models/concerns/wp_cache.rb

+29-32
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
require 'faraday'
1+
require "faraday"
22

33
module WpCache
44
extend ActiveSupport::Concern
55

66
module ClassMethods
7-
7+
attr_reader :classes
88
#
99
# Collect all class names in a class variable so that it can be accessed by the Rake task.
1010
#
@@ -13,17 +13,10 @@ def included(base)
1313
@classes << base.name
1414
end
1515

16-
#
17-
# Returns an array WpCache classes.
18-
#
19-
def classes
20-
@classes
21-
end
22-
2316
#
2417
# Schedules a `create_or_update` call to itself.
2518
#
26-
# TODO (cies): add a configurable amount of delay, defaulting to 0.5secs
19+
# TODO: (cies) add a configurable amount of delay, defaulting to 0.5secs
2720
def schedule_create_or_update(wp_id, preview = false, request = nil)
2821
extra_info = request ? " after #{request.fullpath} -- #{request.body.read}" : ""
2922
Rails.logger.info("SCHEDULED by #{self.class}" + extra_info)
@@ -35,12 +28,12 @@ def schedule_create_or_update(wp_id, preview = false, request = nil)
3528
# and passes it the content by the `update_wp_cache` instance method.
3629
#
3730
def create_or_update(wp_type, wp_id, preview = false)
38-
return unless wp_id.is_a? Fixnum or wp_id.is_a? String
31+
return unless wp_id.is_a?(Fixnum) || wp_id.is_a?(String)
3932
maybe_preview_segment = (preview ? "preview/" : "")
4033
wp_json = get_from_wp_api "#{ wp_type }/#{ maybe_preview_segment }#{ wp_id }"
4134
# WP API will return a code if the route is incorrect or
4235
# the specified entry is none existant. If so return early.
43-
return if wp_json[0] and invalid_api_responses.include? wp_json[0]["code"]
36+
return if wp_json[0] && invalid_api_responses.include?(wp_json[0]["code"])
4437
where(wp_id: wp_id).first_or_initialize.update_wp_cache(wp_json)
4538
end
4639

@@ -58,34 +51,38 @@ def create_or_update_all
5851
# the `update_wp_cache` instance method.
5952
# Removes records with unknown IDs.
6053
#
61-
# TODO (dunyakirkali) clean up
54+
# TODO: (dunyakirkali) clean up
6255
def create_or_update_all_paginated
6356
page = 0
6457
ids = []
65-
max_page = (ENV['MAX_PAGE'].to_i == 0 ? 999 : ENV['MAX_PAGE'].to_i)
66-
while page < max_page do
58+
max_page = (ENV["MAX_PAGE"].to_i == 0 ? 999 : ENV["MAX_PAGE"].to_i)
59+
while page < max_page
6760
Rails.logger.info " page #{page}"
6861
wp_json = get_from_wp_api(wp_type, page)
6962
break if wp_json.empty?
70-
ids << wp_json.map do |json|
71-
wp_id = json['ID']
72-
where(wp_id: wp_id).first_or_initialize.update_wp_cache(json)
73-
wp_id
74-
end
75-
page = page + 1
63+
ids << map_ids(wp_json)
64+
page += 1
7665
end
77-
where('wp_id NOT IN (?)', ids.flatten).destroy_all unless ids.empty?
66+
where("wp_id NOT IN (?)", ids.flatten).destroy_all unless ids.empty?
7867
end
7968

80-
# TODO (dunyakirkali) doc
69+
def map_ids
70+
wp_json.map do |json|
71+
wp_id = json["ID"]
72+
where(wp_id: wp_id).first_or_initialize.update_wp_cache(json)
73+
wp_id
74+
end
75+
end
76+
77+
# TODO: (dunyakirkali) doc
8178
def create_or_update_all_non_paginated
8279
wp_json = get_from_wp_api(wp_type)
8380
ids = wp_json.map do |json|
84-
wp_id = json['ID']
81+
wp_id = json["ID"]
8582
where(wp_id: wp_id).first_or_initialize.update_wp_cache(json)
8683
wp_id
8784
end
88-
where('wp_id NOT IN (?)', ids).destroy_all unless ids.empty?
85+
where("wp_id NOT IN (?)", ids).destroy_all unless ids.empty?
8986
end
9087

9188
#
@@ -102,15 +99,15 @@ def purge(wp_id)
10299
#
103100
# Convenience method for calling the WP API.
104101
#
105-
# TODO (cies): re-raise any connection errors with more intuitive names
102+
# TODO: (cies) re-raise any connection errors with more intuitive names
106103
def get_from_wp_api(route, page = -1)
107-
# TODO (dunyakirkali) pass filter through args to get_from_wp_api
108-
posts_per_page = (ENV['PER_PAGE'].to_i == -1 ? -1 : ENV['PER_PAGE'].to_i)
104+
# TODO: (dunyakirkali) pass filter through args to get_from_wp_api
105+
posts_per_page = (ENV["PER_PAGE"].to_i == -1 ? -1 : ENV["PER_PAGE"].to_i)
109106
base = Rails.configuration.x.wordpress_url
110-
unless paginated_models.include?(wp_type)
111-
url = "#{base}?json_route=/#{route}&filter[posts_per_page]=-1"
112-
else
107+
if paginated_models.include?(wp_type)
113108
url = "#{base}?json_route=/#{route}&filter[posts_per_page]=#{posts_per_page}&page=#{page}"
109+
else
110+
url = "#{base}?json_route=/#{route}&filter[posts_per_page]=-1"
114111
end
115112
Rails.logger.info url
116113
response = Faraday.get url
@@ -136,7 +133,7 @@ def paginated_models
136133
#
137134
# List of invalid api responses
138135
#
139-
# TODO (cies): refactor to WpCache::WP_API_ERROR_CODES
136+
# TODO: (cies) refactor to WpCache::WP_API_ERROR_CODES
140137
def invalid_api_responses
141138
%w( json_no_route json_post_invalid_type json_user_cannot_read )
142139
end

app/models/concerns/wp_menu.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def update_menu(json)
1414

1515
module ClassMethods
1616
def wp_type
17-
'menus'
17+
"menus"
1818
end
1919
end
2020
end

app/models/concerns/wp_post.rb

+6-6
Original file line numberDiff line numberDiff line change
@@ -5,27 +5,27 @@ module WpPost
55
serialize :acf_fields
66
end
77

8-
# TODO (cies): rename to update_wp_post_attributes
8+
# TODO: (cies) rename to update_wp_post_attributes
99
def update_post(json)
1010
self.class.mappable_wordpress_attributes.each do |wp_attribute|
1111
send("#{wp_attribute}=", json[wp_attribute])
1212
end
1313

14-
self.wp_id = json['ID']
14+
self.wp_id = json["ID"]
1515
# Use gmt date to ignore timezone settings in WordPress
16-
self.published_at = json['date_gmt']
17-
self.order = json['menu_order']
16+
self.published_at = json["date_gmt"]
17+
self.order = json["menu_order"]
1818
save!
1919
end
2020

2121
module ClassMethods
22-
# TODO (cies): refactor to constant WpPost::MAPPABLE_ATTRS
22+
# TODO: (cies) refactor to constant WpPost::MAPPABLE_ATTRS
2323
def mappable_wordpress_attributes
2424
%w( slug title status content excerpt acf_fields )
2525
end
2626

2727
def wp_type
28-
self.to_s.demodulize.underscore.pluralize
28+
to_s.demodulize.underscore.pluralize
2929
end
3030
end
3131
end

app/models/concerns/wp_seo.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ module WpSEO
77

88
def update_wp_seo_attributes(json)
99
return unless json.is_a?(Hash)
10-
self.seo_fields = json['seo_fields']
10+
self.seo_fields = json["seo_fields"]
1111
save!
1212
end
1313
end

0 commit comments

Comments
 (0)