375 строки
8.8 KiB
JavaScript
375 строки
8.8 KiB
JavaScript
// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
import AppDispatcher from '../dispatcher/app_dispatcher.jsx';
|
|
import EventEmitter from 'events';
|
|
|
|
import Constants from 'utils/constants.jsx';
|
|
const ActionTypes = Constants.ActionTypes;
|
|
|
|
const CHANGE_EVENT_DM_LIST = 'change_dm_list';
|
|
const CHANGE_EVENT = 'change';
|
|
const CHANGE_EVENT_SESSIONS = 'change_sessions';
|
|
const CHANGE_EVENT_AUDITS = 'change_audits';
|
|
const CHANGE_EVENT_STATUSES = 'change_statuses';
|
|
|
|
var Utils;
|
|
|
|
class UserStoreClass extends EventEmitter {
|
|
constructor() {
|
|
super();
|
|
this.clear();
|
|
}
|
|
|
|
clear() {
|
|
this.profiles_for_dm_list = {};
|
|
this.profiles = {};
|
|
this.direct_profiles = {};
|
|
this.statuses = {};
|
|
this.sessions = {};
|
|
this.audits = {};
|
|
this.currentUserId = '';
|
|
this.noAccounts = false;
|
|
}
|
|
|
|
emitChange(userId) {
|
|
this.emit(CHANGE_EVENT, userId);
|
|
}
|
|
|
|
addChangeListener(callback) {
|
|
this.on(CHANGE_EVENT, callback);
|
|
}
|
|
|
|
removeChangeListener(callback) {
|
|
this.removeListener(CHANGE_EVENT, callback);
|
|
}
|
|
|
|
emitDmListChange() {
|
|
this.emit(CHANGE_EVENT_DM_LIST);
|
|
}
|
|
|
|
addDmListChangeListener(callback) {
|
|
this.on(CHANGE_EVENT_DM_LIST, callback);
|
|
}
|
|
|
|
removeDmListChangeListener(callback) {
|
|
this.removeListener(CHANGE_EVENT_DM_LIST, callback);
|
|
}
|
|
|
|
emitSessionsChange() {
|
|
this.emit(CHANGE_EVENT_SESSIONS);
|
|
}
|
|
|
|
addSessionsChangeListener(callback) {
|
|
this.on(CHANGE_EVENT_SESSIONS, callback);
|
|
}
|
|
|
|
removeSessionsChangeListener(callback) {
|
|
this.removeListener(CHANGE_EVENT_SESSIONS, callback);
|
|
}
|
|
|
|
emitAuditsChange() {
|
|
this.emit(CHANGE_EVENT_AUDITS);
|
|
}
|
|
|
|
addAuditsChangeListener(callback) {
|
|
this.on(CHANGE_EVENT_AUDITS, callback);
|
|
}
|
|
|
|
removeAuditsChangeListener(callback) {
|
|
this.removeListener(CHANGE_EVENT_AUDITS, callback);
|
|
}
|
|
|
|
emitStatusesChange() {
|
|
this.emit(CHANGE_EVENT_STATUSES);
|
|
}
|
|
|
|
addStatusesChangeListener(callback) {
|
|
this.on(CHANGE_EVENT_STATUSES, callback);
|
|
}
|
|
|
|
removeStatusesChangeListener(callback) {
|
|
this.removeListener(CHANGE_EVENT_STATUSES, callback);
|
|
}
|
|
|
|
getCurrentUser() {
|
|
return this.getProfiles()[this.currentUserId];
|
|
}
|
|
|
|
setCurrentUser(user) {
|
|
this.saveProfile(user);
|
|
this.currentUserId = user.id;
|
|
global.window.mm_current_user_id = this.currentUserId;
|
|
}
|
|
|
|
getCurrentId() {
|
|
var user = this.getCurrentUser();
|
|
|
|
if (user) {
|
|
return user.id;
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
hasProfile(userId) {
|
|
return this.getProfile(userId) != null;
|
|
}
|
|
|
|
hasTeamProfile(userId) {
|
|
return this.getProfiles()[userId];
|
|
}
|
|
|
|
hasDirectProfile(userId) {
|
|
return this.getDirectProfiles()[userId];
|
|
}
|
|
|
|
getProfile(userId) {
|
|
if (userId === this.getCurrentId()) {
|
|
return this.getCurrentUser();
|
|
}
|
|
|
|
const user = this.getProfiles()[userId];
|
|
if (user) {
|
|
return user;
|
|
}
|
|
|
|
return this.getDirectProfiles()[userId];
|
|
}
|
|
|
|
getProfileByUsername(username) {
|
|
return this.getProfilesUsernameMap()[username];
|
|
}
|
|
|
|
getProfilesUsernameMap() {
|
|
var profileUsernameMap = {};
|
|
|
|
var profiles = this.getProfiles();
|
|
for (var key in profiles) {
|
|
if (profiles.hasOwnProperty(key)) {
|
|
var profile = profiles[key];
|
|
profileUsernameMap[profile.username] = profile;
|
|
}
|
|
}
|
|
|
|
return profileUsernameMap;
|
|
}
|
|
|
|
getDirectProfiles() {
|
|
return this.direct_profiles;
|
|
}
|
|
|
|
saveDirectProfiles(profiles) {
|
|
this.direct_profiles = profiles;
|
|
}
|
|
|
|
getProfiles() {
|
|
return this.profiles;
|
|
}
|
|
|
|
getActiveOnlyProfiles(skipCurrent) {
|
|
const active = {};
|
|
const profiles = this.getProfiles();
|
|
const currentId = this.getCurrentId();
|
|
|
|
for (var key in profiles) {
|
|
if (!(profiles[key].id === currentId && skipCurrent) && profiles[key].delete_at === 0) {
|
|
active[key] = profiles[key];
|
|
}
|
|
}
|
|
|
|
return active;
|
|
}
|
|
|
|
getActiveOnlyProfileList() {
|
|
const profileMap = this.getActiveOnlyProfiles();
|
|
const profiles = [];
|
|
const currentId = this.getCurrentId();
|
|
|
|
for (const id in profileMap) {
|
|
if (profileMap.hasOwnProperty(id) && id !== currentId) {
|
|
profiles.push(profileMap[id]);
|
|
}
|
|
}
|
|
|
|
return profiles;
|
|
}
|
|
|
|
saveProfile(profile) {
|
|
this.profiles[profile.id] = profile;
|
|
}
|
|
|
|
saveProfiles(profiles) {
|
|
const currentId = this.getCurrentId();
|
|
const currentUser = this.profiles[currentId];
|
|
if (currentUser) {
|
|
if (currentId in this.profiles) {
|
|
Reflect.deleteProperty(this.profiles, currentId);
|
|
}
|
|
|
|
this.profiles = profiles;
|
|
this.profiles[currentId] = currentUser;
|
|
} else {
|
|
this.profiles = profiles;
|
|
}
|
|
}
|
|
|
|
getProfilesForDmList() {
|
|
const currentId = this.getCurrentId();
|
|
const profiles = [];
|
|
|
|
for (const id in this.profiles_for_dm_list) {
|
|
if (this.profiles_for_dm_list.hasOwnProperty(id) && id !== currentId) {
|
|
var profile = this.profiles_for_dm_list[id];
|
|
|
|
if (profile.delete_at === 0) {
|
|
profiles.push(profile);
|
|
}
|
|
}
|
|
}
|
|
|
|
profiles.sort((a, b) => a.username.localeCompare(b.username));
|
|
|
|
return profiles;
|
|
}
|
|
|
|
saveProfilesForDmList(profiles) {
|
|
this.profiles_for_dm_list = profiles;
|
|
}
|
|
|
|
setSessions(sessions) {
|
|
this.sessions = sessions;
|
|
}
|
|
|
|
getSessions() {
|
|
return this.sessions;
|
|
}
|
|
|
|
setAudits(audits) {
|
|
this.audits = audits;
|
|
}
|
|
|
|
getAudits() {
|
|
return this.audits;
|
|
}
|
|
|
|
getCurrentMentionKeys() {
|
|
return this.getMentionKeys(this.getCurrentId());
|
|
}
|
|
|
|
getMentionKeys(id) {
|
|
var user = this.getProfile(id);
|
|
|
|
var keys = [];
|
|
|
|
if (!user || !user.notify_props) {
|
|
return keys;
|
|
}
|
|
|
|
if (user.notify_props.mention_keys) {
|
|
keys = keys.concat(user.notify_props.mention_keys.split(','));
|
|
}
|
|
|
|
if (user.notify_props.first_name === 'true' && user.first_name) {
|
|
keys.push(user.first_name);
|
|
}
|
|
|
|
if (user.notify_props.all === 'true') {
|
|
keys.push('@all');
|
|
}
|
|
|
|
if (user.notify_props.channel === 'true') {
|
|
keys.push('@channel');
|
|
}
|
|
|
|
return keys;
|
|
}
|
|
|
|
setStatuses(statuses) {
|
|
this.pSetStatuses(statuses);
|
|
this.emitStatusesChange();
|
|
}
|
|
|
|
pSetStatuses(statuses) {
|
|
this.statuses = statuses;
|
|
}
|
|
|
|
setStatus(userId, status) {
|
|
var statuses = this.getStatuses();
|
|
statuses[userId] = status;
|
|
this.pSetStatuses(statuses);
|
|
this.emitStatusesChange();
|
|
}
|
|
|
|
getStatuses() {
|
|
return this.statuses;
|
|
}
|
|
|
|
getStatus(id) {
|
|
return this.getStatuses()[id];
|
|
}
|
|
|
|
getNoAccounts() {
|
|
return this.noAccounts;
|
|
}
|
|
|
|
setNoAccounts(noAccounts) {
|
|
this.noAccounts = noAccounts;
|
|
}
|
|
|
|
isSystemAdminForCurrentUser() {
|
|
if (!Utils) {
|
|
Utils = require('utils/utils.jsx'); //eslint-disable-line global-require
|
|
}
|
|
|
|
var current = this.getCurrentUser();
|
|
|
|
if (current) {
|
|
return Utils.isAdmin(current.roles);
|
|
}
|
|
|
|
return false;
|
|
}
|
|
}
|
|
|
|
var UserStore = new UserStoreClass();
|
|
UserStore.setMaxListeners(15);
|
|
|
|
UserStore.dispatchToken = AppDispatcher.register((payload) => {
|
|
var action = payload.action;
|
|
|
|
switch (action.type) {
|
|
case ActionTypes.RECEIVED_PROFILES_FOR_DM_LIST:
|
|
UserStore.saveProfilesForDmList(action.profiles);
|
|
UserStore.emitDmListChange();
|
|
break;
|
|
case ActionTypes.RECEIVED_PROFILES:
|
|
UserStore.saveProfiles(action.profiles);
|
|
UserStore.emitChange();
|
|
break;
|
|
case ActionTypes.RECEIVED_DIRECT_PROFILES:
|
|
UserStore.saveDirectProfiles(action.profiles);
|
|
UserStore.emitChange();
|
|
break;
|
|
case ActionTypes.RECEIVED_ME:
|
|
UserStore.setCurrentUser(action.me);
|
|
UserStore.emitChange(action.me.id);
|
|
break;
|
|
case ActionTypes.RECEIVED_SESSIONS:
|
|
UserStore.setSessions(action.sessions);
|
|
UserStore.emitSessionsChange();
|
|
break;
|
|
case ActionTypes.RECEIVED_AUDITS:
|
|
UserStore.setAudits(action.audits);
|
|
UserStore.emitAuditsChange();
|
|
break;
|
|
case ActionTypes.RECEIVED_STATUSES:
|
|
UserStore.pSetStatuses(action.statuses);
|
|
UserStore.emitStatusesChange();
|
|
break;
|
|
default:
|
|
}
|
|
});
|
|
|
|
export {UserStore as default};
|