summaryrefslogtreecommitdiffstats
path: root/java/coldfusion/src
diff options
context:
space:
mode:
authorEmmanuel Raviart <eraviart@entrouvert.com>2004-09-08 00:44:52 +0000
committerEmmanuel Raviart <eraviart@entrouvert.com>2004-09-08 00:44:52 +0000
commit5b7353c5f8cc2545aea69b49d2df6c6a32ea03a1 (patch)
treebd6adb63263f59e8de92a3e3357332bcb7d1caad /java/coldfusion/src
parentfd9574d0becacec6e0b85e0b7af842cfd3a71592 (diff)
downloadlasso-5b7353c5f8cc2545aea69b49d2df6c6a32ea03a1.tar.gz
lasso-5b7353c5f8cc2545aea69b49d2df6c6a32ea03a1.tar.xz
lasso-5b7353c5f8cc2545aea69b49d2df6c6a32ea03a1.zip
Restructured ColdFusion code. Added single logout code. Both single sign-on
and single logout work.
Diffstat (limited to 'java/coldfusion/src')
-rw-r--r--java/coldfusion/src/CFLassoSingleLogout.java98
-rw-r--r--java/coldfusion/src/CFLassoSingleSignOn.java (renamed from java/coldfusion/src/CFLasso.java)35
2 files changed, 118 insertions, 15 deletions
diff --git a/java/coldfusion/src/CFLassoSingleLogout.java b/java/coldfusion/src/CFLassoSingleLogout.java
new file mode 100644
index 00000000..588c97dd
--- /dev/null
+++ b/java/coldfusion/src/CFLassoSingleLogout.java
@@ -0,0 +1,98 @@
+/*
+ * ColdFusionLasso -- ColdFusion bindings for Lasso library
+ *
+ * Copyright (C) 2004 Entr'ouvert
+ * http://lasso.entrouvert.org
+ *
+ * Authors: Emmanuel Raviart <eraviart@entrouvert.com>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ */
+
+
+import com.entrouvert.lasso.AuthnRequest;
+import com.entrouvert.lasso.Identity;
+import com.entrouvert.lasso.lassoConstants;
+import com.entrouvert.lasso.lasso;
+import com.entrouvert.lasso.Logout;
+import com.entrouvert.lasso.Server;
+import com.entrouvert.lasso.Session;
+
+
+public class CFLassoSingleLogout {
+ /* A simple service provider single logout */
+
+ protected Logout logout = null;
+ protected Server server = null;
+
+ public String idpProviderId = null;
+
+ public void buildRequestMsg() {
+ logout.buildRequestMsg();
+ }
+
+ public void configure(String metadataPath, String publicKeyPath, String privateKeyPath,
+ String idpProviderId, String idpMetadataPath, String idpPublicKeyPath) {
+ server = new Server(metadataPath, publicKeyPath, privateKeyPath, null,
+ lassoConstants.signatureMethodRsaSha1);
+ this.idpProviderId = idpProviderId;
+ server.addProvider(idpMetadataPath, idpPublicKeyPath, null);
+ logout = new Logout(server, lassoConstants.providerTypeSp);
+ }
+
+ public String getIdentityDump() {
+ Identity identity = logout.getIdentity();
+ if (identity != null)
+ return identity.dump();
+ else
+ return null;
+ }
+
+ public String getMsgBody() {
+ return logout.getMsgBody();
+ }
+
+ public String getMsgUrl() {
+ return logout.getMsgUrl();
+ }
+
+ public String getNameIdentifier() {
+ return logout.getNameIdentifier();
+ }
+
+ public String getSessionDump() {
+ Session session = logout.getSession();
+ if (session != null)
+ return session.dump();
+ else
+ return null;
+ }
+
+ public void initRequest() {
+ logout.initRequest(idpProviderId, lassoConstants.httpMethodAny);
+ }
+
+ public void processResponseMsg(String responseMsg) {
+ logout.processResponseMsg(responseMsg, lassoConstants.httpMethodSoap);
+ }
+
+ public void setIdentityFromDump(String identityDump) {
+ logout.setIdentityFromDump(identityDump);
+ }
+
+ public void setSessionFromDump(String sessionDump) {
+ logout.setSessionFromDump(sessionDump);
+ }
+}
diff --git a/java/coldfusion/src/CFLasso.java b/java/coldfusion/src/CFLassoSingleSignOn.java
index 9233379c..cfcff127 100644
--- a/java/coldfusion/src/CFLasso.java
+++ b/java/coldfusion/src/CFLassoSingleSignOn.java
@@ -26,14 +26,14 @@
* Simple wrapper for JLasso, to ease its use by ColdFusion applications.
*
* To compile it:
- * $ javac -classpath ../../lasso.jar CFLasso.java
+ * $ javac -classpath ../../lasso.jar *.java
*
* To test it:
* $ export LD_LIBRARY_PATH=../../.libs/
- * $ java -classpath ../../lasso.jar:. CFLasso
+ * $ java -classpath ../../lasso.jar:. CFLassoLogin
*
* To use it:
- * $ jar cf CFLasso.jar CFLasso.class
+ * $ jar cf CFLasso.jar *.class
* edit ColdFusion file bin/jvm.config:
* - Add libjlasso.so directory to java.library.path variable.
* - Add lasso.jar & CFLasso.jar to java.class.path variable.
@@ -48,8 +48,8 @@ import com.entrouvert.lasso.Server;
import com.entrouvert.lasso.Session;
-public class CFLasso {
- /* A simple service provider */
+public class CFLassoSingleSignOn {
+ /* A simple service provider single sign-on */
protected Login login = null;
protected Server server = null;
@@ -60,9 +60,11 @@ public class CFLasso {
login.acceptSso();
}
- public void assertionConsumer(String queryString) {
- login = new Login(server);
- login.initRequest(queryString, lassoConstants.httpMethodRedirect);
+ public void buildAuthnRequestMsg() {
+ login.buildAuthnRequestMsg(idpProviderId);
+ }
+
+ public void buildRequestMsg() {
login.buildRequestMsg();
}
@@ -72,6 +74,7 @@ public class CFLasso {
lassoConstants.signatureMethodRsaSha1);
this.idpProviderId = idpProviderId;
server.addProvider(idpMetadataPath, idpPublicKeyPath, null);
+ login = new Login(server);
}
public String getIdentityDump() {
@@ -106,11 +109,10 @@ public class CFLasso {
return null;
}
- public String login(String relayState) {
+ public void initAuthnRequest(String relayState) {
AuthnRequest authnRequest;
String authnRequestUrl;
- login = new Login(server);
login.initAuthnRequest(lassoConstants.httpMethodRedirect);
authnRequest = login.getAuthnRequest();
authnRequest.setIsPassive(false);
@@ -118,20 +120,23 @@ public class CFLasso {
authnRequest.setConsent(lassoConstants.libConsentObtained);
if (relayState != null)
authnRequest.setRelayState(relayState);
- login.buildAuthnRequestMsg(idpProviderId);
- authnRequestUrl = login.getMsgUrl();
- return authnRequestUrl;
+ }
+
+ public void initRequest(String queryString) {
+ login.initRequest(queryString, lassoConstants.httpMethodRedirect);
}
static public void main(String [] args) {
- CFLasso lasso = new CFLasso();
+ CFLassoSingleSignOn lasso = new CFLassoSingleSignOn();
lasso.configure("../../../tests/data/sp2-la/metadata.xml",
"../../../tests/data/sp2-la/public-key.pem",
"../../../tests/data/sp2-la/private-key-raw.pem",
"https://idp2/metadata",
"../../../tests/data/idp2-la/metadata.xml",
"../../../tests/data/idp2-la/public-key.pem");
- String ssoUrl = lasso.login("data to get back");
+ lasso.initAuthnRequest("data-to-get-back");
+ lasso.buildAuthnRequestMsg();
+ String ssoUrl = lasso.getMsgUrl();
System.out.println("Test");
System.out.print("Identity provider single sign-on URL = ");
System.out.println(ssoUrl);