kaiquegarcia/lumen-nginx-secure-link 问题修复 & 功能扩展

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

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

kaiquegarcia/lumen-nginx-secure-link

Composer 安装命令:

composer require kaiquegarcia/lumen-nginx-secure-link

包简介

Trait to easily adapt a Lumen/Laravel project for using NGINX secure link

README 文档

README

Trait to easily adapt a Lumen/Laravel project for using NGINX secure link

Install & Setup

Require this package to your Lumen/Laravel project with composer;

Laravel / Lumen Setup

  1. Add NGINX_SECURE_LINK_SECRET and NGINX_SECURE_LINK_TTL to your .env file;
  2. Run php artisan vendor:publish --provider="Nginx\SecureLink\Providers\SecureLinkServiceProvider";
  3. Run php artisan config:clear.

Nginx Setup

You need to create a configuration to each route you want to keep signed. And before making any setup, remember to compile the source or run apt get install nginx-extras.

NGINX Configuration (usage example https://yourdomain.com/signed-route/file.zip)

        location /signed-route/ {
                secure_link $arg_md5,$arg_expires;
                secure_link_md5 "$secure_link_expires$uri$remote_addr NGINX_SECURE_LINK_SECRET";

                if ($secure_link = "") { return 403; }
                if ($secure_link = "0") { return 410; }

        }

Explaining those environments

  1. NGINX_SECURE_LINK_SECRET is the "password" you gonna keep in the back-end. You must put it on your environment file AND in each nginx configuration;
  2. NGINX_SECURE_LINK_TTL is the time in seconds the generated secure_link will expire.

How to use

Add to your Eloquent Model a simple use \Nginx\SecureLink\Traits\WithSecureLink and you'll be ready, considering the attribute origin's called link. For example:

Model implementation

class ModelExample extends \Illuminate\Database\Eloquent\Model
{
  use \Nginx\SecureLink\Traits\WithSecureLink;
  protected $fillable = ['link'];
}

Usage

$example = new ModelExample();
$secure_link = $example->secure_link;

Customizing the origin attribute

You can and should have the possibility to create the secure_link based on other model attributes. To do this, just override the protected property $secure_link_origin_attribute. For example:

Model implementation

class ModelExample extends \Illuminate\Database\Eloquent\Model
{
  use \Nginx\SecureLink\Traits\WithSecureLink;
  protected $fillable = ['my_custom_url'];
  protected $secure_link_origin_attribute = 'my_custom_url';
}

Customizing the IP Provider

As this project were made to Lumen framework, it can have some failures when trying to catch the user Client IP. The reason for that is we're using the class Illuminate\Http\Request to reach the ip method. If you have any trouble with this, you can develop any class you want to with the same method and override the protected property $secure_link_ip_class_provider. For example:

IP Provider implementation

class IpProvider extends \Illuminate\Http\Request
{
  public function ip()
  {
    return "the-right-ip";
  }
}

Model implementation

class ModelExample extends \Illuminate\Database\Eloquent\Model
{
  use \Nginx\SecureLink\Traits\WithSecureLink;
  protected $fillable = ['link'];
  protected $secure_link_ip_class_provider = IpProvider::class;
}

kaiquegarcia/lumen-nginx-secure-link 适用场景与选型建议

kaiquegarcia/lumen-nginx-secure-link 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 1 次下载、GitHub Stars 达 1, 最近一次更新时间为 2021 年 02 月 04 日, 在 PHP 生态内属于活跃度较高的组件。

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

围绕 kaiquegarcia/lumen-nginx-secure-link 我们能提供哪些服务?
定制开发 / 二次开发

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

BUG 修复 & 性能优化

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

项目外包 & 长期维护

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

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

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: MIT
  • 更新时间: 2021-02-04