class BrightcovePlaylistDeleteQueueWorker in Brightcove Video Connect 8
Same name and namespace in other branches
- 8.2 src/Plugin/QueueWorker/BrightcovePlaylistDeleteQueueWorker.php \Drupal\brightcove\Plugin\QueueWorker\BrightcovePlaylistDeleteQueueWorker
- 3.x src/Plugin/QueueWorker/BrightcovePlaylistDeleteQueueWorker.php \Drupal\brightcove\Plugin\QueueWorker\BrightcovePlaylistDeleteQueueWorker
Processes Entity Delete Tasks for Playlist.
Plugin annotation
@QueueWorker(
id = "brightcove_playlist_delete_queue_worker",
title = @Translation("Brightcove playlist delete queue worker."),
cron = { "time" = 30 }
)
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\Core\Queue\QueueWorkerBase implements QueueWorkerInterface
- class \Drupal\brightcove\Plugin\QueueWorker\BrightcovePlaylistDeleteQueueWorker implements ContainerFactoryPluginInterface
- class \Drupal\Core\Queue\QueueWorkerBase implements QueueWorkerInterface
Expanded class hierarchy of BrightcovePlaylistDeleteQueueWorker
File
- src/
Plugin/ QueueWorker/ BrightcovePlaylistDeleteQueueWorker.php, line 21
Namespace
Drupal\brightcove\Plugin\QueueWorkerView source
class BrightcovePlaylistDeleteQueueWorker extends QueueWorkerBase implements ContainerFactoryPluginInterface {
/**
* The brightcove_playlist storage.
*
* @var \Drupal\Core\Entity\EntityStorageInterface
*/
protected $storage;
/**
* Constructs a new BrightcovePlaylistDeleteQueueWorker object.
*
* @param array $configuration
* A configuration array containing information about the plugin instance.
* @param string $plugin_id
* The plugin_id for the plugin instance.
* @param array $plugin_definition
* The plugin implementation definition.
* @param \Drupal\Core\Entity\EntityStorageInterface $storage
* Brightcove Playlist Entity storage.
*/
public function __construct(array $configuration, $plugin_id, array $plugin_definition, EntityStorageInterface $storage) {
parent::__construct($configuration, $plugin_id, $plugin_definition);
$this->storage = $storage;
}
/**
* {@inheritdoc}
*/
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')
->getStorage('brightcove_playlist'));
}
/**
* {@inheritdoc}
*/
public function processItem($data) {
// Check the playlist if it is available on Brightcove or not.
try {
$cms = BrightcoveUtil::getCmsApi($data->api_client);
$cms
->getPlaylist($data->playlist_id);
} catch (APIException $e) {
// If we got a not found response, delete the local version of the
// playlist.
if ($e
->getCode() == 404) {
/** @var \Drupal\brightcove\Entity\BrightcovePlaylist $playlist */
$playlist = $this->storage
->load($data->bcplid);
$playlist
->delete(TRUE);
}
else {
throw new APIException($e
->getMessage(), $e
->getCode(), $e, $e
->getResponseBody());
}
}
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
BrightcovePlaylistDeleteQueueWorker:: |
protected | property | The brightcove_playlist storage. | |
BrightcovePlaylistDeleteQueueWorker:: |
public static | function |
Creates an instance of the plugin. Overrides ContainerFactoryPluginInterface:: |
|
BrightcovePlaylistDeleteQueueWorker:: |
public | function |
Works on a single queue item. Overrides QueueWorkerInterface:: |
|
BrightcovePlaylistDeleteQueueWorker:: |
public | function |
Constructs a new BrightcovePlaylistDeleteQueueWorker object. Overrides PluginBase:: |
|
PluginBase:: |
protected | property | Configuration information passed into the plugin. | 1 |
PluginBase:: |
protected | property | The plugin implementation definition. | 1 |
PluginBase:: |
protected | property | The plugin_id. | |
PluginBase:: |
constant | A string which is used to separate base plugin IDs from the derivative ID. | ||
PluginBase:: |
public | function |
Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the definition of the plugin implementation. Overrides PluginInspectionInterface:: |
3 |
PluginBase:: |
public | function |
Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface:: |
|
PluginBase:: |
public | function | Determines if the plugin is configurable. |