1
0
mirror of https://github.com/flarum/core.git synced 2025-10-10 06:24:26 +02:00

Upgrade to JSON-API RC3 + latest version of tobscure/json-api

Note: npm source for ember-json-api changed to a fork, but I still had
to apply a custom change to get polymorphic relationships to work (see
https://github.com/kurko/ember-json-api/pull/71#issuecomment-85257281)
This commit is contained in:
Toby Zerner
2015-03-24 15:04:24 +10:30
parent 536281e273
commit a62e04f956
36 changed files with 342 additions and 503 deletions

View File

@@ -1,18 +1,10 @@
<?php namespace Flarum\Api\Serializers;
use Flarum\Core\Models\Post;
use Flarum\Core\Models\User;
class PostSerializer extends PostBasicSerializer
{
/**
* Default relations to link.
* @var array
*/
protected $link = ['discussion'];
/**
* Default relations to include.
*
* @var array
*/
protected $include = ['user', 'editUser', 'hideUser'];
@@ -23,7 +15,7 @@ class PostSerializer extends PostBasicSerializer
* @param Post $post The Post model to serialize.
* @return array
*/
protected function attributes(Post $post)
protected function attributes($post)
{
$attributes = parent::attributes($post);
$user = static::$actor->getUser();
@@ -38,7 +30,7 @@ class PostSerializer extends PostBasicSerializer
$attributes['content'] = $post->content;
}
} else {
$attributes['content'] = json_encode($post->content);
$attributes['content'] = $post->content;
}
if ($post->edit_time) {
@@ -55,54 +47,26 @@ class PostSerializer extends PostBasicSerializer
'canDelete' => $post->can($user, 'delete')
];
return $this->attributesEvent($post, $attributes);
return $this->extendAttributes($post, $attributes);
}
/**
* Get a resource containing a post's user.
*
* @param Post $post
* @param array $relations
* @return Tobscure\JsonApi\Resource
*/
public function includeUser(Post $post, $relations = [])
public function user()
{
return (new UserSerializer($relations))->resource($post->user);
return $this->hasOne('Flarum\Api\Serializers\UserSerializer');
}
/**
* Get a resource containing a post's discussion.
*
* @param Post $post
* @param array $relations
* @return Tobscure\JsonApi\Resource
*/
public function includeDiscussion(Post $post, $relations = [])
public function discussion()
{
return (new DiscussionSerializer($relations))->resource($post->discussion);
return $this->hasOne('Flarum\Api\Serializers\DiscussionSerializer');
}
/**
* Get a resource containing a post's edit user.
*
* @param Post $post
* @param array $relations
* @return Tobscure\JsonApi\Resource
*/
public function includeEditUser(Post $post, $relations = [])
public function editUser()
{
return (new UserBasicSerializer($relations))->resource($post->editUser);
return $this->hasOne('Flarum\Api\Serializers\UserSerializer');
}
/**
* Get a resource containing a post's hide user.
*
* @param Post $post
* @param array $relations
* @return Tobscure\JsonApi\Resource
*/
public function includeHideUser(Post $post, $relations = [])
public function hideUser()
{
return (new UserBasicSerializer($relations))->resource($post->hideUser);
return $this->hasOne('Flarum\Api\Serializers\UserSerializer');
}
}