HttpStoreCache.java
- /*
- * GovWay - A customizable API Gateway
- * https://govway.org
- *
- * Copyright (c) 2005-2025 Link.it srl (https://link.it).
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 3, as published by
- * the Free Software Foundation.
- *
- * 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, see <http://www.gnu.org/licenses/>.
- *
- */
- package org.openspcoop2.security.keystore.cache;
- import java.util.List;
- import org.openspcoop2.security.SecurityException;
- import org.openspcoop2.security.keystore.CRLCertstore;
- import org.openspcoop2.security.keystore.HttpStore;
- import org.openspcoop2.security.keystore.MerlinTruststore;
- import org.openspcoop2.utils.transport.http.HttpOptions;
- /**
- * HttpStoreCache
- *
- * @author Andrea Poli (apoli@link.it)
- * @author $Author$
- * @version $Rev$, $Date$
- */
- public class HttpStoreCache extends AbstractKeystoreCache<HttpStore> {
- @Override
- public HttpStore createKeystore(String key, Object... params) throws SecurityException{
- if(params==null){
- throw new SecurityException("Params is null");
- }
- String endpoint = key;
- if(params.length==0){
- return new HttpStore(endpoint);
- }
- else if(params.length==1){
- if( ! (params[0] instanceof MerlinTruststore) && ! (params[0] instanceof Boolean) && ! (params[0] instanceof HttpOptions[]) && ! (params[0] instanceof List<?>) ){
- throw new SecurityException("Param[0] must be MerlinTruststore (trustStoreSsl) or Boolean (trustAll) or HttpOptions[] or List<HttpOptions>");
- }
- if(params[0] instanceof MerlinTruststore) {
- MerlinTruststore trustStoreSsl = (MerlinTruststore) params[0];
- return new HttpStore(endpoint, trustStoreSsl);
- }
- else if(params[0] instanceof Boolean) {
- Boolean trustAll = (Boolean) params[0];
- return new HttpStore(endpoint, trustAll);
- }
- else {
- if(params[0]!=null) {
- HttpOptions[] options = null;
- if(params[0] instanceof List) {
- List<?> l = (List<?>) params[0];
- if(!l.isEmpty()) {
- options = new HttpOptions[1];
- for (int i = 0; i < l.size(); i++) {
- Object o = l.get(i);
- if(o instanceof HttpOptions) {
- options[i] = (HttpOptions) o;
- }
- else {
- if(o == null) {
- throw new SecurityException("Param[0] with null element at position '"+i+"'");
- }
- else {
- throw new SecurityException("Param[0] with wrong type '"+o.getClass().getName()+"' at position '"+i+"'");
- }
- }
- }
- }
- }
- else {
- options = (HttpOptions[]) params[0];
- }
- return new HttpStore(endpoint, options);
- }
- else {
- return new HttpStore(endpoint);
- }
- }
- }
- else if(params.length==2){
- if( ! (params[0] instanceof MerlinTruststore) && ! (params[0] instanceof Boolean) && ! (params[0] instanceof Integer)){
- throw new SecurityException("Param[0] must be Integer (connectionTimeout) or MerlinTruststore (trustStoreSsl) or Boolean (trustAll)");
- }
- if(params[0] instanceof MerlinTruststore){
- if( ! (params[1] instanceof CRLCertstore) && ! (params[1] instanceof HttpOptions[]) && params[1]!=null ){
- throw new SecurityException("Param[1] must be CRLCertstore (crlStoreSsl) or HttpOptions[]");
- }
- MerlinTruststore trustStoreSsl = (MerlinTruststore) params[0];
- if(params[1] instanceof CRLCertstore) {
- CRLCertstore crlStoreSsl = (CRLCertstore) params[1];
- return new HttpStore(endpoint, trustStoreSsl, crlStoreSsl);
- }
- else {
- if(params[1]!=null ) {
- HttpOptions[] options = (HttpOptions[]) params[1];
- return new HttpStore(endpoint, trustStoreSsl, options);
- }
- else {
- return new HttpStore(endpoint, trustStoreSsl);
- }
- }
- }
- else if(params[0] instanceof Boolean){
- if( ! (params[1] instanceof HttpOptions[]) && params[1]!=null ){
- throw new SecurityException("Param[1] must be HttpOptions[]");
- }
- Boolean trustAll = (Boolean) params[0];
- if(params[1]!=null ) {
- HttpOptions[] options = (HttpOptions[]) params[1];
- return new HttpStore(endpoint, trustAll, options);
- }else {
- return new HttpStore(endpoint, trustAll);
- }
- }
- else {
- if( ! (params[1] instanceof Integer) ){
- throw new SecurityException("Param[1] must be Integer (readTimeout)");
- }
- Integer connectionTimeout = (Integer) params[0];
- Integer readTimeout = (Integer) params[1];
- return new HttpStore(endpoint, connectionTimeout, readTimeout);
- }
- }
- else if(params.length==3){
- if( ! (params[0] instanceof Integer)){
- throw new SecurityException("Param[0] must be Integer (connectionTimeout)");
- }
- if( ! (params[1] instanceof Integer) ){
- throw new SecurityException("Param[1] must be Integer (readTimeout)");
- }
- if( ! (params[2] instanceof MerlinTruststore) && ! (params[2] instanceof Boolean) && ! (params[2] instanceof HttpOptions[]) && params[2]!=null){
- throw new SecurityException("Param[2] must be MerlinTruststore (trustStoreSsl) or Boolean (trustAll) or HttpOptions[]");
- }
-
- Integer connectionTimeout = (Integer) params[0];
- Integer readTimeout = (Integer) params[1];
- if(params[2] instanceof MerlinTruststore){
- MerlinTruststore trustStoreSsl = (MerlinTruststore) params[2];
- return new HttpStore(endpoint,
- connectionTimeout, readTimeout,
- trustStoreSsl);
- }
- else if(params[2] instanceof Boolean){
- Boolean trustAll = (Boolean) params[2];
- return new HttpStore(endpoint,
- connectionTimeout, readTimeout,
- trustAll);
- }
- else {
- if(params[2]!=null ) {
- HttpOptions[] options = (HttpOptions[]) params[2];
- return new HttpStore(endpoint,
- connectionTimeout, readTimeout,
- options);
- }
- else {
- return new HttpStore(endpoint,
- connectionTimeout, readTimeout);
- }
- }
- }
- else if(params.length==4){
- if( ! (params[0] instanceof Integer)){
- throw new SecurityException("Param[0] must be Integer (connectionTimeout)");
- }
- if( ! (params[1] instanceof Integer) ){
- throw new SecurityException("Param[1] must be Integer (readTimeout)");
- }
- if( ! (params[2] instanceof MerlinTruststore) && ! (params[2] instanceof Boolean) ){
- throw new SecurityException("Param[2] must be MerlinTruststore (trustStoreSsl) or Boolean (trustAll)");
- }
- Integer connectionTimeout = (Integer) params[0];
- Integer readTimeout = (Integer) params[1];
-
- if( params[2] instanceof MerlinTruststore) {
- MerlinTruststore trustStoreSsl = (MerlinTruststore) params[2];
- if( ! (params[3] instanceof CRLCertstore) && ! (params[3] instanceof HttpOptions[]) && params[3]!=null ){
- throw new SecurityException("Param[3] must be CRLCertstore (crlStoreSsl) or HttpOptions[]");
- }
- if(params[3] instanceof CRLCertstore) {
- CRLCertstore crlStoreSsl = (CRLCertstore) params[3];
- return new HttpStore(endpoint,
- connectionTimeout, readTimeout,
- trustStoreSsl, crlStoreSsl);
- }
- else {
- if(params[3]!=null ) {
- HttpOptions[] options = (HttpOptions[]) params[3];
- return new HttpStore(endpoint,
- connectionTimeout, readTimeout,
- trustStoreSsl, options);
- }
- else {
- return new HttpStore(endpoint,
- connectionTimeout, readTimeout,
- trustStoreSsl);
- }
- }
- }
- else {
- Boolean trustAll = (Boolean) params[2];
- if( ! (params[3] instanceof HttpOptions[]) && params[3]!=null ){
- throw new SecurityException("Param[3] must be HttpOptions[]");
- }
- if(params[3]!=null ) {
- HttpOptions[] options = (HttpOptions[]) params[3];
- return new HttpStore(endpoint,
- connectionTimeout, readTimeout,
- trustAll, options);
- }
- else {
- return new HttpStore(endpoint,
- connectionTimeout, readTimeout,
- trustAll);
- }
- }
- }
- else if(params.length==5){
- if( ! (params[0] instanceof Integer)){
- throw new SecurityException("Param[0] must be Integer (connectionTimeout)");
- }
- if( ! (params[1] instanceof Integer) ){
- throw new SecurityException("Param[1] must be Integer (readTimeout)");
- }
- if( ! (params[2] instanceof MerlinTruststore) ){
- throw new SecurityException("Param[2] must be MerlinTruststore (trustStoreSsl)");
- }
- if( ! (params[3] instanceof CRLCertstore)){
- throw new SecurityException("Param[3] must be CRLCertstore (crlStoreSsl)");
- }
- if( ! (params[4] instanceof HttpOptions[]) && params[4]!=null ){
- throw new SecurityException("Param[4] must be HttpOptions[]");
- }
- Integer connectionTimeout = (Integer) params[0];
- Integer readTimeout = (Integer) params[1];
- MerlinTruststore trustStoreSsl = (MerlinTruststore) params[2];
- CRLCertstore crlStoreSsl = (CRLCertstore) params[3];
- if(params[4]!=null ) {
- HttpOptions[] options = (HttpOptions[]) params[4];
- return new HttpStore(endpoint,
- connectionTimeout, readTimeout,
- trustStoreSsl, crlStoreSsl,
- options);
- }
- else {
- return new HttpStore(endpoint,
- connectionTimeout, readTimeout,
- trustStoreSsl, crlStoreSsl);
- }
- }
- else{
- throw new SecurityException("Params [lenght:"+params.length+"] not supported");
- }
- }
- @Override
- public String getPrefixKey() {
- return "HttpStore ";
- }
- }