本文整理汇总了PHP中OpenCloud\Rackspace::authenticate方法的典型用法代码示例。如果您正苦于以下问题:PHP Rackspace::authenticate方法的具体用法?PHP Rackspace::authenticate怎么用?PHP Rackspace::authenticate使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类OpenCloud\Rackspace
的用法示例。
在下文中一共展示了Rackspace::authenticate方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: newClient
public function newClient()
{
$client = new Rackspace(Rackspace::US_IDENTITY_ENDPOINT, array('username' => 'foo', 'apiKey' => 'bar'));
$client->addSubscriber(new MockSubscriber());
//$client->addSubscriber(LogPlugin::getDebugPlugin());
$client->authenticate();
return $client;
}
示例2: getRemoteClient
/**
* Returns the remote transport client
* @param array $params
* @param string $include_container
* @return \OpenCloud\ObjectStore\Resource\Container|\OpenCloud\ObjectStore\Service
*/
public static function getRemoteClient(array $params, $include_container = true)
{
$url = isset($params['rcf_location']) && strtolower($params['rcf_location']) == 'uk' ? Rackspace::UK_IDENTITY_ENDPOINT : Rackspace::US_IDENTITY_ENDPOINT;
$client = new Rackspace($url, ['username' => $params['rcf_username'], 'apiKey' => $params['rcf_api']]);
$client->authenticate();
$store = $client->objectStoreService('cloudFiles');
if ($include_container) {
return $store->getContainer($params['rcf_container']);
}
return $store;
}
示例3: createClient
private function createClient()
{
Utils::log('Authenticate');
$secret = array('username' => Utils::getEnvVar(Enum::ENV_USERNAME), 'apiKey' => Utils::getEnvVar(Enum::ENV_API_KEY));
$identityEndpoint = Utils::getIdentityEndpoint();
// Do connection stuff
$client = new Rackspace($identityEndpoint, $secret);
$client->setUserAgent($client->getUserAgent() . '/' . Enum::USER_AGENT);
// enable logging
if ($this->debugMode) {
$client->addSubscriber(LogPlugin::getDebugPlugin());
}
$client->authenticate();
Utils::logf(' Using identity endpoint: %s', $identityEndpoint);
Utils::logf(' Using region: %s', Utils::getRegion());
Utils::logf(' Token generated: %s', (string) $client->getToken());
return $client;
}
示例4: dirname
<?php
/**
* Copyright 2012-2014 Rackspace US, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
require dirname(__DIR__) . '/../vendor/autoload.php';
use OpenCloud\Rackspace;
// You can replace {authUrl} with Rackspace::US_IDENTITY_ENDPOINT or similar
$client = new Rackspace('{authUrl}', array('username' => '{username}', 'apiKey' => '{apiKey}'));
// Authenticate with the above credentials
$client->authenticate();
// Retrieve token ID
echo $client->getToken();
示例5: upload_data
function upload_data($authuserid)
{
$username = "Sayee.Gurumurthy";
// username
$key = "0d5739ba0696428f885890282d3ba150";
// api key
//Rackspace client
$client = new Rackspace(Rackspace::US_IDENTITY_ENDPOINT, array('username' => $username, 'apiKey' => $key));
//Authenticate client
$client->authenticate();
$service = $client->objectStoreService('cloudFiles');
$container = $service->getContainer('userimages');
//Figure out the user first name and last name based on the $name variable
//We must have got some dimensions to crop the images, lets get that set
$profile_image_crop_x = $_POST['x'];
$profile_image_crop_y = $_POST['y'];
$profile_image_crop_w = $_POST['w'];
$profile_image_crop_h = $_POST['h'];
if ($_FILES['profile_image']['tmp_name'] != "") {
$imageProcessor = new ImageManipulator($_FILES['profile_image']['tmp_name']);
if ($profile_image_crop_w > 1 && $profile_image_crop_h > 1) {
$croppedImage = $imageProcessor . crop($profile_image_crop_x, $profile_image_crop_y, $profile_image_crop_x + $profile_image_crop_w, $profile_image_crop_y + $profile_image_crop_h);
}
$imageProcessor->save($basePath . $target_profile_pic_name);
//Read back the file so that we can now upload it to Rackspace CDN.
//Common Meta
$meta = array('Author' => $name, 'Origin' => 'FINAO Web');
$metaHeaders = DataObject::stockHeaders($meta);
$data = fopen($basePath . $target_profile_pic_name, 'r+');
$container->uploadObject($target_profile_pic_name, $data, $metaHeaders);
$targ_w = 150;
$targ_h = 150;
$jpeg_quality = 90;
$profile_thumb_image = $imageProcessor->resample($targ_w, $targ_h);
$imageProcessor->save($basePath . $target_profile_pic_thumb);
$data = fopen($basePath . $target_profile_pic_thumb, 'r+');
$container->uploadObject($target_profile_pic_thumb, $data, $metaHeaders);
}
if ($_FILES['profile_bg_image']['tmp_name'] != "") {
@move_uploaded_file($_FILES['profile_bg_image']['tmp_name'], 'images/uploads/profileimages/' . $target_banner_pic_name);
//Common Meta
$meta = array('Author' => $name, 'Origin' => 'FINAO Web');
$metaHeaders = DataObject::stockHeaders($meta);
$data = fopen($basePath . $target_banner_pic_name, 'r+');
$container->uploadObject($target_banner_pic_name, $data, $metaHeaders);
}
}