![]() Server : Apache/2 System : Linux server-15-235-50-60 5.15.0-164-generic #174-Ubuntu SMP Fri Nov 14 20:25:16 UTC 2025 x86_64 User : gositeme ( 1004) PHP Version : 8.2.29 Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname Directory : /home/gositeme/.cursor-server/data/User/History/2059cc21/ |
<?php
session_start();
header('Content-Type: application/json');
// Check if user is logged in
if (!isset($_SESSION['user_id'])) {
echo json_encode([
'success' => false,
'message' => 'User not logged in'
]);
exit;
}
$track_id = $_GET['track_id'] ?? null;
if (!$track_id) {
echo json_encode([
'success' => false,
'message' => 'Track ID required'
]);
exit;
}
try {
require_once '../config/database.php';
$pdo = getDBConnection();
// Get track details and verify ownership
$stmt = $pdo->prepare("
SELECT id, title, prompt, status, user_id
FROM music_tracks
WHERE id = ? AND user_id = ? AND status = 'failed'
");
$stmt->execute([$track_id, $_SESSION['user_id']]);
$track = $stmt->fetch(PDO::FETCH_ASSOC);
if (!$track) {
echo json_encode([
'success' => false,
'message' => 'Track not found or not eligible for retry'
]);
exit;
}
// Check if user has enough credits
$stmt = $pdo->prepare("SELECT credits FROM users WHERE id = ?");
$stmt->execute([$_SESSION['user_id']]);
$user = $stmt->fetch(PDO::FETCH_ASSOC);
if ($user['credits'] < 1) {
echo json_encode([
'success' => false,
'message' => 'Insufficient credits to retry track'
]);
exit;
}
// Update track status to processing
$stmt = $pdo->prepare("
UPDATE music_tracks
SET status = 'processing', updated_at = NOW()
WHERE id = ?
");
$stmt->execute([$track_id]);
// Deduct credits
$stmt = $pdo->prepare("UPDATE users SET credits = credits - 1 WHERE id = ?");
$stmt->execute([$_SESSION['user_id']]);
// Here you would typically trigger the AI processing again
// For now, we'll just update the status
echo json_encode([
'success' => true,
'message' => 'Track retry started successfully'
]);
} catch (Exception $e) {
error_log("Error retrying track: " . $e->getMessage());
echo json_encode([
'success' => false,
'message' => 'Internal server error'
]);
}
?>