This commit is contained in:
yumoqing 2019-12-03 11:30:15 +08:00
parent 7110fad601
commit 01bbb82b5d
3 changed files with 34 additions and 17 deletions

View File

@ -42,8 +42,8 @@ class ConfiguredServer:
def configPath(self,config):
for p,prefix in config.website.paths:
res = ProcessorResource(prefix,p,show_index=True,
follow_symlinks=True)
res.setProcessors(config.website.processors or {})
res.setIndexes(config.website.indexes or [])
follow_symlinks=True,
indexs=configure.website.indexes,
processors=configure.website.processors)
self.app.router.register_resource(res)

View File

@ -44,20 +44,23 @@ def i18nDICT(request):
l = c.langMapping.get(lang,lang)
return json.dumps(i18n.getLangDict(l)).encode(c.website.coding)
class ProcessorResource(StaticResource):
class ProcessorResource(StaticResource,Url2File):
def __init__(self, prefix: str, directory: PathLike,
*, name: Optional[str]=None,
expect_handler: Optional[_ExpectHandler]=None,
chunk_size: int=256 * 1024,
show_index: bool=False, follow_symlinks: bool=False,
append_version: bool=False)-> None:
super().__init__(prefix, directory,
append_version: bool=False,
indexes:list=[],
processors:dict={}) None:
StaticResource.__init__(self,prefix, directory,
name=name,
expect_handler=expect_handler,
chunk_size=chunk_size,
show_index=show_index,
follow_symlinks=follow_symlinks,
append_version=append_version)
Url2File.__init__(self,directory,prefix,indexes,inherit=True)
gr = self._routes.get('GET')
self._routes.update({'POST':gr})
self._routes.update({'PUT':gr})

View File

@ -3,12 +3,14 @@
import os
class Url2File:
def __init__(self,paths: list,indexes: list, inherit: bool=False):
self.paths = paths
def __init__(self,path:str,prefix: str,
indexes: list, inherit: bool=False):
self.path = path
self.starts = prefix
self.indexes = indexes
self.inherit = inherit
def realurl(self,url):
def realurl(self,url:str) -> str :
items = url.split('/')
items = [ i for i in items if i != '.' ]
while '..' in items:
@ -19,15 +21,26 @@ class Url2File:
break
return '/'.join(items)
def isFolder(self,url: str):
for r in self.paths:
rp = r + url
def isFolder(self,url: str) ->bool:
if url.startswith(self.starts):
rp = self.path + url[len(self.starts):]
real_path = os.path.abspath(rp)
if os.path.isdir(real_path):
return True
return False
else
return False
def isFile(self,url:str) ->bool:
if url.startswith(self.starts):
rp = self.path + url[len(self.starts):]
real_path = os.path.abspath(rp)
if os.path.isfile(real_path):
return True
else
return False
def defaultIndex(self,url: str):
def defaultIndex(self,url: str) -> str:
for p in self.indexes:
rp = url + '/' + p
r = self.url2file(rp)
@ -42,11 +55,12 @@ class Url2File:
if self.isFolder(url):
return self.defaultIndex(url)
for r in self.paths:
f = r + url
if url.startswith(self.starts):
f = self.path + url[len(self.starts):]
real_path = os.path.abspath(f)
if os.path.isfile(real_path):
return f
if not self.inherit:
return None
items = url.split('/')
@ -56,7 +70,7 @@ class Url2File:
return self.url2file(url)
return None
def relatedurl(self,url: str, name: str):
def relatedurl(self,url: str, name: str) -> str:
if url[-1] == '/':
url = url[:-1]