2014-08-12 22:32:18 -04:00
|
|
|
/*
|
|
|
|
Copyright 2014 matrix.org
|
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2014-08-20 10:18:50 -04:00
|
|
|
angular.module('RoomController', ['ngSanitize', 'mUtilities'])
|
2014-08-22 05:50:38 -04:00
|
|
|
.controller('RoomController', ['$scope', '$http', '$timeout', '$routeParams', '$location', 'matrixService', 'eventStreamService', 'eventHandlerService', 'mFileUpload', 'mUtilities', '$rootScope',
|
|
|
|
function($scope, $http, $timeout, $routeParams, $location, matrixService, eventStreamService, eventHandlerService, mFileUpload, mUtilities, $rootScope) {
|
2014-08-12 10:10:52 -04:00
|
|
|
'use strict';
|
2014-08-15 19:14:47 -04:00
|
|
|
var MESSAGES_PER_PAGINATION = 30;
|
2014-08-21 08:30:41 -04:00
|
|
|
var THUMBNAIL_SIZE = 320;
|
2014-08-18 11:11:08 -04:00
|
|
|
|
2014-08-18 11:40:05 -04:00
|
|
|
// Room ids. Computed and resolved in onInit
|
|
|
|
$scope.room_id = undefined;
|
2014-08-18 11:11:08 -04:00
|
|
|
$scope.room_alias = undefined;
|
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
$scope.state = {
|
|
|
|
user_id: matrixService.config().user_id,
|
2014-08-14 12:23:47 -04:00
|
|
|
events_from: "END", // when to start the event stream from.
|
|
|
|
earliest_token: "END", // stores how far back we've paginated.
|
2014-08-21 10:27:15 -04:00
|
|
|
first_pagination: true, // this is toggled off when the first pagination is done
|
2014-08-14 12:40:27 -04:00
|
|
|
can_paginate: true, // this is toggled off when we run out of items
|
2014-08-15 19:14:47 -04:00
|
|
|
paginating: false, // used to avoid concurrent pagination requests pulling in dup contents
|
2014-08-20 07:43:31 -04:00
|
|
|
stream_failure: undefined, // the response when the stream fails
|
2014-08-21 20:54:37 -04:00
|
|
|
// FIXME: sending has been disabled, as surely messages should be sent in the background rather than locking the UI synchronously --Matthew
|
2014-08-20 07:43:31 -04:00
|
|
|
sending: false // true when a message is being sent. It helps to disable the UI when a process is running
|
2014-08-12 10:10:52 -04:00
|
|
|
};
|
|
|
|
$scope.members = {};
|
2014-08-16 21:56:34 -04:00
|
|
|
$scope.autoCompleting = false;
|
|
|
|
$scope.autoCompleteIndex = 0;
|
|
|
|
$scope.autoCompleteOriginal = "";
|
2014-08-13 05:42:28 -04:00
|
|
|
|
|
|
|
$scope.imageURLToSend = "";
|
2014-08-12 10:10:52 -04:00
|
|
|
$scope.userIDToInvite = "";
|
2014-08-14 12:23:47 -04:00
|
|
|
|
|
|
|
var scrollToBottom = function() {
|
2014-08-16 17:05:31 -04:00
|
|
|
console.log("Scrolling to bottom");
|
2014-08-14 12:23:47 -04:00
|
|
|
$timeout(function() {
|
2014-08-15 19:14:47 -04:00
|
|
|
var objDiv = document.getElementById("messageTableWrapper");
|
2014-08-14 12:23:47 -04:00
|
|
|
objDiv.scrollTop = objDiv.scrollHeight;
|
2014-08-16 17:05:31 -04:00
|
|
|
}, 0);
|
2014-08-14 12:23:47 -04:00
|
|
|
};
|
|
|
|
|
2014-08-15 06:31:13 -04:00
|
|
|
$scope.$on(eventHandlerService.MSG_EVENT, function(ngEvent, event, isLive) {
|
2014-08-15 07:51:20 -04:00
|
|
|
if (isLive && event.room_id === $scope.room_id) {
|
2014-08-15 06:31:13 -04:00
|
|
|
scrollToBottom();
|
2014-08-16 22:48:28 -04:00
|
|
|
|
|
|
|
if (window.Notification) {
|
|
|
|
// FIXME: we should also notify based on a timer or other heuristics
|
|
|
|
// rather than the window being minimised
|
|
|
|
if (document.hidden) {
|
|
|
|
var notification = new window.Notification(
|
|
|
|
($scope.members[event.user_id].displayname || event.user_id) +
|
2014-08-18 12:14:43 -04:00
|
|
|
" (" + ($scope.room_alias || $scope.room_id) + ")", // FIXME: don't leak room_ids here
|
2014-08-16 22:48:28 -04:00
|
|
|
{
|
|
|
|
"body": event.content.body,
|
|
|
|
"icon": $scope.members[event.user_id].avatar_url,
|
|
|
|
});
|
|
|
|
$timeout(function() {
|
|
|
|
notification.close();
|
|
|
|
}, 5 * 1000);
|
|
|
|
}
|
|
|
|
}
|
2014-08-14 12:23:47 -04:00
|
|
|
}
|
2014-08-15 06:31:13 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
$scope.$on(eventHandlerService.MEMBER_EVENT, function(ngEvent, event, isLive) {
|
|
|
|
updateMemberList(event);
|
|
|
|
});
|
|
|
|
|
|
|
|
$scope.$on(eventHandlerService.PRESENCE_EVENT, function(ngEvent, event, isLive) {
|
|
|
|
updatePresence(event);
|
|
|
|
});
|
2014-08-14 12:23:47 -04:00
|
|
|
|
2014-08-15 12:42:02 -04:00
|
|
|
$scope.paginateMore = function() {
|
|
|
|
if ($scope.state.can_paginate) {
|
2014-08-15 19:14:47 -04:00
|
|
|
// console.log("Paginating more.");
|
2014-08-16 17:05:31 -04:00
|
|
|
paginate(MESSAGES_PER_PAGINATION);
|
2014-08-15 12:42:02 -04:00
|
|
|
}
|
|
|
|
};
|
2014-08-16 22:48:28 -04:00
|
|
|
|
2014-08-16 17:05:31 -04:00
|
|
|
var paginate = function(numItems) {
|
|
|
|
// console.log("paginate " + numItems);
|
2014-08-20 11:08:05 -04:00
|
|
|
if ($scope.state.paginating || !$scope.room_id) {
|
2014-08-15 19:14:47 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$scope.state.paginating = true;
|
|
|
|
}
|
|
|
|
// console.log("paginateBackMessages from " + $scope.state.earliest_token + " for " + numItems);
|
|
|
|
var originalTopRow = $("#messageTable>tbody>tr:first")[0];
|
2014-08-14 12:23:47 -04:00
|
|
|
matrixService.paginateBackMessages($scope.room_id, $scope.state.earliest_token, numItems).then(
|
|
|
|
function(response) {
|
2014-08-15 06:31:13 -04:00
|
|
|
eventHandlerService.handleEvents(response.data.chunk, false);
|
2014-08-14 12:23:47 -04:00
|
|
|
$scope.state.earliest_token = response.data.end;
|
|
|
|
if (response.data.chunk.length < MESSAGES_PER_PAGINATION) {
|
2014-08-15 19:14:47 -04:00
|
|
|
// no more messages to paginate. this currently never gets turned true again, as we never
|
|
|
|
// expire paginated contents in the current implementation.
|
2014-08-14 12:23:47 -04:00
|
|
|
$scope.state.can_paginate = false;
|
|
|
|
}
|
2014-08-15 12:42:02 -04:00
|
|
|
|
2014-08-16 17:05:31 -04:00
|
|
|
$scope.state.paginating = false;
|
|
|
|
|
|
|
|
var wrapper = $("#messageTableWrapper")[0];
|
|
|
|
var table = $("#messageTable")[0];
|
|
|
|
// console.log("wrapper height=" + wrapper.clientHeight + ", table scrollHeight=" + table.scrollHeight);
|
|
|
|
|
|
|
|
if ($scope.state.can_paginate) {
|
|
|
|
// check we don't have to pull in more messages
|
|
|
|
// n.b. we dispatch through a timeout() to allow the digest to run otherwise the .height methods are stale
|
|
|
|
$timeout(function() {
|
|
|
|
if (table.scrollHeight < wrapper.clientHeight) {
|
|
|
|
paginate(MESSAGES_PER_PAGINATION);
|
|
|
|
scrollToBottom();
|
|
|
|
}
|
|
|
|
}, 0);
|
|
|
|
}
|
|
|
|
|
2014-08-21 10:27:15 -04:00
|
|
|
if ($scope.state.first_pagination) {
|
2014-08-15 12:42:02 -04:00
|
|
|
scrollToBottom();
|
2014-08-21 10:27:15 -04:00
|
|
|
$scope.state.first_pagination = false;
|
2014-08-15 12:42:02 -04:00
|
|
|
}
|
2014-08-15 19:14:47 -04:00
|
|
|
else {
|
2014-08-16 17:05:31 -04:00
|
|
|
// lock the scroll position
|
2014-08-15 19:14:47 -04:00
|
|
|
$timeout(function() {
|
|
|
|
// FIXME: this risks a flicker before the scrollTop is actually updated, but we have to
|
|
|
|
// dispatch it into a function in order to first update the layout. The right solution
|
|
|
|
// might be to implement it as a directive, more like
|
|
|
|
// http://stackoverflow.com/questions/23736647/how-to-retain-scroll-position-of-ng-repeat-in-angularjs
|
|
|
|
// however, this specific solution breaks because it measures the rows height before
|
|
|
|
// the contents are interpolated.
|
2014-08-16 17:05:31 -04:00
|
|
|
wrapper.scrollTop = originalTopRow ? (originalTopRow.offsetTop + wrapper.scrollTop) : 0;
|
2014-08-15 19:14:47 -04:00
|
|
|
}, 0);
|
|
|
|
}
|
2014-08-14 12:23:47 -04:00
|
|
|
},
|
|
|
|
function(error) {
|
2014-08-14 12:40:27 -04:00
|
|
|
console.log("Failed to paginateBackMessages: " + JSON.stringify(error));
|
2014-08-15 19:14:47 -04:00
|
|
|
$scope.state.paginating = false;
|
2014-08-14 12:23:47 -04:00
|
|
|
}
|
2014-08-20 11:08:05 -04:00
|
|
|
);
|
2014-08-14 12:23:47 -04:00
|
|
|
};
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
var updateMemberList = function(chunk) {
|
2014-08-22 05:56:09 -04:00
|
|
|
if (chunk.room_id != $scope.room_id) return;
|
|
|
|
|
2014-08-26 05:24:47 -04:00
|
|
|
// set target_user_id to keep things clear
|
|
|
|
var target_user_id = chunk.state_key;
|
|
|
|
|
|
|
|
var isNewMember = !(target_user_id in $scope.members);
|
2014-08-12 10:10:52 -04:00
|
|
|
if (isNewMember) {
|
2014-08-16 08:22:18 -04:00
|
|
|
// FIXME: why are we copying these fields around inside chunk?
|
2014-08-15 12:47:45 -04:00
|
|
|
if ("state" in chunk.content) {
|
2014-08-16 08:22:18 -04:00
|
|
|
chunk.presenceState = chunk.content.state; // why is this renamed?
|
2014-08-15 12:47:45 -04:00
|
|
|
}
|
2014-08-15 20:07:23 -04:00
|
|
|
if ("mtime_age" in chunk.content) {
|
|
|
|
chunk.mtime_age = chunk.content.mtime_age;
|
|
|
|
}
|
2014-08-21 10:43:47 -04:00
|
|
|
// Once the HS reliably returns the displaynames & avatar_urls for both
|
2014-08-16 08:28:04 -04:00
|
|
|
// local and remote users, we should use this rather than the evalAsync block
|
|
|
|
// below
|
2014-08-16 08:22:18 -04:00
|
|
|
if ("displayname" in chunk.content) {
|
|
|
|
chunk.displayname = chunk.content.displayname;
|
|
|
|
}
|
|
|
|
if ("avatar_url" in chunk.content) {
|
|
|
|
chunk.avatar_url = chunk.content.avatar_url;
|
|
|
|
}
|
2014-08-26 05:24:47 -04:00
|
|
|
$scope.members[target_user_id] = chunk;
|
2014-08-16 08:22:18 -04:00
|
|
|
|
2014-08-21 10:43:47 -04:00
|
|
|
/*
|
|
|
|
// Stale code for explicitly hammering the homeserver for every displayname & avatar_url
|
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
// get their display name and profile picture and set it to their
|
|
|
|
// member entry in $scope.members. We HAVE to use $timeout with 0 delay
|
|
|
|
// to make this function run AFTER the current digest cycle, else the
|
|
|
|
// response may update a STALE VERSION of the member list (manifesting
|
|
|
|
// as no member names appearing, or appearing sporadically).
|
|
|
|
$scope.$evalAsync(function() {
|
|
|
|
matrixService.getDisplayName(chunk.target_user_id).then(
|
|
|
|
function(response) {
|
|
|
|
var member = $scope.members[chunk.target_user_id];
|
|
|
|
if (member !== undefined) {
|
2014-08-14 10:47:38 -04:00
|
|
|
member.displayname = response.data.displayname;
|
2014-08-12 10:10:52 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
matrixService.getProfilePictureUrl(chunk.target_user_id).then(
|
|
|
|
function(response) {
|
|
|
|
var member = $scope.members[chunk.target_user_id];
|
|
|
|
if (member !== undefined) {
|
2014-08-14 10:47:38 -04:00
|
|
|
member.avatar_url = response.data.avatar_url;
|
2014-08-12 10:10:52 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
});
|
2014-08-21 10:43:47 -04:00
|
|
|
*/
|
2014-08-22 05:50:38 -04:00
|
|
|
|
2014-08-26 05:24:47 -04:00
|
|
|
if (target_user_id in $rootScope.presence) {
|
|
|
|
updatePresence($rootScope.presence[target_user_id]);
|
2014-08-22 05:50:38 -04:00
|
|
|
}
|
2014-08-12 10:10:52 -04:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
// selectively update membership else it will nuke the picture and displayname too :/
|
2014-08-26 05:24:47 -04:00
|
|
|
var member = $scope.members[target_user_id];
|
2014-08-12 10:10:52 -04:00
|
|
|
member.content.membership = chunk.content.membership;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var updatePresence = function(chunk) {
|
|
|
|
if (!(chunk.content.user_id in $scope.members)) {
|
|
|
|
console.log("updatePresence: Unknown member for chunk " + JSON.stringify(chunk));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
var member = $scope.members[chunk.content.user_id];
|
|
|
|
|
2014-08-15 20:07:23 -04:00
|
|
|
// XXX: why not just pass the chunk straight through?
|
2014-08-12 10:10:52 -04:00
|
|
|
if ("state" in chunk.content) {
|
2014-08-15 20:07:23 -04:00
|
|
|
member.presenceState = chunk.content.state;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ("mtime_age" in chunk.content) {
|
|
|
|
// FIXME: should probably keep updating mtime_age in realtime like FB does
|
|
|
|
member.mtime_age = chunk.content.mtime_age;
|
2014-08-12 10:10:52 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// this may also contain a new display name or avatar url, so check.
|
|
|
|
if ("displayname" in chunk.content) {
|
|
|
|
member.displayname = chunk.content.displayname;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ("avatar_url" in chunk.content) {
|
|
|
|
member.avatar_url = chunk.content.avatar_url;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$scope.send = function() {
|
|
|
|
if ($scope.textInput == "") {
|
|
|
|
return;
|
|
|
|
}
|
2014-08-20 07:43:31 -04:00
|
|
|
|
|
|
|
$scope.state.sending = true;
|
2014-08-21 20:54:37 -04:00
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
// Send the text message
|
|
|
|
var promise;
|
|
|
|
// FIXME: handle other commands too
|
|
|
|
if ($scope.textInput.indexOf("/me") == 0) {
|
|
|
|
promise = matrixService.sendEmoteMessage($scope.room_id, $scope.textInput.substr(4));
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
promise = matrixService.sendTextMessage($scope.room_id, $scope.textInput);
|
|
|
|
}
|
|
|
|
|
|
|
|
promise.then(
|
|
|
|
function() {
|
|
|
|
console.log("Sent message");
|
|
|
|
$scope.textInput = "";
|
2014-08-20 07:43:31 -04:00
|
|
|
$scope.state.sending = false;
|
2014-08-12 10:10:52 -04:00
|
|
|
},
|
2014-08-14 10:47:38 -04:00
|
|
|
function(error) {
|
|
|
|
$scope.feedback = "Failed to send: " + error.data.error;
|
2014-08-20 07:43:31 -04:00
|
|
|
$scope.state.sending = false;
|
|
|
|
});
|
2014-08-12 10:10:52 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
$scope.onInit = function() {
|
|
|
|
console.log("onInit");
|
2014-08-22 05:50:38 -04:00
|
|
|
|
2014-08-18 11:11:08 -04:00
|
|
|
// Does the room ID provided in the URL?
|
2014-08-18 11:40:05 -04:00
|
|
|
var room_id_or_alias;
|
|
|
|
if ($routeParams.room_id_or_alias) {
|
|
|
|
room_id_or_alias = decodeURIComponent($routeParams.room_id_or_alias);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (room_id_or_alias && '!' === room_id_or_alias[0]) {
|
|
|
|
// Yes. We can start right now
|
|
|
|
$scope.room_id = room_id_or_alias;
|
2014-08-18 11:11:08 -04:00
|
|
|
$scope.room_alias = matrixService.getRoomIdToAliasMapping($scope.room_id);
|
|
|
|
onInit2();
|
|
|
|
}
|
|
|
|
else {
|
2014-08-18 11:40:05 -04:00
|
|
|
// No. The URL contains the room alias. Get this alias.
|
|
|
|
if (room_id_or_alias) {
|
|
|
|
// The room alias was passed urlencoded, use it as is
|
|
|
|
$scope.room_alias = room_id_or_alias;
|
2014-08-18 11:11:08 -04:00
|
|
|
}
|
2014-08-18 11:40:05 -04:00
|
|
|
else {
|
|
|
|
// Else get the room alias by hand from the URL
|
|
|
|
// ie: extract #public:localhost:8080 from http://127.0.0.1:8000/#/room/#public:localhost:8080
|
|
|
|
if (3 === location.hash.split("#").length) {
|
|
|
|
$scope.room_alias = "#" + location.hash.split("#")[2];
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// In case of issue, go to the default page
|
|
|
|
console.log("Error: cannot extract room alias");
|
2014-08-22 05:43:54 -04:00
|
|
|
$location.url("/");
|
2014-08-18 11:40:05 -04:00
|
|
|
return;
|
|
|
|
}
|
2014-08-18 11:11:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Need a room ID required in Matrix API requests
|
2014-08-18 11:40:05 -04:00
|
|
|
console.log("Resolving alias: " + $scope.room_alias);
|
2014-08-18 11:11:08 -04:00
|
|
|
matrixService.resolveRoomAlias($scope.room_alias).then(function(response) {
|
|
|
|
$scope.room_id = response.data.room_id;
|
|
|
|
console.log(" -> Room ID: " + $scope.room_id);
|
|
|
|
|
|
|
|
// Now, we can start
|
|
|
|
onInit2();
|
|
|
|
},
|
|
|
|
function () {
|
|
|
|
// In case of issue, go to the default page
|
|
|
|
console.log("Error: cannot resolve room alias");
|
2014-08-22 05:43:54 -04:00
|
|
|
$location.url("/");
|
2014-08-18 11:11:08 -04:00
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2014-08-18 11:11:08 -04:00
|
|
|
var onInit2 = function() {
|
2014-08-22 05:50:10 -04:00
|
|
|
eventHandlerService.reInitRoom($scope.room_id);
|
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
// Join the room
|
|
|
|
matrixService.join($scope.room_id).then(
|
|
|
|
function() {
|
2014-08-14 12:40:27 -04:00
|
|
|
console.log("Joined room "+$scope.room_id);
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
// Get the current member list
|
|
|
|
matrixService.getMemberList($scope.room_id).then(
|
|
|
|
function(response) {
|
2014-08-14 10:47:38 -04:00
|
|
|
for (var i = 0; i < response.data.chunk.length; i++) {
|
|
|
|
var chunk = response.data.chunk[i];
|
2014-08-12 10:10:52 -04:00
|
|
|
updateMemberList(chunk);
|
|
|
|
}
|
2014-08-21 12:55:41 -04:00
|
|
|
eventStreamService.resume();
|
2014-08-12 10:10:52 -04:00
|
|
|
},
|
2014-08-14 10:47:38 -04:00
|
|
|
function(error) {
|
|
|
|
$scope.feedback = "Failed get member list: " + error.data.error;
|
2014-08-12 10:10:52 -04:00
|
|
|
}
|
|
|
|
);
|
2014-08-14 12:23:47 -04:00
|
|
|
|
2014-08-16 17:05:31 -04:00
|
|
|
paginate(MESSAGES_PER_PAGINATION);
|
2014-08-12 10:10:52 -04:00
|
|
|
},
|
|
|
|
function(reason) {
|
|
|
|
$scope.feedback = "Can't join room: " + reason;
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
$scope.inviteUser = function(user_id) {
|
|
|
|
|
|
|
|
matrixService.invite($scope.room_id, user_id).then(
|
|
|
|
function() {
|
|
|
|
console.log("Invited.");
|
|
|
|
$scope.feedback = "Request for invitation succeeds";
|
|
|
|
},
|
|
|
|
function(reason) {
|
|
|
|
$scope.feedback = "Failure: " + reason;
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2014-08-19 02:58:53 -04:00
|
|
|
// Open the user profile page
|
|
|
|
$scope.goToUserPage = function(user_id) {
|
2014-08-19 03:06:21 -04:00
|
|
|
$location.url("/user/" + user_id);
|
2014-08-19 02:58:53 -04:00
|
|
|
};
|
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
$scope.leaveRoom = function() {
|
|
|
|
|
|
|
|
matrixService.leave($scope.room_id).then(
|
|
|
|
function(response) {
|
|
|
|
console.log("Left room ");
|
2014-08-22 12:08:03 -04:00
|
|
|
$location.url("home");
|
2014-08-12 10:10:52 -04:00
|
|
|
},
|
2014-08-14 10:47:38 -04:00
|
|
|
function(error) {
|
|
|
|
$scope.feedback = "Failed to leave room: " + error.data.error;
|
2014-08-12 10:10:52 -04:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2014-08-20 10:18:50 -04:00
|
|
|
$scope.sendImage = function(url, body) {
|
2014-08-20 07:43:31 -04:00
|
|
|
$scope.state.sending = true;
|
|
|
|
|
2014-08-20 10:18:50 -04:00
|
|
|
matrixService.sendImageMessage($scope.room_id, url, body).then(
|
2014-08-13 05:42:28 -04:00
|
|
|
function() {
|
|
|
|
console.log("Image sent");
|
2014-08-20 08:09:55 -04:00
|
|
|
$scope.state.sending = false;
|
2014-08-13 05:42:28 -04:00
|
|
|
},
|
2014-08-14 10:47:38 -04:00
|
|
|
function(error) {
|
|
|
|
$scope.feedback = "Failed to send image: " + error.data.error;
|
2014-08-20 07:43:31 -04:00
|
|
|
$scope.state.sending = false;
|
2014-08-13 05:42:28 -04:00
|
|
|
});
|
|
|
|
};
|
2014-08-14 12:23:47 -04:00
|
|
|
|
2014-08-14 12:53:05 -04:00
|
|
|
$scope.imageFileToSend;
|
|
|
|
$scope.$watch("imageFileToSend", function(newValue, oldValue) {
|
|
|
|
if ($scope.imageFileToSend) {
|
2014-08-20 07:43:31 -04:00
|
|
|
|
|
|
|
$scope.state.sending = true;
|
|
|
|
|
2014-08-21 08:30:41 -04:00
|
|
|
// Upload this image with its thumbnail to Internet
|
|
|
|
mFileUpload.uploadImageAndThumbnail($scope.imageFileToSend, THUMBNAIL_SIZE).then(
|
|
|
|
function(imageMessage) {
|
|
|
|
// imageMessage is complete message structure, send it as is
|
|
|
|
matrixService.sendMessage($scope.room_id, undefined, imageMessage).then(
|
|
|
|
function() {
|
|
|
|
console.log("Image message sent");
|
|
|
|
$scope.state.sending = false;
|
2014-08-20 10:18:50 -04:00
|
|
|
},
|
|
|
|
function(error) {
|
2014-08-21 08:30:41 -04:00
|
|
|
$scope.feedback = "Failed to send image message: " + error.data.error;
|
2014-08-20 10:18:50 -04:00
|
|
|
$scope.state.sending = false;
|
2014-08-21 08:30:41 -04:00
|
|
|
});
|
2014-08-14 12:53:05 -04:00
|
|
|
},
|
|
|
|
function(error) {
|
2014-08-21 08:30:41 -04:00
|
|
|
$scope.feedback = "Can't upload image";
|
2014-08-20 07:43:31 -04:00
|
|
|
$scope.state.sending = false;
|
2014-08-20 10:18:50 -04:00
|
|
|
}
|
2014-08-14 12:53:05 -04:00
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2014-08-14 12:23:47 -04:00
|
|
|
$scope.loadMoreHistory = function() {
|
2014-08-16 17:05:31 -04:00
|
|
|
paginate(MESSAGES_PER_PAGINATION);
|
2014-08-14 12:23:47 -04:00
|
|
|
};
|
2014-08-12 10:10:52 -04:00
|
|
|
}]);
|