Skip to content

Commit c7cebda

Browse files
committed
replace weibo_2 gem with my simple auth code
1 parent 7f23817 commit c7cebda

File tree

5 files changed

+62
-57
lines changed

5 files changed

+62
-57
lines changed

Gemfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ gem 'will_paginate', :require => ['will_paginate/active_record', 'will_paginate/
2020
gem 'sanitize'
2121
gem 'carrierwave', :require => ['carrierwave', 'carrierwave/orm/activerecord']
2222
gem 'mini_magick'
23-
gem 'weibo_2'
23+
gem "rest-client"
2424

2525
# Production requirements
2626
group :production do

Gemfile.lock

+1-20
Original file line numberDiff line numberDiff line change
@@ -57,34 +57,20 @@ GEM
5757
eventmachine (1.0.0)
5858
factory_girl (4.2.0)
5959
activesupport (>= 3.0.0)
60-
faraday (0.8.5)
61-
multipart-post (~> 1.1)
6260
github-markdown (0.5.3)
63-
hashie (1.2.0)
6461
http_router (0.10.2)
6562
rack (>= 1.0.0)
6663
url_mount (~> 0.2.1)
67-
httpauth (0.2.0)
6864
i18n (0.6.1)
69-
json (1.7.7)
70-
jwt (0.1.5)
71-
multi_json (>= 1.0)
7265
kgio (2.8.0)
7366
method_source (0.8.1)
7467
mime-types (1.21)
7568
mini_magick (3.4)
7669
subexec (~> 0.2.1)
7770
minitest (2.6.2)
7871
multi_json (1.5.1)
79-
multipart-post (1.1.5)
8072
mysql2 (0.3.11)
8173
nokogiri (1.5.6)
82-
oauth2 (0.8.0)
83-
faraday (~> 0.8)
84-
httpauth (~> 0.1)
85-
jwt (~> 0.1.4)
86-
multi_json (~> 1.0)
87-
rack (~> 1.2)
8874
pry (0.9.11.4)
8975
coderay (~> 1.0.5)
9076
method_source (~> 0.8)
@@ -123,11 +109,6 @@ GEM
123109
raindrops (~> 0.7)
124110
url_mount (0.2.1)
125111
rack
126-
weibo_2 (0.1.1)
127-
hashie (~> 1.2.0)
128-
json (~> 1.7.3)
129-
oauth2 (~> 0.8.0)
130-
rest-client (~> 1.6.7)
131112
will_paginate (3.0.4)
132113

133114
PLATFORMS
@@ -154,8 +135,8 @@ DEPENDENCIES
154135
rack-test
155136
rainbows
156137
rake
138+
rest-client
157139
sanitize
158140
second_level_cache!
159141
thin
160-
weibo_2
161142
will_paginate

app/controllers/home.rb

+20-31
Original file line numberDiff line numberDiff line change
@@ -59,47 +59,36 @@
5959
# weibo authentication
6060
get :weibo_login do
6161
session[:quick_login] = true if params[:quick_login]
62-
redirect WeiboOAuth2::Client.new.authorize_url
62+
redirect WeiboAuth.new.authorize_url
6363
end
6464

6565
get :weibo_callback do
66-
client = WeiboOAuth2::Client.new
66+
halt 401, "没有微博验证码" unless params[:code]
67+
auth = WeiboAuth.new
6768
begin
68-
if access_token = client.auth_code.get_token(params[:code].to_s)
69-
weibo_uid = access_token.params["uid"]
70-
token = client.get_token_from_hash({:access_token => access_token.token, :expires_at => access_token.expires_at})
71-
if token.validated?
72-
@account = Account.where(:provider => 'weibo', :uid => weibo_uid).first
73-
74-
# create commenter account when first weibo login
75-
unless @account
76-
weibo_user = client.users.show_by_uid(weibo_uid)
77-
@account = Account.create(:provider => 'weibo', :uid => weibo_uid, :name => weibo_user.screen_name, :role => 'commenter', :profile_url => weibo_user.profile_url, :profile_image_url => weibo_user.profile_image_url)
78-
end
79-
80-
# update weibo profile if profile is empty
81-
if @account.profile_url.blank? || @account.profile_image_url.blank?
82-
weibo_user = client.users.show_by_uid(weibo_uid)
83-
@account.update_attributes(:profile_url => weibo_user.profile_url, :profile_image_url => weibo_user.profile_image_url)
84-
end
85-
86-
session[:account_id] = @account.id
87-
if session[:quick_login]
88-
session[:quick_login] = nil
89-
render 'home/weibo_callback', :layout => false
90-
else
91-
flash[:notice] = '成功登录'
92-
redirect_to url(:index)
93-
end
94-
end
69+
auth.callback(params[:code])
70+
user_info = auth.get_user_info
71+
@account = Account.where(:provider => 'weibo', :uid => user_info['id'].to_i).first
72+
# create commenter account when first weibo login
73+
unless @account
74+
@account = Account.create(:provider => 'weibo', :uid => user_info['id'], :name => user_info['screen_name'], :role => 'commenter', :profile_url => user_info['profile_url'], :profile_image_url => user_info['profile_image_url'])
75+
end
76+
# update weibo profile if profile is empty
77+
if @account.profile_url.blank? || @account.profile_image_url.blank?
78+
@account.update_attributes(:profile_url => user_info['profile_url'], :profile_image_url => user_info['profile_image_url'])
79+
end
80+
session[:account_id] = @account.id
81+
if session[:quick_login]
82+
session[:quick_login] = nil
83+
render 'home/weibo_callback', :layout => false
9584
else
96-
halt 401, "授权失败,请重试几次"
85+
flash[:notice] = '成功登录'
86+
redirect_to url(:index)
9787
end
9888
rescue => e
9989
STDERR.puts e
10090
STDERR.puts e.backtrace.join("\n")
10191
halt 401, "授权失败,请重试几次"
10292
end
10393
end
104-
10594
end

config/boot.rb

-5
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,4 @@
6969
# Set carrierwave sanitize
7070
CarrierWave::SanitizedFile.sanitize_regexp = /[^[:word:]\.\-\+]/
7171

72-
# Weibo config
73-
WeiboOAuth2::Config.api_key = APP_CONFIG['weibo_api_key']
74-
WeiboOAuth2::Config.api_secret = APP_CONFIG['weibo_api_secret']
75-
WeiboOAuth2::Config.redirect_uri = APP_CONFIG['weibo_redirect_uri']
76-
7772
Padrino.load!

lib/weibo_auth.rb

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# encoding: utf-8
2+
require 'timeout'
3+
4+
OpenSSL::SSL::VERIFY_PEER = OpenSSL::SSL::VERIFY_NONE
5+
6+
class WeiboAuth
7+
8+
def authorize_url
9+
"https://api.weibo.com/oauth2/authorize?response_type=code&client_id=#{APP_CONFIG['weibo_api_key']}&redirect_uri=#{URI.escape APP_CONFIG['weibo_redirect_uri']}"
10+
end
11+
12+
def callback(code)
13+
@uid = Timeout::timeout(20) do
14+
@access_token = JSON.parse(RestClient.post('https://api.weibo.com/oauth2/access_token',
15+
:client_id => APP_CONFIG['weibo_api_key'],
16+
:client_secret => APP_CONFIG['weibo_api_secret'],
17+
:grant_type => 'authorization_code',
18+
:code => code,
19+
:redirect_uri => APP_CONFIG['weibo_redirect_uri'])
20+
)['access_token']
21+
JSON.parse(RestClient.get("https://api.weibo.com/2/account/get_uid.json?access_token=#{@access_token}"))['uid']
22+
end
23+
raise Error, "验证失败" unless @uid
24+
rescue Timeout::Error
25+
raise Error, "访问超时,请稍后重试"
26+
end
27+
28+
def get_user_info
29+
user_info = Timeout::timeout(20) do
30+
JSON.parse(RestClient.get("https://api.weibo.com/2/users/show.json?uid=#{@uid}&access_token=#{@access_token}"))
31+
end
32+
unless user_info["name"]
33+
STDERR.puts "Weibo获取用户信息错误:" + user_info.inspect
34+
raise Error, "获取用户信息时发生错误,请稍后重试"
35+
end
36+
user_info
37+
rescue Timeout::Error
38+
raise Error, "访问超时,请稍后重试"
39+
end
40+
end

0 commit comments

Comments
 (0)