dam1r89/passwordless-auth
Composer 安装命令:
composer require dam1r89/passwordless-auth
包简介
Authenticate users without password, only with email
README 文档
README
Features
- Routes are predefined (default is
/passwordless/login) - Sign-in and/or sign-up mode
- Sends sign-in email
- Send mail throttling
To get started, install package with composer:
composer require dam1r89/passwordless-auth
Register the dam1r89\PasswordlessAuth\PasswordlessAuthServiceProvider provider in config/app.php configuration file.
dam1r89\PasswordlessAuth\PasswordlessAuthServiceProvider::class,
Publish configuration.
php artisan vendor:publish --tag=passwordless
Configuration file:
/*
* Route prefix for sign-in/sign-up form.
*/
'route_prefix' => 'passwordless',
/*
* This is a model to which LoginToken is saving reference to.
* Almost always this will be User class.
*/
'provider' => \App\User::class,
/*
* Number of seconds user must wait before receiving new sign-up link.
*/
'throttle' => 60 * 10,
/*
* Should user be automatically signed-up if email is not already used
*/
'sign_up' => true,
/*
* Default redirect to
* Redirect url after user is signed in and intended url is not set
*/
'redirect_to' => 'home',
/*
* If user should be "remembered" after sign-in.
*/
'remember' => true,
User must implement dam1r89\PasswordlessAuth\Contracts\UsersProvider contract or if user is instance of eloquent model just use UsersRepository trait.
use dam1r89\PasswordlessAuth\UsersRepository;
use dam1r89\PasswordlessAuth\Contracts\UsersProvider;
class User extends SparkUser implements UsersProvider
{
use UsersRepository;
... and run migration
php artisan migrate
Using passwordless as a default sign-in method
For Laravel < 5.5
In /app/Exceptions/Handler.php change return redirect()->guest(route('login')); to:
return redirect()->guest(route('passwordless.login'));
For Larvel 5.5+
Since Laravel 5.5 the unauthenticated() function in /app/Exceptions/Handler.php has moved to vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php.
You can still use this method but you have to override it. In your app/Exceptions/Handler.php file include:
use Request; use Illuminate\Auth\AuthenticationException; use Response;
and add the unauthenticated function:
/** * Convert an authentication exception into an unauthenticated response. * * @param \Illuminate\Http\Request $request * @param \Illuminate\Auth\AuthenticationException $exception * @return \Illuminate\Http\Response */ protected function unauthenticated($request, AuthenticationException $exception) { if ($request->expectsJson()) { return response()->json(['error' => 'Unauthenticated.'], 401); } return redirect()->guest(route('passwordless.login')); }
Visual
Publish views and email template.
php artisan vendor:publish --tag=passwordless-views
Views are located under resources/views/vendor/passwordless folder.
To replace current login link with passwordless use this route name:
<a href="{{ route('passwordless') }}">Login</a>
Passwordless Links
Sometimes you want to send a link via email that will automatically sign-in user. You can do that with PasswordlessLink class. Exemple for notifications.
use dam1r89\PasswordlessAuth\PasswordlessLink;
$link = PasswordlessLink::for($notifiable)->url('/route/to/resource');
Note: It is dangerous to forward emails with unused sign-in links because link gives direct access to account.
Similar package
dam1r89/passwordless-auth 适用场景与选型建议
dam1r89/passwordless-auth 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 1.07k 次下载、GitHub Stars 达 8, 最近一次更新时间为 2017 年 06 月 22 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 dam1r89/passwordless-auth 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 dam1r89/passwordless-auth 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 1.07k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 8
- 点击次数: 27
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: Unknown
- 更新时间: 2017-06-22