-
Notifications
You must be signed in to change notification settings - Fork 215
/
Copy pathAttackProtection.php
96 lines (81 loc) · 3.04 KB
/
AttackProtection.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<?php
declare(strict_types=1);
namespace Auth0\SDK\API\Management;
use Auth0\SDK\Contract\API\Management\AttackProtectionInterface;
use Auth0\SDK\Utility\Request\RequestOptions;
use Auth0\SDK\Utility\Toolkit;
use Psr\Http\Message\ResponseInterface;
/**
* Handles requests to the Attack Protection endpoint of the v2 Management API.
*
* @see https://auth0.com/docs/api/management/v2#!/Attack_Protection
*/
final class AttackProtection extends ManagementEndpoint implements AttackProtectionInterface
{
public function getBreachedPasswordDetection(
?RequestOptions $options = null,
): ResponseInterface {
return $this->getHttpClient()
->method('get')->addPath(['attack-protection', 'breached-password-detection'])
->withOptions($options)
->call();
}
public function getBruteForceProtection(
?RequestOptions $options = null,
): ResponseInterface {
return $this->getHttpClient()
->method('get')->addPath(['attack-protection', 'brute-force-protection'])
->withOptions($options)
->call();
}
public function getSuspiciousIpThrottling(
?RequestOptions $options = null,
): ResponseInterface {
return $this->getHttpClient()
->method('get')->addPath(['attack-protection', 'suspicious-ip-throttling'])
->withOptions($options)
->call();
}
public function updateBreachedPasswordDetection(
array $body,
?RequestOptions $options = null,
): ResponseInterface {
[$body] = Toolkit::filter([$body])->array()->trim();
Toolkit::assert([
[$body, \Auth0\SDK\Exception\ArgumentException::missing('body')],
])->isArray();
return $this->getHttpClient()
->method('patch')->addPath(['attack-protection', 'breached-password-detection'])
->withBody((object) $body)
->withOptions($options)
->call();
}
public function updateBruteForceProtection(
array $body,
?RequestOptions $options = null,
): ResponseInterface {
[$body] = Toolkit::filter([$body])->array()->trim();
Toolkit::assert([
[$body, \Auth0\SDK\Exception\ArgumentException::missing('body')],
])->isArray();
return $this->getHttpClient()
->method('patch')->addPath(['attack-protection', 'brute-force-protection'])
->withBody((object) $body)
->withOptions($options)
->call();
}
public function updateSuspiciousIpThrottling(
array $body,
?RequestOptions $options = null,
): ResponseInterface {
[$body] = Toolkit::filter([$body])->array()->trim();
Toolkit::assert([
[$body, \Auth0\SDK\Exception\ArgumentException::missing('body')],
])->isArray();
return $this->getHttpClient()
->method('patch')->addPath(['attack-protection', 'suspicious-ip-throttling'])
->withBody((object) $body)
->withOptions($options)
->call();
}
}