public function Account::__construct in GatherContent 8.3
Same name and namespace in other branches
- 8 src/DAO/Account.php \Drupal\gathercontent\DAO\Account::__construct()
Account constructor.
Parameters
string $username: API username.
string $api_key: API key.
File
- src/
DAO/ Account.php, line 24
Class
- Account
- Class Account.
Namespace
Drupal\gathercontent\DAOCode
public function __construct($username = NULL, $api_key = NULL) {
if (is_null($username)) {
$username = \Drupal::config('gathercontent.settings')
->get('gathercontent_username');
}
if (is_null($api_key)) {
$api_key = \Drupal::config('gathercontent.settings')
->get('gathercontent_api_key');
}
if (empty($username || $api_key)) {
\Drupal::logger('gathercontent')
->error("Trying to call API without credentials.", []);
}
$this->client = new Client([
'base_uri' => 'https://api.gathercontent.com',
'auth' => [
$username,
$api_key,
],
'headers' => [
'Accept' => 'application/vnd.gathercontent.v0.5+json',
],
]);
}