Initial commit

This commit is contained in:
Your Name
2026-06-02 12:40:37 +07:00
commit 20607b0e75
117 changed files with 25598 additions and 0 deletions
+53
View File
@@ -0,0 +1,53 @@
<?php
header('Content-Type: application/json');
require_once 'config.php';
header('Access-Control-Allow-Origin: *');
header('Access-Control-Allow-Methods: POST, OPTIONS');
header('Access-Control-Allow-Headers: Content-Type');
if ($_SERVER['REQUEST_METHOD'] === 'OPTIONS') {
http_response_code(200);
exit();
}
if ($_SERVER['REQUEST_METHOD'] !== 'POST') {
http_response_code(405);
die(json_encode(['error' => 'Method not allowed']));
}
requireRole('Admin');
try {
$data = json_decode(file_get_contents('php://input'), true);
$targetNasional = isset($data['target_nasional']) ? (float)$data['target_nasional'] : null;
$populationReference = isset($data['population_reference']) ? (int)$data['population_reference'] : null;
if ($targetNasional === null || $targetNasional < 0 || $targetNasional > 100) {
http_response_code(400);
die(json_encode(['error' => 'Target nasional must be between 0 and 100']));
}
if ($populationReference === null || $populationReference < 1) {
http_response_code(400);
die(json_encode(['error' => 'Population reference must be greater than 0']));
}
$db = getDB();
$stmt = $db->prepare('INSERT INTO score_metadata (key_name, key_value, updated_at) VALUES (?, ?, CURRENT_TIMESTAMP) ON CONFLICT(key_name) DO UPDATE SET key_value = excluded.key_value, updated_at = CURRENT_TIMESTAMP');
$stmt->execute(['target_nasional', number_format($targetNasional, 2, '.', '')]);
$stmt->execute(['population_reference', (string)$populationReference]);
echo json_encode([
'success' => true,
'configuration' => [
'target_nasional' => $targetNasional,
'population_reference' => $populationReference
]
]);
} catch (Exception $e) {
http_response_code(500);
echo json_encode(['error' => $e->getMessage()]);
}
?>