From fd3d3f0bc4679a3d82db100cb230c8e0a484c24c Mon Sep 17 00:00:00 2001
From: Jake Vanderwerf <get@jakevanderwerf.ca>
Date: Wed, 11 Feb 2026 15:30:17 +0000
Subject: [PATCH] =AuthManager.js and Referral.js minor fixes - registration form was broken
---
assets/js/concise/AuthManager.js | 58 +++++++++++++++++++++++++++++++++++++++++++++++-----------
1 files changed, 47 insertions(+), 11 deletions(-)
diff --git a/assets/js/concise/AuthManager.js b/assets/js/concise/AuthManager.js
index dfad8bf..25db258 100644
--- a/assets/js/concise/AuthManager.js
+++ b/assets/js/concise/AuthManager.js
@@ -29,21 +29,12 @@
*/
async init() {
if (this.isAuthenticating) {
- // Wait for existing auth to complete
- return new Promise(resolve => {
- const checkAuth = setInterval(() => {
- if (this.initialized) {
- clearInterval(checkAuth);
- resolve();
- }
- }, 50);
- });
+ return this.ready();
}
this.isAuthenticating = true;
try {
- // Check if we have cached auth and cookie hasn't changed
const cached = this.getCachedAuth();
if (cached) {
this.setAuthData(cached);
@@ -53,7 +44,6 @@
return;
}
- // Fetch fresh auth data
await this.fetchAuth();
} catch (error) {
@@ -66,6 +56,52 @@
}
/**
+ * Refresh nonce if authentication fails
+ */
+ async refreshNonce(action = 'wp_rest') {
+ try {
+ await this.fetchAuth();
+ return this.getNonce(action);
+ } catch (error) {
+ console.error('Failed to refresh nonce:', error);
+ return null;
+ }
+ }
+
+ /**
+ * Fetch with automatic nonce refresh on auth failure
+ * Use this for all authenticated API requests
+ */
+ async fetch(url, options = {}) {
+ const attempt = async (retryCount = 0) => {
+ const headers = {
+ 'Content-Type': 'application/json',
+ ...options.headers,
+ 'X-WP-Nonce': this.getNonce()
+ };
+
+ const response = await fetch(url, {
+ ...options,
+ credentials: 'same-origin',
+ headers
+ });
+
+ if ((response.status === 403 || response.status === 401) && retryCount === 0) {
+ const result = await response.clone().json();
+ if (result.code === 'rest_cookie_invalid_nonce' || result.message?.includes('Cookie check')) {
+ console.log('Nonce invalid, refreshing auth...');
+ await this.refresh();
+ return attempt(1);
+ }
+ }
+
+ return response;
+ };
+
+ return attempt();
+ }
+
+ /**
* Fetch authentication status from API
*/
async fetchAuth() {
--
Gitblit v1.10.0