cviebrock/discourse-php
最新稳定版本:0.9.3
Composer 安装命令:
composer require cviebrock/discourse-php
包简介
Helper class for building a single sign-on source for Discourse forums
关键字:
README 文档
README
This is a small class to help with providing an SSO source for Discourse forums. It provides 3 helper functions for validating incoming requests, extracting nonce, and building the returning query string.
For more information on the SSO settings in Discourse, visit https://meta.discourse.org/t/official-single-sign-on-for-discourse/13045
Original code from Johan Jatko: https://github.com/ArmedGuy/discourse_sso_php
Installation
The package is registered at Packagist as cviebrock/discourse-php and can be installed using composer:
composer require "cviebrock/discourse-php"
Usage
$sso = new Cviebrock\DiscoursePHP\SSOHelper(); // this should be the same in your code and in your Discourse settings: $secret = 'super_secret_sso_key'; $sso->setSecret( $secret ); // load the payload passed in by Discourse $payload = $_GET['sso']; $signature = $_GET['sig']; // validate the payload if (!($sso->validatePayload($payload,$signature))) { // invaild, deny header("HTTP/1.1 403 Forbidden"); echo("Bad SSO request"); die(); } $nonce = $sso->getNonce($payload); // Insert your user authentication code here ... // Required and must be unique to your application $userId = '...'; // Required and must be consistent with your application $userEmail = '...'; // Optional - if you don't set these, Discourse will generate suggestions // based on the email address $extraParameters = array( 'username' => $userUsername, 'name' => $userFullName ); // build query string and redirect back to the Discourse site $query = $sso->getSignInString($nonce, $userId, $userEmail, $extraParameters); header('Location: http://discourse.example.com/session/sso_login?' . $query); exit(0);
Bugs, Suggestions and Contributions
Please use Github for bugs, comments, suggestions.
- Fork the project.
- Create your bugfix/feature branch and write your (well-commented) code.
- Commit your changes and push to your repository.
- Create a new pull request against this project's
masterbranch.
Copyright and License
discourse-php was written by Colin Viebrock and released under the MIT License. See the LICENSE file for details.
Copyright 2015 Colin Viebrock
统计信息
- 总下载量: 487.41k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 67
- 点击次数: 1
- 依赖项目数: 9
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-01-20