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

170 lines
4 KiB
JavaScript
Raw Normal View History

2015-12-13 04:42:28 +00:00
import _ from 'lodash';
import { md5 } from 'blueimp-md5';
import http from '../services/http';
import stub from '../stubs/user';
import sharedStore from './shared';
export default {
stub,
state: {
users: [],
current: stub,
},
/**
* Init the store.
*/
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);
// …and the current user as well.
this.setAvatar();
},
2015-12-22 17:46:54 +00:00
/**
* Get all users.
*
* @return {Array}
*/
2015-12-13 04:42:28 +00:00
all() {
return this.state.users;
},
/**
* Get a user by his ID
*
2015-12-22 17:46:54 +00:00
* @param {Integer} id
2015-12-13 04:42:28 +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.
*/
current(user = null) {
if (user) {
this.state.current = user;
}
return this.state.current;
},
/**
* Set a user's avatar using Gravatar's service.
*
2015-12-22 17:46:54 +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();
}
user.avatar = `https://www.gravatar.com/avatar/${md5(user.email)}?s=256`;
},
2015-12-29 01:16:36 +00:00
/**
* Log a user in.
*
* @param {String} email
* @param {String} password
2016-01-01 06:16:17 +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) {
http.post('me', { email, password }, successCb, errorCb);
2015-12-29 01:16:36 +00:00
},
2015-12-13 04:42:28 +00:00
/**
* Update the current user's profile.
*
2015-12-22 17:46:54 +00:00
* @param {String} password Can be an empty string if the user is not changing his password.
2015-12-13 04:42:28 +00:00
*/
updateProfile(password = null, cb = null) {
http.put('me', {
password,
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.
*
2015-12-22 17:46:54 +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) {
2015-12-29 01:35:22 +00:00
http.post('user', { name, email, password }, response => {
var user = response.data;
2015-12-13 04:42:28 +00:00
this.setAvatar(user);
this.state.users.push(user);
if (cb) {
cb();
}
});
},
update(user, name, email, password, cb = null) {
http.put(`user/${user.id}`, { name, email, password }, () => {
this.setAvatar(user);
user.password = '';
if (cb) {
cb();
}
});
},
destroy(user, cb = null) {
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
//
// 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();
}
});
},
};