-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathauthServiceProvider.js
More file actions
38 lines (30 loc) · 1013 Bytes
/
authServiceProvider.js
File metadata and controls
38 lines (30 loc) · 1013 Bytes
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
const ServiceProvider = require('@ostro/support/serviceProvider')
const AuthManager = require('./authManager')
class AuthServiceProvider extends ServiceProvider {
register() {
this.registerAuthenticator();
}
registerAuthenticator() {
this.$app.singleton('auth', function($app) {
return new AuthManager($app);
});
}
boot() {
this.$app.singleton('auth.driver', function($app) {
return $app['auth'].guard();
});
}
registerUserResolver() {
this.$app.bind('@ostro/contracts/auth/authenticatable', function($app) {
return call_user_func($app['auth'].userResolver());
});
}
registerRequestRebindHandler() {
this.$app.rebinding('request', function($app, $request) {
$request.setUserResolver(function($guard = null) {
return call_user_func($app['auth'].userResolver(), $guard);
});
});
}
}
module.exports = AuthServiceProvider