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-08-12 16:10:52 +02:00
|
|
|
'use strict';
|
|
|
|
|
2014-08-27 15:09:16 +02:00
|
|
|
angular.module('HomeController', ['matrixService', 'eventHandlerService', 'RecentsController'])
|
2014-09-02 13:55:14 +02:00
|
|
|
.controller('HomeController', ['$scope', '$location', 'matrixService', 'eventHandlerService',
|
|
|
|
function($scope, $location, matrixService, eventHandlerService) {
|
2014-08-22 17:11:39 +02:00
|
|
|
|
|
|
|
$scope.config = matrixService.config();
|
2014-08-12 16:10:52 +02:00
|
|
|
$scope.public_rooms = [];
|
|
|
|
$scope.newRoomId = "";
|
|
|
|
$scope.feedback = "";
|
|
|
|
|
|
|
|
$scope.newRoom = {
|
|
|
|
room_id: "",
|
|
|
|
private: false
|
|
|
|
};
|
|
|
|
|
|
|
|
$scope.goToRoom = {
|
2014-08-27 15:09:16 +02:00
|
|
|
room_id: ""
|
2014-08-12 16:10:52 +02:00
|
|
|
};
|
|
|
|
|
2014-08-12 18:17:10 +02:00
|
|
|
$scope.joinAlias = {
|
2014-08-27 15:09:16 +02:00
|
|
|
room_alias: ""
|
2014-08-12 16:10:52 +02:00
|
|
|
};
|
2014-08-29 18:22:05 +02:00
|
|
|
|
|
|
|
$scope.profile = {
|
|
|
|
displayName: "",
|
|
|
|
avatarUrl: ""
|
|
|
|
};
|
2014-08-12 16:10:52 +02:00
|
|
|
|
2014-08-26 16:57:29 +02:00
|
|
|
var refresh = function() {
|
2014-08-12 16:10:52 +02:00
|
|
|
|
|
|
|
matrixService.publicRooms().then(
|
2014-08-14 16:43:16 +02:00
|
|
|
function(response) {
|
2014-08-28 17:48:55 +02:00
|
|
|
$scope.public_rooms = response.data.chunk;
|
|
|
|
for (var i = 0; i < $scope.public_rooms.length; i++) {
|
|
|
|
var room = $scope.public_rooms[i];
|
|
|
|
|
|
|
|
// Add room_alias & room_display_name members
|
|
|
|
angular.extend(room, matrixService.getRoomAliasAndDisplayName(room));
|
|
|
|
}
|
2014-08-12 16:10:52 +02:00
|
|
|
}
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
2014-08-31 01:40:42 +02:00
|
|
|
$scope.createNewRoom = function(room_alias, isPrivate) {
|
2014-08-12 16:10:52 +02:00
|
|
|
|
|
|
|
var visibility = "public";
|
|
|
|
if (isPrivate) {
|
|
|
|
visibility = "private";
|
|
|
|
}
|
|
|
|
|
2014-08-31 01:40:42 +02:00
|
|
|
matrixService.create(room_alias, visibility).then(
|
2014-08-12 16:10:52 +02:00
|
|
|
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-12 16:10:52 +02:00
|
|
|
},
|
2014-08-14 16:43:16 +02:00
|
|
|
function(error) {
|
2014-09-03 19:38:55 +02:00
|
|
|
$scope.feedback = "Failure: " + JSON.stringify(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) {
|
2014-09-03 19:38:55 +02:00
|
|
|
$scope.feedback = "Can't join room: " + JSON.stringify(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) {
|
2014-09-03 19:38:55 +02:00
|
|
|
$scope.feedback = "Can't join room: " + JSON.stringify(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() {
|
2014-08-29 18:22:05 +02:00
|
|
|
// Load profile data
|
|
|
|
// Display name
|
|
|
|
matrixService.getDisplayName($scope.config.user_id).then(
|
|
|
|
function(response) {
|
|
|
|
$scope.profile.displayName = response.data.displayname;
|
|
|
|
},
|
|
|
|
function(error) {
|
|
|
|
$scope.feedback = "Can't load display name";
|
|
|
|
}
|
|
|
|
);
|
|
|
|
// Avatar
|
|
|
|
matrixService.getProfilePictureUrl($scope.config.user_id).then(
|
|
|
|
function(response) {
|
|
|
|
$scope.profile.avatarUrl = response.data.avatar_url;
|
|
|
|
},
|
|
|
|
function(error) {
|
|
|
|
$scope.feedback = "Can't load avatar URL";
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
2014-09-02 13:55:14 +02:00
|
|
|
// Listen to room creation event in order to update the public rooms list
|
|
|
|
$scope.$on(eventHandlerService.ROOM_CREATE_EVENT, function(ngEvent, event, isLive) {
|
|
|
|
if (isLive) {
|
|
|
|
// As we do not know if this room is public, do a full list refresh
|
|
|
|
refresh();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2014-08-26 16:57:29 +02:00
|
|
|
refresh();
|
|
|
|
};
|
2014-08-12 16:10:52 +02:00
|
|
|
}]);
|