117 lines
2.6 KiB
JavaScript
Raw Normal View History

2019-11-16 17:43:23 +01:00
/*
* μ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';
2019-11-18 09:19:24 +01:00
import uListItem from './listitem.js';
2019-11-19 21:40:31 +01:00
import uTrack from './track.js';
2019-11-16 17:43:23 +01:00
/**
* @class uUser
* @property {number} id
* @property {string} login
* @property {string} [password]
*/
2019-11-18 09:19:24 +01:00
export default class uUser extends uListItem {
2019-11-16 17:43:23 +01:00
/**
* @param {number} id
* @param {string} login
*/
constructor(id, login) {
2019-12-05 22:46:58 +01:00
super();
if (!Number.isSafeInteger(id) || id <= 0) {
throw new Error('Invalid argument for user constructor');
}
2019-11-16 17:43:23 +01:00
this.id = id;
this.login = login;
2019-12-05 22:46:58 +01:00
this.listItem(id, login);
2019-11-16 17:43:23 +01:00
}
2019-12-28 22:11:56 +01:00
/**
* @param {uUser} user
* @return {boolean}
*/
isEqualTo(user) {
return !!user && user.id === this.id;
}
2019-11-19 21:40:31 +01:00
/**
2019-12-14 17:09:13 +01:00
* @return {Promise<uTrack, Error>}
2019-11-19 21:40:31 +01:00
*/
fetchLastPosition() {
return uTrack.fetchLatest(this);
}
2019-11-16 17:43:23 +01:00
/**
* @throws
2019-12-14 17:09:13 +01:00
* @return {Promise<uUser[], Error>}
2019-11-16 17:43:23 +01:00
*/
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));
}
return users;
});
}
2019-12-28 22:11:56 +01:00
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
2019-12-29 22:39:35 +01:00
* @param {string=} oldPassword Needed when changing own password
2019-12-28 22:11:56 +01:00
* @return {Promise<void, Error>}
*/
setPassword(password, oldPassword) {
return uAjax.post('utils/changepass.php',
{
login: this.login,
pass: password,
oldpass: oldPassword
});
}
2019-11-16 17:43:23 +01:00
}