Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
weixin_authorize
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ikcrm_common
weixin_authorize
Commits
663720e8
Commit
663720e8
authored
Mar 20, 2014
by
lanrion
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
refactor
parent
b81efc95
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
11 deletions
+15
-11
lib/weixin_authorize/client.rb
+15
-11
No files found.
lib/weixin_authorize/client.rb
View file @
663720e8
...
...
@@ -20,27 +20,32 @@ module WeixinAuthorize
def
initialize
(
app_id
,
app_secret
,
redis_key
=
nil
)
@app_id
=
app_id
@app_secret
=
app_secret
@expired_at
=
(
expired_at
.
to_i
||
Time
.
now
.
to_i
)
@expired_at
=
Time
.
now
.
to_i
@redis_key
=
(
redis_key
||
"weixin_"
+
app_id
)
end
# return token
def
get_access_token
authenticate
if
token_expired?
if
!
is_weixin_redis_blank?
self
.
access_token
=
weixin_redis
.
hget
(
redis_key
,
"access_token"
)
self
.
expired_at
=
weixin_redis
.
hget
(
redis_key
,
"expired_at"
)
end
@access_token
end
# authenticate access_token
def
authenticate
if
weixin_redis
.
nil
?
if
is_weixin_redis_blank
?
http_get_access_token
else
puts
"authenticate_with_redis"
authenticate_with_redis
end
end
def
token_expired?
if
weixin_redis
.
nil
?
if
is_weixin_redis_blank
?
# 如果当前token过期时间小于现在的时间,则重新获取一次
@expired_at
<=
Time
.
now
.
to_i
else
...
...
@@ -51,14 +56,9 @@ module WeixinAuthorize
private
def
authenticate_with_redis
if
token_expired?
http_get_access_token
weixin_redis
.
hmset
(
redis_key
,
:access_token
,
access_token
,
:expired_at
,
expired_at
)
weixin_redis
.
expireat
(
redis_key
,
expired_at
.
to_i
-
10
)
# 提前10秒超时
else
self
.
access_token
=
weixin_redis
.
hget
(
redis_key
,
"access_token"
)
self
.
expired_at
=
weixin_redis
.
hget
(
redis_key
,
"expired_at"
)
end
http_get_access_token
weixin_redis
.
hmset
(
redis_key
,
:access_token
,
access_token
,
:expired_at
,
expired_at
)
weixin_redis
.
expireat
(
redis_key
,
expired_at
.
to_i
-
10
)
# 提前10秒超时
end
def
http_get_access_token
...
...
@@ -109,5 +109,9 @@ module WeixinAuthorize
@redis
||=
WeixinAuthorize
.
config
.
redis
end
def
is_weixin_redis_blank?
weixin_redis
.
nil?
end
end
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment