You are here

public function Template::__construct in GatherContent 8.3

Same name and namespace in other branches
  1. 8 src/DAO/Template.php \Drupal\gathercontent\DAO\Template::__construct()

Account constructor.

Parameters

string $username: API username.

string $api_key: API key.

File

src/DAO/Template.php, line 23

Class

Template
Class Template.

Namespace

Drupal\gathercontent\DAO

Code

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',
    ],
  ]);
}