-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/Edugaze-Inc/edugaze-be into…
… main
- Loading branch information
Showing
9 changed files
with
181 additions
and
81 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
import express, { Request, Response } from "express"; | ||
import { baseUrl } from "../config"; | ||
import { UserMeetings, newUserMeetings, Meeting } from "../models/model"; | ||
import axios from "axios"; | ||
|
||
const router = express.Router(); | ||
|
||
router.post(`${baseUrl}/subscribe/:id`, async (req: Request, res: Response) => { | ||
const id = req.params.id; | ||
|
||
let resV; | ||
//validating the user's token | ||
try { | ||
const token = req.header("Authorization")?.split(" ")[1]; | ||
let config = { | ||
headers: { | ||
Authorization: "Bearer " + token, | ||
}, | ||
}; | ||
resV = await axios.get( | ||
"http://auth-service:4002/api/v1/auth/verify", | ||
config | ||
); | ||
} catch (err) { | ||
return res.status(400).send("User is not authorized"); | ||
} | ||
if (resV.status == 400) { | ||
return res.status(400).send("User is not authorized"); | ||
} | ||
|
||
const user = resV.data._id; | ||
|
||
try { | ||
// checking if the user have meetings and creating a new entry if not | ||
let userMeetings = await UserMeetings.findOne({ name: user }); | ||
if (!userMeetings) { | ||
userMeetings = await newUserMeetings({ | ||
name: user, | ||
meetings: [], | ||
}); | ||
} | ||
|
||
if (!id.match(/^[0-9a-fA-F]{24}$/)) { | ||
return res.status(400).send("Meeting is not found"); | ||
} | ||
|
||
//checking if the meeting exist | ||
const meeting = await Meeting.findOne({ _id: id }); | ||
if (!meeting) { | ||
return res.status(400).send("Meeting is not found"); | ||
} | ||
|
||
//check if the meeting is already in the user meetings | ||
if (!userMeetings.meetings.includes(id)) { | ||
userMeetings.meetings.push(id); | ||
} | ||
|
||
userMeetings | ||
.save() | ||
.then((doc) => {}) | ||
.catch((err) => { | ||
res.status(400).send(err); | ||
}); | ||
|
||
return res.status(201).send(meeting); | ||
} catch (error) { | ||
return res.status(400).send(error.message); | ||
} | ||
}); | ||
|
||
export { router as subscribeMeetingsRouter }; |