Class: OmniAuth::Strategies::Shopify
- Inherits:
-
OAuth2
- Object
- OAuth2
- OmniAuth::Strategies::Shopify
- Defined in:
- lib/omniauth/strategies/shopify.rb
Constant Summary collapse
- DEFAULT_SCOPE =
Available scopes: content themes products customers orders script_tags shipping read_* or write_*
'read_products'
- SCOPE_DELIMITER =
','
- MINUTE =
60
- CODE_EXPIRES_AFTER =
10 * MINUTE
Class Method Summary collapse
Instance Method Summary collapse
- #authorize_params ⇒ Object
- #build_access_token ⇒ Object
- #callback_phase ⇒ Object
- #callback_url ⇒ Object
- #fix_https ⇒ Object
- #normalized_scopes(scopes) ⇒ Object
- #request_phase ⇒ Object
- #setup_phase ⇒ Object
- #valid_permissions?(token) ⇒ Boolean
- #valid_signature? ⇒ Boolean
- #valid_site? ⇒ Boolean
Class Method Details
.encoded_params_for_signature(params) ⇒ Object
82 83 84 85 86 87 |
# File 'lib/omniauth/strategies/shopify.rb', line 82 def self.encoded_params_for_signature(params) params = params.dup params.delete('hmac') params.delete('signature') # deprecated signature Rack::Utils.build_query(params.sort) end |
.hmac_sign(encoded_params, secret) ⇒ Object
89 90 91 |
# File 'lib/omniauth/strategies/shopify.rb', line 89 def self.hmac_sign(encoded_params, secret) OpenSSL::HMAC.hexdigest(OpenSSL::Digest::SHA256.new, secret, encoded_params) end |
Instance Method Details
#authorize_params ⇒ Object
137 138 139 140 141 142 |
# File 'lib/omniauth/strategies/shopify.rb', line 137 def super.tap do |params| params[:scope] = normalized_scopes(params[:scope] || DEFAULT_SCOPE).join(SCOPE_DELIMITER) params[:grant_options] = ['per-user'] if [:per_user_permissions] end end |
#build_access_token ⇒ Object
133 134 135 |
# File 'lib/omniauth/strategies/shopify.rb', line 133 def build_access_token @built_access_token ||= super end |
#callback_phase ⇒ Object
119 120 121 122 123 124 125 126 127 128 129 130 131 |
# File 'lib/omniauth/strategies/shopify.rb', line 119 def callback_phase return fail!(:invalid_site, CallbackError.new(:invalid_site, "OAuth endpoint is not a myshopify site.")) unless valid_site? return fail!(:invalid_signature, CallbackError.new(:invalid_signature, "Signature does not match, it may have been tampered with.")) unless valid_signature? token = build_access_token unless (token) return fail!(:invalid_permissions, CallbackError.new(:invalid_permissions, "Requested API access mode does not match.")) end super rescue ::OAuth2::Error => e fail!(:invalid_credentials, e) end |
#callback_url ⇒ Object
144 145 146 |
# File 'lib/omniauth/strategies/shopify.rb', line 144 def callback_url [:callback_url] || full_host + script_name + callback_path end |
#fix_https ⇒ Object
102 103 104 |
# File 'lib/omniauth/strategies/shopify.rb', line 102 def fix_https [:client_options][:site] = [:client_options][:site].gsub(/\Ahttp\:/, 'https:') end |
#normalized_scopes(scopes) ⇒ Object
76 77 78 79 80 |
# File 'lib/omniauth/strategies/shopify.rb', line 76 def normalized_scopes(scopes) scope_list = scopes.to_s.split(SCOPE_DELIMITER).map(&:strip).reject(&:empty?).uniq ignore_scopes = scope_list.map { |scope| scope =~ /\A(unauthenticated_)?write_(.*)\z/ && "#{$1}read_#{$2}" }.compact scope_list - ignore_scopes end |
#request_phase ⇒ Object
111 112 113 114 115 116 117 |
# File 'lib/omniauth/strategies/shopify.rb', line 111 def request_phase if valid_site? super else fail!(:invalid_site) end end |
#setup_phase ⇒ Object
106 107 108 109 |
# File 'lib/omniauth/strategies/shopify.rb', line 106 def setup_phase super fix_https end |
#valid_permissions?(token) ⇒ Boolean
93 94 95 96 97 98 99 100 |
# File 'lib/omniauth/strategies/shopify.rb', line 93 def (token) return false unless token return true if [:per_user_permissions] && token['associated_user'] return true if ![:per_user_permissions] && !token['associated_user'] false end |
#valid_signature? ⇒ Boolean
60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 |
# File 'lib/omniauth/strategies/shopify.rb', line 60 def valid_signature? return false unless request.POST.empty? params = request.GET signature = params['hmac'] = params['timestamp'] return false unless signature && return false unless .to_i > Time.now.to_i - CODE_EXPIRES_AFTER new_secret = .client_secret old_secret = .old_client_secret validate_signature(new_secret) || (old_secret && validate_signature(old_secret)) end |
#valid_site? ⇒ Boolean
56 57 58 |
# File 'lib/omniauth/strategies/shopify.rb', line 56 def valid_site? !!(/\A(https|http)\:\/\/[a-zA-Z0-9][a-zA-Z0-9\-]*\.#{Regexp.quote([:myshopify_domain])}[\/]?\z/ =~ [:client_options][:site]) end |