You are here

class BatchSyncProducts in Mailchimp E-Commerce 8

Same name in this branch
  1. 8 modules/mailchimp_ecommerce_ubercart/src/BatchSyncProducts.php \Drupal\mailchimp_ecommerce_ubercart\BatchSyncProducts
  2. 8 modules/mailchimp_ecommerce_commerce/src/BatchSyncProducts.php \Drupal\mailchimp_ecommerce_commerce\BatchSyncProducts

Batch process handler for syncing product data to Mailchimp.

Hierarchy

Expanded class hierarchy of BatchSyncProducts

File

modules/mailchimp_ecommerce_commerce/src/BatchSyncProducts.php, line 8

Namespace

Drupal\mailchimp_ecommerce_commerce
View source
class BatchSyncProducts {
  public static function syncProducts($product_ids, &$context) {
    if (!isset($context['sandbox']['progress'])) {
      $context['sandbox']['progress'] = 0;
      $context['sandbox']['total'] = count($product_ids);
      $context['results']['product_ids'] = $product_ids;
    }
    $config = \Drupal::config('mailchimp.settings');
    $batch_limit = $config
      ->get('batch_limit');
    $batch = array_slice($context['results']['product_ids'], $context['sandbox']['progress'], $batch_limit);
    foreach ($batch as $product_id) {

      /** @var \Drupal\commerce_product\Entity\Product $product */
      $product = \Drupal\commerce_product\Entity\Product::load($product_id);
      $title = !empty($product
        ->get('title')->value) ? $product
        ->get('title')->value : '';
      $description = !empty($product
        ->get('body')->value) ? $product
        ->get('body')->value : '';
      $type = !empty($product
        ->get('type')->value) ? $product
        ->get('type')->value : '';

      /** @var \Drupal\mailchimp_ecommerce\ProductHandler $product_handler */
      $product_handler = \Drupal::service('mailchimp_ecommerce.product_handler');
      $url = $product_handler
        ->buildProductUrl($product);
      $variants = $product_handler
        ->buildProductVariants($product);
      $image_url = $product_handler
        ->getProductImageUrl($product);
      $product_handler
        ->addProduct($product_id, $title, $url, $image_url, $description, $type, $variants);
      $context['sandbox']['progress']++;
      $context['message'] = t('Sent @count of @total products to Mailchimp', [
        '@count' => $context['sandbox']['progress'],
        '@total' => $context['sandbox']['total'],
      ]);
      $context['finished'] = $context['sandbox']['progress'] / $context['sandbox']['total'];
    }
  }

}

Members