Login

KMLMiddleware

Author:
takinbo
Posted:
February 19, 2011
Language:
Python
Version:
1.2
Score:
0 (after 0 ratings)

This is a slight modification from the original version at http://djangosnippets.org/snippets/709/ and is a middleware designed to output the right headers for generated KML or KMZ content. In the case of KMZ content, it handles the compression of the original KML content into the KMZ format.

This version applies the processing to only requests ending with a .kml or .kmz in the URL. For instance, a request with the URL http://example.com/kml/foo.kml or http://example.com/foo.kmz will get processed by this middleware.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
from cStringIO import StringIO
import zipfile

class KMLMiddleware(object):
    """
    Middleware for serving KML data and optionally converting it to KMZ if the right extension is used.
    """
    def process_response(self, request, response):
        request_file = request.path.split("/")[-1]

        if request_file.lower().endswith(".kmz"):
            kmz = StringIO()
            f = zipfile.ZipFile(kmz, 'w', zipfile.ZIP_DEFLATED)
            save_file_name = request_file[:request_file.lower().rfind(".kmz")] # strips off the .kmz extension
            f.writestr('%s.kml' % save_file_name, response.content)
            f.close()
            response.content = kmz.getvalue()
            kmz.close()
            response['Content-Type']        = 'application/vnd.google-earth.kmz'
            response['Content-Disposition'] = 'attachment; filename=%s.kmz' % save_file_name
            response['Content-Length']      = str(len(response.content))
        if request_file.lower().endswith(".kml"):
            save_file_name = request_file[:request_file.lower().rfind(".kml")] # strips off the .kmz extension
            response['Content-Type']        = 'application/vnd.google-earth.kml+xml'
            response['Content-Disposition'] = 'attachment; filename=%s.kml' % save_file_name
            response['Content-Length']      = str(len(response.content))
            
        return response

More like this

  1. Template tag - list punctuation for a list of items by shapiromatron 2 months, 2 weeks ago
  2. JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 2 months, 3 weeks ago
  3. Serializer factory with Django Rest Framework by julio 9 months, 2 weeks ago
  4. Image compression before saving the new model / work with JPG, PNG by Schleidens 10 months, 1 week ago
  5. Help text hyperlinks by sa2812 11 months ago

Comments

mhulse (on September 8, 2011):

Works great! Thank you. :)

#

mhulse (on September 11, 2011):

I noticed that the KML file does not update when new entries are added to my database... Is this by design? How would I update the KML view to update the KML output? Maybe I am missing something here?

#

mhulse (on September 16, 2011):

Scratch my last comment... The new class-based-generic views and my cache back end is giving me guff! Thanks again!

#

Please login first before commenting.