Skip to content

Commit 8d3de89

Browse files
author
Ignacio Jonas
committed
Fix Rubocop issues
1 parent 50cfb77 commit 8d3de89

38 files changed

+387
-209
lines changed

.rubocop.yml

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1+
inherit_from: .rubocop_todo.yml
12
AllCops:
23
RunRailsCops: true
34
Exclude:
45
- bin/**/*
56
- vendor/**/*
7+
- auth0.gemspec

.rubocop_todo.yml

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Configuration parameters: CountComments.
2+
Metrics/MethodLength:
3+
Max: 15
4+
5+
# Configuration parameters: AllowURI, URISchemes.
6+
Metrics/LineLength:
7+
Max: 121

Guardfile

+6-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
scope group: :unit_test
22

33
group :unit_test do
4-
guard 'rspec', cmd: "bundle exec rspec -P \"spec/lib/auth0/**/*#{ENV['PATTERN']}*_spec.rb\" --drb --format Fuubar --color" do
4+
guard 'rspec', cmd:
5+
"bundle exec rspec -P \"spec/lib/auth0/**/*#{ENV['PATTERN']}*_spec.rb\"--drb --format Fuubar --color" do
56
# run every updated spec file
67
watch(%r{^spec/.+_spec\.rb$})
78
# run the lib specs when a file in lib/ changes
@@ -12,7 +13,8 @@ group :unit_test do
1213
end
1314

1415
group :integration do
15-
guard 'rspec', cmd: "MODE=full bundle exec rspec -P \"spec/integration/**/*#{ENV['PATTERN']}*_spec.rb\" --drb --format Fuubar --color" do
16+
guard 'rspec', cmd:
17+
"MODE=full bundle exec rspec -P \"spec/integration/**/*#{ENV['PATTERN']}*_spec.rb\" --drb --format Fuubar --color" do
1618
# run every updated spec file
1719
watch(%r{^spec/.+_spec\.rb$})
1820
# run the lib specs when a file in lib/ changes
@@ -23,7 +25,8 @@ group :integration do
2325
end
2426

2527
group :full do
26-
guard 'rspec', cmd: 'MODE=full bundle exec rspec --drb --format Fuubar --color' do
28+
guard 'rspec', cmd:
29+
'MODE=full bundle exec rspec --drb --format Fuubar --color' do
2730
# run every updated spec file
2831
watch(%r{^spec/.+_spec\.rb$})
2932
# run the lib specs when a file in lib/ changes

Rakefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ begin
2020
desc 'Run All Suites'
2121
RSpec::Core::RakeTask.new(:all)
2222

23-
task default: [ :rubocop, :spec ]
23+
task default: [:rubocop, :spec]
2424
rescue LoadError
25-
# No RSpec
25+
puts 'Load Error - No RSpec'
2626
end

lib/auth0/api/authentication_endpoints.rb

+6-3
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ module Api
33
# {https://auth0.com/docs/auth-api}
44
# Describing functionality of auth0 authentication endpoints
55
module AuthenticationEndpoints
6+
UP_AUTH = 'Username-Password-Authentication'
7+
68
# {https://auth0.com/docs/auth-api#!#post--oauth-access_token}
79
def obtain_access_token
810
request_params = {
@@ -44,7 +46,8 @@ def impersonate(user_id, app_client_id, impersonator_id, options)
4446
end
4547

4648
# {https://auth0.com/docs/auth-api#!#post--oauth-ro}
47-
def login(username, password, scope = 'openid', id_token = nil, connection_name = 'Username-Password-Authentication')
49+
50+
def login(username, password, scope = 'openid', id_token = nil, connection_name = UP_AUTH)
4851
request_params = {
4952
client_id: @client_id,
5053
username: username,
@@ -58,7 +61,7 @@ def login(username, password, scope = 'openid', id_token = nil, connection_name
5861
end
5962

6063
# {https://auth0.com/docs/auth-api#!#post--dbconnections-signup}
61-
def signup(email, password, connection_name = 'Username-Password-Authentication')
64+
def signup(email, password, connection_name = UP_AUTH)
6265
request_params = {
6366
client_id: @client_id,
6467
email: email,
@@ -69,7 +72,7 @@ def signup(email, password, connection_name = 'Username-Password-Authentication'
6972
end
7073

7174
# {https://auth0.com/docs/auth-api#!#post--dbconnections-change_password}
72-
def change_password(email, password, connection_name = 'Username-Password-Authentication')
75+
def change_password(email, password, connection_name = UP_AUTH)
7376
request_params = {
7477
client_id: @client_id,
7578
email: email,

lib/auth0/api/v1/connections.rb

+1-2
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,7 @@ def create_connection(connection_name, strategy, tenant_domain, domain_aliases =
3030
strategy: strategy,
3131
options: {
3232
tenant_domain: tenant_domain,
33-
domain_aliases: domain_aliases
34-
}
33+
domain_aliases: domain_aliases }
3534
}
3635
post(path, request_params)
3736
end

lib/auth0/api/v1/logs.rb

+3-9
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,15 @@ module Api
33
module V1
44
# {https://auth0.com/docs/api#logs}
55
module Logs
6-
# {https://auth0.com/docs/api#!#get--api-logs-page--number--per_page--items--sort--field----1-1--fields--fields--exclude_fields-true-false-}
7-
#
8-
# {https://auth0.com/docs/api#!#get--api-logs-search--criteria-}
9-
#
10-
# {https://auth0.com/docs/api#!#get--api-logs-from--checkpointId--take--count-}
6+
# https://auth0.com/docs/api/v1#!#logs
117
def logs(options = {})
128
acceptable_params = %i(take from search_criteria page per_page sort fields exclude_fields)
139
options.reject! do |key, value|
14-
next unless key.nil? || \
15-
value.nil? || \
16-
!acceptable_params.include?(key.to_sym)
10+
next unless key.nil? || value.nil? || !acceptable_params.include?(key.to_sym)
1711
warn "#{key} is not in acceptable params list: #{acceptable_params}"
1812
true
1913
end
20-
path = '/api/logs?' + URI.encode_www_form(options)
14+
path = "/api/logs?#{URI.encode_www_form(options)}"
2115
get(path)
2216
end
2317

lib/auth0/api/v1/users.rb

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
module Auth0
22
module Api
3+
# rubocop:disable Metrics/ModuleLength
34
module V1
45
# {https://auth0.com/docs/api#users}
56
module Users
@@ -141,7 +142,7 @@ def delete_users
141142

142143
# {https://auth0.com/docs/api#!#delete--api-users--user_id-}
143144
def delete_user(user_id)
144-
fail Auth0::MissingUserId, 'if you want to remove all users user delete_users method' if user_id.to_s.empty?
145+
fail Auth0::MissingUserId, 'if you want to remove all users use delete_users method' if user_id.to_s.empty?
145146
path = "/api/users/#{user_id}"
146147
delete(path)
147148
end

lib/auth0/api/v2/clients.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def create_client(name, options = {})
2020

2121
# https://auth0.com/docs/apiv2#!/clients/get_clients_by_id
2222
def client(client_id, options = {})
23-
path = '/api/v2/clients/' + client_id.to_s
23+
path = "/api/v2/clients/#{client_id}"
2424
get(path, options)
2525
end
2626

lib/auth0/api/v2/connections.rb

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
module Auth0
22
module Api
33
module V2
4+
# https://auth0.com/docs/api/v2#!/Connections
45
module Connections
56
def connections(strategy: nil, fields: nil, include_fields: true)
67
request_params = {
@@ -20,7 +21,7 @@ def create_connection(body)
2021
end
2122

2223
def connection(connection_id, fields: nil, include_fields: true)
23-
path = '/api/v2/connections/' + connection_id.to_s
24+
path = "/api/v2/connections/#{connection_id}"
2425
request_params = {
2526
fields: fields,
2627
include_fields: include_fields
@@ -36,7 +37,7 @@ def delete_connection(connection_id)
3637

3738
def update_connection(connection_id, body)
3839
fail Auth0::MissingConnectionId, 'you must specify a connection id' if connection_id.to_s.empty?
39-
path = '/api/v2/connections/' + connection_id.to_s
40+
path = "/api/v2/connections/#{connection_id}"
4041
patch(path, body)
4142
end
4243
end

lib/auth0/api/v2/jobs.rb

+4-2
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,11 @@ def get_job(job_id)
99
get(path)
1010
end
1111

12-
# HTTParty doesn't support multipart upload, will move this functionality to a separate PR
12+
# HTTParty doesn't support multipart upload, will move this
13+
# functionality to a separate PR
1314
# https://auth0.com/docs/apiv2#!/jobs/post_users_imports
14-
def create_job(_users_file, _connection_name)
15+
# rubocop:disable UnusedMethodArgument
16+
def create_job(users_file, connection_name)
1517
fail NotImplementedError
1618
end
1719
end

lib/auth0/api/v2/users.rb

+3-3
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def delete_users
3838

3939
# https://auth0.com/docs/apiv2#!/users/get_users_by_id
4040
def user(user_id, fields: nil)
41-
path = '/api/v2/users/' + user_id.to_s
41+
path = "/api/v2/users/#{user_id}"
4242
request_params = {
4343
fields: fields
4444
}
@@ -48,13 +48,13 @@ def user(user_id, fields: nil)
4848
# https://auth0.com/docs/apiv2#!/users/delete_users_by_id
4949
def delete_user(user_id)
5050
fail Auth0::MissingUserId, 'Must supply a valid user_id' if user_id.nil? || user_id.to_s.empty?
51-
path = '/api/v2/users/' + user_id.to_s
51+
path = "/api/v2/users/#{user_id}"
5252
delete(path)
5353
end
5454

5555
# https://auth0.com/docs/apiv2#!/users/patch_users_by_id
5656
def patch_user(user_id, options)
57-
path = '/api/v2/users/' + user_id
57+
path = "/api/v2/users/#{user_id}"
5858
patch(path, options)
5959
end
6060

lib/auth0/client.rb

+8-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1-
# Main class
2-
# All Api calls are suposed to return hashes, but delete actions return strings.
3-
class Auth0::Client
4-
include Auth0::Mixins
5-
include HTTParty
6-
base_uri 'http://auth0.com'
1+
module Auth0
2+
# Main class
3+
# All Api calls are suposed to return hashes, but delete actions return strings.
4+
class Client
5+
include Auth0::Mixins
6+
include HTTParty
7+
base_uri 'http://auth0.com'
8+
end
79
end

lib/auth0/exception.rb

+26-22
Original file line numberDiff line numberDiff line change
@@ -3,26 +3,30 @@ module Auth0
33
# if you want to catch all exceptions, then you should use this one.
44
# Network exceptions are not included
55
class Exception < StandardError; end
6+
# exception for unauthorized requests, if you see it,
7+
# probably Bearer Token is not set correctly
8+
class Unauthorized < Auth0::Exception; end
9+
# exception for not found resource, you query for an
10+
# unexistent resource, or wrong path
11+
class NotFound < Auth0::Exception; end
12+
# exception for unknown error
13+
class Unsupported < Auth0::Exception; end
14+
# exception for server error
15+
class ServerError < Auth0::Exception; end
16+
# exception for incorrect request, you've sent wrong params
17+
class BadRequest < Auth0::Exception; end
18+
# exception for unset user_id, this might cause removal of
19+
# all users, or other unexpected bahaviour
20+
class MissingUserId < Auth0::Exception; end
21+
# exception for an unset connection_id
22+
class MissingConnectionId < Auth0::Exception; end
23+
# Api v2 access denied
24+
class AccessDenied < Auth0::Exception; end
25+
# Invalid parameter passed, e.g. empty where ID is required
26+
class InvalidParameter < Auth0::Exception; end
27+
# Invalid Auth0 credentials either client_id/secret for API v1
28+
# or JWT for API v2/
29+
class InvalidCredentials < Auth0::Exception; end
30+
# Invalid Auth0 API namespace
31+
class InvalidApiNamespace < Auth0::Exception; end
632
end
7-
# exception for unauthorized requests, if you see it, probably Bearer Token is not set correctly
8-
class Auth0::Unauthorized < Auth0::Exception; end
9-
# exception for not found resource, you query for an unexistent resource, or wrong path
10-
class Auth0::NotFound < Auth0::Exception; end
11-
# exception for unknown error
12-
class Auth0::Unsupported < Auth0::Exception; end
13-
# exception for server error
14-
class Auth0::ServerError < Auth0::Exception; end
15-
# exception for incorrect request, you've sent wrong params
16-
class Auth0::BadRequest < Auth0::Exception; end
17-
# exception for unset user_id, this might cause removal of all users, or other unexpected bahaviour
18-
class Auth0::MissingUserId < Auth0::Exception; end
19-
# exception for an unset connection_id
20-
class Auth0::MissingConnectionId < Auth0::Exception; end
21-
# Api v2 access denied
22-
class Auth0::AccessDenied < Auth0::Exception; end
23-
# Invalid parameter passed, e.g. empty where ID is required
24-
class Auth0::InvalidParameter < Auth0::Exception; end
25-
# Invalid Auth0 credentials either client_id/secret for API v1 or JWT for API v2/
26-
class Auth0::InvalidCredentials < Auth0::Exception; end
27-
# Invalid Auth0 API namespace
28-
class Auth0::InvalidApiNamespace < Auth0::Exception; end

lib/auth0/mixins.rb

+6-4
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,10 @@
55
require 'auth0/api/authentication_endpoints'
66
require 'auth0/api/v1'
77
require 'auth0/api/v2'
8-
# Collecting dependencies here
9-
module Auth0::Mixins
10-
include Auth0::Mixins::HTTPartyProxy
11-
include Auth0::Mixins::Initializer
8+
module Auth0
9+
# Collecting dependencies here
10+
module Mixins
11+
include Auth0::Mixins::HTTPartyProxy
12+
include Auth0::Mixins::Initializer
13+
end
1214
end

lib/auth0/mixins/httparty_proxy.rb

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
module Auth0
22
module Mixins
3-
# here's the proxy for HTTParty, we're building all request on that gem for now, if you want to feel free to use your own http client
3+
# here's the proxy for HTTParty, we're building all request on that gem
4+
# for now, if you want to feel free to use your own http client
45
module HTTPartyProxy
56
# proxying requests from instance methods to HTTParty class methods
67
%i(get post put patch delete).each do |method|
78
define_method(method) do |path, body = {}|
89
safe_path = URI.escape(path)
9-
body = body.delete_if { |_k, v| v.nil? }
10+
body = body.delete_if { |_, v| v.nil? }
1011
if method == :get
1112
result = self.class.send(method, safe_path, query: body)
1213
else

lib/auth0/mixins/initializer.rb

+15-16
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,14 @@ module Initializer
66
# accepts hash as parameter
77
# you can get all required fields from here: https://auth0.com/docs/auth-api
88
#
9-
# To run using api v2, pass api_version: 2 when creating a client
9+
# By Default API v2
1010
def initialize(config)
1111
options = Hash[config.map { |(k, v)| [k.to_sym, v] }]
12-
domain = api_domain options
13-
fail InvalidApiNamespace, 'Api namespace must supply an API domain' if domain.nil?
14-
self.class.base_uri "https://#{domain}"
12+
self.class.base_uri base_url(options)
1513
self.class.headers client_headers(config)
1614
extend Auth0::Api::AuthenticationEndpoints
1715
@client_id = options[:client_id]
18-
initialize_v2(options) if api_v2?(options)
19-
initialize_v1(options) if api_v1?(options)
20-
fail InvalidCredentials, 'Must supply a valid API token' if @token.nil?
21-
self.class.headers 'Authorization' => "Bearer #{@token}"
16+
initialize_api(options)
2217
end
2318

2419
# including initializer in top of klass
@@ -28,6 +23,18 @@ def self.included(klass)
2823

2924
private
3025

26+
def initialize_api(options)
27+
api_v1?(options) ? initialize_v1(options) : initialize_v2(options)
28+
fail InvalidCredentials, 'Must supply a valid API token' if @token.nil?
29+
self.class.headers 'Authorization' => "Bearer #{@token}"
30+
end
31+
32+
def base_url(options)
33+
domain = options[:domain] || options[:namespace]
34+
fail InvalidApiNamespace, 'Api namespace must supply an API domain' if domain.nil?
35+
"https://#{domain}"
36+
end
37+
3138
def client_headers(config)
3239
client_info = JSON.dump(name: 'ruby-auth0', version: Auth0::VERSION)
3340

@@ -43,10 +50,6 @@ def client_headers(config)
4350
headers
4451
end
4552

46-
def api_domain(options)
47-
options[:domain] || options[:namespace]
48-
end
49-
5053
def initialize_v2(options)
5154
extend Auth0::Api::V2
5255
@token = options[:access_token] || options[:token]
@@ -59,10 +62,6 @@ def initialize_v1(options)
5962
@token = obtain_access_token
6063
end
6164

62-
def api_v2?(options)
63-
options[:protocols].to_s.include?('v2') || options[:api_version] == 2
64-
end
65-
6665
def api_v1?(options)
6766
version = options[:api_version] || 1
6867
protocol = options[:protocols].to_s

lib/auth0/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1+
# current version of gem
12
module Auth0
2-
# current version of gem
33
VERSION = '3.6.1'
44
end

spec/integration/lib/auth0/api/v1/api_users_spec.rb

+1-4
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,7 @@
55
let(:email) { "#{entity_suffix}#{Faker::Internet.safe_email(username)}" }
66
let(:password) { Faker::Internet.password }
77
let(:connection) { 'Username-Password-Authentication' }
8-
let!(:user) do
9-
client.create_user(email, password, connection, 'username' => username,
10-
'email_verified' => false)
11-
end
8+
let!(:user) { client.create_user(email, password, connection, 'username' => username, 'email_verified' => false) }
129

1310
describe '.users' do
1411
let(:users) { client.users }

0 commit comments

Comments
 (0)