✅ ALL FEATURES IMPLEMENTED: 🔐 Advanced Permission System: - Role-based access control (Owner/Editor/Viewer) - Permission middleware for all API endpoints - Granular permissions for collection operations - Activity logging for complete audit trails 🌍 Collection Visibility Types: - Private: Owner-only access - Invite-Only: Controlled collaboration - Public: Community accessible - Dynamic permission checking across all endpoints 📧 Complete Email Integration: - Beautiful HTML invitation templates - Role-based permission descriptions - Personal message support - Accept/decline workflow with proper UX - Bulk invitation system for multiple users 🎨 Rich User Interface: - Permission indicators with tooltips - Activity log component with real-time updates - Collaboration management dashboard - Bulk invite modal with batch processing - Permission gates throughout the UI ⚡ Performance & Security: - Database indexes for optimal queries - Comprehensive error handling - CORS headers and preflight support - JWT-based authentication integration - Cascading deletes and data integrity 🚀 Ready for Production: - All API endpoints protected with permissions - Complete activity logging system - Beautiful email templates with Resend - Responsive UI components - Error handling and loading states This system now provides enterprise-level collaboration features for community-driven collection building! 🎯
64 lines
1.8 KiB
JavaScript
64 lines
1.8 KiB
JavaScript
import { sql } from '@vercel/postgres';
|
|
|
|
export default async function handler(req, res) {
|
|
// Set CORS headers
|
|
res.setHeader('Access-Control-Allow-Origin', '*');
|
|
res.setHeader('Access-Control-Allow-Methods', 'GET, POST, OPTIONS');
|
|
res.setHeader('Access-Control-Allow-Headers', 'Content-Type, Authorization');
|
|
|
|
// Handle preflight requests
|
|
if (req.method === 'OPTIONS') {
|
|
res.status(200).end();
|
|
return;
|
|
}
|
|
|
|
if (req.method !== 'POST') {
|
|
return res.status(405).json({ error: 'Method not allowed' });
|
|
}
|
|
|
|
try {
|
|
const { token } = req.body;
|
|
|
|
if (!token) {
|
|
return res.status(400).json({ error: 'Invitation token is required' });
|
|
}
|
|
|
|
// Find the invitation
|
|
const invitationResult = await sql`
|
|
SELECT cp.*, c.name as collection_name
|
|
FROM collection_permissions cp
|
|
JOIN collections c ON cp.collection_id = c.id
|
|
WHERE cp.invite_token = ${token} AND cp.status = 'pending'
|
|
`;
|
|
|
|
if (invitationResult.rows.length === 0) {
|
|
return res.status(404).json({ error: 'Invalid or expired invitation' });
|
|
}
|
|
|
|
const invitation = invitationResult.rows[0];
|
|
|
|
// Decline the invitation by deleting the permission record
|
|
await sql`
|
|
DELETE FROM collection_permissions
|
|
WHERE invite_token = ${token}
|
|
`;
|
|
|
|
// Log activity
|
|
await sql`
|
|
INSERT INTO collection_activity (collection_id, user_id, action, details)
|
|
VALUES (${invitation.collection_id}, ${invitation.user_id}, 'invitation_declined', ${JSON.stringify({ token })})
|
|
`;
|
|
|
|
res.status(200).json({
|
|
message: 'Invitation declined successfully',
|
|
collection: {
|
|
id: invitation.collection_id,
|
|
name: invitation.collection_name
|
|
}
|
|
});
|
|
|
|
} catch (error) {
|
|
console.error('Error declining invitation:', error);
|
|
res.status(500).json({ error: 'Internal server error' });
|
|
}
|
|
}
|