codedge/laravel-selfupdater 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

codedge/laravel-selfupdater

Composer 安装命令:

composer require codedge/laravel-selfupdater

包简介

Providing an auto-updating functionality for your self-hosted Laravel application.

README 文档

README

Latest Stable Version Total Downloads StyleCI Codacy Badge codecov

This package provides some basic methods to implement a self updating functionality for your Laravel application.

Supported update provider:

  • GitHub
  • Gitlab
  • Gitea
  • Http-based archives

Usually you need this when distributing a self-hosted Laravel application that needs some updating mechanism without Composer.

Install

To install the latest version from the master using Composer:

composer require codedge/laravel-selfupdater

Configuration

After installing the package you need to publish the configuration file via

php artisan vendor:publish --provider="Codedge\Updater\UpdaterServiceProvider"

Note: Please enter correct value for vendor and repository name in your config/self-updater.php if you want to use Github as source for your updates.

Setting the currently installed version

Before starting an update, make sure to set the version installed correctly. You're responsible to set the current version installed, either in the config file or better via the env variable SELF_UPDATER_VERSION_INSTALLED.

tag-based updates

Set the installed version to one of the tags set for a release.

branch-based updates

Set the installed version to a datetime of one of the latest commits.
A valid version would be: 2020-04-19T22:35:48Z

Running artisan commands

Artisan commands can be run before or after the update process and can be configured in config/self-updater.php:

Example:

'artisan_commands' => [
    'pre_update' => [
        'updater:prepare' => [
            'class' => \App\Console\Commands\PreUpdateTasks::class,
            'params' => []
        ],
    ],
    'post_update' => [
        'postupdate:cleanup' => [
            'class' => \App\Console\Commands\PostUpdateCleanup::class,
            'params' => [
                'log' => 1,
                'reset' => false,
                // etc.
            ]
        ]
    ]
]

Configure the download path

Sometimes your web host does not allow saving files into the /tmp folder of the server. You can change the folder the application is downloaded to by setting the env var SELF_UPDATER_DOWNLOAD_PATH to something different. Just keep in mind, that the folder is not inside the folder your application lives in as it might be overwritten during the update.

Notifications via email

You need to specify a recipient email address and a recipient name to receive update available notifications. You can specify these values by adding SELF_UPDATER_MAILTO_NAME and SELF_UPDATER_MAILTO_ADDRESS to your .env file.

Config nameDescription
SELF_UPDATER_MAILTO_NAMEName of email recipient
SELF_UPDATER_MAILTO_ADDRESSAddress of email recipient
SELF_UPDATER_MAILTO_UPDATE_AVAILABLE_SUBJECTSubject of update available email
SELF_UPDATER_MAILTO_UPDATE_SUCCEEDED_SUBJECTSubject of update succeeded email

Private repositories

Private repositories can be accessed via (Bearer) tokens. Each repository inside the config file should have a private_access_token field, where you can set the token.

ℹ Do not prefix the token with Bearer . This is done automatically.

Usage

To start an update process, i. e. in a controller, just use:

Route::get('/', function (\Codedge\Updater\UpdaterManager $updater) {

    // Check if new version is available
    if($updater->source()->isNewVersionAvailable()) {

        // Get the current installed version
        echo $updater->source()->getVersionInstalled();

        // Get the new version available
        $versionAvailable = $updater->source()->getVersionAvailable();

        // Create a release
        $release = $updater->source()->fetch($versionAvailable);

        // Run the update process
        $updater->source()->update($release);

    } else {
        echo "No new version available.";
    }

});

Currently, the fetching of the source is a synchronous process. It is not run in background.

Using GitHub

The package comes with a GitHub source repository type to fetch releases from GitHub - basically use GitHub to pull the latest version of your software.

Just make sure you set the proper repository in your config/self-updater.php file.

Tag-based updates

This is the default. Updates will be fetched by using a tagged commit, aka release.

Tag-based updates with assets/package file

If you have pre-packaged tag based releases, you can use the 'repository_types.github.package_file_name' key in your config/self-update.php file or update the SELF_UPDATER_PACKAGE_FILE_NAME .env var to specify the asset name to download.

If you prefix the file name with regex: the package will try to find the latest asset matching the given regex. Note however to use only the regex and not the PHP regex / prefix and suffixes. For example, an acceptable value would be regex:.releaseV*\.zip. This will match all assets starting with releaseV and ending with .zip.

An invalid value would be regex:/releaseV*\.zip/. Note the / prefix and suffix.

// ...
'repository_types' => [
    'github' => [
        'type' => 'github',
        'repository_vendor' => env('SELF_UPDATER_REPO_VENDOR', ''),
        'repository_name' => env('SELF_UPDATER_REPO_NAME', ''),
        // ...
        'package_file_name' => 'release.zip', // Package file name to download
        'package_file_name' => 'regex:releaseV.*\.zip', // REGEX Package file name to download
   ],
   // ...
];

Branch-based updates

Select the branch that should be used via the use_branch setting inside the configuration.

// ...
'repository_types' => [
    'github' => [
        'type' => 'github',
        'repository_vendor' => env('SELF_UPDATER_REPO_VENDOR', ''),
        'repository_name' => env('SELF_UPDATER_REPO_NAME', ''),
        // ...
        'use_branch' => 'v2',
   ],
   // ...
];

Using Gitlab

Configure Gitlab either via the config/self-updater.php or use the appropriate environment variables.

// ...
'repository_types' => [
    'gitlab' => [
            'base_url'             => '',
            'type'                 => 'gitlab',
            'repository_id'        => env('SELF_UPDATER_REPO_URL', ''),
            'download_path'        => env('SELF_UPDATER_DOWNLOAD_PATH', '/tmp'),
            'private_access_token' => env('SELF_UPDATER_GITLAB_PRIVATE_ACCESS_TOKEN', ''),
   ],
   // ...
];

ℹ Although the environment variable is named SELF_UPDATER_REPO_URL, only specify your repository id.

For self-hosted Gitlab instances you can set the base_url variable to a domain where the instance is hosted at, f. ex. http://gitlab.acme.local.

Using HTTP archives

The package comes with an HTTP source repository type to fetch releases from an HTTP directory listing containing zip archives.

To run with HTTP archives, use following settings in your .env file:

Config nameValue / Description
SELF_UPDATER_SOURCEhttp
SELF_UPDATER_REPO_URLArchive URL, e.g. http://archive.webapp/
SELF_UPDATER_PKG_FILENAME_FORMATZip package filename format
SELF_UPDATER_DOWNLOAD_PATHDownload path on the webapp host server

The archive URL should contain nothing more than a simple directory listing with corresponding zip-Archives.

SELF_UPDATER_PKG_FILENAME_FORMAT contains the filename format for all webapp update packages. I.e. when the update packages listed on the archive URL contain names like webapp-v1.2.0.zip, webapp-v1.3.5.zip, ... then the format should be webapp-v_VERSION_. The _VERSION_ part is used as semantic versionioning variable for MAJOR.MINOR.PATCH versioning. The zip-extension is automatically added.

The target archive files must be zip archives and should contain all files on root level, not within an additional folder named like the archive itself.

Using Gitea

With Gitea you can use your own Gitea-Instance with tag-releases.

To use it, use the following settings in your .env file:

Config nameValue / Description
SELF_UPDATER_SOURCEgitea
SELF_UPDATER_GITEA_URLURL of Gitea Server
SELF_UPDATER_REPO_VENDORRepo Vendor Name
SELF_UPDATER_REPO_NAMERepo Name
SELF_UPDATER_GITEA_PRIVATE_ACCESS_TOKENAccess Token from Gitea
SELF_UPDATER_DOWNLOAD_PATHDownload path on the webapp host server

Contributing

Please see the contributing guide.

Licence

The MIT License (MIT). Please see Licence file for more information.

codedge/laravel-selfupdater 适用场景与选型建议

codedge/laravel-selfupdater 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 143.26k 次下载、GitHub Stars 达 0, 最近一次更新时间为 2016 年 08 月 03 日, 在 PHP 生态内属于活跃度较高的组件。

它主要适用于以下技术方向: 「update」 「laravel」 「auto-update」 「self-update」 「auto update」 「self update」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。

我们在过去多个企业项目中使用过 codedge/laravel-selfupdater 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 codedge/laravel-selfupdater 我们能提供哪些服务?
定制开发 / 二次开发

基于 codedge/laravel-selfupdater 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 143.26k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 1
  • 点击次数: 22
  • 依赖项目数: 1
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 0
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2016-08-03