mirror of
https://github.com/moodle/moodle.git
synced 2025-01-18 22:08:20 +01:00
1fcf0ca8a5
dirname() is a slow function compared with __DIR__ and using '/../'. Moodle has a large number of legacy files that are included each time a page loads and is not able to use an autoloader as it is functional code. This allows those required includes to perform as best as possible in this situation.
38 lines
1.2 KiB
PHP
38 lines
1.2 KiB
PHP
<?php
|
|
|
|
require(__DIR__.'/../../config.php');
|
|
|
|
//HTTPS is required in this page when $CFG->loginhttps enabled
|
|
$PAGE->https_required();
|
|
|
|
$PAGE->set_url('/auth/ldap/ntlmsso_finish.php');
|
|
$PAGE->set_context(context_system::instance());
|
|
|
|
// Define variables used in page
|
|
$site = get_site();
|
|
|
|
$authsequence = get_enabled_auth_plugins(true); // auths, in sequence
|
|
if (!in_array('ldap', $authsequence, true)) {
|
|
print_error('ldap_isdisabled', 'auth');
|
|
}
|
|
|
|
$authplugin = get_auth_plugin('ldap');
|
|
if (empty($authplugin->config->ntlmsso_enabled)) {
|
|
print_error('ntlmsso_isdisabled', 'auth_ldap');
|
|
}
|
|
|
|
// If ntlmsso_finish() succeeds, then the code never returns,
|
|
// so we only worry about failure.
|
|
if (!$authplugin->ntlmsso_finish()) {
|
|
// Redirect to login, saying "don't try again!"
|
|
// Display the page header. This makes redirect respect the timeout we specify
|
|
// here (and not add 3 more secs).
|
|
$loginsite = get_string("loginsite");
|
|
$PAGE->navbar->add($loginsite);
|
|
$PAGE->set_title("$site->fullname: $loginsite");
|
|
$PAGE->set_heading($site->fullname);
|
|
echo $OUTPUT->header();
|
|
redirect($CFG->httpswwwroot . '/login/index.php?authldap_skipntlmsso=1',
|
|
get_string('ntlmsso_failed','auth_ldap'), 3);
|
|
}
|