mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-09 16:24:51 +00:00
commit
5d7e091978
2 changed files with 411 additions and 397 deletions
|
@ -2,366 +2,379 @@
|
|||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use App\{
|
||||
DiscoverCategory,
|
||||
Follower,
|
||||
Hashtag,
|
||||
HashtagFollow,
|
||||
Instance,
|
||||
Like,
|
||||
Profile,
|
||||
Status,
|
||||
StatusHashtag,
|
||||
UserFilter
|
||||
};
|
||||
use Auth, DB, Cache;
|
||||
use Illuminate\Http\Request;
|
||||
use App\Hashtag;
|
||||
use App\Instance;
|
||||
use App\Like;
|
||||
use App\Services\BookmarkService;
|
||||
use App\Services\ConfigCacheService;
|
||||
use App\Services\HashtagService;
|
||||
use App\Services\LikeService;
|
||||
use App\Services\ReblogService;
|
||||
use App\Services\StatusHashtagService;
|
||||
use App\Services\SnowflakeService;
|
||||
use App\Services\StatusHashtagService;
|
||||
use App\Services\StatusService;
|
||||
use App\Services\TrendingHashtagService;
|
||||
use App\Services\UserFilterService;
|
||||
use App\Status;
|
||||
use Auth;
|
||||
use Cache;
|
||||
use DB;
|
||||
use Illuminate\Http\Request;
|
||||
|
||||
class DiscoverController extends Controller
|
||||
{
|
||||
public function home(Request $request)
|
||||
{
|
||||
abort_if(!Auth::check() && config('instance.discover.public') == false, 403);
|
||||
return view('discover.home');
|
||||
}
|
||||
public function home(Request $request)
|
||||
{
|
||||
abort_if(! Auth::check() && config('instance.discover.public') == false, 403);
|
||||
|
||||
public function showTags(Request $request, $hashtag)
|
||||
{
|
||||
abort_if(!config('instance.discover.tags.is_public') && !Auth::check(), 403);
|
||||
return view('discover.home');
|
||||
}
|
||||
|
||||
$tag = Hashtag::whereName($hashtag)
|
||||
->orWhere('slug', $hashtag)
|
||||
->where('is_banned', '!=', true)
|
||||
->firstOrFail();
|
||||
$tagCount = StatusHashtagService::count($tag->id);
|
||||
return view('discover.tags.show', compact('tag', 'tagCount'));
|
||||
}
|
||||
public function showTags(Request $request, $hashtag)
|
||||
{
|
||||
if ($request->user()) {
|
||||
return redirect('/i/web/hashtag/'.$hashtag.'?src=pd');
|
||||
}
|
||||
abort_if(! config('instance.discover.tags.is_public') && ! Auth::check(), 403);
|
||||
|
||||
public function getHashtags(Request $request)
|
||||
{
|
||||
$user = $request->user();
|
||||
abort_if(!config('instance.discover.tags.is_public') && !$user, 403);
|
||||
$tag = Hashtag::whereName($hashtag)
|
||||
->orWhere('slug', $hashtag)
|
||||
->where('is_banned', '!=', true)
|
||||
->firstOrFail();
|
||||
$tagCount = $tag->cached_count ?? 0;
|
||||
|
||||
$this->validate($request, [
|
||||
'hashtag' => 'required|string|min:1|max:124',
|
||||
'page' => 'nullable|integer|min:1|max:' . ($user ? 29 : 3)
|
||||
]);
|
||||
return view('discover.tags.show', compact('tag', 'tagCount'));
|
||||
}
|
||||
|
||||
$page = $request->input('page') ?? '1';
|
||||
$end = $page > 1 ? $page * 9 : 0;
|
||||
$tag = $request->input('hashtag');
|
||||
public function getHashtags(Request $request)
|
||||
{
|
||||
$user = $request->user();
|
||||
abort_if(! config('instance.discover.tags.is_public') && ! $user, 403);
|
||||
|
||||
if(config('database.default') === 'pgsql') {
|
||||
$hashtag = Hashtag::where('name', 'ilike', $tag)->firstOrFail();
|
||||
} else {
|
||||
$hashtag = Hashtag::whereName($tag)->firstOrFail();
|
||||
}
|
||||
$this->validate($request, [
|
||||
'hashtag' => 'required|string|min:1|max:124',
|
||||
'page' => 'nullable|integer|min:1|max:'.($user ? 29 : 3),
|
||||
]);
|
||||
|
||||
if($hashtag->is_banned == true) {
|
||||
return [];
|
||||
}
|
||||
if($user) {
|
||||
$res['follows'] = HashtagService::isFollowing($user->profile_id, $hashtag->id);
|
||||
}
|
||||
$res['hashtag'] = [
|
||||
'name' => $hashtag->name,
|
||||
'url' => $hashtag->url()
|
||||
];
|
||||
if($user) {
|
||||
$tags = StatusHashtagService::get($hashtag->id, $page, $end);
|
||||
$res['tags'] = collect($tags)
|
||||
->map(function($tag) use($user) {
|
||||
$tag['status']['favourited'] = (bool) LikeService::liked($user->profile_id, $tag['status']['id']);
|
||||
$tag['status']['reblogged'] = (bool) ReblogService::get($user->profile_id, $tag['status']['id']);
|
||||
$tag['status']['bookmarked'] = (bool) BookmarkService::get($user->profile_id, $tag['status']['id']);
|
||||
return $tag;
|
||||
})
|
||||
->filter(function($tag) {
|
||||
if(!StatusService::get($tag['status']['id'])) {
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
})
|
||||
->values();
|
||||
} else {
|
||||
if($page != 1) {
|
||||
$res['tags'] = [];
|
||||
return $res;
|
||||
}
|
||||
$key = 'discover:tags:public_feed:' . $hashtag->id . ':page:' . $page;
|
||||
$tags = Cache::remember($key, 43200, function() use($hashtag, $page, $end) {
|
||||
return collect(StatusHashtagService::get($hashtag->id, $page, $end))
|
||||
->filter(function($tag) {
|
||||
if(!$tag['status']['local']) {
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
})
|
||||
->values();
|
||||
});
|
||||
$res['tags'] = collect($tags)
|
||||
->filter(function($tag) {
|
||||
if(!StatusService::get($tag['status']['id'])) {
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
})
|
||||
->values();
|
||||
}
|
||||
return $res;
|
||||
}
|
||||
$page = $request->input('page') ?? '1';
|
||||
$end = $page > 1 ? $page * 9 : 0;
|
||||
$tag = $request->input('hashtag');
|
||||
|
||||
public function profilesDirectory(Request $request)
|
||||
{
|
||||
return redirect('/')->with('statusRedirect', 'The Profile Directory is unavailable at this time.');
|
||||
}
|
||||
if (config('database.default') === 'pgsql') {
|
||||
$hashtag = Hashtag::where('name', 'ilike', $tag)->firstOrFail();
|
||||
} else {
|
||||
$hashtag = Hashtag::whereName($tag)->firstOrFail();
|
||||
}
|
||||
|
||||
public function profilesDirectoryApi(Request $request)
|
||||
{
|
||||
return ['error' => 'Temporarily unavailable.'];
|
||||
}
|
||||
if ($hashtag->is_banned == true) {
|
||||
return [];
|
||||
}
|
||||
if ($user) {
|
||||
$res['follows'] = HashtagService::isFollowing($user->profile_id, $hashtag->id);
|
||||
}
|
||||
$res['hashtag'] = [
|
||||
'name' => $hashtag->name,
|
||||
'url' => $hashtag->url(),
|
||||
];
|
||||
if ($user) {
|
||||
$tags = StatusHashtagService::get($hashtag->id, $page, $end);
|
||||
$res['tags'] = collect($tags)
|
||||
->map(function ($tag) use ($user) {
|
||||
$tag['status']['favourited'] = (bool) LikeService::liked($user->profile_id, $tag['status']['id']);
|
||||
$tag['status']['reblogged'] = (bool) ReblogService::get($user->profile_id, $tag['status']['id']);
|
||||
$tag['status']['bookmarked'] = (bool) BookmarkService::get($user->profile_id, $tag['status']['id']);
|
||||
|
||||
public function trendingApi(Request $request)
|
||||
{
|
||||
abort_if(config('instance.discover.public') == false && !$request->user(), 403);
|
||||
return $tag;
|
||||
})
|
||||
->filter(function ($tag) {
|
||||
if (! StatusService::get($tag['status']['id'])) {
|
||||
return false;
|
||||
}
|
||||
|
||||
$this->validate($request, [
|
||||
'range' => 'nullable|string|in:daily,monthly,yearly',
|
||||
]);
|
||||
return true;
|
||||
})
|
||||
->values();
|
||||
} else {
|
||||
if ($page != 1) {
|
||||
$res['tags'] = [];
|
||||
|
||||
$range = $request->input('range');
|
||||
$days = $range == 'monthly' ? 31 : ($range == 'daily' ? 1 : 365);
|
||||
$ttls = [
|
||||
1 => 1500,
|
||||
31 => 14400,
|
||||
365 => 86400
|
||||
];
|
||||
$key = ':api:discover:trending:v2.12:range:' . $days;
|
||||
return $res;
|
||||
}
|
||||
$key = 'discover:tags:public_feed:'.$hashtag->id.':page:'.$page;
|
||||
$tags = Cache::remember($key, 43200, function () use ($hashtag, $page, $end) {
|
||||
return collect(StatusHashtagService::get($hashtag->id, $page, $end))
|
||||
->filter(function ($tag) {
|
||||
if (! $tag['status']['local']) {
|
||||
return false;
|
||||
}
|
||||
|
||||
$ids = Cache::remember($key, $ttls[$days], function() use($days) {
|
||||
$min_id = SnowflakeService::byDate(now()->subDays($days));
|
||||
return DB::table('statuses')
|
||||
->select(
|
||||
'id',
|
||||
'scope',
|
||||
'type',
|
||||
'is_nsfw',
|
||||
'likes_count',
|
||||
'created_at'
|
||||
)
|
||||
->where('id', '>', $min_id)
|
||||
->whereNull('uri')
|
||||
->whereScope('public')
|
||||
->whereIn('type', [
|
||||
'photo',
|
||||
'photo:album',
|
||||
'video'
|
||||
])
|
||||
->whereIsNsfw(false)
|
||||
->orderBy('likes_count','desc')
|
||||
->take(30)
|
||||
->pluck('id');
|
||||
});
|
||||
return true;
|
||||
})
|
||||
->values();
|
||||
});
|
||||
$res['tags'] = collect($tags)
|
||||
->filter(function ($tag) {
|
||||
if (! StatusService::get($tag['status']['id'])) {
|
||||
return false;
|
||||
}
|
||||
|
||||
$filtered = Auth::check() ? UserFilterService::filters(Auth::user()->profile_id) : [];
|
||||
return true;
|
||||
})
|
||||
->values();
|
||||
}
|
||||
|
||||
$res = $ids->map(function($s) {
|
||||
return StatusService::get($s);
|
||||
})->filter(function($s) use($filtered) {
|
||||
return
|
||||
$s &&
|
||||
!in_array($s['account']['id'], $filtered) &&
|
||||
isset($s['account']);
|
||||
})->values();
|
||||
return $res;
|
||||
}
|
||||
|
||||
return response()->json($res);
|
||||
}
|
||||
public function profilesDirectory(Request $request)
|
||||
{
|
||||
return redirect('/')->with('statusRedirect', 'The Profile Directory is unavailable at this time.');
|
||||
}
|
||||
|
||||
public function trendingHashtags(Request $request)
|
||||
{
|
||||
abort_if(!$request->user(), 403);
|
||||
public function profilesDirectoryApi(Request $request)
|
||||
{
|
||||
return ['error' => 'Temporarily unavailable.'];
|
||||
}
|
||||
|
||||
$res = TrendingHashtagService::getTrending();
|
||||
return $res;
|
||||
}
|
||||
public function trendingApi(Request $request)
|
||||
{
|
||||
abort_if(config('instance.discover.public') == false && ! $request->user(), 403);
|
||||
|
||||
public function trendingPlaces(Request $request)
|
||||
{
|
||||
return [];
|
||||
}
|
||||
$this->validate($request, [
|
||||
'range' => 'nullable|string|in:daily,monthly,yearly',
|
||||
]);
|
||||
|
||||
public function myMemories(Request $request)
|
||||
{
|
||||
abort_if(!$request->user(), 404);
|
||||
$pid = $request->user()->profile_id;
|
||||
abort_if(!$this->config()['memories']['enabled'], 404);
|
||||
$type = $request->input('type') ?? 'posts';
|
||||
$range = $request->input('range');
|
||||
$days = $range == 'monthly' ? 31 : ($range == 'daily' ? 1 : 365);
|
||||
$ttls = [
|
||||
1 => 1500,
|
||||
31 => 14400,
|
||||
365 => 86400,
|
||||
];
|
||||
$key = ':api:discover:trending:v2.12:range:'.$days;
|
||||
|
||||
switch($type) {
|
||||
case 'posts':
|
||||
$res = Status::whereProfileId($pid)
|
||||
->whereDay('created_at', date('d'))
|
||||
->whereMonth('created_at', date('m'))
|
||||
->whereYear('created_at', '!=', date('Y'))
|
||||
->whereNull(['reblog_of_id', 'in_reply_to_id'])
|
||||
->limit(20)
|
||||
->pluck('id')
|
||||
->map(function($id) {
|
||||
return StatusService::get($id, false);
|
||||
})
|
||||
->filter(function($post) {
|
||||
return $post && isset($post['account']);
|
||||
})
|
||||
->values();
|
||||
break;
|
||||
$ids = Cache::remember($key, $ttls[$days], function () use ($days) {
|
||||
$min_id = SnowflakeService::byDate(now()->subDays($days));
|
||||
|
||||
case 'liked':
|
||||
$res = Like::whereProfileId($pid)
|
||||
->whereDay('created_at', date('d'))
|
||||
->whereMonth('created_at', date('m'))
|
||||
->whereYear('created_at', '!=', date('Y'))
|
||||
->orderByDesc('status_id')
|
||||
->limit(20)
|
||||
->pluck('status_id')
|
||||
->map(function($id) {
|
||||
$status = StatusService::get($id, false);
|
||||
$status['favourited'] = true;
|
||||
return $status;
|
||||
})
|
||||
->filter(function($post) {
|
||||
return $post && isset($post['account']);
|
||||
})
|
||||
->values();
|
||||
break;
|
||||
}
|
||||
return DB::table('statuses')
|
||||
->select(
|
||||
'id',
|
||||
'scope',
|
||||
'type',
|
||||
'is_nsfw',
|
||||
'likes_count',
|
||||
'created_at'
|
||||
)
|
||||
->where('id', '>', $min_id)
|
||||
->whereNull('uri')
|
||||
->whereScope('public')
|
||||
->whereIn('type', [
|
||||
'photo',
|
||||
'photo:album',
|
||||
'video',
|
||||
])
|
||||
->whereIsNsfw(false)
|
||||
->orderBy('likes_count', 'desc')
|
||||
->take(30)
|
||||
->pluck('id');
|
||||
});
|
||||
|
||||
return $res;
|
||||
}
|
||||
$filtered = Auth::check() ? UserFilterService::filters(Auth::user()->profile_id) : [];
|
||||
|
||||
public function accountInsightsPopularPosts(Request $request)
|
||||
{
|
||||
abort_if(!$request->user(), 404);
|
||||
$pid = $request->user()->profile_id;
|
||||
abort_if(!$this->config()['insights']['enabled'], 404);
|
||||
$posts = Cache::remember('pf:discover:metro2:accinsights:popular:' . $pid, 43200, function() use ($pid) {
|
||||
return Status::whereProfileId($pid)
|
||||
->whereNotNull('likes_count')
|
||||
->orderByDesc('likes_count')
|
||||
->limit(12)
|
||||
->pluck('id')
|
||||
->map(function($id) {
|
||||
return StatusService::get($id, false);
|
||||
})
|
||||
->filter(function($post) {
|
||||
return $post && isset($post['account']);
|
||||
})
|
||||
->values();
|
||||
});
|
||||
$res = $ids->map(function ($s) {
|
||||
return StatusService::get($s);
|
||||
})->filter(function ($s) use ($filtered) {
|
||||
return
|
||||
$s &&
|
||||
! in_array($s['account']['id'], $filtered) &&
|
||||
isset($s['account']);
|
||||
})->values();
|
||||
|
||||
return $posts;
|
||||
}
|
||||
return response()->json($res);
|
||||
}
|
||||
|
||||
public function config()
|
||||
{
|
||||
$cc = ConfigCacheService::get('config.discover.features');
|
||||
if($cc) {
|
||||
return is_string($cc) ? json_decode($cc, true) : $cc;
|
||||
}
|
||||
return [
|
||||
'hashtags' => [
|
||||
'enabled' => false,
|
||||
],
|
||||
'memories' => [
|
||||
'enabled' => false,
|
||||
],
|
||||
'insights' => [
|
||||
'enabled' => false,
|
||||
],
|
||||
'friends' => [
|
||||
'enabled' => false,
|
||||
],
|
||||
'server' => [
|
||||
'enabled' => false,
|
||||
'mode' => 'allowlist',
|
||||
'domains' => []
|
||||
]
|
||||
];
|
||||
}
|
||||
public function trendingHashtags(Request $request)
|
||||
{
|
||||
abort_if(! $request->user(), 403);
|
||||
|
||||
public function serverTimeline(Request $request)
|
||||
{
|
||||
abort_if(!$request->user(), 404);
|
||||
abort_if(!$this->config()['server']['enabled'], 404);
|
||||
$pid = $request->user()->profile_id;
|
||||
$domain = $request->input('domain');
|
||||
$config = $this->config();
|
||||
$domains = explode(',', $config['server']['domains']);
|
||||
abort_unless(in_array($domain, $domains), 400);
|
||||
$res = TrendingHashtagService::getTrending();
|
||||
|
||||
$res = Status::whereNotNull('uri')
|
||||
->where('uri', 'like', 'https://' . $domain . '%')
|
||||
->whereNull(['in_reply_to_id', 'reblog_of_id'])
|
||||
->orderByDesc('id')
|
||||
->limit(12)
|
||||
->pluck('id')
|
||||
->map(function($id) {
|
||||
return StatusService::get($id);
|
||||
})
|
||||
->filter(function($post) {
|
||||
return $post && isset($post['account']);
|
||||
})
|
||||
->values();
|
||||
return $res;
|
||||
}
|
||||
return $res;
|
||||
}
|
||||
|
||||
public function enabledFeatures(Request $request)
|
||||
{
|
||||
abort_if(!$request->user(), 404);
|
||||
return $this->config();
|
||||
}
|
||||
public function trendingPlaces(Request $request)
|
||||
{
|
||||
return [];
|
||||
}
|
||||
|
||||
public function updateFeatures(Request $request)
|
||||
{
|
||||
abort_if(!$request->user(), 404);
|
||||
abort_if(!$request->user()->is_admin, 404);
|
||||
$pid = $request->user()->profile_id;
|
||||
$this->validate($request, [
|
||||
'features.friends.enabled' => 'boolean',
|
||||
'features.hashtags.enabled' => 'boolean',
|
||||
'features.insights.enabled' => 'boolean',
|
||||
'features.memories.enabled' => 'boolean',
|
||||
'features.server.enabled' => 'boolean',
|
||||
]);
|
||||
$res = $request->input('features');
|
||||
if($res['server'] && isset($res['server']['domains']) && !empty($res['server']['domains'])) {
|
||||
$parts = explode(',', $res['server']['domains']);
|
||||
$parts = array_filter($parts, function($v) {
|
||||
$len = strlen($v);
|
||||
$pos = strpos($v, '.');
|
||||
$domain = trim($v);
|
||||
if($pos == false || $pos == ($len + 1)) {
|
||||
return false;
|
||||
}
|
||||
if(!Instance::whereDomain($domain)->exists()) {
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
});
|
||||
$parts = array_slice($parts, 0, 10);
|
||||
$d = implode(',', array_map('trim', $parts));
|
||||
$res['server']['domains'] = $d;
|
||||
}
|
||||
ConfigCacheService::put('config.discover.features', json_encode($res));
|
||||
return $res;
|
||||
}
|
||||
public function myMemories(Request $request)
|
||||
{
|
||||
abort_if(! $request->user(), 404);
|
||||
$pid = $request->user()->profile_id;
|
||||
abort_if(! $this->config()['memories']['enabled'], 404);
|
||||
$type = $request->input('type') ?? 'posts';
|
||||
|
||||
switch ($type) {
|
||||
case 'posts':
|
||||
$res = Status::whereProfileId($pid)
|
||||
->whereDay('created_at', date('d'))
|
||||
->whereMonth('created_at', date('m'))
|
||||
->whereYear('created_at', '!=', date('Y'))
|
||||
->whereNull(['reblog_of_id', 'in_reply_to_id'])
|
||||
->limit(20)
|
||||
->pluck('id')
|
||||
->map(function ($id) {
|
||||
return StatusService::get($id, false);
|
||||
})
|
||||
->filter(function ($post) {
|
||||
return $post && isset($post['account']);
|
||||
})
|
||||
->values();
|
||||
break;
|
||||
|
||||
case 'liked':
|
||||
$res = Like::whereProfileId($pid)
|
||||
->whereDay('created_at', date('d'))
|
||||
->whereMonth('created_at', date('m'))
|
||||
->whereYear('created_at', '!=', date('Y'))
|
||||
->orderByDesc('status_id')
|
||||
->limit(20)
|
||||
->pluck('status_id')
|
||||
->map(function ($id) {
|
||||
$status = StatusService::get($id, false);
|
||||
$status['favourited'] = true;
|
||||
|
||||
return $status;
|
||||
})
|
||||
->filter(function ($post) {
|
||||
return $post && isset($post['account']);
|
||||
})
|
||||
->values();
|
||||
break;
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
public function accountInsightsPopularPosts(Request $request)
|
||||
{
|
||||
abort_if(! $request->user(), 404);
|
||||
$pid = $request->user()->profile_id;
|
||||
abort_if(! $this->config()['insights']['enabled'], 404);
|
||||
$posts = Cache::remember('pf:discover:metro2:accinsights:popular:'.$pid, 43200, function () use ($pid) {
|
||||
return Status::whereProfileId($pid)
|
||||
->whereNotNull('likes_count')
|
||||
->orderByDesc('likes_count')
|
||||
->limit(12)
|
||||
->pluck('id')
|
||||
->map(function ($id) {
|
||||
return StatusService::get($id, false);
|
||||
})
|
||||
->filter(function ($post) {
|
||||
return $post && isset($post['account']);
|
||||
})
|
||||
->values();
|
||||
});
|
||||
|
||||
return $posts;
|
||||
}
|
||||
|
||||
public function config()
|
||||
{
|
||||
$cc = ConfigCacheService::get('config.discover.features');
|
||||
if ($cc) {
|
||||
return is_string($cc) ? json_decode($cc, true) : $cc;
|
||||
}
|
||||
|
||||
return [
|
||||
'hashtags' => [
|
||||
'enabled' => false,
|
||||
],
|
||||
'memories' => [
|
||||
'enabled' => false,
|
||||
],
|
||||
'insights' => [
|
||||
'enabled' => false,
|
||||
],
|
||||
'friends' => [
|
||||
'enabled' => false,
|
||||
],
|
||||
'server' => [
|
||||
'enabled' => false,
|
||||
'mode' => 'allowlist',
|
||||
'domains' => [],
|
||||
],
|
||||
];
|
||||
}
|
||||
|
||||
public function serverTimeline(Request $request)
|
||||
{
|
||||
abort_if(! $request->user(), 404);
|
||||
abort_if(! $this->config()['server']['enabled'], 404);
|
||||
$pid = $request->user()->profile_id;
|
||||
$domain = $request->input('domain');
|
||||
$config = $this->config();
|
||||
$domains = explode(',', $config['server']['domains']);
|
||||
abort_unless(in_array($domain, $domains), 400);
|
||||
|
||||
$res = Status::whereNotNull('uri')
|
||||
->where('uri', 'like', 'https://'.$domain.'%')
|
||||
->whereNull(['in_reply_to_id', 'reblog_of_id'])
|
||||
->orderByDesc('id')
|
||||
->limit(12)
|
||||
->pluck('id')
|
||||
->map(function ($id) {
|
||||
return StatusService::get($id);
|
||||
})
|
||||
->filter(function ($post) {
|
||||
return $post && isset($post['account']);
|
||||
})
|
||||
->values();
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
public function enabledFeatures(Request $request)
|
||||
{
|
||||
abort_if(! $request->user(), 404);
|
||||
|
||||
return $this->config();
|
||||
}
|
||||
|
||||
public function updateFeatures(Request $request)
|
||||
{
|
||||
abort_if(! $request->user(), 404);
|
||||
abort_if(! $request->user()->is_admin, 404);
|
||||
$pid = $request->user()->profile_id;
|
||||
$this->validate($request, [
|
||||
'features.friends.enabled' => 'boolean',
|
||||
'features.hashtags.enabled' => 'boolean',
|
||||
'features.insights.enabled' => 'boolean',
|
||||
'features.memories.enabled' => 'boolean',
|
||||
'features.server.enabled' => 'boolean',
|
||||
]);
|
||||
$res = $request->input('features');
|
||||
if ($res['server'] && isset($res['server']['domains']) && ! empty($res['server']['domains'])) {
|
||||
$parts = explode(',', $res['server']['domains']);
|
||||
$parts = array_filter($parts, function ($v) {
|
||||
$len = strlen($v);
|
||||
$pos = strpos($v, '.');
|
||||
$domain = trim($v);
|
||||
if ($pos == false || $pos == ($len + 1)) {
|
||||
return false;
|
||||
}
|
||||
if (! Instance::whereDomain($domain)->exists()) {
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
});
|
||||
$parts = array_slice($parts, 0, 10);
|
||||
$d = implode(',', array_map('trim', $parts));
|
||||
$res['server']['domains'] = $d;
|
||||
}
|
||||
ConfigCacheService::put('config.discover.features', json_encode($res));
|
||||
|
||||
return $res;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -2,96 +2,97 @@
|
|||
|
||||
namespace App\Services;
|
||||
|
||||
use Cache;
|
||||
use Illuminate\Support\Facades\Redis;
|
||||
use App\{Status, StatusHashtag};
|
||||
use App\Transformer\Api\StatusHashtagTransformer;
|
||||
use App\Hashtag;
|
||||
use App\Status;
|
||||
use App\StatusHashtag;
|
||||
use App\Transformer\Api\HashtagTransformer;
|
||||
use League\Fractal;
|
||||
use League\Fractal\Serializer\ArraySerializer;
|
||||
use League\Fractal\Pagination\IlluminatePaginatorAdapter;
|
||||
|
||||
class StatusHashtagService {
|
||||
class StatusHashtagService
|
||||
{
|
||||
const CACHE_KEY = 'pf:services:status-hashtag:collection:';
|
||||
|
||||
const CACHE_KEY = 'pf:services:status-hashtag:collection:';
|
||||
public static function get($id, $page = 1, $stop = 9)
|
||||
{
|
||||
if ($page > 20) {
|
||||
return [];
|
||||
}
|
||||
|
||||
public static function get($id, $page = 1, $stop = 9)
|
||||
{
|
||||
if($page > 20) {
|
||||
return [];
|
||||
}
|
||||
$pid = request()->user() ? request()->user()->profile_id : false;
|
||||
$filtered = $pid ? UserFilterService::filters($pid) : [];
|
||||
|
||||
$pid = request()->user() ? request()->user()->profile_id : false;
|
||||
$filtered = $pid ? UserFilterService::filters($pid) : [];
|
||||
return StatusHashtag::whereHashtagId($id)
|
||||
->whereStatusVisibility('public')
|
||||
->skip($stop)
|
||||
->latest()
|
||||
->take(9)
|
||||
->pluck('status_id')
|
||||
->map(function ($i, $k) use ($id) {
|
||||
return self::getStatus($i, $id);
|
||||
})
|
||||
->filter(function ($i) use ($filtered) {
|
||||
return isset($i['status']) &&
|
||||
! empty($i['status']) && ! in_array($i['status']['account']['id'], $filtered) &&
|
||||
isset($i['status']['media_attachments']) &&
|
||||
! empty($i['status']['media_attachments']);
|
||||
})
|
||||
->values();
|
||||
}
|
||||
|
||||
return StatusHashtag::whereHashtagId($id)
|
||||
->whereStatusVisibility('public')
|
||||
->skip($stop)
|
||||
->latest()
|
||||
->take(9)
|
||||
->pluck('status_id')
|
||||
->map(function ($i, $k) use ($id) {
|
||||
return self::getStatus($i, $id);
|
||||
})
|
||||
->filter(function ($i) use($filtered) {
|
||||
return isset($i['status']) &&
|
||||
!empty($i['status']) && !in_array($i['status']['account']['id'], $filtered) &&
|
||||
isset($i['status']['media_attachments']) &&
|
||||
!empty($i['status']['media_attachments']);
|
||||
})
|
||||
->values();
|
||||
}
|
||||
public static function coldGet($id, $start = 0, $stop = 2000)
|
||||
{
|
||||
$stop = $stop > 2000 ? 2000 : $stop;
|
||||
$ids = StatusHashtag::whereHashtagId($id)
|
||||
->whereStatusVisibility('public')
|
||||
->whereHas('media')
|
||||
->latest()
|
||||
->skip($start)
|
||||
->take($stop)
|
||||
->pluck('status_id');
|
||||
foreach ($ids as $key) {
|
||||
self::set($id, $key);
|
||||
}
|
||||
|
||||
public static function coldGet($id, $start = 0, $stop = 2000)
|
||||
{
|
||||
$stop = $stop > 2000 ? 2000 : $stop;
|
||||
$ids = StatusHashtag::whereHashtagId($id)
|
||||
->whereStatusVisibility('public')
|
||||
->whereHas('media')
|
||||
->latest()
|
||||
->skip($start)
|
||||
->take($stop)
|
||||
->pluck('status_id');
|
||||
foreach($ids as $key) {
|
||||
self::set($id, $key);
|
||||
}
|
||||
return $ids;
|
||||
}
|
||||
return $ids;
|
||||
}
|
||||
|
||||
public static function set($key, $val)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
public static function set($key, $val)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
public static function del($key)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
public static function del($key)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
public static function count($id)
|
||||
{
|
||||
$key = 'pf:services:status-hashtag:count:' . $id;
|
||||
$ttl = now()->addMinutes(5);
|
||||
return Cache::remember($key, $ttl, function() use($id) {
|
||||
return StatusHashtag::whereHashtagId($id)->has('media')->count();
|
||||
});
|
||||
}
|
||||
public static function count($id)
|
||||
{
|
||||
$cc = Hashtag::find($id);
|
||||
if (! $cc) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
public static function getStatus($statusId, $hashtagId)
|
||||
{
|
||||
return ['status' => StatusService::get($statusId)];
|
||||
}
|
||||
return $cc->cached_count ?? 0;
|
||||
}
|
||||
|
||||
public static function statusTags($statusId)
|
||||
{
|
||||
$status = Status::with('hashtags')->find($statusId);
|
||||
if(!$status) {
|
||||
return [];
|
||||
}
|
||||
public static function getStatus($statusId, $hashtagId)
|
||||
{
|
||||
return ['status' => StatusService::get($statusId)];
|
||||
}
|
||||
|
||||
$fractal = new Fractal\Manager();
|
||||
$fractal->setSerializer(new ArraySerializer());
|
||||
$resource = new Fractal\Resource\Collection($status->hashtags, new HashtagTransformer());
|
||||
return $fractal->createData($resource)->toArray();
|
||||
}
|
||||
public static function statusTags($statusId)
|
||||
{
|
||||
$status = Status::with('hashtags')->find($statusId);
|
||||
if (! $status) {
|
||||
return [];
|
||||
}
|
||||
|
||||
$fractal = new Fractal\Manager();
|
||||
$fractal->setSerializer(new ArraySerializer());
|
||||
$resource = new Fractal\Resource\Collection($status->hashtags, new HashtagTransformer());
|
||||
|
||||
return $fractal->createData($resource)->toArray();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue