spree_stripe 1.0.2 → 1.1.0
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/README.md +23 -9
- data/app/controllers/spree/api/v2/storefront/stripe/payment_intents_controller.rb +28 -3
- data/app/serializers/spree/v2/storefront/payment_intent_serializer.rb +4 -0
- data/app/services/spree_stripe/create_payment_intent.rb +1 -0
- data/app/views/spree_stripe/_quick_checkout.html.erb +1 -1
- data/config/i18n-tasks.yml +173 -0
- data/config/locales/en.yml +11 -4
- data/config/routes.rb +5 -1
- data/lib/spree_stripe/version.rb +1 -1
- metadata +18 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8f00a93dd9c0c11b0c69e9b860d39366a8d6eef638696cb9139b3afbb1c6236b
|
4
|
+
data.tar.gz: 5bebd64056af8067def43433fe87927f0a2470395a9ea41feae3a4dceadfd59d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 222695cc4aaa2c33395c20be310cf2115b3213c6c82b32ed31379acb73f16652a6ab7917b397d8ea79fc1d076e99f76100a2eba5be315b334559b4f3c26af0dd
|
7
|
+
data.tar.gz: 05c8211f7eb45ab8f828f0650bfaf6b650b5f63c33f07306e9f7fc8fb93d7348b7cf1252f5feef499ab0c4e32d68e75bbf73d0b8d10f590df4898f0be4eea1c3
|
data/README.md
CHANGED
@@ -7,6 +7,10 @@
|
|
7
7
|
|
8
8
|
This is the official Stripe payment gateway extension for [Spree Commerce](https://spreecommerce.org) [open-source eCommerce platform](https://spreecommerce.org/).
|
9
9
|
|
10
|
+
This Stripe integration is bundled in the [Spree Starter](https://github.com/spree/spree_starter/) for your development convenience.
|
11
|
+
|
12
|
+
Or you could follow the [installation instructions](https://github.com/spree/spree_stripe/edit/main/README.md#installation) below.
|
13
|
+
|
10
14
|
If you like what you see, consider giving this repo a GitHub star :star:
|
11
15
|
|
12
16
|
Thank you for supporting Spree open-source :heart:
|
@@ -52,20 +56,12 @@ Thank you for supporting Spree open-source :heart:
|
|
52
56
|
|
53
57
|

|
54
58
|
|
55
|
-
## Spree 5 Demo
|
56
|
-
|
57
|
-
Check out the [Spree Commerce demo](https://demo.spreecommerce.org/) for yourself, including this Stripe integration.
|
58
|
-
|
59
|
-
This demo runs on Spree 5 which is the biggest Spree release ever. Stay tuned for the official announcement on all the exciting features and integrations - coming up soon!
|
60
|
-
|
61
|
-

|
62
|
-
|
63
59
|
## Installation
|
64
60
|
|
65
61
|
1. Add this extension to your Gemfile with this line:
|
66
62
|
|
67
63
|
```ruby
|
68
|
-
bundle add spree_stripe
|
64
|
+
bundle add spree_stripe
|
69
65
|
```
|
70
66
|
|
71
67
|
2. Run the install generator
|
@@ -78,6 +74,8 @@ This demo runs on Spree 5 which is the biggest Spree release ever. Stay tuned fo
|
|
78
74
|
|
79
75
|
If your server was running, restart it so that it can find the assets properly.
|
80
76
|
|
77
|
+
This Stripe integration is also bundled in the [Spree Starter](https://github.com/spree/spree_starter/) for your development convenience.
|
78
|
+
|
81
79
|
## Developing
|
82
80
|
|
83
81
|
1. Create a dummy app
|
@@ -130,3 +128,19 @@ Spree Commerce [Enterprise Edition](https://spreecommerce.org/spree-commerce-ver
|
|
130
128
|
- Built-in fraud prevention tools
|
131
129
|
|
132
130
|
Feel free to [reach out](https://spreecommerce.org/get-started/) to learn more.
|
131
|
+
|
132
|
+
## Spree 5 Announcement & Demo
|
133
|
+
|
134
|
+
[](https://spreecommerce.org/announcing-spree-5-the-biggest-open-source-release-ever/)
|
135
|
+
|
136
|
+
We’re thrilled to unveil [Spree 5](https://spreecommerce.org/announcing-spree-5-the-biggest-open-source-release-ever/
|
137
|
+
) — the most powerful and feature-packed open-source release in Spree Commerce’s history, including:
|
138
|
+
- A completely revamped Admin Dashboard experience: boost your team's productivity
|
139
|
+
- A Mobile-First, No-code Customizable Storefront: raise conversions and loyalty
|
140
|
+
- New integrations: a native [Stripe integration](https://github.com/spree/spree_stripe), and also Stripe Connect, Klaviyo integrations available with the Enterprise Edition
|
141
|
+
- Enterprise Edition Admin Features: Audit Log, [Multi-Vendor Marketplace](https://spreecommerce.org/marketplace-ecommerce/), [Multi-tenant / White-label SaaS eCommerce](https://spreecommerce.org/multi-tenant-white-label-ecommerce/)
|
142
|
+
|
143
|
+
Read the [full Spree 5 announcement here](https://spreecommerce.org/announcing-spree-5-the-biggest-open-source-release-ever/).
|
144
|
+
|
145
|
+
Check out the [Spree 5 demo](https://demo.spreecommerce.org/) for yourself, including this Stripe integration.
|
146
|
+
|
@@ -5,7 +5,7 @@ module Spree
|
|
5
5
|
module Stripe
|
6
6
|
class PaymentIntentsController < BaseController
|
7
7
|
include Spree::Api::V2::Storefront::OrderConcern
|
8
|
-
before_action :ensure_order
|
8
|
+
before_action :ensure_order, except: [:confirm]
|
9
9
|
|
10
10
|
# POST /api/v2/storefront/stripe/payment_intents
|
11
11
|
def create
|
@@ -18,7 +18,7 @@ module Spree
|
|
18
18
|
spree_current_order,
|
19
19
|
stripe_gateway,
|
20
20
|
stripe_payment_method_id: stripe_payment_method_id,
|
21
|
-
off_session: permitted_attributes[:off_session] || false
|
21
|
+
off_session: permitted_attributes[:off_session].to_b || false
|
22
22
|
)
|
23
23
|
|
24
24
|
render_serialized_payload { serialize_resource(@payment_intent) }
|
@@ -38,12 +38,37 @@ module Spree
|
|
38
38
|
spree_authorize! :update, spree_current_order, order_token
|
39
39
|
|
40
40
|
@payment_intent = spree_current_order.payment_intents.find(params[:id])
|
41
|
-
@payment_intent.attributes = permitted_attributes
|
41
|
+
@payment_intent.attributes = permitted_attributes.except(:off_session)
|
42
42
|
@payment_intent.save!
|
43
43
|
|
44
44
|
render_serialized_payload { serialize_resource(@payment_intent) }
|
45
45
|
end
|
46
46
|
|
47
|
+
def confirm
|
48
|
+
@payment_intent = SpreeStripe::PaymentIntent.find(params[:id])
|
49
|
+
|
50
|
+
stripe_payment_intent = @payment_intent.stripe_payment_intent
|
51
|
+
order = @payment_intent.order
|
52
|
+
|
53
|
+
if order.canceled?
|
54
|
+
render_error_payload(Spree.t('order_canceled'))
|
55
|
+
elsif order.completed?
|
56
|
+
render_error_payload(Spree.t('order_already_completed'))
|
57
|
+
elsif order != spree_current_order
|
58
|
+
raise ActiveRecord::RecordNotFound
|
59
|
+
elsif stripe_payment_intent.status == 'succeeded'
|
60
|
+
spree_authorize! :update, spree_current_order, order_token
|
61
|
+
|
62
|
+
SpreeStripe::CompleteOrder.new(payment_intent: @payment_intent).call
|
63
|
+
|
64
|
+
render_serialized_payload { serialize_resource(@payment_intent) }
|
65
|
+
else
|
66
|
+
render_error_payload(Spree.t("stripe.payment_intent_errors.#{stripe_payment_intent.status}"))
|
67
|
+
end
|
68
|
+
rescue Spree::Core::GatewayError => e
|
69
|
+
render_error_payload(e.message)
|
70
|
+
end
|
71
|
+
|
47
72
|
private
|
48
73
|
|
49
74
|
def permitted_attributes
|
@@ -5,6 +5,10 @@ module Spree
|
|
5
5
|
set_type :payment_intent
|
6
6
|
|
7
7
|
attributes :stripe_id, :client_secret, :ephemeral_key_secret, :customer_id, :amount, :stripe_payment_method_id
|
8
|
+
|
9
|
+
belongs_to :order, serializer: Spree::V2::Storefront::OrderSerializer
|
10
|
+
belongs_to :payment_method, serializer: Spree::V2::Storefront::PaymentMethodSerializer
|
11
|
+
has_one :payment, serializer: Spree::V2::Storefront::PaymentSerializer
|
8
12
|
end
|
9
13
|
end
|
10
14
|
end
|
@@ -25,7 +25,7 @@
|
|
25
25
|
<div class="relative group-[.no-separator]:hidden flex py-5 items-center ">
|
26
26
|
<div class="flex-grow border-t border-default"></div>
|
27
27
|
<span class="flex-shrink mx-4 text-gray-500 text-sm">
|
28
|
-
<%= Spree.t(
|
28
|
+
<%= Spree.t('storefront.checkout.or_continue_below') %>
|
29
29
|
</span>
|
30
30
|
<div class="flex-grow border-t border-default"></div>
|
31
31
|
</div>
|
@@ -0,0 +1,173 @@
|
|
1
|
+
# i18n-tasks finds and manages missing and unused translations: https://github.com/glebm/i18n-tasks
|
2
|
+
|
3
|
+
# The "main" locale.
|
4
|
+
base_locale: en
|
5
|
+
## All available locales are inferred from the data by default. Alternatively, specify them explicitly:
|
6
|
+
# locales: [es, fr]
|
7
|
+
## Reporting locale, default: en. Available: en, ru.
|
8
|
+
# internal_locale: en
|
9
|
+
|
10
|
+
# Read and write translations.
|
11
|
+
data:
|
12
|
+
## Translations are read from the file system. Supported format: YAML, JSON.
|
13
|
+
## Provide a custom adapter:
|
14
|
+
# adapter: I18n::Tasks::Data::FileSystem
|
15
|
+
|
16
|
+
# Locale files or `Dir.glob` patterns where translations are read from:
|
17
|
+
read:
|
18
|
+
## Default:
|
19
|
+
- config/locales/%{locale}.yml
|
20
|
+
## More files:
|
21
|
+
# - config/locales/**/*.%{locale}.yml
|
22
|
+
|
23
|
+
# Locale files to write new keys to, based on a list of key pattern => file rules. Matched from top to bottom:
|
24
|
+
# `i18n-tasks normalize -p` will force move the keys according to these rules
|
25
|
+
write:
|
26
|
+
## For example, write devise and simple form keys to their respective files:
|
27
|
+
# - ['{devise, simple_form}.*', 'config/locales/\1.%{locale}.yml']
|
28
|
+
## Catch-all default:
|
29
|
+
# - config/locales/%{locale}.yml
|
30
|
+
|
31
|
+
# External locale data (e.g. gems).
|
32
|
+
# This data is not considered unused and is never written to.
|
33
|
+
external:
|
34
|
+
## Example (replace %#= with %=):
|
35
|
+
# - "<%#= %x[bundle info vagrant --path].chomp %>/templates/locales/%{locale}.yml"
|
36
|
+
- "<%= %x[bundle info spree_core --path].chomp %>/config/locales/%{locale}.yml"
|
37
|
+
- "<%= %x[bundle info spree_storefront --path].chomp %>/config/locales/%{locale}.yml"
|
38
|
+
## Specify the router (see Readme for details). Valid values: conservative_router, pattern_router, or a custom class.
|
39
|
+
# router: conservative_router
|
40
|
+
|
41
|
+
yaml:
|
42
|
+
write:
|
43
|
+
# do not wrap lines at 80 characters
|
44
|
+
line_width: -1
|
45
|
+
|
46
|
+
## Pretty-print JSON:
|
47
|
+
# json:
|
48
|
+
# write:
|
49
|
+
# indent: ' '
|
50
|
+
# space: ' '
|
51
|
+
# object_nl: "\n"
|
52
|
+
# array_nl: "\n"
|
53
|
+
|
54
|
+
# Find translate calls
|
55
|
+
search:
|
56
|
+
## Paths or `Find.find` patterns to search in:
|
57
|
+
# paths:
|
58
|
+
# - app/
|
59
|
+
|
60
|
+
## Root directories for relative keys resolution.
|
61
|
+
# relative_roots:
|
62
|
+
# - app/controllers
|
63
|
+
# - app/helpers
|
64
|
+
# - app/mailers
|
65
|
+
# - app/presenters
|
66
|
+
# - app/views
|
67
|
+
|
68
|
+
## Directories where method names which should not be part of a relative key resolution.
|
69
|
+
# By default, if a relative translation is used inside a method, the name of the method will be considered part of the resolved key.
|
70
|
+
# Directories listed here will not consider the name of the method part of the resolved key
|
71
|
+
#
|
72
|
+
# relative_exclude_method_name_paths:
|
73
|
+
# -
|
74
|
+
|
75
|
+
## Files or `File.fnmatch` patterns to exclude from search. Some files are always excluded regardless of this setting:
|
76
|
+
## *.jpg *.jpeg *.png *.gif *.svg *.ico *.eot *.otf *.ttf *.woff *.woff2 *.pdf *.css *.sass *.scss *.less
|
77
|
+
## *.yml *.json *.zip *.tar.gz *.swf *.flv *.mp3 *.wav *.flac *.webm *.mp4 *.ogg *.opus *.webp *.map *.xlsx
|
78
|
+
exclude:
|
79
|
+
- app/assets/images
|
80
|
+
- app/assets/fonts
|
81
|
+
- app/assets/videos
|
82
|
+
- app/assets/builds
|
83
|
+
|
84
|
+
## Alternatively, the only files or `File.fnmatch patterns` to search in `paths`:
|
85
|
+
## If specified, this settings takes priority over `exclude`, but `exclude` still applies.
|
86
|
+
# only: ["*.rb", "*.html.slim"]
|
87
|
+
|
88
|
+
## If `strict` is `false`, guess usages such as t("categories.#{category}.title"). The default is `true`.
|
89
|
+
strict: false
|
90
|
+
|
91
|
+
## Allows adding ast_matchers for finding translations using the AST-scanners
|
92
|
+
## The available matchers are:
|
93
|
+
## - RailsModelMatcher
|
94
|
+
## Matches ActiveRecord translations like
|
95
|
+
## User.human_attribute_name(:email) and User.model_name.human
|
96
|
+
## - DefaultI18nSubjectMatcher
|
97
|
+
## Matches ActionMailer's default_i18n_subject method
|
98
|
+
##
|
99
|
+
## To implement your own, please see `I18n::Tasks::Scanners::AstMatchers::BaseMatcher`.
|
100
|
+
# ast_matchers:
|
101
|
+
# - 'I18n::Tasks::Scanners::AstMatchers::RailsModelMatcher'
|
102
|
+
# - 'I18n::Tasks::Scanners::AstMatchers::DefaultI18nSubjectMatcher'
|
103
|
+
|
104
|
+
## Multiple scanners can be used. Their results are merged.
|
105
|
+
## The options specified above are passed down to each scanner. Per-scanner options can be specified as well.
|
106
|
+
## See this example of a custom scanner: https://github.com/glebm/i18n-tasks/wiki/A-custom-scanner-example
|
107
|
+
|
108
|
+
## Translation Services
|
109
|
+
# translation:
|
110
|
+
# # Google Translate
|
111
|
+
# # Get an API key and set billing info at https://code.google.com/apis/console to use Google Translate
|
112
|
+
# google_translate_api_key: "AbC-dEf5"
|
113
|
+
# # DeepL Pro Translate
|
114
|
+
# # Get an API key and subscription at https://www.deepl.com/pro to use DeepL Pro
|
115
|
+
# deepl_api_key: "48E92789-57A3-466A-9959-1A1A1A1A1A1A"
|
116
|
+
# # deepl_host: "https://api.deepl.com"
|
117
|
+
# # deepl_version: "v2"
|
118
|
+
# # deepl_glossary_ids:
|
119
|
+
# # - f28106eb-0e06-489e-82c6-8215d6f95089
|
120
|
+
# # - 2c6415be-1852-4f54-9e1b-d800463496b4
|
121
|
+
# # add additional options to the DeepL.translate call: https://www.deepl.com/docs-api/translate-text/translate-text/
|
122
|
+
# deepl_options:
|
123
|
+
# formality: prefer_less
|
124
|
+
# # OpenAI
|
125
|
+
# openai_api_key: "sk-XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
|
126
|
+
# # openai_model: "gpt-3.5-turbo" # see https://platform.openai.com/docs/models
|
127
|
+
# # may contain `%{from}` and `%{to}`, which will be replaced by source and target locale codes, respectively (using `Kernel.format`)
|
128
|
+
# # openai_system_prompt: >-
|
129
|
+
# # You are a professional translator that translates content from the %{from} locale
|
130
|
+
# # to the %{to} locale in an i18n locale array.
|
131
|
+
# #
|
132
|
+
# # The array has a structured format and contains multiple strings. Your task is to translate
|
133
|
+
# # each of these strings and create a new array with the translated strings.
|
134
|
+
# #
|
135
|
+
# # HTML markups (enclosed in < and > characters) must not be changed under any circumstance.
|
136
|
+
# # Variables (starting with %%{ and ending with }) must not be changed under any circumstance.
|
137
|
+
# #
|
138
|
+
# # Keep in mind the context of all the strings for a more accurate translation.
|
139
|
+
|
140
|
+
## Do not consider these keys missing:
|
141
|
+
# ignore_missing:
|
142
|
+
# - 'errors.messages.{accepted,blank,invalid,too_short,too_long}'
|
143
|
+
# - '{devise,simple_form}.*'
|
144
|
+
|
145
|
+
## Consider these keys used:
|
146
|
+
# ignore_unused:
|
147
|
+
|
148
|
+
## Exclude these keys from the `i18n-tasks eq-base' report:
|
149
|
+
# ignore_eq_base:
|
150
|
+
# all:
|
151
|
+
# - common.ok
|
152
|
+
# fr,es:
|
153
|
+
# - common.brand
|
154
|
+
|
155
|
+
## Exclude these keys from the `i18n-tasks check-consistent-interpolations` report:
|
156
|
+
# ignore_inconsistent_interpolations:
|
157
|
+
# - 'activerecord.attributes.*'
|
158
|
+
|
159
|
+
## Ignore these keys completely:
|
160
|
+
# ignore:
|
161
|
+
# - kaminari.*
|
162
|
+
|
163
|
+
## Sometimes, it isn't possible for i18n-tasks to match the key correctly,
|
164
|
+
## e.g. in case of a relative key defined in a helper method.
|
165
|
+
## In these cases you can use the built-in PatternMapper to map patterns to keys, e.g.:
|
166
|
+
#
|
167
|
+
# <%# I18n::Tasks.add_scanner 'I18n::Tasks::Scanners::PatternMapper',
|
168
|
+
# only: %w(*.html.haml *.html.slim),
|
169
|
+
# patterns: [['= title\b', '.page_title']] %>
|
170
|
+
#
|
171
|
+
# The PatternMapper can also match key literals via a special %{key} interpolation, e.g.:
|
172
|
+
#
|
173
|
+
<% I18n::Tasks.add_scanner 'I18n::Tasks::Scanners::PatternMapper', patterns: [['\bSpree\.t[( ]\s*%{key}', 'spree.%{key}']] %>
|
data/config/locales/en.yml
CHANGED
@@ -1,5 +1,12 @@
|
|
1
|
-
|
2
|
-
# See https://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
|
3
|
-
|
1
|
+
---
|
4
2
|
en:
|
5
|
-
|
3
|
+
spree:
|
4
|
+
stripe:
|
5
|
+
payment_intent_errors:
|
6
|
+
canceled: Payment intent canceled
|
7
|
+
processing: Payment intent processing
|
8
|
+
requires_action: Payment intent requires action
|
9
|
+
requires_capture: Payment intent requires capture
|
10
|
+
requires_confirmation: Payment intent requires confirmation
|
11
|
+
requires_payment_method: Payment intent requires payment method
|
12
|
+
succeeded: Payment intent succeeded
|
data/config/routes.rb
CHANGED
@@ -16,7 +16,11 @@ Spree::Core::Engine.add_routes do
|
|
16
16
|
namespace :storefront do
|
17
17
|
namespace :stripe do
|
18
18
|
resources :setup_intents, only: %i[create]
|
19
|
-
resources :payment_intents, only: %i[show create update]
|
19
|
+
resources :payment_intents, only: %i[show create update] do
|
20
|
+
member do
|
21
|
+
patch :confirm
|
22
|
+
end
|
23
|
+
end
|
20
24
|
end
|
21
25
|
end
|
22
26
|
end
|
data/lib/spree_stripe/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: spree_stripe
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0
|
4
|
+
version: 1.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Vendo Connect Inc.
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-04-
|
11
|
+
date: 2025-04-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: spree
|
@@ -164,6 +164,20 @@ dependencies:
|
|
164
164
|
- - ">="
|
165
165
|
- !ruby/object:Gem::Version
|
166
166
|
version: '0'
|
167
|
+
- !ruby/object:Gem::Dependency
|
168
|
+
name: i18n-tasks
|
169
|
+
requirement: !ruby/object:Gem::Requirement
|
170
|
+
requirements:
|
171
|
+
- - ">="
|
172
|
+
- !ruby/object:Gem::Version
|
173
|
+
version: '0'
|
174
|
+
type: :development
|
175
|
+
prerelease: false
|
176
|
+
version_requirements: !ruby/object:Gem::Requirement
|
177
|
+
requirements:
|
178
|
+
- - ">="
|
179
|
+
- !ruby/object:Gem::Version
|
180
|
+
version: '0'
|
167
181
|
description:
|
168
182
|
email: hello@spreecommerce.org
|
169
183
|
executables: []
|
@@ -244,6 +258,7 @@ files:
|
|
244
258
|
- app/views/spree/checkout/payment/_spree_stripe.html.erb
|
245
259
|
- app/views/spree_stripe/_head.html.erb
|
246
260
|
- app/views/spree_stripe/_quick_checkout.html.erb
|
261
|
+
- config/i18n-tasks.yml
|
247
262
|
- config/importmap.rb
|
248
263
|
- config/initializers/spree.rb
|
249
264
|
- config/initializers/stripe.rb
|
@@ -288,7 +303,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
288
303
|
version: '0'
|
289
304
|
requirements:
|
290
305
|
- none
|
291
|
-
rubygems_version: 3.
|
306
|
+
rubygems_version: 3.3.26
|
292
307
|
signing_key:
|
293
308
|
specification_version: 4
|
294
309
|
summary: Official Spree Commerce Stripe payment gateway extension
|