🐛 Database Fixes: - Added unique constraint on user_cards (user_id, card_id) - Added unique constraint on collection_cards (collection_id, card_id) - Fixed ON CONFLICT clauses in card ownership API ✨ Auto-Sync Feature: - Card ownership now automatically syncs with 'All My Cards' collection - When user marks card as owned → added to system collection - When user removes ownership → removed from system collection - Real-time bidirectional sync between user_cards and collection_cards 🔄 Migration Script: - Cleaned up any duplicate entries - Added necessary database constraints - Synced existing owned cards (0 users had existing data) 🎯 API Improvements: - Simplified card ownership API (removed GET method) - Better error handling and validation - Clear success messages for user feedback - Automatic collection management Card ownership should now work perfectly! 🚀
117 lines
No EOL
3.7 KiB
JavaScript
117 lines
No EOL
3.7 KiB
JavaScript
import { sql } from '@vercel/postgres';
|
|
import { getUserFromRequest } from '../../../../lib/permission-middleware';
|
|
|
|
export default async function handler(req, res) {
|
|
// Set CORS headers
|
|
res.setHeader('Access-Control-Allow-Origin', '*');
|
|
res.setHeader('Access-Control-Allow-Methods', 'POST, OPTIONS');
|
|
res.setHeader('Access-Control-Allow-Headers', 'Content-Type, Authorization');
|
|
|
|
if (req.method === 'OPTIONS') {
|
|
res.status(200).end();
|
|
return;
|
|
}
|
|
|
|
if (req.method !== 'POST') {
|
|
return res.status(405).json({ error: 'Method not allowed' });
|
|
}
|
|
|
|
try {
|
|
// Get authenticated user
|
|
const user = await getUserFromRequest(req);
|
|
if (!user) {
|
|
return res.status(401).json({ error: 'Authentication required' });
|
|
}
|
|
|
|
const { id } = req.query;
|
|
const { quantity } = req.body;
|
|
|
|
if (!id || quantity === undefined) {
|
|
return res.status(400).json({ error: 'Card ID and quantity are required' });
|
|
}
|
|
|
|
const cardId = parseInt(id);
|
|
const cardQuantity = parseInt(quantity);
|
|
|
|
if (isNaN(cardId) || isNaN(cardQuantity) || cardQuantity < 0) {
|
|
return res.status(400).json({ error: 'Invalid card ID or quantity' });
|
|
}
|
|
|
|
// Verify the card exists
|
|
const cardCheck = await sql`SELECT id, name FROM cards WHERE id = ${cardId}`;
|
|
if (cardCheck.rows.length === 0) {
|
|
return res.status(404).json({ error: 'Card not found' });
|
|
}
|
|
|
|
const card = cardCheck.rows[0];
|
|
|
|
// Find the user's "All My Cards" collection
|
|
const allMyCardsCollection = await sql`
|
|
SELECT id FROM collections
|
|
WHERE user_id = ${user.userId}
|
|
AND name = 'All My Cards'
|
|
AND is_system_collection = true
|
|
`;
|
|
|
|
if (allMyCardsCollection.rows.length === 0) {
|
|
return res.status(500).json({ error: 'All My Cards collection not found' });
|
|
}
|
|
|
|
const collectionId = allMyCardsCollection.rows[0].id;
|
|
|
|
if (cardQuantity > 0) {
|
|
// Insert or update user's card ownership
|
|
const result = await sql`
|
|
INSERT INTO user_cards (user_id, card_id, quantity, created_at, updated_at)
|
|
VALUES (${user.userId}, ${cardId}, ${cardQuantity}, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP)
|
|
ON CONFLICT (user_id, card_id)
|
|
DO UPDATE SET
|
|
quantity = ${cardQuantity},
|
|
updated_at = CURRENT_TIMESTAMP
|
|
RETURNING *
|
|
`;
|
|
|
|
// Sync with "All My Cards" collection
|
|
const collectionCardResult = await sql`
|
|
INSERT INTO collection_cards (collection_id, card_id, quantity, created_at, updated_at)
|
|
VALUES (${collectionId}, ${cardId}, ${cardQuantity}, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP)
|
|
ON CONFLICT (collection_id, card_id)
|
|
DO UPDATE SET
|
|
quantity = ${cardQuantity},
|
|
updated_at = CURRENT_TIMESTAMP
|
|
RETURNING *
|
|
`;
|
|
|
|
res.status(200).json({
|
|
success: true,
|
|
message: 'Card ownership updated and synced to All My Cards collection',
|
|
card: {
|
|
id: card.id,
|
|
name: card.name,
|
|
quantity: result.rows[0].quantity
|
|
}
|
|
});
|
|
|
|
} else {
|
|
// Remove card ownership
|
|
await sql`DELETE FROM user_cards WHERE user_id = ${user.userId} AND card_id = ${cardId}`;
|
|
|
|
// Remove from "All My Cards" collection
|
|
await sql`DELETE FROM collection_cards WHERE collection_id = ${collectionId} AND card_id = ${cardId}`;
|
|
|
|
res.status(200).json({
|
|
success: true,
|
|
message: 'Card ownership removed and synced from All My Cards collection',
|
|
card: {
|
|
id: card.id,
|
|
name: card.name,
|
|
quantity: 0
|
|
}
|
|
});
|
|
}
|
|
|
|
} catch (error) {
|
|
console.error('Error handling ownership:', error);
|
|
res.status(500).json({ error: 'Internal server error' });
|
|
}
|
|
}
|