Permalink
Join GitHub today
GitHub is home to over 31 million developers working together to host and review code, manage projects, and build software together.
Sign up
Fetching contributors…
Cannot retrieve contributors at this time
{ | |
"translatorID": "11614156-f421-4e89-8ce0-a5e69ce3ebed", | |
"label": "Library Genesis", | |
"creator": "Reverend Wicks Cherrycoke", | |
"target": "^https?://(libgen\\.io|gen\\.lib\\.rus\\.ec)/", | |
"minVersion": "3.0", | |
"maxVersion": "", | |
"priority": 100, | |
"inRepository": true, | |
"translatorType": 4, | |
"browserSupport": "gcsi", | |
"lastUpdated": "2017-03-11 19:59:48" | |
} | |
/* | |
***** BEGIN LICENSE BLOCK ***** | |
Copyright © 2016 Rev. Wicks Cherrycoke | |
This file is part of Zotero. | |
Zotero is free software: you can redistribute it and/or modify | |
it under the terms of the GNU Affero General Public License as published by | |
the Free Software Foundation, either version 3 of the License, or | |
(at your option) any later version. | |
Zotero is distributed in the hope that it will be useful, | |
but WITHOUT ANY WARRANTY; without even the implied warranty of | |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
GNU Affero General Public License for more details. | |
You should have received a copy of the GNU Affero General Public License | |
along with Zotero. If not, see <http://www.gnu.org/licenses/>. | |
***** END LICENSE BLOCK ***** | |
*/ | |
var MIME_TYPES = { | |
'pdf': 'application/pdf', | |
'epub': 'application/epub+zip', | |
'mobi': 'application/x-mobipocket-ebook', | |
'djvu': 'image/vnd.djvu' | |
}; | |
var MD5_REGEX = /md5=([0-9a-fA-F]+)/; | |
var AUTHOR_REGEX = /author\s*=\s*{(.*?)}/; | |
function detectWeb(doc, url) { | |
if (url.indexOf('book/index.php') != -1) { | |
return 'book'; | |
} | |
} | |
function doWeb(doc, url) { | |
var md5Hash = MD5_REGEX.exec(url)[1]; | |
// To save some work, we use the provided bibtex file to retrieve the | |
// metadata and use Zotero's built-in bibtex importer | |
var bibtexUrl = "/book/bibtex.php?md5=" + md5Hash; | |
ZU.processDocuments(bibtexUrl, function(bibtexDoc) { | |
var bibtexStr = bibtexDoc.getElementsByTagName("textarea")[0].value; | |
var translator = Zotero.loadTranslator('import'); | |
translator.setTranslator('9cb70025-a888-4a29-a210-93ec52da40d4'); | |
translator.setString(bibtexStr); | |
translator.setHandler('itemDone', function(obj, item) { | |
// The bibtex messes up multiple authors, so we set them ourselves | |
var authorStr = AUTHOR_REGEX.exec(bibtexStr)[1]; | |
if (authorStr.indexOf(';') != -1) { | |
item.creators = authorStr.split(";").map(function(author) { | |
// Are we dealing with "last, first" formatting? | |
var useCommas = (author.indexOf(",") != -1); | |
return ZU.cleanAuthor(author, "author", useCommas); | |
}); | |
} else { | |
item.creators = authorStr.split(",").map(function(author) { | |
return ZU.cleanAuthor(author, "author", false); | |
}); | |
} | |
// It also messes up multiple ISBNs, so we just pick the first one | |
if (item.ISBN) { | |
[' ', ','].forEach(function(splitChar) { | |
if (item.ISBN.indexOf(splitChar) != -1) { | |
item.ISBN = item.ISBN.split(splitChar)[0]; | |
} | |
}); | |
} | |
// Add the full text attachment | |
/* NOTE: For now this is commented out, pending a decision on how to | |
deal with possibly huge downloads, see issue #1056 for details. | |
var extension = ZU.xpathText( | |
doc, '//td[contains(./font/text(), "Extension")]/following-sibling::td'); | |
var downloadUrl = "/get/" + md5Hash + "/" + md5Hash + "." + extension; | |
item.attachments.push({ | |
title: "Full Text", | |
url: downloadUrl, | |
mimeType: MIME_TYPES[extension]}); | |
*/ | |
item.complete(); | |
}); | |
translator.translate(); | |
}); | |
} | |
/** BEGIN TEST CASES **/ | |
var testCases = [ | |
{ | |
"type": "web", | |
"url": "http://libgen.io/book/index.php?md5=3F3AE2E1C6293A4550904E2587FF1441", | |
"items": [ | |
{ | |
"itemType": "book", | |
"title": "Gravity's Rainbow, domination, and freedom", | |
"creators": [ | |
{ | |
"firstName": "Luc", | |
"lastName": "Herman", | |
"creatorType": "author" | |
}, | |
{ | |
"firstName": "Steven", | |
"lastName": "Weisenburger", | |
"creatorType": "author" | |
}, | |
{ | |
"firstName": "Thomas", | |
"lastName": "Pynchon", | |
"creatorType": "author" | |
} | |
], | |
"date": "2013", | |
"ISBN": "9780820335087", | |
"itemID": "book:1425220", | |
"libraryCatalog": "Library Genesis", | |
"publisher": "The University of Georgia Press", | |
"url": "http://gen.lib.rus.ec/book/index.php?md5=3f3ae2e1c6293a4550904e2587ff1441", | |
"attachments": [], | |
"tags": [], | |
"notes": [], | |
"seeAlso": [] | |
} | |
] | |
}, | |
{ | |
"type": "web", | |
"url": "http://libgen.io/book/index.php?md5=8AE55C8664341707B748EADE479C02C1", | |
"items": [ | |
{ | |
"itemType": "book", | |
"title": "Mason & Dixon: A Novel", | |
"creators": [ | |
{ | |
"firstName": "Thomas", | |
"lastName": "Pynchon", | |
"creatorType": "author" | |
} | |
], | |
"date": "1998", | |
"ISBN": "9780805058376", | |
"itemID": "book:536374", | |
"libraryCatalog": "Library Genesis", | |
"publisher": "Holt Paperbacks", | |
"shortTitle": "Mason & Dixon", | |
"url": "http://gen.lib.rus.ec/book/index.php?md5=8AE55C8664341707B748EADE479C02C1", | |
"attachments": [], | |
"tags": [], | |
"notes": [], | |
"seeAlso": [] | |
} | |
] | |
}, | |
{ | |
"type": "web", | |
"url": "http://libgen.io/book/index.php?md5=16C402F4F9B737EA33C4EA5D938331A0", | |
"items": [ | |
{ | |
"itemType": "book", | |
"title": "Nineteen Eighty-Four", | |
"creators": [ | |
{ | |
"firstName": "George", | |
"lastName": "Orwell", | |
"creatorType": "author" | |
}, | |
{ | |
"firstName": "Erich", | |
"lastName": "Fromm", | |
"creatorType": "author" | |
}, | |
{ | |
"firstName": "Thomas", | |
"lastName": "Pynchon", | |
"creatorType": "author" | |
}, | |
{ | |
"firstName": "Daniel", | |
"lastName": "Lagin", | |
"creatorType": "author" | |
} | |
], | |
"date": "2003", | |
"ISBN": "9780452284234", | |
"itemID": "book:266853", | |
"libraryCatalog": "Library Genesis", | |
"publisher": "Plume", | |
"url": "http://gen.lib.rus.ec/book/index.php?md5=16C402F4F9B737EA33C4EA5D938331A0", | |
"attachments": [], | |
"tags": [], | |
"notes": [], | |
"seeAlso": [] | |
} | |
] | |
}, | |
{ | |
"type": "web", | |
"url": "http://libgen.io/book/index.php?md5=A05BE4942325AEA362E2AFF8C305B0DE", | |
"items": [ | |
{ | |
"itemType": "book", | |
"title": "Deep Learning [pre-pub version]", | |
"creators": [ | |
{ | |
"firstName": "Ian", | |
"lastName": "Goodfellow", | |
"creatorType": "author" | |
}, | |
{ | |
"firstName": "Yoshua", | |
"lastName": "Bengio", | |
"creatorType": "author" | |
}, | |
{ | |
"firstName": "Aaron", | |
"lastName": "Courville", | |
"creatorType": "author" | |
} | |
], | |
"date": "2016", | |
"itemID": "book:1491328", | |
"libraryCatalog": "Library Genesis", | |
"publisher": "MIT Press", | |
"url": "http://gen.lib.rus.ec/book/index.php?md5=a05be4942325aea362e2aff8c305b0de", | |
"attachments": [], | |
"tags": [], | |
"notes": [], | |
"seeAlso": [] | |
} | |
] | |
}, | |
{ | |
"type": "web", | |
"url": "http://gen.lib.rus.ec/book/index.php?md5=A2560CC676A29BD4B289A2034894AF69", | |
"items": [ | |
{ | |
"itemType": "book", | |
"title": "African ivories", | |
"creators": [ | |
{ | |
"firstName": "Ezra", | |
"lastName": "Kate", | |
"creatorType": "author" | |
} | |
], | |
"date": "1984", | |
"itemID": "book:882539", | |
"libraryCatalog": "Library Genesis", | |
"publisher": "The Metropolitan Museum of Art", | |
"url": "http://gen.lib.rus.ec/book/index.php?md5=a2560cc676a29bd4b289a2034894af69", | |
"attachments": [], | |
"tags": [], | |
"notes": [], | |
"seeAlso": [] | |
} | |
] | |
} | |
] | |
/** END TEST CASES **/ |