-
Notifications
You must be signed in to change notification settings - Fork 927
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add a Laravel Passport Provider #157
Merged
Merged
Changes from 5 commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
11432f0
Add a laravel passport provider
jmschneider d7b7479
Ignore axios base url for authorization code
jmschneider 83215fd
Add documentation for passport provider
jmschneider 8d68f8e
Fix title
jmschneider c8881b4
Add passport link
jmschneider 34303fb
Change provider name to laravel.passport
jmschneider File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Laravel Passport | ||
|
||
[Source Code](https://github.com/nuxt-community/auth-module/blob/dev/lib/providers/passport.js) | ||
|
||
## Usage | ||
|
||
```js | ||
auth: { | ||
strategies: { | ||
passport: { | ||
url: '...', | ||
client_id: '...', | ||
client_secret: '...' | ||
}, | ||
} | ||
} | ||
``` | ||
|
||
## Usage | ||
|
||
Anywhere in your application logic: | ||
|
||
```js | ||
this.$auth.loginWith('passport') | ||
``` | ||
|
||
💁 This provider is based on [oauth2 scheme](../schemes/oauth2.md) and supports all scheme options. | ||
|
||
### Obtaining `url`, `client_id` and `client_secret` | ||
|
||
These options are **REQUIRED**. The `url` is the location of your Laravel application. To obtain the `client_id` and `client_secret`, create a new client app in your [Laravel app](https://laravel.com/docs/5.6/passport#managing-clients). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
const axios = require('axios') | ||
const bodyParser = require('body-parser') | ||
const { assignDefaults } = require('./_utils') | ||
|
||
module.exports = function passport (strategy) { | ||
assignDefaults(strategy, { | ||
_scheme: 'oauth2', | ||
_name: 'passport', | ||
authorization_endpoint: `${strategy.url}/oauth/authorize`, | ||
token_endpoint: `${strategy.url}/oauth/token`, | ||
token_key: 'access_token', | ||
token_type: 'Bearer', | ||
response_type: 'code', | ||
grant_type: 'authorization_code', | ||
scope: '*' | ||
}) | ||
|
||
// Get client_secret, client_id and token_endpoint | ||
const clientSecret = strategy.client_secret | ||
const clientID = strategy.client_id | ||
const tokenEndpoint = strategy.token_endpoint | ||
|
||
// IMPORTANT: remove client_secret from generated bundle | ||
delete strategy.client_secret | ||
|
||
// Endpoint | ||
const endpoint = `/_auth/oauth/${strategy._name}/authorize` | ||
strategy.access_token_endpoint = endpoint | ||
|
||
// Set response_type to code | ||
strategy.response_type = 'code' | ||
|
||
// Form parser | ||
const formMiddleware = bodyParser.urlencoded() | ||
|
||
// Register endpoint | ||
this.options.serverMiddleware.unshift({ | ||
path: endpoint, | ||
handler: (req, res, next) => { | ||
if (req.method !== 'POST') { | ||
return next() | ||
} | ||
|
||
formMiddleware(req, res, () => { | ||
const { | ||
code, | ||
redirect_uri: redirectUri = strategy.redirect_uri, | ||
response_type: responseType = strategy.response_type, | ||
grant_type: grantType = strategy.grant_type | ||
} = req.body | ||
|
||
if (!code) { | ||
return next() | ||
} | ||
|
||
axios | ||
.request({ | ||
method: 'post', | ||
url: tokenEndpoint, | ||
data: { | ||
client_id: clientID, | ||
client_secret: clientSecret, | ||
grant_type: grantType, | ||
response_type: responseType, | ||
redirect_uri: redirectUri, | ||
code | ||
}, | ||
headers: { | ||
Accept: 'application/json' | ||
} | ||
}) | ||
.then(response => { | ||
res.end(JSON.stringify(response.data)) | ||
}) | ||
.catch(error => next(error)) | ||
}) | ||
} | ||
}) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This may introduce breaking changes! Why we need to disable axios baseURL?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So currently, if you add a
baseURL
to the main axios module config it will prepend it to all request to relative paths. If you provide a full URL, this is ignored.For hitting external sites like Google or Facebook, the
baseURL
is ignored because they would use a full URL. However, with theaddAuthorize
method, we add aserverMiddleware
that will append the client secret and proxy the authentication request. If there is abaseURL
set in the axios module config, this request will go to that URL instead of the nuxt.js server. SettingbaseURL: false
just tells axios to ignore the defaultbaseURL
and send it relative to the current page.Basically, if we are serving our site from
example.com
and axios hasbaseURL: 'api.example.com'
set, the auth request would go to something likeapi.example.com/_auth/oauth/passport/authorize
which may or may not exist. If we set the baseURL to false, the auth request would go toexample.com/_auth/oauth/passport/authorize
where the Nuxt server would handle it with theserverMiddleware
.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for detailed explanation. Seems reasonable.