-
Notifications
You must be signed in to change notification settings - Fork 24
/
terminus.organizations.api.inc
106 lines (92 loc) · 2.67 KB
/
terminus.organizations.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
<?php
/**
* @file
* API functions for Organizations in Userspace.
*/
/**
* API call to get a user's organizations.
*/
function terminus_api_user_organizations($user_uuid) {
$realm = 'user';
$uuid = $user_uuid;
$path = 'organizations';
$method = 'GET';
return terminus_request($realm, $uuid, $path, $method);
}
/**
* API call to get sites within an organization.
*
* Available only to organization admins.
*/
function terminus_api_user_organization_sites($user_uuid, $organization_uuid) {
$realm = 'user';
$uuid = $user_uuid;
$path = 'organizations/'. $organization_uuid .'/sites';
$method = 'GET';
return terminus_request($realm, $uuid, $path, $method);
}
/**
* API call to add a site into an organization.
*
* Available only to organization admins.
*/
function terminus_api_user_organization_site_add($user_uuid, $organization_uuid, $site_uuid) {
$realm = 'user';
$uuid = $user_uuid;
$path = 'organizations/' . $organization_uuid . '/sites/' . $site_uuid;
$method = 'PUT';
return terminus_request($realm, $uuid, $path, $method);
}
/**
* API call to remove a site from an organization.
*
* Available only to organization admins.
*/
function terminus_api_user_organization_site_remove($user_uuid, $organization_uuid, $site_uuid) {
$realm = 'user';
$uuid = $user_uuid;
$path = 'organizations/'. $organization_uuid .'/sites/'. $site_uuid;
$method = 'DELETE';
return terminus_request($realm, $uuid, $path, $method);
}
/**
* API call to get users within an organization.
*
* Available only to organization admins.
*/
function terminus_api_user_organization_users($user_uuid, $organization_uuid) {
$realm = 'user';
$uuid = $user_uuid;
$path = 'organizations/'. $organization_uuid .'/users';
$method = 'GET';
return terminus_request($realm, $uuid, $path, $method);
}
/**
* API call to add a user to an organization.
*
* Available only to organization admins.
*
* @todo: promote/demote
*/
function terminus_api_user_organization_user_add($user_uuid, $organization_uuid, $user_to_add, $admin = FALSE) {
$realm = 'user';
$uuid = $user_uuid;
$path = 'organizations/'. $organization_uuid .'/users/'. $user_to_add;
if ($admin) {
$path .= '?admin=1';
}
$method = 'PUT';
return terminus_request($realm, $uuid, $path, $method);
}
/**
* API call to remove a user from an organization.
*
* Available only to organization admins.
*/
function terminus_api_user_organization_user_remove($user_uuid, $organization_uuid, $user_to_delete) {
$realm = 'user';
$uuid = $user_uuid;
$path = 'organizations/'. $organization_uuid .'/users/'. $user_to_delete;
$method = 'DELETE';
return terminus_request($realm, $uuid, $path, $method);
}