核心重构 — 去除 channel 字段,引入 sourceAccount 模型: - 从 ImportedEvent、Rule、EnhancedRule、OcrRule 等接口中彻底移除 channel 字段 - rules.ts 中 resolveChannelAccount → resolveSourceAccount,规则匹配与账户解析不再依赖渠道概念 - dedup.ts 重写去重逻辑:从基于渠道匹配改为基于交易对手(counterparty)匹配,支持相同金额/交易对手/时间窗口的多级置信度判断 - transferRecognizer.ts 增加资产负债表账户校验,确保转账双方均为 Assets/Liabilities 类账户 - 全局替换影响:types、rules、ocr、adapters、adapters-migrations、所有服务层和测试 新增基础设施: - domain/constants.ts — 统一常量定义(支付包名、截图关键词、去重参数、方向检测函数 detectDirection()),消除 OCR/SMS/截图等模块的重复定义 - domain/channelConfig.ts — 渠道配置系统(支付宝/微信/银行),支持按包名和名称查找 - domain/pipelineSingleton.ts — 共享 BillPipeline 单例,解决 importStore/automationStore 的互斥锁共享问题 - domain/transactionBuilder.ts — 统一交易构建入口 buildAndSaveTransaction(),同时服务手动录入和无障碍监听 OCR 增强: - 新增账单详情页解析(parseDetailPageBill),支持支付宝/微信详情页结构化提取 - checkIsDetailPage() 识别详情页特征词,防止误提取(如"消费1次"被误读为金额) - 金额正则支持千分位逗号分隔,商户名正则改用 lookahead 边界匹配 - 时间解析支持中文格式(年月日)和跨年推断 - OcrProcessor 新增详情页路由,跳过 Layer 1 规则匹配 UI 全面升级: - 主题重设计:accent 色从绿色改为靛蓝(#4F46E5),深色模式适配 OLED 纯黑,引入 Quicksand/Caveat 字体 - 新增 commonStyles.ts 统一 chip/input/modal 等通用样式 - 首页 Bento 网格布局:净资产英雄卡片 + 定期账单/月度统计并排展示 - 报表新增周报标签页,月报整合日历视图(支持点击查看当日交易明细) - TrendLine 图表从 View 条形图重写为 SVG 贝塞尔曲线 - CategoryPicker 从水平滚动改为 4 列网格 + emoji 图标 - Button/Card 增加 press 缩放动画 管道与自动化改进: - automationPipeline.ts 新增 handleIncomingBillEvent() 实时账单处理(悬浮账单卡片 + 前台 Alert 确认) - 新增无障碍文本直解析 parseAndProcessAccessibilityTexts(),微信/支付宝详情页绕过 OCR - rules.ts 新增智能还款检测(花呗/信用卡还款自动路由)和退款视为收入处理 - metadataStore 默认规则精简为 6 条通用规则,移除约 20 条个人化硬编码规则 存储与同步: - storePersistence.ts 原子写入 + 崩溃恢复 + 重试机制 - 备份升级到 v2 格式,包含 settings 和 metadata - 同步路径统一从 mobile.bean 改为 main.bean - _layout.tsx 启动时自动迁移旧 mobile.bean 到 main.bean 其他: - 删除独立日历页面,功能合并到报表月报标签 - i18n 清理:移除渠道相关翻译,新增 50+ 翻译键 - docs/android-build-guide.md 重写为 APK 体积优化指南 - 新增 design-system/beancount-mobile/MASTER.md 设计系统文档 - 测试全面更新覆盖以上所有变更
234 lines
8.4 KiB
Kotlin
234 lines
8.4 KiB
Kotlin
package com.beancount.mobile.accessibility
|
||
|
||
import com.facebook.react.bridge.ReactApplicationContext
|
||
import com.facebook.react.bridge.ReactContextBaseJavaModule
|
||
import com.facebook.react.bridge.ReactMethod
|
||
import com.facebook.react.bridge.Promise
|
||
import com.facebook.react.bridge.WritableNativeArray
|
||
import com.facebook.react.bridge.WritableNativeMap
|
||
import com.facebook.react.bridge.ReadableArray
|
||
|
||
/**
|
||
* 无障碍服务 RN 桥接模块(plan.md「3.6 无障碍服务」JS 接线)。
|
||
*
|
||
* BillingAccessibilityService 是 AccessibilityService 子类(非 RN 模块),
|
||
* 其方法无法直接从 JS 调用。本模块作为中间层,通过 instance 静态引用
|
||
* 把 JS 调用委托给服务实例。
|
||
*
|
||
* 由 Config Plugin 的 withMainApplication 注入 add(AccessibilityBridgePackage())。
|
||
*/
|
||
class AccessibilityBridgeModule(private val reactContext: ReactApplicationContext) :
|
||
ReactContextBaseJavaModule(reactContext) {
|
||
|
||
init {
|
||
ReactContextHolder.context = reactContext
|
||
}
|
||
|
||
override fun invalidate() {
|
||
super.invalidate()
|
||
if (ReactContextHolder.context === reactContext) {
|
||
ReactContextHolder.context = null
|
||
}
|
||
}
|
||
|
||
override fun getName() = "AccessibilityBridge"
|
||
|
||
/** 无障碍服务是否已连接(用户已在系统设置中启用)。 */
|
||
@ReactMethod
|
||
fun isServiceRunning(promise: Promise) {
|
||
promise.resolve(BillingAccessibilityService.instance != null)
|
||
}
|
||
|
||
/**
|
||
* 记住当前页面:把当前顶部 App 的 pkg|activity 加入白名单,
|
||
* 之后该页面内容变化时自动截图 → OCR。
|
||
*/
|
||
@ReactMethod
|
||
fun rememberCurrentPage(promise: Promise) {
|
||
val service = BillingAccessibilityService.instance
|
||
if (service == null) {
|
||
promise.reject("SERVICE_NOT_RUNNING", "无障碍服务未启用")
|
||
return
|
||
}
|
||
val pkg = service.getTopPackage()
|
||
if (pkg == null) {
|
||
promise.reject("NO_TOP_PACKAGE", "当前没有检测到前台 App")
|
||
return
|
||
}
|
||
service.rememberCurrentPage()
|
||
val result = WritableNativeMap()
|
||
result.putString("package", pkg)
|
||
result.putString("activity", service.getTopActivity() ?: "")
|
||
result.putString("signature", "$pkg|${service.getTopActivity() ?: ""}")
|
||
promise.resolve(result)
|
||
}
|
||
|
||
/** 手动触发一次 OCR(截取当前屏幕并发送给 JS 层处理)。 */
|
||
@ReactMethod
|
||
fun triggerManualOcr(promise: Promise) {
|
||
val service = BillingAccessibilityService.instance
|
||
if (service == null) {
|
||
promise.reject("SERVICE_NOT_RUNNING", "无障碍服务未启用")
|
||
return
|
||
}
|
||
try {
|
||
service.triggerManualOcr()
|
||
promise.resolve(true)
|
||
} catch (e: Exception) {
|
||
promise.reject("OCR_TRIGGER_FAIL", e.message)
|
||
}
|
||
}
|
||
|
||
/** 获取所有已记住的页面签名列表。 */
|
||
@ReactMethod
|
||
fun getPageSignatures(promise: Promise) {
|
||
val service = BillingAccessibilityService.instance
|
||
val sigsSet = if (service != null) {
|
||
service.getPageSignatures()
|
||
} else {
|
||
try {
|
||
val prefs = reactContext.getSharedPreferences("billing_accessibility_prefs", android.content.Context.MODE_PRIVATE)
|
||
prefs.getStringSet("page_signatures", emptySet()) ?: emptySet()
|
||
} catch (e: Exception) {
|
||
emptySet()
|
||
}
|
||
}
|
||
val arr = WritableNativeArray()
|
||
for (sig in sigsSet) {
|
||
val parts = sig.split("|", limit = 2)
|
||
val map = WritableNativeMap()
|
||
map.putString("signature", sig)
|
||
map.putString("package", parts.getOrNull(0) ?: "")
|
||
map.putString("activity", parts.getOrNull(1) ?: "")
|
||
arr.pushMap(map)
|
||
}
|
||
promise.resolve(arr)
|
||
}
|
||
|
||
/** 清空所有已记住的页面签名。 */
|
||
@ReactMethod
|
||
fun clearPageSignatures(promise: Promise) {
|
||
val service = BillingAccessibilityService.instance
|
||
if (service != null) {
|
||
service.clearPageSignatures()
|
||
} else {
|
||
try {
|
||
val prefs = reactContext.getSharedPreferences("billing_accessibility_prefs", android.content.Context.MODE_PRIVATE)
|
||
prefs.edit().putStringSet("page_signatures", emptySet()).apply()
|
||
} catch (e: Exception) {
|
||
promise.reject("CLEAR_PREFS_FAIL", e.message)
|
||
return
|
||
}
|
||
}
|
||
promise.resolve(true)
|
||
}
|
||
|
||
/** 删除指定页面签名。 */
|
||
@ReactMethod
|
||
fun removePageSignature(signature: String, promise: Promise) {
|
||
val service = BillingAccessibilityService.instance
|
||
if (service != null) {
|
||
service.removePageSignature(signature)
|
||
} else {
|
||
try {
|
||
val prefs = reactContext.getSharedPreferences("billing_accessibility_prefs", android.content.Context.MODE_PRIVATE)
|
||
val saved = prefs.getStringSet("page_signatures", emptySet()) ?: emptySet()
|
||
val mutable = HashSet(saved)
|
||
if (mutable.remove(signature)) {
|
||
prefs.edit().putStringSet("page_signatures", mutable).apply()
|
||
}
|
||
} catch (e: Exception) {
|
||
promise.reject("REMOVE_PREFS_FAIL", e.message)
|
||
return
|
||
}
|
||
}
|
||
promise.resolve(true)
|
||
}
|
||
|
||
/** 获取支付 App 白名单(供 JS 端展示)。 */
|
||
@ReactMethod
|
||
fun getPaymentPackages(promise: Promise) {
|
||
val arr = WritableNativeArray()
|
||
for (pkg in BillingAccessibilityService.PAYMENT_PACKAGES) {
|
||
arr.pushString(pkg)
|
||
}
|
||
promise.resolve(arr)
|
||
}
|
||
|
||
/** 获取当前顶部 App 信息(供 JS 判断用户是否在支付页面)。 */
|
||
@ReactMethod
|
||
fun getTopApp(promise: Promise) {
|
||
val service = BillingAccessibilityService.instance
|
||
if (service == null) {
|
||
promise.reject("SERVICE_NOT_RUNNING", "无障碍服务未启用")
|
||
return
|
||
}
|
||
val map = WritableNativeMap()
|
||
map.putString("package", service.getTopPackage() ?: "")
|
||
map.putString("activity", service.getTopActivity() ?: "")
|
||
promise.resolve(map)
|
||
}
|
||
|
||
/** 将当前应用拉起至前台,用以在后台识别出账单后,弹窗让用户进行交易确认 */
|
||
@ReactMethod
|
||
fun bringAppToForeground(promise: Promise) {
|
||
val service = BillingAccessibilityService.instance
|
||
if (service == null) {
|
||
promise.reject("SERVICE_NOT_RUNNING", "无障碍服务未启用")
|
||
return
|
||
}
|
||
try {
|
||
service.bringAppToForeground()
|
||
promise.resolve(true)
|
||
} catch (e: Exception) {
|
||
promise.reject("FAIL", e.message)
|
||
}
|
||
}
|
||
|
||
/** 显示账单浮窗(直接在当前其他应用上方渲染,不返回 App 内) */
|
||
@ReactMethod
|
||
fun showFloatingBill(
|
||
amount: String,
|
||
merchant: String,
|
||
time: String,
|
||
packageName: String,
|
||
categories: ReadableArray,
|
||
accounts: ReadableArray,
|
||
direction: String,
|
||
draftId: String,
|
||
promise: Promise
|
||
) {
|
||
val context = reactContext.currentActivity ?: BillingAccessibilityService.instance
|
||
if (context == null) {
|
||
promise.reject("NO_CONTEXT", "无法获取当前前台 Activity 或 AccessibilityService 实例")
|
||
return
|
||
}
|
||
|
||
val categoryList = mutableListOf<Map<String, String>>()
|
||
for (i in 0 until categories.size()) {
|
||
val map = categories.getMap(i)
|
||
categoryList.add(mapOf(
|
||
"id" to (map?.getString("id") ?: ""),
|
||
"name" to (map?.getString("name") ?: ""),
|
||
"account" to (map?.getString("account") ?: ""),
|
||
"type" to (map?.getString("type") ?: "")
|
||
))
|
||
}
|
||
|
||
val accountList = mutableListOf<String>()
|
||
for (i in 0 until accounts.size()) {
|
||
accountList.add(accounts.getString(i) ?: "")
|
||
}
|
||
|
||
android.os.Handler(android.os.Looper.getMainLooper()).post {
|
||
try {
|
||
val floatingView = FloatingBillView(context, draftId, amount, merchant, time, packageName, categoryList, accountList, direction)
|
||
floatingView.show()
|
||
promise.resolve(true)
|
||
} catch (e: Exception) {
|
||
promise.reject("FAIL", e.message)
|
||
}
|
||
}
|
||
}
|
||
}
|