You are here

public function Raven::alterPolicy in Raven: Sentry Integration 3.x

Same name and namespace in other branches
  1. 8.2 src/Plugin/CspReportingHandler/Raven.php \Drupal\raven\Plugin\CspReportingHandler\Raven::alterPolicy()

File

src/Plugin/CspReportingHandler/Raven.php, line 53

Class

Raven
CSP Reporting Plugin for a Sentry endpoint.

Namespace

Drupal\raven\Plugin\CspReportingHandler

Code

public function alterPolicy(Csp $policy) {
  if (!class_exists(Dsn::class)) {
    return;
  }
  $config = $this->configFactory
    ->get('raven.settings');
  try {
    $dsn = Dsn::createFromString(empty($_SERVER['SENTRY_DSN']) ? $config
      ->get('public_dsn') : $_SERVER['SENTRY_DSN']);
  } catch (\InvalidArgumentException $e) {

    // Raven is incorrectly configured.
    return;
  }
  $query = [
    'sentry_key' => $dsn
      ->getPublicKey(),
  ];
  if ($environment = empty($_SERVER['SENTRY_ENVIRONMENT']) ? $config
    ->get('environment') : $_SERVER['SENTRY_ENVIRONMENT']) {
    $query['sentry_environment'] = $environment;
  }
  if ($release = empty($_SERVER['SENTRY_RELEASE']) ? $config
    ->get('release') : $_SERVER['SENTRY_RELEASE']) {
    $query['sentry_release'] = $release;
  }
  $policy
    ->setDirective('report-uri', Url::fromUri(str_replace('/store/', '/security/', $dsn
    ->getStoreApiEndpointUrl()), [
    'query' => $query,
  ])
    ->toString());
}