mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-22 06:21:27 +00:00
Add custom css to admin dashboard
This commit is contained in:
parent
f671fdb16c
commit
ecf22b54d5
3 changed files with 569 additions and 495 deletions
|
@ -2,57 +2,45 @@
|
|||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use App\{
|
||||
AccountInterstitial,
|
||||
Contact,
|
||||
Hashtag,
|
||||
Instance,
|
||||
Newsroom,
|
||||
OauthClient,
|
||||
Profile,
|
||||
Report,
|
||||
Status,
|
||||
StatusHashtag,
|
||||
Story,
|
||||
User
|
||||
};
|
||||
use DB, Cache, Storage;
|
||||
use Carbon\Carbon;
|
||||
use Illuminate\Http\Request;
|
||||
use Illuminate\Support\Facades\Redis;
|
||||
use App\Http\Controllers\Admin\{
|
||||
AdminAutospamController,
|
||||
AdminDirectoryController,
|
||||
AdminDiscoverController,
|
||||
AdminHashtagsController,
|
||||
AdminInstanceController,
|
||||
AdminReportController,
|
||||
// AdminGroupsController,
|
||||
AdminMediaController,
|
||||
AdminSettingsController,
|
||||
// AdminStorageController,
|
||||
AdminSupportController,
|
||||
AdminUserController
|
||||
};
|
||||
use Illuminate\Validation\Rule;
|
||||
use App\Services\AdminStatsService;
|
||||
use App\Contact;
|
||||
use App\Http\Controllers\Admin\AdminAutospamController;
|
||||
use App\Http\Controllers\Admin\AdminDirectoryController;
|
||||
use App\Http\Controllers\Admin\AdminDiscoverController;
|
||||
use App\Http\Controllers\Admin\AdminHashtagsController;
|
||||
use App\Http\Controllers\Admin\AdminInstanceController;
|
||||
use App\Http\Controllers\Admin\AdminMediaController;
|
||||
use App\Http\Controllers\Admin\AdminReportController;
|
||||
use App\Http\Controllers\Admin\AdminSettingsController;
|
||||
use App\Http\Controllers\Admin\AdminUserController;
|
||||
use App\Instance;
|
||||
use App\Models\CustomEmoji;
|
||||
use App\Newsroom;
|
||||
use App\OauthClient;
|
||||
use App\Profile;
|
||||
use App\Services\AccountService;
|
||||
use App\Services\AdminStatsService;
|
||||
use App\Services\ConfigCacheService;
|
||||
use App\Services\StatusService;
|
||||
use App\Services\StoryService;
|
||||
use App\Models\CustomEmoji;
|
||||
use App\Status;
|
||||
use App\Story;
|
||||
use App\User;
|
||||
use Cache;
|
||||
use DB;
|
||||
use Illuminate\Http\Request;
|
||||
use Illuminate\Validation\Rule;
|
||||
use Storage;
|
||||
|
||||
class AdminController extends Controller
|
||||
{
|
||||
use AdminReportController,
|
||||
AdminAutospamController,
|
||||
use AdminAutospamController,
|
||||
AdminDirectoryController,
|
||||
AdminDiscoverController,
|
||||
AdminHashtagsController,
|
||||
// AdminGroupsController,
|
||||
AdminMediaController,
|
||||
AdminSettingsController,
|
||||
AdminInstanceController,
|
||||
// AdminStorageController,
|
||||
AdminMediaController,
|
||||
AdminReportController,
|
||||
AdminSettingsController,
|
||||
AdminUserController;
|
||||
|
||||
public function __construct()
|
||||
|
@ -67,9 +55,27 @@ class AdminController extends Controller
|
|||
return view('admin.home');
|
||||
}
|
||||
|
||||
public function customCss()
|
||||
{
|
||||
return view('admin.settings.customcss');
|
||||
}
|
||||
|
||||
public function saveCustomCss(Request $request)
|
||||
{
|
||||
$this->validate($request, [
|
||||
'css' => 'sometimes|max:5000',
|
||||
'show' => 'sometimes',
|
||||
]);
|
||||
ConfigCacheService::put('uikit.custom.css', $request->input('css'));
|
||||
ConfigCacheService::put('uikit.show_custom.css', $request->boolean('show'));
|
||||
|
||||
return view('admin.settings.customcss');
|
||||
}
|
||||
|
||||
public function stats()
|
||||
{
|
||||
$data = AdminStatsService::get();
|
||||
|
||||
return view('admin.stats', compact('data'));
|
||||
}
|
||||
|
||||
|
@ -83,25 +89,27 @@ class AdminController extends Controller
|
|||
$users = User::orderByDesc('id')->cursorPaginate(10);
|
||||
|
||||
$res = [
|
||||
"next_page_url" => $users->nextPageUrl(),
|
||||
"data" => $users->map(function($user) {
|
||||
'next_page_url' => $users->nextPageUrl(),
|
||||
'data' => $users->map(function ($user) {
|
||||
$account = AccountService::get($user->profile_id, true);
|
||||
if(!$account) {
|
||||
if (! $account) {
|
||||
return [
|
||||
"id" => $user->profile_id,
|
||||
"username" => $user->username,
|
||||
"status" => "deleted",
|
||||
"avatar" => "/storage/avatars/default.jpg",
|
||||
"created_at" => $user->created_at
|
||||
'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) {
|
||||
->filter(function ($user) {
|
||||
return $user;
|
||||
})
|
||||
}),
|
||||
];
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
|
@ -112,14 +120,15 @@ class AdminController extends Controller
|
|||
->cursorPaginate(10);
|
||||
|
||||
$res = [
|
||||
"next_page_url" => $posts->nextPageUrl(),
|
||||
"data" => $posts->map(function($post) {
|
||||
'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];
|
||||
if (! $status) {
|
||||
return ['id' => $post->id, 'created_at' => $post->created_at];
|
||||
}
|
||||
|
||||
return $status;
|
||||
})
|
||||
}),
|
||||
];
|
||||
|
||||
return $res;
|
||||
|
@ -133,13 +142,14 @@ class AdminController extends Controller
|
|||
public function statuses(Request $request)
|
||||
{
|
||||
$statuses = Status::orderBy('id', 'desc')->cursorPaginate(10);
|
||||
$data = $statuses->map(function($status) {
|
||||
$data = $statuses->map(function ($status) {
|
||||
return StatusService::get($status->id, false);
|
||||
})
|
||||
->filter(function($s) {
|
||||
->filter(function ($s) {
|
||||
return $s;
|
||||
})
|
||||
->toArray();
|
||||
|
||||
return view('admin.statuses.home', compact('statuses', 'data'));
|
||||
}
|
||||
|
||||
|
@ -157,23 +167,24 @@ class AdminController extends Controller
|
|||
'filter' => [
|
||||
'nullable',
|
||||
'string',
|
||||
Rule::in(['all', 'local', 'remote'])
|
||||
]
|
||||
Rule::in(['all', 'local', 'remote']),
|
||||
],
|
||||
]);
|
||||
$search = $request->input('search');
|
||||
$filter = $request->input('filter');
|
||||
$limit = 12;
|
||||
$profiles = Profile::select('id','username')
|
||||
$profiles = Profile::select('id', 'username')
|
||||
->whereNull('status')
|
||||
->when($search, function($q, $search) {
|
||||
->when($search, function ($q, $search) {
|
||||
return $q->where('username', 'like', "%$search%");
|
||||
})->when($filter, function($q, $filter) {
|
||||
if($filter == 'local') {
|
||||
})->when($filter, function ($q, $filter) {
|
||||
if ($filter == 'local') {
|
||||
return $q->whereNull('domain');
|
||||
}
|
||||
if($filter == 'remote') {
|
||||
if ($filter == 'remote') {
|
||||
return $q->whereNotNull('domain');
|
||||
}
|
||||
|
||||
return $q;
|
||||
})->orderByDesc('id')
|
||||
->simplePaginate($limit);
|
||||
|
@ -185,13 +196,14 @@ class AdminController extends Controller
|
|||
{
|
||||
$profile = Profile::findOrFail($id);
|
||||
$user = $profile->user;
|
||||
|
||||
return view('admin.profiles.edit', compact('profile', 'user'));
|
||||
}
|
||||
|
||||
public function appsHome(Request $request)
|
||||
{
|
||||
$filter = $request->input('filter');
|
||||
if($filter == 'revoked') {
|
||||
if ($filter == 'revoked') {
|
||||
$apps = OauthClient::with('user')
|
||||
->whereNotNull('user_id')
|
||||
->whereRevoked(true)
|
||||
|
@ -203,39 +215,43 @@ class AdminController extends Controller
|
|||
->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' => 'required|integer|min:1',
|
||||
]);
|
||||
$id = $request->input('id');
|
||||
$message = Contact::findOrFail($id);
|
||||
if($message->read_at) {
|
||||
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'));
|
||||
}
|
||||
|
||||
|
@ -247,6 +263,7 @@ class AdminController extends Controller
|
|||
public function newsroomEdit(Request $request, $id)
|
||||
{
|
||||
$news = Newsroom::findOrFail($id);
|
||||
|
||||
return view('admin.newsroom.edit', compact('news'));
|
||||
}
|
||||
|
||||
|
@ -254,6 +271,7 @@ class AdminController extends Controller
|
|||
{
|
||||
$news = Newsroom::findOrFail($id);
|
||||
$news->delete();
|
||||
|
||||
return redirect('/i/admin/newsroom');
|
||||
}
|
||||
|
||||
|
@ -262,13 +280,13 @@ class AdminController extends Controller
|
|||
$this->validate($request, [
|
||||
'title' => 'required|string|min:1|max:100',
|
||||
'summary' => 'nullable|string|max:200',
|
||||
'body' => 'nullable|string'
|
||||
'body' => 'nullable|string',
|
||||
]);
|
||||
$changed = false;
|
||||
$changedFields = [];
|
||||
$slug = str_slug($request->input('title'));
|
||||
if(Newsroom::whereSlug($slug)->exists()) {
|
||||
$slug = $slug . '-' . str_random(4);
|
||||
if (Newsroom::whereSlug($slug)->exists()) {
|
||||
$slug = $slug.'-'.str_random(4);
|
||||
}
|
||||
$news = Newsroom::findOrFail($id);
|
||||
$fields = [
|
||||
|
@ -280,13 +298,13 @@ class AdminController extends Controller
|
|||
'auth_only' => 'boolean',
|
||||
'show_link' => 'boolean',
|
||||
'force_modal' => 'boolean',
|
||||
'published' => 'published'
|
||||
'published' => 'published',
|
||||
];
|
||||
foreach($fields as $field => $type) {
|
||||
foreach ($fields as $field => $type) {
|
||||
switch ($type) {
|
||||
case 'string':
|
||||
if($request->{$field} != $news->{$field}) {
|
||||
if($field == 'title') {
|
||||
if ($request->{$field} != $news->{$field}) {
|
||||
if ($field == 'title') {
|
||||
$news->slug = $slug;
|
||||
}
|
||||
$news->{$field} = $request->{$field};
|
||||
|
@ -297,7 +315,7 @@ class AdminController extends Controller
|
|||
|
||||
case 'boolean':
|
||||
$state = $request->{$field} == 'on' ? true : false;
|
||||
if($state != $news->{$field}) {
|
||||
if ($state != $news->{$field}) {
|
||||
$news->{$field} = $state;
|
||||
$changed = true;
|
||||
array_push($changedFields, $field);
|
||||
|
@ -306,7 +324,7 @@ class AdminController extends Controller
|
|||
case 'published':
|
||||
$state = $request->{$field} == 'on' ? true : false;
|
||||
$published = $news->published_at != null;
|
||||
if($state != $published) {
|
||||
if ($state != $published) {
|
||||
$news->published_at = $state ? now() : null;
|
||||
$changed = true;
|
||||
array_push($changedFields, $field);
|
||||
|
@ -316,26 +334,26 @@ class AdminController extends Controller
|
|||
}
|
||||
}
|
||||
|
||||
if($changed) {
|
||||
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'
|
||||
'body' => 'nullable|string',
|
||||
]);
|
||||
$changed = false;
|
||||
$changedFields = [];
|
||||
$slug = str_slug($request->input('title'));
|
||||
if(Newsroom::whereSlug($slug)->exists()) {
|
||||
$slug = $slug . '-' . str_random(4);
|
||||
if (Newsroom::whereSlug($slug)->exists()) {
|
||||
$slug = $slug.'-'.str_random(4);
|
||||
}
|
||||
$news = new Newsroom();
|
||||
$fields = [
|
||||
|
@ -347,13 +365,13 @@ class AdminController extends Controller
|
|||
'auth_only' => 'boolean',
|
||||
'show_link' => 'boolean',
|
||||
'force_modal' => 'boolean',
|
||||
'published' => 'published'
|
||||
'published' => 'published',
|
||||
];
|
||||
foreach($fields as $field => $type) {
|
||||
foreach ($fields as $field => $type) {
|
||||
switch ($type) {
|
||||
case 'string':
|
||||
if($request->{$field} != $news->{$field}) {
|
||||
if($field == 'title') {
|
||||
if ($request->{$field} != $news->{$field}) {
|
||||
if ($field == 'title') {
|
||||
$news->slug = $slug;
|
||||
}
|
||||
$news->{$field} = $request->{$field};
|
||||
|
@ -364,7 +382,7 @@ class AdminController extends Controller
|
|||
|
||||
case 'boolean':
|
||||
$state = $request->{$field} == 'on' ? true : false;
|
||||
if($state != $news->{$field}) {
|
||||
if ($state != $news->{$field}) {
|
||||
$news->{$field} = $state;
|
||||
$changed = true;
|
||||
array_push($changedFields, $field);
|
||||
|
@ -373,7 +391,7 @@ class AdminController extends Controller
|
|||
case 'published':
|
||||
$state = $request->{$field} == 'on' ? true : false;
|
||||
$published = $news->published_at != null;
|
||||
if($state != $published) {
|
||||
if ($state != $published) {
|
||||
$news->published_at = $state ? now() : null;
|
||||
$changed = true;
|
||||
array_push($changedFields, $field);
|
||||
|
@ -383,10 +401,11 @@ class AdminController extends Controller
|
|||
}
|
||||
}
|
||||
|
||||
if($changed) {
|
||||
if ($changed) {
|
||||
$news->save();
|
||||
}
|
||||
$redirect = $news->published_at ? $news->permalink() : $news->editUrl();
|
||||
|
||||
return redirect($redirect);
|
||||
}
|
||||
|
||||
|
@ -398,18 +417,18 @@ class AdminController extends Controller
|
|||
public function diagnosticsDecrypt(Request $request)
|
||||
{
|
||||
$this->validate($request, [
|
||||
'payload' => 'required'
|
||||
'payload' => 'required',
|
||||
]);
|
||||
|
||||
$key = 'exception_report:';
|
||||
$decrypted = decrypt($request->input('payload'));
|
||||
|
||||
if(!starts_with($decrypted, $key)) {
|
||||
if (! starts_with($decrypted, $key)) {
|
||||
abort(403, 'Can only decrypt error diagnostics');
|
||||
}
|
||||
|
||||
$res = [
|
||||
'decrypted' => substr($decrypted, strlen($key))
|
||||
'decrypted' => substr($decrypted, strlen($key)),
|
||||
];
|
||||
|
||||
return response()->json($res);
|
||||
|
@ -419,71 +438,74 @@ class AdminController extends Controller
|
|||
{
|
||||
$stories = Story::with('profile')->latest()->paginate(10);
|
||||
$stats = StoryService::adminStats();
|
||||
|
||||
return view('admin.stories.home', compact('stories', 'stats'));
|
||||
}
|
||||
|
||||
public function customEmojiHome(Request $request)
|
||||
{
|
||||
if(!(bool) config_cache('federation.custom_emoji.enabled')) {
|
||||
if (! (bool) config_cache('federation.custom_emoji.enabled')) {
|
||||
return view('admin.custom-emoji.not-enabled');
|
||||
}
|
||||
$this->validate($request, [
|
||||
'sort' => 'sometimes|in:all,local,remote,duplicates,disabled,search'
|
||||
'sort' => 'sometimes|in:all,local,remote,duplicates,disabled,search',
|
||||
]);
|
||||
|
||||
if($request->has('cc')) {
|
||||
if ($request->has('cc')) {
|
||||
Cache::forget('pf:admin:custom_emoji:stats');
|
||||
Cache::forget('pf:custom_emoji');
|
||||
|
||||
return redirect(route('admin.custom-emoji'));
|
||||
}
|
||||
|
||||
$sort = $request->input('sort') ?? 'all';
|
||||
|
||||
if($sort == 'search' && empty($request->input('q'))) {
|
||||
if ($sort == 'search' && empty($request->input('q'))) {
|
||||
return redirect(route('admin.custom-emoji'));
|
||||
}
|
||||
|
||||
$pg = config('database.default') == 'pgsql';
|
||||
|
||||
$emojis = CustomEmoji::when($sort, function($query, $sort) use($request, $pg) {
|
||||
if($sort == 'all') {
|
||||
if($pg) {
|
||||
$emojis = CustomEmoji::when($sort, function ($query, $sort) use ($request, $pg) {
|
||||
if ($sort == 'all') {
|
||||
if ($pg) {
|
||||
return $query->latest();
|
||||
} else {
|
||||
return $query->groupBy('shortcode')->latest();
|
||||
}
|
||||
} else if($sort == 'local') {
|
||||
} elseif ($sort == 'local') {
|
||||
return $query->latest()->where('domain', '=', config('pixelfed.domain.app'));
|
||||
} else if($sort == 'remote') {
|
||||
} elseif ($sort == 'remote') {
|
||||
return $query->latest()->where('domain', '!=', config('pixelfed.domain.app'));
|
||||
} else if($sort == 'duplicates') {
|
||||
} elseif ($sort == 'duplicates') {
|
||||
return $query->latest()->groupBy('shortcode')->havingRaw('count(*) > 1');
|
||||
} else if($sort == 'disabled') {
|
||||
} elseif ($sort == 'disabled') {
|
||||
return $query->latest()->whereDisabled(true);
|
||||
} else if($sort == 'search') {
|
||||
} elseif ($sort == 'search') {
|
||||
$q = $query
|
||||
->latest()
|
||||
->where('shortcode', 'like', '%' . $request->input('q') . '%')
|
||||
->orWhere('domain', 'like', '%' . $request->input('q') . '%');
|
||||
if(!$request->has('dups')) {
|
||||
if(!$pg) {
|
||||
->where('shortcode', 'like', '%'.$request->input('q').'%')
|
||||
->orWhere('domain', 'like', '%'.$request->input('q').'%');
|
||||
if (! $request->has('dups')) {
|
||||
if (! $pg) {
|
||||
$q = $q->groupBy('shortcode');
|
||||
}
|
||||
}
|
||||
|
||||
return $q;
|
||||
}
|
||||
})
|
||||
->simplePaginate(10)
|
||||
->withQueryString();
|
||||
|
||||
$stats = Cache::remember('pf:admin:custom_emoji:stats', 43200, function() use($pg) {
|
||||
$stats = Cache::remember('pf:admin:custom_emoji:stats', 43200, function () use ($pg) {
|
||||
$res = [
|
||||
'total' => CustomEmoji::count(),
|
||||
'active' => CustomEmoji::whereDisabled(false)->count(),
|
||||
'remote' => CustomEmoji::where('domain', '!=', config('pixelfed.domain.app'))->count(),
|
||||
];
|
||||
|
||||
if($pg) {
|
||||
if ($pg) {
|
||||
$res['duplicate'] = CustomEmoji::select('shortcode')->groupBy('shortcode')->havingRaw('count(*) > 1')->count();
|
||||
} else {
|
||||
$res['duplicate'] = CustomEmoji::groupBy('shortcode')->havingRaw('count(*) > 1')->count();
|
||||
|
@ -499,16 +521,18 @@ class AdminController extends Controller
|
|||
{
|
||||
abort_unless((bool) config_cache('federation.custom_emoji.enabled'), 404);
|
||||
$emoji = CustomEmoji::findOrFail($id);
|
||||
$emoji->disabled = !$emoji->disabled;
|
||||
$emoji->disabled = ! $emoji->disabled;
|
||||
$emoji->save();
|
||||
$key = CustomEmoji::CACHE_KEY . str_replace(':', '', $emoji->shortcode);
|
||||
$key = CustomEmoji::CACHE_KEY.str_replace(':', '', $emoji->shortcode);
|
||||
Cache::forget($key);
|
||||
|
||||
return redirect()->back();
|
||||
}
|
||||
|
||||
public function customEmojiAdd(Request $request)
|
||||
{
|
||||
abort_unless((bool) config_cache('federation.custom_emoji.enabled'), 404);
|
||||
|
||||
return view('admin.custom-emoji.add');
|
||||
}
|
||||
|
||||
|
@ -522,12 +546,12 @@ class AdminController extends Controller
|
|||
'max:80',
|
||||
'starts_with::',
|
||||
'ends_with::',
|
||||
Rule::unique('custom_emoji')->where(function ($query) use($request) {
|
||||
Rule::unique('custom_emoji')->where(function ($query) use ($request) {
|
||||
return $query->whereDomain(config('pixelfed.domain.app'))
|
||||
->whereShortcode($request->input('shortcode'));
|
||||
})
|
||||
}),
|
||||
],
|
||||
'emoji' => 'required|file|mimes:jpg,png|max:' . (config('federation.custom_emoji.max_size') / 1000)
|
||||
'emoji' => 'required|file|mimes:jpg,png|max:'.(config('federation.custom_emoji.max_size') / 1000),
|
||||
]);
|
||||
|
||||
$emoji = new CustomEmoji;
|
||||
|
@ -535,11 +559,12 @@ class AdminController extends Controller
|
|||
$emoji->domain = config('pixelfed.domain.app');
|
||||
$emoji->save();
|
||||
|
||||
$fileName = $emoji->id . '.' . $request->emoji->extension();
|
||||
$fileName = $emoji->id.'.'.$request->emoji->extension();
|
||||
$request->emoji->storePubliclyAs('public/emoji', $fileName);
|
||||
$emoji->media_path = 'emoji/' . $fileName;
|
||||
$emoji->media_path = 'emoji/'.$fileName;
|
||||
$emoji->save();
|
||||
Cache::forget('pf:custom_emoji');
|
||||
|
||||
return redirect(route('admin.custom-emoji'));
|
||||
}
|
||||
|
||||
|
@ -550,6 +575,7 @@ class AdminController extends Controller
|
|||
Storage::delete("public/{$emoji->media_path}");
|
||||
Cache::forget('pf:custom_emoji');
|
||||
$emoji->delete();
|
||||
|
||||
return redirect(route('admin.custom-emoji'));
|
||||
}
|
||||
|
||||
|
@ -558,6 +584,7 @@ class AdminController extends Controller
|
|||
abort_unless((bool) config_cache('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'));
|
||||
}
|
||||
}
|
||||
|
|
45
resources/views/admin/settings/customcss.blade.php
Normal file
45
resources/views/admin/settings/customcss.blade.php
Normal file
|
@ -0,0 +1,45 @@
|
|||
@extends('admin.partial.template-full')
|
||||
|
||||
@section('section')
|
||||
</div>
|
||||
<div class="header bg-primary pb-3 mt-n4">
|
||||
<div class="container-fluid">
|
||||
<div class="header-body">
|
||||
<div class="row align-items-center py-4">
|
||||
<div class="col-lg-6 col-7">
|
||||
<p class="display-1 text-white d-inline-block mb-0">Custom CSS</p>
|
||||
<p class="lead mb-0 text-white">Customize your instance with custom css.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="container-fluid mt-4">
|
||||
<div class="col-12 col-md-6">
|
||||
<form method="post">
|
||||
@csrf
|
||||
<div class="form-group">
|
||||
<div class="custom-control custom-checkbox">
|
||||
<input
|
||||
type="checkbox"
|
||||
name="show"
|
||||
class="custom-control-input"
|
||||
id="customCheck1"
|
||||
{{ (bool) config_cache('uikit.show_custom.css') ? 'checked' : null}}
|
||||
>
|
||||
<label class="custom-control-label" for="customCheck1">Enable Custom CSS</label>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="css" class="font-weight-bold">Custom CSS</label>
|
||||
<textarea
|
||||
class="form-control"
|
||||
id="css"
|
||||
name="css"
|
||||
rows="5">{!!config_cache('uikit.custom.css')!!}</textarea>
|
||||
</div>
|
||||
<button class="btn btn-primary">Save</button>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
@endsection
|
|
@ -3,6 +3,8 @@
|
|||
Route::domain(config('pixelfed.domain.admin'))->prefix('i/admin')->group(function () {
|
||||
Route::redirect('/', '/dashboard');
|
||||
Route::redirect('timeline', config('app.url').'/timeline');
|
||||
Route::get('settings/custom-css', 'AdminController@customCss')->name('admin.custom-css');
|
||||
Route::post('settings/custom-css', 'AdminController@saveCustomCss');
|
||||
Route::get('dashboard', 'AdminController@home')->name('admin.home');
|
||||
Route::get('stats', 'AdminController@stats')->name('admin.stats');
|
||||
Route::get('reports', 'AdminController@reports')->name('admin.reports');
|
||||
|
|
Loading…
Reference in a new issue