53 lines
1.7 KiB
JavaScript
53 lines
1.7 KiB
JavaScript
'use strict';
|
|
|
|
const cookies = require('js-cookie');
|
|
const page = require('page');
|
|
const config = require('../config.js');
|
|
|
|
class AuthController {
|
|
constructor(api, topNavigationController, loginView) {
|
|
this.api = api;
|
|
this.topNavigationController = topNavigationController;
|
|
this.loginView = loginView;
|
|
|
|
const auth = cookies.getJSON('auth');
|
|
if (auth && auth.user && auth.password) {
|
|
this.api.login(auth.user, auth.password).catch(() => {
|
|
cookies.remove('auth');
|
|
/* TODO: notify the user what just happened */
|
|
});
|
|
}
|
|
}
|
|
|
|
loginRoute() {
|
|
this.topNavigationController.activate('login');
|
|
this.loginView.render({
|
|
login: (name, password, doRemember) => {
|
|
return new Promise((resolve, reject) => {
|
|
this.api.login(name, password)
|
|
.then(() => {
|
|
const options = {};
|
|
if (doRemember) {
|
|
options.expires = 365;
|
|
}
|
|
cookies.set(
|
|
'auth',
|
|
{'user': name, 'password': password},
|
|
options);
|
|
resolve();
|
|
page('/');
|
|
/* TODO: notify about login */
|
|
}).catch(errorMessage => { reject(errorMessage); });
|
|
});
|
|
}});
|
|
}
|
|
|
|
logoutRoute() {
|
|
this.api.logout();
|
|
cookies.remove('auth');
|
|
page('/');
|
|
/* TODO: notify about logout */
|
|
}
|
|
}
|
|
|
|
module.exports = AuthController;
|