heise/shariff
Composer 安装命令:
composer require heise/shariff
包简介
PHP backend for Shariff. Shariff enables website users to share their favorite content without compromising their privacy.
README 文档
README
Shariff is used to determine how often a page is shared in social media, but without generating requests from the displaying page to the social sites.
This document describes the PHP backend of Shariff.
Supported services
- Buffer
- Vk
Requirements
To run Shariff PHP Backend on your server you need one of these PHP versions:
- 8.1
- 8.2
- 8.3
- 8.4
Older versions and HHVM are not supported.
Installing the Shariff backend on your own server
To run Shariff under a certain URL, unzip the release zip file into a directory under the document root of your web server.
Take a look into the demo application in the index.php file and adjust the configuration as necessary.
The following configuration options are available:
| Key | Type | Description |
|---|---|---|
cacheClass |
string |
Optional Cache class name. Has to implement Heise\Shariff\CacheInterface. Defaults to internal Laminas Cache. |
cache |
object |
File cache settings, which are passed on to the Cache class. See description below. |
domains |
array |
Domains for which share counts may be requested. If empty, all domains are allowed. |
services |
array |
List of services to be enabled. See Supported services. |
Cache settings:
By default Shariff uses the Filesystem cache. By specifying a different adapter from Laminas\Cache\Storage\Adapter you can tell Shariff to use another cache. Also you can specify options for that cache adapter
| Key | Type | Description |
|---|---|---|
ttl |
integer |
Time that the counts are cached (in seconds) |
cacheDir |
string |
Directory used for the cache. Default: system temp directory |
adapter |
string |
Name of cache adapter (e.g. Apc, Memcache, etc.) You can find an overview of all available Adapters here. It is required to install these separately through composer |
adapterOptions |
object |
Options for the cache adapter |
These option apply for the default Cache class (LaminasCache) only. If you implement custom caching, you can specify your own options.
Client options
The backend uses Guzzle as HTTP client. Guzzle has many options that you can set, e.g. timeout and connect_timeout. See http://docs.guzzlephp.org/en/latest/request-options.html for a detailed list. In order to set those options pass them in the json with the key "client".
| Key | Type | Description |
|---|---|---|
client |
object |
Guzzle request options |
Service Settings
To pass config options to a service, you can add them to the json as well under the name of the service. Currently only the Facebook service has options for an facebook application id and client secret in order to use the graph api id method to get the current share count.
| Key | Type | Description |
|---|---|---|
servicename |
object |
options for the service |
Facebook service options
To use the graph api id method to fetch the share count you need to set up an application at facebook.com and pass in the application id and client secret to the options. It seems that the id method returns the most current share count, but it can be only used with an registered application.
| Key | Type | Description |
|---|---|---|
app_id |
string |
the id of your facebook application |
secret |
string |
the client secret of your facebook application |
Full config example
use Heise\Shariff\LaminasCache; /** * Sample configuration * * @var array */ private static array $configuration = [ 'cacheClass' => 'Heise\\Shariff\\LaminasCache', 'cache' => [ 'ttl' => 60, 'cacheDir' => '/tmp/shariff/cache', 'adapter' => 'Filesystem', 'adapterOptions' => [ // ... ] ], 'client' => [ 'timeout' => 4.2, 'headers' => [ 'User-Agent' => 'shariff/1.0', ] // ... (see "Client options") ], 'domains' => [ 'www.heise.de', 'www.ct.de' ], 'services' => [ 'Facebook', 'Reddit', 'Pinterest', 'Xing', 'Buffer', 'Vk' ], 'Facebook' => [ 'app_id' => '1234567890', 'secret' => 'terces' ] ];
Testing your installation
If the backend runs under http://example.com/my-shariff-backend/, calling the URL http://example.com/my-shariff-backend/?url=http%3A%2F%2Fwww.example.com should return a JSON structure with numbers in it, e.g.:
{"facebook":1452,"reddit":7,"pinterest":3,"buffer":29,"vk":326}
Shariff OO interface
If you need more control, you can invoke Shariff in your own PHP code. The following snippet should get you started. $options are identical to those described above.
use Heise\Shariff\Backend; $options = [ "domains" => ["www.heise.de", "www.ct.de"], "cache" => ["ttl" => 1], "services" => ["Facebook", "Reddit", "Pinterest", "Buffer", "Vk"] ]; $shariff = new Backend($options); $counts = $shariff->get("https://www.heise.de/"); echo $counts["facebook"];
heise/shariff 适用场景与选型建议
heise/shariff 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 153.89k 次下载、GitHub Stars 达 135, 最近一次更新时间为 2014 年 11 月 11 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「heise」 「social buttons」 「shariff」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 heise/shariff 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 heise/shariff 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 heise/shariff 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Adds new form actions and buttons to GridField detail form for usability enhancements.
Simple Contao extension to provide share buttons as a module and content element
Simple Sharing generates social media share links within CP entry pages, allowing you to quickly & easily share entries.
Craft CMS plugin to add a radio buttons field, customizable with CSS classes, icons, images and text.
A Laravel Nova asset.
Reverts the drop down save buttons in the backend to 3 single buttons
统计信息
- 总下载量: 153.89k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 137
- 点击次数: 26
- 依赖项目数: 10
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2014-11-11