auth.controller.js
1.34 KB
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
(function () {
'use strict';
angular
.module('dialoga')
.controller('AuthPageController', AuthPageController);
/** @ngInject */
function AuthPageController($scope, $rootScope, AUTH_EVENTS, AuthService, Session, $log) {
$log.debug('AuthPageController');
var vm = this;
vm.$rootScope = $rootScope;
vm.$scope = $scope;
vm.AUTH_EVENTS = AUTH_EVENTS;
vm.AuthService = AuthService;
vm.Session = Session;
vm.$log = $log;
vm.init();
}
AuthPageController.prototype.init = function() {
var vm = this;
// init variables
vm.credentials = {};
// attach events
vm.currentUser = vm.Session.getCurrentUser();
// handle login
vm.$scope.$on(vm.AUTH_EVENTS.loginSuccess, function () {
vm.currentUser = vm.Session.getCurrentUser();
});
// handle logout
vm.$scope.$on(vm.AUTH_EVENTS.logoutSuccess, function () {
vm.currentUser = vm.Session.getCurrentUser();
});
// ...
};
AuthPageController.prototype.onClickLogout = function (){
var vm = this;
vm.AuthService.logout();
};
AuthPageController.prototype.login = function(credentials) {
var vm = this;
vm.AuthService.login(credentials).then(function(user) {
// handle view
vm.$log.debug('user', user);
}, function() {
// handle view
});
};
})();