forked from alexjustesen/speedtest-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRunSpeedtest.php
More file actions
46 lines (38 loc) · 1.41 KB
/
RunSpeedtest.php
File metadata and controls
46 lines (38 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?php
namespace App\Actions\Librespeed;
use App\Enums\ResultService;
use App\Enums\ResultStatus;
use App\Events\SpeedtestWaiting;
use App\Models\Result;
use Lorisleiva\Actions\Concerns\AsAction;
use Throwable;
class RunSpeedtest
{
use AsAction;
public function handle(bool $isScheduled = false, ?string $server = null, ?int $dispatchedBy = null): mixed
{
$result = Result::create([
'data->server->url' => $server,
'service' => ResultService::Librespeed,
'status' => ResultStatus::Waiting,
'scheduled' => $isScheduled,
'dispatched_by' => $dispatchedBy,
]);
SpeedtestWaiting::dispatch($result);
// TODO: Implement Librespeed speedtest job batching
// Bus::batch([
// [
// new StartSpeedtestJob($result),
// new CheckForInternetConnectionJob($result),
// new SkipSpeedtestJob($result),
// new SelectSpeedtestServerJob($result),
// new RunSpeedtestJob($result),
// new BenchmarkSpeedtestJob($result),
// new CompleteSpeedtestJob($result),
// ],
// ])->catch(function (Batch $batch, ?Throwable $e) {
// Log::error(sprintf('Speedtest batch "%s" failed for an unknown reason.', $batch->id));
// })->name('Ookla Speedtest')->dispatch();
return $result;
}
}