* Add a step in CI for CVEs scanning
* Move the check for vulnerabilities on its own workflow
* Clean the clone job and comment accepted risk
* Add a badge for vulnerabilities clearance in the readme
* Add pygeofilter, unpin psycopg2
* Add pygeofilter SQLAlchemy query demo
* Add note about primary key
* Add todos to script
* Make script generic
* Add (commented out) PostgreSQL provider hotosm_bdi_waterways to config
* Update to use local test database
* Return result as dictionary
* Pass GEOM_FIELD as variable
* Add offset and limt, fix two names
* Implement order by
* Use function for cql query
* Add cql query block to query and test
* Link up to db engine
* Convert WKB geometry to GeoJSON
* Add shapely as explicit dependency
* Add tests for CQL queries
* Add test using CROSSES with LINESTRING
* Uncomment Docker PostGIS test layer
* First pass at wiring up API
The CQL is read from the request but the parser fails to convert to
AST.
* Turn logging to DEBUG
Example query
http://localhost:5000/collections/hot_osm_waterways/items?cql=%27osm_id%20BETWEEN%2080800000%20AND%2080900000%20AND%20name%20IS%20NULL%27
* Create dedicated pygeoapi-config.yml for testing PostgreSQL
* Add test for PostgreSQL CQL
* Return 400 for bad CQL
* Tidy up old files
* Bring API error type tests together
* Only reflect the table of interest
* Add pygeofilter to requirements
* Remove local setup_env.sh from .gitignore
* Remove lark exception handling
* Remove lark codes from tests, docstring change
* Split cql test into good and error
* Rename cql parameter to filter
* Add optional filter-lang parameter with test
* Initial changes
* Rename cql text parser
* Use CQL-JSON POST for PostgreSQL query
* Refactor to get data early and handle errors
* Add error tests for CQL-JSON PostgreSQL
* Add tests for prev/next and provider instantiation
* As filter-lang is set the block in not needed
* Clarify test fixtures
* Use filterq only in all CQL calls
* Make engine and table_model attributes of provider
* Handle different instantiation failures
* Use SQLAlchemy for get_fields()
* Minor doc edits
* Use SQLAlchemy for get()
* Simplify _sqlalchemy_to_feature
* Store database parameters in dedicated function
* Strip out non-SQLAlchemy code
* Add draft query() based on CQL filters
* Add property filtering to query()
* Implement select_properties and skip_geometry
* Implement bbox filter
* Implement properties subset defined in config
* Clean up materialized view test
We only need to test the fields that are present to be sure that the
view has been accessed, so other checks have been removed.
* Flake8 fixes and tidy up
* Add combined test for CQL with bbox and properties
* Create sessions directly where required
* Add Engine store to allow connection reuse
* Replace cql_ast with filterq
* Tidy up tests by using fixture for api
* Add authors
* Use Session() as context manager
A session requires a connection to the database, as provided by the
SQLAlchemy engine. When the session goes out of scope, e.g. at exit
from the function when it was used, it should be garbage collected and
the connection freed. However, during load testing it was found that
this wasn't happening. This commit uses a context manager pattern to
start the session, which ensures that the session is closed at the end
of the `with` block.
* Return fields type as {'type': ...}
* Cache the table_model with the engine
Generating the table_model by "reflecting" the database is expensive but
the resulting model doesn't change. If we cache the table_model with
the engine we save on a round-trip to the database and speed up response
time.
* Use separate stores for Engine and table_models
Using a combined store based on both engine and table_model meant that
a pygeoapi serving multiple tables on the same database would maintain
a connection pool for each table. This could eventually saturate the
number of available connections. This commit separates the store into
two parts.
* Update documentation with example
* Manage or post items based on POST content type
* ghcr build action
* only ghcr job
* run criteria edit
* Update README.md
* job = main
* remove success requirememt
* add tag
* tags: bgs-cql
* Update main.yml
* Update README.md
* remove binary
* update
* Update actions to latest versions
* Dockerfile refactor
* Dockerfile refactor
* restore dockerhub
* fix pygeoif version
* # 3.6 test & dockerhub ref
* Pin pygeoif version to less than 1
* Replace psycopg-binary with psycopg
* Split Docker build into sections
* Pin click version >7,<=8
* Add further cql examples
* Update workflows to match GeoPython repo
* update flake python version
* Unquote PostgreSQL column names
* Update container workflow uses versions
* flake8 use python version 3.7
* Use pre ping to get db connection
* Test that properties are set in provider
* Amendments as requested by @tomkralidis
* Correction
* Fix reviewed changes in api code
Co-authored-by: Colin Blackburn <colb@bgs.ac.uk>
Co-authored-by: KoalaGeo <eddlewis85@gmail.com>
Co-authored-by: Edd <edlew@bgs.ac.uk>
Co-authored-by: Colin Blackburn <ximenesuk@users.noreply.github.com>
* new file: docker/Dockerfile
Dockerfile for pygeoapi
* typo
* typo
* geopackage provider
* test travis
* changed href to http
* incorrect field in yml
* missing flake8 check
* POI test dataset
* unit tests
* working unitttests and update to readme
* .gitignore docker
* requests for PR #64
* Update __init__.py
Flake8 whitespace
* flake8 fix and removal of incorrect dockerfile
* new file: docker/Dockerfile
Dockerfile for pygeoapi
* Using 0.0.0.0 in pygeoapi-config otherwise no docker for flask
* ES and pygeoapi docker
* Final file structure
* generic port 5000 and localhost
* sqlit3 suport in alpine and fixes on sqlite provider
* B4 sync with upstream
* Working composition problems with ES features
* Cosmetic changes update to README.md
* using load_es_data.py from github local openapi.yml
* added docker pull only of pygeoapi
* b4 rebase
* Using 0.0.0.0 in pygeoapi-config otherwise no docker for flask
* ES and pygeoapi docker
* Final file structure
* generic port 5000 and localhost
* sqlit3 suport in alpine and fixes on sqlite provider
* B4 sync with upstream
* Cosmetic changes update to README.md
* using load_es_data.py from github local openapi.yml
* added docker pull only of pygeoapi
* b4 rebase
* updates and sync
* missing proper local.config.yml
* wait-for pygeoapi
* sync with master config
* deleted: docker/ES/wait-for-it.sh
new file: docker/pygeoapi/docker-entrypoint.sh
new file: docker/pygeoapi/run_pygeoapi.sh
openapi.yml
pygeoapi/provider/__sqlite.py
Missing sh files
* missing set +e
* wait for ES to be yellow or green
* More detailed Readme
* new file: .gitignore
* simple image docker
* missing docker run
* new file: Dockerfile
new file: docker.config.yml
new file: run_pygeoapi.sh
Simple image
* typos on README
* new file: docker/Dockerfile
Dockerfile for pygeoapi
* modified: pygeoapi/provider/__init__.py
new file: tests/data/ne_110m_lakes.sqlite
new file: tests/json_marshmallow.py
new file: tests/test_sqlite_provider.py
Sqlit implementation and testing marshmallows
* new file: provider/sqlite.py
new file: provider/tmp_parser.py
Sqlite provider
* Testing sqlalchemy
* query for sqlite3
* Countries dataset, message in assert
* yml config
* table in data link and query implemented without limit
* PR of refactor
* functional sqlite3 driver
* flake8
* pipreq for complete list of requirements
* updated readme with working examples, extra requirements
* typos, SQLite removed Dockerfile and ne_100m_lakes.sqlite
* update requirements
* pypandoc in requirements-dev.txt
* initial swagger gen
* removed support for html returns
* geojson configuration
* working swagger ui
* config rename
* observation example
* missing call in csv driver
* pr comments