lemonldap-ng/lemonldap-ng-portal/site/coffee/kerberos.coffee
2017-10-10 15:23:41 +00:00

19 lines
486 B
CoffeeScript

# Launch Kerberos request
$(document).ready ->
$.ajax portal + '?kerberos=1',
dataType: 'json'
# Called if browser can't find Kerberos ticket, will display
# PE_BADCREDENTIALS
statusCode:
401: () ->
$('#lform').submit()
# If request succeed cookie is set, posting form to get redirection
# or menu
success: (data) ->
$('#lform').submit()
# Case else, will display PE_BADCREDENTIALS or fallback to next auth
# backend
error: () ->
$('#lform').submit()