2014-08-13 04:32:18 +02:00
|
|
|
/*
|
2014-09-03 18:29:13 +02:00
|
|
|
Copyright 2014 OpenMarket Ltd
|
2014-08-13 04:32:18 +02: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.
|
|
|
|
*/
|
|
|
|
|
2014-09-04 11:19:28 +02:00
|
|
|
angular.module('RoomController', ['ngSanitize', 'matrixFilter', 'mFileInput'])
|
2014-08-29 13:30:20 +02:00
|
|
|
.controller('RoomController', ['$scope', '$timeout', '$routeParams', '$location', '$rootScope', 'matrixService', 'eventHandlerService', 'mFileUpload', 'mPresence', 'matrixPhoneService', 'MatrixCall',
|
|
|
|
function($scope, $timeout, $routeParams, $location, $rootScope, matrixService, eventHandlerService, mFileUpload, mPresence, matrixPhoneService, MatrixCall) {
|
2014-08-12 16:10:52 +02:00
|
|
|
'use strict';
|
2014-08-16 01:14:47 +02:00
|
|
|
var MESSAGES_PER_PAGINATION = 30;
|
2014-08-21 14:30:41 +02:00
|
|
|
var THUMBNAIL_SIZE = 320;
|
2014-08-18 17:11:08 +02:00
|
|
|
|
2014-08-18 17:40:05 +02:00
|
|
|
// Room ids. Computed and resolved in onInit
|
|
|
|
$scope.room_id = undefined;
|
2014-08-18 17:11:08 +02:00
|
|
|
$scope.room_alias = undefined;
|
|
|
|
|
2014-08-12 16:10:52 +02:00
|
|
|
$scope.state = {
|
|
|
|
user_id: matrixService.config().user_id,
|
2014-08-21 16:27:15 +02:00
|
|
|
first_pagination: true, // this is toggled off when the first pagination is done
|
2014-09-09 16:46:30 +02:00
|
|
|
can_paginate: false, // this is toggled off when we are not ready yet to paginate or when we run out of items
|
2014-08-16 01:14:47 +02:00
|
|
|
paginating: false, // used to avoid concurrent pagination requests pulling in dup contents
|
2014-09-09 14:18:08 +02:00
|
|
|
stream_failure: undefined, // the response when the stream fails
|
|
|
|
waiting_for_joined_event: false // true when the join request is pending. Back to false once the corresponding m.room.member event is received
|
2014-08-12 16:10:52 +02:00
|
|
|
};
|
|
|
|
$scope.members = {};
|
2014-08-17 03:56:34 +02:00
|
|
|
$scope.autoCompleting = false;
|
|
|
|
$scope.autoCompleteIndex = 0;
|
|
|
|
$scope.autoCompleteOriginal = "";
|
2014-08-13 11:42:28 +02:00
|
|
|
|
|
|
|
$scope.imageURLToSend = "";
|
2014-08-12 16:10:52 +02:00
|
|
|
$scope.userIDToInvite = "";
|
2014-08-14 18:23:47 +02:00
|
|
|
|
2014-09-09 03:40:34 +02:00
|
|
|
// vars and functions for updating the topic
|
|
|
|
$scope.topic = {
|
|
|
|
isEditing: false,
|
|
|
|
newTopicText: "",
|
|
|
|
editTopic: function() {
|
|
|
|
if ($scope.topic.isEditing) {
|
|
|
|
console.log("Warning: Already editing topic.");
|
|
|
|
return;
|
|
|
|
}
|
2014-09-09 03:59:26 +02:00
|
|
|
var topicEvent = $rootScope.events.rooms[$scope.room_id]['m.room.topic'];
|
|
|
|
if (topicEvent) {
|
|
|
|
$scope.topic.newTopicText = topicEvent.content.topic;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$scope.topic.newTopicText = "";
|
|
|
|
}
|
|
|
|
|
2014-09-11 11:49:59 +02:00
|
|
|
// Force focus to the input
|
|
|
|
$timeout(function() {
|
|
|
|
angular.element('.roomTopicInput').focus();
|
|
|
|
}, 0);
|
|
|
|
|
2014-09-09 03:40:34 +02:00
|
|
|
$scope.topic.isEditing = true;
|
|
|
|
},
|
|
|
|
updateTopic: function() {
|
|
|
|
console.log("Updating topic to "+$scope.topic.newTopicText);
|
|
|
|
matrixService.setTopic($scope.room_id, $scope.topic.newTopicText);
|
|
|
|
$scope.topic.isEditing = false;
|
|
|
|
},
|
|
|
|
cancelEdit: function() {
|
|
|
|
$scope.topic.isEditing = false;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-09-05 17:52:11 +02:00
|
|
|
var scrollToBottom = function(force) {
|
2014-08-16 23:05:31 +02:00
|
|
|
console.log("Scrolling to bottom");
|
2014-09-05 17:52:11 +02:00
|
|
|
|
|
|
|
// Do not autoscroll to the bottom to display the new event if the user is not at the bottom.
|
|
|
|
// Exception: in case where the event is from the user, we want to force scroll to the bottom
|
|
|
|
var objDiv = document.getElementById("messageTableWrapper");
|
|
|
|
if ((objDiv.offsetHeight + objDiv.scrollTop >= objDiv.scrollHeight) || force) {
|
|
|
|
|
|
|
|
$timeout(function() {
|
|
|
|
objDiv.scrollTop = objDiv.scrollHeight;
|
|
|
|
}, 0);
|
|
|
|
}
|
2014-08-14 18:23:47 +02:00
|
|
|
};
|
2014-08-29 15:00:20 +02:00
|
|
|
|
2014-08-15 12:31:13 +02:00
|
|
|
$scope.$on(eventHandlerService.MSG_EVENT, function(ngEvent, event, isLive) {
|
2014-08-15 13:51:20 +02:00
|
|
|
if (isLive && event.room_id === $scope.room_id) {
|
2014-09-05 17:52:11 +02:00
|
|
|
|
|
|
|
scrollToBottom();
|
2014-09-05 10:40:59 +02:00
|
|
|
|
2014-08-17 04:48:28 +02:00
|
|
|
if (window.Notification) {
|
2014-09-06 19:26:30 +02:00
|
|
|
// Show notification when the window is hidden, or the user is idle
|
|
|
|
if (document.hidden || matrixService.presence.unavailable === mPresence.getState()) {
|
2014-08-17 04:48:28 +02:00
|
|
|
var notification = new window.Notification(
|
|
|
|
($scope.members[event.user_id].displayname || event.user_id) +
|
2014-08-18 18:14:43 +02:00
|
|
|
" (" + ($scope.room_alias || $scope.room_id) + ")", // FIXME: don't leak room_ids here
|
2014-08-17 04:48:28 +02:00
|
|
|
{
|
|
|
|
"body": event.content.body,
|
2014-08-29 13:30:20 +02:00
|
|
|
"icon": $scope.members[event.user_id].avatar_url
|
2014-08-17 04:48:28 +02:00
|
|
|
});
|
|
|
|
$timeout(function() {
|
|
|
|
notification.close();
|
|
|
|
}, 5 * 1000);
|
|
|
|
}
|
|
|
|
}
|
2014-08-14 18:23:47 +02:00
|
|
|
}
|
2014-08-15 12:31:13 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
$scope.$on(eventHandlerService.MEMBER_EVENT, function(ngEvent, event, isLive) {
|
2014-09-02 09:39:43 +02:00
|
|
|
if (isLive) {
|
2014-09-09 14:18:08 +02:00
|
|
|
if ($scope.state.waiting_for_joined_event) {
|
|
|
|
// The user has successfully joined the room, we can getting data for this room
|
|
|
|
$scope.state.waiting_for_joined_event = false;
|
|
|
|
onInit3();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
scrollToBottom();
|
|
|
|
updateMemberList(event);
|
|
|
|
}
|
2014-09-02 09:39:43 +02:00
|
|
|
}
|
2014-08-15 12:31:13 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
$scope.$on(eventHandlerService.PRESENCE_EVENT, function(ngEvent, event, isLive) {
|
2014-09-02 09:39:43 +02:00
|
|
|
if (isLive) {
|
|
|
|
updatePresence(event);
|
|
|
|
}
|
2014-08-15 12:31:13 +02:00
|
|
|
});
|
2014-09-03 14:12:56 +02:00
|
|
|
|
|
|
|
$scope.$on(eventHandlerService.POWERLEVEL_EVENT, function(ngEvent, event, isLive) {
|
|
|
|
if (isLive && event.room_id === $scope.room_id) {
|
|
|
|
for (var user_id in event.content) {
|
|
|
|
updateUserPowerLevel(user_id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2014-08-27 19:57:54 +02:00
|
|
|
|
2014-08-29 15:00:20 +02:00
|
|
|
$scope.memberCount = function() {
|
|
|
|
return Object.keys($scope.members).length;
|
|
|
|
};
|
2014-08-14 18:23:47 +02:00
|
|
|
|
2014-08-15 18:42:02 +02:00
|
|
|
$scope.paginateMore = function() {
|
|
|
|
if ($scope.state.can_paginate) {
|
2014-08-16 01:14:47 +02:00
|
|
|
// console.log("Paginating more.");
|
2014-08-16 23:05:31 +02:00
|
|
|
paginate(MESSAGES_PER_PAGINATION);
|
2014-08-15 18:42:02 +02:00
|
|
|
}
|
|
|
|
};
|
2014-08-28 20:03:34 +02:00
|
|
|
|
2014-08-16 23:05:31 +02:00
|
|
|
var paginate = function(numItems) {
|
|
|
|
// console.log("paginate " + numItems);
|
2014-08-20 17:08:05 +02:00
|
|
|
if ($scope.state.paginating || !$scope.room_id) {
|
2014-08-16 01:14:47 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$scope.state.paginating = true;
|
|
|
|
}
|
2014-09-10 12:01:00 +02:00
|
|
|
|
|
|
|
console.log("paginateBackMessages from " + $rootScope.events.rooms[$scope.room_id].pagination.earliest_token + " for " + numItems);
|
2014-08-16 01:14:47 +02:00
|
|
|
var originalTopRow = $("#messageTable>tbody>tr:first")[0];
|
2014-09-10 12:01:00 +02:00
|
|
|
|
|
|
|
// Paginate events from the point in cache
|
|
|
|
matrixService.paginateBackMessages($scope.room_id, $rootScope.events.rooms[$scope.room_id].pagination.earliest_token, numItems).then(
|
2014-08-14 18:23:47 +02:00
|
|
|
function(response) {
|
2014-09-10 12:01:00 +02:00
|
|
|
|
|
|
|
eventHandlerService.handleRoomMessages($scope.room_id, response.data, false);
|
2014-08-14 18:23:47 +02:00
|
|
|
if (response.data.chunk.length < MESSAGES_PER_PAGINATION) {
|
2014-08-16 01:14:47 +02: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 18:23:47 +02:00
|
|
|
$scope.state.can_paginate = false;
|
|
|
|
}
|
2014-08-15 18:42:02 +02:00
|
|
|
|
2014-08-16 23:05:31 +02: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 16:27:15 +02:00
|
|
|
if ($scope.state.first_pagination) {
|
2014-08-15 18:42:02 +02:00
|
|
|
scrollToBottom();
|
2014-08-21 16:27:15 +02:00
|
|
|
$scope.state.first_pagination = false;
|
2014-08-15 18:42:02 +02:00
|
|
|
}
|
2014-08-16 01:14:47 +02:00
|
|
|
else {
|
2014-08-16 23:05:31 +02:00
|
|
|
// lock the scroll position
|
2014-08-16 01:14:47 +02: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 23:05:31 +02:00
|
|
|
wrapper.scrollTop = originalTopRow ? (originalTopRow.offsetTop + wrapper.scrollTop) : 0;
|
2014-08-16 01:14:47 +02:00
|
|
|
}, 0);
|
|
|
|
}
|
2014-08-14 18:23:47 +02:00
|
|
|
},
|
|
|
|
function(error) {
|
2014-08-14 18:40:27 +02:00
|
|
|
console.log("Failed to paginateBackMessages: " + JSON.stringify(error));
|
2014-08-16 01:14:47 +02:00
|
|
|
$scope.state.paginating = false;
|
2014-08-14 18:23:47 +02:00
|
|
|
}
|
2014-08-20 17:08:05 +02:00
|
|
|
);
|
2014-08-14 18:23:47 +02:00
|
|
|
};
|
2014-08-12 16:10:52 +02:00
|
|
|
|
|
|
|
var updateMemberList = function(chunk) {
|
2014-08-22 11:56:09 +02:00
|
|
|
if (chunk.room_id != $scope.room_id) return;
|
|
|
|
|
2014-09-03 11:38:24 +02:00
|
|
|
|
2014-08-26 11:24:47 +02: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 16:10:52 +02:00
|
|
|
if (isNewMember) {
|
2014-09-05 18:05:23 +02:00
|
|
|
|
|
|
|
// Ignore banned and kicked (leave) people
|
|
|
|
if ("ban" === chunk.membership || "leave" === chunk.membership) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-08-16 14:22:18 +02:00
|
|
|
// FIXME: why are we copying these fields around inside chunk?
|
2014-09-01 19:09:17 +02:00
|
|
|
if ("presence" in chunk.content) {
|
|
|
|
chunk.presence = chunk.content.presence;
|
2014-08-15 18:47:45 +02:00
|
|
|
}
|
2014-09-01 19:09:17 +02:00
|
|
|
if ("last_active_ago" in chunk.content) {
|
|
|
|
chunk.last_active_ago = chunk.content.last_active_ago;
|
2014-09-02 16:39:17 +02:00
|
|
|
$scope.now = new Date().getTime();
|
|
|
|
chunk.last_updated = $scope.now;
|
2014-08-16 02:07:23 +02:00
|
|
|
}
|
2014-08-16 14:22:18 +02: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-29 18:21:57 +02:00
|
|
|
$scope.members[target_user_id] = chunk;
|
2014-08-22 11:50:38 +02:00
|
|
|
|
2014-08-26 11:24:47 +02:00
|
|
|
if (target_user_id in $rootScope.presence) {
|
|
|
|
updatePresence($rootScope.presence[target_user_id]);
|
2014-08-22 11:50:38 +02:00
|
|
|
}
|
2014-08-12 16:10:52 +02:00
|
|
|
}
|
|
|
|
else {
|
2014-09-01 16:21:13 +02:00
|
|
|
// selectively update membership and presence else it will nuke the picture and displayname too :/
|
2014-09-05 18:05:23 +02:00
|
|
|
|
|
|
|
// Remove banned and kicked (leave) people
|
|
|
|
if ("ban" === chunk.membership || "leave" === chunk.membership) {
|
|
|
|
delete $scope.members[target_user_id];
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-08-26 11:24:47 +02:00
|
|
|
var member = $scope.members[target_user_id];
|
2014-09-01 16:21:13 +02:00
|
|
|
member.membership = chunk.content.membership;
|
2014-09-01 19:09:17 +02:00
|
|
|
if ("presence" in chunk.content) {
|
|
|
|
member.presence = chunk.content.presence;
|
2014-09-01 16:21:13 +02:00
|
|
|
}
|
2014-09-01 19:09:17 +02:00
|
|
|
if ("last_active_ago" in chunk.content) {
|
|
|
|
member.last_active_ago = chunk.content.last_active_ago;
|
2014-09-02 16:39:17 +02:00
|
|
|
$scope.now = new Date().getTime();
|
|
|
|
member.last_updated = $scope.now;
|
2014-09-01 16:21:13 +02:00
|
|
|
}
|
2014-08-12 16:10:52 +02:00
|
|
|
}
|
2014-08-29 13:30:20 +02:00
|
|
|
};
|
2014-08-29 18:21:57 +02:00
|
|
|
|
|
|
|
var updateMemberListPresenceAge = function() {
|
|
|
|
$scope.now = new Date().getTime();
|
2014-08-29 18:54:11 +02:00
|
|
|
// TODO: don't bother polling every 5s if we know none of our counters are younger than 1 minute
|
2014-08-29 18:21:57 +02:00
|
|
|
$timeout(updateMemberListPresenceAge, 5 * 1000);
|
|
|
|
};
|
2014-08-12 16:10:52 +02:00
|
|
|
|
|
|
|
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-16 02:07:23 +02:00
|
|
|
// XXX: why not just pass the chunk straight through?
|
2014-09-01 19:09:17 +02:00
|
|
|
if ("presence" in chunk.content) {
|
|
|
|
member.presence = chunk.content.presence;
|
2014-08-16 02:07:23 +02:00
|
|
|
}
|
|
|
|
|
2014-09-01 19:09:17 +02:00
|
|
|
if ("last_active_ago" in chunk.content) {
|
|
|
|
member.last_active_ago = chunk.content.last_active_ago;
|
2014-09-02 16:39:17 +02:00
|
|
|
$scope.now = new Date().getTime();
|
|
|
|
member.last_updated = $scope.now;
|
2014-08-12 16:10:52 +02: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;
|
|
|
|
}
|
2014-08-29 13:30:20 +02:00
|
|
|
};
|
2014-08-12 16:10:52 +02:00
|
|
|
|
2014-09-02 11:54:11 +02:00
|
|
|
var updateUserPowerLevel = function(user_id) {
|
|
|
|
var member = $scope.members[user_id];
|
|
|
|
if (member) {
|
|
|
|
member.powerLevel = matrixService.getUserPowerLevel($scope.room_id, user_id);
|
2014-09-03 18:55:27 +02:00
|
|
|
|
|
|
|
normaliseMembersPowerLevels();
|
|
|
|
}
|
2014-09-05 11:13:33 +02:00
|
|
|
};
|
2014-09-03 18:55:27 +02:00
|
|
|
|
|
|
|
// Normalise users power levels so that the user with the higher power level
|
|
|
|
// will have a bar covering 100% of the width of his avatar
|
|
|
|
var normaliseMembersPowerLevels = function() {
|
|
|
|
// Find the max power level
|
|
|
|
var maxPowerLevel = 0;
|
|
|
|
for (var i in $scope.members) {
|
|
|
|
var member = $scope.members[i];
|
|
|
|
if (member.powerLevel) {
|
|
|
|
maxPowerLevel = Math.max(maxPowerLevel, member.powerLevel);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Normalized them on a 0..100% scale to be use in css width
|
|
|
|
if (maxPowerLevel) {
|
|
|
|
for (var i in $scope.members) {
|
|
|
|
var member = $scope.members[i];
|
|
|
|
member.powerLevelNorm = (member.powerLevel * 100) / maxPowerLevel;
|
|
|
|
}
|
2014-09-02 11:54:11 +02:00
|
|
|
}
|
2014-09-05 11:13:33 +02:00
|
|
|
};
|
2014-09-02 11:54:11 +02:00
|
|
|
|
2014-08-12 16:10:52 +02:00
|
|
|
$scope.send = function() {
|
2014-08-29 13:30:20 +02:00
|
|
|
if ($scope.textInput === "") {
|
2014-08-12 16:10:52 +02:00
|
|
|
return;
|
|
|
|
}
|
2014-08-22 02:54:37 +02:00
|
|
|
|
2014-09-05 17:52:11 +02:00
|
|
|
scrollToBottom(true);
|
|
|
|
|
2014-08-12 16:10:52 +02:00
|
|
|
var promise;
|
2014-09-06 19:13:38 +02:00
|
|
|
var cmd;
|
|
|
|
var args;
|
|
|
|
var echo = false;
|
2014-09-03 11:07:44 +02:00
|
|
|
|
|
|
|
// Check for IRC style commands first
|
2014-09-04 18:40:15 +02:00
|
|
|
var line = $scope.textInput;
|
|
|
|
|
|
|
|
// trim any trailing whitespace, as it can confuse the parser for IRC-style commands
|
|
|
|
line = line.replace(/\s+$/, "");
|
|
|
|
|
|
|
|
if (line[0] === "/" && line[1] !== "/") {
|
|
|
|
var bits = line.match(/^(\S+?)( +(.*))?$/);
|
2014-09-06 19:13:38 +02:00
|
|
|
cmd = bits[1];
|
|
|
|
args = bits[3];
|
2014-09-04 18:40:15 +02:00
|
|
|
|
|
|
|
console.log("cmd: " + cmd + ", args: " + args);
|
2014-09-03 11:07:44 +02:00
|
|
|
|
|
|
|
switch (cmd) {
|
|
|
|
case "/me":
|
2014-09-04 18:40:15 +02:00
|
|
|
promise = matrixService.sendEmoteMessage($scope.room_id, args);
|
2014-09-06 19:13:38 +02:00
|
|
|
echo = true;
|
2014-09-03 11:07:44 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case "/nick":
|
|
|
|
// Change user display name
|
2014-09-05 17:23:41 +02:00
|
|
|
if (args) {
|
|
|
|
promise = matrixService.setDisplayName(args);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$scope.feedback = "Usage: /nick <display_name>";
|
|
|
|
}
|
2014-09-03 11:07:44 +02:00
|
|
|
break;
|
2014-09-06 09:31:57 +02:00
|
|
|
|
|
|
|
case "/join":
|
|
|
|
// Join a room
|
|
|
|
if (args) {
|
|
|
|
var matches = args.match(/^(\S+)$/);
|
|
|
|
if (matches) {
|
|
|
|
var room_alias = matches[1];
|
|
|
|
if (room_alias.indexOf(':') == -1) {
|
|
|
|
// FIXME: actually track the :domain style name of our homeserver
|
|
|
|
// with or without port as is appropriate and append it at this point
|
|
|
|
}
|
|
|
|
|
|
|
|
var room_id = matrixService.getAliasToRoomIdMapping(room_alias);
|
|
|
|
console.log("joining " + room_alias + " id=" + room_id);
|
|
|
|
if ($rootScope.events.rooms[room_id]) {
|
|
|
|
// don't send a join event for a room you're already in.
|
|
|
|
$location.url("room/" + room_alias);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
promise = matrixService.joinAlias(room_alias).then(
|
|
|
|
function(response) {
|
|
|
|
$location.url("room/" + room_alias);
|
|
|
|
},
|
|
|
|
function(error) {
|
|
|
|
$scope.feedback = "Can't join room: " + JSON.stringify(error.data);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$scope.feedback = "Usage: /join <room_alias>";
|
|
|
|
}
|
|
|
|
break;
|
2014-09-03 11:17:58 +02:00
|
|
|
|
2014-09-03 16:59:09 +02:00
|
|
|
case "/kick":
|
2014-09-05 17:23:41 +02:00
|
|
|
// Kick a user from the room with an optional reason
|
|
|
|
if (args) {
|
|
|
|
var matches = args.match(/^(\S+?)( +(.*))?$/);
|
2014-09-05 17:30:50 +02:00
|
|
|
if (matches) {
|
|
|
|
promise = matrixService.kick($scope.room_id, matches[1], matches[3]);
|
2014-09-05 17:23:41 +02:00
|
|
|
}
|
2014-09-04 18:40:15 +02:00
|
|
|
}
|
2014-09-05 17:23:41 +02:00
|
|
|
|
|
|
|
if (!promise) {
|
2014-09-04 18:40:15 +02:00
|
|
|
$scope.feedback = "Usage: /kick <userId> [<reason>]";
|
2014-09-03 16:59:09 +02:00
|
|
|
}
|
|
|
|
break;
|
2014-09-03 11:17:58 +02:00
|
|
|
|
2014-09-04 18:40:15 +02:00
|
|
|
case "/ban":
|
2014-09-05 17:23:41 +02:00
|
|
|
// Ban a user from the room with an optional reason
|
|
|
|
if (args) {
|
|
|
|
var matches = args.match(/^(\S+?)( +(.*))?$/);
|
|
|
|
if (matches) {
|
|
|
|
promise = matrixService.ban($scope.room_id, matches[1], matches[3]);
|
|
|
|
}
|
2014-09-04 18:40:15 +02:00
|
|
|
}
|
2014-09-05 17:23:41 +02:00
|
|
|
|
|
|
|
if (!promise) {
|
2014-09-04 18:40:15 +02:00
|
|
|
$scope.feedback = "Usage: /ban <userId> [<reason>]";
|
2014-09-03 11:17:58 +02:00
|
|
|
}
|
|
|
|
break;
|
2014-09-04 18:40:15 +02:00
|
|
|
|
2014-09-03 15:58:28 +02:00
|
|
|
case "/unban":
|
2014-09-03 16:59:09 +02:00
|
|
|
// Unban a user from the room
|
2014-09-05 17:23:41 +02:00
|
|
|
if (args) {
|
|
|
|
var matches = args.match(/^(\S+)$/);
|
|
|
|
if (matches) {
|
|
|
|
// Reset the user membership to "leave" to unban him
|
2014-09-05 17:30:50 +02:00
|
|
|
promise = matrixService.unban($scope.room_id, matches[1]);
|
2014-09-05 17:23:41 +02:00
|
|
|
}
|
2014-09-04 18:40:15 +02:00
|
|
|
}
|
2014-09-05 17:23:41 +02:00
|
|
|
|
|
|
|
if (!promise) {
|
2014-09-04 18:40:15 +02:00
|
|
|
$scope.feedback = "Usage: /unban <userId>";
|
2014-09-03 15:58:28 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2014-09-03 14:12:56 +02:00
|
|
|
case "/op":
|
2014-09-03 16:59:09 +02:00
|
|
|
// Define the power level of a user
|
2014-09-05 17:23:41 +02:00
|
|
|
if (args) {
|
|
|
|
var matches = args.match(/^(\S+?)( +(\d+))?$/);
|
|
|
|
var powerLevel = 50; // default power level for op
|
|
|
|
if (matches) {
|
|
|
|
var user_id = matches[1];
|
2014-09-10 17:37:51 +02:00
|
|
|
if (matches.length === 4 && undefined !== matches[3]) {
|
2014-09-05 17:23:41 +02:00
|
|
|
powerLevel = parseInt(matches[3]);
|
|
|
|
}
|
|
|
|
if (powerLevel !== NaN) {
|
|
|
|
promise = matrixService.setUserPowerLevel($scope.room_id, user_id, powerLevel);
|
|
|
|
}
|
2014-09-04 18:40:15 +02:00
|
|
|
}
|
|
|
|
}
|
2014-09-05 17:23:41 +02:00
|
|
|
|
2014-09-04 18:40:15 +02:00
|
|
|
if (!promise) {
|
|
|
|
$scope.feedback = "Usage: /op <userId> [<power level>]";
|
2014-09-03 14:12:56 +02:00
|
|
|
}
|
|
|
|
break;
|
2014-09-03 15:14:13 +02:00
|
|
|
|
|
|
|
case "/deop":
|
2014-09-03 16:59:09 +02:00
|
|
|
// Reset the power level of a user
|
2014-09-05 17:23:41 +02:00
|
|
|
if (args) {
|
|
|
|
var matches = args.match(/^(\S+)$/);
|
|
|
|
if (matches) {
|
|
|
|
promise = matrixService.setUserPowerLevel($scope.room_id, args, undefined);
|
|
|
|
}
|
2014-09-04 18:40:15 +02:00
|
|
|
}
|
2014-09-05 17:23:41 +02:00
|
|
|
|
|
|
|
if (!promise) {
|
2014-09-04 18:40:15 +02:00
|
|
|
$scope.feedback = "Usage: /deop <userId>";
|
2014-09-03 15:14:13 +02:00
|
|
|
}
|
|
|
|
break;
|
2014-09-04 18:40:15 +02:00
|
|
|
|
|
|
|
default:
|
|
|
|
$scope.feedback = ("Unrecognised IRC-style command: " + cmd);
|
|
|
|
break;
|
2014-09-03 11:07:44 +02:00
|
|
|
}
|
2014-08-29 18:24:13 +02:00
|
|
|
}
|
2014-09-03 15:25:59 +02:00
|
|
|
|
2014-09-04 18:40:15 +02:00
|
|
|
// By default send this as a message unless it's an IRC-style command
|
2014-09-06 19:13:38 +02:00
|
|
|
if (!promise && !cmd) {
|
|
|
|
// Make the request
|
|
|
|
promise = matrixService.sendTextMessage($scope.room_id, line);
|
|
|
|
echo = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (echo) {
|
2014-09-05 14:09:14 +02:00
|
|
|
// Echo the message to the room
|
|
|
|
// To do so, create a minimalist fake text message event and add it to the in-memory list of room messages
|
|
|
|
var echoMessage = {
|
|
|
|
content: {
|
2014-09-06 19:13:38 +02:00
|
|
|
body: (cmd === "/me" ? args : line),
|
2014-09-06 09:31:57 +02:00
|
|
|
hsob_ts: new Date().getTime(), // fake a timestamp
|
2014-09-06 19:13:38 +02:00
|
|
|
msgtype: (cmd === "/me" ? "m.emote" : "m.text"),
|
2014-09-05 14:09:14 +02:00
|
|
|
},
|
|
|
|
room_id: $scope.room_id,
|
|
|
|
type: "m.room.message",
|
|
|
|
user_id: $scope.state.user_id,
|
2014-09-10 18:24:03 +02:00
|
|
|
echo_msg_state: "messagePending" // Add custom field to indicate the state of this fake message to HTML
|
2014-09-05 14:09:14 +02:00
|
|
|
};
|
|
|
|
|
2014-09-06 19:13:38 +02:00
|
|
|
$scope.textInput = "";
|
2014-09-05 14:09:14 +02:00
|
|
|
$rootScope.events.rooms[$scope.room_id].messages.push(echoMessage);
|
|
|
|
scrollToBottom();
|
2014-08-12 16:10:52 +02:00
|
|
|
}
|
2014-09-04 18:40:15 +02:00
|
|
|
|
|
|
|
if (promise) {
|
2014-09-10 17:40:34 +02:00
|
|
|
// Reset previous feedback
|
|
|
|
$scope.feedback = "";
|
|
|
|
|
2014-09-04 18:40:15 +02:00
|
|
|
promise.then(
|
2014-09-10 18:24:03 +02:00
|
|
|
function(response) {
|
2014-09-04 18:40:15 +02:00
|
|
|
console.log("Request successfully sent");
|
2014-09-10 18:24:03 +02:00
|
|
|
if (echo) {
|
|
|
|
// Mark this fake message event with its allocated event_id
|
|
|
|
// When the true message event will come from the events stream (in handleMessage),
|
|
|
|
// we will be able to replace the fake one by the true one
|
|
|
|
echoMessage.event_id = response.data.event_id;
|
2014-09-05 14:09:14 +02:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
$scope.textInput = "";
|
2014-09-10 18:24:03 +02:00
|
|
|
}
|
2014-09-04 18:40:15 +02:00
|
|
|
},
|
|
|
|
function(error) {
|
|
|
|
$scope.feedback = "Request failed: " + error.data.error;
|
2014-09-05 14:09:14 +02:00
|
|
|
|
|
|
|
if (echoMessage) {
|
|
|
|
// Mark the message as unsent for the rest of the page life
|
|
|
|
echoMessage.content.hsob_ts = "Unsent";
|
|
|
|
echoMessage.echo_msg_state = "messageUnSent";
|
|
|
|
}
|
2014-09-04 18:40:15 +02:00
|
|
|
});
|
|
|
|
}
|
2014-08-12 16:10:52 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
$scope.onInit = function() {
|
|
|
|
console.log("onInit");
|
2014-08-22 11:50:38 +02:00
|
|
|
|
2014-08-18 17:11:08 +02:00
|
|
|
// Does the room ID provided in the URL?
|
2014-08-18 17:40:05 +02: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]) {
|
2014-08-28 16:23:20 +02:00
|
|
|
// Yes. We can go on right now
|
2014-08-18 17:40:05 +02:00
|
|
|
$scope.room_id = room_id_or_alias;
|
2014-08-18 17:11:08 +02:00
|
|
|
$scope.room_alias = matrixService.getRoomIdToAliasMapping($scope.room_id);
|
|
|
|
onInit2();
|
|
|
|
}
|
|
|
|
else {
|
2014-08-18 17:40:05 +02: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 17:11:08 +02:00
|
|
|
}
|
2014-08-18 17:40:05 +02: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 11:43:54 +02:00
|
|
|
$location.url("/");
|
2014-08-18 17:40:05 +02:00
|
|
|
return;
|
|
|
|
}
|
2014-08-18 17:11:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Need a room ID required in Matrix API requests
|
2014-08-18 17:40:05 +02:00
|
|
|
console.log("Resolving alias: " + $scope.room_alias);
|
2014-08-18 17:11:08 +02:00
|
|
|
matrixService.resolveRoomAlias($scope.room_alias).then(function(response) {
|
|
|
|
$scope.room_id = response.data.room_id;
|
|
|
|
console.log(" -> Room ID: " + $scope.room_id);
|
|
|
|
|
2014-08-28 16:23:20 +02:00
|
|
|
// Now, we can go on
|
2014-08-18 17:11:08 +02:00
|
|
|
onInit2();
|
|
|
|
},
|
|
|
|
function () {
|
|
|
|
// In case of issue, go to the default page
|
|
|
|
console.log("Error: cannot resolve room alias");
|
2014-08-22 11:43:54 +02:00
|
|
|
$location.url("/");
|
2014-08-18 17:11:08 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|
2014-08-28 16:23:20 +02:00
|
|
|
|
2014-08-18 17:11:08 +02:00
|
|
|
var onInit2 = function() {
|
2014-08-28 16:23:20 +02:00
|
|
|
console.log("onInit2");
|
|
|
|
|
|
|
|
// Make sure the initialSync has been before going further
|
|
|
|
eventHandlerService.waitForInitialSyncCompletion().then(
|
2014-08-12 16:10:52 +02:00
|
|
|
function() {
|
2014-09-01 16:27:11 +02:00
|
|
|
|
2014-08-28 16:23:20 +02:00
|
|
|
var needsToJoin = true;
|
|
|
|
|
|
|
|
// The room members is available in the data fetched by initialSync
|
|
|
|
if ($rootScope.events.rooms[$scope.room_id]) {
|
|
|
|
var members = $rootScope.events.rooms[$scope.room_id].members;
|
2014-08-12 16:10:52 +02:00
|
|
|
|
2014-08-28 16:23:20 +02:00
|
|
|
// Update the member list
|
|
|
|
for (var i in members) {
|
|
|
|
var member = members[i];
|
|
|
|
updateMemberList(member);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if the user has already join the room
|
|
|
|
if ($scope.state.user_id in members) {
|
|
|
|
if ("join" === members[$scope.state.user_id].membership) {
|
|
|
|
needsToJoin = false;
|
2014-08-12 16:10:52 +02:00
|
|
|
}
|
|
|
|
}
|
2014-08-28 16:23:20 +02:00
|
|
|
}
|
2014-08-14 18:23:47 +02:00
|
|
|
|
2014-08-28 16:23:20 +02:00
|
|
|
// Do we to join the room before starting?
|
|
|
|
if (needsToJoin) {
|
2014-09-09 14:18:08 +02:00
|
|
|
$scope.state.waiting_for_joined_event = true;
|
2014-08-28 16:23:20 +02:00
|
|
|
matrixService.join($scope.room_id).then(
|
|
|
|
function() {
|
2014-09-09 14:18:08 +02:00
|
|
|
// onInit3 will be called once the joined m.room.member event is received from the events stream
|
|
|
|
// This avoids to get the joined information twice in parallel:
|
|
|
|
// - one from the events stream
|
|
|
|
// - one from the pagination because the pagination window covers this event ts
|
2014-08-28 16:23:20 +02:00
|
|
|
console.log("Joined room "+$scope.room_id);
|
|
|
|
},
|
|
|
|
function(reason) {
|
2014-09-03 11:45:30 +02:00
|
|
|
console.log("Can't join room: " + JSON.stringify(reason));
|
|
|
|
$scope.feedback = "You do not have permission to join this room";
|
2014-08-28 16:23:20 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
onInit3();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
var onInit3 = function() {
|
|
|
|
console.log("onInit3");
|
|
|
|
|
|
|
|
// Make recents highlight the current room
|
|
|
|
$scope.recentsSelectedRoomID = $scope.room_id;
|
2014-09-01 16:21:13 +02:00
|
|
|
|
|
|
|
// Get the up-to-date the current member list
|
|
|
|
matrixService.getMemberList($scope.room_id).then(
|
|
|
|
function(response) {
|
|
|
|
for (var i = 0; i < response.data.chunk.length; i++) {
|
|
|
|
var chunk = response.data.chunk[i];
|
|
|
|
updateMemberList(chunk);
|
2014-09-02 11:54:11 +02:00
|
|
|
|
|
|
|
// Add his power level
|
|
|
|
updateUserPowerLevel(chunk.user_id);
|
2014-09-01 16:21:13 +02:00
|
|
|
}
|
2014-09-02 11:14:45 +02:00
|
|
|
|
|
|
|
// Arm list timing update timer
|
|
|
|
updateMemberListPresenceAge();
|
2014-09-09 16:46:30 +02:00
|
|
|
|
|
|
|
// Start pagination
|
|
|
|
$scope.state.can_paginate = true;
|
|
|
|
paginate(MESSAGES_PER_PAGINATION);
|
2014-09-01 16:21:13 +02:00
|
|
|
},
|
|
|
|
function(error) {
|
|
|
|
$scope.feedback = "Failed get member list: " + error.data.error;
|
|
|
|
}
|
|
|
|
);
|
2014-08-12 16:10:52 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
$scope.inviteUser = function(user_id) {
|
|
|
|
|
|
|
|
matrixService.invite($scope.room_id, user_id).then(
|
|
|
|
function() {
|
|
|
|
console.log("Invited.");
|
2014-08-31 01:40:42 +02:00
|
|
|
$scope.feedback = "Invite sent successfully";
|
2014-08-12 16:10:52 +02:00
|
|
|
},
|
|
|
|
function(reason) {
|
|
|
|
$scope.feedback = "Failure: " + reason;
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
$scope.leaveRoom = function() {
|
|
|
|
|
|
|
|
matrixService.leave($scope.room_id).then(
|
|
|
|
function(response) {
|
|
|
|
console.log("Left room ");
|
2014-08-22 18:08:03 +02:00
|
|
|
$location.url("home");
|
2014-08-12 16:10:52 +02:00
|
|
|
},
|
2014-08-14 16:47:38 +02:00
|
|
|
function(error) {
|
|
|
|
$scope.feedback = "Failed to leave room: " + error.data.error;
|
2014-08-12 16:10:52 +02:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2014-08-20 16:18:50 +02:00
|
|
|
$scope.sendImage = function(url, body) {
|
2014-09-05 17:52:11 +02:00
|
|
|
scrollToBottom(true);
|
|
|
|
|
2014-08-20 16:18:50 +02:00
|
|
|
matrixService.sendImageMessage($scope.room_id, url, body).then(
|
2014-08-13 11:42:28 +02:00
|
|
|
function() {
|
|
|
|
console.log("Image sent");
|
|
|
|
},
|
2014-08-14 16:47:38 +02:00
|
|
|
function(error) {
|
|
|
|
$scope.feedback = "Failed to send image: " + error.data.error;
|
2014-08-13 11:42:28 +02:00
|
|
|
});
|
|
|
|
};
|
2014-08-14 18:23:47 +02:00
|
|
|
|
2014-08-14 18:53:05 +02:00
|
|
|
$scope.imageFileToSend;
|
|
|
|
$scope.$watch("imageFileToSend", function(newValue, oldValue) {
|
|
|
|
if ($scope.imageFileToSend) {
|
2014-08-21 14:30:41 +02: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");
|
2014-08-20 16:18:50 +02:00
|
|
|
},
|
|
|
|
function(error) {
|
2014-08-21 14:30:41 +02:00
|
|
|
$scope.feedback = "Failed to send image message: " + error.data.error;
|
|
|
|
});
|
2014-08-14 18:53:05 +02:00
|
|
|
},
|
|
|
|
function(error) {
|
2014-08-21 14:30:41 +02:00
|
|
|
$scope.feedback = "Can't upload image";
|
2014-08-20 16:18:50 +02:00
|
|
|
}
|
2014-08-14 18:53:05 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2014-08-14 18:23:47 +02:00
|
|
|
$scope.loadMoreHistory = function() {
|
2014-08-16 23:05:31 +02:00
|
|
|
paginate(MESSAGES_PER_PAGINATION);
|
2014-08-14 18:23:47 +02:00
|
|
|
};
|
2014-08-27 19:57:54 +02:00
|
|
|
|
|
|
|
$scope.startVoiceCall = function() {
|
|
|
|
var call = new MatrixCall($scope.room_id);
|
2014-09-01 18:15:26 +02:00
|
|
|
call.onError = $rootScope.onCallError;
|
|
|
|
call.onHangup = $rootScope.onCallHangup;
|
2014-09-09 18:37:50 +02:00
|
|
|
call.placeCall({audio: true, video: false});
|
|
|
|
$rootScope.currentCall = call;
|
|
|
|
};
|
|
|
|
|
|
|
|
$scope.startVideoCall = function() {
|
|
|
|
var call = new MatrixCall($scope.room_id);
|
|
|
|
call.onError = $rootScope.onCallError;
|
|
|
|
call.onHangup = $rootScope.onCallHangup;
|
|
|
|
call.placeCall({audio: true, video: true});
|
2014-09-01 18:15:26 +02:00
|
|
|
$rootScope.currentCall = call;
|
2014-09-05 11:13:33 +02:00
|
|
|
};
|
2014-08-28 20:03:34 +02:00
|
|
|
|
2014-08-12 16:10:52 +02:00
|
|
|
}]);
|