mirror of https://github.com/pixelfed/pixelfed
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
1.9 KiB
PHP
67 lines
1.9 KiB
PHP
<?php
|
|
|
|
namespace App\Services;
|
|
|
|
use App\Models\GroupComment;
|
|
use App\Models\GroupPost;
|
|
use App\Transformer\Api\GroupPostTransformer;
|
|
use Cache;
|
|
use League\Fractal;
|
|
use League\Fractal\Serializer\ArraySerializer;
|
|
|
|
class GroupPostService
|
|
{
|
|
const CACHE_KEY = 'pf:services:groups:post:';
|
|
|
|
const COMMENT_COUNT_KEY = 'pf:services:groups:post:comment_count:';
|
|
|
|
public static function key($gid, $pid)
|
|
{
|
|
return self::CACHE_KEY.$gid.':'.$pid;
|
|
}
|
|
|
|
public static function get($gid, $pid)
|
|
{
|
|
return Cache::remember(self::key($gid, $pid), 604800, function () use ($gid, $pid) {
|
|
$gp = GroupPost::whereGroupId($gid)->find($pid);
|
|
|
|
if (! in_array($gp->visibility, ['public', 'private', 'draft'])) {
|
|
return null;
|
|
}
|
|
if (! $gp) {
|
|
return null;
|
|
}
|
|
|
|
$fractal = new Fractal\Manager;
|
|
$fractal->setSerializer(new ArraySerializer);
|
|
$resource = new Fractal\Resource\Item($gp, new GroupPostTransformer);
|
|
$res = $fractal->createData($resource)->toArray();
|
|
|
|
$res['pf_type'] = $gp['type'];
|
|
$res['url'] = $gp->url();
|
|
|
|
// if($gp['type'] == 'poll') {
|
|
// $status['poll'] = PollService::get($status['id']);
|
|
// }
|
|
// $status['account']['url'] = url("/groups/{$gp['group_id']}/user/{$status['account']['id']}");
|
|
return $res;
|
|
});
|
|
}
|
|
|
|
public static function del($gid, $pid)
|
|
{
|
|
return Cache::forget(self::key($gid, $pid));
|
|
}
|
|
|
|
public static function getCommentCount($pid, $cache = true)
|
|
{
|
|
if (! $cache) {
|
|
return GroupComment::where('status_id', $pid)->orWhere('in_reply_to_id', $pid)->count();
|
|
}
|
|
|
|
return Cache::remember(self::COMMENT_COUNT_KEY.$pid, 3600, function () use ($pid) {
|
|
return GroupComment::where('status_id', $pid)->orWhere('in_reply_to_id', $pid)->count();
|
|
});
|
|
}
|
|
}
|