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-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-09-25 09:02:13 +00:00
|
|
|
constructor(matrixClient, groupId) {
|
2017-09-22 17:52:06 +00:00
|
|
|
super();
|
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 = {};
|
|
|
|
this._fetchSummary();
|
|
|
|
}
|
|
|
|
|
|
|
|
_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;
|
|
|
|
this._notifyListeners();
|
|
|
|
}).catch((err) => {
|
|
|
|
this.emit('error', err);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
_notifyListeners() {
|
|
|
|
this.emit('update');
|
|
|
|
}
|
|
|
|
|
|
|
|
getSummary() {
|
|
|
|
return this._summary;
|
|
|
|
}
|
|
|
|
|
2017-10-04 15:56:35 +00:00
|
|
|
addRoomToGroup(roomId) {
|
|
|
|
return this._matrixClient
|
2017-10-04 16:51:38 +00:00
|
|
|
.addRoomToGroup(this.groupId, roomId);
|
2017-10-04 15:56:35 +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-09-26 13:46:57 +00:00
|
|
|
.then(this._fetchSummary.bind(this));
|
|
|
|
}
|
2017-09-22 17:52:06 +00:00
|
|
|
}
|