承接 liplum/flarum-sync-profile 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

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

liplum/flarum-sync-profile

最新稳定版本:v0.2.1

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.



                                    

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: MIT
  • 更新时间: 2024-12-06