-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
108 lines (95 loc) · 2.46 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
'use strict'
const Auth = require('seneca-auth')
const Redirect = require('./lib/redirect.js')
const Mesh = require('seneca-mesh')
const _ = require('lodash')
const defaultOptions = {
concorda: {
protocol: process.env.CONCORDA_PROTOCOL || 'http',
host: process.env.CONCORDA_HOST || 'localhost',
port: process.env.CONCORDA_PORT || 3050,
},
client: {
protocol: process.env.PROTOCOL || 'http',
host: process.env.HOST || 'localhost',
port: process.env.PORT || 3000,
appkey: process.env.CLIENT_KEY || 'not-available'
},
auth: {
restrict: '/api',
password: process.env.COOKIE_PASSWORD || '12323433234ffdfrdssadfhsamqwr098yrd09r8mhmf9q84mfxkwedorgno438drn8473nd,mnjbrk'
},
transport: {
active: false,
type: 'tcp'
},
mesh: {
active: false,
auto: true
}
}
module.exports = function (opts) {
var seneca = this
const options = _.extend(
{},
defaultOptions,
opts
)
var name = 'concorda-client'
seneca
.use(Auth, options.auth)
seneca.ready(function() {
seneca
.use(Redirect, options)
if (options.mesh.active === true || options.mesh.active === 'true') {
seneca.log.info('Use mesh communication', options.mesh)
seneca
.use(Mesh, {auto: true})
}
if (options.transport.active === true || options.transport.active === 'true') {
seneca.log.info('Use transport communication', options.transport)
seneca
.client(options.transport)
}
})
function redirectGoogle(args, done){
return done(
null,
{
http$:
{
redirect: `${options.concorda.protocol}://${options.concorda.host}:${options.concorda.port}/auth/google?callback_url=${options.client.protocol}://${options.client.host}:${options.client.port}`
}
}
)
}
function localPing(msg, response){
this.act('role: concorda-communication, cmd: ping', response)
}
seneca
.add('role: concorda, cmd: redirectGoogle', redirectGoogle)
.add('role: concorda, cmd: localPing', localPing)
seneca.act({
role: 'web', use: {
name: 'concorda',
prefix: '/auth',
pin: {role: 'concorda', cmd: '*'},
map: {
redirectGoogle: {GET: true, alias: 'google'}
}
}
})
seneca.act({
role: 'web', use: {
name: 'concorda',
prefix: '/concorda',
pin: {role: 'concorda', cmd: '*'},
map: {
localPing: {GET: true, alias: 'ping'}
}
}
})
return {
name: name
}
}