mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-11-12 01:26:58 -05:00
84 lines
3.3 KiB
Python
84 lines
3.3 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
from __future__ import (unicode_literals, division, absolute_import, print_function)
|
|
store_version = 8 # Needed for dynamic plugin loading
|
|
|
|
__license__ = 'GPL 3'
|
|
__copyright__ = '2012-2017, Tomasz Długosz <tomek3d@gmail.com>'
|
|
__docformat__ = 'restructuredtext en'
|
|
|
|
import urllib
|
|
from base64 import b64encode
|
|
from contextlib import closing
|
|
|
|
from lxml import html
|
|
|
|
from PyQt5.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 PublioStore(BasicStoreConfig, StorePlugin):
|
|
|
|
def open(self, parent=None, detail_item=None, external=False):
|
|
aff_root = 'https://www.a4b-tracking.com/pl/stat-click-text-link/29/58/'
|
|
url = 'http://www.publio.pl/'
|
|
|
|
aff_url = aff_root + str(b64encode(url))
|
|
|
|
detail_url = None
|
|
if detail_item:
|
|
detail_url = aff_root + str(b64encode(detail_item))
|
|
|
|
if external or self.config.get('open_external', False):
|
|
open_url(QUrl(url_slash_cleaner(detail_url if detail_url else aff_url)))
|
|
else:
|
|
d = WebStoreDialog(self.gui, url, parent, detail_url if detail_url else aff_url)
|
|
d.setWindowTitle(self.name)
|
|
d.set_tags(self.config.get('tags', ''))
|
|
d.exec_()
|
|
|
|
def search(self, query, max_results=20, timeout=60):
|
|
|
|
br = browser()
|
|
|
|
counter = max_results
|
|
page = 1
|
|
while counter:
|
|
with closing(br.open('http://www.publio.pl/e-booki,strona' + str(page) + '.html?q=' + urllib.quote(query), timeout=timeout)) as f: # noqa
|
|
doc = html.fromstring(f.read())
|
|
for data in doc.xpath('//div[@class="products-list"]//div[@class="product-tile"]'):
|
|
if counter <= 0:
|
|
break
|
|
|
|
id = ''.join(data.xpath('.//a[@class="product-tile-cover"]/@href'))
|
|
if not id:
|
|
continue
|
|
|
|
cover_url = ''.join(data.xpath('.//img[@class="product-tile-cover-photo"]/@src'))
|
|
title = ''.join(data.xpath('.//span[@class="product-tile-title-long"]/text()'))
|
|
author = ', '.join(data.xpath('.//span[@class="product-tile-author"]/a/text()'))
|
|
price = ''.join(data.xpath('.//div[@class="product-tile-price-wrapper "]/a/ins/text()'))
|
|
# formats = ', '.join([x.strip() for x in data.xpath('.//div[@class="formats"]/a/text()')])
|
|
|
|
counter -= 1
|
|
|
|
s = SearchResult()
|
|
s.cover_url = 'http://www.publio.pl' + cover_url
|
|
s.title = title.strip()
|
|
s.author = author
|
|
s.price = price
|
|
s.detail_item = 'http://www.publio.pl' + id.strip()
|
|
# s.drm = SearchResult.DRM_LOCKED if 'DRM' in formats else SearchResult.DRM_UNLOCKED
|
|
# s.formats = formats.replace(' DRM','').strip()
|
|
|
|
yield s
|
|
if not doc.xpath('boolean(//a[@class="next"])'):
|
|
break
|
|
page+=1
|