forked from pkp/orcidProfile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
OrcidProfileSettingsForm.inc.php
99 lines (85 loc) · 2.6 KB
/
OrcidProfileSettingsForm.inc.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<?php
/**
* @file plugins/generic/googleAnalytics/OrcidProfileSettingsForm.inc.php
*
* Copyright (c) 2015-2019 University of Pittsburgh
* Copyright (c) 2014-2019 Simon Fraser University
* Copyright (c) 2003-2019 John Willinsky
* Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
*
* @class OrcidProfileSettingsForm
* @ingroup plugins_generic_orcidProfile
*
* @brief Form for site admins to modify ORCID Profile plugin settings
*/
import('lib.pkp.classes.form.Form');
class OrcidProfileSettingsForm extends Form {
const CONFIG_VARS = array(
'orcidProfileAPIPath' => 'string',
'orcidClientId' => 'string',
'orcidClientSecret' => 'string',
'sendMailToAuthorsOnPublication' => 'bool',
'logLevel' => 'string');
/** @var $contextId int */
var $contextId;
/** @var $plugin object */
var $plugin;
/**
* Constructor
* @param $plugin object
* @param $contextId int
*/
function __construct(&$plugin, $contextId) {
$this->contextId = $contextId;
$this->plugin =& $plugin;
parent::__construct($plugin->getTemplateResource('settingsForm.tpl'));
if(!$this->plugin->isGloballyConfigured()) {
$this->addCheck(new FormValidator($this, 'orcidProfileAPIPath', 'required',
'plugins.generic.orcidProfile.manager.settings.orcidAPIPathRequired'));
}
$this->addCheck(new FormValidatorPost($this));
$this->addCheck(new FormValidatorCSRF($this));
}
/**
* Initialize form data.
*/
function initData() {
$contextId = $this->contextId;
$plugin =& $this->plugin;
$this->_data = array();
foreach (self::CONFIG_VARS as $configVar => $type) {
$this->_data[$configVar] = $plugin->getSetting($contextId, $configVar);
}
}
/**
* Assign form data to user-submitted data.
*/
function readInputData() {
$this->readUserVars(array_keys(self::CONFIG_VARS));
}
/**
* Fetch the form.
* @copydoc Form::fetch()
*/
function fetch($request, $template = null, $display = false) {
$templateMgr = TemplateManager::getManager($request);
$templateMgr->assign('globallyConfigured', $this->plugin->isGloballyConfigured());
$templateMgr->assign('pluginName', $this->plugin->getName());
return parent::fetch($request, $template, $display);
}
/**
* Save settings.
*/
function execute() {
$plugin =& $this->plugin;
$contextId = $this->contextId;
foreach (self::CONFIG_VARS as $configVar => $type) {
if ($configVar === 'orcidProfileAPIPath') {
$plugin->updateSetting($contextId, $configVar, trim($this->getData($configVar), "\"\';"), $type);
}
else {
$plugin->updateSetting($contextId, $configVar, $this->getData($configVar), $type);
}
}
}
}