Download the PHP package thesalmankhimani/lumen-passport-mongodb without Composer
On this page you can find all versions of the php package thesalmankhimani/lumen-passport-mongodb. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download thesalmankhimani/lumen-passport-mongodb
More information about thesalmankhimani/lumen-passport-mongodb
Files in thesalmankhimani/lumen-passport-mongodb
Package lumen-passport-mongodb
Short Description Making Laravel Passport work with Lumen and MongoDB
License MIT
Homepage https://github.com/thesalmankhimani/lumen-passport-mongodb
Informations about the package lumen-passport-mongodb
lumen-passport-mongodb
Making Laravel Passport work with Lumen and MongoDB
This repository was forked from dusterio/lumen-passport and added thesalmankhimani/laravel-passport-mongodb package to make Laravel Passport work with Lumen and MongoDB.
Dependencies
- PHP >= 5.6.3
- Lumen >= 5.3
- jenssegers/mongodb >=3.2
- theslamankhimani/laravel-passport-mongodb >= 0.1.0
Installation via Composer
First install Lumen if you don't have it yet:
Then install Lumen Passport (it will fetch Laravel Passport along):
Or if you prefer, edit composer.json
manually:
Modify the bootstrap flow ( file)
We need to enable both Laravel Passport provider and Lumen-specific provider:
Migrate and install Laravel Passport
Installed routes
Adding this service provider, will mount the following routes.
Verb | Path | NamedRoute | Controller | Action | Middleware |
---|---|---|---|---|---|
POST | /token | AccessTokenController | issueToken | - | |
GET | /tokens | AuthorizedAccessTokenController | forUser | auth | |
DELETE | /tokens/{token_id} | AuthorizedAccessTokenController | destroy | auth | |
POST | /token/refresh | TransientTokenController | refresh | auth | |
GET | /clients | ClientController | forUser | auth | |
POST | /clients | ClientController | store | auth | |
PUT | /clients/{client_id} | ClientController | update | auth | |
DELETE | /clients/{client_id} | ClientController | destroy | auth | |
GET | /scopes | ScopeController | all | auth | |
GET | /personal-access-tokens | PersonalAccessTokenController | forUser | auth | |
POST | /personal-access-tokens | PersonalAccessTokenController | store | auth | |
DELETE | /personal-access-tokens/{token_id} | PersonalAccessTokenController | destroy | auth |
Please note that some of the Laravel Passport's routes had to 'go away' because they are web-related and rely on sessions (eg. authorise pages). Lumen is an API framework so only API-related routes are present.
Configuration
Edit config/api.php to add prefix to all API endpoints. (Eg: /api/oauth/token
)
Edit config/auth.php to suit your needs. A simple example:
User model
Make sure your user model uses Passport's trait, eg.:
Extra features
There are a couple of extra features that aren't present in Laravel Passport
Allowing multiple tokens per client
Sometimes it's handy to allow multiple access tokens per password grant client. Eg. user logs in from several browsers simultaneously. Currently Laravel Passport does not allow that.
Different TTLs for different password clients
Laravel Passport allows to set one global TTL for access tokens, but it may be useful sometimes to set different TTLs for different clients (eg. mobile users get more time than desktop users).
Simply do the following in your service provider:
If you don't specify client Id, it will simply fall back to Laravel Passport implementation.
Console command for purging expired tokens
Simply run to remove expired refresh tokens and their corresponding access tokens from the database.
Running with Apache httpd
If you are using Apache web server, it may strip Authorization headers and thus break Passport.
Add the following either to your config directly or to :
License
The MIT License (MIT) Copyright (c) 2016 Denis Mysenko
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
All versions of lumen-passport-mongodb with dependencies
illuminate/database Version ~5.3|~5.4
illuminate/support Version ~5.3|~5.4
thesalmankhimani/laravel-passport-mongodb Version ^0.1.0