2015-12-18 01:13:49 +01:00
|
|
|
/*
|
2016-01-07 05:06:39 +01:00
|
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
2015-12-18 01:13:49 +01: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-11-30 18:15:57 +01:00
|
|
|
var MatrixClientPeg = require('./MatrixClientPeg');
|
|
|
|
var dis = require('./dispatcher');
|
2017-01-21 06:13:36 +01:00
|
|
|
var sdk = require('./index');
|
|
|
|
var Modal = require('./Modal');
|
2015-11-30 18:15:57 +01:00
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
resend: function(event) {
|
2017-02-21 18:22:22 +01:00
|
|
|
const room = MatrixClientPeg.get().getRoom(event.getRoomId());
|
2015-11-30 18:15:57 +01:00
|
|
|
MatrixClientPeg.get().resendEvent(
|
2017-02-21 18:22:22 +01:00
|
|
|
event, room
|
2017-01-21 06:13:36 +01:00
|
|
|
).done(function(res) {
|
2015-11-30 18:15:57 +01:00
|
|
|
dis.dispatch({
|
|
|
|
action: 'message_sent',
|
|
|
|
event: event
|
|
|
|
});
|
2017-01-21 06:13:36 +01:00
|
|
|
}, function(err) {
|
2017-02-06 17:01:25 +01: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 06:13:36 +01:00
|
|
|
if (err.name === "UnknownDeviceError") {
|
2017-02-21 18:22:22 +01:00
|
|
|
dis.dispatch({
|
|
|
|
action: 'unknown_device_error',
|
|
|
|
err: err,
|
|
|
|
room: room,
|
|
|
|
});
|
2017-01-21 06:13:36 +01:00
|
|
|
}
|
|
|
|
|
2015-11-30 18:15:57 +01:00
|
|
|
dis.dispatch({
|
|
|
|
action: 'message_send_failed',
|
|
|
|
event: event
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
2015-12-07 12:36:28 +01:00
|
|
|
|
|
|
|
removeFromQueue: function(event) {
|
2016-03-17 23:26:06 +01:00
|
|
|
MatrixClientPeg.get().cancelPendingEvent(event);
|
2016-03-21 17:49:07 +01:00
|
|
|
dis.dispatch({
|
|
|
|
action: 'message_send_cancelled',
|
|
|
|
event: event
|
|
|
|
});
|
2016-03-17 23:26:06 +01:00
|
|
|
},
|
|
|
|
};
|