2026-08-15 10:32:13 -04:00
|
|
|
import { sql } from '../../../../lib/sql.js';
|
2025-07-26 22:51:58 -04:00
|
|
|
import { getUserFromRequest } from '../../../../lib/permission-middleware';
|
2025-07-26 23:06:52 -04:00
|
|
|
import { isValidSlug } from '../../../../lib/slug-utils';
|
2025-07-26 22:51:58 -04:00
|
|
|
|
|
|
|
|
export default async function handler(req, res) {
|
|
|
|
|
if (req.method !== 'GET') {
|
|
|
|
|
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' });
|
|
|
|
|
}
|
|
|
|
|
|
2025-07-26 23:16:52 -04:00
|
|
|
const { identifier } = req.query;
|
2025-07-26 22:51:58 -04:00
|
|
|
|
2025-07-26 23:06:52 -04:00
|
|
|
if (!identifier) {
|
|
|
|
|
return res.status(400).json({ error: 'Collection identifier is required' });
|
2025-07-26 22:51:58 -04:00
|
|
|
}
|
|
|
|
|
|
2025-07-26 23:06:52 -04:00
|
|
|
// Determine if identifier is a slug or numeric ID
|
|
|
|
|
const isSlug = isValidSlug(identifier) || isNaN(parseInt(identifier));
|
|
|
|
|
|
2025-07-26 22:51:58 -04:00
|
|
|
// Verify user has access to this collection
|
2025-07-26 23:06:52 -04:00
|
|
|
let collectionResult;
|
|
|
|
|
if (isSlug) {
|
|
|
|
|
collectionResult = await sql`
|
|
|
|
|
SELECT c.*, cp.role as user_role
|
|
|
|
|
FROM collections c
|
|
|
|
|
LEFT JOIN collection_permissions cp ON c.id = cp.collection_id AND cp.user_id = ${user.userId} AND cp.status = 'active'
|
|
|
|
|
WHERE c.slug = ${identifier}
|
|
|
|
|
AND (
|
|
|
|
|
c.user_id = ${user.userId} OR
|
|
|
|
|
cp.id IS NOT NULL OR
|
|
|
|
|
c.is_public = true
|
|
|
|
|
)
|
|
|
|
|
`;
|
|
|
|
|
} else {
|
|
|
|
|
const numericId = parseInt(identifier);
|
|
|
|
|
collectionResult = await sql`
|
|
|
|
|
SELECT c.*, cp.role as user_role
|
|
|
|
|
FROM collections c
|
|
|
|
|
LEFT JOIN collection_permissions cp ON c.id = cp.collection_id AND cp.user_id = ${user.userId} AND cp.status = 'active'
|
|
|
|
|
WHERE c.id = ${numericId}
|
|
|
|
|
AND (
|
|
|
|
|
c.user_id = ${user.userId} OR
|
|
|
|
|
cp.id IS NOT NULL OR
|
|
|
|
|
c.is_public = true
|
|
|
|
|
)
|
|
|
|
|
`;
|
|
|
|
|
}
|
2025-07-26 22:51:58 -04:00
|
|
|
|
2025-07-26 23:16:52 -04:00
|
|
|
if (collectionResult.length === 0) {
|
2025-07-26 22:51:58 -04:00
|
|
|
return res.status(404).json({ error: 'Collection not found or access denied' });
|
|
|
|
|
}
|
|
|
|
|
|
2025-07-26 23:16:52 -04:00
|
|
|
const collection = collectionResult[0];
|
2025-07-26 22:51:58 -04:00
|
|
|
|
2025-07-26 23:16:52 -04:00
|
|
|
// Get collection activity (this would typically come from an activity log table)
|
|
|
|
|
// For now, we'll return a simple mock response
|
|
|
|
|
const activities = [
|
|
|
|
|
{
|
|
|
|
|
id: 1,
|
|
|
|
|
type: 'card_added',
|
|
|
|
|
description: 'Added Lightning Bolt to collection',
|
|
|
|
|
timestamp: new Date().toISOString(),
|
|
|
|
|
user: user.email
|
|
|
|
|
}
|
|
|
|
|
];
|
2025-07-26 22:51:58 -04:00
|
|
|
|
2025-07-26 23:16:52 -04:00
|
|
|
res.status(200).json({ activities });
|
2025-07-26 22:51:58 -04:00
|
|
|
|
|
|
|
|
} catch (error) {
|
2025-07-26 23:16:52 -04:00
|
|
|
console.error('Collection activity API error:', error);
|
2025-07-26 22:51:58 -04:00
|
|
|
res.status(500).json({ error: 'Internal server error' });
|
|
|
|
|
}
|
|
|
|
|
}
|