updated the Auth apis
This commit is contained in:
parent
aebdca98cf
commit
02c09fe74b
@ -13,12 +13,7 @@ const router = express.Router();
|
|||||||
router.route("/rd-login").post(loginRD);
|
router.route("/rd-login").post(loginRD);
|
||||||
router.route("/rd-get-me").get(isAuthenticatedRD, getmyProfile);
|
router.route("/rd-get-me").get(isAuthenticatedRD, getmyProfile);
|
||||||
router.post("/forgot-password", forgotPassword);
|
router.post("/forgot-password", forgotPassword);
|
||||||
router.put(
|
router.put("/rd-password/update", isAuthenticatedRD, ChangePasswordRD);
|
||||||
"/rd-password/update",
|
|
||||||
isAuthenticatedRD,
|
|
||||||
|
|
||||||
ChangePasswordRD
|
|
||||||
);
|
|
||||||
router.patch(
|
router.patch(
|
||||||
"/rd-profile/update",
|
"/rd-profile/update",
|
||||||
isAuthenticatedRD,
|
isAuthenticatedRD,
|
||||||
|
@ -1,5 +1,9 @@
|
|||||||
import RetailDistributor from "./RetailDistributorModel.js";
|
import RetailDistributor from "./RetailDistributorModel.js";
|
||||||
import validator from "validator";
|
import validator from "validator";
|
||||||
|
import password from "secure-random-password";
|
||||||
|
import crypto from "crypto";
|
||||||
|
import catchAsyncErrors from "../../middlewares/catchAsyncErrors.js";
|
||||||
|
import sendEmail, { sendOtp } from "../../Utils/sendEmail.js";
|
||||||
export const loginRD = async (req, res) => {
|
export const loginRD = async (req, res) => {
|
||||||
const { email, password } = req.body;
|
const { email, password } = req.body;
|
||||||
|
|
||||||
@ -137,14 +141,9 @@ export const forgotPassword = async (req, res) => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
export const UpdateProfile = async (req, res) => {
|
export const UpdateProfile = async (req, res) => {
|
||||||
const { name, email } = req.body;
|
const { name } = req.body; // Only expecting name from the request body
|
||||||
|
|
||||||
const userId = req.user._id; // Use the ID from params or authenticated user
|
const userId = req.user._id; // User ID from authenticated user
|
||||||
|
|
||||||
// Validate email if provided
|
|
||||||
if (email && !validator.isEmail(email)) {
|
|
||||||
return res.status(400).json({ message: "Invalid email address" });
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
try {
|
||||||
// Find the RetailDistributor by user ID
|
// Find the RetailDistributor by user ID
|
||||||
@ -155,27 +154,12 @@ export const UpdateProfile = async (req, res) => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Assuming you have an 'isVerified' field in your RetailDistributor schema
|
// Assuming you have an 'isVerified' field in your RetailDistributor schema
|
||||||
if (!retailDistributor.isVerified) {
|
|
||||||
return res
|
|
||||||
.status(400)
|
|
||||||
.json({ message: "Retail Distributor not verified" });
|
|
||||||
}
|
|
||||||
|
|
||||||
// Check if email is being changed and if it's already in use
|
|
||||||
if (email && email !== retailDistributor.email) {
|
|
||||||
const emailExists = await RetailDistributor.findOne({ email });
|
|
||||||
if (emailExists && emailExists._id.toString() !== userId) {
|
|
||||||
return res.status(400).json({
|
|
||||||
message:
|
|
||||||
"This Email ID is already in use by another Retail Distributor",
|
|
||||||
});
|
|
||||||
}
|
|
||||||
retailDistributor.email = email;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Update name if provided
|
// Update name if provided
|
||||||
if (name) {
|
if (name) {
|
||||||
retailDistributor.name = name;
|
retailDistributor.name = name;
|
||||||
|
} else {
|
||||||
|
return res.status(400).json({ message: "Name is required" });
|
||||||
}
|
}
|
||||||
|
|
||||||
// Save the updated RetailDistributor
|
// Save the updated RetailDistributor
|
||||||
|
Loading…
Reference in New Issue
Block a user