mirror of
https://github.com/pezkuwichain/pwap.git
synced 2026-07-26 14:25:41 +00:00
a8f41cd47f
Critical/high audit remediation on the custodial P2P ledger. Auth model is wallet-based; identity (citizen/visa) is cryptographically bound to a wallet (People Chain tiki.citizenNft / active p2p_visa), which enables a correct fix. - Withdrawal BOLA (CRITICAL): process-withdraw now requires a wallet-SIGNED challenge; server verifies signature (raw + <Bytes> forms), asserts the signer OWNS the identity, consumes a single-use nonce (replay), and derives user_id server-side — the client-supplied user_id is ignored. process-withdrawal (batch) now requires the service-role key (was: any bearer, incl. public anon key). request_withdraw is REVOKEd from anon/authenticated + service-role guarded. - Financial RLS (HIGH): drop the blanket USING(true) SELECT on user_internal_balances, p2p_balance_transactions, p2p_deposit_withdraw_requests; lock p2p_user_payment_methods (IBAN PII) + p2p_fiat_disputes UPDATE to service_role; legitimate reads move behind scoped SECURITY DEFINER RPCs. - Deposit integrity: verify-deposit now binds the on-chain sender to identity ownership before crediting. - Admin dispute (CRITICAL fund-logic): DisputeResolutionPanel relabeled trades without moving escrow. New admin-signed resolve-dispute function + admin_resolve_dispute RPC moves escrow (release/refund/split) atomically with correct accounting (avoids the double-count in the legacy resolve_p2p_dispute). Client isAdmin documented as cosmetic. DEPLOY RUNBOOK (gated; owner runs): 1) apply migrations 20260225/20260725* in order; 2) deploy edge functions process-withdraw, process-withdrawal, verify-deposit, resolve-dispute; 3) set edge secrets PEOPLE_RPC_ENDPOINT (+ optional ADMIN_WALLETS); 4) ship frontend. Migrations + functions + frontend must go together or the app breaks. KNOWN RESIDUAL (Round 2 — as severe as the withdrawal BOLA): release_/lock_/refund_ escrow_internal still have PUBLIC EXECUTE and the client calls release_escrow_internal directly with the anon key from confirmPaymentReceived -> an anon caller can drain any victim's LOCKED balance. Fix = a wallet-signed confirm-payment edge function (same pattern as withdrawals) before revoking PUBLIC execute. Not yet fixed.
307 lines
9.9 KiB
TypeScript
307 lines
9.9 KiB
TypeScript
import React, { createContext, useContext, useEffect, useState, useCallback } from 'react';
|
|
import { supabase } from '@/lib/supabase';
|
|
import { User } from '@supabase/supabase-js';
|
|
import { isMobileApp, getNativeWalletAddress, getNativeAccountName } from '@/lib/mobile-bridge';
|
|
|
|
// Session timeout configuration
|
|
const SESSION_TIMEOUT_MS = 30 * 60 * 1000; // 30 minutes
|
|
const ACTIVITY_CHECK_INTERVAL_MS = 60 * 1000; // Check every 1 minute
|
|
const LAST_ACTIVITY_KEY = 'last_activity_timestamp';
|
|
const REMEMBER_ME_KEY = 'remember_me';
|
|
|
|
interface AuthContextType {
|
|
user: User | null;
|
|
loading: boolean;
|
|
isAdmin: boolean;
|
|
signIn: (email: string, password: string, rememberMe?: boolean) => Promise<{ error: Error | null }>;
|
|
signUp: (email: string, password: string, username: string, referralCode?: string) => Promise<{ error: Error | null }>;
|
|
signOut: () => Promise<void>;
|
|
checkAdminStatus: () => Promise<boolean>;
|
|
}
|
|
|
|
const AuthContext = createContext<AuthContextType | undefined>(undefined);
|
|
|
|
export const useAuth = () => {
|
|
const context = useContext(AuthContext);
|
|
if (!context) {
|
|
throw new Error('useAuth must be used within an AuthProvider');
|
|
}
|
|
return context;
|
|
};
|
|
|
|
export const AuthProvider: React.FC<{ children: React.ReactNode }> = ({ children }) => {
|
|
const [user, setUser] = useState<User | null>(null);
|
|
const [loading, setLoading] = useState(true);
|
|
const [isAdmin, setIsAdmin] = useState(false);
|
|
|
|
// ========================================
|
|
// SESSION TIMEOUT MANAGEMENT
|
|
// ========================================
|
|
|
|
// Update last activity timestamp
|
|
const updateLastActivity = useCallback(() => {
|
|
|
|
localStorage.setItem(LAST_ACTIVITY_KEY, Date.now().toString());
|
|
}, []);
|
|
|
|
const signOut = useCallback(async () => {
|
|
setIsAdmin(false);
|
|
setUser(null);
|
|
localStorage.removeItem(LAST_ACTIVITY_KEY);
|
|
localStorage.removeItem(REMEMBER_ME_KEY);
|
|
await supabase.auth.signOut();
|
|
}, []);
|
|
|
|
// Check if session has timed out
|
|
const checkSessionTimeout = useCallback(async () => {
|
|
if (!user) return;
|
|
|
|
// Skip timeout check if "Remember Me" is enabled
|
|
const rememberMe = localStorage.getItem(REMEMBER_ME_KEY);
|
|
if (rememberMe === 'true') {
|
|
return; // Don't timeout if user chose to be remembered
|
|
}
|
|
|
|
const lastActivity = localStorage.getItem(LAST_ACTIVITY_KEY);
|
|
if (!lastActivity) {
|
|
updateLastActivity();
|
|
return;
|
|
}
|
|
|
|
const lastActivityTime = parseInt(lastActivity, 10);
|
|
const now = Date.now();
|
|
const inactiveTime = now - lastActivityTime;
|
|
|
|
if (inactiveTime >= SESSION_TIMEOUT_MS) {
|
|
if (import.meta.env.DEV) console.log('⏱️ Session timeout - logging out due to inactivity');
|
|
await signOut();
|
|
}
|
|
}, [user, updateLastActivity, signOut]);
|
|
|
|
// Setup activity listeners
|
|
useEffect(() => {
|
|
if (!user) return;
|
|
|
|
// Update activity on user interactions
|
|
const activityEvents = ['mousedown', 'keydown', 'scroll', 'touchstart'];
|
|
|
|
const handleActivity = () => {
|
|
updateLastActivity();
|
|
|
|
|
|
};
|
|
|
|
// Register event listeners
|
|
activityEvents.forEach((event) => {
|
|
window.addEventListener(event, handleActivity);
|
|
});
|
|
|
|
// Initial activity timestamp
|
|
updateLastActivity();
|
|
|
|
|
|
|
|
// Check for timeout periodically
|
|
const timeoutChecker = setInterval(checkSessionTimeout, ACTIVITY_CHECK_INTERVAL_MS);
|
|
|
|
// Cleanup
|
|
return () => {
|
|
activityEvents.forEach((event) => {
|
|
window.removeEventListener(event, handleActivity);
|
|
});
|
|
clearInterval(timeoutChecker);
|
|
};
|
|
}, [user, updateLastActivity, checkSessionTimeout]);
|
|
|
|
|
|
const checkAdminStatus = useCallback(async () => {
|
|
// ============================================================
|
|
// COSMETIC ONLY — NOT an authorization boundary.
|
|
// ------------------------------------------------------------
|
|
// This flag is derived from a localStorage wallet value and can be trivially
|
|
// forged in DevTools. It ONLY controls whether admin UI is shown. Every
|
|
// privileged operation MUST be verified server-side:
|
|
// - Dispute claim/resolve -> `resolve-dispute` edge function verifies a
|
|
// wallet SIGNATURE against the server-side admin wallet set before doing
|
|
// anything (see supabase/functions/resolve-dispute + _shared/identity-auth).
|
|
// Do NOT add fund-moving or state-changing logic gated solely on isAdmin.
|
|
// ============================================================
|
|
// Admin wallet whitelist (blockchain-based auth)
|
|
const ADMIN_WALLETS = [
|
|
'5CyuFfbF95rzBxru7c9yEsX4XmQXUxpLUcbj9RLg9K1cGiiF', // Founder
|
|
'5EhCpn82QtdU53MF6PoNFrKHgSrsfcAxFTMwrn3JYf9dioQw', // Treasury admin
|
|
'5ELgySrX5ZyK7EWXjj6bAedyTCcTNWDANbiiipsT5gnpoCEp', // Admin
|
|
];
|
|
|
|
try {
|
|
// PRIMARY: Check wallet-based admin (blockchain auth)
|
|
const connectedWallet = localStorage.getItem('selectedWallet');
|
|
if (import.meta.env.DEV) console.log('🔍 Admin check - Connected wallet:', connectedWallet);
|
|
if (import.meta.env.DEV) console.log('🔍 Admin check - Whitelist:', ADMIN_WALLETS);
|
|
|
|
if (connectedWallet && ADMIN_WALLETS.includes(connectedWallet)) {
|
|
if (import.meta.env.DEV) console.log('✅ Admin access granted (wallet-based)');
|
|
setIsAdmin(true);
|
|
return true;
|
|
}
|
|
|
|
// SECONDARY: Supabase admin_roles check disabled (table may not exist)
|
|
// Admin access is primarily wallet-based via the whitelist above
|
|
|
|
if (import.meta.env.DEV) console.log('❌ Admin access denied (wallet not in whitelist)');
|
|
setIsAdmin(false);
|
|
return false;
|
|
} catch (err) {
|
|
if (import.meta.env.DEV) console.error('Admin check error:', err);
|
|
setIsAdmin(false);
|
|
return false;
|
|
}
|
|
}, []);
|
|
|
|
// Setup native mobile wallet if running in mobile app
|
|
const setupMobileWallet = useCallback(() => {
|
|
if (isMobileApp()) {
|
|
const nativeAddress = getNativeWalletAddress();
|
|
const nativeAccountName = getNativeAccountName();
|
|
|
|
if (nativeAddress) {
|
|
// Store native wallet address for admin checks and wallet operations
|
|
localStorage.setItem('selectedWallet', nativeAddress);
|
|
if (nativeAccountName) {
|
|
localStorage.setItem('selectedWalletName', nativeAccountName);
|
|
}
|
|
if (import.meta.env.DEV) {
|
|
console.log('[Mobile] Native wallet detected:', nativeAddress);
|
|
}
|
|
// Dispatch wallet change event
|
|
window.dispatchEvent(new Event('walletChanged'));
|
|
}
|
|
}
|
|
}, []);
|
|
|
|
useEffect(() => {
|
|
// Setup mobile wallet first
|
|
setupMobileWallet();
|
|
|
|
// Check active sessions and sets the user
|
|
supabase.auth.getSession().then(({ data: { session } }) => {
|
|
setUser(session?.user ?? null);
|
|
checkAdminStatus(); // Check admin status regardless of Supabase session
|
|
setLoading(false);
|
|
}).catch(() => {
|
|
// If Supabase is not available, still check wallet-based admin
|
|
checkAdminStatus();
|
|
setLoading(false);
|
|
});
|
|
|
|
// Listen for changes on auth state
|
|
const { data: { subscription } } = supabase.auth.onAuthStateChange((_event, session) => {
|
|
setUser(session?.user ?? null);
|
|
checkAdminStatus(); // Check admin status on auth change
|
|
setLoading(false);
|
|
});
|
|
|
|
// Listen for wallet changes (from PezkuwiContext or native bridge)
|
|
const handleWalletChange = () => {
|
|
checkAdminStatus();
|
|
};
|
|
window.addEventListener('walletChanged', handleWalletChange);
|
|
|
|
// Listen for native bridge ready event (mobile app)
|
|
const handleNativeReady = () => {
|
|
if (import.meta.env.DEV) {
|
|
console.log('[Mobile] Native bridge ready');
|
|
}
|
|
setupMobileWallet();
|
|
checkAdminStatus();
|
|
};
|
|
window.addEventListener('pezkuwi-native-ready', handleNativeReady);
|
|
|
|
return () => {
|
|
subscription.unsubscribe();
|
|
window.removeEventListener('walletChanged', handleWalletChange);
|
|
window.removeEventListener('pezkuwi-native-ready', handleNativeReady);
|
|
};
|
|
}, [checkAdminStatus, setupMobileWallet]);
|
|
|
|
const signIn = async (email: string, password: string, rememberMe: boolean = false) => {
|
|
try {
|
|
const { data, error } = await supabase.auth.signInWithPassword({
|
|
email,
|
|
password,
|
|
});
|
|
|
|
if (!error && data.user) {
|
|
// Store remember me preference
|
|
if (rememberMe) {
|
|
localStorage.setItem(REMEMBER_ME_KEY, 'true');
|
|
} else {
|
|
localStorage.removeItem(REMEMBER_ME_KEY);
|
|
}
|
|
await checkAdminStatus();
|
|
}
|
|
|
|
return { error };
|
|
} catch {
|
|
return {
|
|
error: {
|
|
message: 'Authentication service unavailable. Please try again later.'
|
|
}
|
|
};
|
|
}
|
|
};
|
|
|
|
const signUp = async (email: string, password: string, username: string, referralCode?: string) => {
|
|
try {
|
|
const { data, error } = await supabase.auth.signUp({
|
|
email,
|
|
password,
|
|
options: {
|
|
data: {
|
|
username,
|
|
referral_code: referralCode || null,
|
|
},
|
|
},
|
|
});
|
|
|
|
if (!error && data.user) {
|
|
// Create profile in profiles table with referral code
|
|
await supabase.from('profiles').insert({
|
|
id: data.user.id,
|
|
username,
|
|
email,
|
|
referred_by: referralCode || null,
|
|
});
|
|
|
|
// If there's a referral code, track it
|
|
if (referralCode) {
|
|
// You can add logic here to reward the referrer
|
|
// For example, update their referral count or add rewards
|
|
if (import.meta.env.DEV) console.log(`User registered with referral code: ${referralCode}`);
|
|
}
|
|
}
|
|
|
|
return { error };
|
|
} catch {
|
|
return {
|
|
error: {
|
|
message: 'Registration service unavailable. Please try again later.'
|
|
}
|
|
};
|
|
}
|
|
};
|
|
|
|
return (
|
|
<AuthContext.Provider value={{
|
|
user,
|
|
loading,
|
|
isAdmin,
|
|
signIn,
|
|
signUp,
|
|
signOut,
|
|
checkAdminStatus
|
|
}}>
|
|
{children}
|
|
</AuthContext.Provider>
|
|
);
|
|
}; |