Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue Resolved: #12 and #2 #30

Merged
merged 8 commits into from
Jan 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
130 changes: 130 additions & 0 deletions backend/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,130 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*
.pnpm-debug.log*

# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage
*.lcov

# nyc test coverage
.nyc_output

# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# Snowpack dependency directory (https://snowpack.dev/)
web_modules/

# TypeScript cache
*.tsbuildinfo

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional stylelint cache
.stylelintcache

# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variable files
.env
.env.development.local
.env.test.local
.env.production.local
.env.local

# parcel-bundler cache (https://parceljs.org/)
.cache
.parcel-cache

# Next.js build output
.next
out

# Nuxt.js build / generate output
.nuxt
dist

# Gatsby files
.cache/
# Comment in the public line in if your project uses Gatsby and not Next.js
# https://nextjs.org/blog/next-9-1#public-directory-support
# public

# vuepress build output
.vuepress/dist

# vuepress v2.x temp and cache directory
.temp
.cache

# Docusaurus cache and generated files
.docusaurus

# Serverless directories
.serverless/

# FuseBox cache
.fusebox/

# DynamoDB Local files
.dynamodb/

# TernJS port file
.tern-port

# Stores VSCode versions used for testing VSCode extensions
.vscode-test

# yarn v2
.yarn/cache
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*
28 changes: 28 additions & 0 deletions backend/app.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
import * as dotenv from "dotenv";
import express from "express";
import cors from "cors";
import ErrorMiddleware from "./middleware/error.js";

//routes
import contact from "./routers/contact.js";

const app = express();

//config
dotenv.config({ path: "./config/config.env" });

//CORS
app.use(cors({origin:"*"}));


app.use(express.json({ limit: "10mb" }));
app.use(express.urlencoded({ limit: "10mb", extended: true }));


app.use("/api", contact);


// Custom Error Middleware
app.use(ErrorMiddleware);

export default app;
3 changes: 3 additions & 0 deletions backend/config/config.env
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
PORT = 7007

MONGO= mongodb+srv://chefbook:[email protected]/ChefBook
12 changes: 12 additions & 0 deletions backend/config/db.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import mongoose from "mongoose";

const Database = () => {
mongoose.connect(process.env.MONGO, {
}).then(() => {
console.log(`MongoDB Connected Successfully`);
}).catch((error) => {
console.error(`MongoDB Connection Error: ${error}`);
});
}

export default Database;
44 changes: 44 additions & 0 deletions backend/controller/contact.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
import Contact from "../models/contact.js";

//Create Faq Query
export const createContactQuery = async (req,res) => {
try{
const newContactData = {
name: req.body.name,
email: req.body.email,
subject: req.body.subject,
message: req.body.message,
};

const contact = await Contact.create(newContactData);

res.status(201).json({
success: true,
message: "Your Tasty Inquiry is cooking! 🌮👩‍🍳 We've received your message and will whip up a response for you shortly. Stay tuned for more Tasty Tips!",
contact
});
} catch (error) {
res.status(500).json({
success: false,
message: error.message,
});
}
};


// Get All Faq Queries
export const getallContactQ = async (req, res) => {
try {
const contact = await Contact.find().sort({ createdAt: -1 });

res.status(200).json({
success: true,
contact,
});
} catch (error) {
res.status(500).json({
success: false,
message: error.message,
});
}
};
27 changes: 27 additions & 0 deletions backend/middleware/error.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
import ErrorHandler from "../utils/errorHandler.js";

const errorHandlerMiddleware = (err, req, res, next) => {
err.statusCode = err.statusCode || 500;
err.message = err.message || "Internal server error";

// wrong MongoDB error
if (err.name === "CastError") {
const message = `Mongo DB Error: Resource not found. Invalid: ${err.path}`;
err = new ErrorHandler(message, 400);
}

if (err.code === 11000) {
const existKey = Object.keys(err.keyValue)[0].split(".")[0];
const message = `Already Exists ${existKey}`;
err = new ErrorHandler(message, 400);
}

console.log(err);
res.status(err.statusCode).json({
success: false,
error: err.message,
});
};

export default errorHandlerMiddleware;

30 changes: 30 additions & 0 deletions backend/models/contact.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
import mongoose from "mongoose";
import validator from "validator";


const ContactSchema = new mongoose.Schema({
name: {
type: String,
required: true,
},
email:{
type: String,
required: true,
validate: [validator.isEmail, "Please enter a valid email address"]
},
subject: {
type: String,
required: true,
},
message: {
type: String,
required: true,
},
timestamp: {
type: Date,
default: Date.now,
},
});


export default mongoose.model("Contact", ContactSchema, "Contact");
Loading