sinatra-embedded-shopify-app 0.5.16
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 +7 -0
- data/.circleci/config.yml +15 -0
- data/.github/dependabot.yml +14 -0
- data/.gitignore +2 -0
- data/.ruby-version +1 -0
- data/CHANGELOG +96 -0
- data/Gemfile +2 -0
- data/Gemfile.lock +118 -0
- data/LICENSE +20 -0
- data/README.md +172 -0
- data/bin/ci.sh +10 -0
- data/bin/sinatra-embedded-shopify-app-generator +85 -0
- data/example/.gitignore +3 -0
- data/example/.ruby-version +1 -0
- data/example/Gemfile +28 -0
- data/example/Gemfile.lock +126 -0
- data/example/Procfile +1 -0
- data/example/README.md +4 -0
- data/example/Rakefile +19 -0
- data/example/config/database.yml +12 -0
- data/example/config.ru +3 -0
- data/example/db/migrate/20140413221328_create_shops.rb +14 -0
- data/example/db/migrate/20140414042317_add_index_to_shops.rb +11 -0
- data/example/db/schema.rb +20 -0
- data/example/db/seeds.rb +3 -0
- data/example/public/icon.png +0 -0
- data/example/public/legend.gif +0 -0
- data/example/src/app.rb +57 -0
- data/example/test/app_test.rb +81 -0
- data/example/test/test_helper.rb +31 -0
- data/example/views/_flash_messages.erb +25 -0
- data/example/views/_top_bar.erb +10 -0
- data/example/views/home.erb +11 -0
- data/example/views/layouts/application.erb +26 -0
- data/example/views/login.erb +42 -0
- data/lib/sinatra/sinatra-embedded-shopify-app.rb +275 -0
- data/sinatra-embedded-shopify-app.gemspec +32 -0
- metadata +272 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: c3adeba52cb9e2c6ede28614ce28aa48d7e4e5330d19299cfb72ccc0067d78df
|
4
|
+
data.tar.gz: 043165fe618b08beaae62b71f6a0b28e36ef9ad65dbc93b8fd8679abd38d70af
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: cf596cd12e016ca257adc07c0d81bbf39c4805f6c96bc618c60f0e1cc849ff81bbf9a027e7be0dd9b362a7cdfd38198afed267842503ea2914ce50f12f10b7f2
|
7
|
+
data.tar.gz: 80e85b3232a169a495d82bf5f535c444b87164cc8e783b6a99d03d4db8aacc67d6e6ccfda89a9b26821509887c0f3ae002ec78369be36a4ee3d34b148d67f351
|
data/.gitignore
ADDED
data/.ruby-version
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
2.7.7
|
data/CHANGELOG
ADDED
@@ -0,0 +1,96 @@
|
|
1
|
+
1.1.1
|
2
|
+
-----
|
3
|
+
* fix how the CSP is set
|
4
|
+
|
5
|
+
1.1.0
|
6
|
+
-----
|
7
|
+
* update to Shopify App Bridge 3
|
8
|
+
|
9
|
+
1.0.1
|
10
|
+
-----
|
11
|
+
* drop sinatra version requirement from gemspec
|
12
|
+
|
13
|
+
1.0.0
|
14
|
+
-----
|
15
|
+
* Update to omniauth 2.0.4 and add rack protection authenticity token
|
16
|
+
* All forms will need an authenticity_token param added like in the login view
|
17
|
+
* Refactored the provided routes to be simpler. Now only login and logout (no more install)
|
18
|
+
* shopify_webhook now defines the route because it needs to also configure ignoring csrf for the route
|
19
|
+
* refactored other internal methods to simplify and reduce surface area
|
20
|
+
* Removed heroku rake tasks. They are out of date and don't encourage best practises
|
21
|
+
|
22
|
+
0.12.0
|
23
|
+
------
|
24
|
+
* Update to use the Shopify AppBridge instead of the ESDK
|
25
|
+
* This change is mostly to generated files so you'll need to apply those updates
|
26
|
+
to your own versions.
|
27
|
+
* shop_origin no longer includes protocol
|
28
|
+
* return_to re-worked to function with the AppBridge
|
29
|
+
|
30
|
+
0.11.0
|
31
|
+
------
|
32
|
+
* remove rack-flash3 use sinatra-flash instead
|
33
|
+
* remove a duplicate config of sessions that was breaking the same_site fix
|
34
|
+
* remove a runtime dependency that didn't end up being used for the same_site fix but was added anyways
|
35
|
+
* update ruby and rake versions
|
36
|
+
|
37
|
+
0.10.0
|
38
|
+
------
|
39
|
+
* Add the api_version to settings and update to 2019-07
|
40
|
+
|
41
|
+
0.9.0
|
42
|
+
-----
|
43
|
+
* set secure and and same_site options on the session cookie. Fixes auth with the upcoming chrome 80 release
|
44
|
+
|
45
|
+
0.8.0
|
46
|
+
-----
|
47
|
+
* Shopify updated the way sessions are created: https://github.com/Shopify/shopify_api/blob/master/README.md#-breaking-change-notice-for-version-700-, updating code to reflect these changes.
|
48
|
+
|
49
|
+
0.7.0
|
50
|
+
-----
|
51
|
+
* make base_url private (users can add back in their app easily if needed)
|
52
|
+
* store request params in the session so they can be retrieved after the omniauth flow. This fixes app actions from the admin if the user's session has expired
|
53
|
+
* refactored some smaller methods to make the shopify_session method easier on the eyes.
|
54
|
+
|
55
|
+
0.6.0
|
56
|
+
-----
|
57
|
+
* remove current_shop* methods in favor of yielding shop_name to the block methods
|
58
|
+
|
59
|
+
0.5.0
|
60
|
+
-----
|
61
|
+
* replace webhook_session and webhook_job with shopify_webhook
|
62
|
+
* remove redis and resque as dependencies
|
63
|
+
|
64
|
+
0.4.0
|
65
|
+
-----
|
66
|
+
* update to sinatra 2.0.1
|
67
|
+
* update to attr_encrypted 3.1.0
|
68
|
+
* remove SHOPIFY_REDIRECT_URI param
|
69
|
+
|
70
|
+
0.3.4
|
71
|
+
-----
|
72
|
+
* rename lib to src in the example/template
|
73
|
+
|
74
|
+
0.3.3
|
75
|
+
-----
|
76
|
+
* fix a bug in the generator
|
77
|
+
|
78
|
+
0.3.2
|
79
|
+
-----
|
80
|
+
* remove an extra `%` from the redirect view
|
81
|
+
|
82
|
+
0.3.1
|
83
|
+
-----
|
84
|
+
* update authentication code for upcoming chrome changes.
|
85
|
+
|
86
|
+
0.3.0
|
87
|
+
-----
|
88
|
+
* Remove sinatra-twitter-bootstrap dependency. Include css from cdn directly for example app.
|
89
|
+
|
90
|
+
0.2.0
|
91
|
+
-----
|
92
|
+
* added a SHOPIFY_REDIRECT_URI env param for setting the redirect_uri (was breifly HOSTNAME)
|
93
|
+
* add versions to gemfile
|
94
|
+
* refactored the generator
|
95
|
+
* Changed install method to after_shopify_auth. Implementations of this method must now be idempotent as this will be called anytime the app is auth'd which may be due to just a lost session and not necessarily an install.
|
96
|
+
* Always redo the full auth rather than trying to keep track of first time install state vs re-auth
|
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
@@ -0,0 +1,118 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
sinatra-embedded-shopify-app (0.5.16)
|
5
|
+
activesupport
|
6
|
+
omniauth (>= 2.0.4)
|
7
|
+
omniauth-shopify-oauth2 (>= 2.3.2)
|
8
|
+
shopify_api (= 9.5.1)
|
9
|
+
sinatra (>= 2.2, < 3.1)
|
10
|
+
sinatra-activerecord (~> 2.0.9)
|
11
|
+
|
12
|
+
GEM
|
13
|
+
remote: https://rubygems.org/
|
14
|
+
specs:
|
15
|
+
activemodel (7.0.4.3)
|
16
|
+
activesupport (= 7.0.4.3)
|
17
|
+
activemodel-serializers-xml (1.0.2)
|
18
|
+
activemodel (> 5.x)
|
19
|
+
activesupport (> 5.x)
|
20
|
+
builder (~> 3.1)
|
21
|
+
activerecord (7.0.4.3)
|
22
|
+
activemodel (= 7.0.4.3)
|
23
|
+
activesupport (= 7.0.4.3)
|
24
|
+
activeresource (6.0.0)
|
25
|
+
activemodel (>= 6.0)
|
26
|
+
activemodel-serializers-xml (~> 1.0)
|
27
|
+
activesupport (>= 6.0)
|
28
|
+
activesupport (7.0.4.3)
|
29
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
30
|
+
i18n (>= 1.6, < 2)
|
31
|
+
minitest (>= 5.1)
|
32
|
+
tzinfo (~> 2.0)
|
33
|
+
builder (3.2.4)
|
34
|
+
concurrent-ruby (1.2.2)
|
35
|
+
fakeweb (1.3.0)
|
36
|
+
faraday (2.7.4)
|
37
|
+
faraday-net_http (>= 2.0, < 3.1)
|
38
|
+
ruby2_keywords (>= 0.0.4)
|
39
|
+
faraday-net_http (3.0.2)
|
40
|
+
graphql (2.0.21)
|
41
|
+
graphql-client (0.18.0)
|
42
|
+
activesupport (>= 3.0)
|
43
|
+
graphql
|
44
|
+
hashie (5.0.0)
|
45
|
+
i18n (1.13.0)
|
46
|
+
concurrent-ruby (~> 1.0)
|
47
|
+
jwt (2.7.0)
|
48
|
+
mini_portile2 (2.8.2)
|
49
|
+
minitest (5.16.3)
|
50
|
+
mocha (2.0.2)
|
51
|
+
ruby2_keywords (>= 0.0.5)
|
52
|
+
multi_xml (0.6.0)
|
53
|
+
mustermann (3.0.0)
|
54
|
+
ruby2_keywords (~> 0.0.1)
|
55
|
+
oauth2 (2.0.9)
|
56
|
+
faraday (>= 0.17.3, < 3.0)
|
57
|
+
jwt (>= 1.0, < 3.0)
|
58
|
+
multi_xml (~> 0.5)
|
59
|
+
rack (>= 1.2, < 4)
|
60
|
+
snaky_hash (~> 2.0)
|
61
|
+
version_gem (~> 1.1)
|
62
|
+
omniauth (2.1.1)
|
63
|
+
hashie (>= 3.4.6)
|
64
|
+
rack (>= 2.2.3)
|
65
|
+
rack-protection
|
66
|
+
omniauth-oauth2 (1.8.0)
|
67
|
+
oauth2 (>= 1.4, < 3)
|
68
|
+
omniauth (~> 2.0)
|
69
|
+
omniauth-shopify-oauth2 (2.3.2)
|
70
|
+
activesupport
|
71
|
+
omniauth-oauth2 (~> 1.5)
|
72
|
+
rack (2.2.6.4)
|
73
|
+
rack-protection (3.0.6)
|
74
|
+
rack
|
75
|
+
rack-test (2.0.2)
|
76
|
+
rack (>= 1.3)
|
77
|
+
rake (13.0.6)
|
78
|
+
ruby2_keywords (0.0.5)
|
79
|
+
shopify_api (9.5.1)
|
80
|
+
activeresource (>= 4.1.0)
|
81
|
+
graphql-client
|
82
|
+
rack
|
83
|
+
sinatra (3.0.6)
|
84
|
+
mustermann (~> 3.0)
|
85
|
+
rack (~> 2.2, >= 2.2.4)
|
86
|
+
rack-protection (= 3.0.6)
|
87
|
+
tilt (~> 2.0)
|
88
|
+
sinatra-activerecord (2.0.26)
|
89
|
+
activerecord (>= 4.1)
|
90
|
+
sinatra (>= 1.0)
|
91
|
+
snaky_hash (2.0.1)
|
92
|
+
hashie
|
93
|
+
version_gem (~> 1.1, >= 1.1.1)
|
94
|
+
sqlite3 (1.6.2)
|
95
|
+
mini_portile2 (~> 2.8.0)
|
96
|
+
sqlite3 (1.6.2-arm64-darwin)
|
97
|
+
sqlite3 (1.6.2-x86_64-linux)
|
98
|
+
tilt (2.1.0)
|
99
|
+
tzinfo (2.0.6)
|
100
|
+
concurrent-ruby (~> 1.0)
|
101
|
+
version_gem (1.1.2)
|
102
|
+
|
103
|
+
PLATFORMS
|
104
|
+
arm64-darwin-21
|
105
|
+
ruby
|
106
|
+
x86_64-linux
|
107
|
+
|
108
|
+
DEPENDENCIES
|
109
|
+
fakeweb
|
110
|
+
minitest
|
111
|
+
mocha
|
112
|
+
rack-test
|
113
|
+
rake (>= 12.3.3)
|
114
|
+
sinatra-embedded-shopify-app!
|
115
|
+
sqlite3
|
116
|
+
|
117
|
+
BUNDLED WITH
|
118
|
+
2.4.12
|
data/LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright (c) 2014 Kevin Hughes
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,172 @@
|
|
1
|
+
sinatra-embedded-shopify-app [](https://dl.circleci.com/status-badge/redirect/gh/kevinhughes27/sinatra-embedded-shopify-app/tree/master)
|
2
|
+
===================
|
3
|
+
|
4
|
+
"A classy shopify app"
|
5
|
+
|
6
|
+
sinatra-embedded-shopify-app is lightweight extension for building Shopify apps using Sinatra. It comes with the Shopify API gem for interacting with the Shopify API and uses the Shopify omniauth gem to handle authentication via Oauth (other auth methods are not supported). The framework itself provides a handful of helper methods to make creating your app as easy as possible. The framework was designed with deployment to Heroku in mind and following the instructions below I've been able to create a new application from scratch, deploy it to Heroku and install on my live test shop in less than 5 minutes.
|
7
|
+
|
8
|
+
|
9
|
+
Getting Started
|
10
|
+
---------------
|
11
|
+
|
12
|
+
Install the gem:
|
13
|
+
|
14
|
+
```
|
15
|
+
gem install sinatra-embedded-shopify-app
|
16
|
+
```
|
17
|
+
|
18
|
+
or build from source
|
19
|
+
|
20
|
+
```
|
21
|
+
gem build sinatra-embedded-shopify-app.gemspec
|
22
|
+
gem install sinatra-embedded-shopify-app-X.X.X.gem
|
23
|
+
```
|
24
|
+
|
25
|
+
To create a new app use the generator:
|
26
|
+
|
27
|
+
```
|
28
|
+
sinatra-embedded-shopify-app-generator new <your new app name>
|
29
|
+
```
|
30
|
+
|
31
|
+
This will create a new skeleton sinatra-embedded-shopify-app. The generator will create several default files for you rather than having them bundled in the sinatra extension - its worthwhile to read this section to understand what each of these files is for.
|
32
|
+
|
33
|
+
`config/database.yml` --> The database config for active record. Initially this is setup to use sqlite3 for development and testing which you may want to change to mimic your production database.
|
34
|
+
|
35
|
+
`.gitignore` --> tells git which files to ignore, namely `.env` you may find more things you want to add to this file.
|
36
|
+
|
37
|
+
`.env` --> a hidden file not tracked by source control for storing credentials etc. to be set as environment variables
|
38
|
+
|
39
|
+
`config.ru` --> Rackup file - describes how to run a rack based app
|
40
|
+
|
41
|
+
`Gemfile` --> manages the dependencies of the app
|
42
|
+
|
43
|
+
`src/app.rb` --> This file is the skeleton app file. More details on how to use the methods provided by this extension are given in the following section. There are more comments inside this file explaining the skeleton app.
|
44
|
+
|
45
|
+
`Procfile` --> Specific for deploying to Heroku, this file tells heroku how to run the app
|
46
|
+
|
47
|
+
`public/icon.png` --> This icon file is used by the Shopify Embedded App SKD and is shown in the menu bar of your embedded app
|
48
|
+
|
49
|
+
`Rakefile` --> includes some helper methods etc for running and managing the app. Standard for ruby based projects
|
50
|
+
|
51
|
+
`views/layouts/appliction.erb` --> This is the layout file that all templates will use unless otherwise specified. It sets up some defaults for using the Shopify Embedded App SDK and Twitter Bootstrap for styling
|
52
|
+
|
53
|
+
`views/_top_bar.erb` --> This is a partial view that describes the top bar inside a Shopify Embedded App. It also has some code to *forward* flash messages to the Embedded App SKD
|
54
|
+
|
55
|
+
`views/*` --> The other views used by the app. You'll probably make a lot of changes to home.erb and install.erb to customize the experience for your app
|
56
|
+
|
57
|
+
`test/*` --> Test files, fixtures and helpers for testing your app.
|
58
|
+
|
59
|
+
### Setting the app to use your Shopify API credentials
|
60
|
+
|
61
|
+
You'll need to create a Shopify Partner Account and a new application. You can make an account [here](http://www.shopify.ca/partners) and see this [tutorial](http://docs.shopify.com/api/the-basics/getting-started) for creating a new application. The requires 2 redirects configured:
|
62
|
+
|
63
|
+
* the default redirect_uri from omniauth `<your domain>/auth/shopify/callback`
|
64
|
+
* and `<your domain>/login`
|
65
|
+
|
66
|
+
Note - The sinatra-embedded-shopify-app creates an embedded app! You need change the embedded setting to `enabled` in the [Shopify Partner area](https://app.shopify.com/services/partners/api_clients) for your app. If you don't want your app to be embedded then remove the related code in `layout/application.erb` and delete the `layout/_top_bar.erb` file and the references to it in the other views.
|
67
|
+
|
68
|
+
After creating your new application you need to edit the `.env` file and add the following lines:
|
69
|
+
|
70
|
+
```
|
71
|
+
SHOPIFY_API_KEY=<your api key>
|
72
|
+
SHOPIFY_SHARED_SECRET=<your shared secret>
|
73
|
+
SECRET=<generate a random string to encrypt credentials with>
|
74
|
+
```
|
75
|
+
|
76
|
+
If your app has any other secret credentials you should add them to this file.
|
77
|
+
|
78
|
+
|
79
|
+
Shopify::Methods
|
80
|
+
----------------
|
81
|
+
|
82
|
+
**shopify_session** - The main method of the framework, most of your routes will use this method to acquire a valid shopify session and then perform api calls to Shopfiy. The method activates a Shopify API session for you and accepts a block inside of which you can use the ShopifyAPI. Here is an example endpoint that displays products:
|
83
|
+
|
84
|
+
```ruby
|
85
|
+
get '/products.json' do
|
86
|
+
shopify_session do |shop_name|
|
87
|
+
products = ShopifyAPI::Product.all(limit: 5)
|
88
|
+
products.to_json
|
89
|
+
end
|
90
|
+
end
|
91
|
+
```
|
92
|
+
|
93
|
+
**shopify_webhook** - This method defines a `post` endpoint that receives a webhook from Shopify. Webhooks are a great way to keep your app in sync with a shop's data without polling. You can read more about webhooks [here](http://docs.shopify.com/api/tutorials/using-webhooks). This method also takes a block and yields the `shop_name` and `webhook_body` as a hash (note only works for json webhooks, don't use xml). Here is an example that listens to an order creation webhook:
|
94
|
+
|
95
|
+
```ruby
|
96
|
+
shopify_webhook('/order.json') do |shop_name, webhook_data|
|
97
|
+
# do something with the data
|
98
|
+
end
|
99
|
+
```
|
100
|
+
|
101
|
+
Note this method does not active a Shopify session by default but the current_shop* methods still work. It is not advised but if you want to handle the webhook in a web request you will need to activate the ShopifyAPI session manually:
|
102
|
+
|
103
|
+
```ruby
|
104
|
+
shop = Shop.find_by(shopify_domain: current_shop_name)
|
105
|
+
api_session = ShopifyAPI::Session.new(shop.shopify_domain, shop.shopify_token)
|
106
|
+
ShopifyAPI::Base.activate_session(api_session)
|
107
|
+
```
|
108
|
+
|
109
|
+
It's impossible to control the flow of webhooks to your app from Shopify especially if a larger store installs your app or if a shop has a flash sale. To prevent your app from getting overloaded with webhook requests it is best practise to process webhooks in a background queue and return a `200` to Shopify immediately. Ruby has several good background job frameworks that work with Sinatra including [Sidekiq](https://github.com/mperham/sidekiq) and [Resque](https://github.com/resque/resque).
|
110
|
+
|
111
|
+
**after_shopify_auth** - This is a private method provided with the framework that gets called whenever the app is authorized. You should fill this method in with anything you need to initialize, for example webhooks and services on Shopify or any other database models you have created specific to a shop. Note that this method will be called anytime the auth flow is completed so this method should be idempotent (running it twice has the same effect as running it once).
|
112
|
+
|
113
|
+
sinatra-embedded-shopify-app includes sinatra/activerecord for creating models that can be persisted in the database. You might want to read more about sinatra/activerecord and the methods it makes available to you: [https://github.com/janko-m/sinatra-activerecord](https://github.com/janko-m/sinatra-activerecord)
|
114
|
+
|
115
|
+
sinatra-embedded-shopify-app also includes `sinatra-flash` and the flash messages are forwarded to the Shopify Embedded App SDK (see the code in `views/layouts/application.erb`). Flash messages are useful for signalling to your users that a request was successful without changing the page. The following is an example of how to use a flash message in a route:
|
116
|
+
|
117
|
+
```ruby
|
118
|
+
post '/flash_message' do
|
119
|
+
flash[:notice] = "Flash Message!"
|
120
|
+
redirect '/'
|
121
|
+
end
|
122
|
+
```
|
123
|
+
|
124
|
+
note - a flash must be followed by a redirect or it won't work!
|
125
|
+
|
126
|
+
|
127
|
+
Developing
|
128
|
+
----------
|
129
|
+
The embedded app sdk won't load non https content so you'll need to use a real domain or a forwarding service like [ngrok](https://ngrok.com/). Set your application url in the [Shopify Partner area](https://app.shopify.com/services/partners/api_clients) to your forwarded url and set the redirect_uri to your forwarded url + `/auth/shopify/callback` which will allow you to install your app on a live shop while running it locally.
|
130
|
+
|
131
|
+
To run the app locally we use [overmind](https://github.com/DarthSim/overmind) a tool for running multiple process and setting our credentials as environment variables. To run the application run:
|
132
|
+
|
133
|
+
```
|
134
|
+
overmind start
|
135
|
+
```
|
136
|
+
|
137
|
+
To connect to a single process to use a debugger/break point use `overmind connect <process>`
|
138
|
+
|
139
|
+
To debug your app add `require 'byebug'` at the top and then add `byebug` to your code where you would like to drop into an interactive session. You may also want to try out [Pry](http://pryrepl.org/).
|
140
|
+
|
141
|
+
If you are testing webhooks locally make sure they also go through the forwarded url and not `localhost`.
|
142
|
+
|
143
|
+
|
144
|
+
Testing
|
145
|
+
-------
|
146
|
+
|
147
|
+
Some basic tests are included in the generated app. To run them simply run:
|
148
|
+
|
149
|
+
```
|
150
|
+
bundle exec rake test:prepare
|
151
|
+
bundle exec rake test
|
152
|
+
```
|
153
|
+
|
154
|
+
`test:prepare` will initialize your testing database using the `seeds.rb` file. If you have added additional models you can add them here.
|
155
|
+
|
156
|
+
Checkout the contents of the `app_test.rb` file and the `test_helper.rb` and modify them as you add functionality to your app. You can also check the tests of other apps using this framework to see more about how to write tests for your own app.
|
157
|
+
|
158
|
+
|
159
|
+
Apps using this framework
|
160
|
+
-------------------------
|
161
|
+
|
162
|
+
* [shopify-fulfillment-integration](https://github.com/Shopify/shopify-fulfillment-integration)
|
163
|
+
* [shopify-tax-receipts](https://github.com/pickle27/shopify-tax-receipts)
|
164
|
+
* Add yours!
|
165
|
+
|
166
|
+
|
167
|
+
Contributing
|
168
|
+
------------
|
169
|
+
|
170
|
+
PRs welcome!
|
171
|
+
|
172
|
+
Note - this framework does have tests! They are the same tests that get generated for new apps by the generator. You can run them with `./test.sh`
|
data/bin/ci.sh
ADDED
@@ -0,0 +1,85 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require 'fileutils'
|
4
|
+
|
5
|
+
# Generator
|
6
|
+
class Generator
|
7
|
+
attr_reader :spec, :app_dir, :example_dir
|
8
|
+
|
9
|
+
def initialize(app_name)
|
10
|
+
@spec = Gem::Specification.find_by_name('sinatra-embedded-shopify-app')
|
11
|
+
gem_root = spec.gem_dir
|
12
|
+
@example_dir = "#{gem_root}/example"
|
13
|
+
|
14
|
+
working_dir = Dir.pwd
|
15
|
+
@app_dir = "#{working_dir}/#{app_name}"
|
16
|
+
|
17
|
+
log "Generating new app: #{app_name}"
|
18
|
+
log "fullpath: #{app_dir}"
|
19
|
+
end
|
20
|
+
|
21
|
+
def run
|
22
|
+
if Dir.exist? app_dir
|
23
|
+
log 'App directory alread exists, pick a new app name or delete the existing folder'
|
24
|
+
return
|
25
|
+
end
|
26
|
+
|
27
|
+
copy_example_app
|
28
|
+
create_dot_env
|
29
|
+
sub_latest_version
|
30
|
+
bundle_install
|
31
|
+
migrate_database
|
32
|
+
end
|
33
|
+
|
34
|
+
private
|
35
|
+
|
36
|
+
def copy_example_app
|
37
|
+
FileUtils.cp_r(example_dir, app_dir)
|
38
|
+
end
|
39
|
+
|
40
|
+
def create_dot_env
|
41
|
+
FileUtils.touch("#{app_dir}/.env")
|
42
|
+
file = File.open("#{app_dir}/.env", 'w')
|
43
|
+
file.write("SHOPIFY_API_KEY=your_api_key\n")
|
44
|
+
file.write("SHOPIFY_SHARED_SECRET=your_shared_secret\n")
|
45
|
+
file.write("SECRET=random_string_to_encrypt_credentials_with\n")
|
46
|
+
file.close
|
47
|
+
end
|
48
|
+
|
49
|
+
def sub_latest_version
|
50
|
+
file_name = "#{app_dir}/Gemfile"
|
51
|
+
text = File.read(file_name)
|
52
|
+
new_contents = text.gsub("gem 'sinatra-embedded-shopify-app', path: '../'",
|
53
|
+
"gem 'sinatra-embedded-shopify-app', '~> #{spec.version}'")
|
54
|
+
File.open(file_name, 'w') { |file| file.puts new_contents }
|
55
|
+
end
|
56
|
+
|
57
|
+
def bundle_install
|
58
|
+
Dir.chdir(app_dir)
|
59
|
+
|
60
|
+
pipe = IO.popen('bundle install')
|
61
|
+
while (line = pipe.gets)
|
62
|
+
print line
|
63
|
+
end
|
64
|
+
end
|
65
|
+
|
66
|
+
def migrate_database
|
67
|
+
Dir.chdir(app_dir)
|
68
|
+
|
69
|
+
pipe = IO.popen('bundle exec rake db:migrate')
|
70
|
+
while (line = pipe.gets)
|
71
|
+
print line
|
72
|
+
end
|
73
|
+
end
|
74
|
+
|
75
|
+
def log(msg)
|
76
|
+
puts msg
|
77
|
+
end
|
78
|
+
end
|
79
|
+
|
80
|
+
if ARGV.length < 2
|
81
|
+
puts "Usage:\nsinatra-embedded-shopify-app-generator new <app_name>"
|
82
|
+
else
|
83
|
+
app_name = ARGV[1]
|
84
|
+
Generator.new(app_name).run
|
85
|
+
end
|
data/example/.gitignore
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
2.7.7
|
data/example/Gemfile
ADDED
@@ -0,0 +1,28 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
source 'https://rubygems.org'
|
4
|
+
ruby '2.7.7'
|
5
|
+
|
6
|
+
gem 'sinatra-activerecord'
|
7
|
+
gem 'sinatra-embedded-shopify-app', path: '../'
|
8
|
+
gem 'sinatra-flash'
|
9
|
+
|
10
|
+
group :production do
|
11
|
+
gem 'pg'
|
12
|
+
end
|
13
|
+
|
14
|
+
group :development, :test do
|
15
|
+
gem 'byebug'
|
16
|
+
gem 'sqlite3'
|
17
|
+
end
|
18
|
+
|
19
|
+
group :development do
|
20
|
+
gem 'rake', '>= 12.3.3'
|
21
|
+
end
|
22
|
+
|
23
|
+
group :test do
|
24
|
+
gem 'fakeweb'
|
25
|
+
gem 'minitest'
|
26
|
+
gem 'mocha', require: false
|
27
|
+
gem 'rack-test'
|
28
|
+
end
|