You are here

FilterMailchimpCampaign.php in Mailchimp 2.x

File

modules/mailchimp_campaign/src/Plugin/Filter/FilterMailchimpCampaign.php
View source
<?php

namespace Drupal\mailchimp_campaign\Plugin\Filter;

use Drupal\filter\FilterProcessResult;
use Drupal\filter\Plugin\FilterBase;

/**
 * Provides a filter to add content to and convert URLs for Mailchimp campaigns.
 *
 * @Filter(
 *   id = "filter_mailchimp_campaign",
 *   title = @Translation("Mailchimp Campaign filter"),
 *   type = Drupal\filter\Plugin\FilterInterface::TYPE_MARKUP_LANGUAGE,
 *   settings = {}
 * )
 */
class FilterMailchimpCampaign extends FilterBase {

  /**
   * {@inheritdoc}
   */
  public function process($text, $langcode) {
    $result = new FilterProcessResult($text);

    // Replace node macros with entity content.
    $pattern = '/\\[mailchimp_campaign\\|entity_type=(\\w+)\\|entity_id=(\\d+)\\|view_mode=(\\w+)\\]/s';
    $text = preg_replace_callback($pattern, [
      $this,
      'processCallback',
    ], $text);

    // Convert URL to absolute.
    $text = $this
      ->convertUrl($text);
    $result
      ->setProcessedText($text);
    return $result;
  }

  /**
   * Callback for preg_replace in process()
   */
  public static function processCallback($matches = []) {
    $content = '';
    $entity_type = $entity_id = $view_mode = '';
    foreach ($matches as $key => $match) {
      switch ($key) {
        case 1:
          $entity_type = $match;
          break;
        case 2:
          $entity_id = $match;
          break;
        case 3:
          $view_mode = $match;
          break;
      }
    }
    $entity_type_manager = \Drupal::entityTypeManager();
    $entity = $entity_type_manager
      ->getStorage($entity_type)
      ->load($entity_id);
    if (!empty($entity)) {
      $view_builder = \Drupal::entityTypeManager()
        ->getViewBuilder($entity
        ->getEntityTypeId());
      $build = $view_builder
        ->view($entity, $view_mode);

      // Remove contextual links.
      if (isset($build[$entity_type][$entity_id]['#contextual_links'])) {
        unset($build[$entity_type][$entity_id]['#contextual_links']);
      }
      $content = render($build);
    }
    return $content;
  }

  /**
   * {@inheritdoc}
   */
  public function tips($long = FALSE) {
    $tip = $this
      ->t('Converts content tokens in the format %pattern into the appropriate rendered content and makes all paths absolute. Use the "Insert Site Content" widget below to generate tokens.', [
      '%pattern' => '[mailchimp_campaign|entity_type=node|entity_id=1|view_mode=teaser]',
    ]);
    return $tip;
  }

  /**
   * Change the relative URLs to absolute ones in the message.
   */
  private function convertUrl($text) {
    global $base_url;
    $matches = [];
    preg_match_all('/<(a|img).*?(href|src)="(.*?)"/', $text, $matches);
    foreach ($matches[3] as $key => $url) {
      if ($url[0] == '/') {
        $new_url = $base_url . $url;
        $new_match = str_replace($url, $new_url, $matches[0][$key]);
        $text = str_replace($matches[0][$key], $new_match, $text);
      }
    }
    return $text;
  }

}

Classes

Namesort descending Description
FilterMailchimpCampaign Provides a filter to add content to and convert URLs for Mailchimp campaigns.