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-12 10:10:52 -04:00
|
|
|
'use strict';
|
|
|
|
|
2014-08-27 09:09:16 -04:00
|
|
|
angular.module('HomeController', ['matrixService', 'eventHandlerService', 'RecentsController'])
|
2014-08-28 05:14:36 -04:00
|
|
|
.controller('HomeController', ['$scope', '$location', 'matrixService',
|
|
|
|
function($scope, $location, matrixService) {
|
2014-08-22 11:11:39 -04:00
|
|
|
|
|
|
|
$scope.config = matrixService.config();
|
2014-08-12 10:10:52 -04:00
|
|
|
$scope.public_rooms = [];
|
|
|
|
$scope.newRoomId = "";
|
|
|
|
$scope.feedback = "";
|
|
|
|
|
|
|
|
$scope.newRoom = {
|
|
|
|
room_id: "",
|
|
|
|
private: false
|
|
|
|
};
|
|
|
|
|
|
|
|
$scope.goToRoom = {
|
2014-08-27 09:09:16 -04:00
|
|
|
room_id: ""
|
2014-08-12 10:10:52 -04:00
|
|
|
};
|
|
|
|
|
2014-08-12 12:17:10 -04:00
|
|
|
$scope.joinAlias = {
|
2014-08-27 09:09:16 -04:00
|
|
|
room_alias: ""
|
2014-08-12 10:10:52 -04:00
|
|
|
};
|
2014-08-29 12:22:05 -04:00
|
|
|
|
|
|
|
$scope.profile = {
|
|
|
|
displayName: "",
|
|
|
|
avatarUrl: ""
|
|
|
|
};
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2014-08-26 10:57:29 -04:00
|
|
|
var refresh = function() {
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
matrixService.publicRooms().then(
|
2014-08-14 10:43:16 -04:00
|
|
|
function(response) {
|
2014-08-28 11:48:55 -04: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 10:10:52 -04:00
|
|
|
}
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
2014-08-30 19:40:42 -04:00
|
|
|
$scope.createNewRoom = function(room_alias, isPrivate) {
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
var visibility = "public";
|
|
|
|
if (isPrivate) {
|
|
|
|
visibility = "private";
|
|
|
|
}
|
|
|
|
|
2014-08-30 19:40:42 -04:00
|
|
|
matrixService.create(room_alias, visibility).then(
|
2014-08-12 10:10:52 -04:00
|
|
|
function(response) {
|
|
|
|
// This room has been created. Refresh the rooms list
|
2014-08-14 10:43:16 -04:00
|
|
|
console.log("Created room " + response.data.room_alias + " with id: "+
|
|
|
|
response.data.room_id);
|
2014-08-12 10:10:52 -04:00
|
|
|
matrixService.createRoomIdToAliasMapping(
|
2014-08-14 10:43:16 -04:00
|
|
|
response.data.room_id, response.data.room_alias);
|
2014-08-26 10:57:29 -04:00
|
|
|
refresh();
|
2014-08-12 10:10:52 -04:00
|
|
|
},
|
2014-08-14 10:43:16 -04:00
|
|
|
function(error) {
|
|
|
|
$scope.feedback = "Failure: " + error.data;
|
2014-08-12 10:10:52 -04:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
// Go to a room
|
|
|
|
$scope.goToRoom = function(room_id) {
|
|
|
|
// Simply open the room page on this room id
|
2014-08-22 05:43:54 -04:00
|
|
|
//$location.url("room/" + room_id);
|
2014-08-12 10:10:52 -04:00
|
|
|
matrixService.join(room_id).then(
|
|
|
|
function(response) {
|
2014-08-14 10:43:16 -04:00
|
|
|
if (response.data.hasOwnProperty("room_id")) {
|
|
|
|
if (response.data.room_id != room_id) {
|
2014-08-22 05:43:54 -04:00
|
|
|
$location.url("room/" + response.data.room_id);
|
2014-08-12 10:10:52 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-22 05:43:54 -04:00
|
|
|
$location.url("room/" + room_id);
|
2014-08-12 10:10:52 -04:00
|
|
|
},
|
2014-08-14 10:43:16 -04:00
|
|
|
function(error) {
|
|
|
|
$scope.feedback = "Can't join room: " + error.data;
|
2014-08-12 10:10:52 -04:00
|
|
|
}
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
2014-08-12 12:17:10 -04:00
|
|
|
$scope.joinAlias = function(room_alias) {
|
|
|
|
matrixService.joinAlias(room_alias).then(
|
|
|
|
function(response) {
|
2014-08-18 11:41:23 -04:00
|
|
|
// Go to this room
|
2014-08-22 05:43:54 -04:00
|
|
|
$location.url("room/" + room_alias);
|
2014-08-12 12:17:10 -04:00
|
|
|
},
|
2014-08-14 10:43:16 -04:00
|
|
|
function(error) {
|
|
|
|
$scope.feedback = "Can't join room: " + error.data;
|
2014-08-12 12:17:10 -04:00
|
|
|
}
|
|
|
|
);
|
|
|
|
};
|
2014-08-22 12:18:27 -04:00
|
|
|
|
2014-08-26 10:57:29 -04:00
|
|
|
$scope.onInit = function() {
|
2014-08-29 12:22:05 -04: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-08-26 10:57:29 -04:00
|
|
|
refresh();
|
|
|
|
};
|
2014-08-12 10:10:52 -04:00
|
|
|
}]);
|