joeystowe/ms-graph-api
Composer 安装命令:
composer require joeystowe/ms-graph-api
包简介
Laravel MS Graph API
关键字:
README 文档
README
This adds helper methods to call the MS Graph API and installs a middleware/routes to implement MS Authentication
Installation
You can install the package via composer:
composer require joeystowe/ms-graph-api:^1.0
Usage
SSO Authentication
The plugin installs a middleware ('ms-auth') and 2 routes (/auth/callback and /logout). To protect a route with authentication you must apply the middleware to the desired routes and set your env variables
Apply middleware example
Route::get('/', function () { return view('welcome'); })->middleware('ms-auth');
Or use middleware groups
Route::middleware('ms-auth')->group(function () { Route::get('/admin/dashboard', 'AdminController@dashboard'); });
Caution
You can not add the middleware globally or in the web group because the auth callback method needs to be publicy accessible
Set you .env variables
// services.php ... 'azure' => [ 'client_id' => env('AZURE_CLIENT_ID'), 'client_secret' => env('AZURE_CLIENT_SECRET'), 'tenant' => env('AZURE_TENANT_ID'), 'redirect' => env('AZURE_REDIRECT_URI'), ], ...
// .env ... AZURE_CLIENT_ID=<YOUR CLIENT ID> AZURE_CLIENT_SECRET=<YOUR CLIENT SECRET> AZURE_REDIRECT_URI=http://localhost:8080/auth/callback AZURE_TENANT_ID=<YOUR TENANT ID> ...
Accessing the user
The ms-auth middleware sets the following scoped session values
session()->put('ms:user', (object)$user); session()->put('ms:username', $user['bannerUsername']); session()->put('ms:email', $user['email']); session()->put('ms:principalName', $user['principalName']); session()->put('ms:id', $user['id']); session()->put('ms:session-token', $user['token']);
You can reference these directly or you can use the LoggedInUser helper class:
// Returns an object with the following properties set Joeystowe\MsGraphApi\LoggedInUser::user(); { "id" => "1111-2222-33333-44444" //ms user id "name" => "John Doe" //Full Name "email" => "john.doe@eng.ua.edu" "principalName" => "jdoe@ua.edu" "bannerUsername" => "jdoe" "token" => "1111-2222-3333-4444" //ms session token } //Fetch users properties as an array Joeystowe\MsGraphApi\LoggedInUser::userArray(); //Fetch users properties as a pre-filled User model Joeystowe\MsGraphApi\LoggedInUser::userModel(); //Fetch a single user attribute (throws exception is property is not found) Joeystowe\MsGraphApi\LoggedInUser::userAttribute('principalName') //returns "jdoe@ua.edu"
Logging Out
Simply hit the '/logout' route to log the user out. After logging out from MS the user will be redirected to a '/postLogout' page. Be sure to set your APP_URL correctly so the "log back in" url will work correctly.
You will also need to publish the assets for the postLogout page to be fully functional:
php artisan vendor:publish --tag=assets --ansi --force
Calling Graph API
The plugin also gives you helper methods to call the MS graph API
Logged In User Methods
Groups
$user = Joeystowe\MsGraphApi\LoggedInUser::user(); //resolve instance of current user API $graphApi = app(Joeystowe\MsGraphApi\MsGraphCurrentUserApi::class, ['token' => $user->token]); //Get all user's groups, returns array of groups $graphApi->groups() //Check if a user is in a specific group, returns boolean $graphApi->inGroup(groupId: $groupIdToCheck)
Changelog
Please see CHANGELOG for more information what has changed recently.
Credits
License
The MIT License (MIT). Please see License File for more information.
joeystowe/ms-graph-api 适用场景与选型建议
joeystowe/ms-graph-api 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 5.17k 次下载、GitHub Stars 达 2, 最近一次更新时间为 2024 年 01 月 23 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「joeystowe」 「ms-graph-api」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 joeystowe/ms-graph-api 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 joeystowe/ms-graph-api 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 5.17k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2024-01-23