fix(desktop): enhance doubao ai account binding and upsert error logging
This commit is contained in:
+2
-1
@@ -22,4 +22,5 @@ apps/*/firefox-mv*/
|
|||||||
*.log
|
*.log
|
||||||
*.tmp
|
*.tmp
|
||||||
apps/*/stats.html
|
apps/*/stats.html
|
||||||
ops-api
|
ops-api
|
||||||
|
tmp/*
|
||||||
@@ -1,5 +1,12 @@
|
|||||||
import { createHash } from 'node:crypto'
|
import { createHash } from 'node:crypto'
|
||||||
import { mkdirSync, readFileSync, readdirSync, statSync, writeFileSync } from 'node:fs'
|
import {
|
||||||
|
appendFileSync,
|
||||||
|
mkdirSync,
|
||||||
|
readFileSync,
|
||||||
|
readdirSync,
|
||||||
|
statSync,
|
||||||
|
writeFileSync,
|
||||||
|
} from 'node:fs'
|
||||||
import { dirname, join } from 'node:path'
|
import { dirname, join } from 'node:path'
|
||||||
|
|
||||||
import type { DesktopAccountInfo } from '@geo/shared-types'
|
import type { DesktopAccountInfo } from '@geo/shared-types'
|
||||||
@@ -21,6 +28,7 @@ import {
|
|||||||
buildDoubaoSessionCredentialEvidence,
|
buildDoubaoSessionCredentialEvidence,
|
||||||
DOUBAO_AUTH_PROBE_URL,
|
DOUBAO_AUTH_PROBE_URL,
|
||||||
doubaoHasBoundAccountPageSignal,
|
doubaoHasBoundAccountPageSignal,
|
||||||
|
isDoubaoLoggedInCredentialCookieName,
|
||||||
probeDoubaoAccountSession,
|
probeDoubaoAccountSession,
|
||||||
readDoubaoAuthPageState,
|
readDoubaoAuthPageState,
|
||||||
} from './adapters/doubao/auth-rules'
|
} from './adapters/doubao/auth-rules'
|
||||||
@@ -291,6 +299,7 @@ type DongchediAccountInfoResponse = {
|
|||||||
|
|
||||||
const activeBindOperations = new Map<string, ActiveBindOperation>()
|
const activeBindOperations = new Map<string, ActiveBindOperation>()
|
||||||
const MAX_CONCURRENT_BIND_WINDOWS = 2
|
const MAX_CONCURRENT_BIND_WINDOWS = 2
|
||||||
|
const ACCOUNT_BIND_DIAGNOSTIC_FILE = 'desktop-account-bind-events.jsonl'
|
||||||
|
|
||||||
const TOUTIAO_LOGIN_URL = 'https://mp.toutiao.com/auth/page/login'
|
const TOUTIAO_LOGIN_URL = 'https://mp.toutiao.com/auth/page/login'
|
||||||
const TOUTIAO_CONSOLE_HOME_URL = 'https://mp.toutiao.com/profile_v4/index'
|
const TOUTIAO_CONSOLE_HOME_URL = 'https://mp.toutiao.com/profile_v4/index'
|
||||||
@@ -398,6 +407,75 @@ function hashText(value: string): string {
|
|||||||
return createHash('sha1').update(value).digest('hex').slice(0, 20)
|
return createHash('sha1').update(value).digest('hex').slice(0, 20)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function diagnosticHash(value: string | null | undefined): string | null {
|
||||||
|
const normalized = value?.trim()
|
||||||
|
if (!normalized) {
|
||||||
|
return null
|
||||||
|
}
|
||||||
|
return createHash('sha256').update(normalized).digest('hex').slice(0, 16)
|
||||||
|
}
|
||||||
|
|
||||||
|
function diagnosticUrl(value: string | null | undefined): string | null {
|
||||||
|
const normalized = value?.trim()
|
||||||
|
if (!normalized) {
|
||||||
|
return null
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
const parsed = new URL(normalized)
|
||||||
|
return `${parsed.origin}${parsed.pathname}`
|
||||||
|
} catch {
|
||||||
|
return normalized.slice(0, 160)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function appendAccountBindDiagnostic(event: Record<string, unknown>): void {
|
||||||
|
const target = join(app.getPath('userData'), ACCOUNT_BIND_DIAGNOSTIC_FILE)
|
||||||
|
try {
|
||||||
|
mkdirSync(dirname(target), { recursive: true })
|
||||||
|
appendFileSync(target, `${JSON.stringify({ at: new Date().toISOString(), ...event })}\n`, 'utf8')
|
||||||
|
} catch {
|
||||||
|
// Best-effort diagnostics. Never block binding on local log writes.
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async function summarizeDoubaoAuthCookies(
|
||||||
|
session: Session,
|
||||||
|
urls: Iterable<string>,
|
||||||
|
): Promise<Array<{ url: string | null; cookieCount: number; authCookieCount: number; authCookies: string[] }>> {
|
||||||
|
const summaries: Array<{
|
||||||
|
url: string | null
|
||||||
|
cookieCount: number
|
||||||
|
authCookieCount: number
|
||||||
|
authCookies: string[]
|
||||||
|
}> = []
|
||||||
|
|
||||||
|
for (const url of urls) {
|
||||||
|
try {
|
||||||
|
const cookies = await session.cookies.get({ url })
|
||||||
|
const authCookies = cookies
|
||||||
|
.filter((cookie) => isDoubaoLoggedInCredentialCookieName(cookie.name))
|
||||||
|
.map((cookie) => `${cookie.name}:${cookie.value.length}`)
|
||||||
|
.sort()
|
||||||
|
summaries.push({
|
||||||
|
url: diagnosticUrl(url),
|
||||||
|
cookieCount: cookies.length,
|
||||||
|
authCookieCount: authCookies.length,
|
||||||
|
authCookies,
|
||||||
|
})
|
||||||
|
} catch (error) {
|
||||||
|
summaries.push({
|
||||||
|
url: diagnosticUrl(url),
|
||||||
|
cookieCount: 0,
|
||||||
|
authCookieCount: 0,
|
||||||
|
authCookies: [`error:${error instanceof Error ? error.message : String(error)}`],
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return summaries
|
||||||
|
}
|
||||||
|
|
||||||
function buildBilibiliMixinKey(imgKey: string, subKey: string): string {
|
function buildBilibiliMixinKey(imgKey: string, subKey: string): string {
|
||||||
const raw = imgKey + subKey
|
const raw = imgKey + subKey
|
||||||
return BILIBILI_WBI_MIXIN_KEY_ENC_TAB.map((index) => raw.charAt(index))
|
return BILIBILI_WBI_MIXIN_KEY_ENC_TAB.map((index) => raw.charAt(index))
|
||||||
@@ -1463,45 +1541,107 @@ async function detectDoubaoPlatform(
|
|||||||
context: DetectContext,
|
context: DetectContext,
|
||||||
): Promise<DetectedAccount | null> {
|
): Promise<DetectedAccount | null> {
|
||||||
if (!context.webContents || context.webContents.isDestroyed()) {
|
if (!context.webContents || context.webContents.isDestroyed()) {
|
||||||
|
appendAccountBindDiagnostic({
|
||||||
|
action: 'doubao_detect_failed',
|
||||||
|
platform: platformId,
|
||||||
|
reason: 'web_contents_destroyed',
|
||||||
|
})
|
||||||
return null
|
return null
|
||||||
}
|
}
|
||||||
|
|
||||||
const currentURL = context.webContents.getURL()
|
const currentURL = context.webContents.getURL()
|
||||||
const platformMeta = aiPlatformCatalog.find((item) => item.id === platformId) ?? null
|
const platformMeta = aiPlatformCatalog.find((item) => item.id === platformId) ?? null
|
||||||
if (!platformMeta) {
|
if (!platformMeta) {
|
||||||
return null
|
appendAccountBindDiagnostic({
|
||||||
}
|
action: 'doubao_detect_failed',
|
||||||
|
platform: platformId,
|
||||||
if (currentURL && looksLikeLoginRedirect(currentURL, platformMeta.loginUrl)) {
|
reason: 'platform_meta_missing',
|
||||||
|
url: diagnosticUrl(currentURL),
|
||||||
|
})
|
||||||
return null
|
return null
|
||||||
}
|
}
|
||||||
|
|
||||||
const pageState = await readDoubaoAuthPageState(context.webContents).catch(() => null)
|
const pageState = await readDoubaoAuthPageState(context.webContents).catch(() => null)
|
||||||
|
const urls = new Set([platformMeta.loginUrl, platformMeta.consoleUrl])
|
||||||
|
const cookieSummary = await summarizeDoubaoAuthCookies(context.session, urls)
|
||||||
|
const pageStateDiagnostic = {
|
||||||
|
displayName: pageState?.displayName ?? null,
|
||||||
|
hasAvatar: Boolean(pageState?.avatarUrl),
|
||||||
|
currentPath: pageState?.currentPath ?? null,
|
||||||
|
strongAuthSignalCount: pageState?.strongAuthSignalCount ?? 0,
|
||||||
|
loginSignalCount: pageState?.loginSignalCount ?? 0,
|
||||||
|
loggedOutSignalCount: pageState?.loggedOutSignalCount ?? 0,
|
||||||
|
challengeSignalCount: pageState?.challengeSignalCount ?? 0,
|
||||||
|
}
|
||||||
|
|
||||||
if ((pageState?.challengeSignalCount ?? 0) > 0) {
|
if ((pageState?.challengeSignalCount ?? 0) > 0) {
|
||||||
|
appendAccountBindDiagnostic({
|
||||||
|
action: 'doubao_detect_failed',
|
||||||
|
platform: platformId,
|
||||||
|
reason: 'challenge_required',
|
||||||
|
url: diagnosticUrl(currentURL),
|
||||||
|
pageState: pageStateDiagnostic,
|
||||||
|
cookies: cookieSummary,
|
||||||
|
})
|
||||||
return null
|
return null
|
||||||
}
|
}
|
||||||
if ((pageState?.loggedOutSignalCount ?? 0) > 0) {
|
if ((pageState?.loggedOutSignalCount ?? 0) > 0) {
|
||||||
|
appendAccountBindDiagnostic({
|
||||||
|
action: 'doubao_detect_failed',
|
||||||
|
platform: platformId,
|
||||||
|
reason: 'logged_out_signal',
|
||||||
|
url: diagnosticUrl(currentURL),
|
||||||
|
pageState: pageStateDiagnostic,
|
||||||
|
cookies: cookieSummary,
|
||||||
|
})
|
||||||
return null
|
return null
|
||||||
}
|
}
|
||||||
|
|
||||||
// Doubao is intentionally platform-specific. It allows anonymous chat, but
|
// Doubao is intentionally platform-specific. It allows anonymous chat, but
|
||||||
// our desktop binding requires the real sidebar account menu plus login cookies.
|
// our desktop binding requires the real sidebar account menu plus login cookies.
|
||||||
if (!doubaoHasBoundAccountPageSignal(pageState)) {
|
if (!doubaoHasBoundAccountPageSignal(pageState)) {
|
||||||
|
appendAccountBindDiagnostic({
|
||||||
|
action: 'doubao_detect_failed',
|
||||||
|
platform: platformId,
|
||||||
|
reason: 'doubao_account_menu_missing',
|
||||||
|
url: diagnosticUrl(currentURL),
|
||||||
|
pageState: pageStateDiagnostic,
|
||||||
|
cookies: cookieSummary,
|
||||||
|
})
|
||||||
return null
|
return null
|
||||||
}
|
}
|
||||||
|
|
||||||
const urls = new Set([platformMeta.loginUrl, platformMeta.consoleUrl])
|
|
||||||
const credentialEvidence = await buildDoubaoSessionCredentialEvidence(
|
const credentialEvidence = await buildDoubaoSessionCredentialEvidence(
|
||||||
context.session,
|
context.session,
|
||||||
urls,
|
urls,
|
||||||
pageState,
|
pageState,
|
||||||
)
|
)
|
||||||
if (!credentialEvidence) {
|
if (!credentialEvidence) {
|
||||||
|
appendAccountBindDiagnostic({
|
||||||
|
action: 'doubao_detect_failed',
|
||||||
|
platform: platformId,
|
||||||
|
reason: 'doubao_login_cookie_missing',
|
||||||
|
url: diagnosticUrl(currentURL),
|
||||||
|
pageState: pageStateDiagnostic,
|
||||||
|
cookies: cookieSummary,
|
||||||
|
})
|
||||||
return null
|
return null
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const platformUid = boundedIdentity('doubao-session', credentialEvidence)
|
||||||
|
appendAccountBindDiagnostic({
|
||||||
|
action: 'doubao_detect_success',
|
||||||
|
platform: platformId,
|
||||||
|
reason: 'detected',
|
||||||
|
url: diagnosticUrl(currentURL),
|
||||||
|
pageState: pageStateDiagnostic,
|
||||||
|
cookies: cookieSummary,
|
||||||
|
displayName: pageState?.displayName ?? `${label} 账号`,
|
||||||
|
platformUidHash: diagnosticHash(platformUid),
|
||||||
|
})
|
||||||
|
|
||||||
return sanitizeDetectedAccount({
|
return sanitizeDetectedAccount({
|
||||||
platformUid: boundedIdentity('doubao-session', credentialEvidence),
|
platformUid,
|
||||||
displayName: pageState?.displayName ?? `${label} 账号`,
|
displayName: pageState?.displayName ?? `${label} 账号`,
|
||||||
avatarUrl: pageState?.avatarUrl ?? null,
|
avatarUrl: pageState?.avatarUrl ?? null,
|
||||||
})
|
})
|
||||||
@@ -3995,6 +4135,13 @@ export async function bindPublishAccount(platformId: string): Promise<DesktopAcc
|
|||||||
}
|
}
|
||||||
|
|
||||||
const handle = createPendingSessionHandle(platformId)
|
const handle = createPendingSessionHandle(platformId)
|
||||||
|
appendAccountBindDiagnostic({
|
||||||
|
action: 'bind_window_opening',
|
||||||
|
platform: definition.id,
|
||||||
|
pendingAccountIdHash: diagnosticHash(handle.accountId),
|
||||||
|
partition: handle.partition,
|
||||||
|
loginUrl: diagnosticUrl(definition.loginUrl),
|
||||||
|
})
|
||||||
let window: BrowserWindow
|
let window: BrowserWindow
|
||||||
|
|
||||||
try {
|
try {
|
||||||
@@ -4103,6 +4250,15 @@ export async function bindPublishAccount(platformId: string): Promise<DesktopAcc
|
|||||||
}
|
}
|
||||||
checking = true
|
checking = true
|
||||||
try {
|
try {
|
||||||
|
appendAccountBindDiagnostic({
|
||||||
|
action: 'bind_detect_tick',
|
||||||
|
platform: definition.id,
|
||||||
|
detectReady,
|
||||||
|
canProbe,
|
||||||
|
loading: window.webContents.isLoading(),
|
||||||
|
url: diagnosticUrl(currentURL),
|
||||||
|
partition: handle.partition,
|
||||||
|
})
|
||||||
console.info('[desktop-bind] detect tick', {
|
console.info('[desktop-bind] detect tick', {
|
||||||
platform: definition.id,
|
platform: definition.id,
|
||||||
detectReady,
|
detectReady,
|
||||||
@@ -4116,12 +4272,33 @@ export async function bindPublishAccount(platformId: string): Promise<DesktopAcc
|
|||||||
console.warn(`[desktop-bind] ${definition.id} detect failed`, {
|
console.warn(`[desktop-bind] ${definition.id} detect failed`, {
|
||||||
message: error instanceof Error ? error.message : String(error),
|
message: error instanceof Error ? error.message : String(error),
|
||||||
})
|
})
|
||||||
|
appendAccountBindDiagnostic({
|
||||||
|
action: 'bind_detect_exception',
|
||||||
|
platform: definition.id,
|
||||||
|
url: diagnosticUrl(currentURL),
|
||||||
|
partition: handle.partition,
|
||||||
|
message: error instanceof Error ? error.message : String(error),
|
||||||
|
})
|
||||||
return null
|
return null
|
||||||
})
|
})
|
||||||
if (!detected) {
|
if (!detected) {
|
||||||
|
appendAccountBindDiagnostic({
|
||||||
|
action: 'bind_detect_empty',
|
||||||
|
platform: definition.id,
|
||||||
|
url: diagnosticUrl(currentURL),
|
||||||
|
partition: handle.partition,
|
||||||
|
})
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
let normalizedDetected = sanitizeDetectedAccount(detected)
|
let normalizedDetected = sanitizeDetectedAccount(detected)
|
||||||
|
appendAccountBindDiagnostic({
|
||||||
|
action: 'bind_detect_success',
|
||||||
|
platform: definition.id,
|
||||||
|
displayName: normalizedDetected.displayName,
|
||||||
|
platformUidHash: diagnosticHash(normalizedDetected.platformUid),
|
||||||
|
url: diagnosticUrl(currentURL),
|
||||||
|
partition: handle.partition,
|
||||||
|
})
|
||||||
console.info('[desktop-bind] detect success', {
|
console.info('[desktop-bind] detect success', {
|
||||||
platform: definition.id,
|
platform: definition.id,
|
||||||
displayName: normalizedDetected.displayName,
|
displayName: normalizedDetected.displayName,
|
||||||
@@ -4180,6 +4357,14 @@ export async function bindPublishAccount(platformId: string): Promise<DesktopAcc
|
|||||||
void flushSessionPersistence(handle.session)
|
void flushSessionPersistence(handle.session)
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
appendAccountBindDiagnostic({
|
||||||
|
action: 'bind_upsert_start',
|
||||||
|
platform: definition.id,
|
||||||
|
displayName: normalizedDetected.displayName,
|
||||||
|
platformUidHash: diagnosticHash(normalizedDetected.platformUid),
|
||||||
|
url: diagnosticUrl(currentURL),
|
||||||
|
partition: handle.partition,
|
||||||
|
})
|
||||||
const account = await upsertDesktopAccount({
|
const account = await upsertDesktopAccount({
|
||||||
platform: definition.id,
|
platform: definition.id,
|
||||||
platform_uid: normalizedDetected.platformUid,
|
platform_uid: normalizedDetected.platformUid,
|
||||||
@@ -4195,6 +4380,14 @@ export async function bindPublishAccount(platformId: string): Promise<DesktopAcc
|
|||||||
await saveWangyihaoSessionCookies(account.id, handle.session)
|
await saveWangyihaoSessionCookies(account.id, handle.session)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
appendAccountBindDiagnostic({
|
||||||
|
action: 'bind_upsert_success',
|
||||||
|
platform: definition.id,
|
||||||
|
accountIdHash: diagnosticHash(account.id),
|
||||||
|
displayName: account.display_name,
|
||||||
|
url: diagnosticUrl(currentURL),
|
||||||
|
partition: handle.partition,
|
||||||
|
})
|
||||||
settleSuccess(account)
|
settleSuccess(account)
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.error('[desktop-bind] upsert failed', {
|
console.error('[desktop-bind] upsert failed', {
|
||||||
@@ -4202,6 +4395,15 @@ export async function bindPublishAccount(platformId: string): Promise<DesktopAcc
|
|||||||
url: currentURL,
|
url: currentURL,
|
||||||
message: error instanceof Error ? error.message : String(error),
|
message: error instanceof Error ? error.message : String(error),
|
||||||
})
|
})
|
||||||
|
appendAccountBindDiagnostic({
|
||||||
|
action: 'bind_upsert_failed',
|
||||||
|
platform: definition.id,
|
||||||
|
displayName: normalizedDetected.displayName,
|
||||||
|
platformUidHash: diagnosticHash(normalizedDetected.platformUid),
|
||||||
|
url: diagnosticUrl(currentURL),
|
||||||
|
partition: handle.partition,
|
||||||
|
message: error instanceof Error ? error.message : String(error),
|
||||||
|
})
|
||||||
if (!window.isDestroyed()) {
|
if (!window.isDestroyed()) {
|
||||||
window.setTitle(`${definition.label} 绑定保存失败,保留窗口重试`)
|
window.setTitle(`${definition.label} 绑定保存失败,保留窗口重试`)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,3 +1,7 @@
|
|||||||
|
import { createHash } from 'node:crypto'
|
||||||
|
import { appendFileSync, mkdirSync } from 'node:fs'
|
||||||
|
import { dirname, join } from 'node:path'
|
||||||
|
|
||||||
import { ApiClientError, createApiClient, type ApiClient } from '@geo/http-client'
|
import { ApiClientError, createApiClient, type ApiClient } from '@geo/http-client'
|
||||||
import type {
|
import type {
|
||||||
ApiEnvelope,
|
ApiEnvelope,
|
||||||
@@ -29,6 +33,7 @@ import type {
|
|||||||
ReportDesktopAccountHealthResponse,
|
ReportDesktopAccountHealthResponse,
|
||||||
UpsertDesktopAccountRequest,
|
UpsertDesktopAccountRequest,
|
||||||
} from '@geo/shared-types'
|
} from '@geo/shared-types'
|
||||||
|
import { app } from 'electron/main'
|
||||||
|
|
||||||
import {
|
import {
|
||||||
failObservedRequest,
|
failObservedRequest,
|
||||||
@@ -70,6 +75,7 @@ let transportSession: DesktopTransportSession = {
|
|||||||
clientToken: null,
|
clientToken: null,
|
||||||
}
|
}
|
||||||
const ACCOUNT_UPSERT_CACHE_TTL_MS = 5 * 60_000
|
const ACCOUNT_UPSERT_CACHE_TTL_MS = 5 * 60_000
|
||||||
|
const ACCOUNT_UPSERT_DIAGNOSTIC_FILE = 'desktop-account-upsert-errors.jsonl'
|
||||||
|
|
||||||
interface AccountUpsertCacheEntry {
|
interface AccountUpsertCacheEntry {
|
||||||
signature: string
|
signature: string
|
||||||
@@ -185,6 +191,76 @@ function clearAccountUpsertCache(): void {
|
|||||||
accountUpsertCache.clear()
|
accountUpsertCache.clear()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function diagnosticHash(value: string | null | undefined): string | null {
|
||||||
|
const normalized = value?.trim()
|
||||||
|
if (!normalized) {
|
||||||
|
return null
|
||||||
|
}
|
||||||
|
return createHash('sha256').update(normalized).digest('hex').slice(0, 16)
|
||||||
|
}
|
||||||
|
|
||||||
|
function normalizeErrorForDiagnostics(error: unknown): Record<string, unknown> {
|
||||||
|
if (error instanceof ApiClientError) {
|
||||||
|
return {
|
||||||
|
name: error.name,
|
||||||
|
message: error.message,
|
||||||
|
code: error.code,
|
||||||
|
status: error.status ?? null,
|
||||||
|
detail: error.detail ?? null,
|
||||||
|
requestId: error.requestId ?? null,
|
||||||
|
handled: error.handled === true,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (error instanceof Error) {
|
||||||
|
return {
|
||||||
|
name: error.name,
|
||||||
|
message: error.message,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return {
|
||||||
|
name: typeof error,
|
||||||
|
message: String(error),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function appendAccountUpsertDiagnostic(
|
||||||
|
payload: UpsertDesktopAccountRequest,
|
||||||
|
error: unknown,
|
||||||
|
): void {
|
||||||
|
const target = join(app.getPath('userData'), ACCOUNT_UPSERT_DIAGNOSTIC_FILE)
|
||||||
|
const event = {
|
||||||
|
at: new Date().toISOString(),
|
||||||
|
action: 'desktop_account_upsert_failed',
|
||||||
|
transport: {
|
||||||
|
baseURL: transportState.baseURL,
|
||||||
|
auth: transportState.auth,
|
||||||
|
requestDebugMode: transportState.requestDebugMode,
|
||||||
|
hasClient: desktopApiClient !== null,
|
||||||
|
hasClientToken: Boolean(transportSession.clientToken),
|
||||||
|
},
|
||||||
|
request: {
|
||||||
|
platform: payload.platform,
|
||||||
|
platformUidHash: diagnosticHash(payload.platform_uid),
|
||||||
|
accountFingerprintHash: diagnosticHash(payload.account_fingerprint ?? null),
|
||||||
|
displayName: payload.display_name,
|
||||||
|
health: payload.health,
|
||||||
|
verifiedAt: payload.verified_at ?? null,
|
||||||
|
tagCount: payload.tags?.length ?? 0,
|
||||||
|
hasIfSyncVersion: typeof payload.if_sync_version === 'number',
|
||||||
|
},
|
||||||
|
error: normalizeErrorForDiagnostics(error),
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
mkdirSync(dirname(target), { recursive: true })
|
||||||
|
appendFileSync(target, `${JSON.stringify(event)}\n`, 'utf8')
|
||||||
|
} catch {
|
||||||
|
// Best-effort diagnostics. Never block account binding on local log writes.
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
function currentRequestDebugMode(): 'main-process' | 'renderer-devtools' {
|
function currentRequestDebugMode(): 'main-process' | 'renderer-devtools' {
|
||||||
return canUseRendererDevtoolsProxy() ? 'renderer-devtools' : 'main-process'
|
return canUseRendererDevtoolsProxy() ? 'renderer-devtools' : 'main-process'
|
||||||
}
|
}
|
||||||
@@ -521,6 +597,7 @@ export async function upsertDesktopAccount(
|
|||||||
if (accountUpsertCache.get(cacheKey)?.inFlight === request) {
|
if (accountUpsertCache.get(cacheKey)?.inFlight === request) {
|
||||||
accountUpsertCache.delete(cacheKey)
|
accountUpsertCache.delete(cacheKey)
|
||||||
}
|
}
|
||||||
|
appendAccountUpsertDiagnostic(payload, error)
|
||||||
throw error
|
throw error
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user