Deploy Ladill Woo Manager / deploy (push) Successful in 39s
Auto-import catalog and orders after store activation, add manual order sync, and allow WooCommerce webhooks without CSRF tokens. Co-authored-by: Cursor <cursoragent@cursor.com>
43 lines
885 B
PHP
43 lines
885 B
PHP
<?php
|
|
|
|
namespace App\Services\Woo;
|
|
|
|
use App\Models\WooStore;
|
|
|
|
class OrderSyncService
|
|
{
|
|
public function __construct(
|
|
private PluginClient $client,
|
|
private OrderIngestService $orders,
|
|
) {}
|
|
|
|
public function syncOrders(WooStore $store): int
|
|
{
|
|
$response = $this->client->get($store, 'orders', ['per_page' => 100]);
|
|
if (! is_array($response)) {
|
|
return 0;
|
|
}
|
|
|
|
$items = $response['data'] ?? $response;
|
|
if (! is_array($items)) {
|
|
return 0;
|
|
}
|
|
|
|
$count = 0;
|
|
foreach ($items as $item) {
|
|
if (! is_array($item)) {
|
|
continue;
|
|
}
|
|
|
|
try {
|
|
$this->orders->ingest($store, $item);
|
|
$count++;
|
|
} catch (\Throwable) {
|
|
continue;
|
|
}
|
|
}
|
|
|
|
return $count;
|
|
}
|
|
}
|