You are here

public function BrightcoveSubscriptionDeleteQueueWorker::processItem in Brightcove Video Connect 3.x

Same name and namespace in other branches
  1. 8.2 src/Plugin/QueueWorker/BrightcoveSubscriptionDeleteQueueWorker.php \Drupal\brightcove\Plugin\QueueWorker\BrightcoveSubscriptionDeleteQueueWorker::processItem()
  2. 8 src/Plugin/QueueWorker/BrightcoveSubscriptionDeleteQueueWorker.php \Drupal\brightcove\Plugin\QueueWorker\BrightcoveSubscriptionDeleteQueueWorker::processItem()

Works on a single queue item.

Parameters

mixed $data: The data that was passed to \Drupal\Core\Queue\QueueInterface::createItem() when the item was queued.

Throws

\Drupal\Core\Queue\RequeueException Processing is not yet finished. This will allow another process to claim the item immediately.

\Exception A QueueWorker plugin may throw an exception to indicate there was a problem. The cron process will log the exception, and leave the item in the queue to be processed again later.

\Drupal\Core\Queue\SuspendQueueException More specifically, a SuspendQueueException should be thrown when a QueueWorker plugin is aware that the problem will affect all subsequent workers of its queue. For example, a callback that makes HTTP requests may find that the remote server is not responding. The cron process will behave as with a normal Exception, and in addition will not attempt to process further items from the current item's queue during the current cron run.

Overrides QueueWorkerInterface::processItem

See also

\Drupal\Core\Cron::processQueues()

File

src/Plugin/QueueWorker/BrightcoveSubscriptionDeleteQueueWorker.php, line 25

Class

BrightcoveSubscriptionDeleteQueueWorker
Processes Entity Sync Tasks for Subscription.

Namespace

Drupal\brightcove\Plugin\QueueWorker

Code

public function processItem($data) {

  /** @var array $data */
  if (!empty($data['local_only'])) {
    $brightcove_subscription = BrightcoveSubscription::loadByBcSid($data['subscription_id']);
    if (!empty($brightcove_subscription)) {
      $brightcove_subscription
        ->delete(TRUE);
    }
  }
  else {

    // Check the Subscription if it is available on Brightcove or not.
    try {
      $cms = BrightcoveUtil::getCmsApi($data['api_client_id']);
      $cms
        ->getSubscription($data['subscription_id']);
    } catch (APIException $e) {

      // If we got a not found response, delete the local version of the
      // subscription.
      if ($e
        ->getCode() == 404) {

        /** @var \Drupal\brightcove\Entity\BrightcoveSubscription $subscription */
        $brightcove_subscription = BrightcoveSubscription::loadByBcSid($data['subscription_id']);
        if (!empty($brightcove_subscription)) {

          // In case of a default subscription, unset the entity's
          // association with the Brightcove entity, but keep a local entity
          // in Drupal without the Brightcove ID and set its status to
          // disabled.
          if ($brightcove_subscription
            ->isDefault()) {
            $brightcove_subscription
              ->setBcSid(NULL);
            $brightcove_subscription
              ->setStatus(FALSE);
            $brightcove_subscription
              ->save();
          }
          else {
            $brightcove_subscription
              ->delete(TRUE);
          }
        }
      }
      elseif ($e
        ->getCode() == 401) {
        watchdog_exception('brightcove', $e, 'Access denied for Notification.', [], RfcLogLevel::WARNING);
      }
      else {
        throw $e;
      }
    }
  }
}