mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-07-17 14:25:21 +00:00
Consume the injected CONTAINERIZED flag: expose it on /app/version, block the update endpoints + console command, and show a 'docker compose pull' panel instead of the updater. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
29 lines
812 B
PHP
29 lines
812 B
PHP
<?php
|
|
|
|
namespace App\Http\Middleware;
|
|
|
|
use Closure;
|
|
use Illuminate\Http\Request;
|
|
use Symfony\Component\HttpFoundation\Response;
|
|
|
|
/**
|
|
* Blocks the in-app updater when running inside the official Docker image.
|
|
*
|
|
* Containers are upgraded with `docker compose pull`, not by copying release
|
|
* files over the image filesystem (which is ephemeral and reset on recreate).
|
|
* The CONTAINERIZED flag is injected into .env by docker/production/inject.sh.
|
|
*/
|
|
class EnsureNotContainerized
|
|
{
|
|
public function handle(Request $request, Closure $next): Response
|
|
{
|
|
abort_if(
|
|
(bool) config('invoiceshelf.containerized'),
|
|
403,
|
|
'The in-app updater is disabled in containerized installs. Upgrade with `docker compose pull`.'
|
|
);
|
|
|
|
return $next($request);
|
|
}
|
|
}
|