argos/dmp-backend/web/src/main/java/eu/eudat/logic/proxy/config/configloaders/DefaultConfigLoader.java

267 lines
9.6 KiB
Java
Raw Normal View History

2018-06-27 12:29:21 +02:00
package eu.eudat.logic.proxy.config.configloaders;
2018-02-09 16:54:41 +01:00
2019-11-13 16:32:55 +01:00
import com.fasterxml.jackson.databind.DeserializationFeature;
import com.fasterxml.jackson.databind.ObjectMapper;
2018-06-27 12:29:21 +02:00
import eu.eudat.logic.proxy.config.ExternalUrls;
2019-11-13 16:32:55 +01:00
import eu.eudat.logic.security.customproviders.ConfigurableProvider.entities.ConfigurableProviders;
import org.apache.poi.xwpf.usermodel.XWPFDocument;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
2018-02-09 16:54:41 +01:00
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.core.env.Environment;
import org.springframework.stereotype.Service;
import org.w3c.dom.Document;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
import org.xml.sax.SAXException;
2018-02-09 16:54:41 +01:00
2018-02-16 11:34:02 +01:00
import javax.xml.bind.JAXBContext;
import javax.xml.bind.Unmarshaller;
import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
import javax.xml.parsers.ParserConfigurationException;
import javax.xml.xpath.XPath;
import javax.xml.xpath.XPathConstants;
import javax.xml.xpath.XPathExpressionException;
import javax.xml.xpath.XPathFactory;
import java.io.*;
2021-09-28 13:15:50 +02:00
import java.util.*;
import java.util.stream.Collectors;
2018-02-09 16:54:41 +01:00
@Service("configLoader")
2021-09-28 13:15:50 +02:00
//@Profile("devel")
public class DefaultConfigLoader implements ConfigLoader {
private static final Logger logger = LoggerFactory.getLogger(DefaultConfigLoader.class);
2018-02-09 16:54:41 +01:00
private ExternalUrls externalUrls;
2019-11-08 16:49:33 +01:00
private List<String> rdaProperties;
private XWPFDocument document;
2019-11-13 16:32:55 +01:00
private ConfigurableProviders configurableProviders;
private Map<String, String> keyToSourceMap;
2018-02-09 16:54:41 +01:00
@Autowired
private Environment environment;
private void setExternalUrls() {
String fileUrl = this.environment.getProperty("configuration.externalUrls");
logger.info("Loaded also config file: " + fileUrl);
2018-02-09 16:54:41 +01:00
InputStream is = null;
try {
JAXBContext jaxbContext = JAXBContext.newInstance(ExternalUrls.class);
Unmarshaller jaxbUnmarshaller = jaxbContext.createUnmarshaller();
2021-09-28 13:15:50 +02:00
is = getStreamFromPath(fileUrl);
2018-02-09 16:54:41 +01:00
externalUrls = (ExternalUrls) jaxbUnmarshaller.unmarshal(is);
} catch (Exception ex) {
2021-09-28 13:15:50 +02:00
logger.error("Cannot find resource", ex);
2018-02-09 16:54:41 +01:00
} finally {
try {
if (is != null) is.close();
} catch (IOException | NullPointerException e) {
logger.warn("Warning: Could not close a stream after reading from file: " + fileUrl, e);
2018-02-09 16:54:41 +01:00
}
}
}
2019-11-08 16:49:33 +01:00
private void setRdaProperties() {
String filePath = environment.getProperty("configuration.rda");
2021-11-19 10:20:47 +01:00
logger.info("Loaded also config file: " + filePath);
2019-11-08 16:49:33 +01:00
BufferedReader reader;
List<String> rdaList = new LinkedList<>();
try {
reader = new BufferedReader(new InputStreamReader(getStreamFromPath(filePath)));
2019-11-08 16:49:33 +01:00
String line = reader.readLine();
while (line != null) {
rdaList.add(line);
line = reader.readLine();
}
reader.close();
} catch (IOException | NullPointerException e) {
logger.error(e.getMessage(), e);
2019-11-08 16:49:33 +01:00
}
rdaProperties = rdaList;
}
2018-02-09 16:54:41 +01:00
private void setDocument() {
String filePath = environment.getProperty("configuration.h2020template");
2021-11-19 10:20:47 +01:00
logger.info("Loaded also config file: " + filePath);
2019-11-13 16:32:55 +01:00
InputStream is = null;
try {
2021-09-28 13:15:50 +02:00
is = getStreamFromPath(filePath);
this.document = new XWPFDocument(is);
} catch (IOException | NullPointerException e) {
logger.error(e.getMessage(), e);
2019-11-13 16:32:55 +01:00
} finally {
try {
if (is != null) is.close();
} catch (IOException e) {
logger.warn("Warning: Could not close a stream after reading from file: " + filePath, e);
2019-11-13 16:32:55 +01:00
}
}
}
private void setConfigurableProviders() {
2019-11-13 16:32:55 +01:00
String filePath = environment.getProperty("configuration.configurable_login_providers");
2021-11-19 10:20:47 +01:00
logger.info("Loaded also config file: " + filePath);
2019-11-13 16:32:55 +01:00
InputStream is = null;
try {
2021-09-28 13:15:50 +02:00
is = getStreamFromPath(filePath);
ObjectMapper mapper = new ObjectMapper().configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false);
this.configurableProviders = mapper.readValue(is, ConfigurableProviders.class);
} catch (IOException | NullPointerException e) {
logger.error(e.getMessage(), e);
2019-11-13 16:32:55 +01:00
} finally {
try {
if (is != null) is.close();
} catch (IOException e) {
logger.warn("Warning: Could not close a stream after reading from file: " + filePath, e);
2019-11-13 16:32:55 +01:00
}
}
}
private void setKeyToSourceMap() {
String filePath = this.environment.getProperty("configuration.externalUrls");
logger.info("Loaded also config file: " + filePath);
Document doc = getXmlDocumentFromFilePath(filePath);
if (doc == null) {
this.keyToSourceMap = null;
return;
}
String xpathExpression = "//key";
Map<String, String> keysToSourceMap = new HashMap<>();
List<String> keys = getXmlValuesFromXPath(doc, xpathExpression);
keys = keys.stream().distinct().collect(Collectors.toList());
for (String key : keys) {
String sourceExpression = String.format("//urlConfig[key='%s']/label", key);
List<String> sources = getXmlValuesFromXPath(doc, sourceExpression);
if (sources.size() != 0) {
keysToSourceMap.put(key, sources.get(0));
}
}
this.keyToSourceMap = keysToSourceMap;
}
2018-02-09 16:54:41 +01:00
public ExternalUrls getExternalUrls() {
2021-09-28 13:15:50 +02:00
if (externalUrls == null) {
externalUrls = new ExternalUrls();
this.setExternalUrls();
} else {
while (externalUrls.getMaxresults() == null) {
try {
Thread.sleep(100L);
} catch (InterruptedException e) {
logger.error(e.getMessage(), e);
}
}
}
2018-02-09 16:54:41 +01:00
return externalUrls;
}
2019-11-08 16:49:33 +01:00
public List<String> getRdaProperties() {
2021-09-28 13:15:50 +02:00
if (rdaProperties == null) {
rdaProperties = new ArrayList<>();
this.setRdaProperties();
} else {
while (rdaProperties.size() == 0) {
try {
Thread.sleep(100L);
} catch (InterruptedException e) {
logger.error(e.getMessage(), e);
}
}
}
2019-11-08 16:49:33 +01:00
return rdaProperties;
}
public XWPFDocument getDocument() {
this.setDocument();
return document;
}
2019-11-13 16:32:55 +01:00
public ConfigurableProviders getConfigurableProviders() {
2021-09-28 13:15:50 +02:00
if (configurableProviders == null) {
configurableProviders = new ConfigurableProviders();
this.setConfigurableProviders();
} else {
while (configurableProviders.getProviders().size() == 0) {
try {
Thread.sleep(100L);
} catch (InterruptedException e) {
logger.error(e.getMessage(), e);
}
}
}
2019-11-13 16:32:55 +01:00
return configurableProviders;
}
public Map<String, String> getKeyToSourceMap() {
2021-09-28 13:15:50 +02:00
if (keyToSourceMap == null) {
keyToSourceMap = new HashMap<>();
this.setKeyToSourceMap();
} else {
while (keyToSourceMap.size() == 0) {
try {
Thread.sleep(100L);
} catch (InterruptedException e) {
logger.error(e.getMessage(), e);
}
}
}
return keyToSourceMap;
}
private Document getXmlDocumentFromFilePath(String filePath) {
InputStream is = null;
Document doc;
try {
2021-09-28 13:15:50 +02:00
is = getStreamFromPath(filePath);
DocumentBuilderFactory documentBuilderFactory = DocumentBuilderFactory.newInstance();
DocumentBuilder documentBuilder = documentBuilderFactory.newDocumentBuilder();
doc = documentBuilder.parse(is);
return doc;
} catch (IOException | ParserConfigurationException | SAXException | NullPointerException e) {
logger.error(e.getMessage(), e);
} finally {
try {
if (is != null) {
is.close();
}
} catch (IOException e) {
logger.warn("Warning: Could not close a stream after reading from file: " + filePath, e);
}
}
return null;
}
private List<String> getXmlValuesFromXPath(Document doc, String expression) {
XPath xPath = XPathFactory.newInstance().newXPath();
NodeList nodeList = null;
List<String> values = new LinkedList<>();
try {
nodeList = (NodeList) xPath.compile(expression).evaluate(doc, XPathConstants.NODESET);
} catch (XPathExpressionException e) {
logger.error(e.getMessage(), e);
}
if (nodeList != null) {
for (int i = 0; i < nodeList.getLength(); i++) {
Node node = nodeList.item(i);
if (node.hasChildNodes()) {
values.add(nodeList.item(i).getChildNodes().item(0).getNodeValue());
}
}
}
return values;
}
2021-09-28 13:15:50 +02:00
private InputStream getStreamFromPath(String filePath) {
try {
return new FileInputStream(filePath);
} catch (FileNotFoundException e) {
logger.info("loading from classpath");
return getClass().getClassLoader().getResourceAsStream(filePath);
}
}
2018-02-09 16:54:41 +01:00
}