solidus_square
is an extension that adds support for using Square as a payment source in your Solidus store.
Add solidus_square to your Gemfile:
gem 'solidus_square'
Bundle your dependencies and run the installation generator:
bin/rails generate solidus_square:install
Payment methods can accept preferences either directly entered in admin, or from a static source in code. For most projects we recommend using a static source, so that sensitive account credentials are not stored in the database.
- Set static preferences in an initializer
# config/initializers/solidus_square.rb
SolidusSquare.configure do |config|
config.square_access_token = ENV['SQUARE_ACCESS_TOKEN']
config.square_environment = ENV['SQUARE_ENVIRONMENT']
config.square_location_id = ENV['SQUARE_LOCATION_ID']
config.square_app_id = ENV['SQUARE_APP_ID']
config.square_payment_method = Spree::PaymentMethod.find(ENV['SQUARE_PAYMENT_METHOD_ID'])
end
Spree::Config.configure do |config|
config.static_model_preferences.add(
SolidusSquare::PaymentMethod,
'square_credentials', {
access_token: SolidusSquare.config.square_access_token,
environment: SolidusSquare.config.square_environment,
location_id: SolidusSquare.config.square_location_id,
app_id: SolidusSquare.config.square_app_id,
redirect_url: ENV['SQUARE_REDIRECT_URL']
}
)
end
- Visit
/admin/payment_methods/new
- Set
provider
to SolidusSquare::PaymentMethod - Click "Save"
- Choose
square_credentials
from thePreference Source
select - Click
Update
to save
Alternatively, create a payment method from the Rails console with:
SolidusSquare::PaymentMethod.new(
name: "Square",
preference_source: "square_credentials"
).save
-
Visit the SquareDeveloper website
-
Login into your account.
-
Create or open an existing app.
For the location ID Navigate on the left side navigation bar to
Locations
.
To activate the Square hosted checkout workflow, copy the endpoint in the config/routes.rb
file,
Spree::Core::Engine.routes.draw do
# post '/api/checkouts/:id/square', to: 'solidus_square/api/checkout#create', as: 'api_checkouts_square' # API
get 'square_checkout', to: '/solidus_square/callback_actions#square_checkout'
get 'complete_checkout', to: '/solidus_square/callback_actions#complete_checkout'
end
and create a button to bring the user at that page, or call the API to start the checkout Flow or add the following deface file.
app/overrides/spree/checkout/_payment/add_hosted_checkout.html.erb.deface
<!-- insert_top "fieldset[id='payment']" -->
<%= link_to 'Square Hosted Checkout', square_checkout_path %>
When the Square hosted checkout finish, Square will redirect you automatically to the redirect URL given in the preferences of the Square
payment method.
Uncomment the config.square_payment_method = Spree::PaymentMethod.find(ENV['SQUARE_PAYMENT_METHOD_ID'])
line in config/initializers/solidus_square.rb
file,
And set the SQUARE_PAYMENT_METHOD
in order to find the preferred square payment.
-
Visit the SquareDeveloper website.
-
Login into your account.
-
Create or open an existing app.
-
Navigate on the left side navigation bar to
Webhooks
. -
Click on
Add Endpoiont
. -
Paste
<domain>/webhooks/square
in the URL field, eg.https://www.solidus.com/webhooks/square
. -
Select/check
payment.created
andpayment.updated
from the Events. -
Click on
Save
. -
Navigate to the
routes.rb
file and paste the endpoint for the webhooks.
Spree::Core::Engine.routes.draw do
post "webhooks/square", to: '/solidus_square/webhooks#update'
end
Create a Square Developer Account
- Visit https://squareup.com/signup?v=developers
- Create your application
- Go to
view details
, expand the application details and take note ofaccess_token
. You'll need it later to set PaymentMethod.
First bundle your dependencies, then run bin/rake
. bin/rake
will default to building the dummy
app if it does not exist, then it will run specs. The dummy app can be regenerated by using
bin/rake extension:test_app
.
bin/rake
To run Rubocop static code analysis run
bundle exec rubocop
When testing your application's integration with this extension you may use its factories.
Simply add this require statement to your spec/spec_helper.rb
:
require 'solidus_square/testing_support/factories'
Or, if you are using FactoryBot.definition_file_paths
, you can load Solidus core
factories along with this extension's factories using this statement:
SolidusDevSupport::TestingSupport::Factories.load_for(SolidusSquare::Engine)
To run this extension in a sandboxed Solidus application, you can run bin/sandbox
. The path for
the sandbox app is ./sandbox
and bin/rails
will forward any Rails commands to
sandbox/bin/rails
.
Here's an example:
$ bin/rails server
=> Booting Puma
=> Rails 6.0.2.1 application starting in development
* Listening on tcp://127.0.0.1:3000
Use Ctrl-C to stop
Before and after releases the changelog should be updated to reflect the up-to-date status of the project:
bin/rake changelog
git add CHANGELOG.md
git commit -m "Update the changelog"
Please refer to the dedicated page on Solidus wiki.
Copyright (c) 2021 [name of extension author], released under the New BSD License.