2021-04-27 01:34:35 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2023-01-28 23:21:40 +01:00
|
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
2021-04-27 01:34:35 +02:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2021-04-27 01:34:35 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
|
|
|
|
use App\Models\CompanyToken;
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
use Illuminate\Http\Response;
|
|
|
|
|
|
|
|
class LogoutController extends BaseController
|
|
|
|
{
|
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
parent::__construct();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @OA\Post(
|
|
|
|
* path="/api/v1/logout",
|
|
|
|
* operationId="getLogout",
|
|
|
|
* tags={"logout"},
|
|
|
|
* summary="Gets a list of logout",
|
|
|
|
* description="Lists all logout",
|
2023-02-10 10:21:10 +01:00
|
|
|
* @OA\Parameter(ref="#/components/parameters/X-API-TOKEN"),
|
2021-04-27 01:34:35 +02:00
|
|
|
* @OA\Parameter(ref="#/components/parameters/X-Requested-With"),
|
|
|
|
* @OA\Parameter(ref="#/components/parameters/include"),
|
|
|
|
* @OA\Parameter(ref="#/components/parameters/index"),
|
|
|
|
* @OA\Response(
|
|
|
|
* response=200,
|
|
|
|
* description="Success message",
|
|
|
|
* @OA\Header(header="X-MINIMUM-CLIENT-VERSION", ref="#/components/headers/X-MINIMUM-CLIENT-VERSION"),
|
|
|
|
* @OA\Header(header="X-RateLimit-Remaining", ref="#/components/headers/X-RateLimit-Remaining"),
|
|
|
|
* @OA\Header(header="X-RateLimit-Limit", ref="#/components/headers/X-RateLimit-Limit"),
|
|
|
|
* ),
|
|
|
|
* @OA\Response(
|
|
|
|
* response=422,
|
|
|
|
* description="Validation error",
|
|
|
|
* @OA\JsonContent(ref="#/components/schemas/ValidationError"),
|
|
|
|
* ),
|
|
|
|
* @OA\Response(
|
|
|
|
* response="default",
|
|
|
|
* description="Unexpected Error",
|
|
|
|
* @OA\JsonContent(ref="#/components/schemas/Error"),
|
|
|
|
* ),
|
|
|
|
* )
|
|
|
|
* @param Request $request
|
|
|
|
* @return Response|mixed
|
|
|
|
*/
|
|
|
|
public function index(Request $request)
|
|
|
|
{
|
2021-05-01 02:13:48 +02:00
|
|
|
$ct = CompanyToken::with('company.tokens')
|
2022-06-17 06:31:53 +02:00
|
|
|
->where('token', $request->header('X-API-TOKEN'))
|
2021-05-01 02:13:48 +02:00
|
|
|
->first();
|
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
$ct->company
|
2021-04-27 01:34:35 +02:00
|
|
|
->tokens()
|
2021-04-27 08:03:21 +02:00
|
|
|
->where('is_system', true)
|
2021-04-27 01:34:35 +02:00
|
|
|
->forceDelete();
|
|
|
|
|
2021-04-27 08:03:21 +02:00
|
|
|
return response()->json(['message' => 'All tokens deleted'], 200);
|
2021-04-27 01:34:35 +02:00
|
|
|
}
|
|
|
|
}
|