mirror of
https://github.com/JimmXinu/FanFicFare.git
synced 2026-05-08 21:11:59 +02:00
Add merengo.hu as eFiction with added consent click through.
This commit is contained in:
parent
6194f3d9e7
commit
02734791cd
2 changed files with 51 additions and 0 deletions
|
|
@ -165,6 +165,7 @@ from . import adapter_novelfull
|
|||
from . import adapter_worldofxde
|
||||
from . import adapter_psychficcom
|
||||
from . import adapter_deviantartcom
|
||||
from . import adapter_merengohu
|
||||
|
||||
## This bit of complexity allows adapters to be added by just adding
|
||||
## importing. It eliminates the long if/else clauses we used to need
|
||||
|
|
|
|||
50
fanficfare/adapters/adapter_merengohu.py
Normal file
50
fanficfare/adapters/adapter_merengohu.py
Normal file
|
|
@ -0,0 +1,50 @@
|
|||
# -*- 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.
|
||||
#
|
||||
|
||||
# Software: eFiction
|
||||
from __future__ import absolute_import
|
||||
from .base_efiction_adapter import BaseEfictionAdapter
|
||||
|
||||
class MerengoHuAdapter(BaseEfictionAdapter):
|
||||
|
||||
@classmethod
|
||||
def getProtocol(self):
|
||||
return "https"
|
||||
|
||||
@staticmethod
|
||||
def getSiteDomain():
|
||||
return 'merengo.hu'
|
||||
|
||||
@classmethod
|
||||
def getSiteAbbrev(self):
|
||||
return 'merengo'
|
||||
|
||||
@classmethod
|
||||
def getDateFormat(self):
|
||||
return "%Y.%m.%d"
|
||||
|
||||
def extractChapterUrlsAndMetadata(self):
|
||||
## merengo.hu has a custom 18 consent click through
|
||||
self.get_request(self.getUrlForPhp('tizennyolc.php')+'?consent=true')
|
||||
|
||||
## Call super of extractChapterUrlsAndMetadata().
|
||||
## base_efiction leaves the soup in self.html.
|
||||
return super(MerengoHuAdapter, self).extractChapterUrlsAndMetadata()
|
||||
|
||||
def getClass():
|
||||
return MerengoHuAdapter
|
||||
|
||||
Loading…
Reference in a new issue