From 772d2ab1a43b7028803628fe98704498352c92a6 Mon Sep 17 00:00:00 2001 From: Sai Krishna Metpalli <310911@NTTDATA.COM> Date: Thu, 28 Mar 2024 05:55:07 -0700 Subject: [PATCH] Fixed the login --- .../Controllers/DisputesController.cs | 66 +++++++++++++------ 1 file changed, 45 insertions(+), 21 deletions(-) diff --git a/src/backend/TrafficCourts/Citizen.Service/Controllers/DisputesController.cs b/src/backend/TrafficCourts/Citizen.Service/Controllers/DisputesController.cs index fc19fff41..14daf23ec 100644 --- a/src/backend/TrafficCourts/Citizen.Service/Controllers/DisputesController.cs +++ b/src/backend/TrafficCourts/Citizen.Service/Controllers/DisputesController.cs @@ -6,6 +6,7 @@ using Microsoft.AspNetCore.Mvc; using System.ComponentModel.DataAnnotations; using System.Net; +using System.Text; using TrafficCourts.Citizen.Service.Features.CurrentUserInfo; using TrafficCourts.Citizen.Service.Features.Disputes; using TrafficCourts.Citizen.Service.Models.Disputes; @@ -562,40 +563,63 @@ private static bool IsDisputeStatus(string value, DisputeStatus status) private bool CompareNames(SubmitNoticeOfDispute message, UserInfo? user) { -#if DEBUG +#if DEBUG #warning Contact Name Comparisons with BC Services Cards have been disabled - return true; + return true; #endif - bool result = true; - // if contact type is individual then match with disputant name otherwise match with contact names - if (message.ContactTypeCd == DisputeContactTypeCd.INDIVIDUAL) + string Combine(string? name1, string? name2, string? name3) { - var givenNames = message.DisputantGivenName1 - + (message.DisputantGivenName2 != null ? (" " + message.DisputantGivenName2) : "") - + (message.DisputantGivenName3 != null ? (" " + message.DisputantGivenName3) : ""); - if (!message.DisputantSurname.Equals(user?.Surname, StringComparison.OrdinalIgnoreCase) - || !(message.DisputantGivenName1.Equals(user?.GivenName, StringComparison.OrdinalIgnoreCase) || givenNames.Equals(user?.GivenNames, StringComparison.OrdinalIgnoreCase))) + StringBuilder buffer = new StringBuilder(); + if (!string.IsNullOrEmpty(name1)) + { + buffer.Append(name1.Trim()); + } + + if (!string.IsNullOrEmpty(name2)) { - result = false; + if (buffer.Length > 0) + { + buffer.Append(' '); + } + buffer.Append(name2.Trim()); + } + + if (!string.IsNullOrEmpty(name3)) + { + if (buffer.Length > 0) + { + buffer.Append(' '); + } + buffer.Append(name3.Trim()); } + return buffer.ToString(); } - else if (message.ContactTypeCd == DisputeContactTypeCd.LAWYER || message.ContactTypeCd == DisputeContactTypeCd.OTHER) + + bool DoesContain(string? a, string? b) { - var givenNames = message.ContactGiven1Nm - + (message.ContactGiven2Nm != null ? (" " + message.ContactGiven2Nm) : "") - + (message.ContactGiven3Nm != null ? (" " + message.ContactGiven3Nm) : ""); - if (!message.ContactSurnameNm.Equals(user?.Surname, StringComparison.OrdinalIgnoreCase) - || !(message.ContactGiven1Nm.Equals(user?.GivenName, StringComparison.OrdinalIgnoreCase) || givenNames.Equals(user?.GivenNames, StringComparison.OrdinalIgnoreCase))) + if (!string.IsNullOrEmpty(a) && !string.IsNullOrEmpty(b)) { - result = false; + return a.Contains(b, StringComparison.OrdinalIgnoreCase); + } + else + { + return false; } } - else + + // if contact type is individual then match with disputant name otherwise match with contact names + if (message.ContactTypeCd == DisputeContactTypeCd.INDIVIDUAL) + { + var givenNames = Combine(message.DisputantGivenName1, message.DisputantGivenName2, message.DisputantGivenName3); + return DoesContain(user?.GivenNames, givenNames) && DoesContain(user?.Surname, message.DisputantSurname); + } + else if (message.ContactTypeCd == DisputeContactTypeCd.LAWYER || message.ContactTypeCd == DisputeContactTypeCd.OTHER) { - result = false; + var givenNames = Combine(message.ContactGiven1Nm, message.ContactGiven2Nm, message.ContactGiven3Nm); + return DoesContain(user?.GivenNames, givenNames) && DoesContain(user?.Surname, message.ContactSurnameNm); } - return result; + return false; } }