Skip to content

Commit de6af51

Browse files
feat: api modified for app (#3)
* feat: 🐻 event admin logic and user cart Changes made - Event admin logic changed - User cart updation status code changed * feat: 🐻 event admin logic and user cart Changes made - Event admin logic changed - User cart updation status code changed * fix: vercel test prod * fix: vercel prod deploy get * Delete package-lock.json * Delete public/.gitkeep * Delete src/index.ts * Delete vercel.json
1 parent a592036 commit de6af51

11 files changed

+108
-7934
lines changed

package-lock.json

-7,855
This file was deleted.

src/controllers/adminController.ts

+58-20
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ import {
88
getEventAdminPassword,
99
getUsersforEvent,
1010
insertEvent,
11+
addEventAdmin,
12+
insertEvents4Admin,
13+
getAdminEvents
1114
} from "../queries/adminQueries.js";
1215
import {
1316
EventIdValidator,
@@ -55,21 +58,29 @@ const VerifyPaid = async (req: Request, res: Response) => {
5558
}
5659

5760
const { user_email } = UserEmailValidator.parse(req.body);
58-
const { event_id } = EventIdValidator.parse(req.body.admin);
61+
const { event_id } = EventIdValidator.parse(req.body);
62+
console.log(req.body.admin)
5963

60-
const client = await pool.connect();
61-
const result = await client.query(allowIfPaid, [user_email, event_id]);
62-
client.release();
64+
if(req.body.admin.is_super_admin || (req.body.admin.events_id.includes(event_id))){
65+
const client = await pool.connect();
66+
const result = await client.query(allowIfPaid, [user_email, event_id]);
67+
client.release();
6368

64-
if (result.rows.length == 1)
65-
return res
66-
.status(200)
67-
.json({ statusCode: 200, body: { message: "Sucessfull" } });
68-
else
69-
return res.status(404).json({
70-
statusCode: 404,
71-
body: { message: "User not Paid, User not allowed" },
72-
});
69+
if (result.rows.length == 1)
70+
return res
71+
.status(200)
72+
.json({ statusCode: 200, body: { message: "Sucessfull" } });
73+
else
74+
return res.status(404).json({
75+
statusCode: 404,
76+
body: { message: "User not Paid, User not allowed" },
77+
});
78+
}else{
79+
return res.status(401).json({
80+
statusCode: 401,
81+
body: { message: "Admin not Authorized" },
82+
});
83+
}
7384
};
7485

7586
/* TO CREATE USER - "USER REGISTRATION"
@@ -114,28 +125,33 @@ const UserLogIn = async (req: Request, res: Response, next: NextFunction) => {
114125
/* FOR EVENT CORDINATOR LOGIN
115126
*/
116127
const EventLogin = async (req: Request, res: Response, next: NextFunction) => {
117-
const { event_id, password } = EventLoginValidator.parse(req.body);
128+
const { admin_id, password } = EventLoginValidator.parse(req.body);
118129

119130
const client = await pool.connect();
120-
const data = await client.query(getEventAdminPassword, [event_id]);
131+
const data = await client.query(getEventAdminPassword, [admin_id]);
121132

122133
client.release();
123134

124135
if (data.rows.length == 0)
125136
return res
126137
.status(400)
127-
.json({ statusCode: 400, body: { message: "Bad Request" } });
138+
.json({ statusCode: 400, body: { message: "No Such Admin" } });
128139

129140
const user = data.rows[0];
130-
if (await bcrypt.compare(password, user.password)) next();
141+
if (await bcrypt.compare(password, user.password)){
142+
const events = await client.query(getAdminEvents, [admin_id])
143+
let events_id : Array<string> = []
144+
events.rows.forEach(ele=>events_id.push(ele.event_id))
145+
req.body.events_id = events_id
146+
next();
147+
}
131148
else
132149
return res
133150
.status(401)
134151
.json({ statusCode: 401, body: { message: "Wrong Password" } });
135152
};
136153

137-
/* FOR GETTING USERS FROM A PARTICULAR EVENT
138-
*/
154+
/* FOR GETTING USERS FROM A PARTICULAR EVENT */
139155
const GetUsersFromEvent = async (req: Request, res: Response) => {
140156
if (!req.body.admin.is_event_admin) {
141157
return res
@@ -144,7 +160,7 @@ const GetUsersFromEvent = async (req: Request, res: Response) => {
144160
}
145161

146162
const client = await pool.connect();
147-
const { event_id } = EventIdValidator.parse(req.body.admin);
163+
const { event_id } = EventIdValidator.parse(req.body);
148164
const data = await client.query(getUsersforEvent, [event_id]);
149165

150166
return res.status(200).json({
@@ -201,6 +217,27 @@ const CreateEvent = async (req: Request, res: Response) => {
201217
.json({ statusCode: 200, body: { message: "Sucessfull" } });
202218
};
203219

220+
const EventAdminSignUp = async(req: Request, res: Response) => {
221+
const client = await pool.connect()
222+
try{
223+
const {admin_id, password, events_id} = req.body
224+
const hashedPass = await bcrypt.hash(password, 10);
225+
await client.query(begin)
226+
await client.query(addEventAdmin, [admin_id, hashedPass])
227+
await client.query(insertEvents4Admin, [admin_id, events_id])
228+
await client.query(commit)
229+
return res
230+
.status(200)
231+
.json({ statusCode: 200, body: { message: "Admin added with Events ID" } });
232+
}catch(err){
233+
console.log(err)
234+
await client.query(rollback)
235+
return res
236+
.status(500)
237+
.json({ statusCode: 500, body: { message: "Something went wrong" } });
238+
}
239+
}
240+
204241
export {
205242
UpdatePaid,
206243
VerifyPaid,
@@ -210,4 +247,5 @@ export {
210247
GetUsersFromEvent,
211248
UpdateUserCart,
212249
CreateEvent,
250+
EventAdminSignUp
213251
};

src/controllers/sesController.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -329,8 +329,7 @@ const Sendotp = async (req: Request, res: Response) => {
329329
const {otp,email} = req.body;
330330
transporter.sendMail({
331331
from: process.env.VERIFIED_EMAIL,
332-
to: process.env.VERIFIED_EMAIL,
333-
bcc: email,
332+
to: email,
334333
subject: `OTP`,
335334
html: `<html>
336335
<body style="width: 900px; padding: 0; margin: 0; box-sizing: border-box">

src/controllers/userController.ts

+29-13
Original file line numberDiff line numberDiff line change
@@ -27,16 +27,26 @@ const GetUserDetails = async (req: Request, res: Response) => {
2727
};
2828

2929
const CreateUser = async (req: Request, res: Response) => {
30-
const data = createUserValidator.parse(req.body);
31-
const user = emailValidator.parse(req.body.user);
32-
const sql_arr = [data.name, user.email, data.phone_no, data.clg_name];
33-
const client = await pool.connect();
34-
await client.query(createUser, [...sql_arr]).then(() => {
35-
client.release();
36-
});
37-
return res
38-
.status(200)
39-
.json({ statusCode: 200, message: "User Created Sucessfully" });
30+
try{
31+
const data = createUserValidator.parse(req.body);
32+
const user = emailValidator.parse(req.body.user);
33+
const sql_arr = [data.name, user.email, data.phone_no, data.clg_name];
34+
const client = await pool.connect();
35+
await client.query(createUser, [...sql_arr]).then(() => {
36+
client.release();
37+
});
38+
return res
39+
.status(200)
40+
.json({ statusCode: 200, message: "User Created Sucessfully" });
41+
}catch(err){
42+
if (err && (err as PostgresError).code === "23505")
43+
return res
44+
.status(550)
45+
.json({ statusCode: 550, body: { message: "User Already Found" } });
46+
}
47+
return res
48+
.status(500)
49+
.json({ statusCode: 500, body: { message: "Internal Server Error" } });
4050
};
4151

4252
const GetUserCart = async (req: Request, res: Response) => {
@@ -75,10 +85,16 @@ const UpdateUserCart = async (
7585
});
7686
} catch (err) {
7787
await client.query(rollback);
78-
if (err && (err as PostgresError).code === "23503") {
88+
if (err && (err as PostgresError).code === "23503" &&
89+
(err as PostgresError).constraint === "users_events_user_email_fkey") {
7990
return res
80-
.status(550)
81-
.json({ statusCode: 550, body: { message: "Event or User Not Found" } });
91+
.status(551)
92+
.json({ statusCode: 551, body: { message: "User Not Found" } });
93+
}else if(err && (err as PostgresError).code === "23503" &&
94+
(err as PostgresError).constraint === "users_events_event_id_fkey"){
95+
return res
96+
.status(552)
97+
.json({ statusCode: 552, body: { message: "Event Not Found" } });
8298
}
8399
next(err);
84100

src/index.ts

-36
This file was deleted.

src/interfaces/eventInterface.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ export type EventsHome = {
2828
date: string;
2929
};
3030

31-
export type tokenAdminToken = {
31+
export type eventAdminToken = {
3232
is_event_admin: boolean;
33-
event_id: string;
33+
is_super_admin: boolean;
34+
events_id: Array<string>;
3435
};

src/interfaces/userInterface.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
export interface PostgresError extends Error {
22
code: string;
3+
constraint: string;
34
}
45

56
export interface cartType {

src/middlewares/authHandler.ts

+4-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import axios from "axios";
22
import jwt from "jsonwebtoken";
33
import { SECRET } from "../../config/tokenSecret.js";
44
import { tokenType } from "../interfaces/adminInterface.js";
5-
import { tokenAdminToken } from "../interfaces/eventInterface.js";
5+
import { eventAdminToken } from "../interfaces/eventInterface.js";
66
import { NextFunction, Response, Request } from "express";
77

88
export const AuthourizeAdmin = (
@@ -54,9 +54,10 @@ export const CreateAdminToken = async (req: Request, res: Response) => {
5454
};
5555

5656
export const CreateEventAdminToken = async (req: Request, res: Response) => {
57-
const tokenData: tokenAdminToken = {
57+
const tokenData: eventAdminToken= {
5858
is_event_admin: true,
59-
event_id: req.body.event_id,
59+
is_super_admin: (req.body.events_id.length === 0),
60+
events_id: req.body.events_id
6061
};
6162
const token: string = jwt.sign(tokenData, SECRET);
6263
return res.status(200).json({

src/queries/adminQueries.ts

+7-1
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,14 @@ export const insertAdmin: string =
66
"INSERT INTO admin (uname, password) VALUES ($1, $2)";
77
export const getAdminPassword: string =
88
"SELECT password FROM admin WHERE uname = $1";
9-
export const getEventAdminPassword: string = `SELECT password FROM events WHERE id = $1`;
109
export const getUsersforEvent: string = `select u.name, u.phone_no, u.clg_name, ue.is_present from users u join
1110
users_events ue on ue.user_email = u.email where ue.event_id = $1`;
1211
export const insertEvent: string = `insert into events (name, id, fee, pass_id, password) values
1312
($1, $2, $3, $4, $5)`;
13+
export const addEventAdmin: string = `insert into event_admin (id, password) values ($1, $2);`
14+
export const insertEvents4Admin: string = `
15+
INSERT INTO admin_events(admin_id, event_id)
16+
SELECT $1::varchar, unnest($2::varchar[])
17+
ON CONFLICT (admin_id, event_id) DO NOTHING`;
18+
export const getEventAdminPassword: string = `SELECT password FROM event_admin WHERE id = $1`;
19+
export const getAdminEvents: string = `SELECT event_id FROM admin_events WHERE admin_id = $1`;

src/routes/adminRoute.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ import {
88
EventLogin,
99
GetUsersFromEvent,
1010
UpdateUserCart,
11-
CreateEvent
11+
CreateEvent,
12+
EventAdminSignUp
1213
} from "../controllers/adminController.js";
1314
import asyncMiddleware from "../middlewares/asyncMiddleware.js";
1415
import {
@@ -28,6 +29,7 @@ router.get("/get-users", AuthourizeAdmin, asyncMiddleware(GetUsersFromEvent));
2829

2930
//Comment this while PRODUCTION
3031
router.post("/signup", asyncMiddleware(UserSignUp));
32+
router.post("/event/signup", asyncMiddleware(EventAdminSignUp));
3133
router.post("/create-event", asyncMiddleware(CreateEvent))
3234

3335
router.post("/login", asyncMiddleware(UserLogIn), CreateAdminToken);

src/validators/adminValidators.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ const AdminSchema = z.object({
44
.string({ required_error: "uname is required" })
55
.max(10, "user name should be atmost 10 characters"),
66
password: z.string(),
7+
admin_id: z.string(),
78
event_id: z.string(),
89
user_email: z
910
.string({ required_error: "email is required" })
@@ -12,7 +13,7 @@ const AdminSchema = z.object({
1213
const EventIdValidator = AdminSchema.pick({ event_id: true });
1314
const UserEmailValidator = AdminSchema.pick({ user_email: true });
1415
const EventLoginValidator = AdminSchema.pick({
15-
event_id: true,
16+
admin_id: true,
1617
password: true,
1718
});
1819
const UserSignUpValidator = AdminSchema.pick({ uname: true, password: true });

0 commit comments

Comments
 (0)