修改菜单

This commit is contained in:
guange 2016-03-01 17:31:44 +08:00
parent b823413267
commit 1b171e414c
1 changed files with 17 additions and 8 deletions

View File

@ -157,10 +157,6 @@ class WechatsController < ActionController::Base
end
def sendBind(request)
openid = request[:FromUserName]
attrs = wechat.user(openid)
UserWechat.delete_all(openid: openid)
uw = UserWechat.create!(attrs)
news = (1..1).each_with_object([]) { |n, memo| memo << { title: '绑定登录', content: "您还未绑定确实的用户,请先绑定." } }
request.reply.news(news) do |article, n, index| # article is return object
url = "https://open.weixin.qq.com/connect/oauth2/authorize?appid=#{Wechat.config.appid}&redirect_uri=#{login_wechat_url}&response_type=code&scope=snsapi_base&state=#{uw.id}#wechat_redirect"
@ -173,14 +169,21 @@ class WechatsController < ActionController::Base
def bind
begin
raise "非法操作, 微信ID不存在" unless params[:state]
raise "非法操作, 用户ID不存在" unless params[:state]
raise "非法操作, code不存在" unless params[:code]
openid = get_openid(params[:code])
raise "无法获取到openid" unless openid
user, last_login_on = User.try_to_login(params[:username], params[:password])
raise "用户名或密码错误,请重新登录" unless user
#补全用户信息
uw = UserWechat.find_by_id(params[:state])
uw.user_id = user.id
uw.save!
raise "此用户已经绑定了公众号" if user.user_wechat
UserWechat.create!(
openid: openid,
user: user
)
render :text => {status:0, msg: "绑定成功"}.to_json
rescue Exception=>e
render :text => {status: -1, msg: e.message}.to_json
@ -193,6 +196,12 @@ class WechatsController < ActionController::Base
end
private
def get_openid(code)
url = "https://api.weixin.qq.com/sns/oauth2/access_token?appid=#{Wechat.config.appid}&secret=#{Wechat.config.secret}&code=#{code}&grant_type=authorization_code"
JSON.parse(URI.parse(url).read)["openid"]
end
def user_binded?(openid)
uw = UserWechat.where(openid: openid).first
end