Skip to content
Permalink
Browse files

Fix ResearchGate translator (#1787)

  • Loading branch information...
GuyAglionby authored and adam3smith committed Dec 14, 2018
1 parent e5ff91b commit f9de522a9374b39b8c0690b6b1894bc8eed8a026
Showing with 14 additions and 10 deletions.
  1. +14 −10 ResearchGate.js
@@ -9,7 +9,7 @@
"inRepository": true,
"translatorType": 4,
"browserSupport": "gcsibv",
"lastUpdated": "2018-01-28 01:52:07"
"lastUpdated": "2018-11-26 16:14:54"
}

/*
@@ -39,10 +39,9 @@
// attr()/text() v2
function attr(docOrElem,selector,attr,index){var elem=index?docOrElem.querySelectorAll(selector).item(index):docOrElem.querySelector(selector);return elem?elem.getAttribute(attr):null}function text(docOrElem,selector,index){var elem=index?docOrElem.querySelectorAll(selector).item(index):docOrElem.querySelector(selector);return elem?elem.textContent:null}


function detectWeb(doc, url) {
if (url.indexOf('/publication/')>-1) {
var type = text(doc, 'strong.publication-meta-type');
var type = text(doc, 'div.publication-meta strong');
if (!type) {
//for logged in users (yes, really...)
type = text(doc, 'b[data-reactid]');
@@ -63,19 +62,20 @@ function detectWeb(doc, url) {
case "Presentation":
return "presentation";
default:
Z.debug(type);
return "book";
}
} else if ((url.indexOf('/search?')>-1 || url.indexOf('/profile/')) && getSearchResults(doc, true)) {
} else if ((url.includes('/search?') || url.includes('/profile/') || url.includes('/scientific-contributions/')) && getSearchResults(doc, true)) {
return "multiple";
}
}


function getSearchResults(doc, checkOnly) {
var items = {};
var found = false;
var rows = doc.querySelectorAll('a.publication-title, a.js-publication-title-link, a[itemprop="mainEntityOfPage"]');
if (!rows.length) {
rows = ZU.xpath(doc, '//div[@itemprop="headline"]/a[contains(@class,"nova-e-link")]');
}
for (var i=0; i<rows.length; i++) {
var href = rows[i].href;
var title = ZU.trimInternal(rows[i].textContent);
@@ -87,7 +87,6 @@ function getSearchResults(doc, checkOnly) {
return found ? items : false;
}


function doWeb(doc, url) {
if (detectWeb(doc, url) == "multiple") {
Zotero.selectItems(getSearchResults(doc, false), function (items) {
@@ -106,7 +105,6 @@ function doWeb(doc, url) {
}



function scrape(doc, url) {
var type = detectWeb(doc, url);

@@ -117,7 +115,7 @@ function scrape(doc, url) {
if (uidURL) uid = uidURL[1];
}
uid = uid.replace('PB:', '');
var risURL = "https://www.researchgate.net/publicliterature.PublicationHeaderDownloadCitation.downloadCitation.html?publicationUid=" + uid + "&fileType=RIS&citationAndAbstract=true";
var risURL = "https://www.researchgate.net/publicliterature.PublicationHeaderDownloadCitation.downloadCitation.html?publicationUid=" + uid + "&fileType=RIS&citation=citationAndAbstract";
var pdfURL = attr(doc, 'meta[property="citation_pdf_url"]', 'content');

ZU.doGet(risURL, function(text) {
@@ -156,7 +154,7 @@ function scrape(doc, url) {
var testCases = [
{
"type": "web",
"url": "https://www.researchgate.net/publication/318069783_Academic_social_networking_sites_comparative_analysis_of_ResearchGate_Academiaedu_Mendeley_and_Zotero",
"url": "https://www.researchgate.net/publication/318069783_Academic_social_networking_sites_Comparative_analysis_of_ResearchGate_Academiaedu_Mendeley_and_Zotero",
"items": [
{
"itemType": "journalArticle",
@@ -171,6 +169,7 @@ var testCases = [
"date": "June 30, 2017",
"DOI": "10.1108/ILS-03-2017-0012",
"abstractNote": "Purpose\n\nThe purpose of the study is to compare four popular academic social networking sites (ASNSs) viz. ResearchGate, Academia.edu, Mendeley and Zotero.\n\nDesign/methodology/approach\n\nEvaluation method has been used with the help of checklist covering various features of ASNSs. A structured checklist has been prepared to compare four popular ASNSs, comprising 198 dichotomous questions divided into 12 broad categories.\n\nFindings\n\nThe study found that performance of ASNSs using the latest features and services is not up to the mark and none of the site rated as ‘Excellent’. The sites lack in incorporation of session filters, output features, privacy settings & text display, search and browsing fields. Availability of bibilographic features and general features are poor in these sites. Further, altmetrics and analytics features are not incorporated properly. User interface of the sites need to improve to draw researchers to use them. The study report reveals that ResearchGate scored the highest, 61.1 percent points, and was ranked ‘above average’, followed by Academia.edu with 48.0 percent and Mendeley with 43.9 percent are ranked ‘average’. However, the Zotero (38.9 percent) was ranked ‘below average’.\n\nPractical implications\n\nAccreditation agencies can identify suitable sites in the evaluation of institutions’ research output. Further, students and faculty members can choose the site suiting their needs. Library and information science professionals can utilize the checklist to impart training to the academic community which can help fostering research and development activities.\n\nOriginality/value\n\nThe study identifies features that ought to be available in a model ASNS. These features are categorized into 12 broad categories. The findings can also be used by developers of the sites to enhance functionalities. Institutions can choose suitable sites while collaborating with other institutions.",
"journalAbbreviation": "Information and Learning Science",
"libraryCatalog": "ResearchGate",
"pages": "298-316",
"publicationTitle": "Information and Learning Science",
@@ -371,6 +370,11 @@ var testCases = [
"type": "web",
"url": "https://www.researchgate.net/profile/Noga_Alon",
"items": "multiple"
},
{
"type": "web",
"url": "https://www.researchgate.net/scientific-contributions/2109740616_Daniela_Hombach",
"items": "multiple"
}
]
/** END TEST CASES **/

0 comments on commit f9de522

Please sign in to comment.
You can’t perform that action at this time.