Skip to content

Commit

Permalink
added Aleph loaned module
Browse files Browse the repository at this point in the history
  • Loading branch information
dnet committed Jan 2, 2012
1 parent a533714 commit 13d9534
Show file tree
Hide file tree
Showing 3 changed files with 62 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Expand Up @@ -34,3 +34,4 @@ Dependencies
- Python 2.x (tested on 2.5)
- PyQt4 (Debian/Ubuntu package: `python-qt4`)
- Django (Debian/Ubuntu package: `python-django`)
- aleph-python-api (for `aleph_loaned` module only, https://github.com/dnet/aleph-python-api)
53 changes: 53 additions & 0 deletions aleph_loaned.py
@@ -0,0 +1,53 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# aleph_loaned.py - scrapes loaned books from Aleph systems
#
# Copyright (c) 2012 András Veres-Szentkirályi
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation
# files (the "Software"), to deal in the Software without
# restriction, including without limitation the rights to use,
# copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the
# Software is furnished to do so, subject to the following
# conditions:
#
# The above copyright notice and this permission notice shall be
# included in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
# HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
# WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
# OTHER DEALINGS IN THE SOFTWARE.

from config import Config
from aleph import Aleph

CFGS = ['url', 'username', 'password']

class Aleph_loaned:
def __init__(self):
self.url = str(Config().value('aleph_loaned/url').toString())
self.aleph = Aleph()

def getTodos(self):
cfg = Config()
self.aleph.login(*[str(cfg.value('aleph_loaned/' + key).toString()) for key in CFGS])
try:
return map(self.loan2entry, self.aleph.get_loaned())
finally:
self.aleph.logout()

def loan2entry(self, loan):
return {
'subtitle': loan['author'],
'title': loan['title'],
'link': self.url,
'deadline': loan['due'],
}
8 changes: 8 additions & 0 deletions dashboard.sample.conf
Expand Up @@ -26,6 +26,14 @@ user=foo
passwd=bar
; your GitHub password

[aleph_loaned]
url=http://aleph.site.of.your.library.tld
; the base URL of the Aleph site
username=0123456789
; your username or barcode
password=foobar
; your password or barcode

[core]
modules="redmine,orgmode,imapflag,github_issues"
; modules to use, separated by comma
Expand Down

0 comments on commit 13d9534

Please sign in to comment.