vote up 1 vote down star

How do I add a custom header to files pylons is serving from public?

flag

56% accept rate

2 Answers

vote up 0 vote down

a) Let your webserver serve files from /public instead of paster and configure it to pass some special headers.

b) Add a special route and serve the files yourself ala

class FilesController(BaseController):
    def download(self, path)
        fapp = FileApp( path, headers=self.get_headers(path) )
        return fapp(request.environ, self.start_response)

c) maybe there is a way to overwrite headers and i just dont know how.

link|flag
I'm wondering if return forward(FileApp(path, headers=...)) would be better. (forward comes from pylons.controllers.util.) – Marius Gedminas Sep 17 at 20:13
vote up 0 vote down

With a recent version of route, you can use the 'Magic path_info' feature, and follow the documentation from here to write your controller so it calls paster.DirectoryApp.

In my project, I wanted to serve any file in the public directory, including subdirs, and ended with this as controller, to be able to override content_type :

import logging
from paste.fileapp import FileApp

from paste.urlparser import StaticURLParser
from pylons import config
from os.path import basename

class ForceDownloadController(StaticURLParser):

    def __init__(self, directory=None, root_directory=None, cache_max_age=None):
        if not directory:
            directory = config['pylons.paths']['static_files']
        StaticURLParser.__init__(self, directory, root_directory, cache_max_age)

    def make_app(self, filename):
        headers = [('Content-Disposition', 'filename=%s' % (basename(filename)))]
        return FileApp(filename, headers, content_type='application/octetstream')
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.