Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
V
vernemq
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Registry
Issues
1
Issues
1
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
stack
vernemq
Commits
b6a5609f
Commit
b6a5609f
authored
Nov 30, 2018
by
zCaesar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
edit length id
parent
286ef1b5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
2 deletions
+5
-2
authhook/auth_on_register.js
+3
-1
authhook/redis/on_register.js
+2
-1
No files found.
authhook/auth_on_register.js
View file @
b6a5609f
...
...
@@ -3,6 +3,7 @@ var validator = require('./validator');
var
config
=
require
(
'config'
);
// var seneca = require('seneca')({log: 'silent'}).client({ port: config.get('device_registry_port'), host: config.get('device_registry_host') });
var
seneca
=
require
(
'seneca'
)({
log
:
'silent'
}).
client
({
port
:
config
.
get
(
'token_registry_port'
),
host
:
config
.
get
(
'token_registry_host'
)
});
let
on_register_redis
=
require
(
'./redis/on_register'
).
on_register_redis
// https://github.com/isaacs/node-lru-cache
var
LRU
=
require
(
"lru-cache"
),
...
...
@@ -146,7 +147,8 @@ module.exports = function (options = {}) {
// });
// }
// }
require
(
'./redis/on_register'
).
on_register_redis
(
req
.
body
.
client_id
).
then
(
status
=>
{
on_register_redis
(
req
.
body
.
client_id
).
then
(
status
=>
{
console
.
log
(
'redis:status: '
+
status
)
if
(
status
)
{
res
.
send
({
...
...
authhook/redis/on_register.js
View file @
b6a5609f
...
...
@@ -3,12 +3,13 @@ var redis = new Redis()
function
on_register_redis
(
deviceid
)
{
// first time to access on authhook auth_on_register
return
new
Promise
((
resolve
,
reject
)
=>
{
if
(
deviceid
.
indexOf
(
'mqtt'
)
===
0
||
deviceid
.
length
!==
36
)
{
if
(
deviceid
.
indexOf
(
'mqtt'
)
===
0
)
{
resolve
(
true
)
}
else
{
var
information
=
setValue
(
deviceid
)
redis
.
hdel
(
information
.
keys
,
'offline_on'
)
console
.
log
(
information
.
keys
)
redis
.
hset
(
information
.
keys
,
'status'
,
information
.
status
,
'register_on'
,
information
.
register_on
,
'last_check'
,
information
.
last_check
,
function
(
err
,
res
)
{
console
.
log
(
res
)
if
(
!
res
)
{
...
...
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