2020-02-18 17:42:40 +01:00

138 lines
3.1 KiB
JavaScript

/*
* μlogger
*
* Copyright(C) 2019 Bartek Fabiszewski (www.fabiszewski.net)
*
* This is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see <http://www.gnu.org/licenses/>.
*/
import uAjax from './ajax.js';
import uListItem from './listitem.js';
import uTrack from './track.js';
/**
* @class uUser
* @property {number} id
* @property {string} login
* @property {string} [password]
*/
export default class uUser extends uListItem {
/**
* @param {number} id
* @param {string} login
* @param {boolean=} isAdmin
*/
constructor(id, login, isAdmin = null) {
super();
if (!Number.isSafeInteger(id) || id <= 0) {
throw new Error('Invalid argument for user constructor');
}
this.id = id;
this.login = login;
this.isAdmin = isAdmin;
this.listItem(id, login);
}
/**
* @param {uUser} user
* @return {boolean}
*/
isEqualTo(user) {
return !!user && user.id === this.id;
}
/**
* @return {Promise<uTrack, Error>}
*/
fetchLastPosition() {
return uTrack.fetchLatest(this);
}
/**
* @throws
* @return {Promise<uUser[], Error>}
*/
static fetchList() {
return uAjax.get('utils/getusers.php').then((_users) => {
const users = [];
for (const user of _users) {
users.push(new uUser(user.id, user.login, user.isAdmin));
}
return users;
});
}
delete() {
return uUser.update({
action: 'delete',
login: this.login
});
}
/**
*
* @param {string} login
* @param {string} password
* @return {Promise<uUser>}
*/
static add(login, password) {
return uUser.update({
action: 'add',
login: login,
pass: password
}).then((user) => new uUser(user.id, login));
}
/**
* @param {Object} data
* @return {Promise<*, Error>}
*/
static update(data) {
return uAjax.post('utils/handleuser.php', data);
}
/**
* @param {string} password New password
* @param {string} oldPassword Current password
* @return {Promise<void, Error>}
*/
setPassword(password, oldPassword) {
return uAjax.post('utils/changepass.php',
{
login: this.login,
pass: password,
oldpass: oldPassword
});
}
/**
* @param {boolean} isAdmin
* @param {string|null} password
* @return {Promise<void, Error>}
*/
modify(isAdmin, password = null) {
const data = {
action: 'update',
login: this.login,
admin: isAdmin
};
if (password) {
data.pass = password;
}
return uUser.update(data)
.then(() => { this.isAdmin = isAdmin; });
}
}