Rackspace.php
6.02 KB
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
<?php
/**
* PHP OpenCloud library.
*
* @copyright 2014 Rackspace Hosting, Inc. See LICENSE for information.
* @license https://www.apache.org/licenses/LICENSE-2.0
* @author Glen Campbell <glen.campbell@rackspace.com>
* @author Jamie Hannaford <jamie.hannaford@rackspace.com>
*/
namespace OpenCloud;
use OpenCloud\Common\Exceptions\CredentialError;
use OpenCloud\Common\Service\ServiceBuilder;
use OpenCloud\Identity\Service as IdentityService;
/**
* Rackspace extends the OpenStack class with support for Rackspace's
* API key and tenant requirements.
*
* The only difference between Rackspace and OpenStack is that the
* Rackspace class generates credentials using the username
* and API key, as required by the Rackspace authentication
* service.
*
* Example:
* <pre><code>
* $client = new Rackspace(
* 'https://identity.api.rackspacecloud.com/v2.0/',
* array(
* 'username' => 'FRED',
* 'apiKey' => '0900af093093788912388fc09dde090ffee09'
* )
* );
* </code></pre>
*/
class Rackspace extends OpenStack
{
const US_IDENTITY_ENDPOINT = 'https://identity.api.rackspacecloud.com/v2.0/';
const UK_IDENTITY_ENDPOINT = 'https://lon.identity.api.rackspacecloud.com/v2.0/';
/**
* Generates Rackspace API key credentials
* {@inheritDoc}
*/
public function getCredentials()
{
$secret = $this->getSecret();
if (!empty($secret['username']) && !empty($secret['apiKey'])) {
$credentials = array('auth' => array(
'RAX-KSKEY:apiKeyCredentials' => array(
'username' => $secret['username'],
'apiKey' => $secret['apiKey']
)
));
if (!empty($secret['tenantName'])) {
$credentials['auth']['tenantName'] = $secret['tenantName'];
} elseif (!empty($secret['tenantId'])) {
$credentials['auth']['tenantId'] = $secret['tenantId'];
}
return json_encode($credentials);
} else {
throw new CredentialError('Unrecognized credential secret');
}
}
/**
* Creates a new Database service. Note: this is a Rackspace-only feature.
*
* @param string $name The name of the service as it appears in the Catalog
* @param string $region The region (DFW, IAD, ORD, LON, SYD)
* @param string $urltype The URL type ("publicURL" or "internalURL")
* @return \OpenCloud\Database\Service
*/
public function databaseService($name = null, $region = null, $urltype = null)
{
return ServiceBuilder::factory($this, 'OpenCloud\Database\Service', array(
'name' => $name,
'region' => $region,
'urlType' => $urltype
));
}
/**
* Creates a new Load Balancer service. Note: this is a Rackspace-only feature.
*
* @param string $name The name of the service as it appears in the Catalog
* @param string $region The region (DFW, IAD, ORD, LON, SYD)
* @param string $urltype The URL type ("publicURL" or "internalURL")
* @return \OpenCloud\LoadBalancer\Service
*/
public function loadBalancerService($name = null, $region = null, $urltype = null)
{
return ServiceBuilder::factory($this, 'OpenCloud\LoadBalancer\Service', array(
'name' => $name,
'region' => $region,
'urlType' => $urltype
));
}
/**
* Creates a new DNS service. Note: this is a Rackspace-only feature.
*
* @param string $name The name of the service as it appears in the Catalog
* @param string $region The region (DFW, IAD, ORD, LON, SYD)
* @param string $urltype The URL type ("publicURL" or "internalURL")
* @return OpenCloud\DNS\Service
*/
public function dnsService($name = null, $region = null, $urltype = null)
{
return ServiceBuilder::factory($this, 'OpenCloud\DNS\Service', array(
'name' => $name,
'region' => $region,
'urlType' => $urltype
));
}
/**
* Creates a new CloudMonitoring service. Note: this is a Rackspace-only feature.
*
* @param string $name The name of the service as it appears in the Catalog
* @param string $region The region (DFW, IAD, ORD, LON, SYD)
* @param string $urltype The URL type ("publicURL" or "internalURL")
* @return \OpenCloud\CloudMonitoring\Service
*/
public function cloudMonitoringService($name = null, $region = null, $urltype = null)
{
return ServiceBuilder::factory($this, 'OpenCloud\CloudMonitoring\Service', array(
'name' => $name,
'region' => $region,
'urlType' => $urltype
));
}
/**
* Creates a new CloudQueues service. Note: this is a Rackspace-only feature.
*
* @param string $name The name of the service as it appears in the Catalog
* @param string $region The region (DFW, IAD, ORD, LON, SYD)
* @param string $urltype The URL type ("publicURL" or "internalURL")
* @return \OpenCloud\Autoscale\Service
*/
public function autoscaleService($name = null, $region = null, $urltype = null)
{
return ServiceBuilder::factory($this, 'OpenCloud\Autoscale\Service', array(
'name' => $name,
'region' => $region,
'urlType' => $urltype
));
}
/**
* Creates a new CloudQueues service. Note: this is a Rackspace-only feature.
*
* @param string $name The name of the service as it appears in the Catalog
* @param string $region The region (DFW, IAD, ORD, LON, SYD)
* @param string $urltype The URL type ("publicURL" or "internalURL")
* @return \OpenCloud\Queues\Service
*/
public function queuesService($name = null, $region = null, $urltype = null)
{
return ServiceBuilder::factory($this, 'OpenCloud\Queues\Service', array(
'name' => $name,
'region' => $region,
'urlType' => $urltype
));
}
}