clerk-sdk-ruby 4.0.0.beta3 → 4.0.0.beta5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.env.example +3 -0
- data/.github/workflows/main.yml +24 -14
- data/.gitignore +7 -1
- data/.rspec +3 -0
- data/.ruby-version +1 -0
- data/CHANGELOG.md +22 -0
- data/Gemfile +26 -3
- data/Gemfile.lock +269 -13
- data/Guardfile +14 -0
- data/README.md +71 -11
- data/Rakefile +50 -6
- data/apps/rack/app.rb +67 -0
- data/apps/rack/config.ru +17 -0
- data/apps/rack/middleware/disable_paths.rb +13 -0
- data/apps/rails-api/.dockerignore +41 -0
- data/apps/rails-api/.gitattributes +9 -0
- data/apps/rails-api/.gitignore +32 -0
- data/apps/rails-api/.kamal/hooks/docker-setup.sample +3 -0
- data/apps/rails-api/.kamal/hooks/post-deploy.sample +14 -0
- data/apps/rails-api/.kamal/hooks/post-proxy-reboot.sample +3 -0
- data/apps/rails-api/.kamal/hooks/pre-build.sample +51 -0
- data/apps/rails-api/.kamal/hooks/pre-connect.sample +47 -0
- data/apps/rails-api/.kamal/hooks/pre-deploy.sample +109 -0
- data/apps/rails-api/.kamal/hooks/pre-proxy-reboot.sample +3 -0
- data/apps/rails-api/.kamal/secrets +17 -0
- data/apps/rails-api/.rubocop.yml +8 -0
- data/apps/rails-api/.ruby-version +1 -0
- data/apps/rails-api/Dockerfile +69 -0
- data/apps/rails-api/Gemfile +54 -0
- data/apps/rails-api/Gemfile.lock +374 -0
- data/apps/rails-api/README.md +24 -0
- data/apps/rails-api/Rakefile +6 -0
- data/apps/rails-api/app/controllers/application_controller.rb +3 -0
- data/apps/rails-api/app/controllers/home_controller.rb +5 -0
- data/apps/rails-api/app/jobs/application_job.rb +7 -0
- data/apps/rails-api/app/mailers/application_mailer.rb +4 -0
- data/apps/rails-api/app/models/application_record.rb +3 -0
- data/apps/rails-api/app/views/layouts/mailer.html.erb +13 -0
- data/apps/rails-api/app/views/layouts/mailer.text.erb +1 -0
- data/apps/rails-api/bin/brakeman +7 -0
- data/apps/rails-api/bin/bundle +109 -0
- data/apps/rails-api/bin/dev +2 -0
- data/apps/rails-api/bin/docker-entrypoint +14 -0
- data/apps/rails-api/bin/jobs +6 -0
- data/apps/rails-api/bin/kamal +27 -0
- data/apps/rails-api/bin/rails +4 -0
- data/apps/rails-api/bin/rake +4 -0
- data/apps/rails-api/bin/rubocop +8 -0
- data/apps/rails-api/bin/setup +34 -0
- data/apps/rails-api/bin/thrust +5 -0
- data/apps/rails-api/config/application.rb +36 -0
- data/apps/rails-api/config/boot.rb +4 -0
- data/apps/rails-api/config/cable.yml +17 -0
- data/apps/rails-api/config/cache.yml +16 -0
- data/apps/rails-api/config/credentials.yml.enc +1 -0
- data/apps/rails-api/config/database.yml +41 -0
- data/apps/rails-api/config/deploy.yml +116 -0
- data/apps/rails-api/config/environment.rb +5 -0
- data/apps/rails-api/config/environments/development.rb +70 -0
- data/apps/rails-api/config/environments/production.rb +88 -0
- data/apps/rails-api/config/environments/test.rb +53 -0
- data/apps/rails-api/config/initializers/cors.rb +16 -0
- data/apps/rails-api/config/initializers/filter_parameter_logging.rb +8 -0
- data/apps/rails-api/config/initializers/inflections.rb +16 -0
- data/apps/rails-api/config/locales/en.yml +31 -0
- data/apps/rails-api/config/puma.rb +41 -0
- data/apps/rails-api/config/queue.yml +18 -0
- data/apps/rails-api/config/recurring.yml +10 -0
- data/apps/rails-api/config/routes.rb +10 -0
- data/apps/rails-api/config/storage.yml +34 -0
- data/apps/rails-api/config.ru +6 -0
- data/apps/rails-api/db/cable_schema.rb +11 -0
- data/apps/rails-api/db/cache_schema.rb +14 -0
- data/apps/rails-api/db/queue_schema.rb +129 -0
- data/apps/rails-api/db/seeds.rb +9 -0
- data/apps/rails-api/public/robots.txt +1 -0
- data/apps/rails-api/test/controllers/home_controller_test.rb +7 -0
- data/apps/rails-api/test/test_helper.rb +15 -0
- data/apps/rails-full/.dockerignore +47 -0
- data/apps/rails-full/.gitattributes +9 -0
- data/apps/rails-full/.gitignore +34 -0
- data/apps/rails-full/.kamal/hooks/docker-setup.sample +3 -0
- data/apps/rails-full/.kamal/hooks/post-deploy.sample +14 -0
- data/apps/rails-full/.kamal/hooks/post-proxy-reboot.sample +3 -0
- data/apps/rails-full/.kamal/hooks/pre-build.sample +51 -0
- data/apps/rails-full/.kamal/hooks/pre-connect.sample +47 -0
- data/apps/rails-full/.kamal/hooks/pre-deploy.sample +109 -0
- data/apps/rails-full/.kamal/hooks/pre-proxy-reboot.sample +3 -0
- data/apps/rails-full/.kamal/secrets +17 -0
- data/apps/rails-full/.rubocop.yml +8 -0
- data/apps/rails-full/.ruby-version +1 -0
- data/apps/rails-full/Dockerfile +72 -0
- data/apps/rails-full/Gemfile +70 -0
- data/apps/rails-full/Gemfile.lock +429 -0
- data/apps/rails-full/README.md +24 -0
- data/apps/rails-full/Rakefile +6 -0
- data/apps/rails-full/app/assets/stylesheets/application.css +10 -0
- data/apps/rails-full/app/controllers/application_controller.rb +6 -0
- data/apps/rails-full/app/controllers/home_controller.rb +11 -0
- data/apps/rails-full/app/helpers/application_helper.rb +2 -0
- data/apps/rails-full/app/helpers/home_helper.rb +2 -0
- data/apps/rails-full/app/javascript/application.js +3 -0
- data/apps/rails-full/app/javascript/controllers/application.js +9 -0
- data/apps/rails-full/app/javascript/controllers/hello_controller.js +7 -0
- data/apps/rails-full/app/javascript/controllers/index.js +4 -0
- data/apps/rails-full/app/jobs/application_job.rb +7 -0
- data/apps/rails-full/app/mailers/application_mailer.rb +4 -0
- data/apps/rails-full/app/models/application_record.rb +3 -0
- data/apps/rails-full/app/views/home/index.html.erb +7 -0
- data/apps/rails-full/app/views/layouts/application.html.erb +60 -0
- data/apps/rails-full/app/views/layouts/mailer.html.erb +13 -0
- data/apps/rails-full/app/views/layouts/mailer.text.erb +1 -0
- data/apps/rails-full/app/views/pwa/manifest.json.erb +22 -0
- data/apps/rails-full/app/views/pwa/service-worker.js +26 -0
- data/apps/rails-full/bin/brakeman +7 -0
- data/apps/rails-full/bin/bundle +109 -0
- data/apps/rails-full/bin/dev +2 -0
- data/apps/rails-full/bin/docker-entrypoint +14 -0
- data/apps/rails-full/bin/importmap +4 -0
- data/apps/rails-full/bin/jobs +6 -0
- data/apps/rails-full/bin/kamal +27 -0
- data/apps/rails-full/bin/rails +4 -0
- data/apps/rails-full/bin/rake +4 -0
- data/apps/rails-full/bin/rubocop +8 -0
- data/apps/rails-full/bin/setup +34 -0
- data/apps/rails-full/bin/thrust +5 -0
- data/apps/rails-full/config/application.rb +31 -0
- data/apps/rails-full/config/boot.rb +4 -0
- data/apps/rails-full/config/cable.yml +17 -0
- data/apps/rails-full/config/cache.yml +16 -0
- data/apps/rails-full/config/credentials.yml.enc +1 -0
- data/apps/rails-full/config/database.yml +41 -0
- data/apps/rails-full/config/deploy.yml +116 -0
- data/apps/rails-full/config/environment.rb +5 -0
- data/apps/rails-full/config/environments/development.rb +72 -0
- data/apps/rails-full/config/environments/production.rb +91 -0
- data/apps/rails-full/config/environments/test.rb +53 -0
- data/apps/rails-full/config/importmap.rb +7 -0
- data/apps/rails-full/config/initializers/assets.rb +7 -0
- data/apps/rails-full/config/initializers/clerk.rb +4 -0
- data/apps/rails-full/config/initializers/content_security_policy.rb +25 -0
- data/apps/rails-full/config/initializers/filter_parameter_logging.rb +8 -0
- data/apps/rails-full/config/initializers/inflections.rb +16 -0
- data/apps/rails-full/config/locales/en.yml +31 -0
- data/apps/rails-full/config/puma.rb +41 -0
- data/apps/rails-full/config/queue.yml +18 -0
- data/apps/rails-full/config/recurring.yml +10 -0
- data/apps/rails-full/config/routes.rb +15 -0
- data/apps/rails-full/config/storage.yml +34 -0
- data/apps/rails-full/config.ru +6 -0
- data/apps/rails-full/db/cable_schema.rb +11 -0
- data/apps/rails-full/db/cache_schema.rb +14 -0
- data/apps/rails-full/db/queue_schema.rb +129 -0
- data/apps/rails-full/db/seeds.rb +9 -0
- data/apps/rails-full/public/400.html +114 -0
- data/apps/rails-full/public/404.html +114 -0
- data/apps/rails-full/public/406-unsupported-browser.html +114 -0
- data/apps/rails-full/public/422.html +114 -0
- data/apps/rails-full/public/500.html +114 -0
- data/apps/rails-full/public/icon.png +0 -0
- data/apps/rails-full/public/icon.svg +3 -0
- data/apps/rails-full/public/robots.txt +1 -0
- data/apps/rails-full/test/application_system_test_case.rb +5 -0
- data/apps/rails-full/test/controllers/home_controller_test.rb +7 -0
- data/apps/rails-full/test/test_helper.rb +15 -0
- data/apps/sinatra/app.rb +29 -0
- data/apps/sinatra/config.ru +2 -0
- data/apps/sinatra/views/index.erb +44 -0
- data/clerk-sdk-ruby.gemspec +2 -1
- data/lib/clerk/authenticatable.rb +14 -79
- data/lib/clerk/authenticate_context.rb +164 -181
- data/lib/clerk/authenticate_request.rb +238 -230
- data/lib/clerk/configuration.rb +78 -0
- data/lib/clerk/constants.rb +68 -46
- data/lib/clerk/error.rb +17 -0
- data/lib/clerk/jwks_cache.rb +27 -22
- data/lib/clerk/proxy.rb +135 -0
- data/lib/clerk/rack.rb +2 -0
- data/lib/clerk/rack_middleware.rb +88 -73
- data/lib/clerk/rails.rb +3 -0
- data/lib/clerk/railtie.rb +7 -6
- data/lib/clerk/sdk.rb +17 -156
- data/lib/clerk/sinatra.rb +52 -0
- data/lib/clerk/utils.rb +46 -6
- data/lib/clerk/version.rb +1 -1
- data/lib/clerk.rb +15 -51
- metadata +187 -25
- data/CODEOWNERS +0 -1
- data/lib/clerk/errors.rb +0 -22
- data/lib/clerk/rack_middleware_v2.rb +0 -167
- data/lib/clerk/resources/allowlist.rb +0 -16
- data/lib/clerk/resources/allowlist_identifiers.rb +0 -16
- data/lib/clerk/resources/clients.rb +0 -23
- data/lib/clerk/resources/email_addresses.rb +0 -17
- data/lib/clerk/resources/emails.rb +0 -16
- data/lib/clerk/resources/jwks.rb +0 -18
- data/lib/clerk/resources/organizations.rb +0 -73
- data/lib/clerk/resources/phone_numbers.rb +0 -17
- data/lib/clerk/resources/plural_resource.rb +0 -38
- data/lib/clerk/resources/sessions.rb +0 -26
- data/lib/clerk/resources/singular_resource.rb +0 -14
- data/lib/clerk/resources/users.rb +0 -37
- data/lib/clerk/resources.rb +0 -10
data/lib/clerk/sdk.rb
CHANGED
@@ -1,34 +1,18 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
require "
|
4
|
-
require "logger"
|
5
|
-
require "net/http"
|
6
|
-
require "json"
|
1
|
+
require "clerk-http-client"
|
2
|
+
require "clerk/jwks_cache"
|
3
|
+
require "clerk/version"
|
7
4
|
require "jwt"
|
8
|
-
require "concurrent-ruby"
|
9
|
-
|
10
|
-
require_relative "resources/allowlist_identifiers"
|
11
|
-
require_relative "resources/allowlist"
|
12
|
-
require_relative "resources/clients"
|
13
|
-
require_relative "resources/email_addresses"
|
14
|
-
require_relative "resources/emails"
|
15
|
-
require_relative "resources/organizations"
|
16
|
-
require_relative "resources/phone_numbers"
|
17
|
-
require_relative "resources/sessions"
|
18
|
-
require_relative "resources/users"
|
19
|
-
require_relative "resources/jwks"
|
20
|
-
require_relative "errors"
|
21
|
-
require_relative "jwks_cache"
|
22
5
|
|
23
6
|
module Clerk
|
24
|
-
class SDK
|
7
|
+
class SDK < ClerkHttpClient::SDK
|
8
|
+
# TODO: Move to constants?
|
25
9
|
DEFAULT_HEADERS = {
|
26
|
-
"User-Agent"
|
27
|
-
"X-Clerk-SDK"
|
10
|
+
"User-Agent": "Clerk/#{Clerk::VERSION}; Faraday/#{Faraday::VERSION}; Ruby/#{RUBY_VERSION}",
|
11
|
+
"X-Clerk-SDK": "ruby/#{Clerk::VERSION}" # TODO: Add framework identifier
|
28
12
|
}
|
29
13
|
|
30
14
|
# How often (in seconds) should JWKs be refreshed
|
31
|
-
JWKS_CACHE_LIFETIME = 3600 # 1 hour
|
15
|
+
JWKS_CACHE_LIFETIME = 3600 # 1 hour / TODO: Move to constants?
|
32
16
|
|
33
17
|
@@jwks_cache = JWKSCache.new(JWKS_CACHE_LIFETIME)
|
34
18
|
|
@@ -36,148 +20,25 @@ module Clerk
|
|
36
20
|
@@jwks_cache
|
37
21
|
end
|
38
22
|
|
39
|
-
|
40
|
-
connection: nil)
|
41
|
-
if connection
|
42
|
-
# Inject a Faraday::Connection for testing or full control over Faraday
|
43
|
-
@conn = connection
|
44
|
-
return
|
45
|
-
else
|
46
|
-
base_url = base_url || Clerk.configuration.base_url
|
47
|
-
base_uri = if !base_url.end_with?("/")
|
48
|
-
URI("#{base_url}/")
|
49
|
-
else
|
50
|
-
URI(base_url)
|
51
|
-
end
|
52
|
-
|
53
|
-
api_key ||= Clerk.configuration.api_key
|
54
|
-
|
55
|
-
if Faraday::VERSION.to_i >= 2 && api_key.nil?
|
56
|
-
api_key = -> { raise ArgumentError, "Clerk secret key is not set" }
|
57
|
-
end
|
58
|
-
|
59
|
-
logger = logger || Clerk.configuration.logger
|
60
|
-
@conn = Faraday.new(
|
61
|
-
url: base_uri, headers: DEFAULT_HEADERS, ssl: {verify: ssl_verify}
|
62
|
-
) do |f|
|
63
|
-
f.request :url_encoded
|
64
|
-
f.request :authorization, "Bearer", api_key
|
65
|
-
if logger
|
66
|
-
f.response :logger, logger do |l|
|
67
|
-
l.filter(/(Authorization: "Bearer) (\w+)/, '\1 [SECRET]')
|
68
|
-
end
|
69
|
-
end
|
70
|
-
end
|
71
|
-
end
|
72
|
-
end
|
73
|
-
|
74
|
-
def request(method, path, query: [], body: nil, timeout: nil)
|
75
|
-
response = case method
|
76
|
-
when :get
|
77
|
-
@conn.get(path, query) do |req|
|
78
|
-
req.options.timeout = timeout if timeout
|
79
|
-
end
|
80
|
-
when :post
|
81
|
-
@conn.post(path, body) do |req|
|
82
|
-
req.body = body.to_json
|
83
|
-
req.headers[:content_type] = "application/json"
|
84
|
-
req.options.timeout = timeout if timeout
|
85
|
-
end
|
86
|
-
when :patch
|
87
|
-
@conn.patch(path, body) do |req|
|
88
|
-
req.body = body.to_json
|
89
|
-
req.headers[:content_type] = "application/json"
|
90
|
-
req.options.timeout = timeout if timeout
|
91
|
-
end
|
92
|
-
when :delete
|
93
|
-
@conn.delete(path) do |req|
|
94
|
-
req.options.timeout = timeout if timeout
|
95
|
-
end
|
96
|
-
end
|
97
|
-
|
98
|
-
body = if response[CONTENT_TYPE_HEADER] == "application/json"
|
99
|
-
JSON.parse(response.body)
|
100
|
-
else
|
101
|
-
response.body
|
102
|
-
end
|
103
|
-
|
104
|
-
if response.success?
|
105
|
-
body
|
106
|
-
else
|
107
|
-
klass = case body.dig("errors", 0, "code")
|
108
|
-
when "cookie_invalid", "client_not_found", "resource_not_found"
|
109
|
-
Errors::Authentication
|
110
|
-
else
|
111
|
-
Errors::Fatal
|
112
|
-
end
|
113
|
-
raise klass.new(body, status: response.status)
|
114
|
-
end
|
115
|
-
end
|
116
|
-
|
117
|
-
def allowlist_identifiers
|
118
|
-
Resources::AllowlistIdentifiers.new(self)
|
119
|
-
end
|
120
|
-
|
121
|
-
def allowlist
|
122
|
-
Resources::Allowlist.new(self)
|
123
|
-
end
|
124
|
-
|
125
|
-
def clients
|
126
|
-
Resources::Clients.new(self)
|
127
|
-
end
|
128
|
-
|
129
|
-
def email_addresses
|
130
|
-
Resources::EmailAddresses.new(self)
|
131
|
-
end
|
132
|
-
|
133
|
-
def emails
|
134
|
-
Resources::Emails.new(self)
|
135
|
-
end
|
136
|
-
|
137
|
-
def organizations
|
138
|
-
Resources::Organizations.new(self)
|
139
|
-
end
|
140
|
-
|
141
|
-
def phone_numbers
|
142
|
-
Resources::PhoneNumbers.new(self)
|
143
|
-
end
|
144
|
-
|
145
|
-
def sessions
|
146
|
-
Resources::Sessions.new(self)
|
147
|
-
end
|
148
|
-
|
149
|
-
def users
|
150
|
-
Resources::Users.new(self)
|
151
|
-
end
|
152
|
-
|
153
|
-
def jwks
|
154
|
-
Resources::JWKS.new(self)
|
155
|
-
end
|
156
|
-
|
157
|
-
# Returns the decoded JWT payload without verifying if the signature is
|
158
|
-
# valid.
|
23
|
+
# Returns the decoded JWT payload without verifying if the signature is valid.
|
159
24
|
#
|
160
|
-
# WARNING: This will not verify whether the signature is valid. You
|
161
|
-
#
|
162
|
-
# verify_token.
|
25
|
+
# WARNING: This will not verify whether the signature is valid. You should not
|
26
|
+
# use this for untrusted messages! You most likely want to use `verify_token`.
|
163
27
|
def decode_token(token)
|
164
28
|
JWT.decode(token, nil, false).first
|
165
29
|
end
|
166
30
|
|
167
|
-
# Decode the JWT and verify it's valid (verify claims, signature etc.) using
|
168
|
-
# the provided algorithms.
|
31
|
+
# Decode the JWT and verify it's valid (verify claims, signature etc.) using the provided algorithms.
|
169
32
|
#
|
170
|
-
# JWKS are cached for JWKS_CACHE_LIFETIME seconds, in order to avoid
|
171
|
-
#
|
172
|
-
# `force_refresh_jwks: true`.
|
33
|
+
# JWKS are cached for JWKS_CACHE_LIFETIME seconds, in order to avoid unecessary roundtrips.
|
34
|
+
# In order to invalidate the cache, pass `force_refresh_jwks: true`.
|
173
35
|
#
|
174
|
-
# A timeout for the request to the JWKs endpoint can be set with the
|
175
|
-
|
176
|
-
def verify_token(token, force_refresh_jwks: false, algorithms: ['RS256'], timeout: 5)
|
36
|
+
# A timeout for the request to the JWKs endpoint can be set with the `timeout` argument.
|
37
|
+
def verify_token(token, force_refresh_jwks: false, algorithms: ["RS256"], timeout: 5)
|
177
38
|
jwk_loader = ->(options) do
|
178
39
|
# JWT.decode requires that the 'keys' key in the Hash is a symbol (as
|
179
40
|
# opposed to a string which our SDK returns by default)
|
180
|
-
{
|
41
|
+
{keys: SDK.jwks_cache.fetch(self, kid_not_found: options[:invalidate] || options[:kid_not_found], force_refresh: force_refresh_jwks)}
|
181
42
|
end
|
182
43
|
|
183
44
|
JWT.decode(token, nil, true, algorithms: algorithms, exp_leeway: timeout, jwks: jwk_loader).first
|
@@ -0,0 +1,52 @@
|
|
1
|
+
require "sinatra/base"
|
2
|
+
require "clerk/rack"
|
3
|
+
|
4
|
+
module Sinatra
|
5
|
+
module Clerk
|
6
|
+
module Helpers
|
7
|
+
def clerk
|
8
|
+
env["clerk"]
|
9
|
+
end
|
10
|
+
|
11
|
+
def require_reverification!(preset = ::Clerk::StepUp::Preset::STRICT, &block)
|
12
|
+
clerk.user_require_reverification!(preset) do
|
13
|
+
return yield(preset) if block_given?
|
14
|
+
render_reverification!(preset)
|
15
|
+
end
|
16
|
+
end
|
17
|
+
|
18
|
+
def render_reverification!(preset = nil)
|
19
|
+
halt 403, ::Clerk::StepUp::Reverification.error_payload(preset).to_json
|
20
|
+
end
|
21
|
+
|
22
|
+
def clerk_sdk
|
23
|
+
@@sdk ||= ::Clerk::SDK.new
|
24
|
+
end
|
25
|
+
end
|
26
|
+
|
27
|
+
def self.registered(app)
|
28
|
+
app.helpers Clerk::Helpers
|
29
|
+
app.use ::Clerk::Rack::Middleware
|
30
|
+
|
31
|
+
app.set(:auth) do |active|
|
32
|
+
condition do
|
33
|
+
redirect clerk.sign_in_url if active && !clerk.session
|
34
|
+
end
|
35
|
+
end
|
36
|
+
|
37
|
+
app.set(:reverify) do |preset|
|
38
|
+
condition do
|
39
|
+
if preset === true
|
40
|
+
preset = ::Clerk::StepUp::Preset::STRICT
|
41
|
+
end
|
42
|
+
|
43
|
+
if preset
|
44
|
+
require_reverification!(preset)
|
45
|
+
end
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
50
|
+
|
51
|
+
register Clerk
|
52
|
+
end
|
data/lib/clerk/utils.rb
CHANGED
@@ -1,11 +1,51 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require "base64"
|
4
|
+
|
1
5
|
module Clerk
|
2
6
|
module Utils
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
7
|
+
class << self
|
8
|
+
def decode_publishable_key(publishable_key)
|
9
|
+
Base64.decode64(publishable_key.split("_")[2].to_s)
|
10
|
+
end
|
11
|
+
|
12
|
+
def filter_routes(routes)
|
13
|
+
filtered_routes = {}
|
14
|
+
filtered_wildcard_routes = []
|
15
|
+
|
16
|
+
routes.each do |route|
|
17
|
+
route = route.strip
|
18
|
+
|
19
|
+
if route.end_with?("/*")
|
20
|
+
filtered_wildcard_routes << route[0..-2]
|
21
|
+
else
|
22
|
+
filtered_routes[route] = true
|
23
|
+
end
|
24
|
+
end
|
25
|
+
|
26
|
+
filtered_wildcard_routes.uniq!
|
27
|
+
|
28
|
+
[filtered_routes, filtered_wildcard_routes]
|
29
|
+
end
|
30
|
+
|
31
|
+
def retrieve_from_query_string(url, key)
|
32
|
+
::Rack::Utils.parse_query(url.query)[key]
|
33
|
+
end
|
34
|
+
|
35
|
+
def valid_publishable_key?(publishable_key)
|
36
|
+
raise ArgumentError, "publishable_key must be a string" unless publishable_key.is_a?(String)
|
37
|
+
|
38
|
+
key = publishable_key.to_s
|
39
|
+
valid_publishable_key_prefix?(key) && valid_publishable_key_postfix?(key)
|
40
|
+
end
|
41
|
+
|
42
|
+
def valid_publishable_key_postfix?(publishable_key)
|
43
|
+
decode_publishable_key(publishable_key).end_with?("$")
|
44
|
+
end
|
45
|
+
|
46
|
+
def valid_publishable_key_prefix?(publishable_key)
|
47
|
+
publishable_key.start_with?("pk_live_", "pk_test_")
|
48
|
+
end
|
9
49
|
end
|
10
50
|
end
|
11
51
|
end
|
data/lib/clerk/version.rb
CHANGED
data/lib/clerk.rb
CHANGED
@@ -1,63 +1,27 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
|
3
|
+
require "clerk/configuration"
|
4
|
+
require "clerk/constants"
|
5
|
+
require "clerk/error"
|
6
|
+
require "clerk/sdk"
|
7
|
+
require "clerk/version"
|
8
|
+
|
9
|
+
if defined?(::Rails)
|
10
|
+
require "clerk/rails"
|
11
|
+
end
|
6
12
|
|
7
13
|
module Clerk
|
8
14
|
class << self
|
9
15
|
def configure
|
10
|
-
|
16
|
+
if block_given?
|
17
|
+
yield(configuration)
|
18
|
+
else
|
19
|
+
configuration
|
20
|
+
end
|
11
21
|
end
|
12
22
|
|
13
23
|
def configuration
|
14
|
-
@configuration ||=
|
15
|
-
end
|
16
|
-
end
|
17
|
-
|
18
|
-
class Config
|
19
|
-
PRODUCTION_BASE_URL = "https://api.clerk.dev/v1/".freeze
|
20
|
-
attr_accessor :api_key, :base_url, :publishable_key, :logger, :middleware_cache_store
|
21
|
-
|
22
|
-
# An array of route paths on which the middleware will not execute.
|
23
|
-
#
|
24
|
-
# Only request paths that match _exactly_ one of the routes will be skipped.
|
25
|
-
# As a special case, if a route ends with '/*', then all request paths that
|
26
|
-
# match the route's prefix will be skipped.
|
27
|
-
#
|
28
|
-
# For example, given the following configuration:
|
29
|
-
#
|
30
|
-
# excluded_routes = ["/foo", "/bar/*"]
|
31
|
-
#
|
32
|
-
# the following requests will be excluded:
|
33
|
-
#
|
34
|
-
# - /foo
|
35
|
-
# - /bar/baz
|
36
|
-
# - /bar/abc/xyz
|
37
|
-
#
|
38
|
-
# while the following requests will NOT be excluded:
|
39
|
-
#
|
40
|
-
# - /foo/bar
|
41
|
-
# - /bar
|
42
|
-
#
|
43
|
-
attr_accessor :excluded_routes
|
44
|
-
|
45
|
-
def initialize
|
46
|
-
@base_url = ENV.fetch("CLERK_API_BASE", PRODUCTION_BASE_URL)
|
47
|
-
@api_key = ENV["CLERK_API_KEY"]
|
48
|
-
|
49
|
-
secret_key = ENV["CLERK_SECRET_KEY"]
|
50
|
-
if secret_key && !secret_key.empty?
|
51
|
-
@api_key = secret_key
|
52
|
-
end
|
53
|
-
|
54
|
-
@publishable_key = ENV["CLERK_PUBLISHABLE_KEY"]
|
55
|
-
|
56
|
-
@excluded_routes = []
|
24
|
+
@configuration ||= Clerk::Configuration.default
|
57
25
|
end
|
58
26
|
end
|
59
27
|
end
|
60
|
-
|
61
|
-
if defined?(::Rails)
|
62
|
-
require_relative "clerk/railtie"
|
63
|
-
end
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: clerk-sdk-ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.0.0.
|
4
|
+
version: 4.0.0.beta5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Clerk
|
8
|
-
autorequire:
|
9
8
|
bindir: exe
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-01-27 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: faraday
|
@@ -44,6 +43,20 @@ dependencies:
|
|
44
43
|
- - "~>"
|
45
44
|
- !ruby/object:Gem::Version
|
46
45
|
version: '2.5'
|
46
|
+
- !ruby/object:Gem::Dependency
|
47
|
+
name: clerk-http-client
|
48
|
+
requirement: !ruby/object:Gem::Requirement
|
49
|
+
requirements:
|
50
|
+
- - '='
|
51
|
+
- !ruby/object:Gem::Version
|
52
|
+
version: 2.0.0.beta5
|
53
|
+
type: :runtime
|
54
|
+
prerelease: false
|
55
|
+
version_requirements: !ruby/object:Gem::Requirement
|
56
|
+
requirements:
|
57
|
+
- - '='
|
58
|
+
- !ruby/object:Gem::Version
|
59
|
+
version: 2.0.0.beta5
|
47
60
|
- !ruby/object:Gem::Dependency
|
48
61
|
name: concurrent-ruby
|
49
62
|
requirement: !ruby/object:Gem::Requirement
|
@@ -86,23 +99,183 @@ dependencies:
|
|
86
99
|
- - "~>"
|
87
100
|
- !ruby/object:Gem::Version
|
88
101
|
version: 0.9.4
|
89
|
-
description: Client SDK for the Clerk
|
102
|
+
description: Client SDK for the Clerk
|
90
103
|
email:
|
91
104
|
- ruby-sdk@clerk.dev
|
92
105
|
executables: []
|
93
106
|
extensions: []
|
94
107
|
extra_rdoc_files: []
|
95
108
|
files:
|
109
|
+
- ".env.example"
|
96
110
|
- ".github/workflows/main.yml"
|
97
111
|
- ".github/workflows/semgrep.yml"
|
98
112
|
- ".gitignore"
|
113
|
+
- ".rspec"
|
114
|
+
- ".ruby-version"
|
99
115
|
- CHANGELOG.md
|
100
|
-
- CODEOWNERS
|
101
116
|
- Gemfile
|
102
117
|
- Gemfile.lock
|
118
|
+
- Guardfile
|
103
119
|
- LICENSE.txt
|
104
120
|
- README.md
|
105
121
|
- Rakefile
|
122
|
+
- apps/rack/app.rb
|
123
|
+
- apps/rack/config.ru
|
124
|
+
- apps/rack/middleware/disable_paths.rb
|
125
|
+
- apps/rails-api/.dockerignore
|
126
|
+
- apps/rails-api/.gitattributes
|
127
|
+
- apps/rails-api/.gitignore
|
128
|
+
- apps/rails-api/.kamal/hooks/docker-setup.sample
|
129
|
+
- apps/rails-api/.kamal/hooks/post-deploy.sample
|
130
|
+
- apps/rails-api/.kamal/hooks/post-proxy-reboot.sample
|
131
|
+
- apps/rails-api/.kamal/hooks/pre-build.sample
|
132
|
+
- apps/rails-api/.kamal/hooks/pre-connect.sample
|
133
|
+
- apps/rails-api/.kamal/hooks/pre-deploy.sample
|
134
|
+
- apps/rails-api/.kamal/hooks/pre-proxy-reboot.sample
|
135
|
+
- apps/rails-api/.kamal/secrets
|
136
|
+
- apps/rails-api/.rubocop.yml
|
137
|
+
- apps/rails-api/.ruby-version
|
138
|
+
- apps/rails-api/Dockerfile
|
139
|
+
- apps/rails-api/Gemfile
|
140
|
+
- apps/rails-api/Gemfile.lock
|
141
|
+
- apps/rails-api/README.md
|
142
|
+
- apps/rails-api/Rakefile
|
143
|
+
- apps/rails-api/app/controllers/application_controller.rb
|
144
|
+
- apps/rails-api/app/controllers/home_controller.rb
|
145
|
+
- apps/rails-api/app/jobs/application_job.rb
|
146
|
+
- apps/rails-api/app/mailers/application_mailer.rb
|
147
|
+
- apps/rails-api/app/models/application_record.rb
|
148
|
+
- apps/rails-api/app/views/layouts/mailer.html.erb
|
149
|
+
- apps/rails-api/app/views/layouts/mailer.text.erb
|
150
|
+
- apps/rails-api/bin/brakeman
|
151
|
+
- apps/rails-api/bin/bundle
|
152
|
+
- apps/rails-api/bin/dev
|
153
|
+
- apps/rails-api/bin/docker-entrypoint
|
154
|
+
- apps/rails-api/bin/jobs
|
155
|
+
- apps/rails-api/bin/kamal
|
156
|
+
- apps/rails-api/bin/rails
|
157
|
+
- apps/rails-api/bin/rake
|
158
|
+
- apps/rails-api/bin/rubocop
|
159
|
+
- apps/rails-api/bin/setup
|
160
|
+
- apps/rails-api/bin/thrust
|
161
|
+
- apps/rails-api/config.ru
|
162
|
+
- apps/rails-api/config/application.rb
|
163
|
+
- apps/rails-api/config/boot.rb
|
164
|
+
- apps/rails-api/config/cable.yml
|
165
|
+
- apps/rails-api/config/cache.yml
|
166
|
+
- apps/rails-api/config/credentials.yml.enc
|
167
|
+
- apps/rails-api/config/database.yml
|
168
|
+
- apps/rails-api/config/deploy.yml
|
169
|
+
- apps/rails-api/config/environment.rb
|
170
|
+
- apps/rails-api/config/environments/development.rb
|
171
|
+
- apps/rails-api/config/environments/production.rb
|
172
|
+
- apps/rails-api/config/environments/test.rb
|
173
|
+
- apps/rails-api/config/initializers/cors.rb
|
174
|
+
- apps/rails-api/config/initializers/filter_parameter_logging.rb
|
175
|
+
- apps/rails-api/config/initializers/inflections.rb
|
176
|
+
- apps/rails-api/config/locales/en.yml
|
177
|
+
- apps/rails-api/config/puma.rb
|
178
|
+
- apps/rails-api/config/queue.yml
|
179
|
+
- apps/rails-api/config/recurring.yml
|
180
|
+
- apps/rails-api/config/routes.rb
|
181
|
+
- apps/rails-api/config/storage.yml
|
182
|
+
- apps/rails-api/db/cable_schema.rb
|
183
|
+
- apps/rails-api/db/cache_schema.rb
|
184
|
+
- apps/rails-api/db/queue_schema.rb
|
185
|
+
- apps/rails-api/db/seeds.rb
|
186
|
+
- apps/rails-api/public/robots.txt
|
187
|
+
- apps/rails-api/test/controllers/home_controller_test.rb
|
188
|
+
- apps/rails-api/test/test_helper.rb
|
189
|
+
- apps/rails-full/.dockerignore
|
190
|
+
- apps/rails-full/.gitattributes
|
191
|
+
- apps/rails-full/.gitignore
|
192
|
+
- apps/rails-full/.kamal/hooks/docker-setup.sample
|
193
|
+
- apps/rails-full/.kamal/hooks/post-deploy.sample
|
194
|
+
- apps/rails-full/.kamal/hooks/post-proxy-reboot.sample
|
195
|
+
- apps/rails-full/.kamal/hooks/pre-build.sample
|
196
|
+
- apps/rails-full/.kamal/hooks/pre-connect.sample
|
197
|
+
- apps/rails-full/.kamal/hooks/pre-deploy.sample
|
198
|
+
- apps/rails-full/.kamal/hooks/pre-proxy-reboot.sample
|
199
|
+
- apps/rails-full/.kamal/secrets
|
200
|
+
- apps/rails-full/.rubocop.yml
|
201
|
+
- apps/rails-full/.ruby-version
|
202
|
+
- apps/rails-full/Dockerfile
|
203
|
+
- apps/rails-full/Gemfile
|
204
|
+
- apps/rails-full/Gemfile.lock
|
205
|
+
- apps/rails-full/README.md
|
206
|
+
- apps/rails-full/Rakefile
|
207
|
+
- apps/rails-full/app/assets/stylesheets/application.css
|
208
|
+
- apps/rails-full/app/controllers/application_controller.rb
|
209
|
+
- apps/rails-full/app/controllers/home_controller.rb
|
210
|
+
- apps/rails-full/app/helpers/application_helper.rb
|
211
|
+
- apps/rails-full/app/helpers/home_helper.rb
|
212
|
+
- apps/rails-full/app/javascript/application.js
|
213
|
+
- apps/rails-full/app/javascript/controllers/application.js
|
214
|
+
- apps/rails-full/app/javascript/controllers/hello_controller.js
|
215
|
+
- apps/rails-full/app/javascript/controllers/index.js
|
216
|
+
- apps/rails-full/app/jobs/application_job.rb
|
217
|
+
- apps/rails-full/app/mailers/application_mailer.rb
|
218
|
+
- apps/rails-full/app/models/application_record.rb
|
219
|
+
- apps/rails-full/app/views/home/index.html.erb
|
220
|
+
- apps/rails-full/app/views/layouts/application.html.erb
|
221
|
+
- apps/rails-full/app/views/layouts/mailer.html.erb
|
222
|
+
- apps/rails-full/app/views/layouts/mailer.text.erb
|
223
|
+
- apps/rails-full/app/views/pwa/manifest.json.erb
|
224
|
+
- apps/rails-full/app/views/pwa/service-worker.js
|
225
|
+
- apps/rails-full/bin/brakeman
|
226
|
+
- apps/rails-full/bin/bundle
|
227
|
+
- apps/rails-full/bin/dev
|
228
|
+
- apps/rails-full/bin/docker-entrypoint
|
229
|
+
- apps/rails-full/bin/importmap
|
230
|
+
- apps/rails-full/bin/jobs
|
231
|
+
- apps/rails-full/bin/kamal
|
232
|
+
- apps/rails-full/bin/rails
|
233
|
+
- apps/rails-full/bin/rake
|
234
|
+
- apps/rails-full/bin/rubocop
|
235
|
+
- apps/rails-full/bin/setup
|
236
|
+
- apps/rails-full/bin/thrust
|
237
|
+
- apps/rails-full/config.ru
|
238
|
+
- apps/rails-full/config/application.rb
|
239
|
+
- apps/rails-full/config/boot.rb
|
240
|
+
- apps/rails-full/config/cable.yml
|
241
|
+
- apps/rails-full/config/cache.yml
|
242
|
+
- apps/rails-full/config/credentials.yml.enc
|
243
|
+
- apps/rails-full/config/database.yml
|
244
|
+
- apps/rails-full/config/deploy.yml
|
245
|
+
- apps/rails-full/config/environment.rb
|
246
|
+
- apps/rails-full/config/environments/development.rb
|
247
|
+
- apps/rails-full/config/environments/production.rb
|
248
|
+
- apps/rails-full/config/environments/test.rb
|
249
|
+
- apps/rails-full/config/importmap.rb
|
250
|
+
- apps/rails-full/config/initializers/assets.rb
|
251
|
+
- apps/rails-full/config/initializers/clerk.rb
|
252
|
+
- apps/rails-full/config/initializers/content_security_policy.rb
|
253
|
+
- apps/rails-full/config/initializers/filter_parameter_logging.rb
|
254
|
+
- apps/rails-full/config/initializers/inflections.rb
|
255
|
+
- apps/rails-full/config/locales/en.yml
|
256
|
+
- apps/rails-full/config/puma.rb
|
257
|
+
- apps/rails-full/config/queue.yml
|
258
|
+
- apps/rails-full/config/recurring.yml
|
259
|
+
- apps/rails-full/config/routes.rb
|
260
|
+
- apps/rails-full/config/storage.yml
|
261
|
+
- apps/rails-full/db/cable_schema.rb
|
262
|
+
- apps/rails-full/db/cache_schema.rb
|
263
|
+
- apps/rails-full/db/queue_schema.rb
|
264
|
+
- apps/rails-full/db/seeds.rb
|
265
|
+
- apps/rails-full/public/400.html
|
266
|
+
- apps/rails-full/public/404.html
|
267
|
+
- apps/rails-full/public/406-unsupported-browser.html
|
268
|
+
- apps/rails-full/public/422.html
|
269
|
+
- apps/rails-full/public/500.html
|
270
|
+
- apps/rails-full/public/icon.png
|
271
|
+
- apps/rails-full/public/icon.svg
|
272
|
+
- apps/rails-full/public/robots.txt
|
273
|
+
- apps/rails-full/test/application_system_test_case.rb
|
274
|
+
- apps/rails-full/test/controllers/home_controller_test.rb
|
275
|
+
- apps/rails-full/test/test_helper.rb
|
276
|
+
- apps/sinatra/app.rb
|
277
|
+
- apps/sinatra/config.ru
|
278
|
+
- apps/sinatra/views/index.erb
|
106
279
|
- bin/console
|
107
280
|
- bin/setup
|
108
281
|
- clerk-sdk-ruby.gemspec
|
@@ -112,26 +285,17 @@ files:
|
|
112
285
|
- lib/clerk/authenticatable.rb
|
113
286
|
- lib/clerk/authenticate_context.rb
|
114
287
|
- lib/clerk/authenticate_request.rb
|
288
|
+
- lib/clerk/configuration.rb
|
115
289
|
- lib/clerk/constants.rb
|
116
|
-
- lib/clerk/
|
290
|
+
- lib/clerk/error.rb
|
117
291
|
- lib/clerk/jwks_cache.rb
|
292
|
+
- lib/clerk/proxy.rb
|
293
|
+
- lib/clerk/rack.rb
|
118
294
|
- lib/clerk/rack_middleware.rb
|
119
|
-
- lib/clerk/
|
295
|
+
- lib/clerk/rails.rb
|
120
296
|
- lib/clerk/railtie.rb
|
121
|
-
- lib/clerk/resources.rb
|
122
|
-
- lib/clerk/resources/allowlist.rb
|
123
|
-
- lib/clerk/resources/allowlist_identifiers.rb
|
124
|
-
- lib/clerk/resources/clients.rb
|
125
|
-
- lib/clerk/resources/email_addresses.rb
|
126
|
-
- lib/clerk/resources/emails.rb
|
127
|
-
- lib/clerk/resources/jwks.rb
|
128
|
-
- lib/clerk/resources/organizations.rb
|
129
|
-
- lib/clerk/resources/phone_numbers.rb
|
130
|
-
- lib/clerk/resources/plural_resource.rb
|
131
|
-
- lib/clerk/resources/sessions.rb
|
132
|
-
- lib/clerk/resources/singular_resource.rb
|
133
|
-
- lib/clerk/resources/users.rb
|
134
297
|
- lib/clerk/sdk.rb
|
298
|
+
- lib/clerk/sinatra.rb
|
135
299
|
- lib/clerk/utils.rb
|
136
300
|
- lib/clerk/version.rb
|
137
301
|
homepage: https://github.com/clerkinc/clerk-sdk-ruby
|
@@ -141,7 +305,6 @@ metadata:
|
|
141
305
|
homepage_uri: https://github.com/clerkinc/clerk-sdk-ruby
|
142
306
|
source_code_uri: https://github.com/clerkinc/clerk-sdk-ruby
|
143
307
|
changelog_uri: https://github.com/clerkinc/clerk-sdk-ruby/blob/main/CHANGELOG.md
|
144
|
-
post_install_message:
|
145
308
|
rdoc_options: []
|
146
309
|
require_paths:
|
147
310
|
- lib
|
@@ -152,12 +315,11 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
152
315
|
version: 2.4.0
|
153
316
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
154
317
|
requirements:
|
155
|
-
- - "
|
318
|
+
- - ">="
|
156
319
|
- !ruby/object:Gem::Version
|
157
|
-
version:
|
320
|
+
version: '0'
|
158
321
|
requirements: []
|
159
|
-
rubygems_version: 3.2
|
160
|
-
signing_key:
|
322
|
+
rubygems_version: 3.6.2
|
161
323
|
specification_version: 4
|
162
324
|
summary: Clerk SDK for Ruby.
|
163
325
|
test_files: []
|
data/CODEOWNERS
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
* @clerkinc/backend
|