定制 quinninteractive/silverstripe-webp-substitution 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

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

quinninteractive/silverstripe-webp-substitution

Composer 安装命令:

composer require quinninteractive/silverstripe-webp-substitution

包简介

Automatically convert images to WebP format

README 文档

README

This module provides a task, tasks:webpconvert, which is to be run periodically to provide WebP substitutes for all existing public images.

Requirements

  • silverstripe/framework ^4.4
  • Conflicts with silverstripe/s3 because this module works only with the default, filesystem-based asset manager.

Installation

composer require quinninteractive/silverstripe-webp-substitution ^2.0.0

License

See License

Configuration example

If you should need to change the assets-relative directory or the file suffix to be used for WebP images, you can do that in the configuration.

There is a default limit of 32 megapixels, over which conversion is not attempted. This is to avoid overtaxing the server's virtual memory. This setting can be overridden as shown below. If you change the webp_file_suffix, you must also change the suffix in your nginx configuration (see example below).

QuinnInteractive\WebPSub\Task\ConvertImagesToWebpTask:
  webp_directory_path: '.misc/.WebP'
  webp_file_suffix: '.wp'
  size_limit_megapixels: 16

Command-line example

sudo -Eu www ./vendor/bin/sake tasks:webpconvert

Crontab example

DOCROOT=/var/silverstripe/live/current/docroot
SAKE=./vendor/bin/sake
SUDO=/usr/local/bin/sudo

# WebP graphics conversion task every hour
50 * * * *    (cd $DOCROOT && $SUDO -Eu www $SAKE tasks:webpconvert) > /dev/null 2>&1

Nginx configuration example

To support this module, add these items to your existing Silverstripe configuration. If you have changed the YAML configuration, you will need to adjust these items accordingly.

In the http section

# webp dir to try, if we accept webp (or none if not)
map $http_accept $webp_dir {
    default   "";
    "~*image/webp"  "/assets/.webp/";
}

map $arg_nowebp $accept_webp {
    default   $webp_dir;
    '1'    "/fail-on-purpose/";
}

In the server section, before the main assets location directive

# first try to return allowed webp
location ~ ^/assets/.*\.(?i:gif|jpeg|jpg|png)$ {
    try_files $accept_webp$uri.webp $uri /index.php?$query_string;
}

# Never serve .protected, nor .webp not served above
location ~ ^/assets/\.(webp|protected)/ {
    return 403;
}

Apache configuration example

TBD

Filesystem preparation

If it can, the task will create the directories that it needs. If not, you must create the .webp directory (or the directory named in the webp_directory_path configuration) under the assets directory and make it writable by the web server.

Version

3.0.0

Release notes

3.0.0

Silverstripe 6 support.

This module uses nette/utils where it previously used nette/finder, which has been abandoned and folded into nette/utils. For that reason, we have flagged this module as conflicting with nette/finder so that it won't load into a site still using nette/finder. This is so we don't introduce duplicate classes.

2.1.1

Silverstripe 5 support.

2.1.0

This version introduces a backward-compatible feature so that converted WebP files are not used in the CMS. To take advantage of this new feature, you need to change your nginx configuration (see example above). If you do not make the changes, your site will work just as it did in earlier versions, so this is a non-breaking change.

quinninteractive/silverstripe-webp-substitution 适用场景与选型建议

quinninteractive/silverstripe-webp-substitution 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 3.01k 次下载、GitHub Stars 达 0, 最近一次更新时间为 2022 年 06 月 16 日, 在 PHP 生态内属于活跃度较高的组件。

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

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

围绕 quinninteractive/silverstripe-webp-substitution 我们能提供哪些服务?
定制开发 / 二次开发

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

BUG 修复 & 性能优化

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

项目外包 & 长期维护

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

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

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: BSD-3-Clause
  • 更新时间: 2022-06-16