annotate contenttransformer/app.py @ 9:051d4d39b4b9

* separate out get_response to its own function * keep track of raw content_type for later usage (muahaha)
author k0s <k0scist@gmail.com>
date Sun, 07 Feb 2010 19:03:15 -0500
parents 5258325a496a
children a9ddcfc7c4e8
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
29805d442afc initial commit of contenttransformer; still in the stub stage
k0s <k0scist@gmail.com>
parents:
diff changeset
1 import os
29805d442afc initial commit of contenttransformer; still in the stub stage
k0s <k0scist@gmail.com>
parents:
diff changeset
2 import sys
29805d442afc initial commit of contenttransformer; still in the stub stage
k0s <k0scist@gmail.com>
parents:
diff changeset
3 from fnmatch import fnmatch
9
051d4d39b4b9 * separate out get_response to its own function
k0s <k0scist@gmail.com>
parents: 4
diff changeset
4 from mimetypes import guess_type
0
29805d442afc initial commit of contenttransformer; still in the stub stage
k0s <k0scist@gmail.com>
parents:
diff changeset
5 from paste.fileapp import FileApp
29805d442afc initial commit of contenttransformer; still in the stub stage
k0s <k0scist@gmail.com>
parents:
diff changeset
6 from pkg_resources import iter_entry_points
29805d442afc initial commit of contenttransformer; still in the stub stage
k0s <k0scist@gmail.com>
parents:
diff changeset
7
29805d442afc initial commit of contenttransformer; still in the stub stage
k0s <k0scist@gmail.com>
parents:
diff changeset
8 class FileTypeTransformer(object):
29805d442afc initial commit of contenttransformer; still in the stub stage
k0s <k0scist@gmail.com>
parents:
diff changeset
9
29805d442afc initial commit of contenttransformer; still in the stub stage
k0s <k0scist@gmail.com>
parents:
diff changeset
10 def __init__(self, *types, **kwargs):
29805d442afc initial commit of contenttransformer; still in the stub stage
k0s <k0scist@gmail.com>
parents:
diff changeset
11 """types is a list of two-tuples: glob pattern (string), transformer name (string, name of entry point)"""
29805d442afc initial commit of contenttransformer; still in the stub stage
k0s <k0scist@gmail.com>
parents:
diff changeset
12 self.types = types
1
aa491070ccf3 now works, just doesnt do anything, i dont think
k0s <k0scist@gmail.com>
parents: 0
diff changeset
13
aa491070ccf3 now works, just doesnt do anything, i dont think
k0s <k0scist@gmail.com>
parents: 0
diff changeset
14 # intended to be arguments to the xformers
aa491070ccf3 now works, just doesnt do anything, i dont think
k0s <k0scist@gmail.com>
parents: 0
diff changeset
15 # XXX unused
aa491070ccf3 now works, just doesnt do anything, i dont think
k0s <k0scist@gmail.com>
parents: 0
diff changeset
16 self.kwargs = kwargs
4
5258325a496a move transformers getting method to a standalone function
k0s <k0scist@gmail.com>
parents: 1
diff changeset
17
5258325a496a move transformers getting method to a standalone function
k0s <k0scist@gmail.com>
parents: 1
diff changeset
18 self.transformers = transformers()
0
29805d442afc initial commit of contenttransformer; still in the stub stage
k0s <k0scist@gmail.com>
parents:
diff changeset
19 for pattern, transformer_name in self.types:
29805d442afc initial commit of contenttransformer; still in the stub stage
k0s <k0scist@gmail.com>
parents:
diff changeset
20 assert transformer_name in self.transformers
29805d442afc initial commit of contenttransformer; still in the stub stage
k0s <k0scist@gmail.com>
parents:
diff changeset
21
4
5258325a496a move transformers getting method to a standalone function
k0s <k0scist@gmail.com>
parents: 1
diff changeset
22 def __call__(self, path):
0
29805d442afc initial commit of contenttransformer; still in the stub stage
k0s <k0scist@gmail.com>
parents:
diff changeset
23 """this should return something that is callable with (environ, start_response) to return a response; the transformer thing"""
29805d442afc initial commit of contenttransformer; still in the stub stage
k0s <k0scist@gmail.com>
parents:
diff changeset
24 filename = os.path.basename(path)
29805d442afc initial commit of contenttransformer; still in the stub stage
k0s <k0scist@gmail.com>
parents:
diff changeset
25 for pattern, transformer_name in self.types:
29805d442afc initial commit of contenttransformer; still in the stub stage
k0s <k0scist@gmail.com>
parents:
diff changeset
26 if fnmatch(filename, pattern):
9
051d4d39b4b9 * separate out get_response to its own function
k0s <k0scist@gmail.com>
parents: 4
diff changeset
27 content_type, _ = guess_type(filename)
0
29805d442afc initial commit of contenttransformer; still in the stub stage
k0s <k0scist@gmail.com>
parents:
diff changeset
28 content = file(path).read()
9
051d4d39b4b9 * separate out get_response to its own function
k0s <k0scist@gmail.com>
parents: 4
diff changeset
29 return self.transformers[transformer_name](content, content_type)
0
29805d442afc initial commit of contenttransformer; still in the stub stage
k0s <k0scist@gmail.com>
parents:
diff changeset
30 return FileApp(path)
4
5258325a496a move transformers getting method to a standalone function
k0s <k0scist@gmail.com>
parents: 1
diff changeset
31
5258325a496a move transformers getting method to a standalone function
k0s <k0scist@gmail.com>
parents: 1
diff changeset
32
5258325a496a move transformers getting method to a standalone function
k0s <k0scist@gmail.com>
parents: 1
diff changeset
33 def transformers():
5258325a496a move transformers getting method to a standalone function
k0s <k0scist@gmail.com>
parents: 1
diff changeset
34 transformers = {} # XXX could cache
5258325a496a move transformers getting method to a standalone function
k0s <k0scist@gmail.com>
parents: 1
diff changeset
35 for entry_point in iter_entry_points('content_transformers'):
5258325a496a move transformers getting method to a standalone function
k0s <k0scist@gmail.com>
parents: 1
diff changeset
36 try:
5258325a496a move transformers getting method to a standalone function
k0s <k0scist@gmail.com>
parents: 1
diff changeset
37 transformers[entry_point.name] = entry_point.load()
5258325a496a move transformers getting method to a standalone function
k0s <k0scist@gmail.com>
parents: 1
diff changeset
38 except:
5258325a496a move transformers getting method to a standalone function
k0s <k0scist@gmail.com>
parents: 1
diff changeset
39 raise # XXX
5258325a496a move transformers getting method to a standalone function
k0s <k0scist@gmail.com>
parents: 1
diff changeset
40 return transformers
5258325a496a move transformers getting method to a standalone function
k0s <k0scist@gmail.com>
parents: 1
diff changeset
41