2014-08-13 04:32:18 +02: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-12 16:10:52 +02:00
|
|
|
'use strict';
|
|
|
|
|
2014-08-27 14:35:40 +02:00
|
|
|
angular.module('HomeController', ['matrixService', 'eventHandlerService'])
|
|
|
|
.controller('HomeController', ['$scope', '$location', 'matrixService', 'eventHandlerService', 'eventStreamService',
|
|
|
|
function($scope, $location, matrixService, eventHandlerService, eventStreamService) {
|
2014-08-22 17:11:39 +02:00
|
|
|
|
|
|
|
$scope.config = matrixService.config();
|
2014-08-15 16:40:37 +02:00
|
|
|
$scope.rooms = {};
|
2014-08-12 16:10:52 +02:00
|
|
|
$scope.public_rooms = [];
|
|
|
|
$scope.newRoomId = "";
|
|
|
|
$scope.feedback = "";
|
|
|
|
|
|
|
|
$scope.newRoom = {
|
|
|
|
room_id: "",
|
|
|
|
private: false
|
|
|
|
};
|
|
|
|
|
|
|
|
$scope.goToRoom = {
|
|
|
|
room_id: "",
|
|
|
|
};
|
|
|
|
|
2014-08-12 18:17:10 +02:00
|
|
|
$scope.joinAlias = {
|
|
|
|
room_alias: "",
|
|
|
|
};
|
2014-08-12 16:10:52 +02:00
|
|
|
|
2014-08-15 16:40:37 +02:00
|
|
|
$scope.$on(eventHandlerService.MEMBER_EVENT, function(ngEvent, event, isLive) {
|
|
|
|
var config = matrixService.config();
|
2014-08-26 11:24:47 +02:00
|
|
|
if (event.state_key === config.user_id && event.content.membership === "invite") {
|
2014-08-15 16:40:37 +02:00
|
|
|
console.log("Invited to room " + event.room_id);
|
|
|
|
// FIXME push membership to top level key to match /im/sync
|
|
|
|
event.membership = event.content.membership;
|
|
|
|
// FIXME bodge a nicer name than the room ID for this invite.
|
2014-08-21 16:30:57 +02:00
|
|
|
event.room_display_name = event.user_id + "'s room";
|
2014-08-15 16:40:37 +02:00
|
|
|
$scope.rooms[event.room_id] = event;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2014-08-12 16:10:52 +02:00
|
|
|
var assignRoomAliases = function(data) {
|
|
|
|
for (var i=0; i<data.length; i++) {
|
|
|
|
var alias = matrixService.getRoomIdToAliasMapping(data[i].room_id);
|
|
|
|
if (alias) {
|
2014-08-13 17:29:37 +02:00
|
|
|
// use the existing alias from storage
|
2014-08-12 16:10:52 +02:00
|
|
|
data[i].room_alias = alias;
|
2014-08-21 16:30:57 +02:00
|
|
|
data[i].room_display_name = alias;
|
2014-08-12 16:10:52 +02:00
|
|
|
}
|
2014-08-20 17:46:16 +02:00
|
|
|
else if (data[i].aliases && data[i].aliases[0]) {
|
2014-08-13 17:29:37 +02:00
|
|
|
// save the mapping
|
2014-08-20 17:46:16 +02:00
|
|
|
// TODO: select the smarter alias from the array
|
|
|
|
matrixService.createRoomIdToAliasMapping(data[i].room_id, data[i].aliases[0]);
|
2014-08-21 16:30:57 +02:00
|
|
|
data[i].room_display_name = data[i].aliases[0];
|
|
|
|
}
|
|
|
|
else if (data[i].membership == "invite" && "inviter" in data[i]) {
|
|
|
|
data[i].room_display_name = data[i].inviter + "'s room"
|
2014-08-13 17:29:37 +02:00
|
|
|
}
|
2014-08-12 16:10:52 +02:00
|
|
|
else {
|
2014-08-13 17:29:37 +02:00
|
|
|
// last resort use the room id
|
2014-08-21 16:30:57 +02:00
|
|
|
data[i].room_display_name = data[i].room_id;
|
2014-08-12 16:10:52 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return data;
|
|
|
|
};
|
|
|
|
|
2014-08-26 16:57:29 +02:00
|
|
|
var refresh = function() {
|
2014-08-12 16:10:52 +02:00
|
|
|
// List all rooms joined or been invited to
|
2014-08-27 10:24:01 +02:00
|
|
|
matrixService.rooms(1, false).then(
|
2014-08-14 16:43:16 +02:00
|
|
|
function(response) {
|
2014-08-21 18:17:41 +02:00
|
|
|
var data = assignRoomAliases(response.data.rooms);
|
2014-08-12 16:10:52 +02:00
|
|
|
$scope.feedback = "Success";
|
2014-08-15 16:40:37 +02:00
|
|
|
for (var i=0; i<data.length; i++) {
|
|
|
|
$scope.rooms[data[i].room_id] = data[i];
|
2014-08-27 10:24:01 +02:00
|
|
|
|
|
|
|
// Create a shortcut for the last message of this room
|
2014-08-27 14:31:20 +02:00
|
|
|
if (data[i].messages && data[i].messages.chunk && data[i].messages.chunk[0]) {
|
|
|
|
$scope.rooms[data[i].room_id].lastMsg = data[i].messages.chunk[0];
|
|
|
|
}
|
2014-08-15 16:40:37 +02:00
|
|
|
}
|
2014-08-21 18:17:41 +02:00
|
|
|
|
|
|
|
var presence = response.data.presence;
|
|
|
|
for (var i = 0; i < presence.length; ++i) {
|
|
|
|
eventHandlerService.handleEvent(presence[i], false);
|
|
|
|
}
|
2014-08-12 16:10:52 +02:00
|
|
|
},
|
2014-08-14 16:43:16 +02:00
|
|
|
function(error) {
|
|
|
|
$scope.feedback = "Failure: " + error.data;
|
2014-08-12 16:10:52 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
matrixService.publicRooms().then(
|
2014-08-14 16:43:16 +02:00
|
|
|
function(response) {
|
|
|
|
$scope.public_rooms = assignRoomAliases(response.data.chunk);
|
2014-08-12 16:10:52 +02:00
|
|
|
}
|
|
|
|
);
|
2014-08-21 18:55:41 +02:00
|
|
|
|
|
|
|
eventStreamService.resume();
|
2014-08-12 16:10:52 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
$scope.createNewRoom = function(room_id, isPrivate) {
|
|
|
|
|
|
|
|
var visibility = "public";
|
|
|
|
if (isPrivate) {
|
|
|
|
visibility = "private";
|
|
|
|
}
|
|
|
|
|
|
|
|
matrixService.create(room_id, visibility).then(
|
|
|
|
function(response) {
|
|
|
|
// This room has been created. Refresh the rooms list
|
2014-08-14 16:43:16 +02:00
|
|
|
console.log("Created room " + response.data.room_alias + " with id: "+
|
|
|
|
response.data.room_id);
|
2014-08-12 16:10:52 +02:00
|
|
|
matrixService.createRoomIdToAliasMapping(
|
2014-08-14 16:43:16 +02:00
|
|
|
response.data.room_id, response.data.room_alias);
|
2014-08-26 16:57:29 +02:00
|
|
|
refresh();
|
2014-08-12 16:10:52 +02:00
|
|
|
},
|
2014-08-14 16:43:16 +02:00
|
|
|
function(error) {
|
|
|
|
$scope.feedback = "Failure: " + error.data;
|
2014-08-12 16:10:52 +02:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
// Go to a room
|
|
|
|
$scope.goToRoom = function(room_id) {
|
|
|
|
// Simply open the room page on this room id
|
2014-08-22 11:43:54 +02:00
|
|
|
//$location.url("room/" + room_id);
|
2014-08-12 16:10:52 +02:00
|
|
|
matrixService.join(room_id).then(
|
|
|
|
function(response) {
|
2014-08-14 16:43:16 +02:00
|
|
|
if (response.data.hasOwnProperty("room_id")) {
|
|
|
|
if (response.data.room_id != room_id) {
|
2014-08-22 11:43:54 +02:00
|
|
|
$location.url("room/" + response.data.room_id);
|
2014-08-12 16:10:52 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-22 11:43:54 +02:00
|
|
|
$location.url("room/" + room_id);
|
2014-08-12 16:10:52 +02:00
|
|
|
},
|
2014-08-14 16:43:16 +02:00
|
|
|
function(error) {
|
|
|
|
$scope.feedback = "Can't join room: " + error.data;
|
2014-08-12 16:10:52 +02:00
|
|
|
}
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
2014-08-12 18:17:10 +02:00
|
|
|
$scope.joinAlias = function(room_alias) {
|
|
|
|
matrixService.joinAlias(room_alias).then(
|
|
|
|
function(response) {
|
2014-08-18 17:41:23 +02:00
|
|
|
// Go to this room
|
2014-08-22 11:43:54 +02:00
|
|
|
$location.url("room/" + room_alias);
|
2014-08-12 18:17:10 +02:00
|
|
|
},
|
2014-08-14 16:43:16 +02:00
|
|
|
function(error) {
|
|
|
|
$scope.feedback = "Can't join room: " + error.data;
|
2014-08-12 18:17:10 +02:00
|
|
|
}
|
|
|
|
);
|
|
|
|
};
|
2014-08-22 18:18:27 +02:00
|
|
|
|
2014-08-26 16:57:29 +02:00
|
|
|
$scope.onInit = function() {
|
|
|
|
refresh();
|
|
|
|
};
|
2014-08-12 16:10:52 +02:00
|
|
|
}]);
|