This commit is contained in:
ibu ☉ radempa 2020-12-26 11:27:05 +00:00
parent ac70094b45
commit 6bc2447f9d
5 changed files with 84 additions and 0 deletions

14
CHANGELOG.md Normal file
View File

@ -0,0 +1,14 @@
## [1.0.0] - 2012-06-28
On 2020-12-26 the page
https://bookshelf.theanarchistlibrary.org/library/calibre-store-plugin
claimed that the source repository was https://gitorious.org/~meskio,
however according to [archiveteam](https://www.archiveteam.org/index.php?title=Gitorious)
the site gitorious.org was closed in 2015.
The page also had a download link to a zip file
(named theanarchistlibrary_store.zip), which was
added to this repository. It contained a calibre
plugin versioned (1, 0, 0), a copyright string
'2012, Ruben Pollan <meskio@sindominio.net>' and
files datemarked 2012-06-27 and 2012-06-28.

Binary file not shown.

View File

@ -0,0 +1,14 @@
__license__ = 'GPL 3'
__copyright__ = '2012, Ruben Pollan <meskio@sindominio.net>'
__docformat__ = 'restructuredtext en'
from calibre.customize import StoreBase
class TheAnarchistLibraryStore(StoreBase):
name = 'The Anarchist Library'
description = 'theanarchistlibrary.org is (despite its name) an archive focusing on anarchism, anarchist texts, and texts of interest for anarchists.'
author = 'Ruben Pollan'
version = (1, 0, 0)
drm_free_only = True
formats = ['EPUB', 'PDF', 'TXT', 'TEX', 'MUSE']
actual_plugin = 'calibre_plugins.store_theanarchistlibrary.theanarchistlibrary_plugin:TheAnarchistLibraryStore'

View File

@ -0,0 +1,56 @@
__license__ = 'GPL 3'
__copyright__ = '2012, Ruben Pollan <meskio@sindominio.net>'
__docformat__ = 'restructuredtext en'
import urllib2
from contextlib import closing
import json
from PyQt4.Qt import QUrl
from calibre import browser
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 TheAnarchistLibraryStore(BasicStoreConfig, StorePlugin):
def open(self, parent=None, detail_item=None, external=False):
url = 'http://theanarchistlibrary.org/'
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://theanarchistlibrary.org/search?fmt=json&query=' + urllib2.quote(query)
br = browser()
counter = max_results
with closing(br.open(url, timeout=timeout)) as f:
doc = json.load(f)
for data in doc:
s = SearchResult()
s.title = data['title'].strip()
s.author = data['author'].strip()
s.price = '$0.00'
s.detail_item = data['url'].strip()
s.drm = SearchResult.DRM_UNLOCKED
s.downloads['EPUB'] = data['url'].strip() + '.epub'
s.downloads['PDF'] = data['url'].strip() + '.pdf'
s.downloads['A4.PDF'] = data['url'].strip() + '.a4.pdf'
s.downloads['LT.PDF'] = data['url'].strip() + '.lt.pdf'
s.downloads['TXT'] = data['url'].strip() + '.txt'
s.downloads['TEX'] = data['url'].strip() + '.tex'
s.downloads['MUSE'] = data['url'].strip() + '.muse'
s.formats = 'EPUB, PDF, A4.PDF, LT.PDF, TXT, TEX, MUSE'
yield s