Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: roots/acorn
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v5.0.1
Choose a base ref
...
head repository: roots/acorn
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v5.0.2
Choose a head ref
  • 7 commits
  • 5 files changed
  • 3 contributors

Commits on Mar 11, 2025

  1. 🔖 v5.x-dev

    Log1x authored Mar 11, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    2c9ebe5 View commit details

Commits on Mar 16, 2025

  1. 🩹 Pass missing $pages and $health parameters to the `withRouting(…

    …)` parent (#448)
    boxybird authored Mar 16, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    18a2af7 View commit details
  2. 🩹 Fix potential exception thrown when using wp acorn about (#449)

    Log1x authored Mar 16, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    51a9fed View commit details

Commits on Mar 27, 2025

  1. 🩹 Use existing configuration when booting a fresh application (Fixes #…

    Log1x authored Mar 27, 2025
    Copy the full SHA
    0fe0619 View commit details
  2. 🎨 Remove unnecessary support helper registration (#453)

    Log1x authored Mar 27, 2025
    Copy the full SHA
    fcd9dbf View commit details
  3. 🩹 Terminate after handling non-WordPress requests (Fixes #444) (#450)

    bedirhandev authored Mar 27, 2025
    Copy the full SHA
    03f0d7d View commit details
  4. 🔖 v5.0.2

    Log1x committed Mar 27, 2025
    Copy the full SHA
    e2a2029 View commit details
16 changes: 1 addition & 15 deletions src/Roots/Acorn/Application.php
Original file line number Diff line number Diff line change
@@ -2,7 +2,6 @@

namespace Roots\Acorn;

use Composer\InstalledVersions;
use Exception;
use Illuminate\Contracts\Container\BindingResolutionException;
use Illuminate\Foundation\Application as FoundationApplication;
@@ -29,7 +28,7 @@ class Application extends FoundationApplication
*
* @var string
*/
public const VERSION = '5.0.1';
public const VERSION = '5.0.2';

/**
* The custom resource path defined by the developer.
@@ -58,7 +57,6 @@ public function __construct($basePath = null)
$this->useEnvironmentPath($this->environmentPath());

$this->registerGlobalHelpers();
$this->registerSupportHelpers();

parent::__construct($basePath);
}
@@ -123,18 +121,6 @@ protected function registerGlobalHelpers()
require_once dirname(__DIR__, 2).'/Illuminate/Foundation/helpers.php';
}

/**
* Load the support helper functions.
*
* @return void
*/
protected function registerSupportHelpers()
{
$path = InstalledVersions::getInstallPath('illuminate/support');

require_once "{$path}/helpers.php";
}

/**
* Set paths that are configurable by the developer.
*
37 changes: 33 additions & 4 deletions src/Roots/Acorn/Application/Concerns/Bootable.php
Original file line number Diff line number Diff line change
@@ -15,16 +15,21 @@
trait Bootable
{
/**
* Boot the application's service providers.
*
* @return $this
* The configuration used to boot the application.
*/
public function bootAcorn()
protected array $bootConfiguration = [];

/**
* Boot the application and handle the request.
*/
public function bootAcorn(array $bootConfiguration = []): static
{
if ($this->isBooted()) {
return $this;
}

$this->bootConfiguration = $bootConfiguration;

if (! defined('LARAVEL_START')) {
define('LARAVEL_START', microtime(true));
}
@@ -232,4 +237,28 @@ protected function registerRequestHandler(
exit((int) $response->isServerError());
}, 100);
}

/**
* Handle the request.
*/
public function handleRequest(Request $request): void
{
$kernel = $this->make(HttpKernelContract::class);

$response = $kernel->handle($request);

$response->send();

$kernel->terminate($request, $response);

exit((int) $response->isServerError());
}

/**
* Retrieve the boot configuration.
*/
public function getBootConfiguration(): array
{
return $this->bootConfiguration;
}
}
25 changes: 23 additions & 2 deletions src/Roots/Acorn/Configuration/ApplicationBuilder.php
Original file line number Diff line number Diff line change
@@ -13,6 +13,11 @@ class ApplicationBuilder extends FoundationApplicationBuilder
{
use Paths;

/**
* The application builder configuration.
*/
protected array $config = [];

/**
* Register the standard kernel classes for the application.
*
@@ -75,12 +80,23 @@ public function withRouting(?Closure $using = null,
$web = $path;
}

parent::withRouting($using, $web, $api, $commands, $channels, $apiPrefix, $then);
parent::withRouting($using, $web, $api, $commands, $channels, $pages, $health, $apiPrefix, $then);

if ($wordpress) {
$this->app->handleWordPressRequests();
}

$this->config['routing'] = [
'web' => $web,
'api' => $api,
'commands' => $commands,
'channels' => $channels,
'pages' => $pages,
'health' => $health,
'apiPrefix' => $apiPrefix,
'wordpress' => $wordpress,
];

return $this;
}

@@ -126,6 +142,11 @@ public function withProviders(array $providers = [], bool $withBootstrapProvider
: null
);

$this->config['providers'] = [
...$this->config['providers'] ?? [],
...$providers,
];

return $this;
}

@@ -146,6 +167,6 @@ public function create()
*/
public function boot()
{
return $this->app->bootAcorn();
return $this->app->bootAcorn($this->config);
}
}
4 changes: 2 additions & 2 deletions src/Roots/Acorn/Console/Commands/AboutCommand.php
Original file line number Diff line number Diff line change
@@ -40,8 +40,8 @@ protected function aboutEnvironment()
'Debug Mode' => $this->laravel->get('config')->get('app.debug') ? '<fg=yellow;options=bold>ENABLED</>' : 'OFF',
'Maintenance Mode' => $this->laravel->isDownForMaintenance() ? '<fg=yellow;options=bold>ENABLED</>' : 'OFF',
'URL' => Str::of(config('app.url'))->replace(['http://', 'https://'], ''),
'Plugins' => get_site_transient('update_plugins') && count(get_site_transient('update_plugins')->response) ? '<fg=yellow;options=bold>UPDATES AVAILABLE</>' : '<fg=green;options=bold>UP TO DATE</>',
'Themes' => get_site_transient('update_themes') && count(get_site_transient('update_themes')->response) ? '<fg=yellow;options=bold>UPDATES AVAILABLE</>' : '<fg=green;options=bold>UP TO DATE</>',
'Plugins' => get_site_transient('update_plugins') && count(get_site_transient('update_plugins')->response ?? []) ? '<fg=yellow;options=bold>UPDATES AVAILABLE</>' : '<fg=green;options=bold>UP TO DATE</>',
'Themes' => get_site_transient('update_themes') && count(get_site_transient('update_themes')->response ?? []) ? '<fg=yellow;options=bold>UPDATES AVAILABLE</>' : '<fg=green;options=bold>UP TO DATE</>',
]);

collect(static::$customDataResolvers)
16 changes: 15 additions & 1 deletion src/Roots/Acorn/Console/Concerns/GetsFreshApplication.php
Original file line number Diff line number Diff line change
@@ -15,9 +15,23 @@ protected function getFreshApplication()
{
$application = get_class($app = Application::getInstance());

$config = $app->getBootConfiguration();

$routing = $config['routing'] ?? [];

return $application::configure($app->basePath())
->withPaths(...$this->getApplicationPaths($app))
->withRouting()
->withProviders($config['providers'] ?? [])
->withRouting(
web: $routing['web'] ?? null,
api: $routing['api'] ?? null,
commands: $routing['commands'] ?? null,
channels: $routing['channels'] ?? null,
pages: $routing['pages'] ?? null,
health: $routing['health'] ?? null,
apiPrefix: $routing['apiPrefix'] ?? 'api',
wordpress: $routing['wordpress'] ?? false,
)
->boot();
}