Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

OpenAIRE plugin 2.4.8 #1383

Open
wants to merge 10 commits into
base: ojs-stable-2_4_8
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions plugins/generic/openAIRE/OpenAIREDAO.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,10 @@
* @file plugins/generic/openAIRE/OpenAIREDAO.inc.php
*
* Copyright (c) 2013-2017 Simon Fraser University
* Copyright (c) 2003-2016 John Willinsky
* Copyright (c) 2003-2017 John Willinsky
* Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
*
* Contributed by 4Science (http://www.4science.it).
*
* @class OpenAIREDAO
* @ingroup plugins_generic_openAIRE
Expand Down Expand Up @@ -56,7 +58,7 @@ function &getOpenAIRERecordsOrIdentifiers($setIds, $from, $until, $offset, $limi
$total = $result->RecordCount();

$result->Move($offset);
for ($count = 0; $count < $limit && !$result->EOF; $count++) {
for ($count = 0; !$result->EOF; $count++) {
$row =& $result->GetRowAssoc(false);
if ($this->isOpenAIRERecord($row)) {
$records[] =& $this->$funcName($row);
Expand All @@ -67,6 +69,8 @@ function &getOpenAIRERecordsOrIdentifiers($setIds, $from, $until, $offset, $limi
$result->Close();
unset($result);

$records = array_slice($records, $offset, $limit);

return $records;
}

Expand Down Expand Up @@ -112,6 +116,4 @@ function isOpenAIREArticle($articleId) {
}


}

?>
}
74 changes: 63 additions & 11 deletions plugins/generic/openAIRE/OpenAIREPlugin.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@
* @file plugins/generic/openAIRE/OpenAIREPlugin.inc.php
*
* Copyright (c) 2013-2017 Simon Fraser University
* Copyright (c) 2003-2016 John Willinsky
* Copyright (c) 2003-2017 John Willinsky
* Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
*
* Contributed by 4Science (http://www.4science.it).
*
* @class OpenAIREPlugin
* @ingroup plugins_generic_openAIRE
*
Expand All @@ -15,6 +17,8 @@

import('lib.pkp.classes.plugins.GenericPlugin');

define('OPENAIRE_API_URL', 'http://api.openaire.eu/');
define('OPENAIRE_SEARCH_PROJECTS', 'search/projects');

class OpenAIREPlugin extends GenericPlugin {

Expand All @@ -32,6 +36,8 @@ function register($category, $path) {
$openAIREDao = new OpenAIREDAO();
DAORegistry::registerDAO('OpenAIREDAO', $openAIREDao);

// Insert openAIRE callback
HookRegistry::register('LoadHandler', array(&$this, 'setupCallbackHandler'));

// Insert new field into author metadata submission form (submission step 3) and metadata form
HookRegistry::register('Templates::Author::Submit::AdditionalMetadata', array($this, 'metadataFieldEdit'));
Expand Down Expand Up @@ -83,6 +89,36 @@ function getDescription() {
return __('plugins.generic.openAIRE.description');
}

/**
* Get page handler path for this plugin.
* @return string Path to plugin's page handler
*/
function getHandlerPath() {
return $this->getPluginPath() . DIRECTORY_SEPARATOR . 'pages';
}

/**
* Get the template path for this plugin.
*/
function getTemplatePath() {
return parent::getTemplatePath() . 'templates/';
}

/**
* Hook callback: register pages for each sushi-lite method
* This URL is of the form: openaireapi/{$openAIRErequest}
* @see PKPPageRouter::route()
*/
function setupCallbackHandler($hookName, $params) {
$page = $params[0];
if ($this->getEnabled() && $page == 'openaireapi') {
$this->import('pages/OpenAIREHandler');
define('HANDLER_CLASS', 'OpenAIREHandler');
return true;
}
return false;
}

/*
* Metadata
*/
Expand All @@ -101,7 +137,7 @@ function metadataFieldEdit($hookName, $params) {
/**
* Add projectID to the metadata view
*/
function metadataFieldView($hookName, $params) {
function metadataFieldView($hookName, $params) {
$smarty =& $params[1];
$output =& $params[2];

Expand All @@ -115,17 +151,26 @@ function metadataFieldView($hookName, $params) {
function articleSubmitGetFieldNames($hookName, $params) {
$fields =& $params[1];
$fields[] = 'projectID';
$fields[] = 'projectTitle';
$fields[] = 'projectFunder';
$fields[] = 'projectFundingProgram';
return false;
}

/**
* Set article projectID
*/
function metadataExecute($hookName, $params) {
function metadataExecute($hookName, $params) {
$form =& $params[0];
$article =& $form->article;
$formProjectID = $form->getData('projectID');
$formProjectTitle = $form->getData('projectTitle');
$formFunder = $form->getData('projectFunder');
$formFunderProgram = $form->getData('projectFundingProgram');
$article->setData('projectID', $formProjectID);
$article->setData('projectTitle', $formProjectTitle);
$article->setData('projectFunder', $formFunder);
$article->setData('projectFundingProgram', $formFunderProgram);
return false;
}

Expand All @@ -146,8 +191,14 @@ function addCheck($hookName, $params) {
function metadataInitData($hookName, $params) {
$form =& $params[0];
$article =& $form->article;
$articleProjectID = $article->getData('projectID');
$articleProjectID = $article->getData('projectID');
$articleProjectTitle = $article->getData('projectTitle');
$articleFunder = $article->getData('projectFunder');
$articleFundingProgram = $article->getData('projectFundingProgram');
$form->setData('projectID', $articleProjectID);
$form->setData('projectTitle', $articleProjectTitle);
$form->setData('projectFunder', $articleFunder);
$form->setData('projectFundingProgram', $articleFundingProgram);
return false;
}

Expand All @@ -157,10 +208,12 @@ function metadataInitData($hookName, $params) {
function metadataReadUserVars($hookName, $params) {
$userVars =& $params[1];
$userVars[] = 'projectID';
$userVars[] = 'projectTitle';
$userVars[] = 'projectFunder';
$userVars[] = 'projectFundingProgram';
return false;
}


/*
* OAI interface
*/
Expand Down Expand Up @@ -234,7 +287,9 @@ function changeDc11Desctiption($hookName, $params) {
// Determine OpenAIRE DC elements values
// OpenAIRE DC Relation
$articleProjectID = $article->getData('projectID');
$openAIRERelation = 'info:eu-repo/grantAgreement/EC/FP7/' . $articleProjectID;
$articleProjectFunder = $article->getData('projectFunder');
$articleProjectFundingProgram = $article->getData('projectFundingProgram');
$openAIRERelation = 'info:eu-repo/grantAgreement/' . $articleProjectFunder . '/' . $articleProjectFundingProgram . '/' . $articleProjectID;

// OpenAIRE DC Rights
$openAIRERights = 'info:eu-repo/semantics/';
Expand Down Expand Up @@ -315,8 +370,5 @@ function insertOpenAIREArticleTombstone($hookName, $params) {
$dataObjectTombstoneSettingsDao->updateSetting($articleTombstone->getId(), 'openaire', true, 'bool');
}
return false;
}


}
?>
}
}
6 changes: 3 additions & 3 deletions plugins/generic/openAIRE/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,10 @@
* @file plugins/generic/openAIRE/index.php
*
* Copyright (c) 2013-2017 Simon Fraser University
* Copyright (c) 2003-2016 John Willinsky
* Copyright (c) 2003-2017 John Willinsky
* Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
*
* Contributed by 4Science (http://www.4science.it).
*
* @ingroup plugins_generic_openAIRE
* @brief Wrapper for openAIRE plugin.
Expand All @@ -18,5 +20,3 @@
require_once('OpenAIREPlugin.inc.php');

return new OpenAIREPlugin();

?>
2 changes: 1 addition & 1 deletion plugins/generic/openAIRE/locale/ar_IQ/locale.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<!--
* plugins/generic/openAIRE/locale/ar_IQ/locale.xml
*
* Copyright (c) 2013-2017 Simon Fraser University
* Copyright (c) 2013-2016 Simon Fraser University Library
* Copyright (c) 2003-2016 John Willinsky
* Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
*
Expand Down
2 changes: 1 addition & 1 deletion plugins/generic/openAIRE/locale/ca_ES/locale.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<!--
* @file plugins/generic/openAIRE/locale/ca_ES/locale.xml
*
* Copyright (c) 2013-2017 Simon Fraser University
* Copyright (c) 2013-2016 Simon Fraser University Library
* Copyright (c) 2003-2016 John Willinsky
* Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
*
Expand Down
2 changes: 1 addition & 1 deletion plugins/generic/openAIRE/locale/cs_CZ/locale.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<!--
* plugins/generic/openAIRE/locale/cs_CZ/locale.xml
*
* Copyright (c) 2013-2017 Simon Fraser University
* Copyright (c) 2013-2016 Simon Fraser University Library
* Copyright (c) 2003-2016 John Willinsky
* Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
*
Expand Down
2 changes: 1 addition & 1 deletion plugins/generic/openAIRE/locale/da_DK/locale.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<!--
* plugins/generic/openAIRE/locale/da_DK/locale.xml
*
* Copyright (c) 2013-2017 Simon Fraser University
* Copyright (c) 2013-2016 Simon Fraser University Library
* Copyright (c) 2003-2016 John Willinsky
* Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
*
Expand Down
2 changes: 1 addition & 1 deletion plugins/generic/openAIRE/locale/de_DE/locale.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<!--
* plugins/generic/openAIRE/locale/de_DE/locale.xml
*
* Copyright (c) 2013-2017 Simon Fraser University
* Copyright (c) 2013-2016 Simon Fraser University Library
* Copyright (c) 2003-2016 John Willinsky
* Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
* OpenAIRE plugin localization strings for the de_DE (Deutsch (Deutschland)) locale.
Expand Down
18 changes: 16 additions & 2 deletions plugins/generic/openAIRE/locale/en_US/locale.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,31 @@
* plugins/generic/openAIRE/locale/en_US/locale.xml
*
* Copyright (c) 2013-2017 Simon Fraser University
* Copyright (c) 2003-2016 John Willinsky
* Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
* Copyright (c) 2003-2017 John Willinsky
* Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
*
* Contributed by 4Science (http://www.4science.it).
*
* OpenAIRE plugin localization strings
-->

<locale name="en_US" full_name="U.S. English">
<message key="plugins.generic.openAIRE.displayName">OpenAIRE</message>
<message key="plugins.generic.openAIRE.description">The OpenAIRE plugin adds the projectID element to the article metadata and extends the OAI-PMH interface according to the OpenAIRE Guidelines 1.1, helping OJS journals to become OpenAIRE compliant.</message>
<message key="plugins.generic.openAIRE.projectID">ProjectID</message>
<message key="plugins.generic.openAIRE.projectTitle">Project Title</message>
<message key="plugins.generic.openAIRE.projectFunder">Funder</message>
<message key="plugins.generic.openAIRE.projectFundingProgram">Funding Program</message>
<message key="plugins.generic.openAIRE.metadata">OpenAIRE Specific Metadata</message>
<message key="plugins.generic.openAIRE.projectID.description">(The projectID equals the Grant Agreement number)</message>
<message key="plugins.generic.openAIRE.projectIDValid">Please enter a valid projectID (6 numbers)</message>
<message key="plugins.generic.openAIRE.search">Find project</message>
<message key="plugins.generic.openAIRE.clear">Clear fields</message>
<message key="plugins.generic.openAIRE.searchBy">Search by</message>
<message key="plugins.generic.openAIRE.searchByGrant">Grant Id</message>
<message key="plugins.generic.openAIRE.searchByTitle">Title</message>
<message key="plugins.generic.openAIRE.searchPageTitle">Search the OpenAIRE metadata information</message>
<message key="plugins.generic.openAIRE.submitAction">Submit</message>
<message key="plugins.generic.openAIRE.searchResultsList">Choose and select the exact match from the list below:</message>
<message key="plugins.generic.openAIRE.noResults">No search results</message>
</locale>
2 changes: 1 addition & 1 deletion plugins/generic/openAIRE/locale/es_AR/locale.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<!--
* @file plugins/generic/openAIRE/locale/es_AR/locale.xml
*
* Copyright (c) 2013-2017 Simon Fraser University
* Copyright (c) 2013-2016 Simon Fraser University Library
* Copyright (c) 2003-2016 John Willinsky
* Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
*
Expand Down
2 changes: 1 addition & 1 deletion plugins/generic/openAIRE/locale/es_ES/locale.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<!--
* plugins/generic/openAIRE/locale/es_ES/locale.xml
*
* Copyright (c) 2013-2017 Simon Fraser University
* Copyright (c) 2013-2016 Simon Fraser University Library
* Copyright (c) 2003-2016 John Willinsky
* Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
*
Expand Down
2 changes: 1 addition & 1 deletion plugins/generic/openAIRE/locale/fr_CA/locale.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<!--
* @file plugins/generic/openAIRE/locale/fr_CA/locale.xml
*
* Copyright (c) 2013-2017 Simon Fraser University
* Copyright (c) 2013-2016 Simon Fraser University Library
* Copyright (c) 2003-2016 John Willinsky
* Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
*
Expand Down
2 changes: 1 addition & 1 deletion plugins/generic/openAIRE/locale/fr_FR/locale.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<!--
* @file plugins/generic/openAIRE/locale/fr_FR/locale.xml
*
* Copyright (c) 2013-2017 Simon Fraser University
* Copyright (c) 2013-2016 Simon Fraser University Library
* Copyright (c) 2003-2016 John Willinsky
* Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
*
Expand Down
2 changes: 1 addition & 1 deletion plugins/generic/openAIRE/locale/id_ID/locale.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<!--
* plugins/generic/openAIRE/locale/id_ID/locale.xml
*
* Copyright (c) 2013-2017 Simon Fraser University
* Copyright (c) 2013-2016 Simon Fraser University Library
* Copyright (c) 2003-2016 John Willinsky
* Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
*
Expand Down
18 changes: 16 additions & 2 deletions plugins/generic/openAIRE/locale/it_IT/locale.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,31 @@
* plugins/generic/openAIRE/locale/it_IT/locale.xml
*
* Copyright (c) 2013-2017 Simon Fraser University
* Copyright (c) 2003-2016 John Willinsky
* Copyright (c) 2003-2017 John Willinsky
* Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
*
* Contributed by 4Science (http://www.4science.it).
*
* OpenAIRE plugin localization strings for the it_IT locale.
-->

<locale name="it_IT" full_name="Italiano">
<message key="plugins.generic.openAIRE.displayName">OpenAIRE</message>
<message key="plugins.generic.openAIRE.description">Il plugin OpenAIRE aggiunge l'elemento projectID ai metadati degli articoli ed estende l'interfaccia OAI-PMH in accordo con le OpenAIRE Guidelines 1.1, permettendo alla rivista OJS di divenire compatibile con le specifiche OpenAIRE</message>
<message key="plugins.generic.openAIRE.projectID">ProjectID</message>
<message key="plugins.generic.openAIRE.projectID">ID progetto</message>
<message key="plugins.generic.openAIRE.projectTitle">Titolo progetto</message>
<message key="plugins.generic.openAIRE.projectFunder">Funder</message>
<message key="plugins.generic.openAIRE.projectFundingProgram">Funding Program</message>
<message key="plugins.generic.openAIRE.metadata">Metadati specifici per OpenAIRE</message>
<message key="plugins.generic.openAIRE.projectID.description">(Il projectID è uguale al numero del Grant Agreement)</message>
<message key="plugins.generic.openAIRE.projectIDValid">Inserisci un projectID valido</message>
<message key="plugins.generic.openAIRE.search">Cerca progetto</message>
<message key="plugins.generic.openAIRE.clear">Cancella campi</message>
<message key="plugins.generic.openAIRE.searchBy">Cerca per</message>
<message key="plugins.generic.openAIRE.searchByGrant">Grant Id</message>
<message key="plugins.generic.openAIRE.searchByTitle">Titolo</message>
<message key="plugins.generic.openAIRE.searchPageTitle">Cerca le informazioni tra i metadata di openAIRE</message>
<message key="plugins.generic.openAIRE.submitAction">Conferma</message>
<message key="plugins.generic.openAIRE.searchResultsList">Scegli e seleziona il risultato appropriato dalla seguente lista:</message>
<message key="plugins.generic.openAIRE.noResults">Nessun risultato trovato</message>
</locale>
2 changes: 1 addition & 1 deletion plugins/generic/openAIRE/locale/nl_NL/locale.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<!--
* plugins/generic/openAIRE/locale/nl_NL/locale.xml
*
* Copyright (c) 2013-2017 Simon Fraser University
* Copyright (c) 2013-2016 Simon Fraser University Library
* Copyright (c) 2003-2016 John Willinsky
* Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
*
Expand Down
2 changes: 1 addition & 1 deletion plugins/generic/openAIRE/locale/pl_PL/locale.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<!--
* @file plugins/generic/openAIRE/locale/pl_PL/locale.xml
*
* Copyright (c) 2013-2017 Simon Fraser University
* Copyright (c) 2013-2016 Simon Fraser University Library
* Copyright (c) 2003-2016 John Willinsky
* Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
*
Expand Down
2 changes: 1 addition & 1 deletion plugins/generic/openAIRE/locale/pt_BR/locale.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<!--
* plugins/generic/openAIRE/locale/pt_BR/locale.xml
*
* Copyright (c) 2013-2017 Simon Fraser University
* Copyright (c) 2013-2016 Simon Fraser University Library
* Copyright (c) 2003-2016 John Willinsky
* Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
*
Expand Down
Loading