From fefdb2244d9a2ff4aae7364c5af881383b7c6e63 Mon Sep 17 00:00:00 2001 From: mai-vu <96965521+mai-vu@users.noreply.github.com> Date: Tue, 21 May 2024 21:22:59 -0700 Subject: [PATCH] Added contact-stats collection (#67) * added contact-stat schema * added API endpoints for contact-stats --- src/app/api/contact-stat/route.js | 115 ++++++++++++++++++++++++++++++ src/app/api/contactStat.js | 5 ++ 2 files changed, 120 insertions(+) create mode 100644 src/app/api/contact-stat/route.js create mode 100644 src/app/api/contactStat.js diff --git a/src/app/api/contact-stat/route.js b/src/app/api/contact-stat/route.js new file mode 100644 index 0000000..6d1e905 --- /dev/null +++ b/src/app/api/contact-stat/route.js @@ -0,0 +1,115 @@ +import { NextResponse } from 'next/server'; +import { connectMongoDB } from '@/libs/mongodb'; +import contactStat from '@/app/api/contactStat'; +import mongoose from 'mongoose'; + +export async function GET() { + try { + await connectMongoDB(); + + const ContactStat = + mongoose.models['contact-stats'] || + mongoose.model('contact-stats', contactStat); + + const contactStats = await ContactStat.find(); + + return NextResponse.json({ contactStats }, { status: 200 }); + } catch (error) { + console.error('Error fetching contact stats:', error); + return NextResponse.json( + { message: 'Failed to fetch contact stats' }, + { status: 500 } + ); + } +} + +export async function POST(req) { + try { + const emailAddresses = await req.json(); + + if (!Array.isArray(emailAddresses)) { + return NextResponse.json( + { message: 'Bad Request - Email addresses must be an array' }, + { status: 400 } + ); + } + + let newEmailAddresses = []; + + //if emailAddresses is not empty, add non duplicate email addresses to the contactStat collection + if (emailAddresses.length > 0) { + await connectMongoDB(); + const ContactStat = + mongoose.models['contact-stats'] || + mongoose.model('contact-stats', contactStat); + + // Get all email addresses from the contactStat collection + const existingEmailAddresses = await ContactStat.find({}, { email: 1 }); + + // Filter out email addresses that are not already in the contactStat collection + newEmailAddresses = emailAddresses.filter( + ({ email }) => + !existingEmailAddresses.some( + existingEmail => existingEmail.email === email + ) + ); + + // Insert email addresses into the contactStat collection + await ContactStat.insertMany(newEmailAddresses); + } + + //return total number of email addresses added and status code 200 + return NextResponse.json( + { message: `Added ${newEmailAddresses.length} email addresses` }, + { status: 200 } + ); + } catch (error) { + console.error('Error inserting contact stats:', error); + return NextResponse.json( + { message: 'Failed to insert contact stats' }, + { status: 500 } + ); + } +} + +export async function PATCH(req) { + try { + const { email, sent } = await req.json(); + + if (!email) { + return NextResponse.json( + { message: 'Bad Request - Email parameter is required' }, + { status: 400 } + ); + } + + await connectMongoDB(); + + const ContactStat = + mongoose.models['contact-stats'] || + mongoose.model('contact-stats', contactStat); + + const updatedContactStat = await ContactStat.updateOne( + { email }, + { $set: { sent: sent !== undefined ? sent : true } } + ); + + if (updatedContactStat.nModified === 0) { + return NextResponse.json( + { message: 'No contact stats were updated' }, + { status: 404 } + ); + } + + return NextResponse.json( + { message: 'Contact stats updated successfully' }, + { status: 200 } + ); + } catch (error) { + console.error('Error updating contact stats:', error); + return NextResponse.json( + { message: 'Failed to update contact stats' }, + { status: 500 } + ); + } +} diff --git a/src/app/api/contactStat.js b/src/app/api/contactStat.js new file mode 100644 index 0000000..1667c0e --- /dev/null +++ b/src/app/api/contactStat.js @@ -0,0 +1,5 @@ +import mongoose from 'mongoose'; +export default new mongoose.Schema({ + email: { type: String, required: true }, + sent: Boolean, +});