diff --git a/channels.json b/channels.json index 31de0182..c678ee9d 100644 --- a/channels.json +++ b/channels.json @@ -24,7 +24,7 @@ "filmsenzalimiticc": "https://www.filmsenzalimiti.estate", "filmstreaming01": "https://filmstreaming01.com", "guardaserie_stream": "https://guardaserie.store", - "guardaserieclick": "https://www.guardaserie.productions", + "guardaserieclick": "https://web.archive.org/save/www.guardaserie.band", "hd4me": "https://hd4me.net", "ilgeniodellostreaming": "https://ilgeniodellostreaming.tk", "italiaserie": "https://italiaserie.org", diff --git a/channels/guardaserieclick.py b/channels/guardaserieclick.py index 99380efd..756808ef 100644 --- a/channels/guardaserieclick.py +++ b/channels/guardaserieclick.py @@ -118,7 +118,13 @@ def peliculas(item): ## patron = r'\s[^"]+)"\s/>[^>]+>[^>]+>\s[^>]+>\s(?P\d{4})?\s.+?class="strongText">(?P.+?)<' ## pagination = 25 #support.regexDbg(item, patronBlock, headers) - #debug = True + # debug = True + + def itemHook(item): + item.url = 'https://web.archive.org' + item.url + item.thumbnail = 'https://web.archive.org' + item.thumbnail + + return item return locals() diff --git a/core/httptools.py b/core/httptools.py index 6f1bde5c..264a7248 100755 --- a/core/httptools.py +++ b/core/httptools.py @@ -42,7 +42,7 @@ if HTTPTOOLS_DEFAULT_DOWNLOAD_TIMEOUT == 0: HTTPTOOLS_DEFAULT_DOWNLOAD_TIMEOUT = HTTPTOOLS_DEFAULT_RANDOM_HEADERS = False domainCF = list() -channelsCF = ['guardaserieclick', 'casacinema', 'dreamsub', 'ilgeniodellostreaming', 'piratestreaming', 'altadefinizioneclick', 'altadefinizione01_link', 'cineblog01'] +channelsCF = ['casacinema', 'dreamsub', 'ilgeniodellostreaming', 'piratestreaming', 'altadefinizioneclick', 'altadefinizione01_link', 'cineblog01'] otherCF = ['altadefinizione-nuovo.link', 'wstream.video', 'akvideo.stream', 'backin.net', 'vcrypt.net'] for ch in channelsCF: domainCF.append(urlparse.urlparse(config.get_channel_url(name=ch)).hostname)