shopqi-app-webhook 0.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.
data/MIT-LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright 2012 YOURNAME
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,31 @@
1
+ # ShopQi App Webhook Engine
2
+
3
+ 新增商店用户时向 ShopQi 插入 Webhook 回调记录
4
+ 接收从 ShopQi 中发送的 Webhook 事件信息
5
+
6
+ ## 安装
7
+
8
+ $ echo "gem 'shopqi-app-webhook'" >> Gemfile
9
+ $ bundle
10
+
11
+ ## 使用
12
+
13
+ 此 engine 依赖 shopqi-app,使用前需要先调用 shopqi-app 的 generator
14
+
15
+ $ rails g shopqi_app client_id client_secret
16
+ $ rails g shopqi_app_webhook
17
+
18
+ `client_id`, `client_secret` 在注册 Application 后显示,注册时 `REDIRECT URI` 填写 localhost:3000/callback
19
+
20
+ ## 配置
21
+
22
+ `app/jobs/webhook_workers.rb` 负责向 ShopQi 创建回调记录
23
+
24
+ `app/controllers/webhook_controller.rb` 负责接收和处理事件信息
25
+
26
+ ## 启动
27
+
28
+ $ rails s
29
+ $ QUEUE=* bundle exec rake resque:work
30
+
31
+ 访问 [http://localhost:3000](http://localhost:3000)
data/Rakefile ADDED
@@ -0,0 +1,27 @@
1
+ #!/usr/bin/env rake
2
+ begin
3
+ require 'bundler/setup'
4
+ rescue LoadError
5
+ puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
6
+ end
7
+ begin
8
+ require 'rdoc/task'
9
+ rescue LoadError
10
+ require 'rdoc/rdoc'
11
+ require 'rake/rdoctask'
12
+ RDoc::Task = Rake::RDocTask
13
+ end
14
+
15
+ RDoc::Task.new(:rdoc) do |rdoc|
16
+ rdoc.rdoc_dir = 'rdoc'
17
+ rdoc.title = 'ShopQiAppWebhook'
18
+ rdoc.options << '--line-numbers'
19
+ rdoc.rdoc_files.include('README.rdoc')
20
+ rdoc.rdoc_files.include('lib/**/*.rb')
21
+ end
22
+
23
+ APP_RAKEFILE = File.expand_path("../spec/dummy/Rakefile", __FILE__)
24
+ load 'rails/tasks/engine.rake'
25
+
26
+ Bundler::GemHelper.install_tasks
27
+
@@ -0,0 +1,15 @@
1
+ // This is a manifest file that'll be compiled into application.js, which will include all the files
2
+ // listed below.
3
+ //
4
+ // Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
5
+ // or vendor/assets/javascripts of plugins, if any, can be referenced here using a relative path.
6
+ //
7
+ // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
8
+ // the compiled file.
9
+ //
10
+ // WARNING: THE FIRST BLANK LINE MARKS THE END OF WHAT'S TO BE PROCESSED, ANY BLANK LINE SHOULD
11
+ // GO AFTER THE REQUIRES BELOW.
12
+ //
13
+ //= require jquery
14
+ //= require jquery_ujs
15
+ //= require_tree .
@@ -0,0 +1,13 @@
1
+ /*
2
+ * This is a manifest file that'll be compiled into application.css, which will include all the files
3
+ * listed below.
4
+ *
5
+ * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
6
+ * or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
7
+ *
8
+ * You're free to add application-wide styles to this file and they'll appear at the top of the
9
+ * compiled file, but it's generally better to create a new file per style scope.
10
+ *
11
+ *= require_self
12
+ *= require_tree .
13
+ */
@@ -0,0 +1,4 @@
1
+ module ShopQiAppWebhook
2
+ class ApplicationController < ActionController::Base
3
+ end
4
+ end
@@ -0,0 +1,36 @@
1
+ module ShopQiAppWebhook
2
+ class WebhookController < ApplicationController
3
+ skip_before_filter :verify_authenticity_token
4
+ skip_before_filter :authenticate_shop!
5
+ before_filter :check_source # 检查是否来自 ShopQi
6
+ before_filter :check_shop
7
+
8
+ def orders_fulfilled
9
+ render nothing: true
10
+ end
11
+
12
+ protected
13
+ def check_source
14
+ shopqi_sign = request.headers['HTTP_X_SHOPQI_HMAC_SHA256']
15
+ data = request.body.read
16
+ request.body.rewind
17
+ digest = OpenSSL::Digest::Digest.new('sha256')
18
+ sign = Base64.encode64(OpenSSL::HMAC.digest(digest, SecretSetting.oauth.secret, data)).strip
19
+ render json: { errors: 'Signature invalid' } and return unless sign == shopqi_sign
20
+ end
21
+
22
+ def check_shop
23
+ render json: { errors: 'Domain invalid' } and return unless shop
24
+ end
25
+
26
+ def shop
27
+ domain = request.headers['HTTP_X_SHOPQI_DOMAIN']
28
+ @shop ||= Shop.find_by_shopqi_domain(domain) unless domain.blank?
29
+ end
30
+
31
+ def order_id
32
+ request.headers['HTTP_X_SHOPQI_ORDER_ID']
33
+ end
34
+
35
+ end
36
+ end
@@ -0,0 +1,4 @@
1
+ module ShopQiAppWebhook
2
+ module ApplicationHelper
3
+ end
4
+ end
@@ -0,0 +1,9 @@
1
+ module ShopQiAppWebhook
2
+ class ShopObserver < ActiveRecord::Observer
3
+ observe :shop
4
+
5
+ def after_create(shop)
6
+ Resque.enqueue(WebhookWorker, shop.id)
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,14 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>ShopQiAppWebhook</title>
5
+ <%= stylesheet_link_tag "shopqi_app_webhook/application", :media => "all" %>
6
+ <%= javascript_include_tag "shopqi_app_webhook/application" %>
7
+ <%= csrf_meta_tags %>
8
+ </head>
9
+ <body>
10
+
11
+ <%= yield %>
12
+
13
+ </body>
14
+ </html>
@@ -0,0 +1,11 @@
1
+ Description:
2
+ Generate ShopQi Webhook Api Files.
3
+
4
+ Example:
5
+ rails generate shopqi_app_webhook
6
+
7
+ This will create:
8
+ app/controllers/webhook_controller.rb
9
+ app/jobs/webhook_workers.rb
10
+ db/models/order.rb
11
+ db/migrate/create_orders.rb
@@ -0,0 +1,31 @@
1
+ require 'rails/generators/active_record'
2
+
3
+ class ShopQiAppWebhookGenerator < Rails::Generators::Base
4
+ include Rails::Generators::Migration
5
+ namespace 'shopqi_app_webhook'
6
+ source_root File.expand_path('../templates', __FILE__)
7
+
8
+ def copy_files
9
+ directory 'app'
10
+ end
11
+
12
+ def add_routes
13
+ route "use_shopqi_webhook"
14
+ end
15
+
16
+ def update_files
17
+ insert_into_file "app/models/shop.rb", "\s\shas_many :orders\n", after: "class Shop < ActiveRecord::Base\n"
18
+ end
19
+
20
+ def install_migration
21
+ migration_template 'db/migrate/create_orders.rb', 'db/migrate/create_orders.rb'
22
+ end
23
+
24
+ def show
25
+ readme "README"
26
+ end
27
+
28
+ def self.next_migration_number(dirname)
29
+ ActiveRecord::Generators::Base.next_migration_number(dirname)
30
+ end
31
+ end
@@ -0,0 +1,10 @@
1
+ ===============================================================================
2
+
3
+ Step 1.
4
+ $ bundle exec rake db:create db:migrate
5
+
6
+ Step 2.
7
+ $ rails server
8
+ $ QUEUE=* bundle exec rake resque:work
9
+
10
+ ===============================================================================
@@ -0,0 +1,9 @@
1
+ class WebhookController < ShopQiAppWebhook::WebhookController
2
+
3
+ def orders_fulfilled
4
+ attrs = JSON(request.body.read)['order']
5
+ shop.orders.where(order_id: order_id).first_or_create! name: attrs['name'], order_id: attrs['id'], total_price: attrs['total_price'], created_at: attrs['created_at']
6
+ render nothing: true
7
+ end
8
+
9
+ end
@@ -0,0 +1,12 @@
1
+ # encoding: utf-8
2
+ module WebhookWorker
3
+
4
+ @queue = "webhook_worker"
5
+
6
+ def self.perform(shop_id)
7
+ shop = Shop.find(shop_id)
8
+ Shopkit.setup url: shop.shopqi_domain, access_token: shop.access_token
9
+ Shopkit.create_webhook event: 'orders/fulfilled', callback_url: "http://#{SecretSetting.domain.host}/webhook"
10
+ end
11
+
12
+ end
@@ -0,0 +1,4 @@
1
+ class Order < ActiveRecord::Base
2
+ belongs_to :shop
3
+ attr_accessible :name, :order_id, :total_price, :created_at
4
+ end
@@ -0,0 +1,12 @@
1
+ class CreateOrders < ActiveRecord::Migration
2
+ def change
3
+ create_table :orders do |t|
4
+ t.references :shop , null: false
5
+ t.integer :order_id , unique: true, null: false
6
+ t.string :name , limit: 32 , null: false
7
+ t.float :total_price , null: false
8
+ t.datetime :created_at, null: false
9
+ end
10
+ add_index :orders, :shop_id, unique: true
11
+ end
12
+ end
@@ -0,0 +1,9 @@
1
+ require "shopqi_app_webhook/engine"
2
+
3
+ module ShopQiAppWebhook
4
+
5
+ module Rails
6
+ autoload :Routes, "shopqi_app_webhook/rails/routes"
7
+ end
8
+
9
+ end
@@ -0,0 +1,25 @@
1
+ module ShopQiAppWebhook
2
+ class Engine < Rails::Engine
3
+ isolate_namespace ShopQiAppWebhook
4
+ engine_name 'shopqi_app_webhook'
5
+
6
+ config.active_record.observers = "ShopQiAppWebhook::ShopObserver"
7
+
8
+ initializer "shopqi_app_webhook.routes" do
9
+ ShopQiAppWebhook::Rails::Routes.install
10
+ end
11
+
12
+ initializer "shopqi_app.acronym" do
13
+ ActiveSupport::Inflector.inflections do |inflect|
14
+ inflect.acronym 'ShopQi'
15
+ end
16
+ end
17
+
18
+ initializer "shopqi_app_webhook.resque" do
19
+ require 'resque/server'
20
+ current_app_name = ::Rails.application.class.to_s.split("::").first
21
+ Resque.redis.namespace = "resque:#{current_app_name}"
22
+ end
23
+
24
+ end
25
+ end
@@ -0,0 +1,15 @@
1
+ module ShopQiAppWebhook
2
+ module Rails
3
+ class Routes
4
+ module Helper
5
+ def use_shopqi_webhook(options = {}, &block)
6
+ self.post '/webhook', to: 'webhook#orders_fulfilled'#, format: :json
7
+ end
8
+ end
9
+
10
+ def self.install
11
+ ActionDispatch::Routing::Mapper.send :include, ShopQiAppWebhook::Rails::Routes::Helper
12
+ end
13
+ end
14
+ end
15
+ end
@@ -0,0 +1,3 @@
1
+ module ShopQiAppWebhook
2
+ VERSION = "0.1.0"
3
+ end
@@ -0,0 +1,7 @@
1
+ # desc "Explaining what the task does"
2
+ # task :shopqi-app-webhook do
3
+ # # Task goes here
4
+ # end
5
+
6
+ task "resque:setup" => :environment
7
+ require 'resque/tasks'
metadata ADDED
@@ -0,0 +1,201 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: shopqi-app-webhook
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - saberma
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2012-07-17 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: rails
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ~>
20
+ - !ruby/object:Gem::Version
21
+ version: 3.2.6
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ~>
28
+ - !ruby/object:Gem::Version
29
+ version: 3.2.6
30
+ - !ruby/object:Gem::Dependency
31
+ name: shopqi-app
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ~>
36
+ - !ruby/object:Gem::Version
37
+ version: 0.2.4
38
+ type: :runtime
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ~>
44
+ - !ruby/object:Gem::Version
45
+ version: 0.2.4
46
+ - !ruby/object:Gem::Dependency
47
+ name: resque
48
+ requirement: !ruby/object:Gem::Requirement
49
+ none: false
50
+ requirements:
51
+ - - ~>
52
+ - !ruby/object:Gem::Version
53
+ version: 1.21.0
54
+ type: :runtime
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - ~>
60
+ - !ruby/object:Gem::Version
61
+ version: 1.21.0
62
+ - !ruby/object:Gem::Dependency
63
+ name: sqlite3
64
+ requirement: !ruby/object:Gem::Requirement
65
+ none: false
66
+ requirements:
67
+ - - ! '>='
68
+ - !ruby/object:Gem::Version
69
+ version: '0'
70
+ type: :development
71
+ prerelease: false
72
+ version_requirements: !ruby/object:Gem::Requirement
73
+ none: false
74
+ requirements:
75
+ - - ! '>='
76
+ - !ruby/object:Gem::Version
77
+ version: '0'
78
+ - !ruby/object:Gem::Dependency
79
+ name: rspec-rails
80
+ requirement: !ruby/object:Gem::Requirement
81
+ none: false
82
+ requirements:
83
+ - - ~>
84
+ - !ruby/object:Gem::Version
85
+ version: 2.10.1
86
+ type: :development
87
+ prerelease: false
88
+ version_requirements: !ruby/object:Gem::Requirement
89
+ none: false
90
+ requirements:
91
+ - - ~>
92
+ - !ruby/object:Gem::Version
93
+ version: 2.10.1
94
+ - !ruby/object:Gem::Dependency
95
+ name: resque_spec
96
+ requirement: !ruby/object:Gem::Requirement
97
+ none: false
98
+ requirements:
99
+ - - ! '>='
100
+ - !ruby/object:Gem::Version
101
+ version: '0'
102
+ type: :development
103
+ prerelease: false
104
+ version_requirements: !ruby/object:Gem::Requirement
105
+ none: false
106
+ requirements:
107
+ - - ! '>='
108
+ - !ruby/object:Gem::Version
109
+ version: '0'
110
+ - !ruby/object:Gem::Dependency
111
+ name: factory_girl_rails
112
+ requirement: !ruby/object:Gem::Requirement
113
+ none: false
114
+ requirements:
115
+ - - ! '>='
116
+ - !ruby/object:Gem::Version
117
+ version: '0'
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ none: false
122
+ requirements:
123
+ - - ! '>='
124
+ - !ruby/object:Gem::Version
125
+ version: '0'
126
+ - !ruby/object:Gem::Dependency
127
+ name: webmock
128
+ requirement: !ruby/object:Gem::Requirement
129
+ none: false
130
+ requirements:
131
+ - - ! '>='
132
+ - !ruby/object:Gem::Version
133
+ version: '0'
134
+ type: :development
135
+ prerelease: false
136
+ version_requirements: !ruby/object:Gem::Requirement
137
+ none: false
138
+ requirements:
139
+ - - ! '>='
140
+ - !ruby/object:Gem::Version
141
+ version: '0'
142
+ description: ShopQi app webhook engine.
143
+ email:
144
+ - mahb45@gmail.com
145
+ executables: []
146
+ extensions: []
147
+ extra_rdoc_files: []
148
+ files:
149
+ - app/helpers/shopqi_app_webhook/application_helper.rb
150
+ - app/controllers/shopqi_app_webhook/application_controller.rb
151
+ - app/controllers/shopqi_app_webhook/webhook_controller.rb
152
+ - app/observers/shopqi_app_webhook/shop_observer.rb
153
+ - app/assets/javascripts/shopqi_app_webhook/application.js
154
+ - app/assets/stylesheets/shopqi_app_webhook/application.css
155
+ - app/views/layouts/shopqi_app_webhook/application.html.erb
156
+ - lib/generators/shopqi_app_webhook/templates/db/migrate/create_orders.rb
157
+ - lib/generators/shopqi_app_webhook/templates/app/jobs/webhook_worker.rb
158
+ - lib/generators/shopqi_app_webhook/templates/app/controllers/webhook_controller.rb
159
+ - lib/generators/shopqi_app_webhook/templates/app/models/order.rb
160
+ - lib/generators/shopqi_app_webhook/templates/README
161
+ - lib/generators/shopqi_app_webhook/shopqi_app_webhook_generator.rb
162
+ - lib/generators/shopqi_app_webhook/USAGE
163
+ - lib/shopqi-app-webhook.rb
164
+ - lib/shopqi_app_webhook/version.rb
165
+ - lib/shopqi_app_webhook/rails/routes.rb
166
+ - lib/shopqi_app_webhook/engine.rb
167
+ - lib/tasks/shopqi-app-webhook_tasks.rake
168
+ - MIT-LICENSE
169
+ - Rakefile
170
+ - README.md
171
+ homepage: https://github.com/saberma/shopqi-app-webhook
172
+ licenses: []
173
+ post_install_message:
174
+ rdoc_options: []
175
+ require_paths:
176
+ - lib
177
+ required_ruby_version: !ruby/object:Gem::Requirement
178
+ none: false
179
+ requirements:
180
+ - - ! '>='
181
+ - !ruby/object:Gem::Version
182
+ version: '0'
183
+ segments:
184
+ - 0
185
+ hash: -46102131
186
+ required_rubygems_version: !ruby/object:Gem::Requirement
187
+ none: false
188
+ requirements:
189
+ - - ! '>='
190
+ - !ruby/object:Gem::Version
191
+ version: '0'
192
+ segments:
193
+ - 0
194
+ hash: -46102131
195
+ requirements: []
196
+ rubyforge_project:
197
+ rubygems_version: 1.8.24
198
+ signing_key:
199
+ specification_version: 3
200
+ summary: ShopQi app webhook engine.
201
+ test_files: []