<?php
/**
* @file classes/publication/maps/Schema.php
*
* Copyright (c) 2014-2020 Simon Fraser University
* Copyright (c) 2000-2020 John Willinsky
* Distributed under the GNU GPL v3. For full terms see the file docs/COPYING.
*
* @class Schema
*
* @brief Map publications to the properties defined in the publication schema
*/
namespace APP\publication\maps;
use APP\facades\Repo;
use APP\publication\Publication;
use PKP\core\PKPApplication;
use PKP\services\PKPSchemaService;
class Schema extends \PKP\publication\maps\Schema
{
/** @copydoc \PKP\publication\maps\Schema::mapByProperties() */
protected function mapByProperties(array $props, Publication $publication, bool $anonymize): array
{
$output = parent::mapByProperties($props, $publication, $anonymize);
if (in_array('galleys', $props)) {
if ($anonymize) {
$output['galleys'] = [];
} else {
$output['galleys'] = Repo::galley()->getSchemaMap($this->submission, $publication, $this->genres)
->summarizeMany($publication->getData('galleys'));
}
}
if (in_array('urlPublished', $props)) {
$output['urlPublished'] = $this->request->getDispatcher()->url(
$this->request,
PKPApplication::ROUTE_PAGE,
$this->context->getData('urlPath'),
'article',
'view',
[
$this->submission->getBestId(),
'version',
$publication->getId(),
]
);
}
$output = $this->schemaService->addMissingMultilingualValues(PKPSchemaService::SCHEMA_PUBLICATION, $output, $this->context->getSupportedSubmissionLocales());
ksort($output);
return $this->withExtensions($output, $publication);
}
}
|