mirror of
https://github.com/flarum/framework.git
synced 2024-12-01 22:43:41 +08:00
37a882118a
* chore(deps): bump glob-parent in /extensions/emoji/js Bumps [glob-parent](https://github.com/gulpjs/glob-parent) from 3.1.0 to 5.1.2. - [Release notes](https://github.com/gulpjs/glob-parent/releases) - [Changelog](https://github.com/gulpjs/glob-parent/blob/main/CHANGELOG.md) - [Commits](https://github.com/gulpjs/glob-parent/compare/v3.1.0...v5.1.2) --- updated-dependencies: - dependency-name: glob-parent dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> * Apply fixes from StyleCI [ci skip] [skip ci] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: StyleCI Bot <bot@styleci.io>
64 lines
3.1 KiB
PHP
Executable File
64 lines
3.1 KiB
PHP
Executable File
<?php
|
|
|
|
/*
|
|
* This file is part of Flarum.
|
|
*
|
|
* For detailed copyright and license information, please view the
|
|
* LICENSE file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Flarum\PackageManager;
|
|
|
|
use Flarum\Extend;
|
|
use Flarum\Foundation\Paths;
|
|
use Flarum\Frontend\Document;
|
|
use Flarum\PackageManager\Exception\ComposerCommandFailedException;
|
|
use Flarum\PackageManager\Exception\ComposerRequireFailedException;
|
|
use Flarum\PackageManager\Exception\ComposerUpdateFailedException;
|
|
use Flarum\PackageManager\Exception\ExceptionHandler;
|
|
use Flarum\PackageManager\Exception\MajorUpdateFailedException;
|
|
use Flarum\PackageManager\Settings\LastUpdateCheck;
|
|
use Flarum\PackageManager\Settings\LastUpdateRun;
|
|
|
|
return [
|
|
(new Extend\Routes('api'))
|
|
->post('/package-manager/extensions', 'package-manager.extensions.require', Api\Controller\RequireExtensionController::class)
|
|
->patch('/package-manager/extensions/{id}', 'package-manager.extensions.update', Api\Controller\UpdateExtensionController::class)
|
|
->delete('/package-manager/extensions/{id}', 'package-manager.extensions.remove', Api\Controller\RemoveExtensionController::class)
|
|
->post('/package-manager/check-for-updates', 'package-manager.check-for-updates', Api\Controller\CheckForUpdatesController::class)
|
|
->post('/package-manager/why-not', 'package-manager.why-not', Api\Controller\WhyNotController::class)
|
|
->post('/package-manager/minor-update', 'package-manager.minor-update', Api\Controller\MinorUpdateController::class)
|
|
->post('/package-manager/major-update', 'package-manager.major-update', Api\Controller\MajorUpdateController::class)
|
|
->post('/package-manager/global-update', 'package-manager.global-update', Api\Controller\GlobalUpdateController::class),
|
|
|
|
(new Extend\Frontend('admin'))
|
|
->css(__DIR__.'/less/admin.less')
|
|
->js(__DIR__.'/js/dist/admin.js')
|
|
->content(function (Document $document) {
|
|
$paths = resolve(Paths::class);
|
|
|
|
$document->payload['isRequiredDirectoriesWritable'] = is_writable($paths->vendor)
|
|
&& is_writable($paths->storage.'/.composer')
|
|
&& is_writable($paths->base.'/composer.json')
|
|
&& is_writable($paths->base.'/composer.lock');
|
|
}),
|
|
|
|
new Extend\Locales(__DIR__.'/locale'),
|
|
|
|
(new Extend\Settings())
|
|
->default(LastUpdateCheck::key(), json_encode(LastUpdateCheck::default()))
|
|
->default(LastUpdateRun::key(), json_encode(LastUpdateRun::default())),
|
|
|
|
(new Extend\ServiceProvider)
|
|
->register(PackageManagerServiceProvider::class),
|
|
|
|
(new Extend\ErrorHandling)
|
|
->handler(ComposerCommandFailedException::class, ExceptionHandler::class)
|
|
->handler(ComposerRequireFailedException::class, ExceptionHandler::class)
|
|
->handler(ComposerUpdateFailedException::class, ExceptionHandler::class)
|
|
->handler(MajorUpdateFailedException::class, ExceptionHandler::class)
|
|
->status('extension_already_installed', 409)
|
|
->status('extension_not_installed', 409)
|
|
->status('no_new_major_version', 409),
|
|
];
|