synapse/webclient/login/login-controller.js

75 lines
2.7 KiB
JavaScript
Raw Normal View History

2014-08-12 14:10:52 +00:00
angular.module('LoginController', ['matrixService'])
.controller('LoginController', ['$scope', '$location', 'matrixService', 'eventStreamService',
function($scope, $location, matrixService, eventStreamService) {
2014-08-12 14:10:52 +00:00
'use strict';
// 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();
if ($location.port() &&
!($location.protocol() === "http" && $location.port() === 80) &&
!($location.protocol() === "https" && $location.port() === 443))
{
hs_url += ":" + $location.port();
}
var example_domain = $location.host();
2014-08-12 14:10:52 +00:00
$scope.account = {
homeserver: hs_url,
example_domain: example_domain,
2014-08-12 14:10:52 +00:00
desired_user_name: "",
user_id: "",
password: "",
identityServer: "http://matrix.org:8090",
2014-08-12 14:10:52 +00:00
pwd1: "",
pwd2: "",
2014-08-12 14:10:52 +00: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 14:10:52 +00:00
};
$scope.login_type = 'mxid'; // TODO: remember the user's preferred login_type
2014-08-12 14:10:52 +00:00
$scope.login = function() {
matrixService.setConfig({
homeserver: $scope.account.homeserver,
2014-08-22 09:34:27 +00:00
identityServer: $scope.account.identityServer,
2014-08-12 14:10:52 +00:00
user_id: $scope.account.user_id
});
// try to login
matrixService.login($scope.account.user_id, $scope.account.password).then(
function(response) {
if ("access_token" in response.data) {
2014-08-12 14:10:52 +00:00
$scope.feedback = "Login successful.";
matrixService.setConfig({
homeserver: $scope.account.homeserver,
2014-08-22 09:34:27 +00:00
identityServer: $scope.account.identityServer,
user_id: response.data.user_id,
access_token: response.data.access_token
2014-08-12 14:10:52 +00:00
});
matrixService.saveConfig();
eventStreamService.resume();
2014-08-22 16:08:03 +00:00
$location.url("home");
2014-08-12 14:10:52 +00:00
}
else {
$scope.feedback = "Failed to login: " + JSON.stringify(response.data);
2014-08-12 14:10:52 +00:00
}
},
function(error) {
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-12 14:10:52 +00:00
}
);
};
}]);