Files
pangolin/client/lib/services/auth_api.dart
T
wangjia 447f3f494e feat(client/macos): P1 原生隧道——PacketTunnel 系统扩展可加载 + libbox 运行
经长链路排查(同机对照可工作的 Tailscale),修复 macOS 系统扩展 realize
失败(OSSystemExtensionErrorDomain code=4)与 libbox 运行时崩溃,使内嵌
sing-box 的系统扩展能在 macOS 15 上激活并启动隧道。

系统扩展 realize(三个叠加根因):
- 扩展自包含:PacketTunnel 加 OTHER_LDFLAGS="" 切断对项目级 CocoaPods 链接
  标志的继承(原会把 flutter_secure_storage 链进扩展);Libbox.xcframework
  改纯 Link(静态),从 Embed Frameworks 移除冗余内嵌
- bundle 名 = 标识符:PRODUCT_NAME 设为 com.pangolin.pangolin.PacketTunnel
- 扩展 Info.plist 补 NSSystemExtensionUsageDescription(网络扩展类别强制要求)
- App Group 改 macOS 原生格式 BYL4KQHMTN.com.pangolin.pangolin;NEMachServiceName
  以其为前缀;扩展补 network.client/server;get-task-allow=false + 签名加 --timestamp
- CFBundleVersion 随构建递增(否则 sysextd 视为同版本不更新)

libbox 运行时:
- startOrReloadService(options:) 传 nil 致空指针 SIGSEGV → 传 LibboxOverrideOptions()
- 默认接口监控阻塞到首个 path 更新再返回,修 "no available network interface"

配套:
- scripts/local_test.sh:build/sign/notarize/copy/run 一条龙(Developer ID + 公证)
- client/macos/sign_libbox.sh:构建期以 Developer ID 重签内嵌 Libbox
- VpnChannel:401 自动刷新 token、详尽 os_log;auth/api 统一走 kApiBaseUrl
- docs/macos-sysext-realize-troubleshooting.html:完整踩坑复盘

WIP / 临时(后续清理):
- 隧道运行时仍在排查:剥离远程 rule-set 后 sing-box 启动卡点未定位
- 含临时诊断代码:main.swift stderr 重定向、box.log 输出、rule-set 剥离、debug 日志
- api_config 仍指向联调节点,发版前还原

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01JEHzjEcFzvGwgbxT6Wbt6c
2026-06-21 21:18:33 +08:00

141 lines
4.8 KiB
Dart
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
// auth_api.dart — 控制面认证 HTTP 客户端
//
// 职责:封装 /v1/auth/* 接口调用。
// 关键约束:所有 HTTP 错误统一包装为 AuthApiException
// UI 层通过 e.statusCode / e.messageZh 显示错误文案。
import 'dart:convert';
import 'package:http/http.dart' as http;
/// 认证接口调用失败时抛出。
/// [statusCode] < 0 表示网络层错误。
class AuthApiException implements Exception {
const AuthApiException({
required this.statusCode,
required this.messageZh,
required this.messageEn,
});
final int statusCode;
final String messageZh;
final String messageEn;
@override
String toString() => 'AuthApiException($statusCode): $messageZh';
}
/// 登录 / 注册成功后返回的 JWT 令牌对。
class AuthTokens {
const AuthTokens({required this.accessToken, required this.refreshToken});
final String accessToken;
final String refreshToken;
factory AuthTokens.fromJson(Map<String, dynamic> m) => AuthTokens(
accessToken: m['access_token'] as String? ?? '',
refreshToken: m['refresh_token'] as String? ?? '',
);
}
/// [AuthApi] 封装 /v1/auth 接口族。
class AuthApi {
AuthApi({required this.baseUrl, http.Client? client})
: _client = client ?? http.Client();
final String baseUrl;
final http.Client _client;
// ── 发送验证码:POST /v1/auth/code ─────────────────────────────
/// 向 [email] 发送 6 位验证码。成功无返回,失败抛 [AuthApiException]。
Future<void> sendCode(String email) async {
final resp = await _post('/v1/auth/code', {'email': email});
if (resp.statusCode != 204 && resp.statusCode != 200) {
_throwFromResponse(resp);
}
}
// ── 注册:POST /v1/auth/register ───────────────────────────────
Future<AuthTokens> register({
required String email,
required String code,
required String password,
}) async {
final resp = await _post('/v1/auth/register', {
'email': email,
'code': code,
'password': password,
});
if (resp.statusCode != 200 && resp.statusCode != 201) {
_throwFromResponse(resp);
}
return AuthTokens.fromJson(jsonDecode(resp.body) as Map<String, dynamic>);
}
// ── 登录:POST /v1/auth/login ───────────────────────────────────
Future<AuthTokens> login({
required String email,
required String password,
}) async {
final resp = await _post('/v1/auth/login', {
'email': email,
'password': password,
});
if (resp.statusCode != 200) _throwFromResponse(resp);
return AuthTokens.fromJson(jsonDecode(resp.body) as Map<String, dynamic>);
}
// ── 刷新 tokenPOST /v1/auth/refresh ──────────────────────────
Future<AuthTokens> refresh(String refreshToken) async {
final resp = await _post('/v1/auth/refresh', {'refresh_token': refreshToken});
if (resp.statusCode != 200) _throwFromResponse(resp);
return AuthTokens.fromJson(jsonDecode(resp.body) as Map<String, dynamic>);
}
// ── 内部 ────────────────────────────────────────────────────────
Future<http.Response> _post(String path, Map<String, dynamic> body) async {
final uri = Uri.parse('$baseUrl$path');
print('>>>AUTHLOG POST $uri (baseUrl=$baseUrl) 发起...');
final sw = Stopwatch()..start();
try {
final resp = await _client
.post(
uri,
headers: {'Content-Type': 'application/json'},
body: jsonEncode(body),
)
.timeout(const Duration(seconds: 15));
print('>>>AUTHLOG POST $uri -> HTTP ${resp.statusCode} (${sw.elapsedMilliseconds}ms)');
return resp;
} on Exception catch (e) {
print('>>>AUTHLOG POST $uri 失败 (${sw.elapsedMilliseconds}ms): ${e.runtimeType}: $e');
throw AuthApiException(
statusCode: -1,
messageZh: '网络请求失败,请检查连接后重试',
messageEn: 'Network error: $e',
);
}
}
void _throwFromResponse(http.Response resp) {
String messageZh = '操作失败 (HTTP ${resp.statusCode})';
String messageEn = 'Request failed (HTTP ${resp.statusCode})';
try {
final body = jsonDecode(resp.body) as Map<String, dynamic>;
messageZh = body['message_zh'] as String? ?? messageZh;
messageEn = body['message_en'] as String? ?? messageEn;
} catch (_) {}
throw AuthApiException(
statusCode: resp.statusCode,
messageZh: messageZh,
messageEn: messageEn,
);
}
void dispose() => _client.close();
}