2015-12-18 08:13:49 +08:00
|
|
|
/*
|
2016-01-07 12:06:39 +08:00
|
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
2015-12-18 08:13:49 +08: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.
|
|
|
|
*/
|
|
|
|
|
2015-12-01 01:15:57 +08:00
|
|
|
var MatrixClientPeg = require('./MatrixClientPeg');
|
|
|
|
var dis = require('./dispatcher');
|
2017-01-21 13:13:36 +08:00
|
|
|
var sdk = require('./index');
|
|
|
|
var Modal = require('./Modal');
|
2015-12-01 01:15:57 +08:00
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
resend: function(event) {
|
|
|
|
MatrixClientPeg.get().resendEvent(
|
|
|
|
event, MatrixClientPeg.get().getRoom(event.getRoomId())
|
2017-01-21 13:13:36 +08:00
|
|
|
).done(function(res) {
|
2015-12-01 01:15:57 +08:00
|
|
|
dis.dispatch({
|
|
|
|
action: 'message_sent',
|
|
|
|
event: event
|
|
|
|
});
|
2017-01-21 13:13:36 +08:00
|
|
|
}, function(err) {
|
2017-02-07 00:01:25 +08:00
|
|
|
// XXX: temporary logging to try to diagnose
|
|
|
|
// https://github.com/vector-im/riot-web/issues/3148
|
|
|
|
console.log('Resend got send failure: ' + err.name + '('+err+')');
|
2017-01-21 13:13:36 +08:00
|
|
|
if (err.name === "UnknownDeviceError") {
|
|
|
|
var UnknownDeviceDialog = sdk.getComponent("dialogs.UnknownDeviceDialog");
|
|
|
|
Modal.createDialog(UnknownDeviceDialog, {
|
2017-01-22 01:56:48 +08:00
|
|
|
devices: err.devices,
|
|
|
|
room: MatrixClientPeg.get().getRoom(event.getRoomId()),
|
2017-02-07 00:01:25 +08:00
|
|
|
onFinished: (r) => {
|
|
|
|
// XXX: temporary logging to try to diagnose
|
|
|
|
// https://github.com/vector-im/riot-web/issues/3148
|
|
|
|
console.log('UnknownDeviceDialog closed with '+r);
|
|
|
|
},
|
2017-02-02 08:25:49 +08:00
|
|
|
}, "mx_Dialog_unknownDevice");
|
2017-01-21 13:13:36 +08:00
|
|
|
}
|
|
|
|
|
2015-12-01 01:15:57 +08:00
|
|
|
dis.dispatch({
|
|
|
|
action: 'message_send_failed',
|
|
|
|
event: event
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
2015-12-07 19:36:28 +08:00
|
|
|
|
|
|
|
removeFromQueue: function(event) {
|
2016-03-18 06:26:06 +08:00
|
|
|
MatrixClientPeg.get().cancelPendingEvent(event);
|
2016-03-22 00:49:07 +08:00
|
|
|
dis.dispatch({
|
|
|
|
action: 'message_send_cancelled',
|
|
|
|
event: event
|
|
|
|
});
|
2016-03-18 06:26:06 +08:00
|
|
|
},
|
|
|
|
};
|