rootwork/phalcon-extras
Composer 安装命令:
composer require rootwork/phalcon-extras
包简介
Phalcon Extras
README 文档
README
A growing collection of useful Phalcon classes
Installation
composer require rootwork/phalcon-extras:dev-master
Authorization Component
Uses Phalcon\Acl, see acl.example.php.
<?php
cp acl.example.php app/config/acl.php
The AuthComponent uses events for your custom logic after allowing or denying a session role.
<?php /** * Setup the auth component */ $di->setShared('auth', function () { /** @var \Phalcon\Config $aclConfig */ $aclConfig = include APP_PATH . '/config/acl.php'; $auth = new AuthComponent($aclConfig->toArray()); $eventsManager = new EventsManager(); $eventsManager->attach('auth:afterAllowed', function (Event $event, AuthComponent $auth) { if ($auth->persistent->role == 'Guest') { return true; // If the ACL allows a Guest at this route, no additional steps } // Load authorized user from the DB if ($user = User::findFirstById($auth->persistent->userId)) { $auth->di->setShared('user', $user); return true; } return false; }); $eventsManager->attach('auth:afterDenied', function (Event $event, AuthComponent $auth) { // Redirect unathorized users $auth->response->redirect('/login'); $auth->response->send(); return false; }); $auth->setEventsManager($eventsManager); return $auth; }); /** * Register a dispatcher */ $di->setShared('dispatcher', function () use ($config, $di) { $eventsManager = new EventsManager(); $eventsManager->attach('dispatch:beforeExecuteRoute', $di->get('auth')); $dispatcher = new Dispatcher(); $dispatcher->setDefaultNamespace('App\Controller'); $dispatcher->setEventsManager($eventsManager); return $dispatcher; }); /** * Make the current user available to the app */ $di->setShared('user', function () { return null; });
Create an authorized session
In your login code, you must set the user role. You can optionally persist other auth data.
<?php // In a login action... $auth = $this->getDI()->get('auth'); $auth->setRole($user->role); // Optional persisted auth data $auth->persistent->userId = $user->id; $auth->persistent->name = $user->name;
TODO
- Document usage with Micro app
统计信息
- 总下载量: 8.34k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: BSD-3-Clause
- 更新时间: 2016-06-20