blob: 38fbad7ec8981c279334fc261dd8786e147c4ee4 [file]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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
*
* https://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.
*/
$(function() {
var buttons = {};
buttons[cancelButtonCaption] = function() {
$(this).dialog('close');
};
buttons[loginButtonCaption] = function() {
$('#loginForm').submit();
};
$("#loginFormContainer").dialog({
autoOpen: false,
height: 450,
width: 450,
modal: true,
buttons: buttons
});
$('#loginForm').bind('submit', function() {
$(this).ajaxSubmit({
target: '#loginMessage',
beforeSubmit: function() {
$('#loginMessage').html(loggingYouIn);
return true;
},
success: function(json) {
if (json.success) {
if (json.url) {
document.location = json.url;
}
else {
$('#loginFormContainer').dialog('close');
$('#loginLinkContainer').html(
loggedInAsWithPlaceholder.replace(/\{0\}/, json.username) +
' (<a href="' + $("#_logout").attr("href") + '" id="logout">Logout</a>)');
$("#logout").click(logout);
}
}
else if (json.error) {
$('#loginMessage').html("<span class='errorMessage'>" + json.error + '</error>');
}
else {
$('#loginMessage').html(responseText);
}
},
dataType: 'json'
});
return false;
});
$('#loginLink').click(function() {
$('#loginFormContainer').show().dialog('open');
$('#ajaxUsername').focus();
});
$("#logout").click(logout);
});
function logout(event) {
event.preventDefault();
$.ajax({
url: $("#_logout").attr("href"),
method: "post",
success: function(data, textStatus, jqXHR) {
window.location = $("#_afterLogout").attr("href");
},
error: function(jqXHR, textStatus, errorThrown) {
console.log("Logout error, textStatus: " + textStatus + ", errorThrown: " + errorThrown);
}
});
}