指南
- 介绍
- Contribute
- 部署
- 管理
- 高级
内部文档
扩展
- Main 核心概念
- 参考指南
- 进阶指南
- 更新指南
Extension Manager
This contains an explanation of how the extension manager works and what it has to offer.
slightly outdated: see the extensions guide for more.
Contents
- Installing, Updating, and Removing Extensions.
There are some obstacles that need to be taken care of before this can be used.
File Permissions
The relevant machine web user needs to have permissions to read and write to:
vendor
,composer.json
,composer.lock
andstorage
. Right now a warning shows up when this is not the case, this should preferably be changed to mention only the files/dirs where permissions are lacking instead of all of them.Path Repository
In development environments (and production in rare scenarios) there should a path repository to a directory containing (mostly dev) packages, the path to this directory must be changed to an absolute path otherwise composer will have trouble running any command. Additionally the path repository by default has higher priority, so requiring an extension that exists in that repository will probably fail, unless a
*@dev
constraint is specified, in which case the extension manager should not be used for dev purposes anyway.There is currently now hint of any of this in the extension manager UI.
Common Actions
Each one of the features listed above is basically a composer command or two, and there are common actions/common behaviour between them all.
- Restricting access to the admin.
- Validating the provided package name or the extension id if given.
- Erroring out if installing an existing extension, updating or removing a non existing extension ...etc
- Running the command. This
Considering this is still experimental and especially for the sake of easier support, each command output is logged to
storage/logs/composer
just like the flarum error logs, allowing to go back and see what happened during a command execution.Command Failure
When a composer command fails (recognised by the exit code), an exception is thrown containing a reason guessed by the exception based on the command output text. Guessed causes render into proper explanatory alert messages on the frontend.
Checking for Updates
This executes the command
composer outdated -D --format json
which checks for updates of packages directly required in the rootcomposer.json
and outputs the results in JSON format. Only packages marked assemver-safe-update
andupdate-possible
by composer are displayed.The information about the last update check is saved into a JSON setting.
Global Flarum Updates
Simply runs the command
command update --prefer-dist --no-dev -a --with-all-dependencies
, useful for updating all packages.Patch-Minor Flarum Updates
This changes directly required package versions to
*
and then executes the commandcommand update --prefer-dist --no-dev -a --with-all-dependencies
.Major Flarum Updates
This changes directly required package versions to
*
, changes core to the latest major version requirement and then executes the same command above. Upon failure, it can be correctly guessed that some extensions are not compatible with the new major version, the exception details will include an array of extension package names that are not compatible, and it'll be rendered in the frontend, with the ability to run acomposer why-not flarum/core 2.0
for more details.Flarum Updates (global, minor, major)
Information about the last updates ran are saved in a
last_update_run
JSON setting, which can contain an array of extension package names that didn't update to their latest version in the process, this is rendered in the frontend as warning icon buttons on the extension items, clicking on them will execute acomposer why-not
, displaying the details of the failure in a modal.Background Tasks
To get around timeout issues, composer commands can also run on the background use the queue. Users can be pointed towards Blomstra's Database Queue Implementation as a basic queue solution. It contains instructions on how to enable the queue through a cron job.
Cron Job PHP Process VersionIt is common for shared hosts to have a low php version used in SSH, users must be pointed to the fact that they have to make sure the php process is of a version compatible with Flarum. Either by manually checking or by asking their hosts.
TODO
- Try on shared hosting.
- Better explanation on the UI about background tasks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论