forked from laravel/passport
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathClientFactory.php
76 lines (69 loc) · 1.66 KB
/
ClientFactory.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<?php
namespace Laravel\Passport\Database\Factories;
use Illuminate\Database\Eloquent\Factories\Factory;
use Illuminate\Support\Str;
use Laravel\Passport\Passport;
/**
* @extends \Illuminate\Database\Eloquent\Factories\Factory<\Laravel\Passport\Client>
*/
class ClientFactory extends Factory
{
/**
* Get the name of the model that is generated by the factory.
*
* @return class-string<\Illuminate\Database\Eloquent\Model>
*/
public function modelName()
{
return $this->model ?? Passport::clientModel();
}
/**
* Define the model's default state.
*
* @return array
*/
public function definition()
{
return [
'user_id' => null,
'name' => $this->faker->company(),
'secret' => Str::random(40),
'redirect_uris' => [$this->faker->url()],
'grant_types' => ['authorization_code', 'refresh_token'],
'revoked' => false,
];
}
/**
* Use as a Password client.
*
* @return $this
*/
public function asPasswordClient()
{
return $this->state([
'grant_types' => ['password', 'refresh_token'],
]);
}
/**
* Use as a Personal Access Token client.
*
* @return $this
*/
public function asPersonalAccessTokenClient()
{
return $this->state([
'grant_types' => ['personal_access'],
]);
}
/**
* Use as a Client Credentials client.
*
* @return $this
*/
public function asClientCredentials()
{
return $this->state([
'grant_types' => ['client_credentials'],
]);
}
}