You are here

final class ReSmushit in Image Optimize reSmush.it 8

Same name and namespace in other branches
  1. 2.x src/Plugin/ImageAPIOptimizeProcessor/ReSmushit.php \Drupal\imageapi_optimize_resmushit\Plugin\ImageAPIOptimizeProcessor\ReSmushit

Uses the resmush.it webservice to optimize an image.

Plugin annotation


@ImageAPIOptimizeProcessor(
  id = "resmushit",
  label = @Translation("Resmush.it"),
  description = @Translation("Uses the free resmush.it service to optimize images.")
)

Hierarchy

  • class \Drupal\imageapi_optimize_resmushit\Plugin\ImageAPIOptimizeProcessor\ReSmushit extends \Drupal\imageapi_optimize\ConfigurableImageAPIOptimizeProcessorBase

Expanded class hierarchy of ReSmushit

File

src/Plugin/ImageAPIOptimizeProcessor/ReSmushit.php, line 23

Namespace

Drupal\imageapi_optimize_resmushit\Plugin\ImageAPIOptimizeProcessor
View source
final class ReSmushit extends ConfigurableImageAPIOptimizeProcessorBase {

  /**
   * The HTTP client to fetch the feed data with.
   *
   * @var \GuzzleHttp\ClientInterface
   */
  protected $httpClient;

  /**
   * {@inheritdoc}
   */
  public function __construct(array $configuration, $plugin_id, $plugin_definition, LoggerInterface $logger, ImageFactory $image_factory, ClientInterface $http_client) {
    parent::__construct($configuration, $plugin_id, $plugin_definition, $logger, $image_factory);
    $this->httpClient = $http_client;
  }

  /**
   * {@inheritdoc}
   */
  public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
    return new static($configuration, $plugin_id, $plugin_definition, $container
      ->get('logger.factory')
      ->get('imageapi_optimize'), $container
      ->get('image.factory'), $container
      ->get('http_client'));
  }

  /**
   * {@inheritdoc}
   */
  public function applyToImage($image_uri) {

    // Need to send the file off to the remote service and await a response.
    $fields[] = [
      'name' => 'files',
      'contents' => fopen($image_uri, 'r'),
    ];
    if (!empty($this->configuration['quality'])) {
      $fields[] = [
        'name' => 'qlty',
        'contents' => $this->configuration['quality'],
      ];
    }
    try {
      $response = $this->httpClient
        ->post('http://api.resmush.it/ws.php', [
        'multipart' => $fields,
      ]);
      $body = $response
        ->getBody();
      $json = json_decode($body);

      // If this has worked, we should get a dest entry in the JSON returned.
      if (isset($json->dest)) {

        // Now go fetch that, and save it locally.
        $smushedFile = $this->httpClient
          ->get($json->dest);
        if ($smushedFile
          ->getStatusCode() == 200) {
          \Drupal::service('file_system')
            ->saveData($smushedFile
            ->getBody(), $image_uri, FileSystemInterface::EXISTS_REPLACE);
          return TRUE;
        }
      }
    } catch (RequestException $e) {
      $this->logger
        ->error('Failed to download optimize image using reSmush.it due to "%error".', [
        '%error' => $e
          ->getMessage(),
      ]);
    }
    return FALSE;
  }

  /**
   * {@inheritdoc}
   */
  public function defaultConfiguration() {
    return [
      'quality' => NULL,
    ];
  }

  /**
   * {@inheritdoc}
   */
  public function buildConfigurationForm(array $form, FormStateInterface $form_state) {
    $form['quality'] = [
      '#type' => 'number',
      '#title' => $this
        ->t('JPEG image quality'),
      '#description' => $this
        ->t('Optionally specify a quality setting when optimizing JPEG images.'),
      '#default_value' => $this->configuration['quality'],
      '#min' => 1,
      '#max' => 100,
    ];
    return $form;
  }

  /**
   * {@inheritdoc}
   */
  public function submitConfigurationForm(array &$form, FormStateInterface $form_state) {
    parent::submitConfigurationForm($form, $form_state);
    $this->configuration['quality'] = $form_state
      ->getValue('quality');
  }

}

Members

Namesort descending Modifiers Type Description Overrides
ReSmushit::$httpClient protected property The HTTP client to fetch the feed data with.
ReSmushit::applyToImage public function
ReSmushit::buildConfigurationForm public function
ReSmushit::create public static function
ReSmushit::defaultConfiguration public function
ReSmushit::submitConfigurationForm public function
ReSmushit::__construct public function