Merge branch 'simulate-shib' into 'master'
feat: Add optional REST Controller to simulate Shibboleth's session handler This pull requests adds an optional REST Controller to simulate a response that matches the exact JSON format of Shibboleth's session handler. Example: log in to https://test.my.wisc.edu. After completing login, visit https://test.my.wisc.edu/Shibboleth.sso/Session.json. This controller is not active by default; in order to add it, activate the Spring Profile named `edu.wisc.uwss.simulated-shibboleth`. Sample response for Amy Administrator: ``` { expiration: 480, client_address: "0:0:0:0:0:0:0:1", protocol: "urn:oasis:names:tc:SAML:2.0:protocol", identity_provider: "https://logintest.wisc.edu/idp/shibboleth", authn_instant: "2016-05-16T17:40:37.762", authncontext_class: "urn:oasis:names:tc:SAML:2.0:ac:classes:PasswordProtectedTransport", attributes: [ { name: "persistent-id", values: [ "https://logintest.wisc.edu/idp/shibboleth!https://fake.wisc.edu/shibboleth!thisis/fake/PE=" ] }, { name: "uid", values: [ "admin" ] }, { name: "pubcookie-user", values: [ "admin" ] }, { name: "wiscEduPVI", values: [ "UW000A000" ] } ] } ``` The idea for this came from a discussion with @levett. Also notify @timothy-vertein @andrew-petro See merge request !11
No related branches found
No related tags found
Showing
- uw-spring-security-sample-war/pom.xml 2 additions, 2 deletionsuw-spring-security-sample-war/pom.xml
- uw-spring-security-web/src/main/java/edu/wisc/uwss/web/shibboleth/Attribute.java 32 additions, 0 deletions...src/main/java/edu/wisc/uwss/web/shibboleth/Attribute.java
- uw-spring-security-web/src/main/java/edu/wisc/uwss/web/shibboleth/SimulatedResponse.java 74 additions, 0 deletions.../java/edu/wisc/uwss/web/shibboleth/SimulatedResponse.java
- uw-spring-security-web/src/main/java/edu/wisc/uwss/web/shibboleth/SimulatedShibbolethSessionController.java 36 additions, 0 deletions.../web/shibboleth/SimulatedShibbolethSessionController.java
Please register or sign in to comment