hslavich/simplesamlphp-bundle
Composer 安装命令:
composer require hslavich/simplesamlphp-bundle
包简介
SimpleSAMLphp Bundle for Symfony
关键字:
README 文档
README
This is a SimpleSAMLphp Bundle for Symfony.
Note: For Symfony 2.7 or lower, you need to use the 1.0.0 release of this bundle.
Note 2: This bundle uses the full SimpleSAMLphp application. I highly recommend to use this lighter and improved OneloginSamlBundle.
Installation
Add this bundle to your Symfony project.
composer require hslavich/simplesamlphp-bundle
or manually require this bundle in your composer.json file.
"require": {
...
"hslavich/simplesamlphp-bundle": "dev-master"
}
Update your project.
composer update hslavich/simplesamlphp-bundle
Activate the bundle in app/AppKernel.php.
$bundles = array(
...
new Hslavich\SimplesamlphpBundle\HslavichSimplesamlphpBundle(),
)
Configuration
Add bundle configuration settings to your Symfony config.
# app/config/config.yml
hslavich_simplesamlphp:
# Service provider name
sp: default-sp
You will need to create your own user provider. See the Symfony documentation "How to Create a custom User Provider".
-
First, create a User class (you can also place it in your
Entity/folder)# src/Acme/MyBundle/Security/User/MyUser.php namespace Acme\MyBundle\Security\User; use Symfony\Component\Security\Core\User\UserInterface; use Symfony\Component\Security\Core\User\EquatableInterface; class MyUser implements UserInterface, EquatableInterface { ... } -
Then create the UserProvider class
# src/Acme/MyBundle/Security/User/MyUserProvider.php namespace Acme\MyBundle\Security\User; use Symfony\Component\Security\Core\User\UserProviderInterface; use Symfony\Component\Security\Core\User\UserInterface; use Symfony\Component\Security\Core\Exception\UsernameNotFoundException; use Symfony\Component\Security\Core\Exception\UnsupportedUserException; class MyUserProvider implements UserProviderInterface { public function loadUserByUsername($username) { ... } public function refreshUser(UserInterface $user) { ... } public function supportsClass($class) { ... } } -
And make your
UserProvidera service# src/Acme/MyBundle/Resources/config/services.yml services: my_user_provider: class: Acme\MyBundle\Security\User\MyUserProvider
Then add the provider and firewalls settings to you Symfony security file.
# app/config/security.yml
security:
providers:
simplesaml:
id: my_user_provider
firewalls:
saml:
pattern: ^/
anonymous: true
stateless: true
simple_preauth:
authenticator: simplesamlphp.authenticator
provider: simplesaml
logout:
path: /logout
success_handler: simplesamlphp.logout_handler
Create the following file structure in your app/ folder and place your configuration files in there.
app/
config/
simplesamlphp/
cert/
saml.crt
saml.pem
config/
config.php
authsources.php
metadata/
saml20-idp-remote.php # Example
Make sure to correctly set the paths for cert/ and metadata/ folders in your config.php file (absolute paths recommended). The metadata/saml20-idp-remote.php is just an example. See the SimpleSAMLphp documentation, "Adding IdPs to the SP" for more information.
You may also place those folders anywhere else on your machine, just make sure to correctly set the SIMPLESAMLPHP_CONFIG_DIR environment variable (see below).
Add the environment variable to your webserver configuration file, e.g. /etc/apache2/httpd.conf.local.
<Directory *>
...
SetEnv SIMPLESAMLPHP_CONFIG_DIR /var/path/to/my/config
</Directory>
Enable session bridge storage (see Symfony documentation for more information).
# app/config/config.yml
framework:
session:
storage_id: session.storage.php_bridge
handler_id: ~
Create an alias on your webserver, e.g. for an Apache2 webserver, add this line to you http.conf.local (or other desired configuration file).
Alias /simplesaml /home/myapp/vendor/simplesamlphp/simplesamlphp/www
hslavich/simplesamlphp-bundle 适用场景与选型建议
hslavich/simplesamlphp-bundle 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 199.9k 次下载、GitHub Stars 达 22, 最近一次更新时间为 2014 年 11 月 14 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「saml」 「simplesamlphp」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 hslavich/simplesamlphp-bundle 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 hslavich/simplesamlphp-bundle 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 hslavich/simplesamlphp-bundle 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
A SimpleSAMLphp module for using Redis for session storage etc.
A SimpleSAMLPHP module for authorize working with module Perun
SSP Module of various filters developed by Cirrus Identity
A Laravel package for Saml2 integration as a SP (service provider) for multiple IdPs, based on OneLogin toolkit which is much more lightweight than simplesamlphp.
Zend\Authentication SAML adapter. Uses existing simpleSAMLphp install.
Light SAML 2.0 PHP library
统计信息
- 总下载量: 199.9k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 22
- 点击次数: 6
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: Unknown
- 更新时间: 2014-11-14