designtopack/public/site/config/routes/request-project-creation.php

53 lines
1.5 KiB
PHP
Raw Normal View History

2025-01-23 15:31:15 +01:00
<?php
return [
'pattern' => 'request-project-creation.json',
'method' => 'POST',
'action' => function () {
$json = file_get_contents('php://input');
$data = json_decode($json);
$user = kirby()->user();
2025-01-23 15:31:15 +01:00
$client = kirby()->user()->client()->toPage()->uuid();
$date = new DateTime();
$formattedDate = $date->format(DateTime::ISO8601);
2025-01-23 15:31:15 +01:00
$projectData = [
"slug" => esc(Str::slug($data->title)),
"template" => "project",
2025-01-23 15:31:15 +01:00
"content" => [
"title" => esc($data->title),
"requestDetails" => esc("Demande de " . $user->name() . " (" . $user->email() . ") : \n\n" . $data->details),
2025-01-23 15:31:15 +01:00
"client" => [$client],
"isClientRequest" => "true",
"isDTLEnabled" => esc($data->isDTLEnabled),
// Métadonnées pour le système de notifications dérivées
"requestAuthor" => (string) $user->uuid(),
"requestAuthorName" => (string) $user->name(),
"requestAuthorEmail" => (string) $user->email(),
"requestDate" => $formattedDate,
"requestReadby" => [],
2025-01-23 15:31:15 +01:00
]
];
$projects = page("projects");
try {
$newProject = $projects->createChild($projectData);
// Note: Les notifications sont maintenant dérivées.
// Plus besoin d'appeler createNotification().
2025-01-23 15:31:15 +01:00
return [
"status" => "success",
];
} catch (\Throwable $th) {
return [
"status" => "error",
"message" => $th->getMessage() . " in " . $th->getFile() . " line " . $th->getLine()
];
}
}
];