c2cgeoportal-geoportal 2.9rc96__py3-none-any.whl → 2.9rc100__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2015-2024, Camptocamp SA
1
+ # Copyright (c) 2015-2025, Camptocamp SA
2
2
  # All rights reserved.
3
3
 
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -30,6 +30,7 @@ import logging
30
30
  from typing import Any
31
31
 
32
32
  import pyramid.request
33
+ import sqlalchemy.exc
33
34
  from defusedxml import ElementTree
34
35
  from pyramid.httpexceptions import HTTPBadRequest, HTTPForbidden, HTTPInternalServerError, HTTPUnauthorized
35
36
  from pyramid.view import view_config
@@ -59,11 +60,16 @@ class TinyOWSProxy(OGCProxy):
59
60
  self.settings = request.registry.settings.get("tinyowsproxy", {})
60
61
 
61
62
  assert "tinyows_url" in self.settings, "tinyowsproxy.tinyows_url must be set"
62
- self.ogc_server = (
63
- models.DBSession.query(main.OGCServer)
64
- .filter(main.OGCServer.name == self.settings["ogc_server"])
65
- .one()
66
- )
63
+ try:
64
+ self.ogc_server = (
65
+ models.DBSession.query(main.OGCServer)
66
+ .filter(main.OGCServer.name == self.settings["ogc_server"])
67
+ .one()
68
+ )
69
+ except sqlalchemy.exc.NoResultFound:
70
+ raise HTTPBadRequest( # pylint: disable=raise-missing-from
71
+ f"OGC server {self.settings['ogc_server']} not found"
72
+ )
67
73
 
68
74
  self.user = self.request.user
69
75
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: c2cgeoportal-geoportal
3
- Version: 2.9rc96
3
+ Version: 2.9rc100
4
4
  Summary: c2cgeoportal geoportal
5
5
  Home-page: https://github.com/camptocamp/c2cgeoportal/
6
6
  Author: Camptocamp
@@ -172,7 +172,7 @@ c2cgeoportal_geoportal/views/raster.py,sha256=kY6rYo4SxQP9JLbsq3_kdWdbaTVkdQDdpj
172
172
  c2cgeoportal_geoportal/views/resourceproxy.py,sha256=pcHwU6hAXHeh_Ef6tuHxpRzGje8nqVKUxyZwZKOPCjI,3189
173
173
  c2cgeoportal_geoportal/views/shortener.py,sha256=t-05vHSbsp6aIYV6fKk-ic6Zo45TLePIlGnPAzwrzQU,6179
174
174
  c2cgeoportal_geoportal/views/theme.py,sha256=jSpQcI3x2Exo31ubHdF8_ApGIhET7MnH7p0DN6yQLDI,55924
175
- c2cgeoportal_geoportal/views/tinyowsproxy.py,sha256=XAo5BxNoOSmIm4YgTvxofPWfLZbqkxK4blxdMEIzwpk,7922
175
+ c2cgeoportal_geoportal/views/tinyowsproxy.py,sha256=_wPN1Vfo4RNcCQ1xRPU_funie7mDPocL-ox_4hlF1-Y,8178
176
176
  c2cgeoportal_geoportal/views/vector_tiles.py,sha256=2bF3j6WvOpXAJULsEfy7pfeUBeKVheMlcUOWzHVow90,3575
177
177
  tests/__init__.py,sha256=KxmbgvRWDSJoEDH1cXnDIjbfBsgCzs2KdkTPuzYMq84,3826
178
178
  tests/test_cachebuster.py,sha256=asI1X_qI0MGklYuKuWyqvCPVbvhQcUe4fX91Dk-hUsE,2923
@@ -187,8 +187,8 @@ tests/test_mapserverproxy_route_predicate.py,sha256=SzILSSzIuilzIkUYVPZiVzLwW1du
187
187
  tests/test_raster.py,sha256=82NJ2MXgZlMqs0ytN-VgNw376iURdk4PkAg__dyh5ns,11948
188
188
  tests/test_wmstparsing.py,sha256=xjA8nJuXFl3H5Bfs4sJw_8qX8E8qvAALK7Hs2-DTP2A,9054
189
189
  tests/xmlstr.py,sha256=rkTKSU4FGjupBKLx75H8o-goB0KbQrxDvdpc6xVX_uQ,5985
190
- c2cgeoportal_geoportal-2.9rc96.dist-info/METADATA,sha256=9yhMyeqsqIhR7QonofvERkuVn8AQZe2Kxubb_AJsPHA,1886
191
- c2cgeoportal_geoportal-2.9rc96.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
192
- c2cgeoportal_geoportal-2.9rc96.dist-info/entry_points.txt,sha256=3dnX260FsLX_AubeNMdyeta_z1X4CxcD3steAlfPx2I,1414
193
- c2cgeoportal_geoportal-2.9rc96.dist-info/top_level.txt,sha256=PJIbY7Nx51dDrJ052f5mDA7c6Tehm5aD-Gb32L_CtJA,29
194
- c2cgeoportal_geoportal-2.9rc96.dist-info/RECORD,,
190
+ c2cgeoportal_geoportal-2.9rc100.dist-info/METADATA,sha256=TpUinHWffFmQhgqRVjZANQxuJqCZ07slJ0j4sX1kG4E,1887
191
+ c2cgeoportal_geoportal-2.9rc100.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
192
+ c2cgeoportal_geoportal-2.9rc100.dist-info/entry_points.txt,sha256=3dnX260FsLX_AubeNMdyeta_z1X4CxcD3steAlfPx2I,1414
193
+ c2cgeoportal_geoportal-2.9rc100.dist-info/top_level.txt,sha256=PJIbY7Nx51dDrJ052f5mDA7c6Tehm5aD-Gb32L_CtJA,29
194
+ c2cgeoportal_geoportal-2.9rc100.dist-info/RECORD,,