webiik/login
Composer 安装命令:
composer require webiik/login
包简介
The Login manages the user login state.
README 文档
README
Login
The Login manages the user login state. It supports:
- permanent login
- automatic logout
- login namespaces
Note: This class is meant to be used after the successful user authentication and authorization.
Installation
composer require webiik/login
Example
$login = new \Webiik\Login\Login($token, $cookie, $session); // Log-in the user with id 1 $login->login(1); // Check if the user is logged in if ($login->isLogged()) { echo 'The user id ' . $login->getUserId() . ' is logged.'; } else { echo 'The user is not logged.'; } // Log the user out $login->logout();
Summary
Basic Login
setSessionKey
setSessionKey(string $sessionKey): void
setSessionKey() sets the key of login state stored in PHP session. This key holds the uid value. The default value of the key is logged.
$login->setSessionName('logged');
setNamespace
setNamespace(string $name): void
setNamespace() sets login namespace. If you want to make the login valid only for the specific part of your app, use the login namespace. Imagine you have a multilingual app and you want to make a separate account for every language - this is the situation when the login namespace can help.
$login->setNamespace('en');
login
login($uid, bool $permanent = false): void
login() logs the user in. Login() writes login state to PHP session. If permanent login is not set, login is valid until the user closes the browser or the PHP session expires.
Parameters
- uid user unique identifier to be stored in PHP session
- permanent indicates if to use permanent login. Read more in permanent login section.
// Log in the user with id 1 $login->login(1);
// Permanently log in the user with id 1 $login->login(1, true);
Permanent Login
setPermanentCookieName
setPermanentCookieName(string $name): void
setPermanentCookieName() sets the name of cookie where the permanent login information is stored at the users' computer. The default value is PC.
$login->setPermanentCookieName('PC');
setPermanentLoginStorage
Note: To start using the permanent login, it's required to set permanent login storage.
setPermanentLoginStorage(callable $factory, int $days = 30): void
setPermanentLoginStorage() sets the factory of permanent login storage and the time validity of permanent login data.
Parameters
- factory factory creates object implementing StorageInterface
- days how many days to keep permanent cookie and data in storage when user is not active
Permanent login saves the permanent login data to the user's computer (cookie) and to the server. Storage is here to solve the server part and to make storing data flexible. Out of the box, the Login class comes with the FileStorage, it saves login information to the disk at the server. However, you can write your own storage.
Example of using the file storage:
$login->setPermanentLoginStorage(function () { $fs = new \Webiik\Login\Storage\FileStorage(); $fs->setPath(__DIR__ . '/tmp/permanent'); return $fs; });
Write Custom Storage
You can write your custom storage. Only thing you have to do is to implement StorageInterface.
Login Check
isLogged
isLogged(): bool
isLogged() checks if user is logged in.
if ($login->isLogged()) { echo 'The user id ' . $login->getUserId() . ' is logged.'; } else { echo 'The user is not logged.'; }
Logout
logout
logout(): void
logout() logs the user out.
$login->logout();
setAutoLogoutTime
setAutoLogoutTime(int $sec): void
setAutoLogoutTime() sets the time in seconds to auto logout the user on inactivity between two requests. The default value is 0 - no automatic logout. Automatic logout is ignored when user is logged permanently.
// Set the automatic logout after 5 minutes of inactivity between two requests $login->setAutoLogoutTime(5 * 60);
Warning: Update the time of last user activity with every http request to make auto logout feature working properly.
updateAutoLogoutTs
updateAutoLogoutTs(): void
updateAutoLogoutTs() updates time of last users' activity stored in the session.
// Never call this before isLogged, it would lead // to the situation, that the user was never logged out $login->updateAutoLogoutTs();
getLogoutReason
getLogoutReason(): void
getLogoutReason() returns logout reason.
if ($login->getLogoutReason() == $login::MANUAL) { // manual logout } elseif ($login->getLogoutReason() == $login::AUTO) { // auto logout due inactivity }
Resources
webiik/login 适用场景与选型建议
webiik/login 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 26 次下载、GitHub Stars 达 1, 最近一次更新时间为 2019 年 03 月 04 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「Authentication」 「login」 「auth」 「authorisation」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 webiik/login 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 webiik/login 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 webiik/login 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
WeChat OAuth SDK
Laravel Multiauth package
Automatically logs-in users if they are already authenticated by a remote source. (e.g. environment variable REMOTE_USER)
GraphQL authentication for your headless Craft CMS applications.
Debugging a problem and need to login as one of your customers? This allows you to authenticate as any of your customers.
A lightweight and powerful OAuth 2.0 authorization and resource server library with support for all the core specification grants. This library will allow you to secure your API with OAuth and allow your applications users to approve apps that want to access their data from your API.
统计信息
- 总下载量: 26
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 2
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2019-03-04