2015-12-18 00:13:49 +00:00
|
|
|
/*
|
2021-06-07 10:03:39 +00:00
|
|
|
Copyright 2015-2021 The Matrix.org Foundation C.I.C.
|
2015-12-18 00:13:49 +00:00
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2021-06-07 10:03:39 +00:00
|
|
|
import { MatrixEvent, EventStatus } from 'matrix-js-sdk/src/models/event';
|
|
|
|
import { Room } from 'matrix-js-sdk/src/models/room';
|
2021-10-22 22:23:32 +00:00
|
|
|
import { logger } from "matrix-js-sdk/src/logger";
|
2021-06-07 10:03:39 +00:00
|
|
|
|
|
|
|
import { MatrixClientPeg } from './MatrixClientPeg';
|
2020-05-14 02:41:41 +00:00
|
|
|
import dis from './dispatcher/dispatcher';
|
2015-11-30 17:15:57 +00:00
|
|
|
|
2019-12-20 00:57:50 +00:00
|
|
|
export default class Resend {
|
2021-06-07 10:03:39 +00:00
|
|
|
static resendUnsentEvents(room: Room): Promise<void[]> {
|
|
|
|
return Promise.all(room.getPendingEvents().filter(function(ev: MatrixEvent) {
|
2017-03-03 10:02:08 +00:00
|
|
|
return ev.status === EventStatus.NOT_SENT;
|
2021-06-07 10:03:39 +00:00
|
|
|
}).map(function(event: MatrixEvent) {
|
2021-04-21 19:49:58 +00:00
|
|
|
return Resend.resend(event);
|
|
|
|
}));
|
2019-12-20 00:57:50 +00:00
|
|
|
}
|
|
|
|
|
2021-06-07 10:03:39 +00:00
|
|
|
static cancelUnsentEvents(room: Room): void {
|
|
|
|
room.getPendingEvents().filter(function(ev: MatrixEvent) {
|
2017-03-03 10:02:08 +00:00
|
|
|
return ev.status === EventStatus.NOT_SENT;
|
2021-06-07 10:03:39 +00:00
|
|
|
}).forEach(function(event: MatrixEvent) {
|
2019-12-20 00:57:50 +00:00
|
|
|
Resend.removeFromQueue(event);
|
2017-02-27 13:39:12 +00:00
|
|
|
});
|
2019-12-20 00:57:50 +00:00
|
|
|
}
|
|
|
|
|
2021-06-07 10:03:39 +00:00
|
|
|
static resend(event: MatrixEvent): Promise<void> {
|
2017-02-21 17:22:22 +00:00
|
|
|
const room = MatrixClientPeg.get().getRoom(event.getRoomId());
|
2021-04-21 19:49:58 +00:00
|
|
|
return MatrixClientPeg.get().resendEvent(event, room).then(function(res) {
|
2015-11-30 17:15:57 +00:00
|
|
|
dis.dispatch({
|
|
|
|
action: 'message_sent',
|
2017-07-01 13:50:22 +00:00
|
|
|
event: event,
|
2015-11-30 17:15:57 +00:00
|
|
|
});
|
2021-06-07 10:03:39 +00:00
|
|
|
}, function(err: Error) {
|
2017-02-06 16:01:25 +00:00
|
|
|
// XXX: temporary logging to try to diagnose
|
2020-08-03 15:02:26 +00:00
|
|
|
// https://github.com/vector-im/element-web/issues/3148
|
2021-09-21 15:48:09 +00:00
|
|
|
logger.log('Resend got send failure: ' + err.name + '(' + err + ')');
|
2015-11-30 17:15:57 +00:00
|
|
|
});
|
2019-12-20 00:57:50 +00:00
|
|
|
}
|
|
|
|
|
2021-06-07 10:03:39 +00:00
|
|
|
static removeFromQueue(event: MatrixEvent): void {
|
2016-03-17 22:26:06 +00:00
|
|
|
MatrixClientPeg.get().cancelPendingEvent(event);
|
2019-12-20 00:57:50 +00:00
|
|
|
}
|
|
|
|
}
|