多个正则表达式捕获组的Tornado StaticFileHandler路径

时间:2016-08-01 16:28:09

标签: tornado

从表单的网址/foo/(.*)/bar/(.*),我想提供文件,其中实际路径是从2个捕获的组计算的。我的问题是StaticFileHandler的get()只接受1个路径参数。有没有办法让这个工作,而不必重新实现大多数StaticFileHandler的方法?

我目前的解决方法是捕获所有内容:(/foo/.*/bar/.*),但是我必须在重写get_absolute_path()中重新分析类似的正则表达式。

1 个答案:

答案 0 :(得分:1)

如果不延长StaticFileHandler,就无法做到这一点。这将是一个微小的变化:

from tornado import gen, web

class CustomStaticFileHandler(web.StaticFileHandler):

    def get(self, part1, part2, include_body=True):
        # mangle path
        path = "dome_{}_combined_path_{}".format(part1, part2)
        # back to staticfilehandler
        return super().get(path, include_body)

    # if you need to use coroutines on mangle use 
    #
    # @gen.coroutine
    # def get(self, part1, part2, include_body=True):
    #     path = yield some_db.get_path(part1, part2)
    #     yield super().get(path, include_body)

app = web.Application([
    (r"/foo/(.*)/bar/(.*)", CustomStaticFileHandler, {"path": "/tmp"}),
])