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