2017-09-22 17:52:06 +00:00
|
|
|
/*
|
|
|
|
Copyright 2017 New Vector Ltd
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
import EventEmitter from 'events';
|
2017-10-23 15:04:26 +00:00
|
|
|
import { groupMemberFromApiObject, groupRoomFromApiObject } from '../groups';
|
2017-10-23 14:28:38 +00:00
|
|
|
import FlairStore from './FlairStore';
|
2017-09-22 17:52:06 +00:00
|
|
|
|
|
|
|
/**
|
2017-10-04 15:56:35 +00:00
|
|
|
* Stores the group summary for a room and provides an API to change it and
|
2017-10-04 16:01:44 +00:00
|
|
|
* other useful group APIs that may have an effect on the group summary.
|
2017-09-22 17:52:06 +00:00
|
|
|
*/
|
2017-10-04 15:56:35 +00:00
|
|
|
export default class GroupStore extends EventEmitter {
|
2017-10-31 16:13:13 +00:00
|
|
|
|
|
|
|
static STATE_KEY = {
|
|
|
|
GroupMembers: 'GroupMembers',
|
|
|
|
GroupInvitedMembers: 'GroupInvitedMembers',
|
|
|
|
Summary: 'Summary',
|
|
|
|
GroupRooms: 'GroupRooms',
|
|
|
|
};
|
|
|
|
|
2017-09-25 09:02:13 +00:00
|
|
|
constructor(matrixClient, groupId) {
|
2017-09-22 17:52:06 +00:00
|
|
|
super();
|
2017-11-06 10:18:10 +00:00
|
|
|
if (!groupId) {
|
|
|
|
throw new Error('GroupStore needs a valid groupId to be created');
|
|
|
|
}
|
2017-10-04 16:51:38 +00:00
|
|
|
this.groupId = groupId;
|
2017-09-25 09:02:13 +00:00
|
|
|
this._matrixClient = matrixClient;
|
2017-09-22 17:52:06 +00:00
|
|
|
this._summary = {};
|
2017-10-05 13:30:04 +00:00
|
|
|
this._rooms = [];
|
2017-10-31 11:42:09 +00:00
|
|
|
this._members = [];
|
|
|
|
this._invitedMembers = [];
|
|
|
|
this._ready = {};
|
2017-10-27 10:36:32 +00:00
|
|
|
|
|
|
|
this.on('error', (err) => {
|
|
|
|
console.error(`GroupStore for ${this.groupId} encountered error`, err);
|
|
|
|
});
|
2017-10-23 15:04:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
_fetchMembers() {
|
|
|
|
this._matrixClient.getGroupUsers(this.groupId).then((result) => {
|
|
|
|
this._members = result.chunk.map((apiMember) => {
|
|
|
|
return groupMemberFromApiObject(apiMember);
|
|
|
|
});
|
2017-10-31 16:13:13 +00:00
|
|
|
this._ready[GroupStore.STATE_KEY.GroupMembers] = true;
|
2017-10-23 15:04:26 +00:00
|
|
|
this._notifyListeners();
|
|
|
|
}).catch((err) => {
|
|
|
|
console.error("Failed to get group member list: " + err);
|
|
|
|
this.emit('error', err);
|
|
|
|
});
|
|
|
|
|
|
|
|
this._matrixClient.getGroupInvitedUsers(this.groupId).then((result) => {
|
|
|
|
this._invitedMembers = result.chunk.map((apiMember) => {
|
|
|
|
return groupMemberFromApiObject(apiMember);
|
|
|
|
});
|
2017-10-31 16:13:13 +00:00
|
|
|
this._ready[GroupStore.STATE_KEY.GroupInvitedMembers] = true;
|
2017-10-23 15:04:26 +00:00
|
|
|
this._notifyListeners();
|
|
|
|
}).catch((err) => {
|
2017-10-27 10:37:45 +00:00
|
|
|
// Invited users not visible to non-members
|
|
|
|
if (err.httpStatus === 403) {
|
|
|
|
return;
|
|
|
|
}
|
2017-10-23 15:04:26 +00:00
|
|
|
console.error("Failed to get group invited member list: " + err);
|
|
|
|
this.emit('error', err);
|
|
|
|
});
|
2017-09-22 17:52:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
_fetchSummary() {
|
2017-10-04 16:51:38 +00:00
|
|
|
this._matrixClient.getGroupSummary(this.groupId).then((resp) => {
|
2017-09-22 17:52:06 +00:00
|
|
|
this._summary = resp;
|
2017-10-31 16:13:13 +00:00
|
|
|
this._ready[GroupStore.STATE_KEY.Summary] = true;
|
2017-09-22 17:52:06 +00:00
|
|
|
this._notifyListeners();
|
|
|
|
}).catch((err) => {
|
|
|
|
this.emit('error', err);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-10-05 13:30:04 +00:00
|
|
|
_fetchRooms() {
|
|
|
|
this._matrixClient.getGroupRooms(this.groupId).then((resp) => {
|
2017-10-23 15:04:26 +00:00
|
|
|
this._rooms = resp.chunk.map((apiRoom) => {
|
|
|
|
return groupRoomFromApiObject(apiRoom);
|
|
|
|
});
|
2017-10-31 16:13:13 +00:00
|
|
|
this._ready[GroupStore.STATE_KEY.GroupRooms] = true;
|
2017-10-05 13:30:04 +00:00
|
|
|
this._notifyListeners();
|
|
|
|
}).catch((err) => {
|
|
|
|
this.emit('error', err);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-09-22 17:52:06 +00:00
|
|
|
_notifyListeners() {
|
|
|
|
this.emit('update');
|
|
|
|
}
|
|
|
|
|
2017-10-27 10:36:32 +00:00
|
|
|
registerListener(fn) {
|
|
|
|
this.on('update', fn);
|
2017-10-31 11:42:09 +00:00
|
|
|
// Call to set initial state (before fetching starts)
|
|
|
|
this.emit('update');
|
2017-10-27 10:36:32 +00:00
|
|
|
this._fetchSummary();
|
|
|
|
this._fetchRooms();
|
|
|
|
this._fetchMembers();
|
|
|
|
}
|
|
|
|
|
2017-10-27 13:33:10 +00:00
|
|
|
unregisterListener(fn) {
|
|
|
|
this.removeListener('update', fn);
|
|
|
|
}
|
|
|
|
|
2017-10-31 11:42:09 +00:00
|
|
|
isStateReady(id) {
|
|
|
|
return this._ready[id];
|
|
|
|
}
|
|
|
|
|
2017-09-22 17:52:06 +00:00
|
|
|
getSummary() {
|
|
|
|
return this._summary;
|
|
|
|
}
|
|
|
|
|
2017-10-05 13:30:04 +00:00
|
|
|
getGroupRooms() {
|
|
|
|
return this._rooms;
|
|
|
|
}
|
|
|
|
|
2017-10-23 15:04:26 +00:00
|
|
|
getGroupMembers( ) {
|
|
|
|
return this._members;
|
|
|
|
}
|
|
|
|
|
|
|
|
getGroupInvitedMembers( ) {
|
|
|
|
return this._invitedMembers;
|
|
|
|
}
|
|
|
|
|
2017-10-17 15:08:19 +00:00
|
|
|
getGroupPublicity() {
|
|
|
|
return this._summary.user ? this._summary.user.is_publicised : null;
|
|
|
|
}
|
|
|
|
|
|
|
|
isUserPrivileged() {
|
|
|
|
return this._summary.user ? this._summary.user.is_privileged : null;
|
|
|
|
}
|
|
|
|
|
2017-11-02 13:25:55 +00:00
|
|
|
addRoomToGroup(roomId, isPublic) {
|
2017-10-04 15:56:35 +00:00
|
|
|
return this._matrixClient
|
2017-11-02 13:25:55 +00:00
|
|
|
.addRoomToGroup(this.groupId, roomId, isPublic)
|
|
|
|
.then(this._fetchRooms.bind(this));
|
|
|
|
}
|
|
|
|
|
|
|
|
updateGroupRoomAssociation(roomId, isPublic) {
|
|
|
|
return this._matrixClient
|
|
|
|
.updateGroupRoomAssociation(this.groupId, roomId, isPublic)
|
2017-10-05 13:30:04 +00:00
|
|
|
.then(this._fetchRooms.bind(this));
|
|
|
|
}
|
|
|
|
|
|
|
|
removeRoomFromGroup(roomId) {
|
|
|
|
return this._matrixClient
|
|
|
|
.removeRoomFromGroup(this.groupId, roomId)
|
|
|
|
// Room might be in the summary, refresh just in case
|
|
|
|
.then(this._fetchSummary.bind(this))
|
|
|
|
.then(this._fetchRooms.bind(this));
|
2017-10-04 15:56:35 +00:00
|
|
|
}
|
|
|
|
|
2017-10-23 15:04:26 +00:00
|
|
|
inviteUserToGroup(userId) {
|
|
|
|
return this._matrixClient.inviteUserToGroup(this.groupId, userId)
|
|
|
|
.then(this._fetchMembers.bind(this));
|
|
|
|
}
|
|
|
|
|
2017-11-07 18:51:41 +00:00
|
|
|
acceptGroupInvite() {
|
|
|
|
return this._matrixClient.acceptGroupInvite(this.groupId)
|
|
|
|
// The user might be able to see more rooms now
|
2017-11-08 11:52:52 +00:00
|
|
|
.then(this._fetchRooms.bind(this))
|
|
|
|
// The user should now appear as a member
|
|
|
|
.then(this._fetchMembers.bind(this));
|
2017-11-07 18:51:41 +00:00
|
|
|
}
|
|
|
|
|
2017-09-22 17:52:06 +00:00
|
|
|
addRoomToGroupSummary(roomId, categoryId) {
|
2017-09-25 09:02:13 +00:00
|
|
|
return this._matrixClient
|
2017-10-04 16:51:38 +00:00
|
|
|
.addRoomToGroupSummary(this.groupId, roomId, categoryId)
|
2017-09-22 17:52:06 +00:00
|
|
|
.then(this._fetchSummary.bind(this));
|
|
|
|
}
|
|
|
|
|
|
|
|
addUserToGroupSummary(userId, roleId) {
|
2017-09-25 09:02:13 +00:00
|
|
|
return this._matrixClient
|
2017-10-04 16:51:38 +00:00
|
|
|
.addUserToGroupSummary(this.groupId, userId, roleId)
|
2017-09-22 17:52:06 +00:00
|
|
|
.then(this._fetchSummary.bind(this));
|
|
|
|
}
|
|
|
|
|
|
|
|
removeRoomFromGroupSummary(roomId) {
|
2017-09-25 09:02:13 +00:00
|
|
|
return this._matrixClient
|
2017-10-04 16:51:38 +00:00
|
|
|
.removeRoomFromGroupSummary(this.groupId, roomId)
|
2017-09-22 17:52:06 +00:00
|
|
|
.then(this._fetchSummary.bind(this));
|
|
|
|
}
|
|
|
|
|
|
|
|
removeUserFromGroupSummary(userId) {
|
2017-09-25 09:02:13 +00:00
|
|
|
return this._matrixClient
|
2017-10-04 16:51:38 +00:00
|
|
|
.removeUserFromGroupSummary(this.groupId, userId)
|
2017-09-22 17:52:06 +00:00
|
|
|
.then(this._fetchSummary.bind(this));
|
|
|
|
}
|
2017-09-26 13:46:57 +00:00
|
|
|
|
2017-09-26 13:58:49 +00:00
|
|
|
setGroupPublicity(isPublished) {
|
2017-09-26 13:46:57 +00:00
|
|
|
return this._matrixClient
|
2017-10-04 16:51:38 +00:00
|
|
|
.setGroupPublicity(this.groupId, isPublished)
|
2017-10-23 14:28:38 +00:00
|
|
|
.then(() => { FlairStore.invalidatePublicisedGroups(this._matrixClient.credentials.userId); })
|
2017-09-26 13:46:57 +00:00
|
|
|
.then(this._fetchSummary.bind(this));
|
|
|
|
}
|
2017-09-22 17:52:06 +00:00
|
|
|
}
|