From e1073f7eb9d09b50ddc1de6df4a14f802b3a02a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomasz=20D=C5=82ugosz?= Date: Mon, 31 Oct 2011 20:21:40 +0100 Subject: [PATCH 1/4] Empik not interested in cooperation --- src/calibre/gui2/store/declined.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/src/calibre/gui2/store/declined.txt b/src/calibre/gui2/store/declined.txt index b109d30d50..bd2aa296bd 100644 --- a/src/calibre/gui2/store/declined.txt +++ b/src/calibre/gui2/store/declined.txt @@ -5,3 +5,4 @@ or asked not to be included in the store integration. * Indigo (http://www.chapters.indigo.ca/). * Libraria Rizzoli (http://libreriarizzoli.corriere.it/). * EPubBuy DE: reason: too much traffic for too little sales +* Empik (http://empik.com.pl). From 6f1e5becdd269361e20f4d3487bc0c92b3666dfe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomasz=20D=C5=82ugosz?= Date: Thu, 3 Nov 2011 18:35:28 +0100 Subject: [PATCH 2/4] Ebookpoint plugin --- src/calibre/customize/builtins.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/calibre/customize/builtins.py b/src/calibre/customize/builtins.py index ef09e50ff4..defc318e36 100644 --- a/src/calibre/customize/builtins.py +++ b/src/calibre/customize/builtins.py @@ -1237,6 +1237,17 @@ class StoreEbookNLStore(StoreBase): formats = ['EPUB', 'PDF'] affiliate = True +class StoreEbookpointStore(StoreBase): + name = 'Ebookpoint' + author = u'Tomasz Długosz' + description = u'Ebooki wolne od DRM, 3 formaty w pakiecie, wysyłanie na Kindle' + actual_plugin = 'calibre.gui2.store.stores.ebookpoint_plugin:EbookpointStore' + + drm_free_only = True + headquarters = 'PL' + formats = ['EPUB', 'MOBI', 'PDF'] + affiliate = True + class StoreEbookscomStore(StoreBase): name = 'eBooks.com' description = u'Sells books in multiple electronic formats in all categories. Technical infrastructure is cutting edge, robust and scalable, with servers in the US and Europe.' @@ -1528,6 +1539,7 @@ plugins += [ StoreChitankaStore, StoreDieselEbooksStore, StoreEbookNLStore, + StoreEbookpointStore, StoreEbookscomStore, StoreEBookShoppeUKStore, StoreEHarlequinStore, From 45548c3a0eddf8f0532cc80ab0cbe2111dd128e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomasz=20D=C5=82ugosz?= Date: Thu, 3 Nov 2011 18:45:35 +0100 Subject: [PATCH 3/4] Ebookpoint plugin, forgot adding py --- .../gui2/store/stores/ebookpoint_plugin.py | 81 +++++++++++++++++++ 1 file changed, 81 insertions(+) create mode 100644 src/calibre/gui2/store/stores/ebookpoint_plugin.py diff --git a/src/calibre/gui2/store/stores/ebookpoint_plugin.py b/src/calibre/gui2/store/stores/ebookpoint_plugin.py new file mode 100644 index 0000000000..e295c552a2 --- /dev/null +++ b/src/calibre/gui2/store/stores/ebookpoint_plugin.py @@ -0,0 +1,81 @@ +# -*- coding: utf-8 -*- + +from __future__ import (unicode_literals, division, absolute_import, print_function) + +__license__ = 'GPL 3' +__copyright__ = '2011, Tomasz Długosz ' +__docformat__ = 'restructuredtext en' + +import re +import urllib +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 EbookpointStore(BasicStoreConfig, StorePlugin): + + def open(self, parent=None, detail_item=None, external=False): + pid = '5557Y' + + url = 'http://ebookpoint.pl/view/' + pid + detail_url = None + + if detail_item: + book_id = re.sub(r'http://ebookpoint.pl/ksiazki', '', detail_item) + if book_id: + detail_url = url + book_id + + if external or self.config.get('open_external', False): + open_url(QUrl(url_slash_cleaner(detail_url if detail_url else url))) + else: + d = WebStoreDialog(self.gui, url, parent, detail_url) + d.setWindowTitle(self.name) + d.set_tags(self.config.get('tags', '')) + d.exec_() + + def search(self, query, max_results=10, timeout=60): + url = 'http://ebookpoint.pl/search.scgi?szukaj=' + urllib.quote(query) + '&serwisyall=0&x=0&y=0' + + br = browser() + + counter = max_results + with closing(br.open(url, timeout=timeout)) as f: + doc = html.fromstring(f.read()) + for data in doc.xpath('//div[@class="book-list"]/ul[2]/li'): + if counter <= 0: + break + + id = ''.join(data.xpath('.//a[@class="cover"]/@href')) + if not id: + continue + + cover_url = ''.join(data.xpath('.//a[@class="cover"]/img/@src')) + title = ''.join(data.xpath('.//h3/a/text()')) + author = ''.join(data.xpath('.//p[@class="author"]/text()')) + price = ''.join(data.xpath('.//p[@class="price"]/ins/text()')) + + with closing(br.open(id.strip(), timeout=timeout)) as nf: + idata = html.fromstring(nf.read()) + formats = ', '.join(idata.xpath('//div[@class="col-left"]/h2/@class')) + + counter -= 1 + + s = SearchResult() + s.cover_url = 'http://ebookpoint.pl' + cover_url + s.title = title.strip() + s.author = author.strip() + s.price = re.sub(r'\.',',',price) + s.detail_item = id.strip() + s.drm = SearchResult.DRM_UNLOCKED + s.formats = formats.upper().strip() + + yield s From 4223211241b1dc1850cd9caa741213da5a861669 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomasz=20D=C5=82ugosz?= Date: Fri, 4 Nov 2011 19:01:12 +0100 Subject: [PATCH 4/4] fix format detection in ebookpoint plugin --- src/calibre/gui2/store/stores/ebookpoint_plugin.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/calibre/gui2/store/stores/ebookpoint_plugin.py b/src/calibre/gui2/store/stores/ebookpoint_plugin.py index e295c552a2..98f0c9685f 100644 --- a/src/calibre/gui2/store/stores/ebookpoint_plugin.py +++ b/src/calibre/gui2/store/stores/ebookpoint_plugin.py @@ -44,6 +44,7 @@ class EbookpointStore(BasicStoreConfig, StorePlugin): def search(self, query, max_results=10, timeout=60): url = 'http://ebookpoint.pl/search.scgi?szukaj=' + urllib.quote(query) + '&serwisyall=0&x=0&y=0' + ebook_string = 'eBook.' br = browser() @@ -60,12 +61,13 @@ class EbookpointStore(BasicStoreConfig, StorePlugin): cover_url = ''.join(data.xpath('.//a[@class="cover"]/img/@src')) title = ''.join(data.xpath('.//h3/a/text()')) + title = re.sub(ebook_string, '', title) author = ''.join(data.xpath('.//p[@class="author"]/text()')) price = ''.join(data.xpath('.//p[@class="price"]/ins/text()')) with closing(br.open(id.strip(), timeout=timeout)) as nf: idata = html.fromstring(nf.read()) - formats = ', '.join(idata.xpath('//div[@class="col-left"]/h2/@class')) + formats = ', '.join(idata.xpath('//div[@class="col-left"]/h2[contains(., "' + ebook_string + '")]/@class')) counter -= 1