-
-
Notifications
You must be signed in to change notification settings - Fork 120
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Feature] Stats API endpoint (#1994)
- Loading branch information
1 parent
e1efde6
commit 840e87f
Showing
5 changed files
with
97 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
<?php | ||
|
||
namespace App\Http\Controllers\Api\V1; | ||
|
||
use App\Http\Resources\V1\StatResource; | ||
use App\Models\Result; | ||
use Illuminate\Http\Request; | ||
use Spatie\QueryBuilder\AllowedFilter; | ||
use Spatie\QueryBuilder\Enums\FilterOperator; | ||
use Spatie\QueryBuilder\QueryBuilder; | ||
|
||
class Stats extends ApiController | ||
{ | ||
/** | ||
* Handle the incoming request. | ||
*/ | ||
public function __invoke(Request $request) | ||
{ | ||
$stats = QueryBuilder::for(Result::class) | ||
->selectRaw('count(*) as total_results') | ||
->selectRaw('avg(ping) as avg_ping') | ||
->selectRaw('avg(download) as avg_download') | ||
->selectRaw('avg(upload) as avg_upload') | ||
->selectRaw('min(ping) as min_ping') | ||
->selectRaw('min(download) as min_download') | ||
->selectRaw('min(upload) as min_upload') | ||
->selectRaw('max(ping) as max_ping') | ||
->selectRaw('max(download) as max_download') | ||
->selectRaw('max(upload) as max_upload') | ||
->AllowedFilters([ | ||
AllowedFilter::operator(name: 'start_at', internalName: 'created_at', filterOperator: FilterOperator::DYNAMIC), | ||
AllowedFilter::operator(name: 'end_at', internalName: 'created_at', filterOperator: FilterOperator::DYNAMIC), | ||
]) | ||
->first(); | ||
|
||
return self::sendResponse( | ||
data: new StatResource($stats), | ||
filters: $request->input('filter'), | ||
); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
<?php | ||
|
||
namespace App\Http\Resources\V1; | ||
|
||
use App\Helpers\Bitrate; | ||
use Illuminate\Http\Request; | ||
use Illuminate\Http\Resources\Json\JsonResource; | ||
|
||
class StatResource extends JsonResource | ||
{ | ||
/** | ||
* Transform the resource into an array. | ||
* | ||
* @return array<string, mixed> | ||
*/ | ||
public function toArray(Request $request): array | ||
{ | ||
return [ | ||
'ping' => [ | ||
'avg' => round($this->avg_ping, 2), | ||
'min' => round($this->min_ping, 2), | ||
'max' => round($this->max_ping, 2), | ||
], | ||
'download' => [ | ||
'avg' => round($this->avg_download), | ||
'avg_bits' => $this->when($this->avg_download, fn (): int|float => Bitrate::bytesToBits($this->avg_download)), | ||
'avg_bits_human' => $this->when($this->avg_download, fn (): string => Bitrate::formatBits(Bitrate::bytesToBits($this->avg_download)).'ps'), | ||
'min' => round($this->min_download), | ||
'min_bits' => $this->when($this->min_download, fn (): int|float => Bitrate::bytesToBits($this->min_download)), | ||
'min_bits_human' => $this->when($this->min_download, fn (): string => Bitrate::formatBits(Bitrate::bytesToBits($this->min_download)).'ps'), | ||
'max' => round($this->max_download), | ||
'max_bits' => $this->when($this->max_download, fn (): int|float => Bitrate::bytesToBits($this->max_download)), | ||
'max_bits_human' => $this->when($this->max_download, fn (): string => Bitrate::formatBits(Bitrate::bytesToBits($this->max_download)).'ps'), | ||
], | ||
'upload' => [ | ||
'avg' => round($this->avg_upload), | ||
'avg_bits' => $this->when($this->avg_upload, fn (): int|float => Bitrate::bytesToBits($this->avg_upload)), | ||
'avg_bits_human' => $this->when($this->avg_upload, fn (): string => Bitrate::formatBits(Bitrate::bytesToBits($this->avg_upload)).'ps'), | ||
'min' => round($this->min_upload), | ||
'min_bits' => $this->when($this->min_upload, fn (): int|float => Bitrate::bytesToBits($this->min_upload)), | ||
'min_bits_human' => $this->when($this->min_upload, fn (): string => Bitrate::formatBits(Bitrate::bytesToBits($this->min_upload)).'ps'), | ||
'max' => round($this->max_upload), | ||
'max_bits' => $this->when($this->max_upload, fn (): int|float => Bitrate::bytesToBits($this->max_upload)), | ||
'max_bits_human' => $this->when($this->max_upload, fn (): string => Bitrate::formatBits(Bitrate::bytesToBits($this->max_upload)).'ps'), | ||
], | ||
'total_results' => $this->total_results, | ||
]; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters