- Added banking mode with checking, savings, and charity accounts, including auto-split options for income. - Introduced banking transaction management, including transfers and charity outflows. - Updated family settings to allow configuration of banking features and interest rates. - Enhanced data export functionality to include bank transactions. - Improved user interface to display banking information and donation goals. - Updated documentation to reflect new banking features and settings.
68 lines
2.3 KiB
PHP
68 lines
2.3 KiB
PHP
<?php
|
|
|
|
require_once __DIR__ . '/../includes/api_bootstrap.php';
|
|
|
|
if ($_SERVER['REQUEST_METHOD'] !== 'POST') {
|
|
sendJson(['success' => false, 'error' => 'Method not allowed'], 405);
|
|
}
|
|
|
|
$people = migrateAllPeople(normalizePeopleList(readJsonFile('people.json')));
|
|
if (count($people) > 0) {
|
|
sendJson(['success' => false, 'error' => 'People already exist; use signed-in Head of Household'], 403);
|
|
}
|
|
|
|
$body = readJsonBody();
|
|
$name = isset($body['name']) ? trim((string) $body['name']) : '';
|
|
$pin = isset($body['pin']) ? (string) $body['pin'] : '';
|
|
|
|
if ($name === '') {
|
|
sendJson(['success' => false, 'error' => 'Name is required'], 400);
|
|
}
|
|
|
|
if (strlen($pin) < 4) {
|
|
sendJson(['success' => false, 'error' => 'PIN must be at least 4 characters'], 400);
|
|
}
|
|
|
|
$icon = isset($body['icon']) ? trim((string) $body['icon']) : '';
|
|
$description = isset($body['description']) ? trim((string) $body['description']) : '';
|
|
$birthday = isset($body['birthday']) ? trim((string) $body['birthday']) : '';
|
|
$favoriteColor = isset($body['favoriteColor']) ? trim((string) $body['favoriteColor']) : '#4a90e2';
|
|
|
|
if ($favoriteColor !== '' && !preg_match('/^#[0-9A-Fa-f]{6}$/', $favoriteColor)) {
|
|
sendJson(['success' => false, 'error' => 'favoriteColor must be a #RRGGBB value'], 400);
|
|
}
|
|
|
|
if ($birthday !== '' && !preg_match('/^\d{4}-\d{2}-\d{2}$/', $birthday)) {
|
|
sendJson(['success' => false, 'error' => 'birthday must be YYYY-MM-DD'], 400);
|
|
}
|
|
|
|
$newPerson = [
|
|
'id' => bin2hex(random_bytes(8)),
|
|
'name' => $name,
|
|
'role' => ROLE_HEAD,
|
|
'pin_hash' => password_hash($pin, PASSWORD_DEFAULT),
|
|
'icon' => $icon,
|
|
'description' => $description,
|
|
'birthday' => $birthday,
|
|
'favoriteColor' => $favoriteColor,
|
|
'currency_balance' => 0,
|
|
'checking_balance' => 0,
|
|
'savings_balance' => 0,
|
|
'charity_pending_balance' => 0,
|
|
'charity_donated_total' => 0,
|
|
'donation_goal_monthly' => 0,
|
|
'banking_interest_last_applied_at' => '',
|
|
'nfc_submit_token_hash' => '',
|
|
'nfc_submit_token_updated_at' => '',
|
|
'created_at' => gmdate('c'),
|
|
];
|
|
|
|
if (!writeJsonFile('people.json', [$newPerson])) {
|
|
sendJson(['success' => false, 'error' => 'Failed to save people'], 500);
|
|
}
|
|
|
|
setSessionPerson($newPerson['id'], true);
|
|
$safe = $newPerson;
|
|
unset($safe['pin_hash']);
|
|
sendJson(['success' => true, 'person' => $safe]);
|