diff options
Diffstat (limited to 'id/server/modules')
3 files changed, 7 insertions, 7 deletions
| diff --git a/id/server/modules/moa-id-module-eIDAS/src/main/java/at/gv/egovernment/moa/id/protocols/eidas/EIDASProtocol.java b/id/server/modules/moa-id-module-eIDAS/src/main/java/at/gv/egovernment/moa/id/protocols/eidas/EIDASProtocol.java index 13e64cdd0..aefae939b 100644 --- a/id/server/modules/moa-id-module-eIDAS/src/main/java/at/gv/egovernment/moa/id/protocols/eidas/EIDASProtocol.java +++ b/id/server/modules/moa-id-module-eIDAS/src/main/java/at/gv/egovernment/moa/id/protocols/eidas/EIDASProtocol.java @@ -36,7 +36,6 @@ import org.opensaml.saml2.core.StatusCode;  import org.opensaml.saml2.metadata.AssertionConsumerService;  import org.opensaml.saml2.metadata.EntityDescriptor;  import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.http.MediaType;  import org.springframework.stereotype.Controller;  import org.springframework.web.bind.annotation.RequestMapping;  import org.springframework.web.bind.annotation.RequestMethod; @@ -51,6 +50,7 @@ import at.gv.egovernment.moa.id.auth.modules.eidas.exceptions.EIDASAuthnRequestV  import at.gv.egovernment.moa.id.auth.modules.eidas.exceptions.EIDASException;  import at.gv.egovernment.moa.id.auth.modules.eidas.utils.SAMLEngineUtils;  import at.gv.egovernment.moa.id.commons.MOAIDAuthConstants; +import at.gv.egovernment.moa.id.commons.MOAIDConstants;  import at.gv.egovernment.moa.id.commons.api.IOAAuthParameters;  import at.gv.egovernment.moa.id.commons.api.IRequest;  import at.gv.egovernment.moa.id.commons.api.exceptions.MOAIDException; @@ -367,7 +367,7 @@ public class EIDASProtocol extends AbstractAuthProtocolModulController {          		String token = EidasStringUtil.encodeToBase64(eIDASRespMsg.getMessageBytes());                  VelocityEngine velocityEngine = VelocityProvider.getClassPathVelocityEngine(); -                Template template = velocityEngine.getTemplate("/resources/templates/stork2_postbinding_template.html"); +                Template template = velocityEngine.getTemplate("/resources/templates/eidas_postbinding_template.vm");                  VelocityContext context = new VelocityContext();                  context.put("RelayState", eidasReq.getRemoteRelayState()); @@ -387,7 +387,7 @@ public class EIDASProtocol extends AbstractAuthProtocolModulController {                  Logger.trace("Sending html content  : " + new String(writer.getBuffer()));                  byte[] content = writer.getBuffer().toString().getBytes("UTF-8");              -                response.setContentType(MediaType.TEXT_HTML.getType()); +                response.setContentType(MOAIDConstants.DEFAULT_CONTENT_TYPE_HTML_UTF8);                  response.setContentLength(content.length);                  response.getOutputStream().write(content); diff --git a/id/server/modules/moa-id-module-eIDAS/src/main/java/at/gv/egovernment/moa/id/protocols/eidas/eIDASAuthenticationRequest.java b/id/server/modules/moa-id-module-eIDAS/src/main/java/at/gv/egovernment/moa/id/protocols/eidas/eIDASAuthenticationRequest.java index 22ac37604..97241af6a 100644 --- a/id/server/modules/moa-id-module-eIDAS/src/main/java/at/gv/egovernment/moa/id/protocols/eidas/eIDASAuthenticationRequest.java +++ b/id/server/modules/moa-id-module-eIDAS/src/main/java/at/gv/egovernment/moa/id/protocols/eidas/eIDASAuthenticationRequest.java @@ -34,7 +34,6 @@ import org.apache.velocity.VelocityContext;  import org.apache.velocity.app.VelocityEngine;  import org.opensaml.saml2.core.StatusCode;  import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.http.MediaType;  import org.springframework.stereotype.Service;  import com.google.common.collect.ImmutableSet; @@ -44,6 +43,7 @@ import at.gv.egovernment.moa.id.auth.frontend.velocity.VelocityProvider;  import at.gv.egovernment.moa.id.auth.modules.eidas.Constants;  import at.gv.egovernment.moa.id.auth.modules.eidas.engine.MOAeIDASChainingMetadataProvider;  import at.gv.egovernment.moa.id.auth.modules.eidas.utils.SimpleEidasAttributeGenerator; +import at.gv.egovernment.moa.id.commons.MOAIDConstants;  import at.gv.egovernment.moa.id.commons.api.IRequest;  import at.gv.egovernment.moa.id.commons.api.exceptions.MOAIDException;  import at.gv.egovernment.moa.id.data.IAuthData; @@ -233,7 +233,7 @@ public class eIDASAuthenticationRequest implements IAction {  		// send the response          try {              VelocityEngine velocityEngine = VelocityProvider.getClassPathVelocityEngine(); -            Template template = velocityEngine.getTemplate("/resources/templates/stork2_postbinding_template.html"); +            Template template = velocityEngine.getTemplate("/resources/templates/eidas_postbinding_template.vm");              VelocityContext context = new VelocityContext();              context.put("RelayState", eidasRequest.getRemoteRelayState()); @@ -253,7 +253,7 @@ public class eIDASAuthenticationRequest implements IAction {              Logger.trace("Sending html content  : " + new String(writer.getBuffer()));              byte[] content = writer.getBuffer().toString().getBytes("UTF-8"); -            httpResp.setContentType(MediaType.TEXT_HTML.getType()); +            httpResp.setContentType(MOAIDConstants.DEFAULT_CONTENT_TYPE_HTML_UTF8);              httpResp.setContentLength(content.length);              httpResp.getOutputStream().write(content); diff --git a/id/server/modules/moa-id-module-eIDAS/src/main/resources/resources/templates/eidas_postbinding_template.vm b/id/server/modules/moa-id-module-eIDAS/src/main/resources/resources/templates/eidas_postbinding_template.vm index 3bd225b00..0535d48b6 100644 --- a/id/server/modules/moa-id-module-eIDAS/src/main/resources/resources/templates/eidas_postbinding_template.vm +++ b/id/server/modules/moa-id-module-eIDAS/src/main/resources/resources/templates/eidas_postbinding_template.vm @@ -7,7 +7,7 @@  ## SAMLRequest - String - the Base64 encoded SAML Request  ## SAMLResponse - String - the Base64 encoded SAML Response  ## Contains target attribute to delegate PEPS authentication out of iFrame - +<!DOCTYPE html>  <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">  		<head>  			<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> | 
