Skip to content

Commit

Permalink
Fix rubocop issues, introduce usage of frozen literal to improve perf…
Browse files Browse the repository at this point in the history
…ormance
  • Loading branch information
Gargron committed Nov 15, 2016
1 parent a91c3ef commit fdc17be
Show file tree
Hide file tree
Showing 96 changed files with 329 additions and 126 deletions.
36 changes: 32 additions & 4 deletions .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,29 @@ Metrics/MethodLength:
CountComments: false
Max: 10

Metrics/ModuleLength:
Metrics/AbcSize:
Max: 100

Metrics/BlockNesting:
Max: 3

Metrics/ClassLength:
CountComments: false
Max: 200

Metrics/CyclomaticComplexity:
Max: 15

Metrics/MethodLength:
Max: 55

Metrics/ModuleLength:
CountComments: false
Max: 200

Metrics/PerceivedComplexity:
Max: 10

Metrics/ParameterLists:
Max: 4
CountKeywordArgs: true
Expand All @@ -37,10 +57,10 @@ Style/Documentation:
Enabled: false

Style/DoubleNegation:
Enabled: false
Enabled: true

Style/FrozenStringLiteralComment:
Enabled: false
Enabled: true

Style/SpaceInsideHashLiteralBraces:
EnforcedStyle: space
Expand All @@ -51,10 +71,18 @@ Style/TrailingCommaInLiteral:
Style/RegexpLiteral:
Enabled: false

Style/Lambda:
Enabled: false

Rails/HasAndBelongsToMany:
Enabled: false

AllCops:
TargetRubyVersion: 2.2
TargetRubyVersion: 2.3
Exclude:
- 'spec/**/*'
- 'db/**/*'
- 'app/views/**/*'
- 'config/**/*'
- 'bin/*'
- 'Rakefile'
2 changes: 2 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# frozen_string_literal: true

source 'https://rubygems.org'

gem 'rails', '5.0.0.1'
Expand Down
2 changes: 2 additions & 0 deletions app/channels/application_cable/channel.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# frozen_string_literal: true

module ApplicationCable
class Channel < ActionCable::Channel::Base
protected
Expand Down
2 changes: 2 additions & 0 deletions app/channels/application_cable/connection.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# frozen_string_literal: true

module ApplicationCable
class Connection < ActionCable::Connection::Base
identified_by :current_user
Expand Down
2 changes: 2 additions & 0 deletions app/channels/hashtag_channel.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# frozen_string_literal: true

class HashtagChannel < ApplicationCable::Channel
def subscribed
tag = params[:tag].downcase
Expand Down
2 changes: 2 additions & 0 deletions app/channels/public_channel.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# frozen_string_literal: true

class PublicChannel < ApplicationCable::Channel
def subscribed
stream_from 'timeline:public', lambda { |encoded_message|
Expand Down
2 changes: 2 additions & 0 deletions app/channels/timeline_channel.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# frozen_string_literal: true

class TimelineChannel < ApplicationCable::Channel
def subscribed
stream_from "timeline:#{current_user.account_id}"
Expand Down
2 changes: 2 additions & 0 deletions app/controllers/about_controller.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# frozen_string_literal: true

class AboutController < ApplicationController
before_action :set_body_classes

Expand Down
7 changes: 3 additions & 4 deletions app/controllers/accounts_controller.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# frozen_string_literal: true

class AccountsController < ApplicationController
layout 'public'

Expand Down Expand Up @@ -41,10 +43,7 @@ def set_account
end

def set_link_headers
response.headers['Link'] = LinkHeader.new([
[webfinger_account_url, [['rel', 'lrdd'], ['type', 'application/xrd+xml']]],
[account_url(@account, format: 'atom'), [['rel', 'alternate'], ['type', 'application/atom+xml']]]
])
response.headers['Link'] = LinkHeader.new([[webfinger_account_url, [%w(rel lrdd), %w(type application/xrd+xml)]], [account_url(@account, format: 'atom'), [%w(rel alternate), %w(type application/atom+xml)]]])
end

def webfinger_account_url
Expand Down
2 changes: 2 additions & 0 deletions app/controllers/api/salmon_controller.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# frozen_string_literal: true

class Api::SalmonController < ApiController
before_action :set_account
respond_to :txt
Expand Down
2 changes: 2 additions & 0 deletions app/controllers/api/subscriptions_controller.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# frozen_string_literal: true

class Api::SubscriptionsController < ApiController
before_action :set_account
respond_to :txt
Expand Down
8 changes: 5 additions & 3 deletions app/controllers/api/v1/accounts_controller.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# frozen_string_literal: true

class Api::V1::AccountsController < ApiController
before_action -> { doorkeeper_authorize! :read }, except: [:follow, :unfollow, :block, :unblock]
before_action -> { doorkeeper_authorize! :follow }, only: [:follow, :unfollow, :block, :unblock]
Expand All @@ -20,7 +22,7 @@ def following
@accounts = results.map { |f| accounts[f.target_account_id] }

next_path = following_api_v1_account_url(max_id: results.last.id) if results.size == DEFAULT_ACCOUNTS_LIMIT
prev_path = following_api_v1_account_url(since_id: results.first.id) if results.size > 0
prev_path = following_api_v1_account_url(since_id: results.first.id) unless results.empty?

set_pagination_headers(next_path, prev_path)

Expand All @@ -33,7 +35,7 @@ def followers
@accounts = results.map { |f| accounts[f.account_id] }

next_path = followers_api_v1_account_url(max_id: results.last.id) if results.size == DEFAULT_ACCOUNTS_LIMIT
prev_path = followers_api_v1_account_url(since_id: results.first.id) if results.size > 0
prev_path = followers_api_v1_account_url(since_id: results.first.id) unless results.empty?

set_pagination_headers(next_path, prev_path)

Expand All @@ -56,7 +58,7 @@ def statuses
set_maps(@statuses)

next_path = statuses_api_v1_account_url(max_id: @statuses.last.id) if @statuses.size == DEFAULT_STATUSES_LIMIT
prev_path = statuses_api_v1_account_url(since_id: @statuses.first.id) if @statuses.size > 0
prev_path = statuses_api_v1_account_url(since_id: @statuses.first.id) unless @statuses.empty?

set_pagination_headers(next_path, prev_path)
end
Expand Down
2 changes: 2 additions & 0 deletions app/controllers/api/v1/apps_controller.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# frozen_string_literal: true

class Api::V1::AppsController < ApiController
respond_to :json

Expand Down
2 changes: 2 additions & 0 deletions app/controllers/api/v1/follows_controller.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# frozen_string_literal: true

class Api::V1::FollowsController < ApiController
before_action -> { doorkeeper_authorize! :follow }
before_action :require_user!
Expand Down
2 changes: 2 additions & 0 deletions app/controllers/api/v1/media_controller.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# frozen_string_literal: true

class Api::V1::MediaController < ApiController
before_action -> { doorkeeper_authorize! :write }
before_action :require_user!
Expand Down
8 changes: 5 additions & 3 deletions app/controllers/api/v1/statuses_controller.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# frozen_string_literal: true

class Api::V1::StatusesController < ApiController
before_action -> { doorkeeper_authorize! :read }, except: [:create, :destroy, :reblog, :unreblog, :favourite, :unfavourite]
before_action -> { doorkeeper_authorize! :write }, only: [:create, :destroy, :reblog, :unreblog, :favourite, :unfavourite]
Expand All @@ -10,7 +12,7 @@ def show
end

def context
@context = OpenStruct.new({ ancestors: @status.ancestors, descendants: @status.descendants })
@context = OpenStruct.new(ancestors: @status.ancestors, descendants: @status.descendants)
set_maps([@status] + @context[:ancestors] + @context[:descendants])
end

Expand All @@ -20,7 +22,7 @@ def reblogged_by
@accounts = results.map { |r| accounts[r.account_id] }

next_path = reblogged_by_api_v1_status_url(max_id: results.last.id) if results.size == DEFAULT_ACCOUNTS_LIMIT
prev_path = reblogged_by_api_v1_status_url(since_id: results.first.id) if results.size > 0
prev_path = reblogged_by_api_v1_status_url(since_id: results.first.id) unless results.empty?

set_pagination_headers(next_path, prev_path)

Expand All @@ -33,7 +35,7 @@ def favourited_by
@accounts = results.map { |f| accounts[f.account_id] }

next_path = favourited_by_api_v1_status_url(max_id: results.last.id) if results.size == DEFAULT_ACCOUNTS_LIMIT
prev_path = favourited_by_api_v1_status_url(since_id: results.first.id) if results.size > 0
prev_path = favourited_by_api_v1_status_url(since_id: results.first.id) unless results.empty?

set_pagination_headers(next_path, prev_path)

Expand Down
10 changes: 6 additions & 4 deletions app/controllers/api/v1/timelines_controller.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# frozen_string_literal: true

class Api::V1::TimelinesController < ApiController
before_action -> { doorkeeper_authorize! :read }
before_action :require_user!, only: [:home, :mentions]
Expand All @@ -10,7 +12,7 @@ def home
set_maps(@statuses)

next_path = api_v1_home_timeline_url(max_id: @statuses.last.id) if @statuses.size == DEFAULT_STATUSES_LIMIT
prev_path = api_v1_home_timeline_url(since_id: @statuses.first.id) if @statuses.size > 0
prev_path = api_v1_home_timeline_url(since_id: @statuses.first.id) unless @statuses.empty?

set_pagination_headers(next_path, prev_path)

Expand All @@ -23,7 +25,7 @@ def mentions
set_maps(@statuses)

next_path = api_v1_mentions_timeline_url(max_id: @statuses.last.id) if @statuses.size == DEFAULT_STATUSES_LIMIT
prev_path = api_v1_mentions_timeline_url(since_id: @statuses.first.id) if @statuses.size > 0
prev_path = api_v1_mentions_timeline_url(since_id: @statuses.first.id) unless @statuses.empty?

set_pagination_headers(next_path, prev_path)

Expand All @@ -36,7 +38,7 @@ def public
set_maps(@statuses)

next_path = api_v1_public_timeline_url(max_id: @statuses.last.id) if @statuses.size == DEFAULT_STATUSES_LIMIT
prev_path = api_v1_public_timeline_url(since_id: @statuses.first.id) if @statuses.size > 0
prev_path = api_v1_public_timeline_url(since_id: @statuses.first.id) unless @statuses.empty?

set_pagination_headers(next_path, prev_path)

Expand All @@ -50,7 +52,7 @@ def tag
set_maps(@statuses)

next_path = api_v1_hashtag_timeline_url(params[:id], max_id: @statuses.last.id) if @statuses.size == DEFAULT_STATUSES_LIMIT
prev_path = api_v1_hashtag_timeline_url(params[:id], since_id: @statuses.first.id) if @statuses.size > 0
prev_path = api_v1_hashtag_timeline_url(params[:id], since_id: @statuses.first.id) unless @statuses.empty?

set_pagination_headers(next_path, prev_path)

Expand Down
8 changes: 5 additions & 3 deletions app/controllers/api_controller.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# frozen_string_literal: true

class ApiController < ApplicationController
DEFAULT_STATUSES_LIMIT = 20
DEFAULT_ACCOUNTS_LIMIT = 40
Expand Down Expand Up @@ -51,8 +53,8 @@ def set_rate_limit_headers

def set_pagination_headers(next_path = nil, prev_path = nil)
links = []
links << [next_path, [['rel', 'next']]] if next_path
links << [prev_path, [['rel', 'prev']]] if prev_path
links << [next_path, [%w(rel next)]] if next_path
links << [prev_path, [%w(rel prev)]] if prev_path
response.headers['Link'] = LinkHeader.new(links)
end

Expand All @@ -76,7 +78,7 @@ def render_empty
render json: {}, status: 200
end

def set_maps(statuses)
def set_maps(statuses) # rubocop:disable Style/AccessorMethodName
if current_account.nil?
@reblogs_map = {}
@favourites_map = {}
Expand Down
2 changes: 2 additions & 0 deletions app/controllers/application_controller.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# frozen_string_literal: true

class ApplicationController < ActionController::Base
# Prevent CSRF attacks by raising an exception.
# For APIs, you may want to use :null_session instead.
Expand Down
2 changes: 2 additions & 0 deletions app/controllers/auth/confirmations_controller.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# frozen_string_literal: true

class Auth::ConfirmationsController < Devise::ConfirmationsController
layout 'auth'
end
2 changes: 2 additions & 0 deletions app/controllers/auth/passwords_controller.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# frozen_string_literal: true

class Auth::PasswordsController < Devise::PasswordsController
layout 'auth'
end
2 changes: 2 additions & 0 deletions app/controllers/auth/registrations_controller.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# frozen_string_literal: true

class Auth::RegistrationsController < Devise::RegistrationsController
layout 'auth'

Expand Down
2 changes: 2 additions & 0 deletions app/controllers/auth/sessions_controller.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# frozen_string_literal: true

class Auth::SessionsController < Devise::SessionsController
include Devise::Controllers::Rememberable

Expand Down
2 changes: 2 additions & 0 deletions app/controllers/home_controller.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# frozen_string_literal: true

class HomeController < ApplicationController
before_action :authenticate_user!

Expand Down
2 changes: 2 additions & 0 deletions app/controllers/media_controller.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# frozen_string_literal: true

class MediaController < ApplicationController
before_action :set_media_attachment

Expand Down
2 changes: 2 additions & 0 deletions app/controllers/oauth/authorizations_controller.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# frozen_string_literal: true

class Oauth::AuthorizationsController < Doorkeeper::AuthorizationsController
skip_before_action :authenticate_resource_owner!

Expand Down
2 changes: 2 additions & 0 deletions app/controllers/settings/preferences_controller.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# frozen_string_literal: true

class Settings::PreferencesController < ApplicationController
layout 'auth'

Expand Down
2 changes: 2 additions & 0 deletions app/controllers/settings/profiles_controller.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# frozen_string_literal: true

class Settings::ProfilesController < ApplicationController
layout 'auth'

Expand Down
6 changes: 3 additions & 3 deletions app/controllers/stream_entries_controller.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# frozen_string_literal: true

class StreamEntriesController < ApplicationController
layout 'public'

Expand Down Expand Up @@ -29,9 +31,7 @@ def set_account
end

def set_link_headers
response.headers['Link'] = LinkHeader.new([
[account_stream_entry_url(@account, @stream_entry, format: 'atom'), [['rel', 'alternate'], ['type', 'application/atom+xml']]]
])
response.headers['Link'] = LinkHeader.new([[account_stream_entry_url(@account, @stream_entry, format: 'atom'), [%w(rel alternate), %w(type application/atom+xml)]]])
end

def set_stream_entry
Expand Down
2 changes: 2 additions & 0 deletions app/controllers/tags_controller.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# frozen_string_literal: true

class TagsController < ApplicationController
layout 'public'

Expand Down
Loading

0 comments on commit fdc17be

Please sign in to comment.