Minor tweaks and CS fixes to new bitbucket integration, refs #6094
parent
44ea284ab9
commit
c8cf24daad
|
@ -137,7 +137,7 @@ class Bitbucket
|
|||
$url = 'https://confluence.atlassian.com/bitbucket/oauth-on-bitbucket-cloud-238027431.html';
|
||||
$this->io->writeError(sprintf('Follow the instructions on %s', $url));
|
||||
$this->io->writeError(sprintf('to create a consumer. It will be stored in "%s" for future use by Composer.', $this->config->getAuthConfigSource()->getName()));
|
||||
$this->io->writeError('Ensure you enter a "Callback URL" or it will not be possible to create an Access Token (this callback url will not be used by composer)');
|
||||
$this->io->writeError('Ensure you enter a "Callback URL" (http://example.com is fine) or it will not be possible to create an Access Token (this callback url will not be used by composer)');
|
||||
|
||||
$consumerKey = trim($this->io->askAndHideAnswer('Consumer Key (hidden): '));
|
||||
|
||||
|
@ -227,9 +227,10 @@ class Bitbucket
|
|||
{
|
||||
$authConfig = $this->config->get('bitbucket-oauth');
|
||||
|
||||
if (! isset($authConfig[$originUrl]['access-token']) ||
|
||||
! isset($authConfig[$originUrl]['access-token-expiration']) ||
|
||||
time() > $authConfig[$originUrl]['access-token-expiration']
|
||||
if (
|
||||
!isset($authConfig[$originUrl]['access-token'])
|
||||
|| !isset($authConfig[$originUrl]['access-token-expiration'])
|
||||
|| time() > $authConfig[$originUrl]['access-token-expiration']
|
||||
) {
|
||||
return false;
|
||||
}
|
||||
|
|
|
@ -610,7 +610,7 @@ class RemoteFilesystem
|
|||
}
|
||||
|
||||
if ($askForOAuthToken) {
|
||||
$message = "\n".'Could not fetch ' . $this->fileUrl . ', please create a bitbucket OAuth token to ' . ($httpStatus === 401 ? 'to access private repos' : 'to go over the API rate limit');
|
||||
$message = "\n".'Could not fetch ' . $this->fileUrl . ', please create a bitbucket OAuth token to ' . (($httpStatus === 401 || $httpStatus === 403) ? 'to access private repos' : 'to go over the API rate limit');
|
||||
$bitBucketUtil = new Bitbucket($this->io, $this->config);
|
||||
if (! $bitBucketUtil->authorizeOAuth($this->originUrl)
|
||||
&& (! $this->io->isInteractive() || !$bitBucketUtil->authorizeOAuthInteractively($this->originUrl, $message))
|
||||
|
|
Loading…
Reference in New Issue