From dd56bb7b6d9e32f811ee1a40eea630376f567ef8 Mon Sep 17 00:00:00 2001 From: John Schember Date: Mon, 9 May 2011 18:13:59 -0400 Subject: [PATCH] Remove Borders store as they do not want to be included. --- src/calibre/customize/builtins.py | 7 +- src/calibre/gui2/store/borders_plugin.py | 94 ------------------------ 2 files changed, 1 insertion(+), 100 deletions(-) delete mode 100644 src/calibre/gui2/store/borders_plugin.py diff --git a/src/calibre/customize/builtins.py b/src/calibre/customize/builtins.py index 08049e48cf..1ca51c2f81 100644 --- a/src/calibre/customize/builtins.py +++ b/src/calibre/customize/builtins.py @@ -1116,11 +1116,6 @@ class StoreBeWriteStore(StoreBase): description = _('Publishers of fine books.') actual_plugin = 'calibre.gui2.store.bewrite_plugin:BeWriteStore' -class StoreBordersStore(StoreBase): - name = 'Borders' - description = _('Buy Books, Used Books, Music, DVDs & Blu-ray Online.') - actual_plugin = 'calibre.gui2.store.borders_plugin:BordersStore' - class StoreDieselEbooksStore(StoreBase): name = 'Diesel eBooks' description = _('World Famous eBook Store.') @@ -1188,7 +1183,7 @@ class AmazonDEKindleStore(StoreBase): plugins += [StoreAmazonKindleStore, AmazonDEKindleStore, StoreAmazonUKKindleStore, StoreBaenWebScriptionStore, StoreBNStore, - StoreBeWriteStore, StoreBordersStore, + StoreBeWriteStore, StoreDieselEbooksStore, StoreEbookscomStore, StoreEHarlequinStoretore, StoreFeedbooksStore, StoreFoylesUKStore, StoreGutenbergStore, StoreKoboStore, StoreManyBooksStore, diff --git a/src/calibre/gui2/store/borders_plugin.py b/src/calibre/gui2/store/borders_plugin.py deleted file mode 100644 index a610c2eaef..0000000000 --- a/src/calibre/gui2/store/borders_plugin.py +++ /dev/null @@ -1,94 +0,0 @@ -# -*- coding: utf-8 -*- - -from __future__ import (unicode_literals, division, absolute_import, print_function) - -__license__ = 'GPL 3' -__copyright__ = '2011, John Schember ' -__docformat__ = 'restructuredtext en' - -import random -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 BordersStore(BasicStoreConfig, StorePlugin): - - def open(self, parent=None, detail_item=None, external=False): - #m_url = 'http://www.dpbolvw.net/' - #h_click = 'click-4879827-10762497' - #d_click = 'click-4879827-10772898' - # Use Kovid's affiliate id 30% of the time. - #if random.randint(1, 10) in (1, 2, 3): - # h_click = 'click-4913808-10762497' - # d_click = 'click-4913808-10772898' - - #url = m_url + h_click - url = 'http://www.borders.com/online/store/Landing?nav=5185+700152' - detail_url = None - if detail_item: - detail_url = 'http://www.borders.com/online/store/TitleDetail?sku=%s' % detail_item - #detail_url = m_url + d_click + detail_item - - 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://www.borders.com/online/store/SearchResults?type=44&simple=1&keyword=' + urllib.quote_plus(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[@class="browseResultsTable"]//tr'): - if counter <= 0: - break - - id = ''.join(data.xpath('.//td[1]/a[1]/@href')) - if not id: - continue - id = re.search('(?<=sku=)\d+', id) - if not id: - continue - id = id.group() - - cover_url = ''.join(data.xpath('.//img[@class="jtip prod-item"]/@src')) - - title = ''.join(data.xpath('.//td[@align="left"][1]//a[1]//text()')) - author = ''.join(data.xpath('.//td[@align="left"][1]//a[2]/text()')) - - price = ''.join(data.xpath('.//div[@class="sale_price"]//text()')) - price = re.search('\$[\d.]+', price) - if not price: - continue - price = price.group() - - counter -= 1 - - s = SearchResult() - s.cover_url = cover_url - s.title = title.strip() - s.author = author.strip() - s.price = price.strip() - s.detail_item = id.strip() - #s.detail_item = '?url=http://www.kobobooks.com/' + id.strip() - s.drm = SearchResult.DRM_LOCKED - s.formats = 'EPUB' - - yield s