-
Notifications
You must be signed in to change notification settings - Fork 785
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
[13.x] Improve issuing PATs #1780
Conversation
@hafezdivandari Hey. This PR essentially removed the ability of passing in a custom Was this removal really necessary? It was even suggested before that |
@autaut03 the ability is not removed, it's actually much simpler to use now. If you have multiple personal access clients for different user providers, Passport now automatically choose the right client (based on user provider) when creating a PAT. You may refer to the tests here for some sample usage: https://github.com/laravel/passport/blob/13.x/tests/Feature/PersonalAccessGrantTest.php |
@hafezdivandari The provider is the same. Only the clients differ - to be able to separate system-generated and user-created tokens when displaying them to the user. E.g. a user creates a token ( By separating the clients, we can still display only the user-created tokens to the user, and exclude ones created internally by the system. The user provider in both cases is the same and completely irrelevant. |
@autaut03 It's really strange (non-standard IMHO) use case, because normally there shouldn't be any "system-generated PATs", but if you want to do this for whatever reason, you are able to customize the namespace App\Repositories;
class ClientRepository extends \Laravel\Passport\ClientRepository
{
#[\Override]
public function personalAccessClient(string $provider): Client
{
// return your client...
}
}
// Then in you app service provider....
$this->app->when(\Laravel\Passport\Bridge\PersonalAccessGrant::class)
->needs(\Laravel\Passport\ClientRepository::class)
->give(fn () => new \App\Repositories\ClientRepository); |
This PR improves issuing personal access tokens:
passport.personal_access_client
config property and environment variables for each user provider.passport:client --personal
for each user provider.passport.personal_access_token
config property for each user provider.$user->createToken()
.client_id
,client_secret
anduser_id
to the grant.passport:client --personal
for each user provider.$user->createToken()
.provider
anduser_id
to the grant.