shopify_app 13.0.0 → 17.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/ISSUE_TEMPLATE/bug-report.md +63 -0
- data/.github/ISSUE_TEMPLATE/config.yml +1 -0
- data/.github/ISSUE_TEMPLATE/feature-request.md +33 -0
- data/.github/PULL_REQUEST_TEMPLATE.md +22 -0
- data/.github/workflows/build.yml +38 -0
- data/.github/workflows/release.yml +24 -0
- data/.github/workflows/rubocop.yml +22 -0
- data/.gitignore +0 -2
- data/.rubocop.yml +14 -6
- data/CHANGELOG.md +132 -0
- data/CONTRIBUTING.md +76 -0
- data/Gemfile +5 -0
- data/Gemfile.lock +256 -0
- data/README.md +72 -534
- data/Rakefile +1 -0
- data/SECURITY.md +59 -0
- data/app/assets/images/storage_access.svg +1 -2
- data/app/assets/javascripts/shopify_app/storage_access.js +2 -1
- data/app/assets/javascripts/shopify_app/top_level_interaction.js +1 -1
- data/app/controllers/concerns/shopify_app/authenticated.rb +1 -0
- data/app/controllers/concerns/shopify_app/ensure_authenticated_links.rb +26 -0
- data/app/controllers/concerns/shopify_app/require_known_shop.rb +39 -0
- data/app/controllers/concerns/shopify_app/shop_access_scopes_verification.rb +32 -0
- data/app/controllers/shopify_app/authenticated_controller.rb +1 -0
- data/app/controllers/shopify_app/callback_controller.rb +105 -18
- data/app/controllers/shopify_app/extension_verification_controller.rb +2 -7
- data/app/controllers/shopify_app/sessions_controller.rb +22 -10
- data/app/controllers/shopify_app/webhooks_controller.rb +6 -5
- data/app/views/shopify_app/partials/_button_styles.html.erb +41 -36
- data/app/views/shopify_app/partials/_card_styles.html.erb +3 -3
- data/app/views/shopify_app/partials/_empty_state_styles.html.erb +28 -59
- data/app/views/shopify_app/partials/_form_styles.html.erb +56 -0
- data/app/views/shopify_app/partials/_layout_styles.html.erb +16 -1
- data/app/views/shopify_app/partials/_typography_styles.html.erb +6 -6
- data/app/views/shopify_app/sessions/enable_cookies.html.erb +2 -7
- data/app/views/shopify_app/sessions/new.html.erb +38 -110
- data/app/views/shopify_app/sessions/request_storage_access.html.erb +1 -1
- data/app/views/shopify_app/sessions/top_level_interaction.html.erb +21 -22
- data/config/locales/de.yml +11 -11
- data/config/locales/fi.yml +1 -1
- data/config/locales/nl.yml +7 -7
- data/config/locales/th.yml +4 -4
- data/config/locales/vi.yml +22 -0
- data/config/locales/zh-CN.yml +1 -1
- data/config/routes.rb +1 -0
- data/docs/Quickstart.md +15 -87
- data/docs/Releasing.md +18 -14
- data/docs/Upgrading.md +110 -0
- data/docs/shopify_app/authentication.md +124 -0
- data/docs/shopify_app/engine.md +82 -0
- data/docs/shopify_app/generators.md +127 -0
- data/docs/shopify_app/handling-access-scopes-changes.md +8 -0
- data/docs/shopify_app/script-tags.md +28 -0
- data/docs/shopify_app/session-repository.md +88 -0
- data/docs/shopify_app/testing.md +38 -0
- data/docs/shopify_app/webhooks.md +72 -0
- data/karma.conf.js +1 -1
- data/lib/generators/shopify_app/add_after_authenticate_job/add_after_authenticate_job_generator.rb +5 -3
- data/lib/generators/shopify_app/add_after_authenticate_job/templates/after_authenticate_job.rb +1 -0
- data/lib/generators/shopify_app/add_marketing_activity_extension/add_marketing_activity_extension_generator.rb +2 -1
- data/lib/generators/shopify_app/add_marketing_activity_extension/templates/marketing_activities_controller.rb +4 -4
- data/lib/generators/shopify_app/add_webhook/add_webhook_generator.rb +5 -4
- data/lib/generators/shopify_app/add_webhook/templates/{webhook_job.rb → webhook_job.rb.tt} +5 -0
- data/lib/generators/shopify_app/app_proxy_controller/app_proxy_controller_generator.rb +4 -3
- data/lib/generators/shopify_app/app_proxy_controller/templates/app_proxy_controller.rb +3 -3
- data/lib/generators/shopify_app/app_proxy_controller/templates/app_proxy_route.rb +10 -9
- data/lib/generators/shopify_app/authenticated_controller/authenticated_controller_generator.rb +1 -1
- data/lib/generators/shopify_app/controllers/controllers_generator.rb +2 -1
- data/lib/generators/shopify_app/home_controller/home_controller_generator.rb +31 -3
- data/lib/generators/shopify_app/home_controller/templates/home_controller.rb +2 -0
- data/lib/generators/shopify_app/home_controller/templates/index.html.erb +66 -16
- data/lib/generators/shopify_app/home_controller/templates/unauthenticated_home_controller.rb +11 -0
- data/lib/generators/shopify_app/install/install_generator.rb +46 -11
- data/lib/generators/shopify_app/install/templates/embedded_app.html.erb +1 -1
- data/lib/generators/shopify_app/install/templates/flash_messages.js +0 -2
- data/lib/generators/shopify_app/install/templates/omniauth.rb +3 -1
- data/lib/generators/shopify_app/install/templates/shopify_app.rb.tt +25 -0
- data/lib/generators/shopify_app/install/templates/shopify_provider.rb.tt +8 -0
- data/lib/generators/shopify_app/install/templates/user_agent.rb +2 -1
- data/lib/generators/shopify_app/products_controller/products_controller_generator.rb +19 -0
- data/lib/generators/shopify_app/products_controller/templates/products_controller.rb +8 -0
- data/lib/generators/shopify_app/routes/routes_generator.rb +1 -0
- data/lib/generators/shopify_app/routes/templates/routes.rb +10 -9
- data/lib/generators/shopify_app/shop_model/shop_model_generator.rb +39 -7
- data/lib/generators/shopify_app/shop_model/templates/db/migrate/add_shop_access_scopes_column.erb +5 -0
- data/lib/generators/shopify_app/shop_model/templates/shop.rb +2 -1
- data/lib/generators/shopify_app/shopify_app_generator.rb +4 -3
- data/lib/generators/shopify_app/user_model/templates/db/migrate/add_user_access_scopes_column.erb +5 -0
- data/lib/generators/shopify_app/user_model/templates/user.rb +2 -1
- data/lib/generators/shopify_app/user_model/user_model_generator.rb +39 -7
- data/lib/generators/shopify_app/views/views_generator.rb +2 -1
- data/lib/shopify_app/access_scopes/noop_strategy.rb +13 -0
- data/lib/shopify_app/access_scopes/shop_strategy.rb +24 -0
- data/lib/shopify_app/access_scopes/user_strategy.rb +41 -0
- data/lib/shopify_app/configuration.rb +40 -8
- data/lib/shopify_app/controller_concerns/app_proxy_verification.rb +3 -3
- data/lib/shopify_app/controller_concerns/csrf_protection.rb +15 -0
- data/lib/shopify_app/controller_concerns/embedded_app.rb +3 -2
- data/lib/shopify_app/controller_concerns/localization.rb +1 -0
- data/lib/shopify_app/controller_concerns/login_protection.rb +74 -16
- data/lib/shopify_app/controller_concerns/payload_verification.rb +24 -0
- data/lib/shopify_app/controller_concerns/webhook_verification.rb +3 -18
- data/lib/shopify_app/engine.rb +26 -0
- data/lib/shopify_app/jobs/scripttags_manager_job.rb +1 -1
- data/lib/shopify_app/jobs/webhooks_manager_job.rb +1 -1
- data/lib/shopify_app/managers/scripttags_manager.rb +4 -3
- data/lib/shopify_app/managers/webhooks_manager.rb +4 -3
- data/lib/shopify_app/middleware/jwt_middleware.rb +42 -0
- data/lib/shopify_app/middleware/same_site_cookie_middleware.rb +2 -1
- data/lib/shopify_app/omniauth/omniauth_configuration.rb +64 -0
- data/lib/shopify_app/session/in_memory_session_store.rb +7 -3
- data/lib/shopify_app/session/in_memory_shop_session_store.rb +12 -0
- data/lib/shopify_app/session/in_memory_user_session_store.rb +12 -0
- data/lib/shopify_app/session/jwt.rb +63 -0
- data/lib/shopify_app/session/null_user_session_store.rb +22 -0
- data/lib/shopify_app/session/session_repository.rb +13 -16
- data/lib/shopify_app/session/session_storage.rb +1 -0
- data/lib/shopify_app/session/shop_session_storage.rb +21 -9
- data/lib/shopify_app/session/shop_session_storage_with_scopes.rb +58 -0
- data/lib/shopify_app/session/user_session_storage.rb +19 -8
- data/lib/shopify_app/session/user_session_storage_with_scopes.rb +58 -0
- data/lib/shopify_app/test_helpers/all.rb +2 -0
- data/lib/shopify_app/test_helpers/webhook_verification_helper.rb +17 -0
- data/lib/shopify_app/utils.rb +18 -5
- data/lib/shopify_app/version.rb +2 -1
- data/lib/shopify_app.rb +22 -5
- data/package.json +7 -8
- data/shopify_app.gemspec +13 -8
- data/translation.yml +1 -1
- data/yarn.lock +2120 -2168
- metadata +88 -16
- data/.github/ISSUE_TEMPLATE.md +0 -14
- data/.travis.yml +0 -27
- data/docs/install-on-dev-shop.png +0 -0
- data/docs/test-your-app.png +0 -0
- data/lib/generators/shopify_app/install/templates/shopify_app.rb +0 -15
- data/lib/generators/shopify_app/install/templates/shopify_provider.rb +0 -20
- data/package-lock.json +0 -7245
@@ -1,3 +1,4 @@
|
|
1
|
+
# frozen_string_literal: true
|
1
2
|
module ShopifyApp
|
2
3
|
module Generators
|
3
4
|
class ShopifyAppGenerator < Rails::Generators::Base
|
@@ -7,10 +8,10 @@ module ShopifyApp
|
|
7
8
|
end
|
8
9
|
|
9
10
|
def run_all_generators
|
10
|
-
generate
|
11
|
-
generate
|
11
|
+
generate("shopify_app:install #{@opts.join(' ')}")
|
12
|
+
generate("shopify_app:shop_model #{@opts.join(' ')}")
|
12
13
|
generate("shopify_app:authenticated_controller")
|
13
|
-
generate
|
14
|
+
generate("shopify_app:home_controller #{@opts.join(' ')}")
|
14
15
|
end
|
15
16
|
end
|
16
17
|
end
|
@@ -1,3 +1,4 @@
|
|
1
|
+
# frozen_string_literal: true
|
1
2
|
require 'rails/generators/base'
|
2
3
|
require 'rails/generators/active_record'
|
3
4
|
|
@@ -7,31 +8,62 @@ module ShopifyApp
|
|
7
8
|
include Rails::Generators::Migration
|
8
9
|
source_root File.expand_path('../templates', __FILE__)
|
9
10
|
|
11
|
+
class_option :new_shopify_cli_app, type: :boolean, default: false
|
12
|
+
|
10
13
|
def create_user_model
|
11
|
-
copy_file
|
14
|
+
copy_file('user.rb', 'app/models/user.rb')
|
12
15
|
end
|
13
16
|
|
14
17
|
def create_user_migration
|
15
|
-
migration_template
|
18
|
+
migration_template('db/migrate/create_users.erb', 'db/migrate/create_users.rb')
|
19
|
+
end
|
20
|
+
|
21
|
+
def create_scopes_storage_in_user_model
|
22
|
+
scopes_column_prompt = <<~PROMPT
|
23
|
+
It is highly recommended that apps record the access scopes granted by \
|
24
|
+
merchants during app installation. See app/models/user.rb to modify how \
|
25
|
+
access scopes are stored and retrieved.
|
26
|
+
|
27
|
+
[WARNING] You will need to update the access_scopes accessors in the User model \
|
28
|
+
to allow shopify_app to store and retrieve scopes when going through OAuth.
|
29
|
+
|
30
|
+
The following migration will add an `access_scopes` column to the User model. \
|
31
|
+
Do you want to include this migration? [y/n]
|
32
|
+
PROMPT
|
33
|
+
|
34
|
+
if new_shopify_cli_app? || Rails.env.test? || yes?(scopes_column_prompt)
|
35
|
+
migration_template(
|
36
|
+
'db/migrate/add_user_access_scopes_column.erb',
|
37
|
+
'db/migrate/add_user_access_scopes_column.rb'
|
38
|
+
)
|
39
|
+
end
|
16
40
|
end
|
17
41
|
|
18
42
|
def update_shopify_app_initializer
|
19
|
-
gsub_file
|
43
|
+
gsub_file('config/initializers/shopify_app.rb', 'ShopifyApp::InMemoryUserSessionStore', 'User')
|
20
44
|
end
|
21
45
|
|
22
46
|
def create_user_fixtures
|
23
|
-
copy_file
|
47
|
+
copy_file('users.yml', 'test/fixtures/users.yml')
|
24
48
|
end
|
25
49
|
|
26
50
|
private
|
27
51
|
|
52
|
+
def new_shopify_cli_app?
|
53
|
+
options['new_shopify_cli_app']
|
54
|
+
end
|
55
|
+
|
28
56
|
def rails_migration_version
|
29
57
|
Rails.version.match(/\d\.\d/)[0]
|
30
58
|
end
|
31
59
|
|
32
|
-
|
33
|
-
|
34
|
-
|
60
|
+
class << self
|
61
|
+
private :next_migration_number
|
62
|
+
|
63
|
+
# for generating a timestamp when using `create_migration`
|
64
|
+
def next_migration_number(dir)
|
65
|
+
ActiveRecord::Generators::Base.next_migration_number(dir)
|
66
|
+
end
|
35
67
|
end
|
36
68
|
end
|
37
69
|
end
|
@@ -0,0 +1,24 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module ShopifyApp
|
4
|
+
module AccessScopes
|
5
|
+
class ShopStrategy
|
6
|
+
class << self
|
7
|
+
def update_access_scopes?(shop_domain)
|
8
|
+
shop_access_scopes = shop_access_scopes(shop_domain)
|
9
|
+
configuration_access_scopes != shop_access_scopes
|
10
|
+
end
|
11
|
+
|
12
|
+
private
|
13
|
+
|
14
|
+
def shop_access_scopes(shop_domain)
|
15
|
+
ShopifyApp::SessionRepository.retrieve_shop_session_by_shopify_domain(shop_domain)&.access_scopes
|
16
|
+
end
|
17
|
+
|
18
|
+
def configuration_access_scopes
|
19
|
+
ShopifyAPI::ApiAccess.new(ShopifyApp.configuration.shop_access_scopes)
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
@@ -0,0 +1,41 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module ShopifyApp
|
4
|
+
module AccessScopes
|
5
|
+
class UserStrategy
|
6
|
+
class InvalidInput < StandardError; end
|
7
|
+
|
8
|
+
class << self
|
9
|
+
def update_access_scopes?(user_id: nil, shopify_user_id: nil)
|
10
|
+
return update_access_scopes_for_user_id?(user_id) if user_id
|
11
|
+
return update_access_scopes_for_shopify_user_id?(shopify_user_id) if shopify_user_id
|
12
|
+
raise(InvalidInput, '#update_access_scopes? requires user_id or shopify_user_id parameter inputs')
|
13
|
+
end
|
14
|
+
|
15
|
+
private
|
16
|
+
|
17
|
+
def update_access_scopes_for_user_id?(user_id)
|
18
|
+
user_access_scopes = user_access_scopes_by_user_id(user_id)
|
19
|
+
configuration_access_scopes != user_access_scopes
|
20
|
+
end
|
21
|
+
|
22
|
+
def update_access_scopes_for_shopify_user_id?(shopify_user_id)
|
23
|
+
user_access_scopes = user_access_scopes_by_shopify_user_id(shopify_user_id)
|
24
|
+
configuration_access_scopes != user_access_scopes
|
25
|
+
end
|
26
|
+
|
27
|
+
def user_access_scopes_by_user_id(user_id)
|
28
|
+
ShopifyApp::SessionRepository.retrieve_user_session(user_id)&.access_scopes
|
29
|
+
end
|
30
|
+
|
31
|
+
def user_access_scopes_by_shopify_user_id(shopify_user_id)
|
32
|
+
ShopifyApp::SessionRepository.retrieve_user_session_by_shopify_user_id(shopify_user_id)&.access_scopes
|
33
|
+
end
|
34
|
+
|
35
|
+
def configuration_access_scopes
|
36
|
+
ShopifyAPI::ApiAccess.new(ShopifyApp.configuration.user_access_scopes)
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
@@ -1,26 +1,28 @@
|
|
1
|
+
# frozen_string_literal: true
|
1
2
|
module ShopifyApp
|
2
3
|
class Configuration
|
3
|
-
|
4
4
|
# Shopify App settings. These values should match the configuration
|
5
5
|
# for the app in your Shopify Partners page. Change your settings in
|
6
6
|
# `config/initializers/shopify_app.rb`
|
7
7
|
attr_accessor :application_name
|
8
|
-
attr_accessor
|
8
|
+
attr_accessor :api_key
|
9
9
|
attr_accessor :secret
|
10
10
|
attr_accessor :old_secret
|
11
11
|
attr_accessor :scope
|
12
|
+
attr_writer :shop_access_scopes
|
13
|
+
attr_writer :user_access_scopes
|
12
14
|
attr_accessor :embedded_app
|
13
15
|
alias_method :embedded_app?, :embedded_app
|
14
16
|
attr_accessor :webhooks
|
15
17
|
attr_accessor :scripttags
|
16
18
|
attr_accessor :after_authenticate_job
|
17
|
-
attr_reader :shop_session_repository
|
18
|
-
attr_reader :user_session_repository
|
19
19
|
attr_accessor :api_version
|
20
20
|
|
21
|
+
attr_accessor :reauth_on_access_scope_changes
|
22
|
+
|
21
23
|
# customise urls
|
22
24
|
attr_accessor :root_url
|
23
|
-
|
25
|
+
attr_writer :login_url
|
24
26
|
|
25
27
|
# customise ActiveJob queue names
|
26
28
|
attr_accessor :scripttags_manager_queue_name
|
@@ -36,7 +38,12 @@ module ShopifyApp
|
|
36
38
|
attr_accessor :webhook_jobs_namespace
|
37
39
|
|
38
40
|
# allow enabling of same site none on cookies
|
39
|
-
|
41
|
+
attr_writer :enable_same_site_none
|
42
|
+
|
43
|
+
# allow enabling jwt headers for authentication
|
44
|
+
attr_accessor :allow_jwt_authentication
|
45
|
+
|
46
|
+
attr_accessor :allow_cookie_authentication
|
40
47
|
|
41
48
|
def initialize
|
42
49
|
@root_url = '/'
|
@@ -44,6 +51,7 @@ module ShopifyApp
|
|
44
51
|
@scripttags_manager_queue_name = Rails.application.config.active_job.queue_name
|
45
52
|
@webhooks_manager_queue_name = Rails.application.config.active_job.queue_name
|
46
53
|
@disable_webpacker = ENV['SHOPIFY_APP_DISABLE_WEBPACKER'].present?
|
54
|
+
@allow_cookie_authentication = true
|
47
55
|
end
|
48
56
|
|
49
57
|
def login_url
|
@@ -51,15 +59,31 @@ module ShopifyApp
|
|
51
59
|
end
|
52
60
|
|
53
61
|
def user_session_repository=(klass)
|
54
|
-
@user_session_repository = klass
|
55
62
|
ShopifyApp::SessionRepository.user_storage = klass
|
56
63
|
end
|
57
64
|
|
65
|
+
def user_session_repository
|
66
|
+
ShopifyApp::SessionRepository.user_storage
|
67
|
+
end
|
68
|
+
|
58
69
|
def shop_session_repository=(klass)
|
59
|
-
@shop_session_repository = klass
|
60
70
|
ShopifyApp::SessionRepository.shop_storage = klass
|
61
71
|
end
|
62
72
|
|
73
|
+
def shop_session_repository
|
74
|
+
ShopifyApp::SessionRepository.shop_storage
|
75
|
+
end
|
76
|
+
|
77
|
+
def shop_access_scopes_strategy
|
78
|
+
return ShopifyApp::AccessScopes::NoopStrategy unless reauth_on_access_scope_changes
|
79
|
+
ShopifyApp::AccessScopes::ShopStrategy
|
80
|
+
end
|
81
|
+
|
82
|
+
def user_access_scopes_strategy
|
83
|
+
return ShopifyApp::AccessScopes::NoopStrategy unless reauth_on_access_scope_changes
|
84
|
+
ShopifyApp::AccessScopes::UserStrategy
|
85
|
+
end
|
86
|
+
|
63
87
|
def has_webhooks?
|
64
88
|
webhooks.present?
|
65
89
|
end
|
@@ -71,6 +95,14 @@ module ShopifyApp
|
|
71
95
|
def enable_same_site_none
|
72
96
|
!Rails.env.test? && (@enable_same_site_none.nil? ? embedded_app? : @enable_same_site_none)
|
73
97
|
end
|
98
|
+
|
99
|
+
def shop_access_scopes
|
100
|
+
@shop_access_scopes || scope
|
101
|
+
end
|
102
|
+
|
103
|
+
def user_access_scopes
|
104
|
+
@user_access_scopes || scope
|
105
|
+
end
|
74
106
|
end
|
75
107
|
|
76
108
|
def self.configuration
|
@@ -1,14 +1,14 @@
|
|
1
|
+
# frozen_string_literal: true
|
1
2
|
module ShopifyApp
|
2
3
|
module AppProxyVerification
|
3
4
|
extend ActiveSupport::Concern
|
4
|
-
|
5
5
|
included do
|
6
6
|
skip_before_action :verify_authenticity_token, raise: false
|
7
7
|
before_action :verify_proxy_request
|
8
8
|
end
|
9
9
|
|
10
10
|
def verify_proxy_request
|
11
|
-
return head
|
11
|
+
return head(:forbidden) unless query_string_valid?(request.query_string)
|
12
12
|
end
|
13
13
|
|
14
14
|
private
|
@@ -26,7 +26,7 @@ module ShopifyApp
|
|
26
26
|
end
|
27
27
|
|
28
28
|
def calculated_signature(query_hash_without_signature)
|
29
|
-
sorted_params = query_hash_without_signature.collect{|k,v| "#{k}=#{Array(v).join(',')}"}.sort.join
|
29
|
+
sorted_params = query_hash_without_signature.collect { |k, v| "#{k}=#{Array(v).join(',')}" }.sort.join
|
30
30
|
|
31
31
|
OpenSSL::HMAC.hexdigest(
|
32
32
|
OpenSSL::Digest.new('sha256'),
|
@@ -0,0 +1,15 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
module ShopifyApp
|
3
|
+
module CsrfProtection
|
4
|
+
extend ActiveSupport::Concern
|
5
|
+
included do
|
6
|
+
protect_from_forgery with: :exception, unless: :valid_session_token?
|
7
|
+
end
|
8
|
+
|
9
|
+
private
|
10
|
+
|
11
|
+
def valid_session_token?
|
12
|
+
request.env['jwt.shopify_domain']
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
@@ -1,11 +1,12 @@
|
|
1
|
+
# frozen_string_literal: true
|
1
2
|
module ShopifyApp
|
2
3
|
module EmbeddedApp
|
3
4
|
extend ActiveSupport::Concern
|
4
5
|
|
5
6
|
included do
|
6
7
|
if ShopifyApp.configuration.embedded_app?
|
7
|
-
after_action
|
8
|
-
layout
|
8
|
+
after_action(:set_esdk_headers)
|
9
|
+
layout('embedded_app')
|
9
10
|
end
|
10
11
|
end
|
11
12
|
|
@@ -11,11 +11,19 @@ module ShopifyApp
|
|
11
11
|
|
12
12
|
included do
|
13
13
|
after_action :set_test_cookie
|
14
|
-
rescue_from ActiveResource::UnauthorizedAccess, :
|
14
|
+
rescue_from ActiveResource::UnauthorizedAccess, with: :close_session
|
15
15
|
end
|
16
16
|
|
17
|
+
ACCESS_TOKEN_REQUIRED_HEADER = 'X-Shopify-API-Request-Failure-Unauthorized'
|
18
|
+
|
17
19
|
def activate_shopify_session
|
20
|
+
if user_session_expected? && user_session.blank?
|
21
|
+
signal_access_token_required
|
22
|
+
return redirect_to_login
|
23
|
+
end
|
24
|
+
|
18
25
|
return redirect_to_login if current_shopify_session.blank?
|
26
|
+
|
19
27
|
clear_top_level_oauth_cookie
|
20
28
|
|
21
29
|
begin
|
@@ -27,30 +35,51 @@ module ShopifyApp
|
|
27
35
|
end
|
28
36
|
|
29
37
|
def current_shopify_session
|
30
|
-
|
31
|
-
|
32
|
-
else
|
33
|
-
@current_shopify_session ||= shop_session
|
38
|
+
@current_shopify_session ||= begin
|
39
|
+
user_session || shop_session
|
34
40
|
end
|
35
41
|
end
|
36
42
|
|
37
43
|
def user_session
|
38
|
-
|
44
|
+
user_session_by_jwt || user_session_by_cookie
|
45
|
+
end
|
46
|
+
|
47
|
+
def user_session_by_jwt
|
48
|
+
return unless ShopifyApp.configuration.allow_jwt_authentication
|
49
|
+
return unless jwt_shopify_user_id
|
50
|
+
ShopifyApp::SessionRepository.retrieve_user_session_by_shopify_user_id(jwt_shopify_user_id)
|
51
|
+
end
|
52
|
+
|
53
|
+
def user_session_by_cookie
|
54
|
+
return unless ShopifyApp.configuration.allow_cookie_authentication
|
55
|
+
return unless session[:user_id].present?
|
39
56
|
ShopifyApp::SessionRepository.retrieve_user_session(session[:user_id])
|
40
57
|
end
|
41
58
|
|
42
59
|
def shop_session
|
43
|
-
|
60
|
+
shop_session_by_jwt || shop_session_by_cookie
|
61
|
+
end
|
62
|
+
|
63
|
+
def shop_session_by_jwt
|
64
|
+
return unless ShopifyApp.configuration.allow_jwt_authentication
|
65
|
+
return unless jwt_shopify_domain
|
66
|
+
ShopifyApp::SessionRepository.retrieve_shop_session_by_shopify_domain(jwt_shopify_domain)
|
67
|
+
end
|
68
|
+
|
69
|
+
def shop_session_by_cookie
|
70
|
+
return unless ShopifyApp.configuration.allow_cookie_authentication
|
71
|
+
return unless session[:shop_id].present?
|
44
72
|
ShopifyApp::SessionRepository.retrieve_shop_session(session[:shop_id])
|
45
73
|
end
|
46
74
|
|
47
75
|
def login_again_if_different_user_or_shop
|
48
76
|
if session[:user_session].present? && params[:session].present? # session data was sent/stored correctly
|
49
77
|
clear_session = session[:user_session] != params[:session] # current user is different from stored user
|
50
|
-
|
51
78
|
end
|
52
79
|
|
53
|
-
if current_shopify_session &&
|
80
|
+
if current_shopify_session &&
|
81
|
+
params[:shop] && params[:shop].is_a?(String) &&
|
82
|
+
(current_shopify_session.domain != params[:shop])
|
54
83
|
clear_session = true
|
55
84
|
end
|
56
85
|
|
@@ -60,11 +89,23 @@ module ShopifyApp
|
|
60
89
|
end
|
61
90
|
end
|
62
91
|
|
92
|
+
def signal_access_token_required
|
93
|
+
response.set_header(ACCESS_TOKEN_REQUIRED_HEADER, "true")
|
94
|
+
end
|
95
|
+
|
63
96
|
protected
|
64
97
|
|
98
|
+
def jwt_shopify_domain
|
99
|
+
request.env['jwt.shopify_domain']
|
100
|
+
end
|
101
|
+
|
102
|
+
def jwt_shopify_user_id
|
103
|
+
request.env['jwt.shopify_user_id']
|
104
|
+
end
|
105
|
+
|
65
106
|
def redirect_to_login
|
66
107
|
if request.xhr?
|
67
|
-
head
|
108
|
+
head(:unauthorized)
|
68
109
|
else
|
69
110
|
if request.get?
|
70
111
|
path = request.path
|
@@ -74,7 +115,7 @@ module ShopifyApp
|
|
74
115
|
path = referer.path
|
75
116
|
query = "#{referer.query}&#{sanitized_params.to_query}"
|
76
117
|
end
|
77
|
-
session[:return_to] = "#{path}?#{query}"
|
118
|
+
session[:return_to] = query.blank? ? path.to_s : "#{path}?#{query}"
|
78
119
|
redirect_to(login_url_with_optional_shop)
|
79
120
|
end
|
80
121
|
end
|
@@ -105,7 +146,7 @@ module ShopifyApp
|
|
105
146
|
query_params = {}
|
106
147
|
query_params[:shop] = sanitized_params[:shop] if params[:shop].present?
|
107
148
|
|
108
|
-
return_to = session[:return_to] || params[:return_to]
|
149
|
+
return_to = RedirectSafely.make_safe(session[:return_to] || params[:return_to], nil)
|
109
150
|
|
110
151
|
if return_to.present? && return_to_param_required?
|
111
152
|
query_params[:return_to] = return_to
|
@@ -128,14 +169,18 @@ module ShopifyApp
|
|
128
169
|
|
129
170
|
def fullpage_redirect_to(url)
|
130
171
|
if ShopifyApp.configuration.embedded_app?
|
131
|
-
render
|
172
|
+
render('shopify_app/shared/redirect', layout: false,
|
173
|
+
locals: { url: url, current_shopify_domain: current_shopify_domain })
|
132
174
|
else
|
133
|
-
redirect_to
|
175
|
+
redirect_to(url)
|
134
176
|
end
|
135
177
|
end
|
136
178
|
|
137
179
|
def current_shopify_domain
|
138
|
-
shopify_domain = sanitized_shop_name ||
|
180
|
+
shopify_domain = sanitized_shop_name ||
|
181
|
+
jwt_shopify_domain ||
|
182
|
+
session[:shopify_domain]
|
183
|
+
|
139
184
|
return shopify_domain if shopify_domain.present?
|
140
185
|
|
141
186
|
raise ShopifyDomainNotFound
|
@@ -170,11 +215,18 @@ module ShopifyApp
|
|
170
215
|
end
|
171
216
|
|
172
217
|
def return_address
|
218
|
+
return base_return_address unless ShopifyApp.configuration.allow_jwt_authentication
|
219
|
+
return_address_with_params(shop: current_shopify_domain)
|
220
|
+
rescue ShopifyDomainNotFound
|
221
|
+
base_return_address
|
222
|
+
end
|
223
|
+
|
224
|
+
def base_return_address
|
173
225
|
session.delete(:return_to) || ShopifyApp.configuration.root_url
|
174
226
|
end
|
175
227
|
|
176
228
|
def return_address_with_params(params)
|
177
|
-
uri = URI(
|
229
|
+
uri = URI(base_return_address)
|
178
230
|
uri.query = CGI.parse(uri.query.to_s)
|
179
231
|
.symbolize_keys
|
180
232
|
.transform_values { |v| v.one? ? v.first : v }
|
@@ -182,5 +234,11 @@ module ShopifyApp
|
|
182
234
|
.to_query
|
183
235
|
uri.to_s
|
184
236
|
end
|
237
|
+
|
238
|
+
private
|
239
|
+
|
240
|
+
def user_session_expected?
|
241
|
+
!ShopifyApp.configuration.user_session_repository.blank? && ShopifyApp::SessionRepository.user_storage.present?
|
242
|
+
end
|
185
243
|
end
|
186
244
|
end
|