mirror of
https://github.com/flarum/core.git
synced 2025-10-17 17:56:14 +02:00
84 lines
1.8 KiB
PHP
84 lines
1.8 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of Flarum.
|
|
*
|
|
* For detailed copyright and license information, please view the
|
|
* LICENSE file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Flarum\Api\Event;
|
|
|
|
use DateTime;
|
|
use Flarum\Api\Serializer\AbstractSerializer;
|
|
|
|
/**
|
|
* Prepare API attributes.
|
|
*
|
|
* This event is fired when a serializer is constructing an array of resource
|
|
* attributes for API output.
|
|
*
|
|
* @deprecated in beta 15, removed in beta 16
|
|
*/
|
|
class Serializing
|
|
{
|
|
/**
|
|
* The class doing the serializing.
|
|
*
|
|
* @var AbstractSerializer
|
|
*/
|
|
public $serializer;
|
|
|
|
/**
|
|
* The model being serialized.
|
|
*
|
|
* @var object
|
|
*/
|
|
public $model;
|
|
|
|
/**
|
|
* The serialized attributes of the resource.
|
|
*
|
|
* @var array
|
|
*/
|
|
public $attributes;
|
|
|
|
/**
|
|
* @var \Flarum\User\User
|
|
*/
|
|
public $actor;
|
|
|
|
/**
|
|
* @param AbstractSerializer $serializer The class doing the serializing.
|
|
* @param object|array $model The model being serialized.
|
|
* @param array $attributes The serialized attributes of the resource.
|
|
*/
|
|
public function __construct(AbstractSerializer $serializer, $model, array &$attributes)
|
|
{
|
|
$this->serializer = $serializer;
|
|
$this->model = $model;
|
|
$this->attributes = &$attributes;
|
|
$this->actor = $serializer->getActor();
|
|
}
|
|
|
|
/**
|
|
* @param string $serializer
|
|
* @return bool
|
|
*/
|
|
public function isSerializer($serializer)
|
|
{
|
|
return $this->serializer instanceof $serializer;
|
|
}
|
|
|
|
/**
|
|
* @param DateTime|null $date
|
|
* @return string|null
|
|
*/
|
|
public function formatDate(DateTime $date = null)
|
|
{
|
|
if ($date) {
|
|
return $date->format(DateTime::RFC3339);
|
|
}
|
|
}
|
|
}
|