-
Notifications
You must be signed in to change notification settings - Fork 24
/
terminus.code.api.inc
77 lines (65 loc) · 1.65 KB
/
terminus.code.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
<?php
/**
* API Call to Get Code Commit Information
*/
function terminus_api_code_log($site_uuid) {
$realm = 'site';
$path = 'code-log';
$method = 'GET';
return terminus_request($realm, $site_uuid, $path, $method);
}
/**
* API Call to Get Core Status
*/
function terminus_api_code_upstream_info($site_uuid) {
$realm = 'site';
$path = 'code-upstream-updates';
$method = 'GET';
return terminus_request($realm, $site_uuid, $path, $method);
}
/**
* API Call to get branches.
*/
function terminus_api_code_tips($site_uuid) {
$realm = 'site';
$path = 'code-tips';
$method = 'GET';
return terminus_request($realm, $site_uuid, $path, $method);
}
/**
* API Call to create branch.
*/
function terminus_api_code_branch_create($site_uuid, $branch_name) {
$realm = 'site';
$path = 'code-branch';
$method = 'POST';
$data = array(
'refspec' => 'refs/heads/' . $branch_name,
);
return terminus_request($realm, $site_uuid, $path, $method, $data);
}
/**
* API Call to delete branch.
*/
function terminus_api_code_branch_delete($site_uuid, $branch_name) {
$realm = 'site';
$path = 'code-branch';
$method = 'DELETE';
$data = array(
'refspec' => 'refs/heads/' . $branch_name,
);
return terminus_request($realm, $site_uuid, $path, $method, $data);
}
/**
* API Call to Update Core Status
*/
function terminus_api_code_upstream_update($site_uuid, $updatedb = FALSE, $overwrite = FALSE) {
$realm = 'site';
$path = 'code-upstream-updates';
$method = 'POST';
$data = array(
'updatedb' => $updatedb,
'xoption' => $overwrite ? 'theirs' : '',
);
return terminus_request($realm, $site_uuid, $path, $method, $data);
}