diff --git a/calibre-plugin/plugin-defaults.ini b/calibre-plugin/plugin-defaults.ini index e6b4819e..a1166767 100644 --- a/calibre-plugin/plugin-defaults.ini +++ b/calibre-plugin/plugin-defaults.ini @@ -3460,17 +3460,6 @@ use_basic_cache:true ## Site dedicated to these categories/characters/ships extracategories:Psych -[www.qaf-fic.com] -## Some sites do not require a login, but do require the user to -## confirm they are adult for adult content. In commandline version, -## this should go in your personal.ini, not defaults.ini. -#is_adult:true - -## Site dedicated to these categories/characters/ships -extracategories:Queer as Folk - -website_encodings:Windows-1252,utf8 - [www.royalroad.com] use_basic_cache:true extra_valid_entries:stars diff --git a/fanficfare/adapters/__init__.py b/fanficfare/adapters/__init__.py index bb2ff593..0b0a5e1b 100644 --- a/fanficfare/adapters/__init__.py +++ b/fanficfare/adapters/__init__.py @@ -74,7 +74,6 @@ from . import adapter_scarvesandcoffeenet from . import adapter_wolverineandroguecom from . import adapter_merlinficdtwinscouk from . import adapter_thehookupzonenet -from . import adapter_qafficcom from . import adapter_efpfanficnet from . import adapter_imagineeficcom from . import adapter_storiesonlinenet diff --git a/fanficfare/adapters/adapter_qafficcom.py b/fanficfare/adapters/adapter_qafficcom.py deleted file mode 100644 index fc66067c..00000000 --- a/fanficfare/adapters/adapter_qafficcom.py +++ /dev/null @@ -1,243 +0,0 @@ -# -*- coding: utf-8 -*- - -# Copyright 2012 Fanficdownloader team, 2018 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. -# - -# Software: eFiction -from __future__ import absolute_import -import logging -logger = logging.getLogger(__name__) -import re -from ..htmlcleanup import stripHTML -from .. import exceptions as exceptions - -# py2 vs py3 transition -from ..six import text_type as unicode - -from .base_adapter import BaseSiteAdapter, makeDate - -def getClass(): - return QafFicComAdapter - -# Class name has to be unique. Our convention is camel case the -# sitename with Adapter at the end. www is skipped. -class QafFicComAdapter(BaseSiteAdapter): - - def __init__(self, config, url): - BaseSiteAdapter.__init__(self, config, url) - - self.username = "NoneGiven" # if left empty, site doesn't return any message at all. - self.password = "" - self.is_adult=False - - # get storyId from url--url validation guarantees query is only sid=1234 - self.story.setMetadata('storyId',self.parsedUrl.query.split('=',)[1]) - - - # normalized story URL. - self._setURL('https://' + self.getSiteDomain() + '/atp/viewstory.php?sid='+self.story.getMetadata('storyId')) - - # Each adapter needs to have a unique site abbreviation. - self.story.setMetadata('siteabbrev','atp') - - # The date format will vary from site to site. - # http://docs.python.org/library/datetime.html#strftime-strptime-behavior - self.dateformat = "%m/%d/%y" - - @staticmethod # must be @staticmethod, don't remove it. - def getSiteDomain(): - # The site domain. Does have www here, if it uses it. - return 'www.qaf-fic.com' - - @classmethod - def getSiteExampleURLs(cls): - return "https://"+cls.getSiteDomain()+"/atp/viewstory.php?sid=1234" - - def getSiteURLPattern(self): - return r"https?://"+re.escape(self.getSiteDomain()+"/atp/viewstory.php?sid=")+r"\d+$" - - - ## Getting the chapter list and the meta data, plus 'is adult' checking. - def extractChapterUrlsAndMetadata(self): - - if self.is_adult or self.getConfig("is_adult"): - # Weirdly, different sites use different warning numbers. - # If the title search below fails, there's a good chance - # you need a different number. print data at that point - # and see what the 'click here to continue' url says. - addurl = "&warning=NC-17" - else: - addurl="" - - # index=1 makes sure we see the story chapter index. Some - # sites skip that for one-chapter stories. - url = self.url+addurl - logger.debug("URL: "+url) - - data = self.get_request(url) - - m = re.search(r"'viewstory.php\?sid=\d+((?:&ageconsent=ok)?&warning=\s+)'",data) - if m != None: - if self.is_adult or self.getConfig("is_adult"): - # We tried the default and still got a warning, so - # let's pull the warning number from the 'continue' - # link and reload data. - addurl = m.group(1) - # correct stupid & error in url. - addurl = addurl.replace("&","&") - url = self.url+addurl - logger.debug("URL 2nd try: "+url) - - data = self.get_request(url) - else: - raise exceptions.AdultCheckRequired(self.url) - - if "Access denied. This story has not been validated by the adminstrators of this site." in data: - raise exceptions.AccessDenied(self.getSiteDomain() +" says: Access denied. This story has not been validated by the adminstrators of this site.") - - soup = self.make_soup(data) - # print data - - - ## Title and author - a = soup.find('div', {'id' : 'pagetitle'}) - - aut = a.find('a', href=re.compile(r"viewuser.php\?uid=\d+")) - self.story.setMetadata('authorId',aut['href'].split('=')[1]) - self.story.setMetadata('authorUrl','https://'+self.host+'/atp/'+aut['href']) - self.story.setMetadata('author',aut.string) - aut.extract() - - self.story.setMetadata('title',stripHTML(a)[:(len(a.string)-3)]) - - # Find the chapters: - chapters=soup.find('select') - if chapters != None: - for chapter in chapters.findAll('option'): - # just in case there's tags, like in chapter titles. - self.add_chapter(chapter,'https://'+self.host+'/atp/viewstory.php?sid='+self.story.getMetadata('storyId')+'&chapter='+chapter['value']) - else: - self.add_chapter(self.story.getMetadata('title'),url) - - - asoup = self.make_soup(self.get_request(self.story.getMetadata('authorUrl'))) - for list in asoup.findAll('div', {'class' : re.compile('listbox')}): - a = list.find('a') - if ('viewstory.php?sid='+self.story.getMetadata('storyId')) in a['href']: - break - - # eFiction sites don't help us out a lot with their meta data - # formating, so it's a little ugly. - - # utility method - def defaultGetattr(d,k): - try: - return d[k] - except: - return "" - - # Rated: NC-17
etc - labels = list.findAll('span', {'class' : 'classification'}) - for labelspan in labels: - label = labelspan.string - value = labelspan.nextSibling - - if 'Summary' in label: - ## Everything until the next span class='label' - svalue = "" - while value and 'classification' not in defaultGetattr(value,'class'): - if "Featured Stories" not in value: - svalue += unicode(value) - value = value.nextSibling - self.setDescription(url,svalue) - #self.story.setMetadata('description',stripHTML(svalue)) - - if 'Rated' in label: - self.story.setMetadata('rating', value[:len(value)-2]) - - if 'Word count' in label: - self.story.setMetadata('numWords', value) - - if 'Categories' in label: - cats = labelspan.parent.findAll('a',href=re.compile(r'categories.php\?catid=\d+')) - for cat in cats: - self.story.addToList('category',cat.string) - - if 'Characters' in label: - for char in value.string.split(', '): - if not 'None' in char: - self.story.addToList('characters',char) - - if 'Genre' in label: - for genre in value.string.split(', '): - if not 'None' in genre: - self.story.addToList('genre',genre) - - if 'Warnings' in label: - for warning in value.string.split(', '): - if not 'None' in warning: - self.story.addToList('warnings',warning) - - if 'Completed' in label: - if 'Yes' in value: - self.story.setMetadata('status', 'Completed') - else: - self.story.setMetadata('status', 'In-Progress') - - if 'Published' in label: - self.story.setMetadata('datePublished', makeDate(stripHTML(value.split(' ::')[0]), self.dateformat)) - - if 'Updated' in label: - # there's a stray [ at the end. - #value = value[0:-1] - self.story.setMetadata('dateUpdated', makeDate(stripHTML(value), self.dateformat)) - - try: - if list.find('a', href=re.compile(r"series.php")) != None: - for series in asoup.findAll('a', href=re.compile(r"series.php\?seriesid=\d+")): - # Find Series name from series URL. - series_url = 'https://'+self.host+'/atp/'+series['href'] - seriessoup = self.make_soup(self.get_request(series_url)) - storyas = seriessoup.findAll('a', href=re.compile(r'^viewstory.php\?sid=\d+$')) - i=1 - for a in storyas: - if a['href'] == ('viewstory.php?sid='+self.story.getMetadata('storyId')): - name=seriessoup.find('div', {'id' : 'pagetitle'}) - name.find('a').extract() - self.setSeries(name.text.split(' by[')[0], i) - self.story.setMetadata('seriesUrl',series_url) - i=0 - break - i+=1 - if i == 0: - break - - except: - # I find it hard to care if the series parsing fails - pass - - # grab the text for an individual chapter. - def getChapterText(self, url): - - logger.debug('Getting chapter text from: %s' % url) - - soup = self.make_soup(self.get_request(url)) - - div = soup.find('div', {'id' : 'story'}) - - if None == div: - raise exceptions.FailedToDownload("Error downloading Chapter: %s! Missing required element!" % url) - - return self.utf8FromSoup(url,div) diff --git a/fanficfare/defaults.ini b/fanficfare/defaults.ini index 6c535d57..502593f3 100644 --- a/fanficfare/defaults.ini +++ b/fanficfare/defaults.ini @@ -3446,17 +3446,6 @@ use_basic_cache:true ## Site dedicated to these categories/characters/ships extracategories:Psych -[www.qaf-fic.com] -## Some sites do not require a login, but do require the user to -## confirm they are adult for adult content. In commandline version, -## this should go in your personal.ini, not defaults.ini. -#is_adult:true - -## Site dedicated to these categories/characters/ships -extracategories:Queer as Folk - -website_encodings:Windows-1252,utf8 - [www.royalroad.com] use_basic_cache:true extra_valid_entries:stars