chore: update dependencies

This commit is contained in:
Benjamin Nussbaum 2025-03-25 13:05:23 +01:00
parent 941305dff6
commit 8eb0b2ccd7
6 changed files with 463 additions and 422 deletions

View file

@ -22,7 +22,7 @@ class FetchProxyCloudResponses implements ShouldQueue
public function handle(): void public function handle(): void
{ {
Device::where('proxy_cloud', true)->each(function ($device) { Device::where('proxy_cloud', true)->each(function ($device) {
if (!$device->getNextPlaylistItem()) { if (! $device->getNextPlaylistItem()) {
try { try {
$response = Http::withHeaders([ $response = Http::withHeaders([
'id' => $device->mac_address, 'id' => $device->mac_address,
@ -35,7 +35,7 @@ class FetchProxyCloudResponses implements ShouldQueue
'fw-version' => $device->last_firmware_version, 'fw-version' => $device->last_firmware_version,
'accept-encoding' => 'identity;q=1,chunked;q=0.1,*;q=0', 'accept-encoding' => 'identity;q=1,chunked;q=0.1,*;q=0',
'user-agent' => 'ESP32HTTPClient', 'user-agent' => 'ESP32HTTPClient',
])->get(config('services.trmnl.proxy_base_url') . '/api/display'); ])->get(config('services.trmnl.proxy_base_url').'/api/display');
$device->update([ $device->update([
'proxy_cloud_response' => $response->json(), 'proxy_cloud_response' => $response->json(),
@ -44,11 +44,11 @@ class FetchProxyCloudResponses implements ShouldQueue
$imageUrl = $response->json('image_url'); $imageUrl = $response->json('image_url');
$filename = $response->json('filename'); $filename = $response->json('filename');
\Log::info('Response data: ' . $imageUrl); \Log::info('Response data: '.$imageUrl);
if (isset($imageUrl)) { if (isset($imageUrl)) {
try { try {
$imageContents = Http::get($imageUrl)->body(); $imageContents = Http::get($imageUrl)->body();
if (!Storage::disk('public')->exists("images/generated/{$filename}.bmp")) { if (! Storage::disk('public')->exists("images/generated/{$filename}.bmp")) {
Storage::disk('public')->put( Storage::disk('public')->put(
"images/generated/{$filename}.bmp", "images/generated/{$filename}.bmp",
$imageContents $imageContents
@ -79,7 +79,7 @@ class FetchProxyCloudResponses implements ShouldQueue
'fw-version' => $device->last_firmware_version, 'fw-version' => $device->last_firmware_version,
'accept-encoding' => 'identity;q=1,chunked;q=0.1,*;q=0', 'accept-encoding' => 'identity;q=1,chunked;q=0.1,*;q=0',
'user-agent' => 'ESP32HTTPClient', 'user-agent' => 'ESP32HTTPClient',
])->post(config('services.trmnl.proxy_base_url') . '/api/log', $device->last_log_request); ])->post(config('services.trmnl.proxy_base_url').'/api/log', $device->last_log_request);
$device->update([ $device->update([
'last_log_request' => null, 'last_log_request' => null,

View file

@ -53,19 +53,21 @@ class Device extends Model
} }
} }
public function getUpdateFirmwareAttribute() : bool public function getUpdateFirmwareAttribute(): bool
{ {
if ($this->proxy_cloud_response && $this->proxy_cloud_response['update_firmware']) { if ($this->proxy_cloud_response && $this->proxy_cloud_response['update_firmware']) {
return true; return true;
} }
return false; return false;
} }
public function getFirmwareUrlAttribute() : string | null public function getFirmwareUrlAttribute(): ?string
{ {
if ($this->proxy_cloud_response && $this->proxy_cloud_response['firmware_url']) { if ($this->proxy_cloud_response && $this->proxy_cloud_response['firmware_url']) {
return $this->proxy_cloud_response['firmware_url']; return $this->proxy_cloud_response['firmware_url'];
} }
return null; return null;
} }

View file

@ -44,7 +44,7 @@ class Plugin extends Model
if ($this->data_strategy === 'polling' && $this->polling_url) { if ($this->data_strategy === 'polling' && $this->polling_url) {
// Parse headers from polling_header string // Parse headers from polling_header string
$headers = ['User-Agent' => 'usetrmnl/byos_laravel', 'Accept' => 'application/json']; $headers = ['User-Agent' => 'usetrmnl/byos_laravel', 'Accept' => 'application/json'];
if ($this->polling_header) { if ($this->polling_header) {
$headerLines = explode("\n", trim($this->polling_header)); $headerLines = explode("\n", trim($this->polling_header));
foreach ($headerLines as $line) { foreach ($headerLines as $line) {

128
composer.lock generated
View file

@ -524,16 +524,16 @@
}, },
{ {
"name": "egulias/email-validator", "name": "egulias/email-validator",
"version": "4.0.3", "version": "4.0.4",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/egulias/EmailValidator.git", "url": "https://github.com/egulias/EmailValidator.git",
"reference": "b115554301161fa21467629f1e1391c1936de517" "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/egulias/EmailValidator/zipball/b115554301161fa21467629f1e1391c1936de517", "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
"reference": "b115554301161fa21467629f1e1391c1936de517", "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -579,7 +579,7 @@
], ],
"support": { "support": {
"issues": "https://github.com/egulias/EmailValidator/issues", "issues": "https://github.com/egulias/EmailValidator/issues",
"source": "https://github.com/egulias/EmailValidator/tree/4.0.3" "source": "https://github.com/egulias/EmailValidator/tree/4.0.4"
}, },
"funding": [ "funding": [
{ {
@ -587,7 +587,7 @@
"type": "github" "type": "github"
} }
], ],
"time": "2024-12-27T00:36:43+00:00" "time": "2025-03-06T22:45:56+00:00"
}, },
{ {
"name": "fruitcake/php-cors", "name": "fruitcake/php-cors",
@ -2431,16 +2431,16 @@
}, },
{ {
"name": "livewire/flux", "name": "livewire/flux",
"version": "v2.0.6", "version": "v2.1.1",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/livewire/flux.git", "url": "https://github.com/livewire/flux.git",
"reference": "afd046a72c7a10e6ff56f3e9c16eb390c3db0cc5" "reference": "f5b7169e4538039d59a750cdcc64494e2fc0729c"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/livewire/flux/zipball/afd046a72c7a10e6ff56f3e9c16eb390c3db0cc5", "url": "https://api.github.com/repos/livewire/flux/zipball/f5b7169e4538039d59a750cdcc64494e2fc0729c",
"reference": "afd046a72c7a10e6ff56f3e9c16eb390c3db0cc5", "reference": "f5b7169e4538039d59a750cdcc64494e2fc0729c",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -2488,9 +2488,9 @@
], ],
"support": { "support": {
"issues": "https://github.com/livewire/flux/issues", "issues": "https://github.com/livewire/flux/issues",
"source": "https://github.com/livewire/flux/tree/v2.0.6" "source": "https://github.com/livewire/flux/tree/v2.1.1"
}, },
"time": "2025-03-12T20:53:07+00:00" "time": "2025-03-20T21:34:31+00:00"
}, },
{ {
"name": "livewire/livewire", "name": "livewire/livewire",
@ -2642,16 +2642,16 @@
}, },
{ {
"name": "monolog/monolog", "name": "monolog/monolog",
"version": "3.8.1", "version": "3.9.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/Seldaek/monolog.git", "url": "https://github.com/Seldaek/monolog.git",
"reference": "aef6ee73a77a66e404dd6540934a9ef1b3c855b4" "reference": "10d85740180ecba7896c87e06a166e0c95a0e3b6"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/Seldaek/monolog/zipball/aef6ee73a77a66e404dd6540934a9ef1b3c855b4", "url": "https://api.github.com/repos/Seldaek/monolog/zipball/10d85740180ecba7896c87e06a166e0c95a0e3b6",
"reference": "aef6ee73a77a66e404dd6540934a9ef1b3c855b4", "reference": "10d85740180ecba7896c87e06a166e0c95a0e3b6",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -2729,7 +2729,7 @@
], ],
"support": { "support": {
"issues": "https://github.com/Seldaek/monolog/issues", "issues": "https://github.com/Seldaek/monolog/issues",
"source": "https://github.com/Seldaek/monolog/tree/3.8.1" "source": "https://github.com/Seldaek/monolog/tree/3.9.0"
}, },
"funding": [ "funding": [
{ {
@ -2741,7 +2741,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2024-12-05T17:15:07+00:00" "time": "2025-03-24T10:02:05+00:00"
}, },
{ {
"name": "nesbot/carbon", "name": "nesbot/carbon",
@ -3631,16 +3631,16 @@
}, },
{ {
"name": "psy/psysh", "name": "psy/psysh",
"version": "v0.12.7", "version": "v0.12.8",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/bobthecow/psysh.git", "url": "https://github.com/bobthecow/psysh.git",
"reference": "d73fa3c74918ef4522bb8a3bf9cab39161c4b57c" "reference": "85057ceedee50c49d4f6ecaff73ee96adb3b3625"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/bobthecow/psysh/zipball/d73fa3c74918ef4522bb8a3bf9cab39161c4b57c", "url": "https://api.github.com/repos/bobthecow/psysh/zipball/85057ceedee50c49d4f6ecaff73ee96adb3b3625",
"reference": "d73fa3c74918ef4522bb8a3bf9cab39161c4b57c", "reference": "85057ceedee50c49d4f6ecaff73ee96adb3b3625",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -3704,9 +3704,9 @@
], ],
"support": { "support": {
"issues": "https://github.com/bobthecow/psysh/issues", "issues": "https://github.com/bobthecow/psysh/issues",
"source": "https://github.com/bobthecow/psysh/tree/v0.12.7" "source": "https://github.com/bobthecow/psysh/tree/v0.12.8"
}, },
"time": "2024-12-10T01:58:33+00:00" "time": "2025-03-16T03:05:19+00:00"
}, },
{ {
"name": "ralouphie/getallheaders", "name": "ralouphie/getallheaders",
@ -3754,16 +3754,16 @@
}, },
{ {
"name": "ramsey/collection", "name": "ramsey/collection",
"version": "2.1.0", "version": "2.1.1",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/ramsey/collection.git", "url": "https://github.com/ramsey/collection.git",
"reference": "3c5990b8a5e0b79cd1cf11c2dc1229e58e93f109" "reference": "344572933ad0181accbf4ba763e85a0306a8c5e2"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/ramsey/collection/zipball/3c5990b8a5e0b79cd1cf11c2dc1229e58e93f109", "url": "https://api.github.com/repos/ramsey/collection/zipball/344572933ad0181accbf4ba763e85a0306a8c5e2",
"reference": "3c5990b8a5e0b79cd1cf11c2dc1229e58e93f109", "reference": "344572933ad0181accbf4ba763e85a0306a8c5e2",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -3824,9 +3824,9 @@
], ],
"support": { "support": {
"issues": "https://github.com/ramsey/collection/issues", "issues": "https://github.com/ramsey/collection/issues",
"source": "https://github.com/ramsey/collection/tree/2.1.0" "source": "https://github.com/ramsey/collection/tree/2.1.1"
}, },
"time": "2025-03-02T04:48:29+00:00" "time": "2025-03-22T05:38:12+00:00"
}, },
{ {
"name": "ramsey/uuid", "name": "ramsey/uuid",
@ -3990,16 +3990,16 @@
}, },
{ {
"name": "spatie/laravel-package-tools", "name": "spatie/laravel-package-tools",
"version": "1.19.0", "version": "1.91.1",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/spatie/laravel-package-tools.git", "url": "https://github.com/spatie/laravel-package-tools.git",
"reference": "1c9c30ac6a6576b8d15c6c37b6cf23d748df2faa" "reference": "b0b509b9b01d77caa431ce9af3a706bc678e09c9"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/1c9c30ac6a6576b8d15c6c37b6cf23d748df2faa", "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/b0b509b9b01d77caa431ce9af3a706bc678e09c9",
"reference": "1c9c30ac6a6576b8d15c6c37b6cf23d748df2faa", "reference": "b0b509b9b01d77caa431ce9af3a706bc678e09c9",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -4038,7 +4038,7 @@
], ],
"support": { "support": {
"issues": "https://github.com/spatie/laravel-package-tools/issues", "issues": "https://github.com/spatie/laravel-package-tools/issues",
"source": "https://github.com/spatie/laravel-package-tools/tree/1.19.0" "source": "https://github.com/spatie/laravel-package-tools/tree/1.91.1"
}, },
"funding": [ "funding": [
{ {
@ -4046,7 +4046,7 @@
"type": "github" "type": "github"
} }
], ],
"time": "2025-02-06T14:58:20+00:00" "time": "2025-03-21T09:50:49+00:00"
}, },
{ {
"name": "spatie/pest-expectations", "name": "spatie/pest-expectations",
@ -7096,16 +7096,16 @@
}, },
{ {
"name": "filp/whoops", "name": "filp/whoops",
"version": "2.17.0", "version": "2.18.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/filp/whoops.git", "url": "https://github.com/filp/whoops.git",
"reference": "075bc0c26631110584175de6523ab3f1652eb28e" "reference": "a7de6c3c6c3c022f5cfc337f8ede6a14460cf77e"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/filp/whoops/zipball/075bc0c26631110584175de6523ab3f1652eb28e", "url": "https://api.github.com/repos/filp/whoops/zipball/a7de6c3c6c3c022f5cfc337f8ede6a14460cf77e",
"reference": "075bc0c26631110584175de6523ab3f1652eb28e", "reference": "a7de6c3c6c3c022f5cfc337f8ede6a14460cf77e",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -7155,7 +7155,7 @@
], ],
"support": { "support": {
"issues": "https://github.com/filp/whoops/issues", "issues": "https://github.com/filp/whoops/issues",
"source": "https://github.com/filp/whoops/tree/2.17.0" "source": "https://github.com/filp/whoops/tree/2.18.0"
}, },
"funding": [ "funding": [
{ {
@ -7163,7 +7163,7 @@
"type": "github" "type": "github"
} }
], ],
"time": "2025-01-25T12:00:00+00:00" "time": "2025-03-15T12:00:00+00:00"
}, },
{ {
"name": "hamcrest/hamcrest-php", "name": "hamcrest/hamcrest-php",
@ -7356,16 +7356,16 @@
}, },
{ {
"name": "laravel/pint", "name": "laravel/pint",
"version": "v1.21.0", "version": "v1.21.2",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/laravel/pint.git", "url": "https://github.com/laravel/pint.git",
"reference": "531fa0871fbde719c51b12afa3a443b8f4e4b425" "reference": "370772e7d9e9da087678a0edf2b11b6960e40558"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/laravel/pint/zipball/531fa0871fbde719c51b12afa3a443b8f4e4b425", "url": "https://api.github.com/repos/laravel/pint/zipball/370772e7d9e9da087678a0edf2b11b6960e40558",
"reference": "531fa0871fbde719c51b12afa3a443b8f4e4b425", "reference": "370772e7d9e9da087678a0edf2b11b6960e40558",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -7376,9 +7376,9 @@
"php": "^8.2.0" "php": "^8.2.0"
}, },
"require-dev": { "require-dev": {
"friendsofphp/php-cs-fixer": "^3.68.5", "friendsofphp/php-cs-fixer": "^3.72.0",
"illuminate/view": "^11.42.0", "illuminate/view": "^11.44.2",
"larastan/larastan": "^3.0.4", "larastan/larastan": "^3.2.0",
"laravel-zero/framework": "^11.36.1", "laravel-zero/framework": "^11.36.1",
"mockery/mockery": "^1.6.12", "mockery/mockery": "^1.6.12",
"nunomaduro/termwind": "^2.3", "nunomaduro/termwind": "^2.3",
@ -7418,7 +7418,7 @@
"issues": "https://github.com/laravel/pint/issues", "issues": "https://github.com/laravel/pint/issues",
"source": "https://github.com/laravel/pint" "source": "https://github.com/laravel/pint"
}, },
"time": "2025-02-18T03:18:57+00:00" "time": "2025-03-14T22:31:42+00:00"
}, },
{ {
"name": "laravel/sail", "name": "laravel/sail",
@ -7628,20 +7628,20 @@
}, },
{ {
"name": "nunomaduro/collision", "name": "nunomaduro/collision",
"version": "v8.6.1", "version": "v8.7.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/nunomaduro/collision.git", "url": "https://github.com/nunomaduro/collision.git",
"reference": "86f003c132143d5a2ab214e19933946409e0cae7" "reference": "586cb8181a257a2152b6a855ca8d9598878a1a26"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/nunomaduro/collision/zipball/86f003c132143d5a2ab214e19933946409e0cae7", "url": "https://api.github.com/repos/nunomaduro/collision/zipball/586cb8181a257a2152b6a855ca8d9598878a1a26",
"reference": "86f003c132143d5a2ab214e19933946409e0cae7", "reference": "586cb8181a257a2152b6a855ca8d9598878a1a26",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"filp/whoops": "^2.16.0", "filp/whoops": "^2.17.0",
"nunomaduro/termwind": "^2.3.0", "nunomaduro/termwind": "^2.3.0",
"php": "^8.2.0", "php": "^8.2.0",
"symfony/console": "^7.2.1" "symfony/console": "^7.2.1"
@ -7651,14 +7651,14 @@
"phpunit/phpunit": "<11.5.3 || >=12.0.0" "phpunit/phpunit": "<11.5.3 || >=12.0.0"
}, },
"require-dev": { "require-dev": {
"larastan/larastan": "^2.9.12", "larastan/larastan": "^2.10.0",
"laravel/framework": "^11.39.1", "laravel/framework": "^11.44.2",
"laravel/pint": "^1.20.0", "laravel/pint": "^1.21.2",
"laravel/sail": "^1.40.0", "laravel/sail": "^1.41.0",
"laravel/sanctum": "^4.0.7", "laravel/sanctum": "^4.0.8",
"laravel/tinker": "^2.10.0", "laravel/tinker": "^2.10.1",
"orchestra/testbench-core": "^9.9.2", "orchestra/testbench-core": "^9.12.0",
"pestphp/pest": "^3.7.3", "pestphp/pest": "^3.7.4",
"sebastian/environment": "^6.1.0 || ^7.2.0" "sebastian/environment": "^6.1.0 || ^7.2.0"
}, },
"type": "library", "type": "library",
@ -7722,7 +7722,7 @@
"type": "patreon" "type": "patreon"
} }
], ],
"time": "2025-01-23T13:41:43+00:00" "time": "2025-03-14T22:37:40+00:00"
}, },
{ {
"name": "pestphp/pest", "name": "pestphp/pest",

View file

@ -23,10 +23,10 @@ class DatabaseSeeder extends Seeder
'password' => bcrypt('admin@example.com'), 'password' => bcrypt('admin@example.com'),
]); ]);
Device::factory(1)->create([ Device::factory(1)->create([
'mac_address' => '00:00:00:00:00:00', 'mac_address' => '00:00:00:00:00:00',
'api_key' => 'test-api-key' 'api_key' => 'test-api-key',
]); ]);
// Device::factory(5)->create(); // Device::factory(5)->create();

731
package-lock.json generated

File diff suppressed because it is too large Load diff