/* * GeoTools - The Open Source Java GIS Toolkit * http://geotools.org * * (C) 2002-2019, Open Source Geospatial Foundation (OSGeo) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; * version 2.1 of the License. * * This library 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 * Lesser General Public License for more details. */ package org.geotools.gce.pgraster; import com.google.common.annotations.VisibleForTesting; import java.io.Closeable; import java.io.File; import java.sql.SQLException; import java.util.Optional; import java.util.logging.Level; import java.util.logging.Logger; import javax.naming.NamingException; import javax.sql.DataSource; import javax.xml.parsers.DocumentBuilder; import javax.xml.parsers.DocumentBuilderFactory; import org.apache.commons.dbcp.BasicDataSource; import org.geotools.data.jdbc.datasource.DBCPDataSource; import org.geotools.util.factory.GeoTools; import org.geotools.util.logging.Logging; import org.w3c.dom.Document; import org.w3c.dom.Element; import org.w3c.dom.NodeList; /** * Configuration for a {@link PGRasterReader}. * *

Configuration is stored as XML with the following basic format: * *

 *     <pgraster>
 *       <name//>        // coverage name
 *       <database>     // database connection
 *         <host//>      // database host
 *         <port//>      // database port
 *         <name//>      // database name
 *         <user//>      // database username
 *         <pass//>      // database user password
 *       </database>
 *       <raster>       // raster column config
 *         <column//>      // column name
 *         <table//>     // table name
 *         <schema//>    // table schema
 *       </raster>
 *       <time>        // time column config
 *         <enabled//>  // enable / disable time
 *         <column//>     // column name
 *       </time>
 *     </pgraster>
 *   
*/ class PGRasterConfig implements Closeable { static final Logger LOG = Logging.getLogger(PGRasterConfig.class); String name; DataSource dataSource; String schema; String table; String column; String enableDrivers; TimeConfig time = new TimeConfig(); static Document parse(File cfgfile) { DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance(); DocumentBuilder db; try { db = dbf.newDocumentBuilder(); } catch (Exception e) { throw new RuntimeException("Error creating XML parser"); } try { return db.parse(cfgfile); } catch (Exception e) { throw new RuntimeException("Error parsing pgraster config", e); } } PGRasterConfig(File configFile) { this(parse(configFile)); } PGRasterConfig(Document config) { Element root = config.getDocumentElement(); if (!"pgraster".equalsIgnoreCase(root.getNodeName())) { throw new IllegalArgumentException( "Not a postgis raster configuration, root element must be 'pgraster'"); } this.name = first(root, "name").map(this::nodeValue).orElse(null); this.enableDrivers = first(root, "enableDrivers").map(this::nodeValue).orElse(null); Element db = first(config.getDocumentElement(), "database") .orElseThrow( () -> new IllegalArgumentException( "Config has no database element")); DataSource dataSource = null; String jndi = first(db, "jndi").map(this::nodeValue).orElse(null); if (jndi != null) { try { // BUG: CWE-20 Improper Input Validation // dataSource = (DataSource) GeoTools.getInitialContext().lookup(jndi); // FIXED: dataSource = (DataSource) GeoTools.jndiLookup(jndi); } catch (NamingException e) { throw new IllegalArgumentException("Error performing JNDI lookup for: " + jndi, e); } } if (dataSource == null) { BasicDataSource source = new BasicDataSource(); source.setDriverClassName("org.postgresql.Driver"); String host = first(db, "host").map(this::nodeValue).orElse("localhost"); Integer port = first(db, "port").map(this::nodeValue).map(Integer::parseInt).orElse(5432); String name = first(db, "name") .map(this::nodeValue) .orElseThrow( () -> new IllegalArgumentException( "database 'name' not specified")); source.setUrl("jdbc:postgresql://" + host + ":" + port + "/" + name); first(db, "user").map(this::nodeValue).ifPresent(source::setUsername); first(db, "passwd").map(this::nodeValue).ifPresent(source::setPassword); first(db, "pool") .ifPresent( p -> { first(p, "min") .map(this::nodeValue) .map(Integer::parseInt) .ifPresent(source::setMinIdle); first(p, "max") .map(this::nodeValue) .map(Integer::parseInt) .ifPresent(source::setMaxActive); }); dataSource = new PGRasterDataSource(source); } this.dataSource = dataSource; Element ras = first(config.getDocumentElement(), "raster") .orElseThrow( () -> new IllegalArgumentException( "Config has no 'raster' element")); this.schema = first(ras, "schema").map(this::nodeValue).orElse("public"); this.table = first(ras, "table") .map(this::nodeValue) .orElseThrow( () -> new IllegalArgumentException( "column must specify a 'table' element")); this.column = first(ras, "column").map(this::nodeValue).orElse(null); // time first(config.getDocumentElement(), "time") .ifPresent( el -> { first(el, "enabled") .map(this::nodeValue) .map(Boolean::parseBoolean) .ifPresent(it -> time.enabled = it); first(el, "column") .map(this::nodeValue) .ifPresent(it -> time.column = it); }); } @VisibleForTesting PGRasterConfig() {} Optional first(Element el, String name) { NodeList matches = el.getElementsByTagName(name); if (matches.getLength() > 0) { return Optional.of((Element) matches.item(0)); } return Optional.empty(); } String nodeValue(Element el) { return el.getFirstChild().getNodeValue(); } @Override public void close() { if (dataSource instanceof PGRasterDataSource) { try { ((PGRasterDataSource) dataSource).close(); } catch (SQLException e) { LOG.log(Level.WARNING, "Error closing data source", e); } } } static class TimeConfig { boolean enabled = true; String column; } static class PGRasterDataSource extends DBCPDataSource { PGRasterDataSource(BasicDataSource wrapped) { super(wrapped); } } }