Blame view

src/extensions/users-permissions/strapi-server.js 23.4 KB
1 2 3 4
const utils = require("@strapi/utils");

const _ = require("lodash");
const { sanitize } = utils;
5
const { ApplicationError, ValidationError } = utils.errors;
6 7 8
const {
  validateRegisterBody,
} = require("@strapi/plugin-users-permissions/server/controllers/validation/auth");
9
const { getService } = require("@strapi/plugin-users-permissions/server/utils");
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24

const sanitizeUser = (user, ctx) => {
  const { auth } = ctx.state;
  const userSchema = strapi.getModel("plugin::users-permissions.user");

  return sanitize.contentAPI.output(user, userSchema, { auth });
};

const userPermissionExtension = (plugin) => {
  /** Example of overriding and adding a new endpoint, check the section where we have registered this as a route below. */
  plugin.controllers.user.updateMe = (ctx) => {
    ctx.params.id = ctx.state.user.id;
    return plugin.controllers.user.update(ctx);
  };

Harish Patel committed
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
  plugin.controllers.user.startEndUserOtpLogin = async (ctx) => {
    const { emailAddress, mobileNumber } = ctx.request.body;
    if (!emailAddress || !mobileNumber) {
      throw new ValidationError(
        "Please specify both the email address & mobile numbers."
      );
    }

    const pluginStore = await strapi.store({
      type: "plugin",
      name: "users-permissions",
    });
    const emailSettings = await pluginStore.get({ key: "email" });

    // Find the channel partner first.
40 41 42 43 44 45 46 47 48 49
    // const endUser = await strapi.query("api::end-user.end-user").findOne({
    //   populate: ["user"],
    //   where: {
    //     $and: [
    //       { publishedAt: { $notNull: true } },
    //       { mobileNo: mobileNumber },
    //     ],
    //   },
    // });

50 51 52 53 54 55
    const endUser = await strapi.query("api::end-user.end-user").findOne({
      populate: ["user"],
      where: {
        $and: [{ publishedAt: { $notNull: true } }, { mobileNo: mobileNumber }],
      },
    });
56

Harish Patel committed
57 58 59 60 61 62 63 64 65
    if (!endUser) {
      throw new ValidationError(
        "No end user registered with specified email address, mobile number combination."
      );
    }

    // Find the linked user next.
    const user = await strapi
      .query("plugin::users-permissions.user")
66
      .findOne({ where: { id: endUser.user.id } });
Harish Patel committed
67 68 69 70 71 72 73 74 75 76
    if (!user || user.blocked) {
      throw new ValidationError("Unable to resolve user linked to end user.");
    }

    const resetPasswordSettings = _.get(
      emailSettings,
      "reset_password.options",
      {}
    );
    const oneTimePassword = Math.floor(100000 + Math.random() * 900000);
77

Harish Patel committed
78 79
    const emailToSend = {
      to: user.email,
80
      from: `contact@hiranandani.net`,
jay committed
81
      oneTimePassword: oneTimePassword,
Harish Patel committed
82 83 84
      replyTo: resetPasswordSettings.response_email,
      subject: `Your one time password is: ${oneTimePassword}`,
      text: `Hello ${endUser.fullName}, Your one time password to login to your partner portal is ${oneTimePassword}`,
85 86 87 88 89 90
      html: `<p>Dear ${endUser.fullName},
        Your OTP for Hiranandani Exclusive website login is <strong>${oneTimePassword}</strong> . Valid for 10 minutes. Please do not
        share this OTP.
        
        Regards,
        Hiranandani Team.`,
Harish Patel committed
91
    };
jay committed
92 93 94 95
    const finalData = {
      emailToSend: emailToSend,
      mobileNo: mobileNumber,
      fullName: endUser.fullName,
96
    };
jay committed
97 98 99 100 101 102 103 104 105 106 107 108 109 110 111
    // NOTE: Update the user before sending the email so an Admin can generate the link if the email fails

    // const headers = { "Content-Type": "application/json" };
    // const otpDetails = {
    //   api_key: process.env.SPERTO_API_KEY,
    //   from_name: "Hiranandani",
    //   from_mail: emailToSend.from,
    //   to: emailToSend.to,
    //   subject: emailToSend.subject,
    //   body: emailToSend.html,
    // };
    // await strapi.plugin("email").service("email").send(emailToSend);
    // await axios.get(
    //   `http://vas.themultimedia.in/domestic/sendsms/bulksms.php?username=OSAPI&password=os123456&type=TEXT&sender=HROTPs&entityId=1101407690000029629&templateId=1507166789848358346&mobile=${mobileNumber}&message=Dear%20${endUser.fullName}%0AYour%20OTP%20for%20Hiranandani%20Exclusive%20website%20login%20is%20${oneTimePassword}%0AValid%20for%2010%20minute%20Please%20do%20not%20share%20this%20OTP.%0ARegards%2C%0AHiranandani%20Team.`
    // );
112
    try {
jay committed
113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133
      // const spertoResponse = await axios.post(
      //   "https://net4hgc.sperto.co.in/_api/api_auth_send_mail.php",
      //   otpDetails,
      //   { headers: headers }
      // );
      const spretoOTP = await strapi
        .service("api::end-user.end-user")
        .sendOTPToSpreto(finalData);
      // console.log("spretoOTP", spretoOTP);
      //  EMAIL RESPONSE
      ctx.request.body.httpRequestEmailHeaders = JSON.stringify(
        spretoOTP.spertoEmailResponse.headers
      );
      ctx.request.body.httpRequestEmailMethod =
        spretoOTP.spertoEmailResponse.config.method;
      ctx.request.body.httpRequestEmailUrl =
        spretoOTP.spertoEmailResponse.config.url;
      ctx.request.body.httpsRequestEmailBody =
        spretoOTP.spertoEmailResponse.config.data;
      ctx.request.body.httpResposneEmailBody = JSON.stringify(
        spretoOTP.spertoEmailResponse.data
134
      );
jay committed
135 136 137 138 139

      // SMS RESPONSE

      ctx.request.body.httpSMSRequestHeaders = JSON.stringify(
        spretoOTP.spertoSMSResponse.headers
140
      );
jay committed
141 142 143 144 145 146 147
      ctx.request.body.httpSMSRequestMethod =
        spretoOTP.spertoSMSResponse.config.method;
      ctx.request.body.httpSMSRequestUrl =
        spretoOTP.spertoSMSResponse.config.url;
      // ctx.request.body.httpsSMSRequestBody = spretoOTP.spertoSMSResponse.config.data;
      ctx.request.body.httpSMSResposneBody = JSON.stringify(
        spretoOTP.spertoSMSResponse.data
148
      );
jay committed
149

150
      ctx.request.body.thirdPartyApiError = false;
jay committed
151
      // console.log("spretoOTP", spretoOTP);
Harish Patel committed
152

jay committed
153
      // return spretoOTP;
154
    } catch (error) {
jay committed
155 156
      // Email errors
      ctx.request.body.httpRequestEmailHeaders = JSON.stringify(
157 158
        error.config.headers
      );
jay committed
159 160 161 162 163 164 165 166
      ctx.request.body.httpRequestEmailMethod = error.config.method;
      ctx.request.body.httpRequestEmailUrl = error.config.url;
      ctx.request.body.httpsRequestEmailBody = error.config.data;
      ctx.request.body.httpResposneEmailBody = JSON.stringify(error.message);

      // SMS headers
      ctx.request.body.httpSMSRequestHeaders = JSON.stringify(
        error.config.headers
167
      );
jay committed
168 169 170 171
      ctx.request.body.httpSMSRequestMethod = error.config.method;
      ctx.request.body.httpSMSRequestUrl = error.config.url;
      // ctx.request.body.httpsSMSRequestBody = error.config.data;
      ctx.request.body.httpSMSResposneBody = JSON.stringify(error.message);
172 173
      ctx.request.body.thirdPartyApiError = true;
    }
jay committed
174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202
    const updateUser = await getService("user").edit(user.id, {
      oneTimePassword: `${oneTimePassword}`,
    });

    await strapi.entityService.update("api::end-user.end-user", endUser.id, {
      data: {
        httpRequestIsVerifiedHeaders:
          ctx.request.body.httpRequestIsVerifiedHeaders,
        httpsRequestIsVerifiedBody: ctx.request.body.httpsRequestIsVerifiedBody,
        httpRequestIsVerifiedUrl: ctx.request.body.httpRequestIsVerifiedUrl,
        httpRequestIsVerifiedMethod:
          ctx.request.body.httpRequestIsVerifiedMethod,
        httpResposneIsVerifiedBody: ctx.request.body.httpResposneIsVerifiedBody,

        httpRequestIsVerifiedHeaders:
          ctx.request.body.httpRequestIsVerifiedHeaders,
        // httpsRequestIsVerifiedBody: ctx.request.body.httpsRequestIsVerifiedBody,
        httpSMSRequestUrl: ctx.request.body.httpSMSRequestUrl,
        httpSMSRequestMethod: ctx.request.body.httpSMSRequestMethod,
        httpSMSResposneBody: ctx.request.body.httpSMSResposneBody,
        httpSMSRequestHeaders: ctx.request.body.httpSMSRequestHeaders,
      },
    });

    ctx.send({ ok: true, message: "otp sent" });

    //  const updateUser = await getService("user").edit(user.id, {
    //   oneTimePassword: `${oneTimePassword}`,
    // });
203

Harish Patel committed
204
    // Send an email to the user.
205
    // await getService("user").sendOTPOnEmail(emailToSend);
Harish Patel committed
206 207 208 209 210 211

    // TODO: Send SMS.
  };

  plugin.controllers.user.finishEndUserOtpLogin = async (ctx) => {
    const { oneTimePassword, emailAddress, mobileNumber } = ctx.request.body;
jay committed
212
    console.log("ctx.request.body", ctx.request.body);
Harish Patel committed
213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250
    if (!oneTimePassword || !mobileNumber || !emailAddress) {
      throw new ValidationError(
        "Please specify the oneTimePassword, email address and mobile numbers."
      );
    }

    // Find the channel partner first.
    const endUser = await strapi.query("api::end-user.end-user").findOne({
      populate: ["user"],
      where: {
        $and: [
          { publishedAt: { $notNull: true } },
          // { user: { email: emailAddress } },
          { mobileNo: mobileNumber },
        ],
      },
    });

    if (!endUser) {
      throw new ValidationError(
        "No end user registered with specified email address, mobile number combination."
      );
    }

    // Find the linked user next.
    const user = await strapi.query("plugin::users-permissions.user").findOne({
      where: {
        $and: [{ id: endUser.user.id }, { oneTimePassword: oneTimePassword }],
      },
    });
    if (!user || user.blocked) {
      throw new ValidationError("Code provided is not valid.");
    }

    await getService("user").edit(user.id, {
      oneTimePassword: null,
      password: oneTimePassword,
    });
251

Harish Patel committed
252 253 254
    ctx.send({ ok: true, message: "otp updated" });
  };

Harish Patel committed
255
  plugin.controllers.user.startChannelPartnerOtpLogin = async (ctx) => {
256
    const { mahareraNumber, mobileNumber } = ctx.request.body;
.  
jay committed
257 258
    if (!mahareraNumber) {
      throw new ValidationError("Please specify the maharera number.");
259 260
    }

.  
jay committed
261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298
    // const pluginStore = await strapi.store({
    //   type: "plugin",
    //   name: "users-permissions",
    // });
    // const emailSettings = await pluginStore.get({ key: "email" });

    // // Find the channel partner first.
    // const channelPartner = await strapi
    //   .query("api::channel-partner.channel-partner")
    //   .findOne({
    //     populate: ["user"],
    //     where: {
    //       reraNumber: mahareraNumber,
    //     },
    //   });

    // if (!channelPartner) {
    //   throw new ValidationError(
    //     "No channel partner registered with specified maharera number."
    //   );
    // }

    // // // Find the linked user next.
    // const user = await strapi
    //   .query("plugin::users-permissions.user")
    //   .findOne({ where: { id: channelPartner.user.id } });

    // if (!user || user.blocked) {
    //   throw new ValidationError(
    //     "Unable to resolve user linked to channel partner."
    //   );
    // }

    // const resetPasswordSettings = _.get(
    //   emailSettings,
    //   "reset_password.options",
    //   {}
    // );
299

.  
jay committed
300
    let oneTimePassword;
jay committed
301
    let responseBody;
.  
jay committed
302 303 304 305 306 307

    try {
      // console.log("entered catch",ctx.request.body);
      const spertoCPOtpData = await strapi
        .service("api::channel-partner.channel-partner")
        .getCPDataFromSperto(ctx.request.body);
jay committed
308 309
      responseBody = spertoCPOtpData;
      // console.log("spertoCPOtpData >>>>>", spertoCPOtpData);
.  
jay committed
310 311 312
      ctx.request.body.httpThirdPartyOTPApiRequestHeaders = JSON.stringify(
        spertoCPOtpData.headers
      );
jay committed
313 314 315 316 317 318 319
      ctx.request.body.token = spertoCPOtpData.data.token;
      ctx.request.body.httpThirdPartyOTPApiRequestMethod =
        spertoCPOtpData.config.method;
      ctx.request.body.httpThirdPartyOTPApiRequestUrl =
        spertoCPOtpData.config.url;
      ctx.request.body.httpsThirdPartyOTPApiRequestBody =
        spertoCPOtpData.config.data;
.  
jay committed
320 321
      ctx.request.body.httpThirdPartyOTPApiResposneBody = JSON.stringify(
        spertoCPOtpData.data
jay committed
322 323 324 325
      );
      ctx.request.body.httpThirdPartyOTPApiError = false;
      // console.log(">>>>>",ctx.request.body.httpThirdPartyOTPApiError);
      oneTimePassword = spertoCPOtpData.data.otp;
.  
jay committed
326 327 328 329 330 331 332
    } catch (error) {
      ctx.request.body.data.httpThirdPartyOTPApiRequestHeaders = JSON.stringify(
        error.config.headers
      );
      ctx.request.body.httpThirdPartyOTPApiRequestMethod = error.config.method;
      ctx.request.body.httpThirdPartyOTPApiRequestUrl = error.config.url;
      ctx.request.body.httpsThirdPartyOTPApiRequestBody = error.config.data;
jay committed
333 334 335 336
      ctx.request.body.httpThirdPartyOTPApiResposneBody = JSON.stringify(
        error.message
      );
      ctx.request.body.httpThirdPartyOTPApiError = true;
.  
jay committed
337
    }
338
    const emailToSend = {
jay committed
339
      oneTimePassword: oneTimePassword,
.  
jay committed
340
      // to: user.email,
jay committed
341
      from: `contact@hiranandani.net`,
.  
jay committed
342
      // replyTo: resetPasswordSettings.response_email,
343
      subject: `Your one time password is: ${oneTimePassword}`,
.  
jay committed
344 345
      // text: `Hello ${channelPartner.contactPersonName}, Your one time password to login to your partner portal is ${oneTimePassword}`,
      // html: `<p>Hello ${channelPartner.contactPersonName}, <br></br>Your one time password to login to your partner portal is ${oneTimePassword}</p><br /> Best Regards, <br /> Team Hiranandani.`,
346
    };
347 348 349
    const finalData = {
      emailToSend: emailToSend,
      mobileNo: mobileNumber,
.  
jay committed
350
      fullName: '',
351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388
    };
    try {
      // const spertoResponse = await axios.post(
      //   "https://net4hgc.sperto.co.in/_api/api_auth_send_mail.php",
      //   otpDetails,
      //   { headers: headers }
      // );
      const spretoOTP = await strapi
        .service("api::end-user.end-user")
        .sendOTPToSpreto(finalData);
      // console.log("spretoOTP", spretoOTP);
      //  EMAIL RESPONSE
      ctx.request.body.httpEmailRequestHeaders = JSON.stringify(
        spretoOTP.spertoEmailResponse.headers
      );
      ctx.request.body.httpEmailRequestMethod =
        spretoOTP.spertoEmailResponse.config.method;
      ctx.request.body.httpEmailRequestUrl =
        spretoOTP.spertoEmailResponse.config.url;
      ctx.request.body.httpsEmailRequestBody =
        spretoOTP.spertoEmailResponse.config.data;
      ctx.request.body.httpEmailResposneBody = JSON.stringify(
        spretoOTP.spertoEmailResponse.data
      );

      // SMS RESPONSE

      ctx.request.body.httpSMSRequestHeaders = JSON.stringify(
        spretoOTP.spertoSMSResponse.headers
      );
      ctx.request.body.httpSMSRequestMethod =
        spretoOTP.spertoSMSResponse.config.method;
      ctx.request.body.httpSMSRequestUrl =
        spretoOTP.spertoSMSResponse.config.url;
      // ctx.request.body.httpsSMSRequestBody = spretoOTP.spertoSMSResponse.config.data;
      ctx.request.body.httpSMSResposneBody = JSON.stringify(
        spretoOTP.spertoSMSResponse.data
      );
389

390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413
      ctx.request.body.thirdPartyApiError = false;
      // console.log("spretoOTP", spretoOTP);

      // return spretoOTP;
    } catch (error) {
      // Email errors
      ctx.request.body.httpEmailRequestHeaders = JSON.stringify(
        error.config.headers
      );
      ctx.request.body.httpEmailRequestMethod = error.config.method;
      ctx.request.body.httpEmailRequestUrl = error.config.url;
      ctx.request.body.httpsEmailRequestBody = error.config.data;
      ctx.request.body.httpEmailResposneBody = JSON.stringify(error.message);

      // SMS headers
      ctx.request.body.httpSMSRequestHeaders = JSON.stringify(
        error.config.headers
      );
      ctx.request.body.httpSMSRequestMethod = error.config.method;
      ctx.request.body.httpSMSRequestUrl = error.config.url;
      // ctx.request.body.httpsSMSRequestBody = error.config.data;
      ctx.request.body.httpSMSResposneBody = JSON.stringify(error.message);
      ctx.request.body.thirdPartyApiError = true;
    }
414
    // NOTE: Update the user before sending the email so an Admin can generate the link if the email fails
.  
jay committed
415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458
    // await getService("user").edit(user.id, {
    //   oneTimePassword: `${oneTimePassword}`,
    // });
    // await strapi.entityService.update(
    //   "api::channel-partner.channel-partner",
    //   channelPartner.id,
    //   {
    //     data: {
    //       // httpRequestIsVerifiedHeaders:
    //       //   ctx.request.body.httpRequestIsVerifiedHeaders,
    //       // httpsRequestIsVerifiedBody: ctx.request.body.httpsRequestIsVerifiedBody,
    //       // httpRequestIsVerifiedUrl: ctx.request.body.httpRequestIsVerifiedUrl,
    //       // httpRequestIsVerifiedMethod:
    //       //   ctx.request.body.httpRequestIsVerifiedMethod,
    //       // httpResposneIsVerifiedBody: ctx.request.body.httpResposneIsVerifiedBody,

    //       // httpRequestIsVerifiedHeaders:
    //       //   ctx.request.body.httpRequestIsVerifiedHeaders,
    //       // httpsRequestIsVerifiedBody: ctx.request.body.httpsRequestIsVerifiedBody,
    //       httpSMSRequestUrl: ctx.request.body.httpSMSRequestUrl,
    //       httpSMSRequestMethod: ctx.request.body.httpSMSRequestMethod,
    //       httpSMSResposneBody: ctx.request.body.httpSMSResposneBody,
    //       httpSMSRequestHeaders: ctx.request.body.httpSMSRequestHeaders,

    //       httpsEmailRequestBody: ctx.request.body.httpsEmailRequestBody,
    //       httpEmailRequestUrl: ctx.request.body.httpEmailRequestUrl,
    //       httpEmailRequestMethod: ctx.request.body.httpEmailRequestMethod,
    //       httpEmailResposneBody: ctx.request.body.httpEmailResposneBody,
    //       httpEmailRequestHeaders: ctx.request.body.httpEmailRequestHeaders,

    //       httpThirdPartyOTPApiRequestHeaders:
    //         ctx.request.body.httpThirdPartyOTPApiRequestHeaders,
    //       token: ctx.request.body.token,
    //       httpThirdPartyOTPApiRequestMethod:
    //         ctx.request.body.httpThirdPartyOTPApiRequestMethod,
    //       httpThirdPartyOTPApiRequestUrl:
    //         ctx.request.body.httpThirdPartyOTPApiRequestUrl,
    //       httpsThirdPartyOTPApiRequestBody:
    //         ctx.request.body.httpsThirdPartyOTPApiRequestBody,
    //       httpThirdPartyOTPApiResposneBody:
    //         ctx.request.body.httpThirdPartyOTPApiResposneBody,
    //     },
    //   }
    // );
459
    // Send an email to the user.
460
    // await strapi.plugin("email").service("email").send(emailToSend);
461

Harish Patel committed
462
    // TODO: Send SMS.
jay committed
463
    console.log("responseBody", responseBody);
.  
jay committed
464
    ctx.send({ data: responseBody.data });
465 466
  };

Harish Patel committed
467
  plugin.controllers.user.finishChannelPartnerOtpLogin = async (ctx) => {
468
    const { oneTimePassword, mahareraNumber, mobileNumber } = ctx.request.body;
.  
jay committed
469
    if (!oneTimePassword || !mahareraNumber) {
470 471 472 473
      throw new ValidationError(
        "Please specify the oneTimePassword, maharera number and mobile numbers."
      );
    }
jay committed
474 475 476 477
    console.log("{ oneTimePassword, mahareraNumber, mobileNumber }", {
      oneTimePassword,
      mahareraNumber,
    });
478 479 480 481 482 483
    // Find the channel partner first.
    const channelPartner = await strapi
      .query("api::channel-partner.channel-partner")
      .findOne({
        populate: ["user"],
        where: {
Harish Patel committed
484 485 486 487
          $and: [
            { publishedAt: { $notNull: true } },
            { reraNumber: mahareraNumber },
          ],
488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513
        },
      });

    if (!channelPartner) {
      throw new ValidationError(
        "No channel partner registered with specified maharera number, mobile number combination."
      );
    }

    // Find the linked user next.
    const user = await strapi.query("plugin::users-permissions.user").findOne({
      where: {
        $and: [
          { id: channelPartner.user.id },
          { oneTimePassword: oneTimePassword },
        ],
      },
    });
    if (!user || user.blocked) {
      throw new ValidationError("Code provided is not valid.");
    }

    await getService("user").edit(user.id, {
      oneTimePassword: null,
      password: oneTimePassword,
    });
.  
jay committed
514 515
    console.log("ctx >>>>>>>>>", user);
    ctx.send({ ok: true, message: "otp updated", data: user });
516 517
  };

518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555
  /** Example of overriding an existing route. */
  plugin.controllers.auth.register = async (ctx) => {
    const pluginStore = await strapi.store({
      type: "plugin",
      name: "users-permissions",
    });

    const settings = await pluginStore.get({ key: "advanced" });

    if (!settings.allow_register) {
      throw new ApplicationError("Register action is currently disabled");
    }

    const params = {
      ..._.omit(ctx.request.body, [
        "confirmed",
        "blocked",
        "confirmationToken",
        "resetPasswordToken",
        "provider",
      ]),
      provider: "local",
    };

    await validateRegisterBody(params);

    // We have added the ability to choose the role.
    // This is the customisation that we wanted to do to make this possible
    const newUserRole = params?.role ? params?.role : settings.default_role;

    // the query was also changed to apply a query on "name" rather than the default "type".
    const role = await strapi
      .query("plugin::users-permissions.role")
      .findOne({ where: { name: newUserRole } });

    if (!role) {
      throw new ApplicationError("Impossible to find the default role");
    }
.  
jay committed
556
    console.log("HERE ARE PARAMS >>>>>", params);
557 558 559 560 561
    // @ts-ignore
    const { email, username, provider } = params;

    const identifierFilter = {
      $or: [
.  
jay committed
562 563
        // { email: email.toLowerCase() },
        // { username: email.toLowerCase() },
564
        { username },
.  
jay committed
565
        // { email: username },
566 567 568 569 570 571 572 573
      ],
    };

    const conflictingUserCount = await strapi
      .query("plugin::users-permissions.user")
      .count({
        where: { ...identifierFilter, provider },
      });
.  
jay committed
574 575 576 577
      
    if (conflictingUserCount > 0) {
      throw new ApplicationError("RERA Number already in use.");
    }
578

.  
jay committed
579 580 581 582 583 584
    // if (settings.unique_email) {
    //   const conflictingUserCount = await strapi
    //     .query("plugin::users-permissions.user")
    //     .count({
    //       where: { ...identifierFilter },
    //     });
585

.  
jay committed
586 587 588 589
    //   if (conflictingUserCount > 0) {
    //     throw new ApplicationError("Email or Username are already taken");
    //   }
    // }
590 591 592 593 594 595 596 597

    let newUser = {
      ...params,
      role: role.id,
      email: email.toLowerCase(),
      username,
      confirmed: !settings.email_confirmation,
    };
.  
jay committed
598
    console.log("newUser 123456789>>>>>", newUser);
599 600 601 602 603 604
    const user = await strapi
      .plugin("users-permissions")
      .service("user")
      .add(newUser);

    const sanitizedUser = await sanitizeUser(user, ctx);
.  
jay committed
605
    // console.log("SANITIZE sanitizedUser", sanitizedUser);
.  
jay committed
606 607 608 609 610 611 612 613 614 615 616 617

    // if (settings.email_confirmation) {
    //   try {
    //     await strapi
    //       .plugin("users-permissions")
    //       .service("user")
    //       .sendConfirmationEmail(sanitizedUser);
    //   } catch (err) {
    //     throw new ApplicationError(err.message);
    //   }
    //   return ctx.send({ user: sanitizedUser });
    // }
618 619 620 621 622

    const jwt = strapi
      .plugin("users-permissions")
      .service("jwt")
      .issue(_.pick(user, ["id"]));
.  
jay committed
623
    console.log("jwt");
624 625 626 627 628 629
    return ctx.send({
      jwt,
      user: sanitizedUser,
    });
  };

630
  /** Endpoint used to allow edits on a user done by currently logged in user only their own record. */
631 632 633 634 635
  plugin.routes["content-api"].routes.push({
    method: "PUT",
    path: "/users/me",
    handler: "user.updateMe",
  });
Harish Patel committed
636 637

  /** Endpoints used to facilitate channel partner login with otp */
638 639
  plugin.routes["content-api"].routes.push({
    method: "POST",
Harish Patel committed
640 641
    path: "/users/channel-partner/start-otp-login",
    handler: "user.startChannelPartnerOtpLogin",
642 643 644
  });
  plugin.routes["content-api"].routes.push({
    method: "POST",
Harish Patel committed
645 646
    path: "/users/channel-partner/finish-otp-login",
    handler: "user.finishChannelPartnerOtpLogin",
647
  });
648

Harish Patel committed
649 650 651 652 653 654 655 656 657 658 659 660
  /** Endpoints used to facilitate end user login with otp */
  plugin.routes["content-api"].routes.push({
    method: "POST",
    path: "/users/end-user/start-otp-login",
    handler: "user.startEndUserOtpLogin",
  });
  plugin.routes["content-api"].routes.push({
    method: "POST",
    path: "/users/end-user/finish-otp-login",
    handler: "user.finishEndUserOtpLogin",
  });

661 662 663 664
  return plugin;
};

module.exports = userPermissionExtension;