index-shop/site/config/config.php

95 lines
3.4 KiB
PHP
Raw Normal View History

2025-12-10 15:12:06 +01:00
<?php
return [
'debug' => true,
'languages' => true,
'thumbs' => [
'quality' => 85,
'format' => 'webp',
'presets' => [
'product-card' => [
'width' => 600,
'height' => 600,
'crop' => true,
'format' => 'webp'
],
'product-detail' => [
'width' => 1200,
'format' => 'webp'
],
'default' => [
'width' => 1024,
'format' => 'webp'
],
],
'srcsets' => [
'default' => [400, 600, 800, 1024, 1440, 2048],
'webp' => [
'400w' => ['width' => 400, 'format' => 'webp'],
'600w' => ['width' => 600, 'format' => 'webp'],
'800w' => ['width' => 800, 'format' => 'webp'],
'1024w' => ['width' => 1024, 'format' => 'webp'],
'1440w' => ['width' => 1440, 'format' => 'webp'],
],
],
],
2025-12-10 15:12:06 +01:00
'routes' => [
[
'pattern' => 'snipcart-webhook',
'method' => 'POST',
'action' => function () {
// Webhook handler pour Snipcart
// Vérifie la signature et décrémente le stock
$requestBody = file_get_contents('php://input');
$event = json_decode($requestBody, true);
// Vérifier la signature Snipcart (à implémenter avec la clé secrète)
// $signature = $_SERVER['HTTP_X_SNIPCART_REQUESTTOKEN'] ?? '';
if (!$event || !isset($event['eventName'])) {
return Response::json(['error' => 'Invalid request'], 400);
}
// Gérer l'événement order.completed
if ($event['eventName'] === 'order.completed') {
$order = $event['content'] ?? null;
if ($order && isset($order['items'])) {
foreach ($order['items'] as $item) {
$productId = $item['id'] ?? null;
$quantity = $item['quantity'] ?? 0;
if ($productId && $quantity > 0) {
// Trouver le produit par son snipcartId
$products = site()->index()->filterBy('intendedTemplate', 'product');
foreach ($products as $product) {
if ($product->slug() === $productId) {
// Décrémenter le stock
$currentStock = (int) $product->stock()->value();
$newStock = max(0, $currentStock - $quantity);
// Mettre à jour le stock dans toutes les langues
$product->update([
'stock' => $newStock
]);
kirby()->impersonate('kirby');
break;
}
}
}
}
}
}
return Response::json(['status' => 'success'], 200);
}
]
]
];