mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Remove eharlequin store because it no longer works.
This commit is contained in:
parent
8782ec322a
commit
89e3dfb97a
@ -1439,15 +1439,6 @@ class StoreEbooksGratuitsStore(StoreBase):
|
|||||||
# formats = ['EPUB', 'PDF']
|
# formats = ['EPUB', 'PDF']
|
||||||
# affiliate = True
|
# affiliate = True
|
||||||
|
|
||||||
class StoreEHarlequinStore(StoreBase):
|
|
||||||
name = 'eHarlequin'
|
|
||||||
description = u'A global leader in series romance and one of the world\'s leading publishers of books for women. Offers women a broad range of reading from romance to bestseller fiction, from young adult novels to erotic literature, from nonfiction to fantasy, from African-American novels to inspirational romance, and more.' # noqa
|
|
||||||
actual_plugin = 'calibre.gui2.store.stores.eharlequin_plugin:EHarlequinStore'
|
|
||||||
|
|
||||||
headquarters = 'CA'
|
|
||||||
formats = ['EPUB', 'PDF']
|
|
||||||
affiliate = True
|
|
||||||
|
|
||||||
class StoreEKnigiStore(StoreBase):
|
class StoreEKnigiStore(StoreBase):
|
||||||
name = u'еКниги'
|
name = u'еКниги'
|
||||||
author = 'Alex Stanev'
|
author = 'Alex Stanev'
|
||||||
@ -1734,7 +1725,6 @@ plugins += [
|
|||||||
StoreEbookpointStore,
|
StoreEbookpointStore,
|
||||||
StoreEbookscomStore,
|
StoreEbookscomStore,
|
||||||
StoreEbooksGratuitsStore,
|
StoreEbooksGratuitsStore,
|
||||||
StoreEHarlequinStore,
|
|
||||||
StoreEKnigiStore,
|
StoreEKnigiStore,
|
||||||
StoreEmpikStore,
|
StoreEmpikStore,
|
||||||
StoreFeedbooksStore,
|
StoreFeedbooksStore,
|
||||||
|
@ -1,91 +0,0 @@
|
|||||||
# -*- coding: utf-8 -*-
|
|
||||||
|
|
||||||
from __future__ import (unicode_literals, division, absolute_import, print_function)
|
|
||||||
store_version = 1 # Needed for dynamic plugin loading
|
|
||||||
|
|
||||||
__license__ = 'GPL 3'
|
|
||||||
__copyright__ = '2011, John Schember <john@nachtimwald.com>'
|
|
||||||
__docformat__ = 'restructuredtext en'
|
|
||||||
|
|
||||||
import re
|
|
||||||
import urllib2
|
|
||||||
from contextlib import closing
|
|
||||||
|
|
||||||
from lxml import html
|
|
||||||
|
|
||||||
from PyQt4.Qt import QUrl
|
|
||||||
|
|
||||||
from calibre import browser, url_slash_cleaner
|
|
||||||
from calibre.gui2 import open_url
|
|
||||||
from calibre.gui2.store import StorePlugin
|
|
||||||
from calibre.gui2.store.basic_config import BasicStoreConfig
|
|
||||||
from calibre.gui2.store.search_result import SearchResult
|
|
||||||
from calibre.gui2.store.web_store_dialog import WebStoreDialog
|
|
||||||
|
|
||||||
class EHarlequinStore(BasicStoreConfig, StorePlugin):
|
|
||||||
|
|
||||||
def open(self, parent=None, detail_item=None, external=False):
|
|
||||||
url = 'http://www.harlequin.com/'
|
|
||||||
|
|
||||||
if external or self.config.get('open_external', False):
|
|
||||||
open_url(QUrl(url_slash_cleaner(detail_item if detail_item else url)))
|
|
||||||
else:
|
|
||||||
d = WebStoreDialog(self.gui, url, parent, detail_item)
|
|
||||||
d.setWindowTitle(self.name)
|
|
||||||
d.set_tags(self.config.get('tags', ''))
|
|
||||||
d.exec_()
|
|
||||||
|
|
||||||
def search(self, query, max_results=10, timeout=60):
|
|
||||||
url = 'http://ebooks.eharlequin.com/BANGSearch.dll?Type=FullText&FullTextField=All&FullTextCriteria=' + urllib2.quote(query)
|
|
||||||
|
|
||||||
br = browser()
|
|
||||||
|
|
||||||
counter = max_results
|
|
||||||
with closing(br.open(url, timeout=timeout)) as f:
|
|
||||||
doc = html.fromstring(f.read())
|
|
||||||
for data in doc.xpath('//table[not(.//@class="sidelink")]/tr[.//ul[@id="details"]]'):
|
|
||||||
if counter <= 0:
|
|
||||||
break
|
|
||||||
|
|
||||||
id = ''.join(data.xpath('.//ul[@id="details"]/li[@id="title-results"]/a/@href'))
|
|
||||||
if not id:
|
|
||||||
continue
|
|
||||||
|
|
||||||
title = ''.join(data.xpath('.//ul[@id="details"]/li[@id="title-results"]/a/text()'))
|
|
||||||
author = ''.join(data.xpath('.//ul[@id="details"]/li[@id="author"][1]//a/text()'))
|
|
||||||
price = ''.join(data.xpath('.//div[@class="ourprice"]/font/text()'))
|
|
||||||
cover_url = ''.join(data.xpath('.//a[@href="%s"]/img/@src' % id))
|
|
||||||
|
|
||||||
counter -= 1
|
|
||||||
|
|
||||||
s = SearchResult()
|
|
||||||
s.cover_url = cover_url
|
|
||||||
s.title = title.strip()
|
|
||||||
s.author = author.strip()
|
|
||||||
s.price = price.strip()
|
|
||||||
s.detail_item = 'http://ebooks.eharlequin.com/' + id.strip()
|
|
||||||
s.formats = 'EPUB'
|
|
||||||
|
|
||||||
yield s
|
|
||||||
|
|
||||||
def get_details(self, search_result, timeout):
|
|
||||||
url = 'http://ebooks.eharlequin.com/en/ContentDetails.htm?ID='
|
|
||||||
|
|
||||||
mo = re.search(r'\?ID=(?P<id>.+)', search_result.detail_item)
|
|
||||||
if mo:
|
|
||||||
id = mo.group('id')
|
|
||||||
if not id:
|
|
||||||
return
|
|
||||||
|
|
||||||
|
|
||||||
br = browser()
|
|
||||||
with closing(br.open(url + id, timeout=timeout)) as nf:
|
|
||||||
idata = html.fromstring(nf.read())
|
|
||||||
drm = SearchResult.DRM_UNKNOWN
|
|
||||||
if idata.xpath('boolean(//div[@class="drm_head"])'):
|
|
||||||
if idata.xpath('boolean(//td[contains(., "Copy") and contains(., "not")])'):
|
|
||||||
drm = SearchResult.DRM_LOCKED
|
|
||||||
else:
|
|
||||||
drm = SearchResult.DRM_UNLOCKED
|
|
||||||
search_result.drm = drm
|
|
||||||
return True
|
|
Loading…
x
Reference in New Issue
Block a user