refactor: 目录重组 - 明确中心化运维与去中心化业务边界
[目录重组] - services/nac-admin → ops/nac-admin(运维后台归入 ops/) - nac-monitor/nac-daemon/nac-deploy/nac-cee-integration → ops/(运维工具归组) - nac-sdk/nac-cli/nac-serde → sdk/(开发者工具归组) - nac-api-server/nac-explorer-api → services/(对外服务归组) - 备份文件 → archive/(历史版本归档) [nac-admin 职责拆分] - 保留运维功能:Dashboard(节点监控)、AuditLog(审计)、RegulatoryMonitor(合规) - 迁出业务功能: - KnowledgeBase → services/nac-knowledge-portal/ - Crawlers → services/nac-data-crawler/ - ApprovalCases + TagEngine → services/nac-rwa-portal/ - ProtocolRegistry → services/nac-protocol-registry/ [修复] - rpc.newassetchain.io nginx 配置修复(9547→9550,NAC_Lens 网关) 设计原则:ops/ 是合理的中心化运维入口,区块链协议和业务服务 完全独立,不归属任何 admin 目录,避免中心化联想。
This commit is contained in:
parent
852ce44960
commit
1cdfd6c7cc
|
|
@ -0,0 +1,430 @@
|
||||||
|
# This file is automatically @generated by Cargo.
|
||||||
|
# It is not intended for manual editing.
|
||||||
|
version = 4
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "aho-corasick"
|
||||||
|
version = "1.1.4"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
||||||
|
dependencies = [
|
||||||
|
"memchr",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "bitflags"
|
||||||
|
version = "2.11.0"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "bytes"
|
||||||
|
version = "1.11.1"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "cfg-if"
|
||||||
|
version = "1.0.4"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "errno"
|
||||||
|
version = "0.3.14"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
||||||
|
dependencies = [
|
||||||
|
"libc",
|
||||||
|
"windows-sys",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "itoa"
|
||||||
|
version = "1.0.17"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "lazy_static"
|
||||||
|
version = "1.5.0"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "libc"
|
||||||
|
version = "0.2.182"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "6800badb6cb2082ffd7b6a67e6125bb39f18782f793520caee8cb8846be06112"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "lock_api"
|
||||||
|
version = "0.4.14"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
||||||
|
dependencies = [
|
||||||
|
"scopeguard",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "log"
|
||||||
|
version = "0.4.29"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "matchers"
|
||||||
|
version = "0.2.0"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
|
||||||
|
dependencies = [
|
||||||
|
"regex-automata",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "memchr"
|
||||||
|
version = "2.8.0"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "mio"
|
||||||
|
version = "1.1.1"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
|
||||||
|
dependencies = [
|
||||||
|
"libc",
|
||||||
|
"wasi",
|
||||||
|
"windows-sys",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "nac-cee-integration"
|
||||||
|
version = "1.0.0"
|
||||||
|
dependencies = [
|
||||||
|
"serde",
|
||||||
|
"serde_json",
|
||||||
|
"tokio",
|
||||||
|
"tracing",
|
||||||
|
"tracing-subscriber",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "nu-ansi-term"
|
||||||
|
version = "0.50.3"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
|
||||||
|
dependencies = [
|
||||||
|
"windows-sys",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "once_cell"
|
||||||
|
version = "1.21.3"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "parking_lot"
|
||||||
|
version = "0.12.5"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
||||||
|
dependencies = [
|
||||||
|
"lock_api",
|
||||||
|
"parking_lot_core",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "parking_lot_core"
|
||||||
|
version = "0.9.12"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
||||||
|
dependencies = [
|
||||||
|
"cfg-if",
|
||||||
|
"libc",
|
||||||
|
"redox_syscall",
|
||||||
|
"smallvec",
|
||||||
|
"windows-link",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "pin-project-lite"
|
||||||
|
version = "0.2.17"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "proc-macro2"
|
||||||
|
version = "1.0.106"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
||||||
|
dependencies = [
|
||||||
|
"unicode-ident",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "quote"
|
||||||
|
version = "1.0.45"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
||||||
|
dependencies = [
|
||||||
|
"proc-macro2",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "redox_syscall"
|
||||||
|
version = "0.5.18"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
||||||
|
dependencies = [
|
||||||
|
"bitflags",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "regex-automata"
|
||||||
|
version = "0.4.14"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
|
||||||
|
dependencies = [
|
||||||
|
"aho-corasick",
|
||||||
|
"memchr",
|
||||||
|
"regex-syntax",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "regex-syntax"
|
||||||
|
version = "0.8.10"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "scopeguard"
|
||||||
|
version = "1.2.0"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "serde"
|
||||||
|
version = "1.0.228"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
||||||
|
dependencies = [
|
||||||
|
"serde_core",
|
||||||
|
"serde_derive",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "serde_core"
|
||||||
|
version = "1.0.228"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
||||||
|
dependencies = [
|
||||||
|
"serde_derive",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "serde_derive"
|
||||||
|
version = "1.0.228"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
||||||
|
dependencies = [
|
||||||
|
"proc-macro2",
|
||||||
|
"quote",
|
||||||
|
"syn",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "serde_json"
|
||||||
|
version = "1.0.149"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
|
||||||
|
dependencies = [
|
||||||
|
"itoa",
|
||||||
|
"memchr",
|
||||||
|
"serde",
|
||||||
|
"serde_core",
|
||||||
|
"zmij",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "sharded-slab"
|
||||||
|
version = "0.1.7"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
|
||||||
|
dependencies = [
|
||||||
|
"lazy_static",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "signal-hook-registry"
|
||||||
|
version = "1.4.8"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
|
||||||
|
dependencies = [
|
||||||
|
"errno",
|
||||||
|
"libc",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "smallvec"
|
||||||
|
version = "1.15.1"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "socket2"
|
||||||
|
version = "0.6.3"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
|
||||||
|
dependencies = [
|
||||||
|
"libc",
|
||||||
|
"windows-sys",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "syn"
|
||||||
|
version = "2.0.117"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
||||||
|
dependencies = [
|
||||||
|
"proc-macro2",
|
||||||
|
"quote",
|
||||||
|
"unicode-ident",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "thread_local"
|
||||||
|
version = "1.1.9"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
|
||||||
|
dependencies = [
|
||||||
|
"cfg-if",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "tokio"
|
||||||
|
version = "1.50.0"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "27ad5e34374e03cfffefc301becb44e9dc3c17584f414349ebe29ed26661822d"
|
||||||
|
dependencies = [
|
||||||
|
"bytes",
|
||||||
|
"libc",
|
||||||
|
"mio",
|
||||||
|
"parking_lot",
|
||||||
|
"pin-project-lite",
|
||||||
|
"signal-hook-registry",
|
||||||
|
"socket2",
|
||||||
|
"tokio-macros",
|
||||||
|
"windows-sys",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "tokio-macros"
|
||||||
|
version = "2.6.1"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "5c55a2eff8b69ce66c84f85e1da1c233edc36ceb85a2058d11b0d6a3c7e7569c"
|
||||||
|
dependencies = [
|
||||||
|
"proc-macro2",
|
||||||
|
"quote",
|
||||||
|
"syn",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "tracing"
|
||||||
|
version = "0.1.44"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
|
||||||
|
dependencies = [
|
||||||
|
"pin-project-lite",
|
||||||
|
"tracing-attributes",
|
||||||
|
"tracing-core",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "tracing-attributes"
|
||||||
|
version = "0.1.31"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
|
||||||
|
dependencies = [
|
||||||
|
"proc-macro2",
|
||||||
|
"quote",
|
||||||
|
"syn",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "tracing-core"
|
||||||
|
version = "0.1.36"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
|
||||||
|
dependencies = [
|
||||||
|
"once_cell",
|
||||||
|
"valuable",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "tracing-log"
|
||||||
|
version = "0.2.0"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
|
||||||
|
dependencies = [
|
||||||
|
"log",
|
||||||
|
"once_cell",
|
||||||
|
"tracing-core",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "tracing-subscriber"
|
||||||
|
version = "0.3.22"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "2f30143827ddab0d256fd843b7a66d164e9f271cfa0dde49142c5ca0ca291f1e"
|
||||||
|
dependencies = [
|
||||||
|
"matchers",
|
||||||
|
"nu-ansi-term",
|
||||||
|
"once_cell",
|
||||||
|
"regex-automata",
|
||||||
|
"sharded-slab",
|
||||||
|
"smallvec",
|
||||||
|
"thread_local",
|
||||||
|
"tracing",
|
||||||
|
"tracing-core",
|
||||||
|
"tracing-log",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "unicode-ident"
|
||||||
|
version = "1.0.24"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "valuable"
|
||||||
|
version = "0.1.1"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "wasi"
|
||||||
|
version = "0.11.1+wasi-snapshot-preview1"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "windows-link"
|
||||||
|
version = "0.2.1"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "windows-sys"
|
||||||
|
version = "0.61.2"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
||||||
|
dependencies = [
|
||||||
|
"windows-link",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "zmij"
|
||||||
|
version = "1.0.21"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|
||||||
|
|
@ -0,0 +1,16 @@
|
||||||
|
[package]
|
||||||
|
name = "nac-cee-integration"
|
||||||
|
version = "1.0.0"
|
||||||
|
edition = "2021"
|
||||||
|
description = "NAC CEE 生产级集成服务 - 辖区插件加载 + 版本管理 + NAC_Lens路由 + 兼容性检测"
|
||||||
|
|
||||||
|
[[bin]]
|
||||||
|
name = "nac-cee-integration"
|
||||||
|
path = "src/main.rs"
|
||||||
|
|
||||||
|
[dependencies]
|
||||||
|
serde = { version = "1.0", features = ["derive"] }
|
||||||
|
serde_json = "1.0"
|
||||||
|
tokio = { version = "1.0", features = ["full"] }
|
||||||
|
tracing = "0.1"
|
||||||
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
||||||
|
|
@ -0,0 +1,376 @@
|
||||||
|
//! NAC CEE 生产级集成服务
|
||||||
|
//!
|
||||||
|
//! 集成以下模块:
|
||||||
|
//! - nac-cee-plugin-loader: 辖区插件动态加载(CA签名验证)
|
||||||
|
//! - nac-jurisdiction-version: 辖区规则版本管理
|
||||||
|
//! - nac-lens-jurisdiction-router: NAC_Lens 辖区路由层
|
||||||
|
//! - nac-jurisdiction-compat: 跨版本兼容性检测
|
||||||
|
//! - nac-jurisdiction-rules: 31个辖区宪法规则验证
|
||||||
|
//!
|
||||||
|
//! CBPP原则:约法即是治法 | 宪法即是规则 | 参与即是共识 | 节点产生区块交易决定区块大小
|
||||||
|
//! 端口:9558(NAC端口规范 L2层)
|
||||||
|
|
||||||
|
use std::collections::HashMap;
|
||||||
|
use serde::{Deserialize, Serialize};
|
||||||
|
use tracing::{info, error};
|
||||||
|
|
||||||
|
/// 服务健康状态
|
||||||
|
#[derive(Debug, Serialize, Deserialize)]
|
||||||
|
pub struct HealthStatus {
|
||||||
|
pub service: String,
|
||||||
|
pub version: String,
|
||||||
|
pub status: String,
|
||||||
|
pub modules: HashMap<String, ModuleStatus>,
|
||||||
|
pub jurisdictions_loaded: usize,
|
||||||
|
pub cbpp_principles: CbppPrinciples,
|
||||||
|
pub total_tests_passed: usize,
|
||||||
|
}
|
||||||
|
|
||||||
|
/// 模块状态
|
||||||
|
#[derive(Debug, Serialize, Deserialize)]
|
||||||
|
pub struct ModuleStatus {
|
||||||
|
pub name: String,
|
||||||
|
pub status: String,
|
||||||
|
pub test_count: usize,
|
||||||
|
pub version: String,
|
||||||
|
}
|
||||||
|
|
||||||
|
/// CBPP 四大原则合规状态
|
||||||
|
#[derive(Debug, Serialize, Deserialize)]
|
||||||
|
pub struct CbppPrinciples {
|
||||||
|
pub constitutional_law_is_governance: bool,
|
||||||
|
pub constitution_is_rules: bool,
|
||||||
|
pub participation_is_consensus: bool,
|
||||||
|
pub nodes_produce_blocks: bool,
|
||||||
|
}
|
||||||
|
|
||||||
|
/// 辖区验证请求
|
||||||
|
#[derive(Debug, Serialize, Deserialize)]
|
||||||
|
pub struct ValidationRequest {
|
||||||
|
pub jurisdiction: String,
|
||||||
|
pub tx_hash: String,
|
||||||
|
pub amount_usd: f64,
|
||||||
|
pub asset_type: String,
|
||||||
|
pub kyc_level: String,
|
||||||
|
pub aml_cleared: bool,
|
||||||
|
pub is_cross_border: bool,
|
||||||
|
pub sanctions_cleared: bool,
|
||||||
|
}
|
||||||
|
|
||||||
|
/// 辖区验证响应
|
||||||
|
#[derive(Debug, Serialize, Deserialize)]
|
||||||
|
pub struct ValidationResponse {
|
||||||
|
pub jurisdiction: String,
|
||||||
|
pub tx_hash: String,
|
||||||
|
pub valid: bool,
|
||||||
|
pub cr_issued: bool,
|
||||||
|
pub rules_passed: Vec<String>,
|
||||||
|
pub violation: Option<String>,
|
||||||
|
pub protocol: String,
|
||||||
|
}
|
||||||
|
|
||||||
|
/// CEE 集成服务
|
||||||
|
pub struct CeeIntegrationService {
|
||||||
|
pub supported_jurisdictions: Vec<String>,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl CeeIntegrationService {
|
||||||
|
pub fn new() -> Self {
|
||||||
|
let supported_jurisdictions = vec![
|
||||||
|
// Tier 1 - 高度成熟监管框架(11个)
|
||||||
|
"CN", "HK", "SG", "AE", "US", "EU", "JP", "KR", "AU", "CH", "GB",
|
||||||
|
// Tier 2 - 离岸金融中心(10个)
|
||||||
|
"BM", "KY", "VG", "MT", "LU", "GI", "JE", "IM", "PA", "MU",
|
||||||
|
// Tier 3 - 新兴市场(10个)
|
||||||
|
"BR", "IN", "TH", "ID", "NG", "MX", "ZA", "TR", "SA", "RU",
|
||||||
|
].iter().map(|s| s.to_string()).collect();
|
||||||
|
|
||||||
|
info!("CEE集成服务初始化: {} 个辖区已加载", 31_usize);
|
||||||
|
|
||||||
|
Self { supported_jurisdictions }
|
||||||
|
}
|
||||||
|
|
||||||
|
/// 获取服务健康状态
|
||||||
|
pub fn health_check(&self) -> HealthStatus {
|
||||||
|
let mut modules = HashMap::new();
|
||||||
|
|
||||||
|
modules.insert("nac-jurisdiction-rules".to_string(), ModuleStatus {
|
||||||
|
name: "NAC辖区宪法规则验证插件集(31辖区)".to_string(),
|
||||||
|
status: "running".to_string(),
|
||||||
|
test_count: 225,
|
||||||
|
version: "1.0.0".to_string(),
|
||||||
|
});
|
||||||
|
|
||||||
|
modules.insert("nac-cee-plugin-loader".to_string(), ModuleStatus {
|
||||||
|
name: "CEE插件动态加载器(CA签名验证)".to_string(),
|
||||||
|
status: "running".to_string(),
|
||||||
|
test_count: 7,
|
||||||
|
version: "0.1.0".to_string(),
|
||||||
|
});
|
||||||
|
|
||||||
|
modules.insert("nac-jurisdiction-version".to_string(), ModuleStatus {
|
||||||
|
name: "辖区规则版本管理(自动归档)".to_string(),
|
||||||
|
status: "running".to_string(),
|
||||||
|
test_count: 6,
|
||||||
|
version: "0.1.0".to_string(),
|
||||||
|
});
|
||||||
|
|
||||||
|
modules.insert("nac-jurisdiction-compat".to_string(), ModuleStatus {
|
||||||
|
name: "跨版本兼容性检测".to_string(),
|
||||||
|
status: "running".to_string(),
|
||||||
|
test_count: 6,
|
||||||
|
version: "0.1.0".to_string(),
|
||||||
|
});
|
||||||
|
|
||||||
|
modules.insert("nac-lens-jurisdiction-router".to_string(), ModuleStatus {
|
||||||
|
name: "NAC_Lens 4.0辖区路由层".to_string(),
|
||||||
|
status: "running".to_string(),
|
||||||
|
test_count: 8,
|
||||||
|
version: "0.1.0".to_string(),
|
||||||
|
});
|
||||||
|
|
||||||
|
let total_tests = modules.values().map(|m| m.test_count).sum();
|
||||||
|
|
||||||
|
HealthStatus {
|
||||||
|
service: "nac-cee-integration".to_string(),
|
||||||
|
version: "1.0.0".to_string(),
|
||||||
|
status: "healthy".to_string(),
|
||||||
|
modules,
|
||||||
|
jurisdictions_loaded: self.supported_jurisdictions.len(),
|
||||||
|
cbpp_principles: CbppPrinciples {
|
||||||
|
constitutional_law_is_governance: true,
|
||||||
|
constitution_is_rules: true,
|
||||||
|
participation_is_consensus: true,
|
||||||
|
nodes_produce_blocks: true,
|
||||||
|
},
|
||||||
|
total_tests_passed: total_tests,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// 验证交易(路由到对应辖区插件)
|
||||||
|
pub fn validate_transaction(&self, req: &ValidationRequest) -> ValidationResponse {
|
||||||
|
if !self.supported_jurisdictions.contains(&req.jurisdiction) {
|
||||||
|
return ValidationResponse {
|
||||||
|
jurisdiction: req.jurisdiction.clone(),
|
||||||
|
tx_hash: req.tx_hash.clone(),
|
||||||
|
valid: false,
|
||||||
|
cr_issued: false,
|
||||||
|
rules_passed: vec![],
|
||||||
|
violation: Some(format!("Jurisdiction {} not supported", req.jurisdiction)),
|
||||||
|
protocol: "NAC_Lens/4.0".to_string(),
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
let mut rules_passed = vec![];
|
||||||
|
let mut violation = None;
|
||||||
|
|
||||||
|
// AML 检查
|
||||||
|
if req.amount_usd > 10000.0 && !req.aml_cleared {
|
||||||
|
violation = Some(format!(
|
||||||
|
"{}_AML_001: Amount ${:.2} exceeds threshold, AML clearance required",
|
||||||
|
req.jurisdiction, req.amount_usd
|
||||||
|
));
|
||||||
|
} else {
|
||||||
|
rules_passed.push(format!("{}_AML_001", req.jurisdiction));
|
||||||
|
}
|
||||||
|
|
||||||
|
// KYC 检查
|
||||||
|
if violation.is_none() && req.kyc_level == "None" {
|
||||||
|
violation = Some(format!("{}_KYC_001: KYC verification required", req.jurisdiction));
|
||||||
|
} else if violation.is_none() {
|
||||||
|
rules_passed.push(format!("{}_KYC_001", req.jurisdiction));
|
||||||
|
}
|
||||||
|
|
||||||
|
// 制裁检查
|
||||||
|
if violation.is_none() && !req.sanctions_cleared {
|
||||||
|
violation = Some(format!(
|
||||||
|
"{}_SANCTIONS_001: Sanctions screening required",
|
||||||
|
req.jurisdiction
|
||||||
|
));
|
||||||
|
} else if violation.is_none() {
|
||||||
|
rules_passed.push(format!("{}_SANCTIONS_001", req.jurisdiction));
|
||||||
|
}
|
||||||
|
|
||||||
|
let valid = violation.is_none();
|
||||||
|
|
||||||
|
// 参与即是共识:验证通过即出具CR
|
||||||
|
if valid {
|
||||||
|
info!(
|
||||||
|
"CR issued: jurisdiction={} tx={}",
|
||||||
|
req.jurisdiction, req.tx_hash
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
ValidationResponse {
|
||||||
|
jurisdiction: req.jurisdiction.clone(),
|
||||||
|
tx_hash: req.tx_hash.clone(),
|
||||||
|
valid,
|
||||||
|
cr_issued: valid,
|
||||||
|
rules_passed,
|
||||||
|
violation,
|
||||||
|
protocol: "NAC_Lens/4.0".to_string(),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#[tokio::main]
|
||||||
|
async fn main() {
|
||||||
|
tracing_subscriber::fmt()
|
||||||
|
.with_env_filter(
|
||||||
|
std::env::var("RUST_LOG").unwrap_or_else(|_| "info".to_string())
|
||||||
|
)
|
||||||
|
.init();
|
||||||
|
|
||||||
|
info!("╔══════════════════════════════════════════════════════╗");
|
||||||
|
info!("║ NAC CEE 集成服务 v1.0.0 (生产级) ║");
|
||||||
|
info!("║ CBPP: 约法即是治法 | 宪法即是规则 ║");
|
||||||
|
info!("║ 参与即是共识 | 节点产生区块交易决定区块大小 ║");
|
||||||
|
info!("║ 协议: NAC_Lens/4.0 端口: 9558 ║");
|
||||||
|
info!("╚══════════════════════════════════════════════════════╝");
|
||||||
|
|
||||||
|
let service = CeeIntegrationService::new();
|
||||||
|
let health = service.health_check();
|
||||||
|
|
||||||
|
info!("服务状态: {}", health.status);
|
||||||
|
info!("已加载辖区数: {}", health.jurisdictions_loaded);
|
||||||
|
info!("总测试通过数: {}", health.total_tests_passed);
|
||||||
|
info!("模块列表:");
|
||||||
|
for (_, module) in &health.modules {
|
||||||
|
info!(" ✅ {} v{} ({} 测试通过)", module.name, module.version, module.test_count);
|
||||||
|
}
|
||||||
|
|
||||||
|
// 系统自检
|
||||||
|
let test_req = ValidationRequest {
|
||||||
|
jurisdiction: "CN".to_string(),
|
||||||
|
tx_hash: "0xabcdef1234567890".to_string(),
|
||||||
|
amount_usd: 5000.0,
|
||||||
|
asset_type: "RWA_REAL_ESTATE".to_string(),
|
||||||
|
kyc_level: "Institutional".to_string(),
|
||||||
|
aml_cleared: true,
|
||||||
|
is_cross_border: false,
|
||||||
|
sanctions_cleared: true,
|
||||||
|
};
|
||||||
|
|
||||||
|
let result = service.validate_transaction(&test_req);
|
||||||
|
if result.valid {
|
||||||
|
info!("✅ 系统自检通过 - CEE集成服务运行正常");
|
||||||
|
} else {
|
||||||
|
error!("❌ 系统自检失败: {:?}", result.violation);
|
||||||
|
std::process::exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
// 输出健康状态 JSON
|
||||||
|
let health_json = serde_json::to_string_pretty(&health).unwrap();
|
||||||
|
let log_dir = std::path::Path::new("/opt/nac/logs");
|
||||||
|
if log_dir.exists() {
|
||||||
|
std::fs::write(log_dir.join("cee-integration-health.json"), &health_json).ok();
|
||||||
|
info!("健康状态已写入 /opt/nac/logs/cee-integration-health.json");
|
||||||
|
}
|
||||||
|
|
||||||
|
info!("NAC CEE 集成服务启动完成,等待请求...");
|
||||||
|
|
||||||
|
// 保持服务运行(生产环境中此处接入 HTTP 服务器)
|
||||||
|
loop {
|
||||||
|
tokio::time::sleep(tokio::time::Duration::from_secs(60)).await;
|
||||||
|
info!("心跳检测: {} 个辖区在线", service.supported_jurisdictions.len());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#[cfg(test)]
|
||||||
|
mod tests {
|
||||||
|
use super::*;
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_service_health_check() {
|
||||||
|
let service = CeeIntegrationService::new();
|
||||||
|
let health = service.health_check();
|
||||||
|
assert_eq!(health.status, "healthy");
|
||||||
|
assert_eq!(health.jurisdictions_loaded, 31);
|
||||||
|
assert!(health.cbpp_principles.constitutional_law_is_governance);
|
||||||
|
assert!(health.cbpp_principles.participation_is_consensus);
|
||||||
|
assert_eq!(health.total_tests_passed, 252);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_valid_cn_transaction() {
|
||||||
|
let service = CeeIntegrationService::new();
|
||||||
|
let req = ValidationRequest {
|
||||||
|
jurisdiction: "CN".to_string(),
|
||||||
|
tx_hash: "0xtest001".to_string(),
|
||||||
|
amount_usd: 5000.0,
|
||||||
|
asset_type: "RWA_REAL_ESTATE".to_string(),
|
||||||
|
kyc_level: "Institutional".to_string(),
|
||||||
|
aml_cleared: true,
|
||||||
|
is_cross_border: false,
|
||||||
|
sanctions_cleared: true,
|
||||||
|
};
|
||||||
|
let resp = service.validate_transaction(&req);
|
||||||
|
assert!(resp.valid);
|
||||||
|
assert!(resp.cr_issued);
|
||||||
|
assert_eq!(resp.protocol, "NAC_Lens/4.0");
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_aml_violation() {
|
||||||
|
let service = CeeIntegrationService::new();
|
||||||
|
let req = ValidationRequest {
|
||||||
|
jurisdiction: "HK".to_string(),
|
||||||
|
tx_hash: "0xtest002".to_string(),
|
||||||
|
amount_usd: 50000.0,
|
||||||
|
asset_type: "RWA_BOND".to_string(),
|
||||||
|
kyc_level: "Enhanced".to_string(),
|
||||||
|
aml_cleared: false,
|
||||||
|
is_cross_border: true,
|
||||||
|
sanctions_cleared: true,
|
||||||
|
};
|
||||||
|
let resp = service.validate_transaction(&req);
|
||||||
|
assert!(!resp.valid);
|
||||||
|
assert!(!resp.cr_issued);
|
||||||
|
assert!(resp.violation.is_some());
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_unsupported_jurisdiction() {
|
||||||
|
let service = CeeIntegrationService::new();
|
||||||
|
let req = ValidationRequest {
|
||||||
|
jurisdiction: "UNKNOWN".to_string(),
|
||||||
|
tx_hash: "0xtest003".to_string(),
|
||||||
|
amount_usd: 1000.0,
|
||||||
|
asset_type: "RWA_REAL_ESTATE".to_string(),
|
||||||
|
kyc_level: "Basic".to_string(),
|
||||||
|
aml_cleared: true,
|
||||||
|
is_cross_border: false,
|
||||||
|
sanctions_cleared: true,
|
||||||
|
};
|
||||||
|
let resp = service.validate_transaction(&req);
|
||||||
|
assert!(!resp.valid);
|
||||||
|
assert!(resp.violation.unwrap().contains("not supported"));
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_all_31_jurisdictions_supported() {
|
||||||
|
let service = CeeIntegrationService::new();
|
||||||
|
assert_eq!(service.supported_jurisdictions.len(), 31);
|
||||||
|
assert!(service.supported_jurisdictions.contains(&"CN".to_string()));
|
||||||
|
assert!(service.supported_jurisdictions.contains(&"BM".to_string()));
|
||||||
|
assert!(service.supported_jurisdictions.contains(&"BR".to_string()));
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_kyc_violation() {
|
||||||
|
let service = CeeIntegrationService::new();
|
||||||
|
let req = ValidationRequest {
|
||||||
|
jurisdiction: "SG".to_string(),
|
||||||
|
tx_hash: "0xtest004".to_string(),
|
||||||
|
amount_usd: 1000.0,
|
||||||
|
asset_type: "RWA_REAL_ESTATE".to_string(),
|
||||||
|
kyc_level: "None".to_string(),
|
||||||
|
aml_cleared: true,
|
||||||
|
is_cross_border: false,
|
||||||
|
sanctions_cleared: true,
|
||||||
|
};
|
||||||
|
let resp = service.validate_transaction(&req);
|
||||||
|
assert!(!resp.valid);
|
||||||
|
assert!(resp.violation.unwrap().contains("KYC"));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,53 @@
|
||||||
|
import { Toaster } from "@/components/ui/sonner";
|
||||||
|
import { TooltipProvider } from "@/components/ui/tooltip";
|
||||||
|
import NotFound from "@/pages/NotFound";
|
||||||
|
import { Route, Switch } from "wouter";
|
||||||
|
import ErrorBoundary from "./components/ErrorBoundary";
|
||||||
|
import { ThemeProvider } from "./contexts/ThemeContext";
|
||||||
|
import Login from "./pages/Login";
|
||||||
|
import Dashboard from "./pages/Dashboard";
|
||||||
|
import AuditLog from "./pages/AuditLog";
|
||||||
|
import RegulatoryMonitor from "./pages/RegulatoryMonitor";
|
||||||
|
import AdminLayout from "./components/AdminLayout";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* NAC 运维管理后台(ops/nac-admin)
|
||||||
|
*
|
||||||
|
* 职责范围(仅限运维):
|
||||||
|
* - Dashboard:节点状态监控、服务健康检查
|
||||||
|
* - AuditLog:系统操作审计日志
|
||||||
|
* - RegulatoryMonitor:合规监控
|
||||||
|
*
|
||||||
|
* 已迁移到独立服务的功能:
|
||||||
|
* - KnowledgeBase → services/nac-knowledge-portal
|
||||||
|
* - Crawlers → services/nac-data-crawler
|
||||||
|
* - ApprovalCases/TagEngine → services/nac-rwa-portal
|
||||||
|
* - ProtocolRegistry → services/nac-protocol-registry
|
||||||
|
*/
|
||||||
|
function Router() {
|
||||||
|
return (
|
||||||
|
<Switch>
|
||||||
|
<Route path="/login" component={Login} />
|
||||||
|
<Route path="/" component={() => <AdminLayout><Dashboard /></AdminLayout>} />
|
||||||
|
<Route path="/audit" component={() => <AdminLayout><AuditLog /></AdminLayout>} />
|
||||||
|
<Route path="/regulatory" component={() => <AdminLayout><RegulatoryMonitor /></AdminLayout>} />
|
||||||
|
<Route path="/404" component={NotFound} />
|
||||||
|
<Route component={NotFound} />
|
||||||
|
</Switch>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
function App() {
|
||||||
|
return (
|
||||||
|
<ErrorBoundary>
|
||||||
|
<ThemeProvider defaultTheme="dark">
|
||||||
|
<TooltipProvider>
|
||||||
|
<Toaster />
|
||||||
|
<Router />
|
||||||
|
</TooltipProvider>
|
||||||
|
</ThemeProvider>
|
||||||
|
</ErrorBoundary>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export default App;
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue