123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284 |
- <?php
- namespace App\Http\Controllers;
- use App\TwoFAccount;
- use App\Exceptions\UndecipherableException;
- use App\Http\Requests\TwoFAccountReorderRequest;
- use App\Http\Requests\TwoFAccountStoreRequest;
- use App\Http\Requests\TwoFAccountUpdateRequest;
- use App\Http\Requests\TwoFAccountBatchRequest;
- use App\Http\Requests\TwoFAccountUriRequest;
- use App\Http\Requests\TwoFAccountDynamicRequest;
- use App\Http\Resources\TwoFAccountCollection;
- use App\Http\Resources\TwoFAccountReadResource;
- use App\Http\Resources\TwoFAccountStoreResource;
- use App\Services\GroupService;
- use App\Services\TwoFAccountService;
- use Illuminate\Support\Arr;
- use Illuminate\Http\Request;
- class TwoFAccountController extends Controller
- {
- /**
- * The TwoFAccount Service instance.
- */
- protected $twofaccountService;
- /**
- * The Group Service instance.
- */
- protected $groupService;
- /**
- * Create a new controller instance.
- *
- * @param TwoFAccountService $twofaccountService
- * @return void
- */
- public function __construct(TwoFAccountService $twofaccountService, GroupService $groupService)
- {
- $this->twofaccountService = $twofaccountService;
- $this->groupService = $groupService;
- }
- /**
- * List all resources
- *
- * @return \App\Http\Resources\TwoFAccountCollection
- */
- public function index(Request $request)
- {
- return new TwoFAccountCollection(TwoFAccount::ordered()->get());
- }
- /**
- * Display a resource
- *
- * @param \App\TwoFAccount $twofaccount
- *
- * @return \App\Http\Resources\TwoFAccountReadResource
- */
- public function show(TwoFAccount $twofaccount)
- {
- return new TwoFAccountReadResource($twofaccount);
- }
- /**
- * Store a newly created resource in storage.
- *
- * @param \App\Http\Requests\TwoFAccountDynamicRequest $request
- * @return \App\Http\Resources\TwoFAccountReadResource
- */
- public function store(TwoFAccountDynamicRequest $request)
- {
- // Two possible cases :
- // - The most common case, an URI is provided by the QuickForm, thanks to a QR code live scan or file upload
- // -> We use that URI to define the account
- // - The advanced form has been used and all individual parameters
- // -> We use the parameters array to define the account
- $validated = $request->validated();
- $twofaccount = Arr::has($validated, 'uri')
- ? $this->twofaccountService->createFromUri($validated['uri'])
- : $this->twofaccountService->createFromParameters($validated);
- // Possible group association
- $this->groupService->assign($twofaccount->id);
- return (new TwoFAccountReadResource($twofaccount))
- ->response()
- ->setStatusCode(201);
- }
- /**
- * Update the specified resource in storage.
- *
- * @param \App\Http\TwoFAccountUpdateRequest $request
- * @param \App\TwoFAccount $twofaccount
- * @return \Illuminate\Http\Response
- */
- public function update(TwoFAccountUpdateRequest $request, TwoFAccount $twofaccount)
- {
- $validated = $request->validated();
- $this->twofaccountService->update($twofaccount, $validated);
- return (new TwoFAccountReadResource($twofaccount))
- ->response()
- ->setStatusCode(200);
- }
- /**
- * Set new order.
- *
- * @param App\Http\Requests\TwoFAccountReorderRequest $request
- * @return \Illuminate\Http\Response
- */
- public function reorder(TwoFAccountReorderRequest $request)
- {
- $validated = $request->validated();
- TwoFAccount::setNewOrder($validated['orderedIds']);
- return response()->json(['message' => 'order saved'], 200);
- }
- /**
- * Preview account using an uri, without any db moves
- *
- * @param \App\Http\Requests\TwoFAccountUriRequest $request
- * @return \App\Http\Resources\TwoFAccountStoreResource
- */
- public function preview(TwoFAccountUriRequest $request)
- {
- $twofaccount = $this->twofaccountService->createFromUri($request->uri, false);
- return new TwoFAccountStoreResource($twofaccount);
- }
- /**
- * Get a One-Time Password
- *
- * @param \Illuminate\Http\Request $request
- * @param int $id
- * @return \Illuminate\Http\Response
- */
- public function otp(Request $request, $id = null)
- {
- $inputs = $request->all();
- // The request input is the ID of an existing account
- if ( $id ) {
- try {
- $otp = $this->twofaccountService->getOTP((int) $id);
- }
- catch (UndecipherableException $ex) {
- return response()->json([
- 'message' => __('errors.cannot_decipher_secret')
- ], 400);
- }
- }
- // The request input is an uri
- else if ( count($inputs) === 1 && $request->has('uri') ) {
- $validatedData = $request->validate((new TwoFAccountUriRequest)->rules());
- $otp = $this->twofaccountService->getOTP($validatedData['uri']);
- }
-
- else if ( count($inputs) > 1 && $request->has('uri')) {
- return response()->json([
- 'message' => 'bad request',
- 'reason' => ['uri' => __('validation.single', ['attribute' => 'uri'])]
- ], 400);
- }
- // The request inputs should define an account
- else {
- $validatedData = $request->validate((new TwoFAccountStoreRequest)->rules());
- $otp = $this->twofaccountService->getOTP($validatedData);
- }
- return response()->json($otp, 200);
- }
- /**
- * A simple and light method to get the account count.
- *
- * @param \Illuminate\Http\Request $request
- * @return \Illuminate\Http\Response
- */
- public function count(Request $request)
- {
- return response()->json([ 'count' => TwoFAccount::count() ], 200);
- }
- /**
- *
- * Withdraw one or more accounts from their group
- *
- * @param \App\Http\Requests\TwoFAccountBatchRequest $request
- * @return \Illuminate\Http\Response
- */
- public function withdraw(TwoFAccountBatchRequest $request)
- {
- $validated = $request->validated();
-
- if ($this->tooManyIds($validated['ids'])) {
- return response()->json([
- 'message' => 'bad request',
- 'reason' => [__('errors.too_many_ids')]
- ], 400);
- }
- $this->twofaccountService->withdraw($validated['ids']);
-
- return response()->json([ 'message' => 'accounts withdrawn' ], 200);
- }
- /**
- * Remove the specified resource from storage.
- *
- * @param \App\TwoFAccount $twofaccount
- * @return \Illuminate\Http\Response
- */
- public function destroy(TwoFAccount $twofaccount)
- {
- $this->twofaccountService->delete($twofaccount->id);
- return response()->json(null, 204);
- }
- /**
- * Remove the specified resources from storage.
- *
- * @param \App\Http\Requests\TwoFAccountBatchRequest $request
- * @return \Illuminate\Http\Response
- */
- public function batchDestroy(TwoFAccountBatchRequest $request)
- {
- $validated = $request->validated();
- if ($this->tooManyIds($validated['ids'])) {
- return response()->json([
- 'message' => 'bad request',
- 'reason' => [__('errors.too_many_ids')]
- ], 400);
- }
- $this->twofaccountService->delete($validated['ids']);
- return response()->json(null, 204);
- }
- /**
- * Checks ids length
- *
- * @param string $ids comma-separated ids
- * @return bool whether or not the number of ids is acceptable
- */
- private function tooManyIds(string $ids) : bool
- {
- $arIds = explode(',', $ids, 100);
- $nb = count($arIds);
- return $nb > 99 ? true : false;
- }
- }
|