Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rackspace has issued a new certificate and this is broken on PHP7 #30

Open
edgreenberg-mri opened this issue Jun 28, 2023 · 1 comment

Comments

@edgreenberg-mri
Copy link

This package uses rackspace/php-opencloud 1.16, and that is broken due to guzzle/guzzle being abandoned in favor of guzzlehttp.

@colethorsen
Copy link

The dependency rackspace/php-opencloud is no longer supported and they recommend switching to php-opencloud/openstack

There are several flysystem adapters for openstack such as:
https://github.com/chrisnharvey/flysystem-openstack-swift
https://github.com/webalternatif/flysystem-openstack-swift

Here's some code to help you get started, as authenticating Rackspace through OpenStack isn't exactly straightforward.

This uses php-opencloud/openstack v3.10.0

$authUrl = 'https://identity.api.rackspacecloud.com/v2.0/';

$httpClient = new \GuzzleHttp\Client([
	'base_uri' => \OpenStack\Common\Transport\Utils::normalizeUrl($authUrl),
	'handler'  => \GuzzleHttp\HandlerStack::create(),
]);

$openstack = new \OpenStack\OpenStack([
	'authUrl'         => $authUrl,
	'identityService' => RackspaceIdentityService::factory($httpClient),
	'region'          => '{{ ADD RACKSPACE REGION }}',
	'user'            => [
		'username' => '{{ ADD RACKSPACE USERNAME HERE }}',
		'apiKey'   => '{{ ADD RACKSPACE API KEY HERE }}',
	],
]);

$container = $openstack->objectStoreV1([
	'catalogName' => 'cloudFiles',
])
	->getContainer('{{ ADD CONTAINER NAME HERE }}');

$adapter = new \Nimbusoft\Flysystem\OpenStack\SwiftAdapter($container);
$filesystem = new \League\Flysystem\Filesystem($adapter);

You also need to create the identity service referenced in the code:

use OpenStack\Common\Auth\IdentityService;
use OpenStack\Identity\v2\Models\Catalog;
use OpenStack\Identity\v2\Models\Token;
use OpenStack\Identity\v2\Service as V2Service;

class RackspaceIdentityService extends V2Service implements IdentityService
{
	public function authenticate(array $options = []): array
	{
		$response = $this->execute([
			'method'   => 'POST',
			'path'     => 'tokens',
			'skipAuth' => true,
			'params'   => [
				'username'   => [
					'type'     => 'string',
					'required' => true,
					'path'     => 'auth.RAX-KSKEY:apiKeyCredentials',
				],
				'apiKey'   => [
					'type'     => 'string',
					'required' => true,
					'path'     => 'auth.RAX-KSKEY:apiKeyCredentials',
				],
			],
		], $options['user']);

		$token = $this->model(Token::class, $response);

		$serviceUrl = $this->model(Catalog::class, $response)->getServiceUrl(
			$options['catalogName'],
			$options['catalogType'],
			$options['region'],
			$options['urlType']
		);

		return [$token, $serviceUrl];
	}
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants