2019-08-20 01:07:25 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Controllers\Api;
|
|
|
|
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
use App\Http\Controllers\Controller;
|
|
|
|
use App\Jobs\StatusPipeline\StatusDelete;
|
2023-01-15 03:33:46 +00:00
|
|
|
use Auth, Cache, DB;
|
2019-08-20 01:07:25 +00:00
|
|
|
use Carbon\Carbon;
|
|
|
|
use App\{
|
2023-01-15 03:33:46 +00:00
|
|
|
AccountInterstitial,
|
2023-01-15 09:36:55 +00:00
|
|
|
Instance,
|
2019-08-20 01:07:25 +00:00
|
|
|
Like,
|
|
|
|
Media,
|
|
|
|
Profile,
|
2023-01-15 03:33:46 +00:00
|
|
|
Report,
|
|
|
|
Status,
|
|
|
|
User
|
2019-08-20 01:07:25 +00:00
|
|
|
};
|
2023-01-15 03:33:46 +00:00
|
|
|
use App\Services\AccountService;
|
|
|
|
use App\Services\AdminStatsService;
|
|
|
|
use App\Services\ConfigCacheService;
|
2023-01-15 09:36:55 +00:00
|
|
|
use App\Services\InstanceService;
|
2023-01-15 03:33:46 +00:00
|
|
|
use App\Services\ModLogService;
|
|
|
|
use App\Services\StatusService;
|
2023-01-15 09:36:55 +00:00
|
|
|
use App\Services\NetworkTimelineService;
|
2019-08-20 01:07:25 +00:00
|
|
|
use App\Services\NotificationService;
|
2023-01-15 09:36:55 +00:00
|
|
|
use App\Http\Resources\AdminInstance;
|
2023-01-15 03:33:46 +00:00
|
|
|
use App\Http\Resources\AdminUser;
|
2019-08-20 01:07:25 +00:00
|
|
|
|
|
|
|
class AdminApiController extends Controller
|
|
|
|
{
|
2023-01-15 03:33:46 +00:00
|
|
|
public function supported(Request $request)
|
|
|
|
{
|
|
|
|
abort_if(!$request->user(), 404);
|
|
|
|
abort_unless($request->user()->is_admin === 1, 404);
|
|
|
|
|
|
|
|
return response()->json(['supported' => true]);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getStats(Request $request)
|
2019-08-20 01:07:25 +00:00
|
|
|
{
|
2023-01-15 03:33:46 +00:00
|
|
|
abort_if(!$request->user(), 404);
|
|
|
|
abort_unless($request->user()->is_admin === 1, 404);
|
|
|
|
$res = AdminStatsService::summary();
|
|
|
|
$res['autospam_count'] = AccountInterstitial::whereType('post.autospam')
|
|
|
|
->whereNull('appeal_handled_at')
|
|
|
|
->count();
|
|
|
|
return $res;
|
2019-08-20 01:07:25 +00:00
|
|
|
}
|
|
|
|
|
2023-01-15 03:33:46 +00:00
|
|
|
public function autospam(Request $request)
|
2019-08-20 01:07:25 +00:00
|
|
|
{
|
2023-01-15 03:33:46 +00:00
|
|
|
abort_if(!$request->user(), 404);
|
|
|
|
abort_unless($request->user()->is_admin === 1, 404);
|
|
|
|
|
|
|
|
$appeals = AccountInterstitial::whereType('post.autospam')
|
|
|
|
->whereNull('appeal_handled_at')
|
|
|
|
->latest()
|
|
|
|
->simplePaginate(6)
|
|
|
|
->map(function($report) {
|
|
|
|
$r = [
|
|
|
|
'id' => $report->id,
|
|
|
|
'type' => $report->type,
|
|
|
|
'item_id' => $report->item_id,
|
|
|
|
'item_type' => $report->item_type,
|
|
|
|
'created_at' => $report->created_at
|
|
|
|
];
|
|
|
|
if($report->item_type === 'App\\Status') {
|
|
|
|
$status = StatusService::get($report->item_id, false);
|
|
|
|
if(!$status) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$r['status'] = $status;
|
|
|
|
|
|
|
|
if($status['in_reply_to_id']) {
|
|
|
|
$r['parent'] = StatusService::get($status['in_reply_to_id'], false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $r;
|
|
|
|
});
|
|
|
|
|
|
|
|
return $appeals;
|
2019-08-20 01:07:25 +00:00
|
|
|
}
|
|
|
|
|
2023-01-15 03:33:46 +00:00
|
|
|
public function autospamHandle(Request $request)
|
2019-08-20 01:07:25 +00:00
|
|
|
{
|
2023-01-15 03:33:46 +00:00
|
|
|
abort_if(!$request->user(), 404);
|
|
|
|
abort_unless($request->user()->is_admin === 1, 404);
|
|
|
|
|
2019-08-20 01:07:25 +00:00
|
|
|
$this->validate($request, [
|
2023-01-15 03:33:46 +00:00
|
|
|
'action' => 'required|in:dismiss,approve,dismiss-all,approve-all',
|
|
|
|
'id' => 'required'
|
2019-08-20 01:07:25 +00:00
|
|
|
]);
|
|
|
|
|
2023-01-15 03:33:46 +00:00
|
|
|
$action = $request->input('action');
|
2019-08-20 01:07:25 +00:00
|
|
|
$id = $request->input('id');
|
2023-01-15 03:33:46 +00:00
|
|
|
$appeal = AccountInterstitial::whereType('post.autospam')
|
|
|
|
->whereNull('appeal_handled_at')
|
|
|
|
->findOrFail($id);
|
|
|
|
$now = now();
|
|
|
|
$res = ['status' => 'success'];
|
|
|
|
$meta = json_decode($appeal->meta);
|
|
|
|
|
|
|
|
if($action == 'dismiss') {
|
|
|
|
$appeal->is_spam = true;
|
|
|
|
$appeal->appeal_handled_at = $now;
|
|
|
|
$appeal->save();
|
|
|
|
|
|
|
|
Cache::forget('pf:bouncer_v0:exemption_by_pid:' . $appeal->user->profile_id);
|
|
|
|
Cache::forget('pf:bouncer_v0:recent_by_pid:' . $appeal->user->profile_id);
|
|
|
|
Cache::forget('admin-dash:reports:spam-count');
|
|
|
|
return $res;
|
|
|
|
}
|
|
|
|
|
|
|
|
if($action == 'dismiss-all') {
|
|
|
|
AccountInterstitial::whereType('post.autospam')
|
|
|
|
->whereItemType('App\Status')
|
|
|
|
->whereNull('appeal_handled_at')
|
|
|
|
->whereUserId($appeal->user_id)
|
|
|
|
->update(['appeal_handled_at' => $now, 'is_spam' => true]);
|
|
|
|
Cache::forget('pf:bouncer_v0:exemption_by_pid:' . $appeal->user->profile_id);
|
|
|
|
Cache::forget('pf:bouncer_v0:recent_by_pid:' . $appeal->user->profile_id);
|
|
|
|
Cache::forget('admin-dash:reports:spam-count');
|
|
|
|
return $res;
|
|
|
|
}
|
|
|
|
|
|
|
|
if($action == 'approve') {
|
|
|
|
$status = $appeal->status;
|
|
|
|
$status->is_nsfw = $meta->is_nsfw;
|
|
|
|
$status->scope = 'public';
|
|
|
|
$status->visibility = 'public';
|
|
|
|
$status->save();
|
|
|
|
|
|
|
|
$appeal->is_spam = false;
|
|
|
|
$appeal->appeal_handled_at = now();
|
|
|
|
$appeal->save();
|
|
|
|
|
|
|
|
StatusService::del($status->id);
|
|
|
|
|
|
|
|
Cache::forget('pf:bouncer_v0:exemption_by_pid:' . $appeal->user->profile_id);
|
|
|
|
Cache::forget('pf:bouncer_v0:recent_by_pid:' . $appeal->user->profile_id);
|
|
|
|
Cache::forget('admin-dash:reports:spam-count');
|
|
|
|
return $res;
|
|
|
|
}
|
|
|
|
|
|
|
|
if($action == 'approve-all') {
|
|
|
|
AccountInterstitial::whereType('post.autospam')
|
|
|
|
->whereItemType('App\Status')
|
|
|
|
->whereNull('appeal_handled_at')
|
|
|
|
->whereUserId($appeal->user_id)
|
|
|
|
->get()
|
|
|
|
->each(function($report) use($meta) {
|
|
|
|
$report->is_spam = false;
|
|
|
|
$report->appeal_handled_at = now();
|
|
|
|
$report->save();
|
|
|
|
$status = Status::find($report->item_id);
|
|
|
|
if($status) {
|
|
|
|
$status->is_nsfw = $meta->is_nsfw;
|
|
|
|
$status->scope = 'public';
|
|
|
|
$status->visibility = 'public';
|
|
|
|
$status->save();
|
|
|
|
StatusService::del($status->id, true);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
Cache::forget('pf:bouncer_v0:exemption_by_pid:' . $appeal->user->profile_id);
|
|
|
|
Cache::forget('pf:bouncer_v0:recent_by_pid:' . $appeal->user->profile_id);
|
|
|
|
Cache::forget('admin-dash:reports:spam-count');
|
|
|
|
return $res;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $res;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function modReports(Request $request)
|
|
|
|
{
|
|
|
|
abort_if(!$request->user(), 404);
|
|
|
|
abort_unless($request->user()->is_admin === 1, 404);
|
|
|
|
|
|
|
|
$reports = Report::whereNull('admin_seen')
|
|
|
|
->orderBy('created_at','desc')
|
|
|
|
->paginate(6)
|
|
|
|
->map(function($report) {
|
|
|
|
$r = [
|
|
|
|
'id' => $report->id,
|
|
|
|
'type' => $report->type,
|
|
|
|
'message' => $report->message,
|
|
|
|
'object_id' => $report->object_id,
|
|
|
|
'object_type' => $report->object_type,
|
|
|
|
'created_at' => $report->created_at
|
|
|
|
];
|
|
|
|
|
|
|
|
if($report->profile_id) {
|
|
|
|
$r['reported_by_account'] = AccountService::get($report->profile_id, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
if($report->object_type === 'App\\Status') {
|
|
|
|
$status = StatusService::get($report->object_id, false);
|
|
|
|
if(!$status) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$r['status'] = $status;
|
|
|
|
|
|
|
|
if($status['in_reply_to_id']) {
|
|
|
|
$r['parent'] = StatusService::get($status['in_reply_to_id'], false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if($report->object_type === 'App\\Profile') {
|
|
|
|
$r['account'] = AccountService::get($report->object_id, false);
|
|
|
|
}
|
|
|
|
return $r;
|
|
|
|
})
|
|
|
|
->filter()
|
|
|
|
->values();
|
|
|
|
|
|
|
|
return $reports;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function modReportHandle(Request $request)
|
|
|
|
{
|
|
|
|
abort_if(!$request->user(), 404);
|
|
|
|
abort_unless($request->user()->is_admin === 1, 404);
|
|
|
|
|
|
|
|
$this->validate($request, [
|
|
|
|
'action' => 'required|string',
|
|
|
|
'id' => 'required'
|
|
|
|
]);
|
|
|
|
|
2019-08-20 01:07:25 +00:00
|
|
|
$action = $request->input('action');
|
2023-01-15 03:33:46 +00:00
|
|
|
$id = $request->input('id');
|
|
|
|
|
|
|
|
$actions = [
|
|
|
|
'ignore',
|
|
|
|
'cw',
|
|
|
|
'unlist'
|
|
|
|
];
|
|
|
|
|
|
|
|
if (!in_array($action, $actions)) {
|
|
|
|
return abort(403);
|
|
|
|
}
|
|
|
|
|
|
|
|
$report = Report::findOrFail($id);
|
|
|
|
$item = $report->reported();
|
|
|
|
$report->admin_seen = now();
|
|
|
|
|
|
|
|
switch ($action) {
|
|
|
|
case 'ignore':
|
|
|
|
$report->not_interested = true;
|
|
|
|
break;
|
2019-08-20 01:07:25 +00:00
|
|
|
|
2023-01-15 03:33:46 +00:00
|
|
|
case 'cw':
|
|
|
|
Cache::forget('status:thumb:'.$item->id);
|
|
|
|
$item->is_nsfw = true;
|
|
|
|
$item->save();
|
|
|
|
$report->nsfw = true;
|
|
|
|
StatusService::del($item->id, true);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'unlist':
|
|
|
|
$item->visibility = 'unlisted';
|
|
|
|
$item->save();
|
|
|
|
StatusService::del($item->id, true);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
$report->admin_seen = null;
|
|
|
|
break;
|
2019-08-20 01:07:25 +00:00
|
|
|
}
|
|
|
|
|
2023-01-15 03:33:46 +00:00
|
|
|
$report->save();
|
|
|
|
Cache::forget('admin-dash:reports:list-cache');
|
|
|
|
Cache::forget('admin:dashboard:home:data:v0:15min');
|
|
|
|
|
|
|
|
return ['success' => true];
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getConfiguration(Request $request)
|
|
|
|
{
|
|
|
|
abort_if(!$request->user(), 404);
|
|
|
|
abort_unless($request->user()->is_admin === 1, 404);
|
|
|
|
abort_unless(config('instance.enable_cc'), 400);
|
|
|
|
|
|
|
|
return collect([
|
|
|
|
[
|
|
|
|
'name' => 'ActivityPub Federation',
|
|
|
|
'description' => 'Enable activitypub federation support, compatible with Pixelfed, Mastodon and other platforms.',
|
|
|
|
'key' => 'federation.activitypub.enabled'
|
|
|
|
],
|
|
|
|
|
|
|
|
[
|
|
|
|
'name' => 'Open Registration',
|
|
|
|
'description' => 'Allow new account registrations.',
|
|
|
|
'key' => 'pixelfed.open_registration'
|
|
|
|
],
|
|
|
|
|
|
|
|
[
|
|
|
|
'name' => 'Stories',
|
|
|
|
'description' => 'Enable the ephemeral Stories feature.',
|
|
|
|
'key' => 'instance.stories.enabled'
|
|
|
|
],
|
|
|
|
|
|
|
|
[
|
|
|
|
'name' => 'Require Email Verification',
|
|
|
|
'description' => 'Require new accounts to verify their email address.',
|
|
|
|
'key' => 'pixelfed.enforce_email_verification'
|
|
|
|
],
|
|
|
|
|
|
|
|
[
|
|
|
|
'name' => 'AutoSpam Detection',
|
|
|
|
'description' => 'Detect and remove spam from public timelines.',
|
|
|
|
'key' => 'pixelfed.bouncer.enabled'
|
|
|
|
],
|
|
|
|
])
|
|
|
|
->map(function($s) {
|
|
|
|
$s['state'] = (bool) config_cache($s['key']);
|
|
|
|
return $s;
|
|
|
|
});
|
2019-08-20 01:07:25 +00:00
|
|
|
}
|
|
|
|
|
2023-01-15 03:33:46 +00:00
|
|
|
public function updateConfiguration(Request $request)
|
|
|
|
{
|
|
|
|
abort_if(!$request->user(), 404);
|
|
|
|
abort_unless($request->user()->is_admin === 1, 404);
|
|
|
|
abort_unless(config('instance.enable_cc'), 400);
|
|
|
|
|
|
|
|
$this->validate($request, [
|
|
|
|
'key' => 'required',
|
|
|
|
'value' => 'required'
|
|
|
|
]);
|
|
|
|
|
|
|
|
$allowedKeys = [
|
|
|
|
'federation.activitypub.enabled',
|
|
|
|
'pixelfed.open_registration',
|
|
|
|
'instance.stories.enabled',
|
|
|
|
'pixelfed.enforce_email_verification',
|
|
|
|
'pixelfed.bouncer.enabled',
|
|
|
|
];
|
|
|
|
|
|
|
|
$key = $request->input('key');
|
|
|
|
$value = (bool) filter_var($request->input('value'), FILTER_VALIDATE_BOOLEAN);
|
|
|
|
abort_if(!in_array($key, $allowedKeys), 400, 'Invalid cache key.');
|
|
|
|
|
|
|
|
ConfigCacheService::put($key, $value);
|
|
|
|
|
|
|
|
return collect([
|
|
|
|
[
|
|
|
|
'name' => 'ActivityPub Federation',
|
|
|
|
'description' => 'Enable activitypub federation support, compatible with Pixelfed, Mastodon and other platforms.',
|
|
|
|
'key' => 'federation.activitypub.enabled'
|
|
|
|
],
|
|
|
|
|
|
|
|
[
|
|
|
|
'name' => 'Open Registration',
|
|
|
|
'description' => 'Allow new account registrations.',
|
|
|
|
'key' => 'pixelfed.open_registration'
|
|
|
|
],
|
|
|
|
|
|
|
|
[
|
|
|
|
'name' => 'Stories',
|
|
|
|
'description' => 'Enable the ephemeral Stories feature.',
|
|
|
|
'key' => 'instance.stories.enabled'
|
|
|
|
],
|
|
|
|
|
|
|
|
[
|
|
|
|
'name' => 'Require Email Verification',
|
|
|
|
'description' => 'Require new accounts to verify their email address.',
|
|
|
|
'key' => 'pixelfed.enforce_email_verification'
|
|
|
|
],
|
|
|
|
|
|
|
|
[
|
|
|
|
'name' => 'AutoSpam Detection',
|
|
|
|
'description' => 'Detect and remove spam from public timelines.',
|
|
|
|
'key' => 'pixelfed.bouncer.enabled'
|
|
|
|
],
|
|
|
|
])
|
|
|
|
->map(function($s) {
|
|
|
|
$s['state'] = (bool) config_cache($s['key']);
|
|
|
|
return $s;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getUsers(Request $request)
|
|
|
|
{
|
|
|
|
abort_if(!$request->user(), 404);
|
|
|
|
abort_unless($request->user()->is_admin === 1, 404);
|
|
|
|
$q = $request->input('q');
|
|
|
|
$sort = $request->input('sort', 'desc') === 'asc' ? 'asc' : 'desc';
|
|
|
|
$res = User::whereNull('status')
|
|
|
|
->when($q, function($query, $q) {
|
|
|
|
return $query->where('username', 'like', '%' . $q . '%');
|
|
|
|
})
|
|
|
|
->orderBy('id', $sort)
|
|
|
|
->cursorPaginate(10);
|
|
|
|
return AdminUser::collection($res);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getUser(Request $request)
|
|
|
|
{
|
|
|
|
abort_if(!$request->user(), 404);
|
|
|
|
abort_unless($request->user()->is_admin === 1, 404);
|
|
|
|
|
|
|
|
$id = $request->input('user_id');
|
|
|
|
$user = User::findOrFail($id);
|
|
|
|
$profile = $user->profile;
|
|
|
|
$account = AccountService::get($user->profile_id, true);
|
|
|
|
return (new AdminUser($user))->additional(['meta' => [
|
|
|
|
'account' => $account,
|
|
|
|
'moderation' => [
|
|
|
|
'unlisted' => (bool) $profile->unlisted,
|
|
|
|
'cw' => (bool) $profile->cw,
|
|
|
|
'no_autolink' => (bool) $profile->no_autolink
|
|
|
|
]
|
|
|
|
]]);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function userAdminAction(Request $request)
|
|
|
|
{
|
|
|
|
abort_if(!$request->user(), 404);
|
|
|
|
abort_unless($request->user()->is_admin === 1, 404);
|
|
|
|
|
|
|
|
$this->validate($request, [
|
|
|
|
'id' => 'required',
|
|
|
|
'action' => 'required|in:unlisted,cw,no_autolink,refresh_stats,verify_email',
|
|
|
|
'value' => 'sometimes'
|
|
|
|
]);
|
|
|
|
|
|
|
|
$id = $request->input('id');
|
|
|
|
$user = User::findOrFail($id);
|
|
|
|
$profile = Profile::findOrFail($user->profile_id);
|
|
|
|
$action = $request->input('action');
|
|
|
|
|
|
|
|
abort_if($user->is_admin == true && $action !== 'refresh_stats', 400, 'Cannot moderate admin accounts');
|
|
|
|
|
|
|
|
if($action === 'refresh_stats') {
|
|
|
|
$profile->following_count = DB::table('followers')->whereProfileId($user->profile_id)->count();
|
|
|
|
$profile->followers_count = DB::table('followers')->whereFollowingId($user->profile_id)->count();
|
|
|
|
$statusCount = Status::whereProfileId($user->profile_id)
|
|
|
|
->whereNull('in_reply_to_id')
|
|
|
|
->whereNull('reblog_of_id')
|
|
|
|
->whereIn('scope', ['public', 'unlisted', 'private'])
|
|
|
|
->count();
|
|
|
|
$profile->status_count = $statusCount;
|
|
|
|
$profile->save();
|
|
|
|
} else if($action === 'verify_email') {
|
|
|
|
$user->email_verified_at = now();
|
|
|
|
$user->save();
|
|
|
|
|
|
|
|
ModLogService::boot()
|
|
|
|
->objectUid($user->id)
|
|
|
|
->objectId($user->id)
|
|
|
|
->objectType('App\User::class')
|
|
|
|
->user($request->user())
|
|
|
|
->action('admin.user.moderate')
|
|
|
|
->metadata([
|
|
|
|
'action' => 'Manually verified email address',
|
|
|
|
'message' => 'Success!'
|
|
|
|
])
|
|
|
|
->accessLevel('admin')
|
|
|
|
->save();
|
|
|
|
} else {
|
|
|
|
$profile->{$action} = filter_var($request->input('value'), FILTER_VALIDATE_BOOLEAN);
|
|
|
|
$profile->save();
|
|
|
|
|
|
|
|
ModLogService::boot()
|
|
|
|
->objectUid($user->id)
|
|
|
|
->objectId($user->id)
|
|
|
|
->objectType('App\User::class')
|
|
|
|
->user($request->user())
|
|
|
|
->action('admin.user.moderate')
|
|
|
|
->metadata([
|
|
|
|
'action' => $action,
|
|
|
|
'message' => 'Success!'
|
|
|
|
])
|
|
|
|
->accessLevel('admin')
|
|
|
|
->save();
|
|
|
|
}
|
|
|
|
|
|
|
|
AccountService::del($user->profile_id);
|
|
|
|
$account = AccountService::get($user->profile_id, true);
|
|
|
|
|
|
|
|
return (new AdminUser($user))->additional(['meta' => [
|
|
|
|
'account' => $account,
|
|
|
|
'moderation' => [
|
|
|
|
'unlisted' => (bool) $profile->unlisted,
|
|
|
|
'cw' => (bool) $profile->cw,
|
|
|
|
'no_autolink' => (bool) $profile->no_autolink
|
|
|
|
]
|
|
|
|
]]);
|
|
|
|
}
|
2023-01-15 09:36:55 +00:00
|
|
|
|
|
|
|
public function instances(Request $request)
|
|
|
|
{
|
|
|
|
abort_if(!$request->user(), 404);
|
|
|
|
abort_unless($request->user()->is_admin === 1, 404);
|
|
|
|
$this->validate($request, [
|
|
|
|
'q' => 'sometimes',
|
|
|
|
'sort' => 'sometimes|in:asc,desc',
|
|
|
|
'sort_by' => 'sometimes|in:id,status_count,user_count,domain',
|
|
|
|
'filter' => 'sometimes|in:all,unlisted,auto_cw,banned',
|
|
|
|
]);
|
|
|
|
|
|
|
|
$q = $request->input('q');
|
|
|
|
$sort = $request->input('sort', 'desc') === 'asc' ? 'asc' : 'desc';
|
|
|
|
$sortBy = $request->input('sort_by', 'id');
|
|
|
|
$filter = $request->input('filter');
|
|
|
|
|
|
|
|
$res = Instance::when($q, function($query, $q) {
|
|
|
|
return $query->where('domain', 'like', '%' . $q . '%');
|
|
|
|
})
|
|
|
|
->when($filter, function($query, $filter) {
|
|
|
|
if($filter === 'all') {
|
|
|
|
return $query;
|
|
|
|
} else {
|
|
|
|
return $query->where($filter, true);
|
|
|
|
}
|
|
|
|
})
|
|
|
|
->when($sortBy, function($query, $sortBy) use($sort) {
|
|
|
|
return $query->orderBy($sortBy, $sort);
|
|
|
|
}, function($query) {
|
|
|
|
return $query->orderBy('id', 'desc');
|
|
|
|
})
|
|
|
|
->cursorPaginate(10)
|
|
|
|
->withQueryString();
|
|
|
|
|
|
|
|
return AdminInstance::collection($res);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getInstance(Request $request)
|
|
|
|
{
|
|
|
|
abort_if(!$request->user(), 404);
|
|
|
|
abort_unless($request->user()->is_admin === 1, 404);
|
|
|
|
|
|
|
|
$id = $request->input('id');
|
|
|
|
$res = Instance::findOrFail($id);
|
|
|
|
|
|
|
|
return new AdminInstance($res);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function moderateInstance(Request $request)
|
|
|
|
{
|
|
|
|
abort_if(!$request->user(), 404);
|
|
|
|
abort_unless($request->user()->is_admin === 1, 404);
|
|
|
|
|
|
|
|
$this->validate($request, [
|
|
|
|
'id' => 'required',
|
|
|
|
'key' => 'required|in:unlisted,auto_cw,banned',
|
|
|
|
'value' => 'required'
|
|
|
|
]);
|
|
|
|
|
|
|
|
$id = $request->input('id');
|
|
|
|
$key = $request->input('key');
|
|
|
|
$value = (bool) filter_var($request->input('value'), FILTER_VALIDATE_BOOLEAN);
|
|
|
|
$res = Instance::findOrFail($id);
|
|
|
|
$res->{$key} = $value;
|
|
|
|
$res->save();
|
|
|
|
|
|
|
|
InstanceService::refresh();
|
|
|
|
NetworkTimelineService::warmCache(true);
|
|
|
|
|
|
|
|
return new AdminInstance($res);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function refreshInstanceStats(Request $request)
|
|
|
|
{
|
|
|
|
abort_if(!$request->user(), 404);
|
|
|
|
abort_unless($request->user()->is_admin === 1, 404);
|
|
|
|
|
|
|
|
$this->validate($request, [
|
|
|
|
'id' => 'required',
|
|
|
|
]);
|
|
|
|
|
|
|
|
$id = $request->input('id');
|
|
|
|
$instance = Instance::findOrFail($id);
|
|
|
|
$instance->user_count = Profile::whereDomain($instance->domain)->count();
|
|
|
|
$instance->status_count = Profile::whereDomain($instance->domain)->leftJoin('statuses', 'profiles.id', '=', 'statuses.profile_id')->count();
|
|
|
|
$instance->save();
|
|
|
|
|
|
|
|
return new AdminInstance($instance);
|
|
|
|
}
|
2023-01-15 03:33:46 +00:00
|
|
|
}
|