2018-04-29 16:25:57 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
|
2019-02-05 20:56:10 +00:00
|
|
|
use App\{
|
2020-12-10 05:08:32 +00:00
|
|
|
AccountInterstitial,
|
2020-01-23 05:15:11 +00:00
|
|
|
Contact,
|
|
|
|
Hashtag,
|
2022-07-28 07:06:39 +00:00
|
|
|
Instance,
|
2020-01-23 05:15:11 +00:00
|
|
|
Newsroom,
|
|
|
|
OauthClient,
|
|
|
|
Profile,
|
|
|
|
Report,
|
|
|
|
Status,
|
2022-12-27 11:43:04 +00:00
|
|
|
StatusHashtag,
|
2021-08-31 06:33:04 +00:00
|
|
|
Story,
|
2020-01-23 05:15:11 +00:00
|
|
|
User
|
2019-02-05 20:56:10 +00:00
|
|
|
};
|
2022-01-21 07:27:30 +00:00
|
|
|
use DB, Cache, Storage;
|
2018-09-03 01:25:08 +00:00
|
|
|
use Carbon\Carbon;
|
2018-04-29 16:25:57 +00:00
|
|
|
use Illuminate\Http\Request;
|
2021-11-09 06:02:34 +00:00
|
|
|
use Illuminate\Support\Facades\Redis;
|
2019-02-05 20:56:10 +00:00
|
|
|
use App\Http\Controllers\Admin\{
|
2022-11-14 03:11:07 +00:00
|
|
|
AdminDirectoryController,
|
2020-01-23 05:15:11 +00:00
|
|
|
AdminDiscoverController,
|
2022-12-27 11:43:04 +00:00
|
|
|
AdminHashtagsController,
|
2020-01-23 05:15:11 +00:00
|
|
|
AdminInstanceController,
|
|
|
|
AdminReportController,
|
2022-01-21 07:27:30 +00:00
|
|
|
// AdminGroupsController,
|
2020-01-23 05:15:11 +00:00
|
|
|
AdminMediaController,
|
|
|
|
AdminSettingsController,
|
2022-01-21 07:27:30 +00:00
|
|
|
// AdminStorageController,
|
2020-02-18 07:22:47 +00:00
|
|
|
AdminSupportController,
|
|
|
|
AdminUserController
|
2019-02-05 20:56:10 +00:00
|
|
|
};
|
2019-02-12 08:11:02 +00:00
|
|
|
use Illuminate\Validation\Rule;
|
2020-01-23 05:15:11 +00:00
|
|
|
use App\Services\AdminStatsService;
|
2022-07-28 07:06:39 +00:00
|
|
|
use App\Services\AccountService;
|
2021-11-09 06:02:34 +00:00
|
|
|
use App\Services\StatusService;
|
2021-08-31 06:33:04 +00:00
|
|
|
use App\Services\StoryService;
|
2022-01-21 07:27:30 +00:00
|
|
|
use App\Models\CustomEmoji;
|
2018-04-29 16:25:57 +00:00
|
|
|
|
|
|
|
class AdminController extends Controller
|
|
|
|
{
|
2020-01-23 05:15:11 +00:00
|
|
|
use AdminReportController,
|
2022-11-14 03:11:07 +00:00
|
|
|
AdminDirectoryController,
|
2021-11-09 06:02:34 +00:00
|
|
|
AdminDiscoverController,
|
2022-12-27 11:43:04 +00:00
|
|
|
AdminHashtagsController,
|
2022-01-21 07:27:30 +00:00
|
|
|
// AdminGroupsController,
|
2020-01-23 05:15:11 +00:00
|
|
|
AdminMediaController,
|
|
|
|
AdminSettingsController,
|
2020-02-18 07:22:47 +00:00
|
|
|
AdminInstanceController,
|
2022-01-21 07:27:30 +00:00
|
|
|
// AdminStorageController,
|
2020-02-18 07:22:47 +00:00
|
|
|
AdminUserController;
|
2020-01-23 05:15:11 +00:00
|
|
|
|
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
$this->middleware('admin');
|
2020-02-18 07:22:47 +00:00
|
|
|
$this->middleware('dangerzone');
|
2020-01-23 05:15:11 +00:00
|
|
|
$this->middleware('twofactor');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function home()
|
2022-07-28 07:06:39 +00:00
|
|
|
{
|
|
|
|
return view('admin.home');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function stats()
|
2020-01-23 05:15:11 +00:00
|
|
|
{
|
|
|
|
$data = AdminStatsService::get();
|
2022-07-28 07:06:39 +00:00
|
|
|
return view('admin.stats', compact('data'));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getStats()
|
|
|
|
{
|
|
|
|
return AdminStatsService::summary();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getAccounts()
|
|
|
|
{
|
|
|
|
$users = User::orderByDesc('id')->cursorPaginate(10);
|
|
|
|
|
|
|
|
$res = [
|
|
|
|
"next_page_url" => $users->nextPageUrl(),
|
|
|
|
"data" => $users->map(function($user) {
|
|
|
|
$account = AccountService::get($user->profile_id, true);
|
|
|
|
if(!$account) {
|
|
|
|
return [
|
|
|
|
"id" => $user->profile_id,
|
|
|
|
"username" => $user->username,
|
|
|
|
"status" => "deleted",
|
|
|
|
"avatar" => "/storage/avatars/default.jpg",
|
|
|
|
"created_at" => $user->created_at
|
|
|
|
];
|
|
|
|
}
|
|
|
|
$account['user_id'] = $user->id;
|
|
|
|
return $account;
|
|
|
|
})
|
|
|
|
->filter(function($user) {
|
|
|
|
return $user;
|
|
|
|
})
|
|
|
|
];
|
|
|
|
return $res;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getPosts()
|
|
|
|
{
|
|
|
|
$posts = DB::table('statuses')
|
|
|
|
->orderByDesc('id')
|
|
|
|
->cursorPaginate(10);
|
|
|
|
|
|
|
|
$res = [
|
|
|
|
"next_page_url" => $posts->nextPageUrl(),
|
|
|
|
"data" => $posts->map(function($post) {
|
|
|
|
$status = StatusService::get($post->id, false);
|
|
|
|
if(!$status) {
|
|
|
|
return ["id" => $post->id, "created_at" => $post->created_at];
|
|
|
|
}
|
|
|
|
return $status;
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
|
|
|
return $res;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getInstances()
|
|
|
|
{
|
|
|
|
return Instance::orderByDesc('id')->cursorPaginate(10);
|
2020-01-23 05:15:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function statuses(Request $request)
|
|
|
|
{
|
2021-11-09 06:02:34 +00:00
|
|
|
$statuses = Status::orderBy('id', 'desc')->cursorPaginate(10);
|
|
|
|
$data = $statuses->map(function($status) {
|
|
|
|
return StatusService::get($status->id, false);
|
|
|
|
})
|
|
|
|
->filter(function($s) {
|
|
|
|
return $s;
|
|
|
|
})
|
|
|
|
->toArray();
|
|
|
|
return view('admin.statuses.home', compact('statuses', 'data'));
|
2020-01-23 05:15:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function showStatus(Request $request, $id)
|
|
|
|
{
|
|
|
|
$status = Status::findOrFail($id);
|
|
|
|
|
|
|
|
return view('admin.statuses.show', compact('status'));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function profiles(Request $request)
|
|
|
|
{
|
|
|
|
$this->validate($request, [
|
|
|
|
'search' => 'nullable|string|max:250',
|
|
|
|
'filter' => [
|
|
|
|
'nullable',
|
|
|
|
'string',
|
|
|
|
Rule::in(['all', 'local', 'remote'])
|
2020-02-18 07:22:47 +00:00
|
|
|
]
|
2020-01-23 05:15:11 +00:00
|
|
|
]);
|
|
|
|
$search = $request->input('search');
|
|
|
|
$filter = $request->input('filter');
|
|
|
|
$limit = 12;
|
2020-02-18 07:22:47 +00:00
|
|
|
$profiles = Profile::select('id','username')
|
|
|
|
->whereNull('status')
|
|
|
|
->when($search, function($q, $search) {
|
|
|
|
return $q->where('username', 'like', "%$search%");
|
|
|
|
})->when($filter, function($q, $filter) {
|
|
|
|
if($filter == 'local') {
|
|
|
|
return $q->whereNull('domain');
|
|
|
|
}
|
|
|
|
if($filter == 'remote') {
|
|
|
|
return $q->whereNotNull('domain');
|
|
|
|
}
|
|
|
|
return $q;
|
|
|
|
})->orderByDesc('id')
|
2020-01-23 05:15:11 +00:00
|
|
|
->simplePaginate($limit);
|
|
|
|
|
|
|
|
return view('admin.profiles.home', compact('profiles'));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function profileShow(Request $request, $id)
|
|
|
|
{
|
|
|
|
$profile = Profile::findOrFail($id);
|
|
|
|
$user = $profile->user;
|
|
|
|
return view('admin.profiles.edit', compact('profile', 'user'));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function appsHome(Request $request)
|
|
|
|
{
|
|
|
|
$filter = $request->input('filter');
|
2022-05-14 09:57:04 +00:00
|
|
|
if($filter == 'revoked') {
|
2020-01-23 05:15:11 +00:00
|
|
|
$apps = OauthClient::with('user')
|
|
|
|
->whereNotNull('user_id')
|
|
|
|
->whereRevoked(true)
|
|
|
|
->orderByDesc('id')
|
|
|
|
->paginate(10);
|
|
|
|
} else {
|
|
|
|
$apps = OauthClient::with('user')
|
|
|
|
->whereNotNull('user_id')
|
|
|
|
->orderByDesc('id')
|
|
|
|
->paginate(10);
|
|
|
|
}
|
|
|
|
return view('admin.apps.home', compact('apps'));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function messagesHome(Request $request)
|
|
|
|
{
|
|
|
|
$messages = Contact::orderByDesc('id')->paginate(10);
|
|
|
|
return view('admin.messages.home', compact('messages'));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function messagesShow(Request $request, $id)
|
|
|
|
{
|
|
|
|
$message = Contact::findOrFail($id);
|
|
|
|
return view('admin.messages.show', compact('message'));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function messagesMarkRead(Request $request)
|
|
|
|
{
|
|
|
|
$this->validate($request, [
|
|
|
|
'id' => 'required|integer|min:1'
|
|
|
|
]);
|
|
|
|
$id = $request->input('id');
|
|
|
|
$message = Contact::findOrFail($id);
|
|
|
|
if($message->read_at) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
$message->read_at = now();
|
|
|
|
$message->save();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function newsroomHome(Request $request)
|
|
|
|
{
|
|
|
|
$newsroom = Newsroom::latest()->paginate(10);
|
|
|
|
return view('admin.newsroom.home', compact('newsroom'));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function newsroomCreate(Request $request)
|
|
|
|
{
|
|
|
|
return view('admin.newsroom.create');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function newsroomEdit(Request $request, $id)
|
|
|
|
{
|
|
|
|
$news = Newsroom::findOrFail($id);
|
|
|
|
return view('admin.newsroom.edit', compact('news'));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function newsroomDelete(Request $request, $id)
|
|
|
|
{
|
|
|
|
$news = Newsroom::findOrFail($id);
|
|
|
|
$news->delete();
|
|
|
|
return redirect('/i/admin/newsroom');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function newsroomUpdate(Request $request, $id)
|
|
|
|
{
|
|
|
|
$this->validate($request, [
|
|
|
|
'title' => 'required|string|min:1|max:100',
|
|
|
|
'summary' => 'nullable|string|max:200',
|
|
|
|
'body' => 'nullable|string'
|
|
|
|
]);
|
|
|
|
$changed = false;
|
|
|
|
$changedFields = [];
|
|
|
|
$news = Newsroom::findOrFail($id);
|
|
|
|
$fields = [
|
|
|
|
'title' => 'string',
|
|
|
|
'summary' => 'string',
|
|
|
|
'body' => 'string',
|
|
|
|
'category' => 'string',
|
|
|
|
'show_timeline' => 'boolean',
|
|
|
|
'auth_only' => 'boolean',
|
|
|
|
'show_link' => 'boolean',
|
|
|
|
'force_modal' => 'boolean',
|
|
|
|
'published' => 'published'
|
|
|
|
];
|
|
|
|
foreach($fields as $field => $type) {
|
|
|
|
switch ($type) {
|
|
|
|
case 'string':
|
|
|
|
if($request->{$field} != $news->{$field}) {
|
|
|
|
if($field == 'title') {
|
|
|
|
$news->slug = str_slug($request->{$field});
|
|
|
|
}
|
|
|
|
$news->{$field} = $request->{$field};
|
|
|
|
$changed = true;
|
|
|
|
array_push($changedFields, $field);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'boolean':
|
|
|
|
$state = $request->{$field} == 'on' ? true : false;
|
|
|
|
if($state != $news->{$field}) {
|
|
|
|
$news->{$field} = $state;
|
|
|
|
$changed = true;
|
|
|
|
array_push($changedFields, $field);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'published':
|
|
|
|
$state = $request->{$field} == 'on' ? true : false;
|
|
|
|
$published = $news->published_at != null;
|
|
|
|
if($state != $published) {
|
|
|
|
$news->published_at = $state ? now() : null;
|
|
|
|
$changed = true;
|
|
|
|
array_push($changedFields, $field);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if($changed) {
|
|
|
|
$news->save();
|
|
|
|
}
|
|
|
|
$redirect = $news->published_at ? $news->permalink() : $news->editUrl();
|
|
|
|
return redirect($redirect);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public function newsroomStore(Request $request)
|
|
|
|
{
|
|
|
|
$this->validate($request, [
|
|
|
|
'title' => 'required|string|min:1|max:100',
|
|
|
|
'summary' => 'nullable|string|max:200',
|
|
|
|
'body' => 'nullable|string'
|
|
|
|
]);
|
|
|
|
$changed = false;
|
|
|
|
$changedFields = [];
|
|
|
|
$news = new Newsroom();
|
|
|
|
$fields = [
|
|
|
|
'title' => 'string',
|
|
|
|
'summary' => 'string',
|
|
|
|
'body' => 'string',
|
|
|
|
'category' => 'string',
|
|
|
|
'show_timeline' => 'boolean',
|
|
|
|
'auth_only' => 'boolean',
|
|
|
|
'show_link' => 'boolean',
|
|
|
|
'force_modal' => 'boolean',
|
|
|
|
'published' => 'published'
|
|
|
|
];
|
|
|
|
foreach($fields as $field => $type) {
|
|
|
|
switch ($type) {
|
|
|
|
case 'string':
|
|
|
|
if($request->{$field} != $news->{$field}) {
|
|
|
|
if($field == 'title') {
|
|
|
|
$news->slug = str_slug($request->{$field});
|
|
|
|
}
|
|
|
|
$news->{$field} = $request->{$field};
|
|
|
|
$changed = true;
|
|
|
|
array_push($changedFields, $field);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'boolean':
|
|
|
|
$state = $request->{$field} == 'on' ? true : false;
|
|
|
|
if($state != $news->{$field}) {
|
|
|
|
$news->{$field} = $state;
|
|
|
|
$changed = true;
|
|
|
|
array_push($changedFields, $field);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'published':
|
|
|
|
$state = $request->{$field} == 'on' ? true : false;
|
|
|
|
$published = $news->published_at != null;
|
|
|
|
if($state != $published) {
|
|
|
|
$news->published_at = $state ? now() : null;
|
|
|
|
$changed = true;
|
|
|
|
array_push($changedFields, $field);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if($changed) {
|
|
|
|
$news->save();
|
|
|
|
}
|
|
|
|
$redirect = $news->published_at ? $news->permalink() : $news->editUrl();
|
|
|
|
return redirect($redirect);
|
|
|
|
}
|
2021-07-02 03:46:45 +00:00
|
|
|
|
|
|
|
public function diagnosticsHome(Request $request)
|
|
|
|
{
|
|
|
|
return view('admin.diagnostics.home');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function diagnosticsDecrypt(Request $request)
|
|
|
|
{
|
|
|
|
$this->validate($request, [
|
|
|
|
'payload' => 'required'
|
|
|
|
]);
|
|
|
|
|
|
|
|
$key = 'exception_report:';
|
|
|
|
$decrypted = decrypt($request->input('payload'));
|
|
|
|
|
|
|
|
if(!starts_with($decrypted, $key)) {
|
|
|
|
abort(403, 'Can only decrypt error diagnostics');
|
|
|
|
}
|
|
|
|
|
|
|
|
$res = [
|
|
|
|
'decrypted' => substr($decrypted, strlen($key))
|
|
|
|
];
|
|
|
|
|
|
|
|
return response()->json($res);
|
|
|
|
}
|
2021-08-31 06:33:04 +00:00
|
|
|
|
|
|
|
public function stories(Request $request)
|
|
|
|
{
|
|
|
|
$stories = Story::with('profile')->latest()->paginate(10);
|
|
|
|
$stats = StoryService::adminStats();
|
|
|
|
return view('admin.stories.home', compact('stories', 'stats'));
|
|
|
|
}
|
2022-01-21 07:27:30 +00:00
|
|
|
|
|
|
|
public function customEmojiHome(Request $request)
|
|
|
|
{
|
|
|
|
if(!config('federation.custom_emoji.enabled')) {
|
|
|
|
return view('admin.custom-emoji.not-enabled');
|
|
|
|
}
|
|
|
|
$this->validate($request, [
|
2022-01-21 08:12:56 +00:00
|
|
|
'sort' => 'sometimes|in:all,local,remote,duplicates,disabled,search'
|
2022-01-21 07:27:30 +00:00
|
|
|
]);
|
|
|
|
|
|
|
|
if($request->has('cc')) {
|
|
|
|
Cache::forget('pf:admin:custom_emoji:stats');
|
2022-01-25 09:08:50 +00:00
|
|
|
Cache::forget('pf:custom_emoji');
|
2022-01-21 07:27:30 +00:00
|
|
|
return redirect(route('admin.custom-emoji'));
|
|
|
|
}
|
|
|
|
|
|
|
|
$sort = $request->input('sort') ?? 'all';
|
2022-01-21 08:12:56 +00:00
|
|
|
|
|
|
|
if($sort == 'search' && empty($request->input('q'))) {
|
|
|
|
return redirect(route('admin.custom-emoji'));
|
|
|
|
}
|
|
|
|
|
2022-01-21 10:19:09 +00:00
|
|
|
$pg = config('database.default') == 'pgsql';
|
|
|
|
|
|
|
|
$emojis = CustomEmoji::when($sort, function($query, $sort) use($request, $pg) {
|
2022-01-21 07:27:30 +00:00
|
|
|
if($sort == 'all') {
|
2022-01-21 10:19:09 +00:00
|
|
|
if($pg) {
|
|
|
|
return $query->latest();
|
|
|
|
} else {
|
|
|
|
return $query->groupBy('shortcode')->latest();
|
|
|
|
}
|
2022-01-21 07:27:30 +00:00
|
|
|
} else if($sort == 'local') {
|
|
|
|
return $query->latest()->where('domain', '=', config('pixelfed.domain.app'));
|
|
|
|
} else if($sort == 'remote') {
|
|
|
|
return $query->latest()->where('domain', '!=', config('pixelfed.domain.app'));
|
|
|
|
} else if($sort == 'duplicates') {
|
|
|
|
return $query->latest()->groupBy('shortcode')->havingRaw('count(*) > 1');
|
|
|
|
} else if($sort == 'disabled') {
|
|
|
|
return $query->latest()->whereDisabled(true);
|
2022-01-21 08:12:56 +00:00
|
|
|
} else if($sort == 'search') {
|
|
|
|
$q = $query
|
|
|
|
->latest()
|
|
|
|
->where('shortcode', 'like', '%' . $request->input('q') . '%')
|
|
|
|
->orWhere('domain', 'like', '%' . $request->input('q') . '%');
|
|
|
|
if(!$request->has('dups')) {
|
|
|
|
$q = $q->groupBy('shortcode');
|
|
|
|
}
|
|
|
|
return $q;
|
2022-01-21 07:27:30 +00:00
|
|
|
}
|
2022-01-21 08:12:56 +00:00
|
|
|
})
|
|
|
|
->simplePaginate(10)
|
|
|
|
->withQueryString();
|
2022-01-21 07:27:30 +00:00
|
|
|
|
2022-01-21 10:19:09 +00:00
|
|
|
$stats = Cache::remember('pf:admin:custom_emoji:stats', 43200, function() use($pg) {
|
|
|
|
$res = [
|
2022-01-21 07:27:30 +00:00
|
|
|
'total' => CustomEmoji::count(),
|
|
|
|
'active' => CustomEmoji::whereDisabled(false)->count(),
|
|
|
|
'remote' => CustomEmoji::where('domain', '!=', config('pixelfed.domain.app'))->count(),
|
|
|
|
];
|
2022-01-21 10:19:09 +00:00
|
|
|
|
|
|
|
if($pg) {
|
|
|
|
$res['duplicate'] = CustomEmoji::select('shortcode')->groupBy('shortcode')->havingRaw('count(*) > 1')->count();
|
|
|
|
} else {
|
|
|
|
$res['duplicate'] = CustomEmoji::groupBy('shortcode')->havingRaw('count(*) > 1')->count();
|
|
|
|
}
|
|
|
|
|
|
|
|
return $res;
|
2022-01-21 07:27:30 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
return view('admin.custom-emoji.home', compact('emojis', 'sort', 'stats'));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function customEmojiToggleActive(Request $request, $id)
|
|
|
|
{
|
|
|
|
abort_unless(config('federation.custom_emoji.enabled'), 404);
|
|
|
|
$emoji = CustomEmoji::findOrFail($id);
|
|
|
|
$emoji->disabled = !$emoji->disabled;
|
|
|
|
$emoji->save();
|
|
|
|
$key = CustomEmoji::CACHE_KEY . str_replace(':', '', $emoji->shortcode);
|
|
|
|
Cache::forget($key);
|
|
|
|
return redirect()->back();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function customEmojiAdd(Request $request)
|
|
|
|
{
|
|
|
|
abort_unless(config('federation.custom_emoji.enabled'), 404);
|
|
|
|
return view('admin.custom-emoji.add');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function customEmojiStore(Request $request)
|
|
|
|
{
|
|
|
|
abort_unless(config('federation.custom_emoji.enabled'), 404);
|
|
|
|
$this->validate($request, [
|
|
|
|
'shortcode' => [
|
|
|
|
'required',
|
|
|
|
'min:3',
|
|
|
|
'max:80',
|
|
|
|
'starts_with::',
|
|
|
|
'ends_with::',
|
|
|
|
Rule::unique('custom_emoji')->where(function ($query) use($request) {
|
|
|
|
return $query->whereDomain(config('pixelfed.domain.app'))
|
|
|
|
->whereShortcode($request->input('shortcode'));
|
|
|
|
})
|
|
|
|
],
|
2022-02-06 02:32:10 +00:00
|
|
|
'emoji' => 'required|file|mimetypes:jpg,png|max:' . (config('federation.custom_emoji.max_size') / 1000)
|
2022-01-21 07:27:30 +00:00
|
|
|
]);
|
|
|
|
|
|
|
|
$emoji = new CustomEmoji;
|
|
|
|
$emoji->shortcode = $request->input('shortcode');
|
|
|
|
$emoji->domain = config('pixelfed.domain.app');
|
|
|
|
$emoji->save();
|
|
|
|
|
|
|
|
$fileName = $emoji->id . '.' . $request->emoji->extension();
|
|
|
|
$request->emoji->storeAs('public/emoji', $fileName);
|
|
|
|
$emoji->media_path = 'emoji/' . $fileName;
|
|
|
|
$emoji->save();
|
2022-01-25 09:08:50 +00:00
|
|
|
Cache::forget('pf:custom_emoji');
|
2022-01-21 07:27:30 +00:00
|
|
|
return redirect(route('admin.custom-emoji'));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function customEmojiDelete(Request $request, $id)
|
|
|
|
{
|
|
|
|
abort_unless(config('federation.custom_emoji.enabled'), 404);
|
|
|
|
$emoji = CustomEmoji::findOrFail($id);
|
|
|
|
Storage::delete("public/{$emoji->media_path}");
|
2022-01-25 09:08:50 +00:00
|
|
|
Cache::forget('pf:custom_emoji');
|
2022-01-21 07:27:30 +00:00
|
|
|
$emoji->delete();
|
|
|
|
return redirect(route('admin.custom-emoji'));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function customEmojiShowDuplicates(Request $request, $id)
|
|
|
|
{
|
|
|
|
abort_unless(config('federation.custom_emoji.enabled'), 404);
|
|
|
|
$emoji = CustomEmoji::orderBy('id')->whereDisabled(false)->whereShortcode($id)->firstOrFail();
|
|
|
|
$emojis = CustomEmoji::whereShortcode($id)->where('id', '!=', $emoji->id)->cursorPaginate(10);
|
|
|
|
return view('admin.custom-emoji.duplicates', compact('emoji', 'emojis'));
|
|
|
|
}
|
2018-04-29 16:25:57 +00:00
|
|
|
}
|