File size: 12,180 Bytes
1f21206 | 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 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 | import { createHash, randomBytes } from 'node:crypto'
import os from 'node:os'
import { ApiError } from '../middleware/errorHandler.js'
import { ManagedSettingsService } from './managedSettingsService.js'
import { ProviderService } from './providerService.js'
export type H5AccessSettings = {
enabled: boolean
tokenPreview: string | null
allowedOrigins: string[]
publicBaseUrl: string | null
}
export type H5AccessEnableResult = {
settings: H5AccessSettings
token: string
}
type StoredH5AccessSettings = H5AccessSettings & {
tokenHash: string | null
}
const DEFAULT_STORED_SETTINGS: StoredH5AccessSettings = {
enabled: false,
tokenHash: null,
tokenPreview: null,
allowedOrigins: [],
publicBaseUrl: null,
}
const TOKEN_HASH_RE = /^[a-f0-9]{64}$/
function isRecord(value: unknown): value is Record<string, unknown> {
return !!value && typeof value === 'object' && !Array.isArray(value)
}
function toPublicSettings(settings: StoredH5AccessSettings): H5AccessSettings {
return {
enabled: settings.enabled,
tokenPreview: settings.tokenPreview,
allowedOrigins: settings.allowedOrigins,
publicBaseUrl: resolveEffectiveH5PublicBaseUrl({
enabled: settings.enabled,
storedPublicBaseUrl: settings.publicBaseUrl,
configuredPublicBaseUrl: resolveConfiguredPublicBaseUrl(),
autoPublicBaseUrl: resolveAutoLanPublicBaseUrl(),
}),
}
}
function hashToken(token: string): string {
return createHash('sha256').update(token).digest('hex')
}
function createToken(): string {
return `h5_${randomBytes(32).toString('base64url')}`
}
function createTokenPreview(token: string): string {
return `${token.slice(0, 7)}...${token.slice(-4)}`
}
function normalizeOriginInput(origin: string, fieldName = 'allowedOrigins'): string {
if (origin.includes('*')) {
throw ApiError.badRequest(`${fieldName} must not contain wildcard origins`)
}
let parsed: URL
try {
parsed = new URL(origin)
} catch {
throw ApiError.badRequest(`Invalid origin: ${origin}`)
}
if (!['http:', 'https:'].includes(parsed.protocol)) {
throw ApiError.badRequest(`Invalid origin protocol: ${origin}`)
}
if (parsed.username || parsed.password) {
throw ApiError.badRequest(`Invalid origin credentials: ${origin}`)
}
return parsed.origin
}
function normalizeAllowedOrigins(input: unknown): string[] {
if (!Array.isArray(input)) {
throw ApiError.badRequest('allowedOrigins must be an array of strings')
}
const normalized = input.map((origin) => {
if (typeof origin !== 'string') {
throw ApiError.badRequest('allowedOrigins must be an array of strings')
}
return normalizeOriginInput(origin)
})
return [...new Set(normalized)]
}
function normalizePublicBaseUrl(input: unknown): string | null {
if (input === null || input === undefined || input === '') {
return null
}
if (typeof input !== 'string') {
throw ApiError.badRequest('publicBaseUrl must be a string or null')
}
let parsed: URL
try {
parsed = new URL(input)
} catch {
throw ApiError.badRequest(`Invalid publicBaseUrl: ${input}`)
}
if (!['http:', 'https:'].includes(parsed.protocol)) {
throw ApiError.badRequest(`Invalid publicBaseUrl protocol: ${input}`)
}
if (parsed.username || parsed.password) {
throw ApiError.badRequest(`Invalid publicBaseUrl credentials: ${input}`)
}
const normalizedPath = parsed.pathname.replace(/\/+$/, '')
return `${parsed.origin}${normalizedPath === '/' ? '' : normalizedPath}`
}
function resolveConfiguredPublicBaseUrl(): string | null {
const configured = process.env.CLAUDE_H5_PUBLIC_BASE_URL
if (configured) {
try {
return normalizePublicBaseUrl(configured)
} catch {
return null
}
}
return null
}
function resolveAutoLanPublicBaseUrl(): string | null {
if (process.env.CLAUDE_H5_AUTO_PUBLIC_URL !== '1') {
return null
}
const host = findPrivateLanAddress()
if (!host) {
return null
}
return `http://${host}:${ProviderService.getServerPort()}`
}
export function resolveEffectiveH5PublicBaseUrl({
enabled,
storedPublicBaseUrl,
configuredPublicBaseUrl,
autoPublicBaseUrl,
}: {
enabled: boolean
storedPublicBaseUrl: string | null
configuredPublicBaseUrl: string | null
autoPublicBaseUrl: string | null
}): string | null {
if (!enabled) {
return storedPublicBaseUrl
}
if (configuredPublicBaseUrl) {
return configuredPublicBaseUrl
}
if (!autoPublicBaseUrl) {
return storedPublicBaseUrl
}
if (!storedPublicBaseUrl || isLocalPublicBaseUrl(storedPublicBaseUrl)) {
return autoPublicBaseUrl
}
return storedPublicBaseUrl
}
function isLocalPublicBaseUrl(value: string): boolean {
try {
const hostname = new URL(value).hostname
.trim()
.replace(/^\[/, '')
.replace(/\]$/, '')
.toLowerCase()
return isLocalHost(hostname)
} catch {
return false
}
}
function isLocalHost(hostname: string): boolean {
return hostname === 'localhost' ||
hostname === '127.0.0.1' ||
hostname === '::1' ||
hostname === '0.0.0.0' ||
hostname === '::'
}
type NetworkInterfaces = ReturnType<typeof os.networkInterfaces>
const PHYSICAL_INTERFACE_RE = /\b(wi-?fi|wlan|wireless|ethernet|lan|en\d+|eth\d+)\b/i
const VIRTUAL_INTERFACE_RE = /\b(wsl|docker|hyper-?v|veth|vethernet|virtual|virtualbox|vmware|podman|container|bridge|br-|tailscale|zerotier|utun|vpn)\b/i
export function findPrivateLanAddress(networkInterfaces: NetworkInterfaces = os.networkInterfaces()): string | null {
const candidates: Array<{
address: string
interfaceName: string
index: number
score: number
}> = []
let index = 0
for (const [interfaceName, entries] of Object.entries(networkInterfaces)) {
for (const entry of entries ?? []) {
if (entry.family !== 'IPv4' || entry.internal || !isPrivateIPv4(entry.address)) {
continue
}
candidates.push({
address: entry.address,
interfaceName,
index,
score: scoreLanAddressCandidate(interfaceName, entry.address),
})
index += 1
}
}
candidates.sort((a, b) => b.score - a.score || a.index - b.index)
return candidates[0]?.address ?? null
}
function scoreLanAddressCandidate(interfaceName: string, address: string): number {
let score = 0
if (PHYSICAL_INTERFACE_RE.test(interfaceName)) {
score += 100
}
if (VIRTUAL_INTERFACE_RE.test(interfaceName)) {
score -= 200
}
if (address.startsWith('192.168.')) {
score += 30
} else if (address.startsWith('10.')) {
score += 20
} else if (is172PrivateIPv4(address)) {
score += 10
} else if (address.startsWith('169.254.')) {
score -= 100
}
return score
}
function isPrivateIPv4(address: string): boolean {
const parts = address.split('.')
if (parts.length !== 4 || !parts.every((part) => /^\d+$/.test(part))) {
return false
}
const [a = -1, b = -1] = parts.map((part) => Number(part))
return (
a === 10 ||
is172PrivateIPv4(address) ||
(a === 192 && b === 168) ||
(a === 169 && b === 254)
)
}
function is172PrivateIPv4(address: string): boolean {
const parts = address.split('.')
if (parts.length !== 4 || !parts.every((part) => /^\d+$/.test(part))) {
return false
}
const [a = -1, b = -1] = parts.map((part) => Number(part))
return a === 172 && b >= 16 && b <= 31
}
function normalizeStoredSettings(value: unknown): StoredH5AccessSettings {
if (!isRecord(value)) {
return { ...DEFAULT_STORED_SETTINGS }
}
const allowedOrigins = Array.isArray(value.allowedOrigins)
? [...new Set(value.allowedOrigins.flatMap((origin) => {
if (typeof origin !== 'string') {
return []
}
try {
return [normalizeOriginInput(origin)]
} catch {
return []
}
}))]
: []
let publicBaseUrl: string | null = null
if (typeof value.publicBaseUrl === 'string') {
try {
publicBaseUrl = normalizePublicBaseUrl(value.publicBaseUrl)
} catch {
publicBaseUrl = null
}
}
const tokenHash = typeof value.tokenHash === 'string' && TOKEN_HASH_RE.test(value.tokenHash)
? value.tokenHash
: null
return {
enabled: value.enabled === true && tokenHash !== null,
tokenHash,
tokenPreview: tokenHash && typeof value.tokenPreview === 'string' ? value.tokenPreview : null,
allowedOrigins,
publicBaseUrl,
}
}
export class H5AccessService {
private managedSettingsService = new ManagedSettingsService()
private async readStoredSettings(): Promise<{
managedSettings: Record<string, unknown>
h5Access: StoredH5AccessSettings
}> {
const managedSettings = await this.managedSettingsService.readSettings()
return {
managedSettings,
h5Access: normalizeStoredSettings(managedSettings.h5Access),
}
}
private async setToken(
managedSettings: Record<string, unknown>,
current: StoredH5AccessSettings,
): Promise<{
settings: Record<string, unknown>
result: H5AccessEnableResult
}> {
const token = createToken()
const nextSettings: StoredH5AccessSettings = {
...current,
enabled: true,
tokenHash: hashToken(token),
tokenPreview: createTokenPreview(token),
}
return {
settings: {
...managedSettings,
h5Access: nextSettings,
},
result: {
settings: toPublicSettings(nextSettings),
token,
},
}
}
async getSettings(): Promise<H5AccessSettings> {
const { h5Access } = await this.readStoredSettings()
return toPublicSettings(h5Access)
}
async enable(): Promise<H5AccessEnableResult> {
return this.managedSettingsService.updateSettings(async (current) => {
return this.setToken(current, normalizeStoredSettings(current.h5Access))
})
}
async disable(): Promise<H5AccessSettings> {
return this.managedSettingsService.updateSettings(async (current) => {
const h5Access = normalizeStoredSettings(current.h5Access)
const nextSettings: StoredH5AccessSettings = {
...h5Access,
enabled: false,
tokenHash: null,
tokenPreview: null,
}
return {
settings: {
...current,
h5Access: nextSettings,
},
result: toPublicSettings(nextSettings),
}
})
}
async regenerateToken(): Promise<H5AccessEnableResult> {
return this.managedSettingsService.updateSettings(async (current) => {
return this.setToken(current, normalizeStoredSettings(current.h5Access))
})
}
async updateSettings(input: {
allowedOrigins?: string[]
publicBaseUrl?: string | null
}): Promise<H5AccessSettings> {
return this.managedSettingsService.updateSettings(async (current) => {
const h5Access = normalizeStoredSettings(current.h5Access)
const nextSettings: StoredH5AccessSettings = {
...h5Access,
allowedOrigins: input.allowedOrigins === undefined
? h5Access.allowedOrigins
: normalizeAllowedOrigins(input.allowedOrigins),
publicBaseUrl: input.publicBaseUrl === undefined
? h5Access.publicBaseUrl
: normalizePublicBaseUrl(input.publicBaseUrl),
}
return {
settings: {
...current,
h5Access: nextSettings,
},
result: toPublicSettings(nextSettings),
}
})
}
async validateToken(token: string | null | undefined): Promise<boolean> {
if (!token) {
return false
}
const { h5Access } = await this.readStoredSettings()
if (!h5Access.enabled || !h5Access.tokenHash) {
return false
}
return hashToken(token) === h5Access.tokenHash
}
async isOriginAllowed(origin: string | null | undefined): Promise<boolean> {
if (!origin) {
return false
}
const { h5Access } = await this.readStoredSettings()
if (!h5Access.enabled) {
return false
}
try {
const normalizedOrigin = normalizeOriginInput(origin, 'origin')
return h5Access.allowedOrigins.includes(normalizedOrigin)
} catch {
return false
}
}
}
|