class SalesforceOAuthCredentials in Salesforce Suite 8.4
Same name and namespace in other branches
- 5.0.x modules/salesforce_oauth/src/Consumer/SalesforceOAuthCredentials.php \Drupal\salesforce_oauth\Consumer\SalesforceOAuthCredentials
Salesforce credentials extension, for drupalisms.
Hierarchy
- class \Drupal\salesforce\Consumer\SalesforceCredentials extends \OAuth\Common\Consumer\Credentials implements SalesforceCredentialsInterface
- class \Drupal\salesforce_oauth\Consumer\SalesforceOAuthCredentials
Expanded class hierarchy of SalesforceOAuthCredentials
File
- modules/
salesforce_oauth/ src/ Consumer/ SalesforceOAuthCredentials.php, line 11
Namespace
Drupal\salesforce_oauth\ConsumerView source
class SalesforceOAuthCredentials extends SalesforceCredentials {
/**
* {@inheritdoc}
*/
public function __construct($consumerKey, $consumerSecret, $loginUrl) {
parent::__construct($consumerKey, $consumerSecret, self::callbackUrl());
$this->consumerKey = $consumerKey;
$this->loginUrl = $loginUrl;
}
/**
* Constructor helper.
*
* @param array $configuration
* Plugin configuration.
*
* @return \Drupal\salesforce_oauth\Consumer\SalesforceOAuthCredentials
* Credentials, valid or not.
*/
public static function create(array $configuration) {
return new static($configuration['consumer_key'], $configuration['consumer_secret'], $configuration['login_url']);
}
/**
* {@inheritdoc}
*/
public function getCallbackUrl() {
return self::callbackUrl();
}
/**
* Static wrapper to generate the callback url from the callback route.
*
* @return string
* The callback URL.
*/
public static function callbackUrl() {
return Url::fromRoute('salesforce.oauth_callback', [], [
'absolute' => TRUE,
'https' => TRUE,
])
->toString();
}
/**
* {@inheritdoc}
*/
public function isValid() {
return !empty($this->loginUrl) && !empty($this->consumerSecret) && !empty($this->consumerId);
}
}