From 15b7e07218fffe571e68efe755983b246a1ab8b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ale=C5=A1=20Smodi=C5=A1?= Date: Mon, 9 Nov 2015 11:34:16 +0100 Subject: Change all remaining "Shibboleth.sso" paths to "saml". --- saml/saml.js | 12 ++++++------ web/main.js | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/saml/saml.js b/saml/saml.js index 59b16fc..1336624 100644 --- a/saml/saml.js +++ b/saml/saml.js @@ -465,8 +465,8 @@ var handleLogoutRequest = function (xml, form, res) { // SAML web request handlers // ================================================================================ -// redirect to login at IdP, https://codeq.si/Shibboleth.sso/Login -http_app.get('/Shibboleth.sso/Login', function (req, res) { +// redirect to login at IdP, https://codeq.si/saml/Login +http_app.get('/saml/Login', function (req, res) { var sid = req.query.sid, responded = false, // don't respond if we already responded (and failed) waiter, requestId, request; @@ -529,8 +529,8 @@ http_app.get('/Shibboleth.sso/Login', function (req, res) { } }); -// redirect to logout at IdP, https://codeq.si/Shibboleth.sso/Logout -http_app.get('/Shibboleth.sso/Logout', function (req, res) { +// redirect to logout at IdP, https://codeq.si/saml/Logout +http_app.get('/saml/Logout', function (req, res) { var sid = req.query.sid, responded = false, waiter, requestId, request; @@ -771,7 +771,7 @@ http_app.get('/saml/slo', function (req, res) { // Web API handlers // ================================================================================ -http_app.get('/Shibboleth.sso/WaitLogin', function (req, res) { +http_app.get('/saml/WaitLogin', function (req, res) { var sid = req.query.sid, waiter; if (!sid) { @@ -790,7 +790,7 @@ http_app.get('/Shibboleth.sso/WaitLogin', function (req, res) { }).done(); }); -http_app.get('/Shibboleth.sso/WaitLogout', function (req, res) { +http_app.get('/saml/WaitLogout', function (req, res) { var sid = req.query.sid, saml = req.query.saml, waiter, samlData; diff --git a/web/main.js b/web/main.js index c0896b8..799ba3d 100644 --- a/web/main.js +++ b/web/main.js @@ -10,7 +10,7 @@ var engine = require('engine.io'), // web sockets communication handler, sitting express = require('express'), // library providing the Express web framework http_app = express(); // web framework engine, sitting on the low-level HTTP handler -var SAML_SERVICE_URL = process.env.CODEQ_SAML_SERVICE_URL || 'https://codeq.si/Shibboleth.sso/'; +var SAML_SERVICE_URL = process.env.CODEQ_SAML_SERVICE_URL || 'https://codeq.si/saml/'; var samlUrlParsed = url.parse(SAML_SERVICE_URL), samlIsHttps = samlUrlParsed.protocol === 'https:'; -- cgit v1.2.1