You are here

function ConfirmationController::confirmSubscription in Simplenews 8

Same name and namespace in other branches
  1. 8.2 src/Controller/ConfirmationController.php \Drupal\simplenews\Controller\ConfirmationController::confirmSubscription()
  2. 3.x src/Controller/ConfirmationController.php \Drupal\simplenews\Controller\ConfirmationController::confirmSubscription()

Menu callback: confirm the user's (un)subscription request

This function is called by clicking the confirm link in the confirmation email or the unsubscribe link in the footer of the newsletter. It handles both subscription addition and subscription removal.

Parameters

$action: Either add or remove.

$snid: The subscriber id.

$newsletter_id: The newsletter id.

$timestamp: The timestamp of the request.

$hash: The confirmation hash.

See also

simplenews_confirm_add_form()

simplenews_confirm_removal_form()

1 string reference to 'ConfirmationController::confirmSubscription'
simplenews.routing.yml in ./simplenews.routing.yml
simplenews.routing.yml

File

src/Controller/ConfirmationController.php, line 135

Class

ConfirmationController
Returns responses for confirmation routes.

Namespace

Drupal\simplenews\Controller

Code

function confirmSubscription($action, $snid, $newsletter_id, $timestamp, $hash, $immediate = FALSE) {
  $config = \Drupal::config('simplenews.settings');

  // Prevent search engines from indexing this page.
  $html_head = array(
    array(
      '#tag' => 'meta',
      '#attributes' => array(
        'name' => 'robots',
        'content' => 'noindex',
      ),
    ),
    'simplenews-noindex',
  );
  $subscriber = simplenews_subscriber_load($snid);
  if ($subscriber && $hash == simplenews_generate_hash($subscriber
    ->getMail(), $action, $timestamp)) {
    $newsletter = simplenews_newsletter_load($newsletter_id);

    // If the hash is valid but timestamp is too old, display form to request
    // a new hash.
    if ($timestamp < REQUEST_TIME - $config
      ->get('hash_expiration')) {
      $context = array(
        'simplenews_subscriber' => $subscriber,
        'newsletter' => $newsletter,
      );
      $token = $action == 'add' ? 'subscribe' : 'unsubscribe';
      $build = \Drupal::formBuilder()
        ->getForm('\\Drupal\\simplenews\\Form\\RequestHashForm', $token, $context);
      $build['#attached']['html_head'][] = $html_head;
      return $build;
    }

    // When called with additional arguments the user will be directed to the
    // (un)subscribe confirmation page. The additional arguments will be passed
    // on to the confirmation page.
    if (!$immediate) {
      if ($action == 'remove') {
        $build = \Drupal::formBuilder()
          ->getForm('\\Drupal\\simplenews\\Form\\ConfirmRemovalForm', $subscriber
          ->getMail(), $newsletter);
        $build['#attached']['html_head'][] = $html_head;
        return $build;
      }
      elseif ($action == 'add') {
        $build = \Drupal::formBuilder()
          ->getForm('\\Drupal\\simplenews\\Form\\ConfirmAddForm', $subscriber
          ->getMail(), $newsletter);
        $build['#attached']['html_head'][] = $html_head;
        return $build;
      }
    }
    else {

      /** @var \Drupal\simplenews\Subscription\SubscriptionManagerInterface $subscription_manager */
      $subscription_manager = \Drupal::service('simplenews.subscription_manager');
      if ($action == 'remove') {
        $subscription_manager
          ->unsubscribe($subscriber
          ->getMail(), $newsletter_id, FALSE, 'website');
        if ($path = $config
          ->get('subscription.confirm_unsubscribe_page')) {
          return $this
            ->redirect(Url::fromUri("internal:{$path}")
            ->getRouteName());
        }
        $this
          ->messenger()
          ->addMessage(t('%user was unsubscribed from the %newsletter mailing list.', array(
          '%user' => $subscriber
            ->getMail(),
          '%newsletter' => $newsletter->name,
        )));
        return $this
          ->redirect('<front>');
      }
      elseif ($action == 'add') {
        $subscription_manager
          ->subscribe($subscriber
          ->getMail(), $newsletter_id, FALSE, 'website');
        if ($path = $config
          ->get('subscription.confirm_subscribe_page')) {
          return $this
            ->redirect(Url::fromUri("internal:{$path}")
            ->getRouteName());
        }
        $this
          ->messenger()
          ->addMessage(t('%user was added to the %newsletter mailing list.', array(
          '%user' => $subscriber
            ->getMail(),
          '%newsletter' => $newsletter->name,
        )));
        return $this
          ->redirect('<front>');
      }
    }
  }
  throw new NotFoundHttpException();
}