Tweak display of attachment status lines in connector for PDF retrieval
Generally speaking, don't show a status line unless we have reason to believe we'll be saving something.
This commit is contained in:
parent
ce5be0bc75
commit
9fec063f4e
3 changed files with 52 additions and 35 deletions
|
@ -896,6 +896,7 @@ Zotero.Attachments = new function(){
|
||||||
*
|
*
|
||||||
* @param {Zotero.Item} item
|
* @param {Zotero.Item} item
|
||||||
* @param {String[]} [methods=['doi', 'url', 'oa', 'custom']]
|
* @param {String[]} [methods=['doi', 'url', 'oa', 'custom']]
|
||||||
|
* @param {Boolean} [automatic=false] - Only include custom resolvers with `automatic: true`
|
||||||
* @return {Object[]} - An array of urlResolvers (see downloadFirstAvailableFile())
|
* @return {Object[]} - An array of urlResolvers (see downloadFirstAvailableFile())
|
||||||
*/
|
*/
|
||||||
this.getPDFResolvers = function (item, methods = ['doi', 'url', 'oa', 'custom'], automatic) {
|
this.getPDFResolvers = function (item, methods = ['doi', 'url', 'oa', 'custom'], automatic) {
|
||||||
|
|
|
@ -1070,7 +1070,9 @@ Zotero.Server.Connector.Progress.prototype = {
|
||||||
// TODO: Change to progressID instead of id once we stop prepending
|
// TODO: Change to progressID instead of id once we stop prepending
|
||||||
// the sessionID to support older connector versions
|
// the sessionID to support older connector versions
|
||||||
if (attachment.id == progressID) {
|
if (attachment.id == progressID) {
|
||||||
return attachment.progress;
|
// TODO: Remove
|
||||||
|
return attachment.progress == -1 ? false : attachment.progress;
|
||||||
|
//return attachment.progress;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -196,16 +196,11 @@ Zotero.Translate.ItemSaver.prototype = {
|
||||||
// possible downloads.
|
// possible downloads.
|
||||||
//
|
//
|
||||||
// TODO: Separate pref?
|
// TODO: Separate pref?
|
||||||
var pdfResolvers = new Map();
|
var openAccessPDFURLs = new Map();
|
||||||
if (Zotero.Prefs.get('downloadAssociatedFiles')
|
if (Zotero.Prefs.get('downloadAssociatedFiles')
|
||||||
// TEMP: Limit to dev builds
|
// TEMP: Limit to dev builds
|
||||||
&& Zotero.isDevBuild) {
|
&& Zotero.isDevBuild) {
|
||||||
for (let item of items) {
|
for (let item of items) {
|
||||||
let doi = item.getField('DOI');
|
|
||||||
if (!doi) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
let jsonItem = jsonByItem.get(item);
|
let jsonItem = jsonByItem.get(item);
|
||||||
|
|
||||||
// Skip items with translated PDF attachments
|
// Skip items with translated PDF attachments
|
||||||
|
@ -215,11 +210,15 @@ Zotero.Translate.ItemSaver.prototype = {
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
let resolvers = this._getPDFResolvers(item);
|
let resolvers = Zotero.Attachments.getPDFResolvers(item, ['oa']);
|
||||||
pdfResolvers.set(item, resolvers);
|
if (!resolvers.length) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
let urlObjects = await resolvers[0]();
|
||||||
|
openAccessPDFURLs.set(item, urlObjects);
|
||||||
// If there are possible URLs, create a status line for the PDF
|
// If there are possible URLs, create a status line for the PDF
|
||||||
if (resolvers.length) {
|
if (urlObjects.length) {
|
||||||
let title = Zotero.getString('findPDF.searchingForAvailablePDFs');
|
let title = Zotero.getString('findPDF.openAccessPDF');
|
||||||
let jsonAttachment = this._makeJSONAttachment(jsonItem.id, title);
|
let jsonAttachment = this._makeJSONAttachment(jsonItem.id, title);
|
||||||
jsonItem.attachments.push(jsonAttachment);
|
jsonItem.attachments.push(jsonAttachment);
|
||||||
attachmentCallback(jsonAttachment, 0);
|
attachmentCallback(jsonAttachment, 0);
|
||||||
|
@ -268,28 +267,48 @@ Zotero.Translate.ItemSaver.prototype = {
|
||||||
x => x.mimeType == 'application/pdf' && x.isPrimaryPDF
|
x => x.mimeType == 'application/pdf' && x.isPrimaryPDF
|
||||||
);
|
);
|
||||||
|
|
||||||
// We might already have retrieved possible OA URLs above, if there wasn't a PDF
|
// If no translated, no OA, and no custom, don't show a line
|
||||||
// from the translator. If not, get them now.
|
// If no translated and potential OA, show "Open-Access PDF"
|
||||||
let resolvers = pdfResolvers.get(item);
|
// If no translated, no OA, but custom, show custom when it starts
|
||||||
if (!resolvers) {
|
// If translated fails and potential OA, show "Open-Access PDF"
|
||||||
resolvers = this._getPDFResolvers(item);
|
// If translated fails, no OA, no custom, fail original
|
||||||
}
|
// If translated fails, no OA, but custom, change to custom when it starts
|
||||||
|
let resolvers = openAccessPDFURLs.get(item);
|
||||||
|
// No translated PDF, so we checked for OA PDFs above
|
||||||
|
if (resolvers) {
|
||||||
|
// Add custom resolvers
|
||||||
|
resolvers.push(...Zotero.Attachments.getPDFResolvers(item, ['custom'], true));
|
||||||
|
|
||||||
if (!resolvers.length) {
|
// No translated, no OA, no custom, no status line
|
||||||
// If there was an existing status line, use that
|
if (!resolvers.length) {
|
||||||
if (jsonAttachment) {
|
continue;
|
||||||
attachmentCallback(jsonAttachment, false);
|
|
||||||
}
|
}
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
// If no status line, add one, since we have something to try
|
// No translated, no OA, just potential custom, so create a status line
|
||||||
if (!jsonAttachment) {
|
if (!jsonAttachment) {
|
||||||
jsonAttachment = this._makeJSONAttachment(
|
jsonAttachment = this._makeJSONAttachment(
|
||||||
jsonItem.id, Zotero.getString('findPDF.searchingForAvailablePDFs')
|
jsonItem.id, Zotero.getString('findPDF.searchingForAvailablePDFs')
|
||||||
);
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// There was a translated PDF, so we didn't check for OA PDFs yet and didn't
|
||||||
|
// update the status line
|
||||||
|
else {
|
||||||
|
// Look for OA PDFs now
|
||||||
|
resolvers = Zotero.Attachments.getPDFResolvers(item, ['oa']);
|
||||||
|
if (resolvers.length) {
|
||||||
|
resolvers = await resolvers[0]();
|
||||||
|
}
|
||||||
|
|
||||||
|
// Add custom resolvers
|
||||||
|
resolvers.push(...Zotero.Attachments.getPDFResolvers(item, ['custom'], true));
|
||||||
|
|
||||||
|
// Failed translated, no OA, no custom, so fail the existing translator line
|
||||||
|
if (!resolvers.length) {
|
||||||
|
attachmentCallback(jsonAttachment, false);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
attachmentCallback(jsonAttachment, 0);
|
|
||||||
|
|
||||||
let attachment;
|
let attachment;
|
||||||
try {
|
try {
|
||||||
|
@ -346,11 +365,6 @@ Zotero.Translate.ItemSaver.prototype = {
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
||||||
_getPDFResolvers: function (item) {
|
|
||||||
return Zotero.Attachments.getPDFResolvers(item, ['oa', 'custom']);
|
|
||||||
},
|
|
||||||
|
|
||||||
|
|
||||||
"saveCollections": Zotero.Promise.coroutine(function* (collections) {
|
"saveCollections": Zotero.Promise.coroutine(function* (collections) {
|
||||||
var collectionsToProcess = collections.slice();
|
var collectionsToProcess = collections.slice();
|
||||||
// Use first collection passed to translate process as the root
|
// Use first collection passed to translate process as the root
|
||||||
|
|
Loading…
Add table
Reference in a new issue