liplum/flarum-sync-profile
Composer 安装命令:
composer require liplum/flarum-sync-profile
包简介
The user profile synchronization when authenticated by an external identity provider.
README 文档
README
A Flarum extension to sync user profile(attributes) when authenticated by an external identity provider. This extension provides support for syncing:
- Nickname
- Avatar
- Groups
- Bio
- Masquerade Attributes
Get Started
Installation:
composer require liplum/flarum-sync-profile-core composer require liplum/flarum-sync-profile
Update:
composer update liplum/flarum-sync-profile-core composer update liplum/flarum-sync-profile
You'll need to start the Flarum Scheduler.
* * * * * cd /path-to-your-project && php flarum schedule:run >> /dev/null 2>&1
Sync
Flarum Setup
First, set both sync-users-endpoint and sync-user-endpoint.
If the sync-users-endpoint is set, all user profiles will be synced hourly.
If the sync-user-endpoint is set, each user profile will be synced when they were registered.
The payload of the hook request is in JSON:API which Flarum uses,
and the authentication can be checked via the Authorization header.
For security issue, you should set the Authorization header in the config.php instead of barely display on extension settings page for anyone who has the extension management permission.
<?php return array ( 'debug' => false, // other configurations... "liplum-sync-profile" => array( "authorizationHeader" => "Bearer your_access_token" ), );
Here is something like the Flarum backend would request the hook.
For single user:
fetch(syncUserEndpointUrl, { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer your_access_token' }, body: JSON.stringify({ "data": { "type": "users", "attributes": { "email": "example@example.com" } } }) })
For multiple users:
fetch(syncUsersEndpointUrl, { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer your_access_token' }, body: JSON.stringify({ "data": { "type": "users", "attributes": { "emails": [ "example1@example.com", "example2@example.com", ] } } }) })
And the backend should handle the sync request and respond a the user attributes in JSON:API:
For single user:
{
"data": {
"type": "users",
"attributes": {
"email": "example@example.com",
"nickname": "Example Name",
"avatarUrl": "https://example.com/avatar",
"bio": "Example bio."
}
}
}
For multiple users:
{
"data": [{
"type": "users",
"attributes": {
"email": "example1@example.com",
"nickname": "User 1",
"avatarUrl": "https://example.com/avatar1",
"bio": "Example bio of user 1."
}
},{
"type": "users",
"attributes": {
"email": "example2@example.com",
"nickname": "User 2",
"avatarUrl": "https://example.com/avatar2",
"bio": "Example bio of user 2."
}
}]
}
Backend Setup
Taking the express.js backend server as an example, you can set up the following routes.
Manually Sync
You can run the command to manually trigger sync all users.
php flarum liplum:sync-profile:all
Webhook
Set the webhook token for authentication. If it's left empty, the webhook won't work.
The webhook endpoint is /api/sync-profile/webhook/{api}.
A full qualified URL is https://fourm.example.com/api/sync-profile/webhook/{api}.
{
"event": "profile-changed",
"data": {
"email": "email@example.com",
"attributes": {
"nickname": "Test User",
"avatarUrl": "https://example.com/avatarUrl",
"bio": "My bio."
}
}
}
Taking the express.js backend server as an example, you can set up the following routes.
liplum/flarum-sync-profile 适用场景与选型建议
liplum/flarum-sync-profile 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 156 次下载、GitHub Stars 达 2, 最近一次更新时间为 2024 年 12 月 06 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「flarum」 「flarum-extension」 「flarum-ext」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 liplum/flarum-sync-profile 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 liplum/flarum-sync-profile 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 liplum/flarum-sync-profile 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Allows to create a customizable landing page that non-logged in users will see.
Adds more BBCode
Output of discussions lists in form of cards
Right-to-Left (rtl) direction support for "Flarum" core and extensions.
Customize discussion title length.
The trending discussions for Flarum
统计信息
- 总下载量: 156
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 16
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2024-12-06