2014-08-31 19:42:03 -04:00
|
|
|
/*
|
2014-09-03 12:29:13 -04:00
|
|
|
Copyright 2014 OpenMarket Ltd
|
2014-08-31 19:42:03 -04: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 10:10:52 -04:00
|
|
|
angular.module('LoginController', ['matrixService'])
|
2014-09-03 13:23:56 -04:00
|
|
|
.controller('LoginController', ['$scope', '$rootScope', '$location', 'matrixService', 'eventStreamService',
|
|
|
|
function($scope, $rootScope, $location, matrixService, eventStreamService) {
|
2014-08-12 10:10:52 -04:00
|
|
|
'use strict';
|
|
|
|
|
2014-08-14 08:57:55 -04:00
|
|
|
|
|
|
|
// Assume that this is hosted on the home server, in which case the URL
|
|
|
|
// contains the home server.
|
|
|
|
var hs_url = $location.protocol() + "://" + $location.host();
|
2014-08-31 10:38:27 -04:00
|
|
|
if ($location.port() &&
|
|
|
|
!($location.protocol() === "http" && $location.port() === 80) &&
|
|
|
|
!($location.protocol() === "https" && $location.port() === 443))
|
|
|
|
{
|
2014-08-14 08:57:55 -04:00
|
|
|
hs_url += ":" + $location.port();
|
|
|
|
}
|
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
$scope.account = {
|
2014-08-14 08:57:55 -04:00
|
|
|
homeserver: hs_url,
|
2014-08-12 10:10:52 -04:00
|
|
|
desired_user_name: "",
|
|
|
|
user_id: "",
|
|
|
|
password: "",
|
2014-08-30 19:40:42 -04:00
|
|
|
identityServer: "http://matrix.org:8090",
|
2014-08-12 10:10:52 -04:00
|
|
|
pwd1: "",
|
2014-08-30 19:40:42 -04:00
|
|
|
pwd2: "",
|
2014-08-12 10:10:52 -04:00
|
|
|
};
|
2014-08-30 19:40:42 -04:00
|
|
|
|
|
|
|
$scope.login_types = [ "email", "mxid" ];
|
|
|
|
$scope.login_type_label = {
|
|
|
|
"email": "Email address",
|
|
|
|
"mxid": "Matrix ID (e.g. @bob:matrix.org or bob)",
|
2014-08-12 10:10:52 -04:00
|
|
|
};
|
2014-08-30 19:40:42 -04:00
|
|
|
$scope.login_type = 'mxid'; // TODO: remember the user's preferred login_type
|
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
$scope.login = function() {
|
2014-09-03 13:23:56 -04:00
|
|
|
matrixService.setConfig({
|
|
|
|
homeserver: $scope.account.homeserver,
|
|
|
|
identityServer: $scope.account.identityServer,
|
|
|
|
});
|
|
|
|
switch ($scope.login_type) {
|
|
|
|
case 'mxid':
|
|
|
|
$scope.login_with_mxid($scope.account.user_id, $scope.account.password);
|
|
|
|
break;
|
|
|
|
case 'email':
|
|
|
|
matrixService.lookup3pid('email', $scope.account.user_id).then(
|
|
|
|
function(response) {
|
|
|
|
if (response.data['address'] == undefined) {
|
|
|
|
$scope.login_error_msg = "Invalid email address / password";
|
|
|
|
} else {
|
|
|
|
console.log("Got address "+response.data['mxid']+" for email "+$scope.account.user_id);
|
|
|
|
$scope.login_with_mxid(response.data['mxid'], $scope.account.password);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
function() {
|
|
|
|
$scope.login_error_msg = "Couldn't look up email address. Is your identity server set correctly?";
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
$scope.login_with_mxid = function(mxid, password) {
|
2014-08-12 10:10:52 -04:00
|
|
|
matrixService.setConfig({
|
|
|
|
homeserver: $scope.account.homeserver,
|
2014-08-22 05:34:27 -04:00
|
|
|
identityServer: $scope.account.identityServer,
|
2014-08-12 10:10:52 -04:00
|
|
|
user_id: $scope.account.user_id
|
|
|
|
});
|
|
|
|
// try to login
|
2014-09-03 13:23:56 -04:00
|
|
|
matrixService.login(mxid, password).then(
|
2014-08-12 10:10:52 -04:00
|
|
|
function(response) {
|
2014-08-14 10:43:16 -04:00
|
|
|
if ("access_token" in response.data) {
|
2014-08-12 10:10:52 -04:00
|
|
|
$scope.feedback = "Login successful.";
|
|
|
|
matrixService.setConfig({
|
|
|
|
homeserver: $scope.account.homeserver,
|
2014-08-22 05:34:27 -04:00
|
|
|
identityServer: $scope.account.identityServer,
|
2014-08-14 11:40:15 -04:00
|
|
|
user_id: response.data.user_id,
|
2014-08-14 10:36:40 -04:00
|
|
|
access_token: response.data.access_token
|
2014-08-12 10:10:52 -04:00
|
|
|
});
|
|
|
|
matrixService.saveConfig();
|
2014-09-03 13:23:56 -04:00
|
|
|
$rootScope.updateHeader();
|
2014-08-15 08:43:07 -04:00
|
|
|
eventStreamService.resume();
|
2014-08-22 12:08:03 -04:00
|
|
|
$location.url("home");
|
2014-08-12 10:10:52 -04:00
|
|
|
}
|
|
|
|
else {
|
2014-08-14 10:43:16 -04:00
|
|
|
$scope.feedback = "Failed to login: " + JSON.stringify(response.data);
|
2014-08-12 10:10:52 -04:00
|
|
|
}
|
2014-08-14 10:36:40 -04:00
|
|
|
},
|
|
|
|
function(error) {
|
2014-08-14 11:03:04 -04:00
|
|
|
if (error.data) {
|
|
|
|
if (error.data.errcode === "M_FORBIDDEN") {
|
|
|
|
$scope.login_error_msg = "Incorrect username or password.";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (error.status === 0) {
|
|
|
|
$scope.login_error_msg = "Unable to talk to the server.";
|
2014-08-14 10:36:40 -04:00
|
|
|
}
|
2014-08-12 10:10:52 -04:00
|
|
|
}
|
|
|
|
);
|
|
|
|
};
|
|
|
|
}]);
|
|
|
|
|