mirror of
https://github.com/JimmXinu/FanFicFare.git
synced 2025-12-06 08:52:55 +01:00
140 lines
5.9 KiB
Python
140 lines
5.9 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
# Copyright 2022 FanFicFare team
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
#
|
|
|
|
from __future__ import absolute_import
|
|
import logging
|
|
logger = logging.getLogger(__name__)
|
|
|
|
import threading
|
|
import traceback
|
|
import time
|
|
from ..six.moves.urllib.parse import urlparse
|
|
|
|
from .. import exceptions
|
|
|
|
from .base_fetcher import FetcherResponse
|
|
from .decorators import FetcherDecorator
|
|
from .log import make_log
|
|
|
|
try: # just a way to switch between CLI and PI
|
|
## webbrowser.open doesn't work on some linux flavors.
|
|
## piggyback Calibre's version.
|
|
from calibre.gui2 import safe_open_url as open_url
|
|
except :
|
|
from webbrowser import open as open_url
|
|
|
|
## kept here, this counter persists across all sessions in calibre
|
|
## session which can be days
|
|
domain_open_tries = dict()
|
|
|
|
class BrowserCacheDecorator(FetcherDecorator):
|
|
def __init__(self,cache):
|
|
super(BrowserCacheDecorator,self).__init__()
|
|
self.cache = cache
|
|
self.cache_lock = threading.RLock()
|
|
|
|
def fetcher_do_request(self,
|
|
fetcher,
|
|
chainfn,
|
|
method,
|
|
url,
|
|
parameters=None,
|
|
referer=None,
|
|
usecache=True,
|
|
image=False):
|
|
with self.cache_lock:
|
|
# logger.debug("BrowserCacheDecorator fetcher_do_request")
|
|
fromcache=True
|
|
|
|
open_pages_in_browser_tries_limit = int(fetcher.getConfig("open_pages_in_browser_tries_limit",6))
|
|
|
|
# if usecache: # Ignore usecache flag--it's for BasicCache.
|
|
try:
|
|
parsedUrl = urlparse(url)
|
|
if domain_open_tries.get(parsedUrl.netloc,0) >= open_pages_in_browser_tries_limit:
|
|
raise exceptions.HTTPErrorFFF(
|
|
url,
|
|
428, # 404 & 410 trip StoryDoesNotExist
|
|
# 428 ('Precondition Required') gets the
|
|
# error_msg through to the user.
|
|
"open_pages_in_browser_tries_limit exceeded for site (%s), assuming site is off line."%parsedUrl.netloc,
|
|
None # data
|
|
)
|
|
|
|
d = self.cache.get_data(url)
|
|
|
|
open_tries = 2
|
|
# logger.debug("domain_open_tries:%s:"%domain_open_tries)
|
|
while( fetcher.getConfig("use_browser_cache_only") and
|
|
fetcher.getConfig("open_pages_in_browser",False) and
|
|
parsedUrl.scheme != 'file' and
|
|
not d and open_tries
|
|
and domain_open_tries.get(parsedUrl.netloc,0) < open_pages_in_browser_tries_limit ):
|
|
logger.debug("\n\nopen page in browser: %s\ntries:%s\n"%(url,domain_open_tries.get(parsedUrl.netloc,None)))
|
|
open_url(url)
|
|
# logger.debug("domain_open_tries:%s:"%domain_open_tries)
|
|
# if parsedUrl.netloc not in domain_open_tries:
|
|
# logger.debug("First time for (%s) extra sleep"%parsedUrl.netloc)
|
|
# time.sleep(10)
|
|
fromcache=False
|
|
read_try_sleeps = [2, 2, 4, 10, 20]
|
|
while not d and read_try_sleeps:
|
|
time.sleep(read_try_sleeps.pop(0))
|
|
logger.debug("Checking for cache...")
|
|
try:
|
|
d = self.cache.get_data(url)
|
|
except Exception as e:
|
|
## catch exception while retrying, but
|
|
## re-raise if out of retries.
|
|
logger.debug("Exception reading cache after open_pages_in_browser %s"%e)
|
|
if not read_try_sleeps:
|
|
raise
|
|
# logger.debug(d)
|
|
open_tries -= 1
|
|
domain_open_tries[parsedUrl.netloc] = domain_open_tries.get(parsedUrl.netloc,0) + 1
|
|
# logger.debug("domain_open_tries:%s:"%domain_open_tries)
|
|
|
|
except Exception as e:
|
|
logger.debug(traceback.format_exc())
|
|
raise exceptions.BrowserCacheException("Browser Cache Failed to Load with error '%s'"%e)
|
|
|
|
# had a d = b'' which showed HIT, but failed.
|
|
logger.debug(make_log('BrowserCache',method,url,True if d else False))
|
|
# logger.debug(d)
|
|
if d:
|
|
domain_open_tries[parsedUrl.netloc] = 0
|
|
logger.debug("domain_open_tries:%s:"%domain_open_tries)
|
|
logger.debug("fromcache:%s"%fromcache)
|
|
return FetcherResponse(d,redirecturl=url,fromcache=fromcache)
|
|
|
|
if fetcher.getConfig("use_browser_cache_only") and parsedUrl.scheme != 'file':
|
|
raise exceptions.HTTPErrorFFF(
|
|
url,
|
|
428, # 404 & 410 trip StoryDoesNotExist
|
|
# 428 ('Precondition Required') gets the
|
|
# error_msg through to the user.
|
|
"Page not found or expired in Browser Cache (see FFF setting browser_cache_age_limit)",# error_msg
|
|
None # data
|
|
)
|
|
|
|
return chainfn(
|
|
method,
|
|
url,
|
|
parameters=parameters,
|
|
referer=referer,
|
|
usecache=usecache,
|
|
image=image)
|