Add TLD registry import/export/create & logging

Add CSV/JSON export and import endpoints and UI for the TLD registry, plus a manual Create TLD modal and drag-and-drop import UX. Standardize import/export logging by adding Logger('import'/'export') calls to Domains, Tags, Notification Groups and TLD flows. Add TldRegistry model helpers (findByTld, getAll) used for deduplication and exports. Update routes for /tld-registry export/import/create and add a migration to bump app_version to 1.1.4. Also update default app_version, enhance WhoisService parsing (registrar regex and ISO-8601 date handling), and adjust the TLD registry index view to include IANA and Export dropdowns, import modal, create modal, and related JS behavior.
This commit is contained in:
Hosteroid
2026-03-02 11:17:58 +02:00
parent aca4c14b8b
commit ed3e5739f4
13 changed files with 792 additions and 29 deletions

View File

@@ -56,6 +56,7 @@ class InstallerController extends Controller
'023_update_app_version_to_1.1.1.sql',
'024_add_status_notifications_v1.1.2.sql',
'025_add_update_system_v1.1.3.sql',
'026_update_app_version_v1.1.4.sql',
];
try {
@@ -198,6 +199,7 @@ class InstallerController extends Controller
'023_update_app_version_to_1.1.1.sql',
'024_add_status_notifications_v1.1.2.sql',
'025_add_update_system_v1.1.3.sql',
'026_update_app_version_v1.1.4.sql',
];
}
@@ -420,6 +422,7 @@ class InstallerController extends Controller
'023_update_app_version_to_1.1.1.sql',
'024_add_status_notifications_v1.1.2.sql',
'025_add_update_system_v1.1.3.sql',
'026_update_app_version_v1.1.4.sql',
];
$stmt = $pdo->prepare("INSERT INTO migrations (migration) VALUES (?) ON DUPLICATE KEY UPDATE migration=migration");
@@ -655,7 +658,9 @@ class InstallerController extends Controller
// Fallback: detect "to" version from which migrations were run
if ($toVersion === $fromVersion) {
if (in_array('025_add_update_system_v1.1.3.sql', $executed)) {
if (in_array('026_update_app_version_v1.1.4.sql', $executed)) {
$toVersion = '1.1.4';
} elseif (in_array('025_add_update_system_v1.1.3.sql', $executed)) {
$toVersion = '1.1.3';
} elseif (in_array('024_add_status_notifications_v1.1.2.sql', $executed)) {
$toVersion = '1.1.2';