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');
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
resend: function(event) {
|
|
|
|
MatrixClientPeg.get().resendEvent(
|
|
|
|
event, MatrixClientPeg.get().getRoom(event.getRoomId())
|
|
|
|
).done(function() {
|
|
|
|
dis.dispatch({
|
|
|
|
action: 'message_sent',
|
|
|
|
event: event
|
|
|
|
});
|
|
|
|
}, function() {
|
|
|
|
dis.dispatch({
|
|
|
|
action: 'message_send_failed',
|
|
|
|
event: event
|
|
|
|
});
|
|
|
|
});
|
|
|
|
dis.dispatch({
|
|
|
|
action: 'message_resend_started',
|
|
|
|
event: event
|
|
|
|
});
|
|
|
|
},
|
2015-12-07 12:36:28 +01:00
|
|
|
|
|
|
|
removeFromQueue: function(event) {
|
|
|
|
MatrixClientPeg.get().getScheduler().removeEventFromQueue(event);
|
|
|
|
var room = MatrixClientPeg.get().getRoom(event.getRoomId());
|
|
|
|
if (!room) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
room.removeEvents([event.getId()]);
|
|
|
|
}
|
2015-11-30 18:15:57 +01:00
|
|
|
};
|