2018-05-26 22:49:39 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
|
2018-09-22 05:23:16 +00:00
|
|
|
use App\{
|
2021-07-16 02:48:39 +00:00
|
|
|
DiscoverCategory,
|
|
|
|
Follower,
|
|
|
|
Hashtag,
|
|
|
|
HashtagFollow,
|
2022-02-27 02:27:40 +00:00
|
|
|
Instance,
|
|
|
|
Like,
|
2021-07-16 02:48:39 +00:00
|
|
|
Profile,
|
|
|
|
Status,
|
|
|
|
StatusHashtag,
|
|
|
|
UserFilter
|
2018-09-22 05:23:16 +00:00
|
|
|
};
|
|
|
|
use Auth, DB, Cache;
|
2018-08-28 03:07:36 +00:00
|
|
|
use Illuminate\Http\Request;
|
2022-05-09 08:01:33 +00:00
|
|
|
use App\Services\BookmarkService;
|
2022-02-27 02:27:40 +00:00
|
|
|
use App\Services\ConfigCacheService;
|
2022-05-09 08:01:33 +00:00
|
|
|
use App\Services\HashtagService;
|
|
|
|
use App\Services\LikeService;
|
|
|
|
use App\Services\ReblogService;
|
2019-07-05 02:21:20 +00:00
|
|
|
use App\Services\StatusHashtagService;
|
2021-01-13 04:52:07 +00:00
|
|
|
use App\Services\SnowflakeService;
|
|
|
|
use App\Services\StatusService;
|
2022-12-27 11:43:04 +00:00
|
|
|
use App\Services\TrendingHashtagService;
|
2021-07-16 02:48:39 +00:00
|
|
|
use App\Services\UserFilterService;
|
2018-05-26 22:49:39 +00:00
|
|
|
|
|
|
|
class DiscoverController extends Controller
|
|
|
|
{
|
2022-02-27 02:27:40 +00:00
|
|
|
public function home(Request $request)
|
|
|
|
{
|
|
|
|
abort_if(!Auth::check() && config('instance.discover.public') == false, 403);
|
|
|
|
return view('discover.home');
|
|
|
|
}
|
2021-07-16 02:48:39 +00:00
|
|
|
|
2022-02-27 02:27:40 +00:00
|
|
|
public function showTags(Request $request, $hashtag)
|
|
|
|
{
|
|
|
|
abort_if(!config('instance.discover.tags.is_public') && !Auth::check(), 403);
|
2021-07-16 02:48:39 +00:00
|
|
|
|
2022-02-27 02:27:40 +00:00
|
|
|
$tag = Hashtag::whereName($hashtag)
|
|
|
|
->orWhere('slug', $hashtag)
|
2022-12-31 06:23:39 +00:00
|
|
|
->where('is_banned', '!=', true)
|
2022-02-27 02:27:40 +00:00
|
|
|
->firstOrFail();
|
|
|
|
$tagCount = StatusHashtagService::count($tag->id);
|
|
|
|
return view('discover.tags.show', compact('tag', 'tagCount'));
|
|
|
|
}
|
2021-07-16 02:48:39 +00:00
|
|
|
|
2022-02-27 02:27:40 +00:00
|
|
|
public function getHashtags(Request $request)
|
|
|
|
{
|
2022-03-31 07:04:15 +00:00
|
|
|
$user = $request->user();
|
|
|
|
abort_if(!config('instance.discover.tags.is_public') && !$user, 403);
|
2021-07-16 02:48:39 +00:00
|
|
|
|
2022-02-27 02:27:40 +00:00
|
|
|
$this->validate($request, [
|
|
|
|
'hashtag' => 'required|string|min:1|max:124',
|
2022-12-31 06:23:39 +00:00
|
|
|
'page' => 'nullable|integer|min:1|max:' . ($user ? 29 : 3)
|
2022-02-27 02:27:40 +00:00
|
|
|
]);
|
2021-07-16 02:48:39 +00:00
|
|
|
|
2022-02-27 02:27:40 +00:00
|
|
|
$page = $request->input('page') ?? '1';
|
|
|
|
$end = $page > 1 ? $page * 9 : 0;
|
|
|
|
$tag = $request->input('hashtag');
|
2021-07-16 02:48:39 +00:00
|
|
|
|
2023-05-03 05:26:37 +00:00
|
|
|
if(config('database.default') === 'pgsql') {
|
|
|
|
$hashtag = Hashtag::where('name', 'ilike', $tag)->firstOrFail();
|
|
|
|
} else {
|
|
|
|
$hashtag = Hashtag::whereName($tag)->firstOrFail();
|
|
|
|
}
|
|
|
|
|
2022-12-31 06:23:39 +00:00
|
|
|
if($hashtag->is_banned == true) {
|
|
|
|
return [];
|
|
|
|
}
|
2022-05-09 08:01:33 +00:00
|
|
|
if($user) {
|
|
|
|
$res['follows'] = HashtagService::isFollowing($user->profile_id, $hashtag->id);
|
2021-07-16 02:48:39 +00:00
|
|
|
}
|
2022-02-27 02:27:40 +00:00
|
|
|
$res['hashtag'] = [
|
|
|
|
'name' => $hashtag->name,
|
|
|
|
'url' => $hashtag->url()
|
|
|
|
];
|
2022-03-31 07:04:15 +00:00
|
|
|
if($user) {
|
|
|
|
$tags = StatusHashtagService::get($hashtag->id, $page, $end);
|
|
|
|
$res['tags'] = collect($tags)
|
2022-05-09 08:01:33 +00:00
|
|
|
->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;
|
|
|
|
})
|
2022-03-31 07:04:15 +00:00
|
|
|
->filter(function($tag) {
|
|
|
|
if(!StatusService::get($tag['status']['id'])) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
})
|
|
|
|
->values();
|
|
|
|
} else {
|
2022-03-31 07:31:03 +00:00
|
|
|
if($page != 1) {
|
|
|
|
$res['tags'] = [];
|
|
|
|
return $res;
|
|
|
|
}
|
2022-03-31 07:04:15 +00:00
|
|
|
$key = 'discover:tags:public_feed:' . $hashtag->id . ':page:' . $page;
|
2022-03-31 07:31:03 +00:00
|
|
|
$tags = Cache::remember($key, 43200, function() use($hashtag, $page, $end) {
|
2022-03-31 07:04:15 +00:00
|
|
|
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();
|
|
|
|
}
|
2022-02-27 02:27:40 +00:00
|
|
|
return $res;
|
|
|
|
}
|
2021-07-16 02:48:39 +00:00
|
|
|
|
2022-02-27 02:27:40 +00:00
|
|
|
public function profilesDirectory(Request $request)
|
|
|
|
{
|
|
|
|
return redirect('/')->with('statusRedirect', 'The Profile Directory is unavailable at this time.');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function profilesDirectoryApi(Request $request)
|
|
|
|
{
|
|
|
|
return ['error' => 'Temporarily unavailable.'];
|
|
|
|
}
|
|
|
|
|
|
|
|
public function trendingApi(Request $request)
|
|
|
|
{
|
2022-08-24 04:34:22 +00:00
|
|
|
abort_if(config('instance.discover.public') == false && !$request->user(), 403);
|
2022-02-27 02:27:40 +00:00
|
|
|
|
|
|
|
$this->validate($request, [
|
|
|
|
'range' => 'nullable|string|in:daily,monthly,yearly',
|
|
|
|
]);
|
2021-07-16 02:48:39 +00:00
|
|
|
|
2022-02-27 02:27:40 +00:00
|
|
|
$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;
|
|
|
|
|
|
|
|
$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');
|
|
|
|
});
|
|
|
|
|
|
|
|
$filtered = Auth::check() ? UserFilterService::filters(Auth::user()->profile_id) : [];
|
|
|
|
|
|
|
|
$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 response()->json($res);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function trendingHashtags(Request $request)
|
|
|
|
{
|
2022-08-24 04:34:22 +00:00
|
|
|
abort_if(!$request->user(), 403);
|
|
|
|
|
2022-12-27 11:43:04 +00:00
|
|
|
$res = TrendingHashtagService::getTrending();
|
2022-02-27 02:27:40 +00:00
|
|
|
return $res;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function trendingPlaces(Request $request)
|
|
|
|
{
|
|
|
|
return [];
|
|
|
|
}
|
2021-07-16 02:48:39 +00:00
|
|
|
|
2022-02-27 02:27:40 +00:00
|
|
|
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';
|
2021-07-16 02:48:39 +00:00
|
|
|
|
2022-02-27 02:27:40 +00:00
|
|
|
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;
|
2021-07-16 02:48:39 +00:00
|
|
|
|
2022-02-27 02:27:40 +00:00
|
|
|
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) {
|
2022-03-13 06:24:33 +00:00
|
|
|
$status = StatusService::get($id, false);
|
|
|
|
$status['favourited'] = true;
|
|
|
|
return $status;
|
2022-02-27 02:27:40 +00:00
|
|
|
})
|
|
|
|
->filter(function($post) {
|
|
|
|
return $post && isset($post['account']);
|
|
|
|
})
|
|
|
|
->values();
|
|
|
|
break;
|
2021-07-16 02:48:39 +00:00
|
|
|
}
|
|
|
|
|
2022-02-27 02:27:40 +00:00
|
|
|
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;
|
2021-07-16 02:48:39 +00:00
|
|
|
}
|
2022-02-27 02:27:40 +00:00
|
|
|
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);
|
2021-07-16 02:48:39 +00:00
|
|
|
|
2022-02-27 02:27:40 +00:00
|
|
|
$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;
|
2021-07-16 02:48:39 +00:00
|
|
|
}
|
2022-02-27 02:27:40 +00:00
|
|
|
ConfigCacheService::put('config.discover.features', json_encode($res));
|
|
|
|
return $res;
|
|
|
|
}
|
2018-05-26 22:49:39 +00:00
|
|
|
}
|