mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-11-25 09:44:04 +01:00
42 lines
1.4 KiB
PHP
42 lines
1.4 KiB
PHP
<?php
|
|
|
|
namespace App\Api\v1\Resources;
|
|
|
|
use Illuminate\Http\Resources\Json\ResourceCollection;
|
|
|
|
class TwoFAccountCollection extends ResourceCollection
|
|
{
|
|
/**
|
|
* The resource that this resource collects.
|
|
*
|
|
* @var string
|
|
*/
|
|
public $collects = TwoFAccountReadResource::class;
|
|
|
|
/**
|
|
* Transform the resource collection into an array.
|
|
*
|
|
* @param \Illuminate\Http\Request $request
|
|
* @return \Illuminate\Support\Collection<int|string, TwoFAccountReadResource>
|
|
*/
|
|
public function toArray($request)
|
|
{
|
|
// By default we want this collection to not return the secret.
|
|
// The underlying TwoFAccountReadResource hides the secret only when withSecret == false.
|
|
// When withSecret is provided the underlying resource will return secret according to the parameter value
|
|
// If no withSecret is set we force it to false to ensure the secret will not being returned.
|
|
if (! $request->has('withSecret')) {
|
|
$request->merge(['withSecret' => false]);
|
|
}
|
|
|
|
// Here we add a timestamp to the request if OTPs have to be in the response.
|
|
// The 'at' parameter is used by the TwoFAccountReadResource class to obtain
|
|
// all OTPs at the same timestamps
|
|
if ($request->has('withOtp')) {
|
|
$request->merge(['at' => now()->timestamp]);
|
|
}
|
|
|
|
return $this->collection;
|
|
}
|
|
}
|