Summary: | Koha should make it easy for librarians to attach covers using Open Library | ||
---|---|---|---|
Product: | Koha | Reporter: | Robin Sheat <robin> |
Component: | Cataloging | Assignee: | Bugs List <koha-bugs> |
Status: | NEW --- | QA Contact: | |
Severity: | enhancement | ||
Priority: | P4 | CC: | anand, david, dpavlin, dubyk, egpetridis, esther.melander, nigel, noufal |
Version: | Main | ||
Hardware: | All | ||
OS: | All | ||
Change sponsored?: | --- | Patch complexity: | --- |
Documentation contact: | Documentation submission: | ||
Text to go in the release notes: | Version(s) released in: | ||
Circulation function: |
Description
Robin Sheat
2011-11-04 08:25:26 UTC
Added search API to Open Library. This can be used to find OLID from book metadata. The format of both request and response is JSON. POST http://openlibrary.org/api/ils_search Required Headers: Content-type: application/json Authorization: Basic base64-of-username:password (optional) Payload: { "title": "book title", "authors": ["author 1", "author 2"], "publisher": "Name of the publisher", "publish_date": "June 2011", "isbns": ["1234567890", "234567890X"] } Response Format: { "status": "found", "olid": "OL24605334M", "key": "/books/OL24605334M", "cover": { "small": "http://covers.openlibrary.org/b/id/6685633-S.jpg", "large": "http://covers.openlibrary.org/b/id/6685633-L.jpg", "medium": "http://covers.openlibrary.org/b/id/6685633-M.jpg" } } Status can be one of found, created or notfound. The cover property will be available only if the book has a cover. Currently the OL API tries to match only the ISBNs and doesn't create a new record if no match is found. This will be improved shortly. Added Cover Upload API to Open Library. POST http://openlibrary.org/api/ils_cover_upload Request Format: Following input fields with enctype multipart/form-data * authorization: base64 of username:password * olid: Key of the edition. e.g. OL12345M * file: file * redirect_url: URL to redirect after upload On Success: Redirect to redirect_url?status=ok On Failure: Redirect to redirect_url?status=error&reason=bad+olid The work-in-progress branch can be found here: http://git.catalyst.net.nz/gw?p=koha.git;a=shortlog;h=refs/heads/bug7152-upload-covers-openlibrary Anand: I'm having issues with the API: I send: {"authors":["test"],"publish_date":null,"title":"Test 1","publisher":null,"isbns":["9781935928324"]} And get back: {"status": "notfound"} I'm working on the assumption that it's currently only searching the ISBN. If you plug that ISBN into the search form on the webpage, you get a result. OL will have to apply for an organisation code. See here for US MARC21: http://www.loc.gov/marc/organizations/ It would probably be worthwhile getting one (preferably the same) from the other countries' equivalents, too. I expect France has its own UNIMARC one. For now I'm using 'OpenLib', but this is easy to change. Tried sending a more complete record: {"authors":["Sifry, Micah L."],"publish_date":"2011","title":"WikiLeaks and the Age of Transparency","publisher":"OR Books","isbns":["9781935928324"]} and still got the 'notfound' response. Anand: are there test records out there on OL that I can use to experiment with without messing around with real entries? When using the uploader thing with: <form action="http://openlibrary.org/api/ils_cover_upload" method="post" name="upload"> <input type="hidden" name="authorization" value="Bl4hB1AHblah==" /> <input type="hidden" name="olid" value="OL123TEST" /> <input type="hidden" name="redirect_url" id="ol_redirect_url" value="http://koha:8080/cgi-bin/koha/cataloguing/openlibrary.pl?biblionumber=8&redir=additem" /> <input type="file" name="file" /> <input type="submit" name="submit" value="Upload" /> </form> I get a document of type application/json with the content "None", rather than a redirect. Note that the auth values I provided aren't valid currently, nor is the OLID I'm using for testing, so I expect a failure. However, I also hope for a redirect. Robin, the ils_search API currently works only with the exact matches. Here is an example that works. $ curl -H 'content-type: application/json' -d '{"authors":["test"],"publish_date":null,"title":"Test1","publisher":null,"isbn":["978-1-935928-32-4"]}' http://openlibrary.org/api/ils_search {"status": "found", "cover": {"small": "http://covers.openlibrary.org/b/id/6685633-S.jpg", "large": "http://covers.openlibrary.org/b/id/6685633-L.jpg", "medium": "http://covers.openlibrary.org/b/id/6685633-M.jpg"}, "olid": "OL24605334M", "key": "/books/OL24605334M"} I'll work on improving it in next couple of days. And I forgot to deploy the upload API to production. Sorry about it. It is working now. Small correction to the ils_search API. It accepts "isbn" not "isbns". Exact ISBN matches are problem for Koha side. We can't re-create exact format since parts of it denote country, publisher, edition and even if we know where to insert dash for country, guessing correct split between country and publisher is impossible. I noticed that general web search on OpenLibrary site using ISBNs without dashes work, so there is that index somewhere, can we get it for /ils_search ? Given wiki nature of OpenLibrary (and theoretical possibility of editing ISBN dashes) I think it makes sense :-) Robin in fact runs following regexp before calling your API: s/[^0-9X]//g just to clean-up data from Koha before submitting. The ils_search API is already improved to handle hyphens in the ISBNs. It even handles the isbn-10 to isbn-13 (and vice-versa) conversion internally. We are working on implementing the title/author match when isbn is not provided. Hm? Example included above works, but when I remove slashes it doesn't: $ curl -H 'content-type: application/json' -d '{"authors":["test"],"publish_date":null,"title":"Test1","publisher":null,"isbn":["9781935928324"]}' http://openlibrary.org/api/ils_search {"status": "notfound"} Test scenario: 1. open OpenLibrary account with name ending in Bot to indicate it's a robot 2. edit OpenLibraryUsername and OpenLibraryPassword system preferences (link to create page handy is included in preference description) 3. change UploadOpenLibraryCovers to ask for cover upload 4. ?? It seems that git checkout miss cataloguing/openlibrary.pl which is referenced from cataloguing/addbiblio.pl Whoops, the openlibrary.pl file is somewhat important. I'll fix that up soon. Also note that this is still a work in progress, I haven't had a lot of time to finish it up since getting back. Hope to soon though. I've added the openlibrary.pl file now. Fixed ils_search. $ curl -H 'content-type: application/json' -d '{"authors":["test"],"publish_date":null,"title":"Test1","publisher":null,"isbn":["9781935928-324"]}' http://openlibrary.org/api/ils_search {"status": "found", "cover": {"small": "http://covers.openlibrary.org/b/id/6685633-S.jpg", "large": "http://covers.openlibrary.org/b/id/6685633-L.jpg", "medium": "http://covers.openlibrary.org/b/id/6685633-M.jpg"}, "olid": "OL24605334M", "key": "/books/OL24605334M"} I'm refactoring parts of the OL import system to support this. There's some non trivial work from our end. I'll keep this bug posted with the details. (In reply to Noufal Ibrahim from comment #18) > I'm refactoring parts of the OL import system to support this. There's some > non trivial work from our end. I'll keep this bug posted with the details. I see this bug has been sitting for a while. Maybe we could get an update on the status of these changes? Now that OL has been added to the SISC list with identifier "openlib" it is feasible (and correct) to add an OpenLibrary ID to a MARC record as 024 7 _ | $2 openlib | $a <OILD> |