This repository has been archived on 2026-03-21. You can view files and clone it, but cannot push or open issues or pull requests.
payfrit-biz/confirm_mobile.cfm
John Mizerek 1210249f54 Normalize database column and table names across entire codebase
Update all SQL queries, query result references, and ColdFusion code to match
the renamed database schema. Tables use plural CamelCase, PKs are all `ID`,
column prefixes stripped (e.g. BusinessName→Name, UserFirstName→FirstName).

Key changes:
- Strip table-name prefixes from all column references (Businesses, Users,
  Addresses, Hours, Menus, Categories, Items, Stations, Orders,
  OrderLineItems, Tasks, TaskCategories, TaskRatings, QuickTaskTemplates,
  ScheduledTaskDefinitions, ChatMessages, Beacons, ServicePoints, Employees,
  VisitorTrackings, ApiPerfLogs, tt_States, tt_Days, tt_AddressTypes,
  tt_OrderTypes, tt_TaskTypes)
- Rename PK references from {TableName}ID to ID in all queries
- Rewrite 7 admin beacon files to use ServicePoints.BeaconID instead of
  dropped lt_Beacon_Businesses_ServicePoints link table
- Rewrite beacon assignment files (list, save, delete) for new schema
- Fix FK references incorrectly changed to ID (OrderLineItems.OrderID,
  Categories.MenuID, Tasks.CategoryID, ServicePoints.BeaconID)
- Update Addresses: AddressLat→Latitude, AddressLng→Longitude
- Update Users: UserPassword→Password, UserIsEmailVerified→IsEmailVerified,
  UserIsActive→IsActive, UserBalance→Balance, etc.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-30 15:39:12 -08:00

112 lines
3.6 KiB
Text

<!--- <cfoutput>
#form.UUID#<br>
#form.OTP#
</cfoutput> --->
<cfparam name="form.mode" default="confirm">
<cfquery name="check_valid" datasource="#application.datasource#" dbtype="ODBC">
SELECT ID, IsEmailVerified, EmailAddress
FROM Users
WHERE UUID = '#form.UUID#'
AND
MobileVerifyCode = '#form.OTP#'
AND
IsContactVerified = 0
AND
IsEmailVerified = 0
</cfquery>
<cfif check_valid.recordcount EQ 1>
<cfquery name="confirm_mobile" datasource="#application.datasource#" dbtype="ODBC">
UPDATE Users
SET IsContactVerified = 1
WHERE UserID = #check_valid.UserID#
</cfquery>
<cfif check_valid.IsEmailVerified eq 1>
You're now fully verified and ready to use Payfrit!<br><br>
Click HERE to login and order.<br>
<cfelse>
OTP verified, please check your email <cfoutput>#check_valid.EmailAddress#</cfoutput><br><br>
There's a link there for you to click, then you can login to Payfrit!<BR>
</cfif>
<cfelse>
<cfquery name="check_valid_with_email_confirmed" datasource="#application.datasource#" dbtype="ODBC">
SELECT ID, IsEmailVerified, EmailAddress
FROM Users
WHERE UUID = '#form.UUID#'
AND
MobileVerifyCode = '#form.OTP#'
AND
IsContactVerified = 0
AND
IsEmailVerified = 1
</cfquery>
<cfif check_valid_with_email_confirmed.recordcount eq 1>
<cfquery name="confirm_mobile" datasource="#application.datasource#" dbtype="ODBC">
UPDATE Users
SET IsContactVerified = 1
WHERE UserID = #check_valid_with_email_confirmed.UserID#
</cfquery>
<!--- might as well log them in since they confirmed successfully, probably a bad idea but not worried about it for now --->
<!--- Update the session variables and request variables --->
<cflock timeout="60" throwontimeout="Yes" type="EXCLUSIVE" scope="SESSION">
<cfset session.UserID = #check_valid_with_email_confirmed.UserID#>
<!--- Re-duplicate them --->
<cfset request.UserID = Duplicate(session.UserID)>
</cflock>
<cfmodule template="#application.wwwrootprefix#modules/notifier.cfm"
domain="box.payfrit.com"
from_email="admin@payfrit.com"
to_email="#check_valid_with_email_confirmed.UserEmail#"
subject="Welcome to Payfrit!"
email_body="Thanks for confirming your Payfrit account! Go order food!"
>
ok your account is all confirmed and you are logged in!<br><br>
it's time to go <cfoutput><a href="#application.httpsprefix#index.cfm">buy some stuff!</a></cfoutput><br>
<cflocation url="index.cfm?userstatus=new">
<cfelse>
<cfquery name="check_valid" datasource="#application.datasource#" dbtype="ODBC">
SELECT ID, IsEmailVerified
FROM Users
WHERE UUID = '#form.UUID#'
AND
IsContactVerified = 0
</cfquery>
<cfif check_valid.recordcount eq 1>
OTP is incorrect, please re-check the code we sent you<br><br>
<cfelse>
Problem!<br><br>
please <a href="register.cfm">try again</a><br>
</cfif>
</cfif>
</cfif>