<?php
/**
* @file classes/userGroup/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 \PKP\userGroup\maps\Schema
*
* @brief Map userGroups to the properties defined in the userGroup schema
*/
namespace PKP\userGroup\maps;
use Illuminate\Support\Enumerable;
use PKP\core\PKPRequest;
use PKP\services\PKPSchemaService;
use PKP\userGroup\UserGroup;
class Schema extends \PKP\core\maps\Schema
{
public Enumerable $collection;
public string $schema = PKPSchemaService::SCHEMA_USER_GROUP;
public function __construct(PKPRequest $request, \PKP\context\Context $context, PKPSchemaService $schemaService)
{
parent::__construct($request, $context, $schemaService);
}
/**
* Map an author
*
* Includes all properties in the announcement schema.
*/
public function map(UserGroup $item): array
{
return $this->mapByProperties($this->getProps(), $item);
}
/**
* Summarize an author
*
* Includes properties with the apiSummary flag in the author schema.
*/
public function summarize(UserGroup $item): array
{
return $this->mapByProperties($this->getSummaryProps(), $item);
}
/**
* Map a collection of Authors
*
* @see self::map
*/
public function mapMany(Enumerable $collection): Enumerable
{
$this->collection = $collection;
return $collection->map(function ($item) {
return $this->map($item);
});
}
/**
* Summarize a collection of Authors
*
* @see self::summarize
*/
public function summarizeMany(Enumerable $collection): Enumerable
{
$this->collection = $collection;
return $collection->map(function ($item) {
return $this->summarize($item);
});
}
/**
* Map schema properties of an Author to an assoc array
*/
protected function mapByProperties(array $props, UserGroup $item): array
{
$output = [];
foreach ($props as $prop) {
switch ($prop) {
default:
$output[$prop] = $item->getData($prop);
break;
}
}
$output = $this->schemaService->addMissingMultilingualValues($this->schema, $output, $this->context->getSupportedSubmissionLocales());
ksort($output);
return $this->withExtensions($output, $item);
}
}
|