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
|
|
|
var matrixWebClient = angular.module('matrixWebClient', [
|
|
|
|
'ngRoute',
|
|
|
|
'MatrixWebClientController',
|
|
|
|
'LoginController',
|
2014-08-31 01:40:42 +02:00
|
|
|
'RegisterController',
|
2014-08-12 16:10:52 +02:00
|
|
|
'RoomController',
|
2014-08-22 18:08:03 +02:00
|
|
|
'HomeController',
|
2014-08-27 15:09:16 +02:00
|
|
|
'RecentsController',
|
2014-08-22 17:11:39 +02:00
|
|
|
'SettingsController',
|
2014-08-18 18:05:42 +02:00
|
|
|
'UserController',
|
2014-08-15 11:20:14 +02:00
|
|
|
'matrixService',
|
2014-08-27 19:57:54 +02:00
|
|
|
'matrixPhoneService',
|
|
|
|
'MatrixCall',
|
2014-08-15 12:31:13 +02:00
|
|
|
'eventStreamService',
|
2014-08-15 18:42:02 +02:00
|
|
|
'eventHandlerService',
|
|
|
|
'infinite-scroll'
|
2014-08-12 16:10:52 +02:00
|
|
|
]);
|
|
|
|
|
2014-08-14 16:21:39 +02:00
|
|
|
matrixWebClient.config(['$routeProvider', '$provide', '$httpProvider',
|
|
|
|
function($routeProvider, $provide, $httpProvider) {
|
2014-08-12 16:10:52 +02:00
|
|
|
$routeProvider.
|
|
|
|
when('/login', {
|
2014-09-02 15:12:51 +02:00
|
|
|
templateUrl: 'login/login.html'
|
2014-08-12 16:10:52 +02:00
|
|
|
}).
|
2014-08-31 01:40:42 +02:00
|
|
|
when('/register', {
|
2014-09-02 15:12:51 +02:00
|
|
|
templateUrl: 'login/register.html'
|
2014-08-31 01:40:42 +02:00
|
|
|
}).
|
2014-08-18 17:40:05 +02:00
|
|
|
when('/room/:room_id_or_alias', {
|
2014-09-02 15:12:51 +02:00
|
|
|
templateUrl: 'room/room.html'
|
2014-08-12 16:10:52 +02:00
|
|
|
}).
|
2014-08-18 17:11:08 +02:00
|
|
|
when('/room/', { // room URL with room alias in it (ex: http://127.0.0.1:8000/#/room/#public:localhost:8080) will come here.
|
|
|
|
// The reason is that 2nd hash key breaks routeProvider parameters cutting so that the URL will not match with
|
2014-08-18 17:40:05 +02:00
|
|
|
// the previous '/room/:room_id_or_alias' URL rule
|
2014-09-02 15:12:51 +02:00
|
|
|
templateUrl: 'room/room.html'
|
2014-08-18 17:11:08 +02:00
|
|
|
}).
|
2014-08-25 11:35:33 +02:00
|
|
|
when('/', {
|
2014-09-02 15:12:51 +02:00
|
|
|
templateUrl: 'home/home.html'
|
2014-08-12 16:10:52 +02:00
|
|
|
}).
|
2014-08-22 17:11:39 +02:00
|
|
|
when('/settings', {
|
2014-09-02 15:12:51 +02:00
|
|
|
templateUrl: 'settings/settings.html'
|
2014-08-22 17:11:39 +02:00
|
|
|
}).
|
2014-08-18 18:05:42 +02:00
|
|
|
when('/user/:user_matrix_id', {
|
2014-09-02 15:12:51 +02:00
|
|
|
templateUrl: 'user/user.html'
|
2014-08-18 18:05:42 +02:00
|
|
|
}).
|
2014-08-12 16:10:52 +02:00
|
|
|
otherwise({
|
2014-08-25 11:35:33 +02:00
|
|
|
redirectTo: '/'
|
2014-08-12 16:10:52 +02:00
|
|
|
});
|
2014-08-14 16:21:39 +02:00
|
|
|
|
2014-08-14 16:36:40 +02:00
|
|
|
$provide.factory('AccessTokenInterceptor', ['$q', '$rootScope',
|
|
|
|
function ($q, $rootScope) {
|
2014-08-14 16:21:39 +02:00
|
|
|
return {
|
|
|
|
responseError: function(rejection) {
|
|
|
|
if (rejection.status === 403 && "data" in rejection &&
|
|
|
|
"errcode" in rejection.data &&
|
|
|
|
rejection.data.errcode === "M_UNKNOWN_TOKEN") {
|
2014-08-14 16:36:40 +02:00
|
|
|
console.log("Got a 403 with an unknown token. Logging out.")
|
|
|
|
$rootScope.$broadcast("M_UNKNOWN_TOKEN");
|
2014-08-14 16:21:39 +02:00
|
|
|
}
|
|
|
|
return $q.reject(rejection);
|
|
|
|
}
|
|
|
|
};
|
2014-08-14 16:36:40 +02:00
|
|
|
}]);
|
2014-08-14 16:21:39 +02:00
|
|
|
$httpProvider.interceptors.push('AccessTokenInterceptor');
|
2014-08-12 16:10:52 +02:00
|
|
|
}]);
|
|
|
|
|
2014-08-28 11:04:01 +02:00
|
|
|
matrixWebClient.run(['$location', 'matrixService', function($location, matrixService) {
|
|
|
|
|
2014-08-18 10:44:29 +02:00
|
|
|
// If user auth details are not in cache, go to the login page
|
2014-08-31 01:40:42 +02:00
|
|
|
if (!matrixService.isUserLoggedIn() &&
|
|
|
|
$location.path() !== "/login" &&
|
|
|
|
$location.path() !== "/register")
|
|
|
|
{
|
2014-08-12 16:10:52 +02:00
|
|
|
$location.path("login");
|
|
|
|
}
|
2014-08-28 11:04:01 +02:00
|
|
|
|
2014-08-12 16:10:52 +02:00
|
|
|
}]);
|