Compare commits

...

3 Commits

Author SHA1 Message Date
ibu ☉ radempa da7a7658e6 Release version 1.2.0. 2020-12-31 16:27:34 +00:00
ibu ☉ radempa ec1725c507 Add release.py script for making releases and add documentation for this. 2020-12-31 16:27:02 +00:00
ibu ☉ radempa e4daeb15d2 Improve search.
* do not only return the 10 items from the first page, but loop over at most
  `max_pages` pages
* use https://usa.anarchistlibraries.net/ as fallback when the main site is
  not available
* drop formats TXT, TEX, MUSE from search results as they cannot be displayed
  in calibre
* on python3 use quote_plus instead of quote
* obtain the version number in the user agent string from module
  TheAnarchistLibraryStore
2020-12-31 16:26:36 +00:00
5 changed files with 90 additions and 23 deletions

View File

@ -13,7 +13,6 @@ Environment:
## Release process
cd REPO_ROOT
VERSION="1.1.0"
cd theanarchistlibrary_store
zip ../releases/theanarchistlibrary_store_v${VERSION}.zip *
Edit the version in theanarchistlibrary_store/__init__.py and
in the repo root call
./release.py

44
release.py Executable file
View File

@ -0,0 +1,44 @@
#!/usr/bin/env python3
import glob
import os
from zipfile import ZipFile
dir_path = os.path.dirname(os.path.realpath(__file__))
def get_version():
path = os.path.join(
dir_path,
'theanarchistlibrary_store',
'__init__.py',
)
with open(path, 'r') as file:
lines = file.read().split('\n')
for line in lines:
line_ = line.lower().strip()
if line_.startswith('version = '):
parts = line_[10:].lstrip('(').rstrip(')').split(',')
numbers = [int(part) for part in parts]
return '{}.{}.{}'.format(*numbers)
def release():
version = get_version()
tgt_fn = f'theanarchistlibrary_store_v{version}.zip'
tgt_path = os.path.join(dir_path, 'releases', tgt_fn)
src_glob = os.path.join(
dir_path,
'theanarchistlibrary_store',
'**',
)
with ZipFile(tgt_path, 'w') as zip:
for path in glob.glob(src_glob, recursive=True):
arcname = path[(len(src_glob) - 2):]
if arcname:
zip.write(path, arcname=arcname)
if __name__ == '__main__':
release()

Binary file not shown.

View File

@ -1,14 +1,15 @@
__license__ = 'GPL 3'
__copyright__ = '2012, Ruben Pollan <meskio@sindominio.net>'
__copyright__ = '2012, Ruben Pollan <meskio@sindominio.net>; 2020, ibu radempa <ibu@radempa.de>'
__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)
description = 'theanarchistlibrary.org is an archive focusing on anarchism, anarchist texts, and texts of interest to anarchists.'
author = 'Ruben Pollan; ibu radempa'
version = (1, 2, 0)
drm_free_only = True
formats = ['EPUB', 'PDF', 'TXT', 'TEX', 'MUSE']
actual_plugin = 'calibre_plugins.store_theanarchistlibrary.theanarchistlibrary_plugin:TheAnarchistLibraryStore'

View File

@ -1,24 +1,37 @@
__license__ = 'GPL 3'
__copyright__ = '2012, Ruben Pollan <meskio@sindominio.net>'
__copyright__ = '2012, Ruben Pollan <meskio@sindominio.net>; 2020, ibu radempa <ibu@radempa.de>'
__docformat__ = 'restructuredtext en'
import json
try:
from urllib.parse import quote
from urllib.parse import quote_plus as quote
except:
from urllib2 import quote
try:
from PyQt5.Qt import QUrl
except:
from PyQt4.Qt import QUrl
from contextlib import closing
import json
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
from . import TheAnarchistLibraryStore
url1 = 'https://theanarchistlibrary.org/search?fmt=json&page=%s&query=%s'
url2 = 'https://usa.anarchistlibraries.net/search?fmt=json&page=%s&query=%s'
"""Search URLs. If the library has no fallback url, set url2 = None."""
max_pages = 10
"""Page limit. (amusewiki gives us 10 results per page.)"""
user_agent = 'Calibre plugin calibre-tal v' + '{}.{}.{}'.format(*TheAnarchistLibraryStore.version)
class TheAnarchistLibraryStore(BasicStoreConfig, StorePlugin):
@ -33,14 +46,28 @@ class TheAnarchistLibraryStore(BasicStoreConfig, StorePlugin):
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=' + quote(query)
def search(self, query, max_results=10, timeout=10):
br = browser(user_agent=user_agent)
page = 0
while page < max_pages:
page += 1
try:
for result in self._iter_search_results(br, url1, page, query, timeout):
if result is False:
return
yield result
except:
if url2:
for result in self._iter_search_results(br, url2, page, query, timeout):
if result is False:
return
yield result
br = browser()
counter = max_results
with closing(br.open(url, timeout=timeout)) as f:
def _iter_search_results(self, br, url, page, query, timeout):
with closing(br.open(url % (page, quote(query)), timeout=timeout)) as f:
doc = json.load(f)
if not doc:
yield False
for data in doc:
s = SearchResult()
s.title = data['title'].strip()
@ -52,9 +79,5 @@ class TheAnarchistLibraryStore(BasicStoreConfig, StorePlugin):
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'
s.formats = 'EPUB, PDF, A4.PDF, LT.PDF'
yield s