Try for better error reporting on LDAP fail

Sorry for all the commits on this - my local LDAP isn’t working and I can’t figure out why, so no easy way to test locally
This commit is contained in:
snipe 2017-10-16 06:46:33 -07:00
parent b107280b7b
commit bcf435f625

View file

@ -112,9 +112,10 @@ class SettingsController extends Controller
try { try {
$ldap_user = Ldap::findAndBindUserLdap($request->input('ldaptest_user'), $request->input('ldaptest_password')); $ldap_user = Ldap::findAndBindUserLdap($request->input('ldaptest_user'), $request->input('ldaptest_password'));
if ($ldap_user) { if ($ldap_user) {
return response()->json(['message' => 'It worked! '. $request->input('username').' successfully binded to LDAP.'], 200); \Log::debug('It worked! '. $request->input('ldaptest_user').' successfully binded to LDAP.');
return response()->json(['message' => 'It worked! '. $request->input('ldaptest_user').' successfully binded to LDAP.'], 200);
} }
return response()->json(['message' => 'Login Failed. '. $request->input('username').' successfully binded to LDAP.'], 400); return response()->json(['message' => 'Login Failed. '. $request->input('ldaptest_user').' successfully binded to LDAP.'], 400);
} catch (\Exception $e) { } catch (\Exception $e) {
\Log::debug('LDAP login failed'); \Log::debug('LDAP login failed');