mirror of
https://github.com/mapnik/mapnik.git
synced 2025-12-08 20:13:09 +00:00
106 lines
4.7 KiB
Python
106 lines
4.7 KiB
Python
#
|
|
# This file is part of Mapnik (c++ mapping toolkit)
|
|
#
|
|
# Copyright (C) 2006 Jean-Francois Doyon
|
|
#
|
|
# Mapnik 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; either
|
|
# version 2.1 of the License, or (at your option) any later version.
|
|
#
|
|
# 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.
|
|
#
|
|
# You should have received a copy of the GNU Lesser General Public
|
|
# License along with this library; if not, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
#
|
|
# $Id$
|
|
|
|
"""WSGI application wrapper for Mapnik OGC WMS Server."""
|
|
|
|
from exceptions import OGCException, ServerConfigurationError
|
|
from configparser import SafeConfigParser
|
|
from cgi import parse_qs
|
|
from wms111 import ExceptionHandler as ExceptionHandler111
|
|
from wms130 import ExceptionHandler as ExceptionHandler130
|
|
from common import Version
|
|
|
|
class WSGIApp:
|
|
|
|
def __init__(self, configpath):
|
|
conf = SafeConfigParser()
|
|
conf.readfp(open(configpath))
|
|
self.conf = conf
|
|
if not conf.has_option_with_value('server', 'module'):
|
|
raise ServerConfigurationError('The factory module is not defined in the configuration file.')
|
|
try:
|
|
mapfactorymodule = __import__(conf.get('server', 'module'))
|
|
except ImportError:
|
|
raise ServerConfigurationError('The factory module could not be loaded.')
|
|
if hasattr(mapfactorymodule, 'WMSFactory'):
|
|
self.mapfactory = getattr(mapfactorymodule, 'WMSFactory')()
|
|
else:
|
|
raise ServerConfigurationError('The factory module does not have a WMSFactory class.')
|
|
if conf.has_option('server', 'debug'):
|
|
self.debug = int(conf.get('server', 'debug'))
|
|
else:
|
|
self.debug = 0
|
|
if self.conf.has_option_with_value('server', 'maxage'):
|
|
self.max_age = 'max-age=%d' % self.conf.get('server', 'maxage')
|
|
else:
|
|
self.max_age = None
|
|
|
|
def __call__(self, environ, start_response):
|
|
reqparams = {}
|
|
for key, value in parse_qs(environ['QUERY_STRING'], True).items():
|
|
reqparams[key.lower()] = value[0]
|
|
onlineresource = 'http://%s:%s%s?' % (environ['SERVER_NAME'], environ['SERVER_PORT'], environ['PATH_INFO'])
|
|
try:
|
|
if not reqparams.has_key('request'):
|
|
raise OGCException('Missing request parameter.')
|
|
request = reqparams['request']
|
|
del reqparams['request']
|
|
if request == 'GetCapabilities' and not reqparams.has_key('service'):
|
|
raise OGCException('Missing service parameter.')
|
|
if request in ['GetMap', 'GetFeatureInfo']:
|
|
service = 'WMS'
|
|
else:
|
|
service = reqparams['service']
|
|
if reqparams.has_key('service'):
|
|
del reqparams['service']
|
|
try:
|
|
mapnikmodule = __import__('mapnik2.ogcserver.' + service)
|
|
except:
|
|
raise OGCException('Unsupported service "%s".' % service)
|
|
ServiceHandlerFactory = getattr(mapnikmodule.ogcserver, service).ServiceHandlerFactory
|
|
servicehandler = ServiceHandlerFactory(self.conf, self.mapfactory, onlineresource, reqparams.get('version', None))
|
|
if reqparams.has_key('version'):
|
|
del reqparams['version']
|
|
if request not in servicehandler.SERVICE_PARAMS.keys():
|
|
raise OGCException('Operation "%s" not supported.' % request, 'OperationNotSupported')
|
|
ogcparams = servicehandler.processParameters(request, reqparams)
|
|
try:
|
|
requesthandler = getattr(servicehandler, request)
|
|
except:
|
|
raise OGCException('Operation "%s" not supported.' % request, 'OperationNotSupported')
|
|
response = requesthandler(ogcparams)
|
|
except:
|
|
version = reqparams.get('version', None)
|
|
if not version:
|
|
version = Version('1.3.0')
|
|
else:
|
|
version = Version(version)
|
|
if version >= '1.3.0':
|
|
eh = ExceptionHandler130(self.debug)
|
|
else:
|
|
eh = ExceptionHandler111(self.debug)
|
|
response = eh.getresponse(reqparams)
|
|
response_headers = [('Content-Type', response.content_type),('Content-Length', str(len(response.content)))]
|
|
if self.max_age:
|
|
response_headers.append(('Cache-Control', max_age))
|
|
start_response('200 OK', response_headers)
|
|
yield response.content
|
|
|