123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145 |
- <?php
- namespace App\Http\Controllers\Admin;
- use App\Http\Controllers\Controller;
- use App\Models\ApplicationApi;
- use App\Settings\LocaleSettings;
- use Exception;
- use Illuminate\Contracts\Foundation\Application;
- use Illuminate\Contracts\View\Factory;
- use Illuminate\Contracts\View\View;
- use Illuminate\Http\JsonResponse;
- use Illuminate\Http\RedirectResponse;
- use Illuminate\Http\Request;
- use Illuminate\Http\Response;
- class ApplicationApiController extends Controller
- {
- /**
- * Display a listing of the resource.
- *
- * @return Application|Factory|View|Response
- */
- public function index(LocaleSettings $locale_settings)
- {
- return view('admin.api.index', [
- 'locale_datatables' => $locale_settings->datatables
- ]);
- }
- /**
- * Show the form for creating a new resource.
- *
- * @return Application|Factory|View|Response
- */
- public function create()
- {
- return view('admin.api.create');
- }
- /**
- * Store a newly created resource in storage.
- *
- * @param Request $request
- * @return RedirectResponse
- */
- public function store(Request $request)
- {
- $request->validate([
- 'memo' => 'nullable|string|max:60',
- ]);
- ApplicationApi::create([
- 'memo' => $request->input('memo'),
- ]);
- return redirect()->route('admin.api.index')->with('success', __('api key created!'));
- }
- /**
- * Display the specified resource.
- *
- * @param ApplicationApi $applicationApi
- * @return Response
- */
- public function show(ApplicationApi $applicationApi)
- {
- //
- }
- /**
- * Show the form for editing the specified resource.
- *
- * @param ApplicationApi $applicationApi
- * @return Application|Factory|View|Response
- */
- public function edit(ApplicationApi $applicationApi)
- {
- return view('admin.api.edit', [
- 'applicationApi' => $applicationApi,
- ]);
- }
- /**
- * Update the specified resource in storage.
- *
- * @param Request $request
- * @param ApplicationApi $applicationApi
- * @return RedirectResponse
- */
- public function update(Request $request, ApplicationApi $applicationApi)
- {
- $request->validate([
- 'memo' => 'nullable|string|max:60',
- ]);
- $applicationApi->update($request->all());
- return redirect()->route('admin.api.index')->with('success', __('api key updated!'));
- }
- /**
- * Remove the specified resource from storage.
- *
- * @param ApplicationApi $applicationApi
- * @return RedirectResponse
- */
- public function destroy(ApplicationApi $applicationApi)
- {
- $applicationApi->delete();
- return redirect()->back()->with('success', __('api key has been removed!'));
- }
- /**
- * @param Request $request
- * @return JsonResponse|mixed
- *
- * @throws Exception
- */
- public function dataTable(Request $request)
- {
- $query = ApplicationApi::query();
- return datatables($query)
- ->addColumn('actions', function (ApplicationApi $apiKey) {
- return '
- <a data-content="'.__('Edit').'" data-toggle="popover" data-trigger="hover" data-placement="top" href="'.route('admin.api.edit', $apiKey->token).'" class="btn btn-sm btn-info mr-1"><i class="fas fa-pen"></i></a>
- <form class="d-inline" onsubmit="return submitResult();" method="post" action="'.route('admin.api.destroy', $apiKey->token).'">
- '.csrf_field().'
- '.method_field('DELETE').'
- <button data-content="'.__('Delete').'" data-toggle="popover" data-trigger="hover" data-placement="top" class="btn btn-sm btn-danger mr-1"><i class="fas fa-trash"></i></button>
- </form>
- ';
- })
- ->editColumn('token', function (ApplicationApi $apiKey) {
- return "<code>{$apiKey->token}</code>";
- })
- ->editColumn('last_used', function (ApplicationApi $apiKey) {
- return $apiKey->last_used ? $apiKey->last_used->diffForHumans() : '';
- })
- ->rawColumns(['actions', 'token'])
- ->make();
- }
- }
|