1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace Incapsula\Api; |
4
|
|
|
|
5
|
|
|
class SitesApi extends AbstractApi |
6
|
|
|
{ |
7
|
|
|
private $apiUri = 'https://my.incapsula.com/api/prov/v1/sites'; |
8
|
|
|
|
9
|
|
|
/** |
10
|
|
|
* @param int $pageSize |
11
|
|
|
* @param int $pageNum |
12
|
|
|
* |
13
|
|
|
* @return array |
14
|
|
|
*/ |
15
|
|
|
public function list($pageSize = 50, $pageNum = 0) |
16
|
|
|
{ |
17
|
|
|
return $this->client->send(sprintf('%s/list', $this->apiUri), [ |
18
|
|
|
'page_size' => $pageSize, |
19
|
|
|
'page_num' => $pageNum, |
20
|
|
|
]); |
21
|
|
|
} |
22
|
|
|
|
23
|
|
|
/** |
24
|
|
|
* @param array $params |
25
|
|
|
* |
26
|
|
|
* @return array |
27
|
|
|
*/ |
28
|
|
|
public function add($params = []) |
29
|
|
|
{ |
30
|
|
|
return $this->client->send(sprintf('%s/add', $this->apiUri), $params); |
31
|
|
|
} |
32
|
|
|
|
33
|
|
|
/** |
34
|
|
|
* @param string $siteId |
35
|
|
|
* |
36
|
|
|
* @return array |
37
|
|
|
*/ |
38
|
|
|
public function delete($siteId) |
39
|
|
|
{ |
40
|
|
|
return $this->client->send(sprintf('%s/delete', $this->apiUri), [ |
41
|
|
|
'site_id' => $siteId, |
42
|
|
|
]); |
43
|
|
|
} |
44
|
|
|
|
45
|
|
|
/** |
46
|
|
|
* @param string $siteId |
47
|
|
|
* @param string $certificate |
48
|
|
|
* @param string $privateKey |
49
|
|
|
* |
50
|
|
|
* @return array |
51
|
|
|
*/ |
52
|
|
|
public function uploadCustomCertificate($siteId, $certificate, $privateKey) |
53
|
|
|
{ |
54
|
|
|
return $this->client->send(sprintf('%s/uploadCustomCertificate', $this->apiUri), [ |
55
|
|
|
'site_id' => $siteId, |
56
|
|
|
'certificate' => base64_encode($certificate), |
57
|
|
|
'private_key' => base64_encode($privateKey), |
58
|
|
|
]); |
59
|
|
|
} |
60
|
|
|
|
61
|
|
|
/** |
62
|
|
|
* @param string $siteId |
63
|
|
|
* |
64
|
|
|
* @return array |
65
|
|
|
*/ |
66
|
|
|
public function removeCustomCertificate($siteId) |
67
|
|
|
{ |
68
|
|
|
return $this->client->send(sprintf('%s/removeCustomCertificate', $this->apiUri), [ |
69
|
|
|
'site_id' => $siteId, |
70
|
|
|
]); |
71
|
|
|
} |
72
|
|
|
/** |
73
|
|
|
* @param string $siteId site to purge |
74
|
|
|
* @param string $purgePattern is optional but to purge specific resources the format is as follows |
75
|
|
|
* purge all urls that contain text requires no additional formatting, e.g. image.jpg, |
76
|
|
|
* or to purge URLs starting with a pattern use '^' e.g. "^maps/" , |
77
|
|
|
* or to purge all URLs that end with a pattern use '$' e.g. ".jpg$" |
78
|
|
|
* See incapsula docs for details |
79
|
|
|
* https://docs.incapsula.com/Content/API/sites-api.htm#Purge |
80
|
|
|
* @return array |
81
|
|
|
*/ |
82
|
|
|
public function purgeCache($siteId, $purgePattern = "") |
83
|
|
|
{ |
84
|
|
|
return $this->client->send(sprintf('%s/cache/purge', $this->apiUri), [ |
85
|
|
|
'site_id' => $siteId, |
86
|
|
|
'purge_pattern' => $purgePattern |
87
|
|
|
]); |
88
|
|
|
} |
89
|
|
|
} |
90
|
|
|
|