-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathlocal-auth.js
57 lines (46 loc) · 1.32 KB
/
local-auth.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
var error = require('eraro')({
package: 'local-auth'
})
module.exports = function (options) {
var seneca = this
var internals = {}
internals.accepted_framworks = [
'express',
'hapi'
]
internals.options = options
if (!options.framework) {
options.framework = 'express'
}
internals.choose_framework = function () {
if ('express' === internals.options.framework) {
internals.load_express_implementation()
}
else {
internals.load_hapi_implementation()
}
}
internals.check_options = function () {
if (seneca.options().plugin.web && seneca.options().plugin.web.framework) {
internals.options.framework = seneca.options().plugin.web.framework
}
if (internals.accepted_framworks.indexOf(internals.options.framework) === -1) {
throw error('Framework type <' + internals.options.framework + '> not supported.')
}
}
internals.load_express_implementation = function () {
seneca.use(require('./lib/express-local-auth'), internals.options)
}
internals.load_hapi_implementation = function () {
seneca.use(require('./lib/hapi-local-auth'), internals.options)
}
function init (args, done) {
internals.check_options()
internals.choose_framework()
done()
}
seneca.add('init: local-auth', init)
return {
name: 'local-auth'
}
}