| Server IP : 195.134.90.114 / Your IP : 216.73.216.86 Web Server : Apache/2.4.58 System : Linux nepub 6.8.0-88-generic #89-Ubuntu SMP PREEMPT_DYNAMIC Sat Oct 11 01:02:46 UTC 2025 x86_64 User : www-data ( 33) PHP Version : 8.2.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/html/public_html/plugins/pubIds/urn/classes/form/ |
Upload File : |
<?php
/**
* @file plugins/pubIds/urn/classes/form/URNSettingsForm.inc.php
*
* Copyright (c) 2014-2021 Simon Fraser University
* Copyright (c) 2003-2021 John Willinsky
* Distributed under the GNU GPL v3. For full terms see the file docs/COPYING.
*
* @class URNSettingsForm
* @ingroup plugins_pubIds_urn
*
* @brief Form for journal managers to setup URN plugin
*/
import('lib.pkp.classes.form.Form');
class URNSettingsForm extends Form {
//
// Private properties
//
/** @var integer */
var $_contextId;
/**
* Get the context ID.
* @return integer
*/
function _getContextId() {
return $this->_contextId;
}
/** @var URNPubIdPlugin */
var $_plugin;
/**
* Get the plugin.
* @return URNPubIdPlugin
*/
function _getPlugin() {
return $this->_plugin;
}
//
// Constructor
//
/**
* Constructor
* @param $plugin URNPubIdPlugin
* @param $contextId integer
*/
function __construct($plugin, $contextId) {
$this->_contextId = $contextId;
$this->_plugin = $plugin;
parent::__construct($plugin->getTemplateResource('settingsForm.tpl'));
$form = $this;
$this->addCheck(new FormValidatorCustom($this, 'urnObjects', 'required', 'plugins.pubIds.urn.manager.settings.urnObjectsRequired', function($enableIssueURN) use ($form) {
return $form->getData('enableIssueURN') || $form->getData('enablePublicationURN') || $form->getData('enableRepresentationURN');
}));
$this->addCheck(new FormValidatorRegExp($this, 'urnPrefix', 'required', 'plugins.pubIds.urn.manager.settings.form.urnPrefixPattern', '/^urn:[a-zA-Z0-9-]*:.*/'));
$this->addCheck(new FormValidatorCustom($this, 'urnIssueSuffixPattern', 'required', 'plugins.pubIds.urn.manager.settings.form.urnIssueSuffixPatternRequired', function($urnIssueSuffixPattern) use ($form) {
if ($form->getData('urnSuffix') == 'pattern' && $form->getData('enableIssueURN')) return $urnIssueSuffixPattern != '';
return true;
}));
$this->addCheck(new FormValidatorCustom($this, 'urnPublicationSuffixPattern', 'required', 'plugins.pubIds.urn.manager.settings.form.urnPublicationSuffixPatternRequired', function($urnPublicationSuffixPattern) use ($form) {
if ($form->getData('urnSuffix') == 'pattern' && $form->getData('enablePublicationURN')) return $urnPublicationSuffixPattern != '';
return true;
}));
$this->addCheck(new FormValidatorCustom($this, 'urnRepresentationSuffixPattern', 'required', 'plugins.pubIds.urn.manager.settings.form.urnRepresentationSuffixPatternRequired', function($urnRepresentationSuffixPattern) use ($form) {
if ($form->getData('urnSuffix') == 'pattern' && $form->getData('enableRepresentationURN')) return $urnRepresentationSuffixPattern != '';
return true;
}));
$this->addCheck(new FormValidatorUrl($this, 'urnResolver', 'required', 'plugins.pubIds.urn.manager.settings.form.urnResolverRequired'));
$this->addCheck(new FormValidatorPost($this));
$this->addCheck(new FormValidatorCSRF($this));
// for URN reset requests
import('lib.pkp.classes.linkAction.request.RemoteActionConfirmationModal');
$request = Application::get()->getRequest();
$this->setData('clearPubIdsLinkAction', new LinkAction(
'reassignURNs',
new RemoteActionConfirmationModal(
$request->getSession(),
__('plugins.pubIds.urn.manager.settings.urnReassign.confirm'),
__('common.delete'),
$request->url(null, null, 'manage', null, array('verb' => 'clearPubIds', 'plugin' => $plugin->getName(), 'category' => 'pubIds')),
'modal_delete'
),
__('plugins.pubIds.urn.manager.settings.urnReassign'),
'delete'
));
$this->setData('pluginName', $plugin->getName());
}
//
// Implement template methods from Form
//
/**
* @copydoc Form::fetch()
*/
function fetch($request, $template = null, $display = false) {
$urnNamespaces = array(
'' => '',
'urn:nbn:de' => 'urn:nbn:de',
'urn:nbn:at' => 'urn:nbn:at',
'urn:nbn:ch' => 'urn:nbn:ch',
'urn:nbn:fi' => 'urn:nbn:fi',
'urn:nbn' => 'urn:nbn',
'urn' => 'urn'
);
$templateMgr = TemplateManager::getManager($request);
$templateMgr->assign('urnNamespaces', $urnNamespaces);
return parent::fetch($request, $template, $display);
}
/**
* @copydoc Form::initData()
*/
function initData() {
$contextId = $this->_getContextId();
$plugin = $this->_getPlugin();
foreach($this->_getFormFields() as $fieldName => $fieldType) {
$this->setData($fieldName, $plugin->getSetting($contextId, $fieldName));
}
}
/**
* @copydoc Form::readInputData()
*/
function readInputData() {
$this->readUserVars(array_keys($this->_getFormFields()));
}
/**
* @copydoc Form::execute()
*/
function execute(...$functionArgs) {
$contextId = $this->_getContextId();
$plugin = $this->_getPlugin();
foreach($this->_getFormFields() as $fieldName => $fieldType) {
$plugin->updateSetting($contextId, $fieldName, $this->getData($fieldName), $fieldType);
}
parent::execute(...$functionArgs);
}
//
// Private helper methods
//
function _getFormFields() {
return array(
'enableIssueURN' => 'bool',
'enablePublicationURN' => 'bool',
'enableRepresentationURN' => 'bool',
'urnPrefix' => 'string',
'urnSuffix' => 'string',
'urnIssueSuffixPattern' => 'string',
'urnPublicationSuffixPattern' => 'string',
'urnRepresentationSuffixPattern' => 'string',
'urnCheckNo' => 'bool',
'urnNamespace' => 'string',
'urnResolver' => 'string',
);
}
}