starting to remove self.path from GeminiItem

This commit is contained in:
Lionel Dricot 2022-02-17 12:35:50 +01:00
parent 136c8cfce7
commit 78e428d3a7
1 changed files with 31 additions and 32 deletions

View File

@ -863,6 +863,7 @@ class GeminiItem():
self.path = parsed.path
else:
self.path = self.url
self._cache_path = self.path
else:
if self.scheme == "gopher":
if parsed.path and parsed.path[0] == "/" and len(parsed.path) > 1:
@ -898,6 +899,9 @@ class GeminiItem():
if len(self.path+parsed.query) < 258:
self.path += "/" + parsed.query
#if not local, we create a local cache path.
if self.local:
self._cache_path = self.path
else:
self._cache_path = os.path.expanduser(_CACHE_PATH + self.scheme +\
"/" + self.host + self.path)
#Theres an OSlimitation of 260 characters per path.
@ -927,7 +931,7 @@ class GeminiItem():
#small intelligence to try to find a good name for a capsule
#we try to find eithe ~username or /users/username
#else we fallback to hostname
if self.scheme == "file":
if self.local:
if self.name != "":
red_title = self.name
else:
@ -990,9 +994,7 @@ class GeminiItem():
def get_body(self,as_file=False):
if self.body and not as_file:
return self.body
if self.local:
path = self.path
elif self.is_cache_valid():
if self.is_cache_valid():
path = self.get_cache_path()
else:
path = None
@ -1065,8 +1067,8 @@ class GeminiItem():
return wrapped + "\n"
def _set_renderer(self,mime=None):
if self.local and os.path.isdir(self.path):
self.renderer = FolderRenderer("",self.path)
if self.local and os.path.isdir(self.get_cache_path()):
self.renderer = FolderRenderer("",self.get_cache_path())
return
if not mime:
mime = self.get_mime()
@ -1144,9 +1146,6 @@ class GeminiItem():
if self.mime:
return self.mime
elif self.is_cache_valid():
if self.local:
path = self.path
else:
path = self.get_cache_path()
if path.endswith(".gmi"):
mime = "text/gemini"