diff options
author | Stef Walter <stef@memberwebs.com> | 2010-02-11 18:49:02 +0000 |
---|---|---|
committer | Stef Walter <stef@memberwebs.com> | 2010-02-11 18:49:02 +0000 |
commit | 7e28539aada66fc5ff6bb090872cec9ff622384b (patch) | |
tree | 245388140ddfe1463b7d74f4d77b6986801b6e68 /module | |
parent | 66d1e1ddc1d20bed460d27c6a7c6c6dc792a279e (diff) |
Log errors returned from identity provider to log.
Diffstat (limited to 'module')
-rw-r--r-- | module/consumer.cc | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/module/consumer.cc b/module/consumer.cc index 3d1686c..24eea88 100644 --- a/module/consumer.cc +++ b/module/consumer.cc @@ -597,6 +597,18 @@ cancelled_auth (sid_request_t *req, Consumer &consumer, params_t ¶ms, const "<p><a href='", return_to.c_str(), "'>Retry login</a></p>", NULL); } +static void +failed_auth (sid_request_t *req, Consumer &consumer, params_t ¶ms, const string& return_to) +{ + string error; + + if (params.has_param("error")) + error = params.get_param("error"); + + sid_request_respond_headers (req, 500, "OpenID Authenticatior Error", NULL); + sid_request_log_error (req, "error from openid provider", error.c_str()); +} + extern "C" void sid_consumer_authenticate(sid_request_t *req, sid_storage_t *store, const char *trust_root, const char *identity, @@ -634,6 +646,10 @@ sid_consumer_authenticate(sid_request_t *req, sid_storage_t *store, if (openid.has_param("mode") && openid.get_param("mode") == "cancel") { cancelled_auth (req, consumer, openid, url); + /* Returning cancelled authentication */ + } else if (openid.has_param("mode") && openid.get_param("mode") == "error") { + failed_auth (req, consumer, openid, url); + /* Begin a new authentication */ } else { if (!trust_root) |