-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.js
135 lines (117 loc) · 3.1 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
const express = require("express");
const jwt = require("jsonwebtoken");
const app = express();
const port = 3000;
const mongoose = require("mongoose");
const cors = require("cors");
app.use(cors());
const SERCET_KEY = "zobime660";
//mongoose schema
const UserSchema = new mongoose.Schema({
name: String,
phoneno: Number,
password: String,
city: String,
percentage: Number,
board: String,
});
const ITISchema = new mongoose.Schema({
name: String,
address: String,
phoneno: Number,
city: String,
Cutoffpercentage: Number,
board: String,
knowfor: String,
websitelink: String,
admissionon: Boolean,
courses: [String],
});
//mongoose model
const ITI = mongoose.model("ITI", ITISchema);
const User = mongoose.model("User", UserSchema);
//For signup
app.post("/signup", async (req, res) => {
const { name, phoneno, password, city, percentage, board } = req.body;
const isuser = await User.findOne({ phoneno });
if (isuser) {
res.status(400).json({ message: "User already exists" });
} else {
const newUser = new User({
name,
phoneno,
password,
city,
percentage,
board,
});
await newUser.save();
const token = jwt.sign({ phoneno }, SERCET_KEY, { expiresIn: "1h" });
res.status(200).json({ message: "User created", token });
}
});
// For login
app.post("/login", (req, res) => {
const { phoneno, password } = req.body;
const isuser = User.findOne({ phoneno, password });
const redirecturl = "/homepage.html";
if (isuser) {
const token = jwt.sign({ phoneno }, SERCET_KEY, { expiresIn: "1h" });
res.status(200).json({ message: "User logged in", token, redirecturl });
} else {
res.status(400).json({ message: "User not found" });
}
});
app.get("/getrequiredITI", (req, res) => {
const { city, percentage, knowfor } = req.body;
const reqITI = ITI.find({ city, percentage, knowfor });
if (reqITI) {
res.status(200).send({ message: "REQUIRED ITI", reqITI });
} else {
res.status(404).send({ message: "please retry" });
}
});
app.get("/getrequiredITI:id", (req, res) => {
const reqITI = ITI.findOne({ city, percentage, knowfor });
if (reqITI) {
res.status(200).send({ message: "REQUIRED ITI", reqITI });
} else {
res.status(404).send({ message: "please retry" });
}
});
app.post("/addITI", async (req, res) => {
const {
name,
address,
phoneno,
city,
Cutoffpercentage,
board,
knowfor,
websitelink,
admissionon,
courses,
} = req.body;
const newiti = new ITI({
name,
address,
phoneno,
city,
Cutoffpercentage,
board,
knowfor,
websitelink,
admissionon,
courses,
});
await newiti.save();
res.status(200).json({ message: "ITI added" });
});
app.listen(port, () => {
mongoose
.connect(
"mongodb+srv://zobime660:[email protected]/login?retryWrites=true&w=majority"
)
.then(console.log("connected to database"));
console.log("server is started");
});