+ /**
+ * Store a new API token in the system.
+ */
+ public function store(Request $request, int $userId)
+ {
+ $this->checkPermission('access-api');
+ $this->checkPermissionOrCurrentUser('users-manage', $userId);
+
+ $this->validate($request, [
+ 'name' => 'required|max:250',
+ 'expires_at' => 'date_format:Y-m-d',
+ ]);
+
+ $user = User::query()->findOrFail($userId);
+ $secret = Str::random(32);
+
+ $token = (new ApiToken())->forceFill([
+ 'name' => $request->get('name'),
+ 'token_id' => Str::random(32),
+ 'secret' => Hash::make($secret),
+ 'user_id' => $user->id,
+ 'expires_at' => $request->get('expires_at') ?: ApiToken::defaultExpiry(),
+ ]);
+
+ while (ApiToken::query()->where('token_id', '=', $token->token_id)->exists()) {
+ $token->token_id = Str::random(32);
+ }
+
+ $token->save();
+
+ session()->flash('api-token-secret:' . $token->id, $secret);
+ $this->showSuccessNotification(trans('settings.user_api_token_create_success'));
+ $this->logActivity(ActivityType::API_TOKEN_CREATE, $token);
+
+ return redirect($user->getEditUrl('/api-tokens/' . $token->id));
+ }
+
+ /**
+ * Show the details for a user API token, with access to edit.
+ */
+ public function edit(int $userId, int $tokenId)
+ {
+ [$user, $token] = $this->checkPermissionAndFetchUserToken($userId, $tokenId);
+ $secret = session()->pull('api-token-secret:' . $token->id, null);
+
+ return view('users.api-tokens.edit', [
+ 'user' => $user,
+ 'token' => $token,
+ 'model' => $token,
+ 'secret' => $secret,
+ ]);
+ }
+
+ /**
+ * Update the API token.
+ */
+ public function update(Request $request, int $userId, int $tokenId)
+ {
+ $this->validate($request, [
+ 'name' => 'required|max:250',
+ 'expires_at' => 'date_format:Y-m-d',
+ ]);
+
+ [$user, $token] = $this->checkPermissionAndFetchUserToken($userId, $tokenId);
+ $token->fill([
+ 'name' => $request->get('name'),
+ 'expires_at' => $request->get('expires_at') ?: ApiToken::defaultExpiry(),
+ ])->save();
+
+ $this->showSuccessNotification(trans('settings.user_api_token_update_success'));
+ $this->logActivity(ActivityType::API_TOKEN_UPDATE, $token);
+ return redirect($user->getEditUrl('/api-tokens/' . $token->id));
+ }