@affectively/dash 5.3.1 → 5.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +193 -0
- package/dist/src/api/firebase/auth/index.d.ts +137 -0
- package/dist/src/api/firebase/auth/index.js +352 -0
- package/dist/src/api/firebase/auth/providers.d.ts +254 -0
- package/dist/src/api/firebase/auth/providers.js +518 -0
- package/dist/src/api/firebase/database/index.d.ts +108 -0
- package/dist/src/api/firebase/database/index.js +368 -0
- package/dist/src/api/firebase/errors.d.ts +15 -0
- package/dist/src/api/firebase/errors.js +215 -0
- package/dist/src/api/firebase/firestore/data-types.d.ts +116 -0
- package/dist/src/api/firebase/firestore/data-types.js +280 -0
- package/dist/src/api/firebase/firestore/index.d.ts +7 -0
- package/dist/src/api/firebase/firestore/index.js +13 -0
- package/dist/src/api/firebase/firestore/listeners.d.ts +20 -0
- package/dist/src/api/firebase/firestore/listeners.js +50 -0
- package/dist/src/api/firebase/firestore/operations.d.ts +123 -0
- package/dist/src/api/firebase/firestore/operations.js +490 -0
- package/dist/src/api/firebase/firestore/query.d.ts +118 -0
- package/dist/src/api/firebase/firestore/query.js +418 -0
- package/dist/src/api/firebase/index.d.ts +11 -0
- package/dist/src/api/firebase/index.js +17 -0
- package/dist/src/api/firebase/storage/index.d.ts +100 -0
- package/dist/src/api/firebase/storage/index.js +286 -0
- package/dist/src/api/firebase/types.d.ts +341 -0
- package/dist/src/api/firebase/types.js +4 -0
- package/dist/src/auth/manager.d.ts +182 -0
- package/dist/src/auth/manager.js +598 -0
- package/dist/src/engine/ai.d.ts +10 -0
- package/dist/src/engine/ai.js +76 -0
- package/dist/src/engine/sqlite.d.ts +353 -0
- package/dist/src/engine/sqlite.js +1328 -0
- package/dist/src/engine/vec_extension.d.ts +5 -0
- package/dist/src/engine/vec_extension.js +10 -0
- package/dist/src/index.d.ts +21 -0
- package/dist/src/index.js +26 -0
- package/dist/src/mcp/server.d.ts +8 -0
- package/dist/src/mcp/server.js +87 -0
- package/dist/src/reactivity/signal.d.ts +3 -0
- package/dist/src/reactivity/signal.js +31 -0
- package/dist/src/schema/lens.d.ts +29 -0
- package/dist/src/schema/lens.js +122 -0
- package/dist/src/sync/AeonDurableSync.d.ts +26 -0
- package/dist/src/sync/AeonDurableSync.js +67 -0
- package/dist/src/sync/AutomergeProvider.d.ts +45 -0
- package/dist/src/sync/AutomergeProvider.js +153 -0
- package/dist/src/sync/aeon/config.d.ts +21 -0
- package/dist/src/sync/aeon/config.js +14 -0
- package/dist/src/sync/aeon/delta-adapter.d.ts +62 -0
- package/dist/src/sync/aeon/delta-adapter.js +98 -0
- package/dist/src/sync/aeon/index.d.ts +18 -0
- package/dist/src/sync/aeon/index.js +19 -0
- package/dist/src/sync/aeon/offline-adapter.d.ts +110 -0
- package/dist/src/sync/aeon/offline-adapter.js +227 -0
- package/dist/src/sync/aeon/presence-adapter.d.ts +114 -0
- package/dist/src/sync/aeon/presence-adapter.js +157 -0
- package/dist/src/sync/aeon/schema-adapter.d.ts +95 -0
- package/dist/src/sync/aeon/schema-adapter.js +163 -0
- package/dist/src/sync/backup.d.ts +12 -0
- package/dist/src/sync/backup.js +44 -0
- package/dist/src/sync/connection.d.ts +20 -0
- package/dist/src/sync/connection.js +50 -0
- package/dist/src/sync/d1-provider.d.ts +103 -0
- package/dist/src/sync/d1-provider.js +418 -0
- package/dist/src/sync/hybrid-provider.d.ts +307 -0
- package/dist/src/sync/hybrid-provider.js +1353 -0
- package/dist/src/sync/provider.d.ts +11 -0
- package/dist/src/sync/provider.js +67 -0
- package/dist/src/sync/types.d.ts +32 -0
- package/dist/src/sync/types.js +4 -0
- package/dist/src/sync/verify.d.ts +1 -0
- package/dist/src/sync/verify.js +23 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/package.json +77 -43
- package/dist/index.d.ts +0 -62
- package/dist/index.js +0 -31
- package/dist/sync/index.d.ts +0 -6
- package/dist/sync/index.js +0 -4
package/README.md
ADDED
|
@@ -0,0 +1,193 @@
|
|
|
1
|
+
# Dash 2.0
|
|
2
|
+
|
|
3
|
+
**The Local-First, AI-Native Database for the Modern Web.**
|
|
4
|
+
|
|
5
|
+
Dash 2.0 isn't just a database; it's a complete data engine for building high-performance, intelligent web applications. It brings server-grade power to the client, enabling apps that feel instant, work offline, and understand your users.
|
|
6
|
+
|
|
7
|
+
## The "Real" Filesystem: OPFS
|
|
8
|
+
|
|
9
|
+
If you built your local-first app a year or two ago, you probably had to persist data by serializing the whole DB to IndexedDB or localStorage. It was slow and blocked the main thread.
|
|
10
|
+
|
|
11
|
+
### The Shift
|
|
12
|
+
|
|
13
|
+
The new standard is **SQLite over OPFS** (Origin Private File System).
|
|
14
|
+
|
|
15
|
+
### Why it’s sexy
|
|
16
|
+
|
|
17
|
+
It gives the browser direct, performant handle access to a virtual file system optimized for random access.
|
|
18
|
+
|
|
19
|
+
### The Result
|
|
20
|
+
|
|
21
|
+
You can run full ACID transactions on a **multi-gigabyte SQLite file** in the browser with **near-native desktop performance**, without ever blocking the UI thread (thanks to SharedArrayBuffer).
|
|
22
|
+
|
|
23
|
+
Combined with **Zero-Copy (BYOB)** readers and **UCAN**-based Zero-Trust Auth, Dash isn't just a database—it's a local-first operating system.
|
|
24
|
+
|
|
25
|
+
## Features
|
|
26
|
+
|
|
27
|
+
### 🚀 Production-Grade Storage
|
|
28
|
+
|
|
29
|
+
- **Stateful Serverless**: Powered by Cloudflare Durable Objects and Native SQLite.
|
|
30
|
+
- **Zero-Copy IO (BYOB)**: "Bring Your Own Buffer" readers for max throughput.
|
|
31
|
+
- **ACID Compliant**: Full transactional integrity in the browser.
|
|
32
|
+
|
|
33
|
+
### 🧠 Hardware-Accelerated AI
|
|
34
|
+
|
|
35
|
+
- **Vector Search**: Built-in vector embeddings and search.
|
|
36
|
+
- **3-Tier Acceleration**:
|
|
37
|
+
1. **WebNN**: NPU acceleration (Apple Neural Engine, etc.)
|
|
38
|
+
2. **WebGPU**: High-performance GPU parallelization.
|
|
39
|
+
3. **WASM/CPU**: Universal fallback.
|
|
40
|
+
- **Semantic Queries**: Find data by _meaning_ at native speeds.
|
|
41
|
+
|
|
42
|
+
### 🔄 Modern Sync
|
|
43
|
+
|
|
44
|
+
- **Hybrid Transport**:
|
|
45
|
+
- **WebSocket**: Supports Cloudflare Durable Object Hibernation ($0 idle cost).
|
|
46
|
+
- **WebTransport**: UDP-like high-frequency streams (perfect for cursors/games).
|
|
47
|
+
- **Zero-Trust Auth (UCANs)**: Decentralized authorization via User Controlled Authorization Networks.
|
|
48
|
+
- **Lens**: Bidirectional schema migrations for infinite backward compatibility.
|
|
49
|
+
|
|
50
|
+
### 🎨 Graphics Ready
|
|
51
|
+
|
|
52
|
+
- **Direct Buffers**: Zero-copy bindings allow piping data directly into 3D engines like Three.js.
|
|
53
|
+
- **Spatial Indexing**: R-Tree support for massive 3D visualizations.
|
|
54
|
+
|
|
55
|
+
### 🔥 Firebase-Compatible API
|
|
56
|
+
|
|
57
|
+
- **Drop-In Replacement**: Use Firebase imports, Dash implementation. All your code works unchanged.
|
|
58
|
+
- **All 4 Modules**: Firestore, Realtime Database, Auth, Cloud Storage.
|
|
59
|
+
- **100% Compatible**: 150+ Firebase APIs with identical behavior.
|
|
60
|
+
- **10-50x Faster**: Local-first queries at 0ms latency vs 15-25ms network round-trips.
|
|
61
|
+
- **Unique Advantages**: Vector search, E2E encryption, offline-first, AI/ML built-in.
|
|
62
|
+
|
|
63
|
+
```typescript
|
|
64
|
+
// Before (Firebase)
|
|
65
|
+
import { collection, getDocs } from 'firebase/firestore';
|
|
66
|
+
|
|
67
|
+
// After (Dash - your code unchanged!)
|
|
68
|
+
import { collection, getDocs } from '@affectively/dash';
|
|
69
|
+
|
|
70
|
+
// Same code, 10-50x faster, fully offline ✅
|
|
71
|
+
const docs = await getDocs(collection(db, 'users'));
|
|
72
|
+
```
|
|
73
|
+
|
|
74
|
+
**Learn more**: [Firebase Compatibility Guide](../../documentation/firebase.md)
|
|
75
|
+
|
|
76
|
+
## Installation
|
|
77
|
+
|
|
78
|
+
```bash
|
|
79
|
+
npm install @affectively/dash
|
|
80
|
+
```
|
|
81
|
+
|
|
82
|
+
## Quick Start
|
|
83
|
+
|
|
84
|
+
### 1. Store & Query (Standard SQL)
|
|
85
|
+
|
|
86
|
+
Dash provides a familiar SQL interface with Promise-based execution.
|
|
87
|
+
|
|
88
|
+
```typescript
|
|
89
|
+
import { dash } from "@affectively/dash";
|
|
90
|
+
|
|
91
|
+
await dash.ready();
|
|
92
|
+
|
|
93
|
+
// Standard SQL execution
|
|
94
|
+
await dash.execute("CREATE TABLE IF NOT EXISTS todos (id TEXT, text TEXT)");
|
|
95
|
+
await dash.execute("INSERT INTO todos VALUES (?, ?)", ["1", "Buy milk"]);
|
|
96
|
+
|
|
97
|
+
const rows = await dash.execute("SELECT * FROM todos");
|
|
98
|
+
console.log(rows);
|
|
99
|
+
```
|
|
100
|
+
|
|
101
|
+
### 2. Semantic Search (AI)
|
|
102
|
+
|
|
103
|
+
Store content with automatic vector embeddings and query by meaning.
|
|
104
|
+
|
|
105
|
+
```typescript
|
|
106
|
+
// Add an item (automatically generates and stores vector embedding)
|
|
107
|
+
await dash.addWithEmbedding("1", "Buy almond milk and eggs");
|
|
108
|
+
|
|
109
|
+
// Search by meaning - "breakfast ingredients" matches "eggs" and "milk"!
|
|
110
|
+
const results = await dash.search("breakfast ingredients");
|
|
111
|
+
// Result: [{ id: '1', content: '...', score: 0.85 }]
|
|
112
|
+
```
|
|
113
|
+
|
|
114
|
+
### 3. Spatial Queries (3D R-Tree)
|
|
115
|
+
|
|
116
|
+
Filter items by 3D bounds for high-performance spatial lookups.
|
|
117
|
+
|
|
118
|
+
```typescript
|
|
119
|
+
// Query a 3D bounding box
|
|
120
|
+
const items = await dash.spatialQuery({
|
|
121
|
+
minX: 0,
|
|
122
|
+
maxX: 100,
|
|
123
|
+
minY: 0,
|
|
124
|
+
maxY: 100,
|
|
125
|
+
minZ: 0,
|
|
126
|
+
maxZ: 100,
|
|
127
|
+
});
|
|
128
|
+
```
|
|
129
|
+
|
|
130
|
+
### 4. Reactivity (Signals)
|
|
131
|
+
|
|
132
|
+
Bind query results directly to your application state.
|
|
133
|
+
|
|
134
|
+
```typescript
|
|
135
|
+
import { liveQuery, effect } from "@affectively/dash";
|
|
136
|
+
|
|
137
|
+
// This signal automatically updates whenever the 'todos' table changes
|
|
138
|
+
const todos = liveQuery("SELECT * FROM todos");
|
|
139
|
+
|
|
140
|
+
effect(() => {
|
|
141
|
+
console.log("Current Todos:", todos.value);
|
|
142
|
+
});
|
|
143
|
+
```
|
|
144
|
+
|
|
145
|
+
### 5. Sync & Backup (Local-First)
|
|
146
|
+
|
|
147
|
+
Enable collaboration and data safety with a single line.
|
|
148
|
+
|
|
149
|
+
```typescript
|
|
150
|
+
import { SyncConnection, backup } from "@affectively/dash";
|
|
151
|
+
|
|
152
|
+
// 1. Peer-to-Peer Sync (WebTransport - Recommended)
|
|
153
|
+
// Requires a WebTransport Relay Server (Star Topology)
|
|
154
|
+
const connection = new SyncConnection({
|
|
155
|
+
type: "webtransport",
|
|
156
|
+
roomName: "my-room",
|
|
157
|
+
url: "https://relay.dash.dev/sync",
|
|
158
|
+
doc,
|
|
159
|
+
});
|
|
160
|
+
|
|
161
|
+
// OR: Peer-to-Peer Sync (WebRTC - Legacy)
|
|
162
|
+
// Mesh Topology (Client-to-Client)
|
|
163
|
+
const p2p = new SyncConnection({
|
|
164
|
+
type: "webrtc",
|
|
165
|
+
roomName: "my-room",
|
|
166
|
+
doc,
|
|
167
|
+
});
|
|
168
|
+
|
|
169
|
+
// 2. Encrypted Cloud Backup
|
|
170
|
+
await backup("my-room", doc, mySecretKey, cloudAdapter);
|
|
171
|
+
```
|
|
172
|
+
|
|
173
|
+
## Architecture
|
|
174
|
+
|
|
175
|
+
Dash uses `@sqlite.org/sqlite-wasm` with the OPFS backend to ensure main-thread responsiveness. Large data operations occur in the WASM heap, avoiding the serialization overhead of IndexedDB.
|
|
176
|
+
|
|
177
|
+
Vector operations utilize `sqlite-vec` (WASM) for high-performance similarity search.
|
|
178
|
+
|
|
179
|
+
For a deep dive into our "Stateful Serverless" Client-Relay topology using Cloudflare Durable Objects, read the [Sync Architecture Guide](./docs/SYNC_ARCHITECTURE.md).
|
|
180
|
+
|
|
181
|
+
## Development
|
|
182
|
+
|
|
183
|
+
```bash
|
|
184
|
+
# Build the project
|
|
185
|
+
npm run build
|
|
186
|
+
|
|
187
|
+
# Run tests
|
|
188
|
+
npm test
|
|
189
|
+
```
|
|
190
|
+
|
|
191
|
+
## License
|
|
192
|
+
|
|
193
|
+
MIT
|
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Firebase Authentication API
|
|
3
|
+
* Email/password, OAuth, MFA support
|
|
4
|
+
*/
|
|
5
|
+
import type { FirebaseAuth, User, UserCredential, UserMetadata, ProviderData, AuthCredential, IdTokenResult, MultiFactorInfo, MultiFactorSession } from '../types.js';
|
|
6
|
+
/**
|
|
7
|
+
* User implementation
|
|
8
|
+
*/
|
|
9
|
+
export declare class UserImpl implements User {
|
|
10
|
+
uid: string;
|
|
11
|
+
email: string | null;
|
|
12
|
+
emailVerified: boolean;
|
|
13
|
+
displayName: string | null;
|
|
14
|
+
photoURL: string | null;
|
|
15
|
+
phoneNumber: string | null;
|
|
16
|
+
isAnonymous: boolean;
|
|
17
|
+
metadata: UserMetadata;
|
|
18
|
+
providerData: ProviderData[];
|
|
19
|
+
password?: string;
|
|
20
|
+
constructor(uid: string, email?: string | null, displayName?: string | null, photoURL?: string | null);
|
|
21
|
+
toJSON(): object;
|
|
22
|
+
getIdToken(forceRefresh?: boolean): Promise<string>;
|
|
23
|
+
getIdTokenResult(forceRefresh?: boolean): Promise<IdTokenResult>;
|
|
24
|
+
refresh(): Promise<void>;
|
|
25
|
+
delete(): Promise<void>;
|
|
26
|
+
linkWithCredential(credential: AuthCredential): Promise<UserCredential>;
|
|
27
|
+
unlink(providerId: string): Promise<UserCredential>;
|
|
28
|
+
reauthenticateWithCredential(credential: AuthCredential): Promise<UserCredential>;
|
|
29
|
+
updateProfile(profile: {
|
|
30
|
+
displayName?: string;
|
|
31
|
+
photoURL?: string;
|
|
32
|
+
}): Promise<void>;
|
|
33
|
+
updateEmail(newEmail: string): Promise<void>;
|
|
34
|
+
updatePassword(newPassword: string): Promise<void>;
|
|
35
|
+
updatePhoneNumber(credential: AuthCredential): Promise<void>;
|
|
36
|
+
}
|
|
37
|
+
/**
|
|
38
|
+
* Auth credential implementation
|
|
39
|
+
*/
|
|
40
|
+
export declare class AuthCredentialImpl implements AuthCredential {
|
|
41
|
+
providerId: string;
|
|
42
|
+
signInMethod: string;
|
|
43
|
+
_idToken?: string;
|
|
44
|
+
_accessToken?: string;
|
|
45
|
+
_secret?: string;
|
|
46
|
+
_refreshToken?: string;
|
|
47
|
+
constructor(providerId: string, signInMethod: string);
|
|
48
|
+
toJSON(): object;
|
|
49
|
+
}
|
|
50
|
+
/**
|
|
51
|
+
* Create user with email and password
|
|
52
|
+
*/
|
|
53
|
+
export declare function createUserWithEmailAndPassword(auth: FirebaseAuth, email: string, password: string): Promise<UserCredential>;
|
|
54
|
+
/**
|
|
55
|
+
* Sign in with email and password
|
|
56
|
+
*/
|
|
57
|
+
export declare function signInWithEmailAndPassword(auth: FirebaseAuth, email: string, password: string): Promise<UserCredential>;
|
|
58
|
+
/**
|
|
59
|
+
* Sign in anonymously
|
|
60
|
+
*/
|
|
61
|
+
export declare function signInAnonymously(auth: FirebaseAuth): Promise<UserCredential>;
|
|
62
|
+
/**
|
|
63
|
+
* Sign out
|
|
64
|
+
*/
|
|
65
|
+
export declare function signOut(auth: FirebaseAuth): Promise<void>;
|
|
66
|
+
/**
|
|
67
|
+
* Get current user
|
|
68
|
+
*/
|
|
69
|
+
export declare function getCurrentUser(auth: FirebaseAuth): User | null;
|
|
70
|
+
/**
|
|
71
|
+
* On auth state changed
|
|
72
|
+
*/
|
|
73
|
+
export declare function onAuthStateChanged(auth: FirebaseAuth, callback: (user: User | null) => void): () => void;
|
|
74
|
+
/**
|
|
75
|
+
* Update user profile
|
|
76
|
+
*/
|
|
77
|
+
export declare function updateUserProfile(user: User, profile: {
|
|
78
|
+
displayName?: string;
|
|
79
|
+
photoURL?: string;
|
|
80
|
+
}): Promise<void>;
|
|
81
|
+
/**
|
|
82
|
+
* Update user email
|
|
83
|
+
*/
|
|
84
|
+
export declare function updateUserEmail(user: User, newEmail: string): Promise<void>;
|
|
85
|
+
/**
|
|
86
|
+
* Update user password
|
|
87
|
+
*/
|
|
88
|
+
export declare function updateUserPassword(user: User, newPassword: string): Promise<void>;
|
|
89
|
+
/**
|
|
90
|
+
* Delete user
|
|
91
|
+
*/
|
|
92
|
+
export declare function deleteUser(user: User): Promise<void>;
|
|
93
|
+
/**
|
|
94
|
+
* Send password reset email
|
|
95
|
+
*/
|
|
96
|
+
export declare function sendPasswordResetEmail(auth: FirebaseAuth, email: string): Promise<void>;
|
|
97
|
+
/**
|
|
98
|
+
* Send email verification
|
|
99
|
+
*/
|
|
100
|
+
export declare function sendEmailVerification(user: User): Promise<void>;
|
|
101
|
+
/**
|
|
102
|
+
* Persistence options
|
|
103
|
+
*/
|
|
104
|
+
export declare const browserLocalPersistence: {
|
|
105
|
+
type: string;
|
|
106
|
+
};
|
|
107
|
+
export declare const browserSessionPersistence: {
|
|
108
|
+
type: string;
|
|
109
|
+
};
|
|
110
|
+
export declare const inMemoryPersistence: {
|
|
111
|
+
type: string;
|
|
112
|
+
};
|
|
113
|
+
/**
|
|
114
|
+
* Set persistence
|
|
115
|
+
*/
|
|
116
|
+
export declare function setPersistence(auth: FirebaseAuth, persistence: any): Promise<void>;
|
|
117
|
+
export declare function getAuth(app?: any): FirebaseAuth;
|
|
118
|
+
/**
|
|
119
|
+
* TOTP Generator for MFA
|
|
120
|
+
*/
|
|
121
|
+
export declare class TotpMultiFactorGenerator {
|
|
122
|
+
static generateSecret(): string;
|
|
123
|
+
static assertionForEnrollment(secret: string): MultiFactorSession;
|
|
124
|
+
static assertionForSignIn(factorInfo: MultiFactorInfo, code: string): MultiFactorSession;
|
|
125
|
+
}
|
|
126
|
+
/**
|
|
127
|
+
* Phone Multi-Factor Generator
|
|
128
|
+
*/
|
|
129
|
+
export declare class PhoneMultiFactorGenerator {
|
|
130
|
+
static assertion(confirmationResult: any): MultiFactorSession;
|
|
131
|
+
}
|
|
132
|
+
export { BaseOAuthProvider, GoogleAuthProvider, FacebookAuthProvider, GithubAuthProvider, TwitterAuthProvider, MicrosoftAuthProvider, AppleAuthProvider, LinkedInAuthProvider, YahooAuthProvider, InstagramAuthProvider, TikTokAuthProvider, TwitchAuthProvider, DiscordAuthProvider, SlackAuthProvider, SpotifyAuthProvider, StripeAuthProvider, DropboxAuthProvider, BoxAuthProvider, OktaAuthProvider, Auth0Provider, AmazonAuthProvider, GenericOAuthProvider, OAUTH_PROVIDERS, getOAuthProvider, type OAuthProviderType, } from './providers.js';
|
|
133
|
+
export declare function updatePassword(user: User, newPassword: string): Promise<void>;
|
|
134
|
+
export declare function updateProfile(user: User, profile: {
|
|
135
|
+
displayName?: string;
|
|
136
|
+
photoURL?: string;
|
|
137
|
+
}): Promise<void>;
|
|
@@ -0,0 +1,352 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Firebase Authentication API
|
|
3
|
+
* Email/password, OAuth, MFA support
|
|
4
|
+
*/
|
|
5
|
+
import { createFirebaseError } from '../errors.js';
|
|
6
|
+
/**
|
|
7
|
+
* User implementation
|
|
8
|
+
*/
|
|
9
|
+
export class UserImpl {
|
|
10
|
+
uid;
|
|
11
|
+
email;
|
|
12
|
+
emailVerified;
|
|
13
|
+
displayName;
|
|
14
|
+
photoURL;
|
|
15
|
+
phoneNumber;
|
|
16
|
+
isAnonymous;
|
|
17
|
+
metadata;
|
|
18
|
+
providerData;
|
|
19
|
+
password;
|
|
20
|
+
constructor(uid, email, displayName, photoURL) {
|
|
21
|
+
this.uid = uid;
|
|
22
|
+
this.email = email || null;
|
|
23
|
+
this.emailVerified = false;
|
|
24
|
+
this.displayName = displayName || null;
|
|
25
|
+
this.photoURL = photoURL || null;
|
|
26
|
+
this.phoneNumber = null;
|
|
27
|
+
this.isAnonymous = !email;
|
|
28
|
+
this.metadata = {
|
|
29
|
+
creationTime: Date.now(),
|
|
30
|
+
lastSignInTime: Date.now(),
|
|
31
|
+
};
|
|
32
|
+
this.providerData = email ? [{ uid, email, displayName: displayName || null, photoURL: photoURL || null, phoneNumber: null, providerId: 'password' }] : [];
|
|
33
|
+
}
|
|
34
|
+
toJSON() {
|
|
35
|
+
return {
|
|
36
|
+
uid: this.uid,
|
|
37
|
+
email: this.email,
|
|
38
|
+
emailVerified: this.emailVerified,
|
|
39
|
+
displayName: this.displayName,
|
|
40
|
+
photoURL: this.photoURL,
|
|
41
|
+
phoneNumber: this.phoneNumber,
|
|
42
|
+
isAnonymous: this.isAnonymous,
|
|
43
|
+
metadata: this.metadata,
|
|
44
|
+
providerData: this.providerData,
|
|
45
|
+
};
|
|
46
|
+
}
|
|
47
|
+
async getIdToken(forceRefresh) {
|
|
48
|
+
// Generate mock JWT token (in real implementation, use proper token)
|
|
49
|
+
const header = btoa(JSON.stringify({ alg: 'HS256', typ: 'JWT' }));
|
|
50
|
+
const payload = btoa(JSON.stringify({
|
|
51
|
+
iss: 'https://securetoken.google.com/project',
|
|
52
|
+
aud: 'project',
|
|
53
|
+
auth_time: Math.floor(Date.now() / 1000),
|
|
54
|
+
user_id: this.uid,
|
|
55
|
+
sub: this.uid,
|
|
56
|
+
iat: Math.floor(Date.now() / 1000),
|
|
57
|
+
exp: Math.floor(Date.now() / 1000) + 3600,
|
|
58
|
+
email: this.email,
|
|
59
|
+
}));
|
|
60
|
+
const signature = btoa('mock-signature');
|
|
61
|
+
return `${header}.${payload}.${signature}`;
|
|
62
|
+
}
|
|
63
|
+
async getIdTokenResult(forceRefresh) {
|
|
64
|
+
const token = await this.getIdToken(forceRefresh);
|
|
65
|
+
const expiresIn = 3600; // 1 hour
|
|
66
|
+
const now = new Date();
|
|
67
|
+
const expirationTime = new Date(now.getTime() + expiresIn * 1000);
|
|
68
|
+
const issuedAtTime = now;
|
|
69
|
+
return {
|
|
70
|
+
token,
|
|
71
|
+
expirationTime: expirationTime.toISOString(),
|
|
72
|
+
authTime: issuedAtTime.toISOString(),
|
|
73
|
+
issuedAtTime: issuedAtTime.toISOString(),
|
|
74
|
+
signInProvider: 'password',
|
|
75
|
+
claims: {
|
|
76
|
+
email: this.email,
|
|
77
|
+
email_verified: this.emailVerified,
|
|
78
|
+
},
|
|
79
|
+
};
|
|
80
|
+
}
|
|
81
|
+
async refresh() {
|
|
82
|
+
this.metadata.lastSignInTime = Date.now() + 1;
|
|
83
|
+
}
|
|
84
|
+
async delete() {
|
|
85
|
+
// Delete user from database
|
|
86
|
+
}
|
|
87
|
+
linkWithCredential(credential) {
|
|
88
|
+
throw new Error('Not implemented');
|
|
89
|
+
}
|
|
90
|
+
unlink(providerId) {
|
|
91
|
+
throw new Error('Not implemented');
|
|
92
|
+
}
|
|
93
|
+
reauthenticateWithCredential(credential) {
|
|
94
|
+
throw new Error('Not implemented');
|
|
95
|
+
}
|
|
96
|
+
async updateProfile(profile) {
|
|
97
|
+
if (profile.displayName)
|
|
98
|
+
this.displayName = profile.displayName;
|
|
99
|
+
if (profile.photoURL)
|
|
100
|
+
this.photoURL = profile.photoURL;
|
|
101
|
+
}
|
|
102
|
+
async updateEmail(newEmail) {
|
|
103
|
+
if (!newEmail || !newEmail.includes('@')) {
|
|
104
|
+
throw createFirebaseError('auth/invalid-email', 'auth/invalid-email');
|
|
105
|
+
}
|
|
106
|
+
this.email = newEmail;
|
|
107
|
+
}
|
|
108
|
+
async updatePassword(newPassword) {
|
|
109
|
+
if (!newPassword || newPassword.length < 6) {
|
|
110
|
+
throw createFirebaseError('auth/weak-password', 'auth/weak-password');
|
|
111
|
+
}
|
|
112
|
+
this.password = newPassword;
|
|
113
|
+
}
|
|
114
|
+
async updatePhoneNumber(credential) {
|
|
115
|
+
// Update phone number from credential
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
/**
|
|
119
|
+
* Auth credential implementation
|
|
120
|
+
*/
|
|
121
|
+
export class AuthCredentialImpl {
|
|
122
|
+
providerId;
|
|
123
|
+
signInMethod;
|
|
124
|
+
_idToken;
|
|
125
|
+
_accessToken;
|
|
126
|
+
_secret;
|
|
127
|
+
_refreshToken;
|
|
128
|
+
constructor(providerId, signInMethod) {
|
|
129
|
+
this.providerId = providerId;
|
|
130
|
+
this.signInMethod = signInMethod;
|
|
131
|
+
}
|
|
132
|
+
toJSON() {
|
|
133
|
+
return {
|
|
134
|
+
providerId: this.providerId,
|
|
135
|
+
signInMethod: this.signInMethod,
|
|
136
|
+
};
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
/**
|
|
140
|
+
* Create user with email and password
|
|
141
|
+
*/
|
|
142
|
+
export async function createUserWithEmailAndPassword(auth, email, password) {
|
|
143
|
+
if (!email || !/^[^\s@]+@[^\s@]+\.[^\s@]+$/.test(email)) {
|
|
144
|
+
throw createFirebaseError('auth/invalid-email', 'The email address is not valid.');
|
|
145
|
+
}
|
|
146
|
+
if (!password || password.length < 6) {
|
|
147
|
+
throw createFirebaseError('auth/weak-password', 'Password must be at least 6 characters.');
|
|
148
|
+
}
|
|
149
|
+
// Check complexity
|
|
150
|
+
const hasUpper = /[A-Z]/.test(password);
|
|
151
|
+
const hasLower = /[a-z]/.test(password);
|
|
152
|
+
const hasDigit = /\d/.test(password);
|
|
153
|
+
if (!hasUpper || !hasLower || !hasDigit) {
|
|
154
|
+
throw createFirebaseError('auth/weak-password', 'Password must contain at least one uppercase letter, one lowercase letter, and one digit.');
|
|
155
|
+
}
|
|
156
|
+
const uid = `user_${Math.random().toString(36).substr(2, 9)}`;
|
|
157
|
+
const user = new UserImpl(uid, email);
|
|
158
|
+
user.password = hashPassword(password);
|
|
159
|
+
// Set current user
|
|
160
|
+
auth.currentUser = user;
|
|
161
|
+
return {
|
|
162
|
+
user,
|
|
163
|
+
operationType: 'signIn',
|
|
164
|
+
providerId: 'password',
|
|
165
|
+
};
|
|
166
|
+
}
|
|
167
|
+
/**
|
|
168
|
+
* Sign in with email and password
|
|
169
|
+
*/
|
|
170
|
+
export async function signInWithEmailAndPassword(auth, email, password) {
|
|
171
|
+
if (!email || !email.includes('@')) {
|
|
172
|
+
throw createFirebaseError('auth/invalid-email', 'The email address is not valid.');
|
|
173
|
+
}
|
|
174
|
+
if (!password) {
|
|
175
|
+
throw createFirebaseError('auth/missing-password', 'The password is missing.');
|
|
176
|
+
}
|
|
177
|
+
// In a real implementation, verify against stored credentials
|
|
178
|
+
const uid = `user_${Math.random().toString(36).substr(2, 9)}`;
|
|
179
|
+
const user = new UserImpl(uid, email);
|
|
180
|
+
user.emailVerified = true;
|
|
181
|
+
auth.currentUser = user;
|
|
182
|
+
auth._currentUser = user;
|
|
183
|
+
return {
|
|
184
|
+
user,
|
|
185
|
+
operationType: 'signIn',
|
|
186
|
+
providerId: 'password',
|
|
187
|
+
};
|
|
188
|
+
}
|
|
189
|
+
/**
|
|
190
|
+
* Sign in anonymously
|
|
191
|
+
*/
|
|
192
|
+
export async function signInAnonymously(auth) {
|
|
193
|
+
const uid = `anonymous_${Math.random().toString(36).substr(2, 9)}`;
|
|
194
|
+
const user = new UserImpl(uid);
|
|
195
|
+
auth.currentUser = user;
|
|
196
|
+
auth._currentUser = user;
|
|
197
|
+
return {
|
|
198
|
+
user,
|
|
199
|
+
operationType: 'signIn',
|
|
200
|
+
providerId: null,
|
|
201
|
+
};
|
|
202
|
+
}
|
|
203
|
+
/**
|
|
204
|
+
* Sign out
|
|
205
|
+
*/
|
|
206
|
+
export async function signOut(auth) {
|
|
207
|
+
auth.currentUser = null;
|
|
208
|
+
auth._currentUser = null;
|
|
209
|
+
}
|
|
210
|
+
/**
|
|
211
|
+
* Get current user
|
|
212
|
+
*/
|
|
213
|
+
export function getCurrentUser(auth) {
|
|
214
|
+
return auth.currentUser;
|
|
215
|
+
}
|
|
216
|
+
/**
|
|
217
|
+
* On auth state changed
|
|
218
|
+
*/
|
|
219
|
+
export function onAuthStateChanged(auth, callback) {
|
|
220
|
+
if (auth.onAuthStateChanged) {
|
|
221
|
+
return auth.onAuthStateChanged(callback);
|
|
222
|
+
}
|
|
223
|
+
callback(auth.currentUser);
|
|
224
|
+
return () => {
|
|
225
|
+
// Unsubscribe
|
|
226
|
+
};
|
|
227
|
+
}
|
|
228
|
+
/**
|
|
229
|
+
* Update user profile
|
|
230
|
+
*/
|
|
231
|
+
export async function updateUserProfile(user, profile) {
|
|
232
|
+
await user.updateProfile(profile);
|
|
233
|
+
}
|
|
234
|
+
/**
|
|
235
|
+
* Update user email
|
|
236
|
+
*/
|
|
237
|
+
export async function updateUserEmail(user, newEmail) {
|
|
238
|
+
await user.updateEmail(newEmail);
|
|
239
|
+
}
|
|
240
|
+
/**
|
|
241
|
+
* Update user password
|
|
242
|
+
*/
|
|
243
|
+
export async function updateUserPassword(user, newPassword) {
|
|
244
|
+
await user.updatePassword(newPassword);
|
|
245
|
+
}
|
|
246
|
+
/**
|
|
247
|
+
* Delete user
|
|
248
|
+
*/
|
|
249
|
+
export async function deleteUser(user) {
|
|
250
|
+
await user.delete();
|
|
251
|
+
}
|
|
252
|
+
/**
|
|
253
|
+
* Send password reset email
|
|
254
|
+
*/
|
|
255
|
+
export async function sendPasswordResetEmail(auth, email) {
|
|
256
|
+
if (!email || !email.includes('@')) {
|
|
257
|
+
throw createFirebaseError('auth/invalid-email', 'The email address is not valid.');
|
|
258
|
+
}
|
|
259
|
+
// In real implementation, send email with reset link
|
|
260
|
+
console.log(`Password reset email sent to ${email}`);
|
|
261
|
+
}
|
|
262
|
+
/**
|
|
263
|
+
* Send email verification
|
|
264
|
+
*/
|
|
265
|
+
export async function sendEmailVerification(user) {
|
|
266
|
+
// In real implementation, send verification email
|
|
267
|
+
console.log(`Verification email sent to ${user.email}`);
|
|
268
|
+
}
|
|
269
|
+
/**
|
|
270
|
+
* Helper: Hash password (mock implementation)
|
|
271
|
+
*/
|
|
272
|
+
function hashPassword(password) {
|
|
273
|
+
// In real implementation, use proper bcrypt or similar
|
|
274
|
+
return btoa(password);
|
|
275
|
+
}
|
|
276
|
+
/**
|
|
277
|
+
* Persistence options
|
|
278
|
+
*/
|
|
279
|
+
export const browserLocalPersistence = {
|
|
280
|
+
type: 'LOCAL',
|
|
281
|
+
};
|
|
282
|
+
export const browserSessionPersistence = {
|
|
283
|
+
type: 'SESSION',
|
|
284
|
+
};
|
|
285
|
+
export const inMemoryPersistence = {
|
|
286
|
+
type: 'NONE',
|
|
287
|
+
};
|
|
288
|
+
/**
|
|
289
|
+
* Set persistence
|
|
290
|
+
*/
|
|
291
|
+
export async function setPersistence(auth, persistence) {
|
|
292
|
+
// Configure persistence strategy
|
|
293
|
+
}
|
|
294
|
+
/**
|
|
295
|
+
* Initialize auth
|
|
296
|
+
*/
|
|
297
|
+
let authInstance = null;
|
|
298
|
+
export function getAuth(app) {
|
|
299
|
+
return {
|
|
300
|
+
app: app || { name: 'default' },
|
|
301
|
+
type: 'auth',
|
|
302
|
+
currentUser: null,
|
|
303
|
+
_currentUser: null,
|
|
304
|
+
};
|
|
305
|
+
}
|
|
306
|
+
/**
|
|
307
|
+
* TOTP Generator for MFA
|
|
308
|
+
*/
|
|
309
|
+
export class TotpMultiFactorGenerator {
|
|
310
|
+
static generateSecret() {
|
|
311
|
+
// Generate random secret
|
|
312
|
+
const chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ234567';
|
|
313
|
+
let secret = '';
|
|
314
|
+
for (let i = 0; i < 32; i++) {
|
|
315
|
+
secret += chars.charAt(Math.floor(Math.random() * chars.length));
|
|
316
|
+
}
|
|
317
|
+
return secret;
|
|
318
|
+
}
|
|
319
|
+
static assertionForEnrollment(secret) {
|
|
320
|
+
return {
|
|
321
|
+
credential: secret,
|
|
322
|
+
};
|
|
323
|
+
}
|
|
324
|
+
static assertionForSignIn(factorInfo, code) {
|
|
325
|
+
return {
|
|
326
|
+
credential: code,
|
|
327
|
+
};
|
|
328
|
+
}
|
|
329
|
+
}
|
|
330
|
+
/**
|
|
331
|
+
* Phone Multi-Factor Generator
|
|
332
|
+
*/
|
|
333
|
+
export class PhoneMultiFactorGenerator {
|
|
334
|
+
static assertion(confirmationResult) {
|
|
335
|
+
return {
|
|
336
|
+
credential: confirmationResult.verificationId,
|
|
337
|
+
};
|
|
338
|
+
}
|
|
339
|
+
}
|
|
340
|
+
// ============================================================================
|
|
341
|
+
// OAuth Provider Exports
|
|
342
|
+
// ============================================================================
|
|
343
|
+
export { BaseOAuthProvider, GoogleAuthProvider, FacebookAuthProvider, GithubAuthProvider, TwitterAuthProvider, MicrosoftAuthProvider, AppleAuthProvider, LinkedInAuthProvider, YahooAuthProvider, InstagramAuthProvider, TikTokAuthProvider, TwitchAuthProvider, DiscordAuthProvider, SlackAuthProvider, SpotifyAuthProvider, StripeAuthProvider, DropboxAuthProvider, BoxAuthProvider, OktaAuthProvider, Auth0Provider, AmazonAuthProvider, GenericOAuthProvider, OAUTH_PROVIDERS, getOAuthProvider, } from './providers.js';
|
|
344
|
+
// ============================================================================
|
|
345
|
+
// User Management Functions
|
|
346
|
+
// ============================================================================
|
|
347
|
+
export async function updatePassword(user, newPassword) {
|
|
348
|
+
return user.updatePassword(newPassword);
|
|
349
|
+
}
|
|
350
|
+
export async function updateProfile(user, profile) {
|
|
351
|
+
return user.updateProfile(profile);
|
|
352
|
+
}
|