52 lines
1.3 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';
/**
* @class uUser
* @property {number} id
* @property {string} login
* @property {string} [password]
*/
export default class uUser {
/**
* @param {number} id
* @param {string} login
*/
constructor(id, login) {
this.id = id;
this.login = login;
}
/**
* @throws
* @return {Promise<uUser[], string>}
*/
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;
});
}
}