View source
<?php
namespace Drupal\commerce_license\Plugin\AdvancedQueue\JobType;
use Drupal\Core\Entity\EntityTypeManagerInterface;
use Drupal\Core\Mail\MailManagerInterface;
use Drupal\Core\Plugin\ContainerFactoryPluginInterface;
use Drupal\Core\Render\RendererInterface;
use Drupal\Core\Render\RenderContext;
use Drupal\advancedqueue\Job;
use Drupal\advancedqueue\JobResult;
use Drupal\advancedqueue\Plugin\AdvancedQueue\JobType\JobTypeBase;
use Symfony\Component\DependencyInjection\ContainerInterface;
class LicenseExpireNotify extends JobTypeBase implements ContainerFactoryPluginInterface {
protected $entityTypeManager;
protected $renderer;
protected $pluginManagerMail;
public function __construct(array $configuration, $plugin_id, $plugin_definition, EntityTypeManagerInterface $entity_type_manager, RendererInterface $renderer, MailManagerInterface $plugin_manager_mail) {
parent::__construct($configuration, $plugin_id, $plugin_definition);
$this->entityTypeManager = $entity_type_manager;
$this->renderer = $renderer;
$this->pluginManagerMail = $plugin_manager_mail;
}
public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
return new static($configuration, $plugin_id, $plugin_definition, $container
->get('entity_type.manager'), $container
->get('renderer'), $container
->get('plugin.manager.mail'));
}
public function process(Job $job) {
$license_id = $job
->getPayload()['license_id'];
$license_storage = $this->entityTypeManager
->getStorage('commerce_license');
$license = $license_storage
->load($license_id);
if (!$license) {
return JobResult::failure('License not found.');
}
$owner = $license
->getOwner();
if ($owner
->isAnonymous()) {
return JobResult::failure('License owner not found.');
}
$to = $owner
->getEmail();
$from = \Drupal::config('system.site')
->get('mail');
$params = [
'headers' => [
'Content-Type' => 'text/html; charset=UTF-8;',
'Content-Transfer-Encoding' => '8Bit',
],
'from' => $from,
'subject' => $this
->t('Your purchase of @license-label has now expired', [
'@license-label' => $license
->label(),
]),
'license' => $license,
];
$build = [
'#theme' => 'commerce_license_expire',
'#license_entity' => $license,
];
if ($purchased_entity = $license
->getPurchasedEntity()) {
$build += [
'#purchased_entity' => $purchased_entity,
'#purchased_entity_url' => $purchased_entity
->toUrl()
->setAbsolute(),
];
}
$params['body'] = $this->renderer
->executeInRenderContext(new RenderContext(), function () use ($build) {
return $this->renderer
->render($build);
});
$langcode = $owner
->getPreferredLangcode();
$message = $this->pluginManagerMail
->mail('commerce_license', 'license_expire', $to, $langcode, $params);
if ($message['result']) {
return JobResult::success();
}
else {
return JobResult::failure('Unable to send expiry notification mail.');
}
}
}