koel/resources/assets/js/stores/user.js

222 lines
5.2 KiB
JavaScript
Raw Normal View History

2015-12-13 04:42:28 +00:00
import _ from 'lodash';
import { md5 } from 'blueimp-md5';
2016-02-09 04:57:08 +00:00
import Vue from 'vue';
2016-03-11 09:55:04 +00:00
import NProgress from 'nprogress';
2015-12-13 04:42:28 +00:00
import http from '../services/http';
import stub from '../stubs/user';
import sharedStore from './shared';
export default {
stub,
state: {
users: [],
current: stub,
},
/**
* Init the store.
2016-01-07 09:03:38 +00:00
*
2016-01-17 14:26:24 +00:00
* @param {Array.<Object>} users The users in the system. Empty array if current user is not an admin.
* @param {Object} currentUser The current user.
2015-12-13 04:42:28 +00:00
*/
2015-12-22 17:46:54 +00:00
init(users, currentUser) {
this.state.users = users;
this.state.current = currentUser;
2015-12-13 04:42:28 +00:00
// Set the avatar for each of the users…
_.each(this.state.users, this.setAvatar);
2016-02-07 04:23:12 +00:00
2015-12-13 04:42:28 +00:00
// …and the current user as well.
this.setAvatar();
},
2015-12-22 17:46:54 +00:00
/**
* Get all users.
2016-02-07 04:23:12 +00:00
*
* @return {Array.<Object>}
2015-12-22 17:46:54 +00:00
*/
2015-12-13 04:42:28 +00:00
all() {
return this.state.users;
},
/**
* Get a user by his ID
2016-02-07 04:23:12 +00:00
*
2016-01-17 14:26:24 +00:00
* @param {Integer} id
2016-02-07 04:23:12 +00:00
*
2015-12-22 17:46:54 +00:00
* @return {Object}
2015-12-13 04:42:28 +00:00
*/
byId(id) {
return _.find(this.state.users, {id});
},
/**
* Get or set the current user.
2016-01-07 09:03:38 +00:00
*
* @param {?Object} user
*
* @return {Object}
2015-12-13 04:42:28 +00:00
*/
current(user = null) {
if (user) {
this.state.current = user;
}
return this.state.current;
},
/**
* Set a user's avatar using Gravatar's service.
2016-02-07 04:23:12 +00:00
*
2016-01-07 09:03:38 +00:00
* @param {?Object} user The user. If null, the current user.
2015-12-13 04:42:28 +00:00
*/
setAvatar(user = null) {
if (!user) {
user = this.current();
}
2016-02-07 04:23:12 +00:00
Vue.set(user, 'avatar', `https://www.gravatar.com/avatar/${md5(user.email)}?s=256`);
2015-12-13 04:42:28 +00:00
},
2015-12-29 01:16:36 +00:00
/**
* Log a user in.
2016-02-07 04:23:12 +00:00
*
* @param {String} email
2016-01-17 14:26:24 +00:00
* @param {String} password
2016-01-07 09:03:38 +00:00
* @param {?Function} successCb
* @param {?Function} errorCb
2015-12-29 01:16:36 +00:00
*/
2016-01-01 06:16:17 +00:00
login(email, password, successCb = null, errorCb = null) {
2016-03-11 09:55:04 +00:00
NProgress.start();
http.post('me', { email, password }, () => {
if (successCb) {
successCb();
}
}, errorCb);
2015-12-29 01:16:36 +00:00
},
2016-01-25 10:37:14 +00:00
/**
* Log the current user out.
2016-02-07 04:23:12 +00:00
*
2016-01-25 10:37:14 +00:00
* @param {Function} cb The callback.
*/
logout(cb = null) {
http.delete('me', {}, () => {
if (cb) {
cb();
2016-02-07 04:23:12 +00:00
}
2016-01-25 10:37:14 +00:00
});
},
2015-12-13 04:42:28 +00:00
/**
* Update the current user's profile.
2016-02-07 04:23:12 +00:00
*
2016-01-07 09:03:38 +00:00
* @param {string} password Can be an empty string if the user is not changing his password.
* @param {?Function} successCb
* @param {?Function} errorCb
2015-12-13 04:42:28 +00:00
*/
updateProfile(password = null, cb = null) {
2016-03-11 09:55:04 +00:00
NProgress.start();
2016-02-07 04:23:12 +00:00
http.put('me', {
2015-12-13 04:42:28 +00:00
password,
2016-02-07 04:23:12 +00:00
name: this.current().name,
email: this.current().email
2015-12-29 01:35:22 +00:00
}, () => {
2015-12-13 04:42:28 +00:00
this.setAvatar();
if (cb) {
cb();
}
}
);
},
/**
* Stores a new user into the database.
2016-02-07 04:23:12 +00:00
*
2016-01-07 09:03:38 +00:00
* @param {string} name
* @param {string} email
* @param {string} password
* @param {?Function} cb
2015-12-13 04:42:28 +00:00
*/
store(name, email, password, cb = null) {
2016-03-11 09:55:04 +00:00
NProgress.start();
2015-12-29 01:35:22 +00:00
http.post('user', { name, email, password }, response => {
var user = response.data;
2016-02-07 04:23:12 +00:00
2015-12-13 04:42:28 +00:00
this.setAvatar(user);
this.state.users.push(user);
if (cb) {
cb();
}
});
},
2016-01-07 09:03:38 +00:00
/**
* Update a user's profile.
2016-02-07 04:23:12 +00:00
*
2016-01-07 09:03:38 +00:00
* @param {Object} user
2016-01-17 14:26:24 +00:00
* @param {String} name
* @param {String} email
* @param {String} password
2016-01-07 09:03:38 +00:00
* @param {?Function} cb
*/
2015-12-13 04:42:28 +00:00
update(user, name, email, password, cb = null) {
2016-03-11 09:55:04 +00:00
NProgress.start();
2015-12-13 04:42:28 +00:00
http.put(`user/${user.id}`, { name, email, password }, () => {
this.setAvatar(user);
user.password = '';
if (cb) {
cb();
}
});
},
2016-01-07 09:03:38 +00:00
/**
* Delete a user.
2016-02-07 04:23:12 +00:00
*
2016-01-07 09:03:38 +00:00
* @param {Object} user
* @param {?Function} cb
*/
2015-12-13 04:42:28 +00:00
destroy(user, cb = null) {
2016-03-11 09:55:04 +00:00
NProgress.start();
2015-12-13 04:42:28 +00:00
http.delete(`user/${user.id}`, {}, () => {
this.state.users = _.without(this.state.users, user);
// Mama, just killed a man
// Put a gun against his head
// Pulled my trigger, now he's dead
// Mama, life had just begun
// But now I've gone and thrown it all away
// Mama, oooh
// Didn't mean to make you cry
// If I'm not back again this time tomorrow
// Carry on, carry on, as if nothing really matters
2016-02-07 04:23:12 +00:00
//
2015-12-13 04:42:28 +00:00
// Too late, my time has come
// Sends shivers down my spine
// Body's aching all the time
// Goodbye everybody - I've got to go
// Gotta leave you all behind and face the truth
// Mama, oooh
// I don't want to die
// I sometimes wish I'd never been born at all
/**
* Brian May enters the stage.
*/
if (cb) {
cb();
}
});
},
};