mirror of
https://github.com/JimmXinu/FanFicFare.git
synced 2025-12-06 08:52:55 +01:00
27 lines
1.2 KiB
Python
27 lines
1.2 KiB
Python
import os
|
|
from .basebrowsercache import BrowserCacheException, BaseBrowserCache
|
|
from .simplecache import SimpleCache
|
|
from .chromediskcache import ChromeDiskCache
|
|
|
|
|
|
class BrowserCache:
|
|
"""Class to read web browser cache"""
|
|
def __init__(self, cache_dir=None):
|
|
"""Constructor for BrowserCache"""
|
|
# import of child classes have to be inside the def to avoid circular import error
|
|
for browser_cache_class in [SimpleCache, ChromeDiskCache]:
|
|
self.browser_cache = browser_cache_class.new_browser_cache(cache_dir)
|
|
if self.browser_cache is not None:
|
|
break
|
|
if self.browser_cache is None:
|
|
raise BrowserCacheException("Directory does not contain a known browser cache type: '%s",
|
|
os.path.abspath(cache_dir))
|
|
|
|
def get_data(self, url):
|
|
d = self.browser_cache.get_data(url)
|
|
if not d:
|
|
## newer browser caches separate by calling domain to not
|
|
## leak information about past visited pages by showing
|
|
## quick retrieval.
|
|
d = self.browser_cache.get_data("_dk_https://fanfiction.net https://fanfiction.net "+url)
|
|
return d
|