forked from pantheon-deprecated/terminus-deprecated
-
Notifications
You must be signed in to change notification settings - Fork 0
/
terminus.site.api.inc
347 lines (298 loc) · 8.29 KB
/
terminus.site.api.inc
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
<?php
/**
* @file
* API functions for Site commands
*/
/**
* API Function Get The Site Omnibus "State"
*/
function terminus_api_site_state($site_uuid) {
$realm = 'site';
$uuid = $site_uuid;
$path = 'state';
$method = 'GET';
return terminus_request($realm, $uuid, $path, $method, $data);
}
/**
* API Function to Delete a Site
*/
function terminus_api_site_delete($site_uuid) {
$realm = 'site';
$uuid = $site_uuid;
$path = '';
$method = 'DELETE';
return terminus_request($realm, $uuid, $path, $method);
}
/**
* API Function to get site settings.
*/
function terminus_api_site_get_settings($site_uuid) {
$realm = 'site';
$uuid = $site_uuid;
$path = 'settings';
$method = 'GET';
return terminus_request($realm, $uuid, $path, $method);
}
/**
* API Function to get site service level.
*/
function terminus_api_site_get_service_level($site_uuid) {
$realm = 'site';
$uuid = $site_uuid;
$path = 'service-level';
$method = 'GET';
return terminus_request($realm, $uuid, $path, $method);
}
/**
* API Function to set the site service level.
*
* NOTE: This can cost you money!
*/
function terminus_api_site_put_service_level($site_uuid, $level) {
$realm = 'site';
$uuid = $site_uuid;
$path = 'service-level';
$method = 'PUT';
$data = $level;
$result = terminus_request($realm, $uuid, $path, $method, $data);
}
/**
* API Function to Set All Site Attributes At Once
*/
function terminus_api_site_attributes_set($site_uuid, $attributes) {
$realm = 'site';
$uuid = $site_uuid;
$path = 'attributes';
$method = 'PUT';
$data = $attributes;
return terminus_request($realm, $uuid, $path, $method, $data);
}
/**
* API Function to Set One Site Attribute
*/
function terminus_api_site_attribute_set($site_uuid, $attribute, $value) {
$realm = 'site';
$uuid = $site_uuid;
$path = 'attributes/' . $attribute;
$method = 'PUT';
$data = $value;
return terminus_request($realm, $uuid, $path, $method, $data);
}
/**
* API Function to Get Site Upstream
*/
function terminus_api_site_uptream_get($site_uuid) {
$realm = 'site';
$uuid = $site_uuid;
$path = 'code-upstream';
$method = 'GET';
return terminus_request($realm, $uuid, $path, $method);
}
/**
* API Function to Get Site Attributes
*/
function terminus_api_site_attributes_get($site_uuid) {
$realm = 'site';
$uuid = $site_uuid;
$path = 'attributes';
$method = 'GET';
return terminus_request($realm, $uuid, $path, $method);
}
/**
* API Function to Get One Site Attribute
*/
function terminus_api_site_attribute_get($site_uuid, $attribute) {
$realm = 'site';
$uuid = $site_uuid;
$path = 'attributes/' . $attribute;
$method = 'GET';
return terminus_request($realm, $uuid, $path, $method);
}
/**
* API Function to Delete Site Attributes
*/
function terminus_api_site_attributes_delete($site_uuid) {
$realm = 'site';
$uuid = $site_uuid;
$path = 'attributes';
$method = 'DELETE';
return terminus_request($realm, $uuid, $path, $method);
}
/**
* API Function to Invite a User to Pantheon and add to Site Team
*/
function terminus_api_site_team_member_invite($email, $site_uuid, $invited_by) {
$realm = 'site';
$uuid = $site_uuid;
$path = 'team/' . $email;
$method = 'POST';
$data = json_encode(array('invited_by' => $invited_by));
return terminus_request($realm, $uuid, $path, $method, $data);
}
/**
* API Function to Add a User to a Site Team
*/
function terminus_api_site_team_member_add($site_uuid, $user_uuid) {
$realm = 'site';
$uuid = $site_uuid;
$path = 'team/' . $user_uuid;
$method = 'PUT';
return terminus_request($realm, $uuid, $path, $method);
}
/**
* API Function to Delete a User from a Site Team
*/
function terminus_api_site_team_member_delete($site_uuid, $user_uuid) {
$realm = 'site';
$uuid = $site_uuid;
$path = 'team/' . $user_uuid;
$method = 'DELETE';
return terminus_request($realm, $uuid, $path, $method);
}
/**
* API Function to Get List of Users from a Site Team
*/
function terminus_api_site_team_get($site_uuid) {
$realm = 'site';
$uuid = $site_uuid;
$path = 'team';
$method = 'GET';
return terminus_request($realm, $uuid, $path, $method);
}
/**
* API Function to Check user against the List of Users from a Site Team
*/
function terminus_api_site_team_is_member($site_uuid, $user_uuid) {
$realm = 'site';
$uuid = $site_uuid;
$path = 'team/' . $user_uuid;
$method = 'GET';
return terminus_request($realm, $uuid, $path, $method);
}
/**
* API Function to Get the user_uuid of the Site Owner
*/
function terminus_api_site_owner($site_uuid) {
$realm = 'site';
$uuid = $site_uuid;
$path = 'owner';
$method = 'GET';
return terminus_request($realm, $uuid, $path, $method);
}
/**
* API Function to Take Site Screenshots
*/
function terminus_api_site_screenshots($site_uuid) {
$realm = 'site';
$uuid = $site_uuid;
$path = 'generate-screenshots';
$method = 'POST';
return terminus_request($realm, $uuid, $path, $method);
}
/**
* API Function Get Events
*/
function terminus_api_site_events($site_uuid, $env, $limit = 100) {
$realm = 'site';
$uuid = $site_uuid;
$path = 'environments/' . $env . '/events/?limit=' . $limit;
$method = 'GET';
return terminus_request($realm, $uuid, $path, $method);
}
/**
* API Function to get bindings for a site
*/
function terminus_api_site_environment_bindings($site_uuid, $environment, $type = NULL) {
$realm = 'site';
$uuid = $site_uuid;
$path = 'environments/'. $environment .'/bindings';
if ($type) {
$path .= '?type='. urlencode($type);
}
$method = 'GET';
return terminus_request($realm, $uuid, $path, $method);
}
/**
* API Function to Clear Caches
*/
function terminus_api_site_clearcache($site_uuid, $env) {
$realm = 'site';
$uuid = $site_uuid;
$path = 'environments/' . $env. '/clear-cache';
$method = 'POST';
$data = '';
return terminus_request($realm, $uuid, $path, $method, $data);
}
/**
* API Function to Get On Server Development Status
*/
function terminus_api_site_environment_onserverdev_get($site_uuid, $env) {
$realm = 'site';
$uuid = $site_uuid;
$path = 'environments/' . $env . '/on-server-development';
$method = 'GET';
return terminus_request($realm, $uuid, $path, $method);
}
/**
* API Function to Set Server Development Status
*/
function terminus_api_site_environment_onserverdev_set($site_uuid, $env, $onserverdevstatus) {
$realm = 'site';
$uuid = $site_uuid;
$path = 'environments/' . $env . '/on-server-development';
$method = 'PUT';
$data = array('enabled' => $onserverdevstatus);
return terminus_request($realm, $uuid, $path, $method, $data);
}
/**
* API Function to Do a Git Commit
*/
function terminus_api_site_environment_onserverdev_commit($site_uuid, $env, $message, $user_uuid) {
$realm = 'site';
$uuid = $site_uuid;
$path = 'environments/' . $env . '/on-server-development/commit';
$method = 'POST';
$data = ($message) ? array('message' => $message, 'user' => $user_uuid) : NULL;
return terminus_request($realm, $uuid, $path, $method, $data);
}
/**
* API Function to Get a Git Diff of a path
*/
function terminus_api_site_environment_onserverdev_diff_get($site_uuid, $env, $file_path = "") {
$realm = 'site';
$uuid = $site_uuid;
$path = 'environments/' . $env . '/on-server-development/diff?path=' . rawurlencode($file_path);
$method = 'GET';
return terminus_request($realm, $uuid, $path, $method);
}
/**
* API Function to Get a Git Diff --numstat
*/
function terminus_api_site_environment_onserverdev_diff_stats_get($site_uuid, $env) {
$realm = 'site';
$uuid = $site_uuid;
$path = 'environments/' . $env . '/on-server-development/diffstat';
$method = 'GET';
return terminus_request($realm, $uuid, $path, $method);
}
/**
* API Function to Lock an Environment
*/
function terminus_api_site_environment_lock($site_uuid, $env, $username, $password) {
$realm = 'site';
$uuid = $site_uuid;
$path = 'environments/' . $env . '/lock';
$method = 'PUT';
$data = array('username' => $username, 'password' => $password);
return terminus_request($realm, $uuid, $path, $method, $data);
}
/**
* API Function to Delete a Lock on an Environment
*/
function terminus_api_site_environment_lock_delete($site_uuid, $env) {
$realm = 'site';
$uuid = $site_uuid;
$path = 'environments/' . $env . '/lock';
$method = 'DELETE';
return terminus_request($realm, $uuid, $path, $method);
}