<?php
/**
* @file classes/decision/maps/Schema.php
*
* Copyright (c) 2014-2022 Simon Fraser University
* Copyright (c) 2000-2022 John Willinsky
* Distributed under the GNU GPL v3. For full terms see the file docs/COPYING.
*
* @class Schema
*
* @brief Map editorial decisions to the properties defined in their schema
*/
namespace PKP\decision\maps;
use APP\decision\Decision;
use APP\facades\Repo;
use Illuminate\Support\Enumerable;
use PKP\services\PKPSchemaService;
class Schema extends \PKP\core\maps\Schema
{
public Enumerable $collection;
public string $schema = PKPSchemaService::SCHEMA_DECISION;
/**
* Map a decision
*
* Includes all properties in the decision schema.
*/
public function map(Decision $item): array
{
return $this->mapByProperties($this->getProps(), $item);
}
/**
* Map a collection of Decisions
*
* @see self::map
*/
public function mapMany(Enumerable $collection): Enumerable
{
$this->collection = $collection;
return $collection->map(function ($item) {
return $this->map($item);
});
}
/**
* Map schema properties of a Decision to an assoc array
*/
protected function mapByProperties(array $props, Decision $item): array
{
$type = Repo::decision()->getDecisionType($item->getData('decision'));
$output = [];
foreach ($props as $prop) {
switch ($prop) {
case '_href':
$output[$prop] = $this->getApiUrl('submissions/' . (int) $item->getData('submissionId') . '/decisions/' . (int) $item->getId());
break;
case 'description':
$output[$prop] = $type ? $type->getDescription() : '';
break;
case 'label':
$output[$prop] = $type ? $type->getLabel() : '';
break;
default:
$output[$prop] = $item->getData($prop);
break;
}
}
ksort($output);
return $this->withExtensions($output, $item);
}
}
|