-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsys-two-factor.object.ts
More file actions
206 lines (190 loc) · 6.91 KB
/
Copy pathsys-two-factor.object.ts
File metadata and controls
206 lines (190 loc) · 6.91 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
// Copyright (c) 2025 ObjectStack. Licensed under the Apache-2.0 license.
import { ObjectSchema, Field } from '@objectstack/spec/data';
/**
* sys_two_factor — System Two-Factor Object
*
* Two-factor authentication credentials (TOTP, backup codes).
* Backed by better-auth's two-factor plugin.
*
* @namespace sys
*/
export const SysTwoFactor = ObjectSchema.create({
name: 'sys_two_factor',
label: 'Two Factor',
pluralLabel: 'Two Factor Credentials',
icon: 'smartphone',
isSystem: true,
managedBy: 'better-auth',
// ADR-0010 §3.7 — managed by better-auth; tenants may not edit schema,
// but may add overlay row-level config. Use `no-overlay` if you need to
// forbid sys_metadata overlays entirely.
protection: {
lock: 'full',
reason: 'Identity table managed by better-auth — see ADR-0010.',
docsUrl: 'https://docs.objectstack.ai/adr/0010-metadata-protection',
},
description: 'Two-factor authentication credentials',
titleFormat: 'Two-factor for {user_id}',
highlightFields: ['user_id', 'created_at'],
listViews: {
mine: {
type: 'grid',
name: 'mine',
label: 'My Enrollment',
data: { provider: 'object', object: 'sys_two_factor' },
columns: ['created_at', 'updated_at'],
filter: [{ field: 'user_id', operator: 'equals', value: '{current_user_id}' }],
sort: [{ field: 'created_at', order: 'desc' }],
pagination: { pageSize: 50 },
},
all_enrollments: {
type: 'grid',
name: 'all_enrollments',
label: 'All',
data: { provider: 'object', object: 'sys_two_factor' },
columns: ['user_id', 'created_at', 'updated_at'],
sort: [{ field: 'created_at', order: 'desc' }],
pagination: { pageSize: 50 },
},
},
// Toolbar actions for self-service 2FA enrollment. Better-auth's
// `/two-factor/enable` returns `{ totpURI, backupCodes }` — the user must
// scan the URI into an authenticator app and save the backup codes NOW;
// they are never recoverable afterward. The `resultDialog` field tells
// the renderer to open a one-shot reveal dialog instead of toasting the
// success message. Same shape used by `regenerate_backup_codes`.
actions: [
{
name: 'enable_two_factor',
label: 'Enable 2FA',
icon: 'shield-check',
variant: 'primary',
locations: ['list_toolbar'],
type: 'api',
target: '/api/v1/auth/two-factor/enable',
requiresFeature: 'twoFactor',
refreshAfter: true,
params: [
{ name: 'password', label: 'Current Password', type: 'text', required: true },
],
resultDialog: {
title: 'Two-factor authentication enabled',
description: 'Scan the QR code with your authenticator app, then save the backup codes somewhere safe. The backup codes are shown only once.',
acknowledge: 'I have saved my backup codes',
fields: [
{ path: 'totpURI', label: 'Authenticator URI', format: 'qrcode' },
{ path: 'backupCodes', label: 'Backup Codes', format: 'code-list' },
],
},
},
{
name: 'disable_two_factor',
label: 'Disable 2FA',
icon: 'shield-off',
variant: 'danger',
locations: ['list_toolbar'],
type: 'api',
target: '/api/v1/auth/two-factor/disable',
requiresFeature: 'twoFactor',
confirmText: 'Disable two-factor authentication on your account?',
successMessage: '2FA disabled',
refreshAfter: true,
params: [
{ name: 'password', label: 'Current Password', type: 'text', required: true },
],
},
{
name: 'regenerate_backup_codes',
label: 'Regenerate Backup Codes',
icon: 'refresh-cw',
variant: 'secondary',
locations: ['list_toolbar', 'list_item'],
type: 'api',
target: '/api/v1/auth/two-factor/generate-backup-codes',
requiresFeature: 'twoFactor',
confirmText: 'Regenerate backup codes? All previous backup codes will stop working immediately.',
refreshAfter: true,
params: [
{ name: 'password', label: 'Current Password', type: 'text', required: true },
],
resultDialog: {
title: 'New backup codes generated',
description: 'Previous backup codes are now invalid. Save these new codes somewhere safe — they are shown only once.',
acknowledge: 'I have saved the new codes',
fields: [
{ path: 'backupCodes', label: 'Backup Codes', format: 'code-list' },
],
},
},
],
fields: {
id: Field.text({
label: 'Two Factor ID',
required: true,
readonly: true,
}),
created_at: Field.datetime({
label: 'Created At',
defaultValue: 'NOW()',
readonly: true,
}),
updated_at: Field.datetime({
label: 'Updated At',
defaultValue: 'NOW()',
readonly: true,
}),
user_id: Field.lookup('sys_user', {
label: 'User',
required: true,
}),
secret: Field.text({
label: 'Secret',
required: true,
description: 'TOTP secret key',
}),
backup_codes: Field.textarea({
label: 'Backup Codes',
required: false,
description: 'JSON-serialized backup recovery codes',
}),
verified: Field.boolean({
label: 'Verified',
defaultValue: true,
description: 'Whether the enrollment was confirmed with a valid TOTP code (managed by better-auth)',
}),
// better-auth 1.7's 2FA lockout state (`failedVerificationCount` /
// `lockedUntil`). Every wrong code guard-increments the counter and, once
// it crosses `maxFailedAttempts`, stamps `lockedUntil`; a correct code
// resets both. Distinct from `sys_user.failed_login_count` / `locked_until`
// — those are ObjectStack's own password-stage counters (ADR-0069 D2) and
// better-auth is oblivious to them. Declared `input: false, returned:
// false` upstream, so neither crosses the API boundary. Found by the
// parity gate in plugin-auth while closing #3624: same failure shape as
// `team.memberCount` — an unprovisioned column better-auth writes on the
// failure path, so a wrong 2FA code 500'd instead of being counted.
failed_verification_count: Field.number({
label: 'Failed Verification Count',
required: false,
defaultValue: 0,
readonly: true,
description: 'Consecutive failed 2FA verifications; reset on success. Maintained by better-auth.',
}),
locked_until: Field.datetime({
label: 'Locked Until',
required: false,
readonly: true,
description: 'Set when failed 2FA verifications cross the lockout threshold. Maintained by better-auth.',
}),
},
indexes: [
{ fields: ['user_id'], unique: true },
],
enable: {
trackHistory: false,
searchable: false,
apiEnabled: true,
// #1591 — reads only: writes are refused by the identity write guard
// (ADR-0092 D2) and owned by better-auth. HTTP answers 405 before the 403.
apiMethods: ['get'],
},
});