Compare commits
17 Commits
secrets-mc
...
secrets-mc
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7bd0603dc6 | ||
|
|
17a95bea5b | ||
|
|
a42db62702 | ||
|
|
2edb970cba | ||
|
|
17f8ac0dbc | ||
|
|
259fbe10a6 | ||
|
|
c815fb4cc8 | ||
|
|
90cd1eca15 | ||
|
|
da007348ea | ||
|
|
f2344b7543 | ||
|
|
ee028d45c3 | ||
|
|
a44c8ebf08 | ||
|
|
a595081c4c | ||
|
|
0a8b14211a | ||
|
|
9cebbd7587 | ||
|
|
4d136a5a20 | ||
|
|
7ce4aaf835 |
@@ -7,8 +7,8 @@ on:
|
|||||||
- 'crates/**'
|
- 'crates/**'
|
||||||
- 'Cargo.toml'
|
- 'Cargo.toml'
|
||||||
- 'Cargo.lock'
|
- 'Cargo.lock'
|
||||||
# systemd / 部署模板变更也应跑构建(产物无变时可快速跳过 check)
|
|
||||||
- 'deploy/**'
|
- 'deploy/**'
|
||||||
|
- '.gitea/workflows/**'
|
||||||
|
|
||||||
concurrency:
|
concurrency:
|
||||||
group: ${{ github.workflow }}-${{ github.ref }}
|
group: ${{ github.workflow }}-${{ github.ref }}
|
||||||
@@ -24,225 +24,162 @@ env:
|
|||||||
CARGO_NET_RETRY: 10
|
CARGO_NET_RETRY: 10
|
||||||
CARGO_TERM_COLOR: always
|
CARGO_TERM_COLOR: always
|
||||||
RUST_BACKTRACE: short
|
RUST_BACKTRACE: short
|
||||||
|
MUSL_TARGET: x86_64-unknown-linux-musl
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
version:
|
ci:
|
||||||
name: 版本 & Release
|
name: 检查 / 构建 / 发版
|
||||||
runs-on: debian
|
runs-on: debian
|
||||||
|
timeout-minutes: 40
|
||||||
outputs:
|
outputs:
|
||||||
version: ${{ steps.ver.outputs.version }}
|
|
||||||
tag: ${{ steps.ver.outputs.tag }}
|
tag: ${{ steps.ver.outputs.tag }}
|
||||||
tag_exists: ${{ steps.ver.outputs.tag_exists }}
|
version: ${{ steps.ver.outputs.version }}
|
||||||
release_id: ${{ steps.release.outputs.release_id }}
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
|
||||||
|
# ── 版本解析 ────────────────────────────────────────────────────────
|
||||||
- name: 解析版本
|
- name: 解析版本
|
||||||
id: ver
|
id: ver
|
||||||
run: |
|
run: |
|
||||||
version=$(grep -m1 '^version' crates/secrets-mcp/Cargo.toml | sed 's/.*"\(.*\)".*/\1/')
|
version=$(grep -m1 '^version' crates/secrets-mcp/Cargo.toml | sed 's/.*"\(.*\)".*/\1/')
|
||||||
tag="secrets-mcp-${version}"
|
tag="secrets-mcp-${version}"
|
||||||
previous_tag=$(git tag --list 'secrets-mcp-*' --sort=-v:refname | awk -v tag="$tag" '$0 != tag { print; exit }')
|
|
||||||
|
|
||||||
echo "version=${version}" >> "$GITHUB_OUTPUT"
|
echo "version=${version}" >> "$GITHUB_OUTPUT"
|
||||||
echo "tag=${tag}" >> "$GITHUB_OUTPUT"
|
echo "tag=${tag}" >> "$GITHUB_OUTPUT"
|
||||||
echo "previous_tag=${previous_tag}" >> "$GITHUB_OUTPUT"
|
|
||||||
|
|
||||||
if git rev-parse "refs/tags/${tag}" >/dev/null 2>&1; then
|
if git rev-parse "refs/tags/${tag}" >/dev/null 2>&1; then
|
||||||
|
echo "⚠ 版本 ${tag} 已存在,将覆盖重新发版。"
|
||||||
echo "tag_exists=true" >> "$GITHUB_OUTPUT"
|
echo "tag_exists=true" >> "$GITHUB_OUTPUT"
|
||||||
echo "版本 ${tag} 已存在"
|
|
||||||
else
|
else
|
||||||
echo "tag_exists=false" >> "$GITHUB_OUTPUT"
|
|
||||||
echo "将创建新版本 ${tag}"
|
echo "将创建新版本 ${tag}"
|
||||||
|
echo "tag_exists=false" >> "$GITHUB_OUTPUT"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
- name: 严格拦截重复版本
|
# ── Rust 工具链 ──────────────────────────────────────────────────────
|
||||||
if: steps.ver.outputs.tag_exists == 'true'
|
- name: 安装 Rust 与 musl 工具链
|
||||||
run: |
|
run: |
|
||||||
echo "错误: 版本 ${{ steps.ver.outputs.tag }} 已存在,禁止重复发版。"
|
sudo apt-get update -qq
|
||||||
echo "请先 bump crates/secrets-mcp/Cargo.toml 中的 version,并执行 cargo build 同步 Cargo.lock。"
|
sudo apt-get install -y -qq pkg-config musl-tools binutils jq
|
||||||
exit 1
|
if ! command -v rustup >/dev/null 2>&1; then
|
||||||
|
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain "${RUST_TOOLCHAIN}"
|
||||||
|
echo "$HOME/.cargo/bin" >> "$GITHUB_PATH"
|
||||||
|
fi
|
||||||
|
source "$HOME/.cargo/env" 2>/dev/null || true
|
||||||
|
rustup toolchain install "${RUST_TOOLCHAIN}" --profile minimal \
|
||||||
|
--component rustfmt --component clippy
|
||||||
|
rustup default "${RUST_TOOLCHAIN}"
|
||||||
|
rustup target add "${MUSL_TARGET}" --toolchain "${RUST_TOOLCHAIN}"
|
||||||
|
rustc -V && cargo -V
|
||||||
|
|
||||||
|
- name: 缓存 Cargo
|
||||||
|
uses: actions/cache@v4
|
||||||
|
with:
|
||||||
|
path: |
|
||||||
|
~/.cargo/registry/index
|
||||||
|
~/.cargo/registry/cache
|
||||||
|
~/.cargo/git/db
|
||||||
|
target
|
||||||
|
key: cargo-${{ env.MUSL_TARGET }}-${{ env.RUST_TOOLCHAIN }}-${{ hashFiles('Cargo.lock') }}
|
||||||
|
restore-keys: |
|
||||||
|
cargo-${{ env.MUSL_TARGET }}-${{ env.RUST_TOOLCHAIN }}-
|
||||||
|
cargo-${{ env.MUSL_TARGET }}-
|
||||||
|
|
||||||
|
# ── 质量检查(先于构建,失败即止)──────────────────────────────────
|
||||||
|
- name: fmt
|
||||||
|
run: cargo fmt -- --check
|
||||||
|
|
||||||
|
- name: clippy
|
||||||
|
run: cargo clippy --locked -- -D warnings
|
||||||
|
|
||||||
|
- name: test
|
||||||
|
run: cargo test --locked
|
||||||
|
|
||||||
|
# ── 构建(质量检查通过后才执行)────────────────────────────────────
|
||||||
|
- name: 构建 secrets-mcp (musl)
|
||||||
|
run: |
|
||||||
|
cargo build --release --locked --target "${MUSL_TARGET}" -p secrets-mcp
|
||||||
|
strip "target/${MUSL_TARGET}/release/${MCP_BINARY}"
|
||||||
|
|
||||||
|
- name: 上传构建产物
|
||||||
|
uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: ${{ env.MCP_BINARY }}-linux-musl
|
||||||
|
path: target/${{ env.MUSL_TARGET }}/release/${{ env.MCP_BINARY }}
|
||||||
|
retention-days: 3
|
||||||
|
|
||||||
|
# ── 创建 / 覆盖 Tag(构建成功后才打)───────────────────────────────
|
||||||
- name: 创建 Tag
|
- name: 创建 Tag
|
||||||
if: steps.ver.outputs.tag_exists == 'false'
|
|
||||||
run: |
|
run: |
|
||||||
git config user.name "github-actions[bot]"
|
git config user.name "github-actions[bot]"
|
||||||
git config user.email "github-actions[bot]@users.noreply.github.com"
|
git config user.email "github-actions[bot]@users.noreply.github.com"
|
||||||
git tag -a "${{ steps.ver.outputs.tag }}" -m "Release ${{ steps.ver.outputs.tag }}"
|
tag="${{ steps.ver.outputs.tag }}"
|
||||||
git push origin "${{ steps.ver.outputs.tag }}"
|
if [ "${{ steps.ver.outputs.tag_exists }}" = "true" ]; then
|
||||||
|
git tag -d "$tag" 2>/dev/null || true
|
||||||
|
git push origin ":refs/tags/$tag" 2>/dev/null || true
|
||||||
|
fi
|
||||||
|
git tag -a "$tag" -m "Release $tag"
|
||||||
|
git push origin "$tag"
|
||||||
|
|
||||||
- name: 解析或创建 Release
|
# ── Release(可选,需配置 RELEASE_TOKEN)───────────────────────────
|
||||||
id: release
|
- name: Upsert Release
|
||||||
|
if: env.RELEASE_TOKEN != ''
|
||||||
env:
|
env:
|
||||||
RELEASE_TOKEN: ${{ secrets.RELEASE_TOKEN }}
|
RELEASE_TOKEN: ${{ secrets.RELEASE_TOKEN }}
|
||||||
run: |
|
run: |
|
||||||
if [ -z "$RELEASE_TOKEN" ]; then
|
|
||||||
echo "release_id=" >> "$GITHUB_OUTPUT"
|
|
||||||
exit 0
|
|
||||||
fi
|
|
||||||
|
|
||||||
command -v jq >/dev/null 2>&1 || (sudo apt-get update -qq && sudo apt-get install -y -qq jq)
|
|
||||||
|
|
||||||
tag="${{ steps.ver.outputs.tag }}"
|
tag="${{ steps.ver.outputs.tag }}"
|
||||||
version="${{ steps.ver.outputs.version }}"
|
version="${{ steps.ver.outputs.version }}"
|
||||||
release_api="${{ github.server_url }}/api/v1/repos/${{ github.repository }}/releases"
|
api="${{ github.server_url }}/api/v1/repos/${{ github.repository }}/releases"
|
||||||
|
auth="Authorization: token $RELEASE_TOKEN"
|
||||||
|
|
||||||
http_code=$(curl -sS -o /tmp/release.json -w '%{http_code}' \
|
previous_tag=$(git tag --list 'secrets-mcp-*' --sort=-v:refname | awk -v t="$tag" '$0 != t { print; exit }')
|
||||||
-H "Authorization: token $RELEASE_TOKEN" \
|
|
||||||
"${release_api}/tags/${tag}")
|
|
||||||
|
|
||||||
if [ "$http_code" = "200" ]; then
|
|
||||||
release_id=$(jq -r '.id // empty' /tmp/release.json)
|
|
||||||
if [ -n "$release_id" ]; then
|
|
||||||
echo "已找到现有 Release: ${release_id}"
|
|
||||||
echo "release_id=${release_id}" >> "$GITHUB_OUTPUT"
|
|
||||||
exit 0
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
previous_tag="${{ steps.ver.outputs.previous_tag }}"
|
|
||||||
if [ -n "$previous_tag" ]; then
|
if [ -n "$previous_tag" ]; then
|
||||||
changes=$(git log --pretty=format:'- %s (%h)' "${previous_tag}..HEAD")
|
changes=$(git log --pretty=format:'- %s (%h)' "${previous_tag}..HEAD")
|
||||||
else
|
else
|
||||||
changes=$(git log --pretty=format:'- %s (%h)')
|
changes=$(git log --pretty=format:'- %s (%h)')
|
||||||
fi
|
fi
|
||||||
[ -z "$changes" ] && changes="- 首次发布"
|
[ -z "$changes" ] && changes="- 首次发布"
|
||||||
|
|
||||||
body=$(printf '## 变更日志\n\n%s' "$changes")
|
body=$(printf '## 变更日志\n\n%s' "$changes")
|
||||||
|
|
||||||
payload=$(jq -n \
|
# Upsert: 存在 → PATCH + 清旧 assets;不存在 → POST
|
||||||
--arg tag "$tag" \
|
release_id=$(curl -sS -H "$auth" "${api}/tags/${tag}" 2>/dev/null | jq -r '.id // empty')
|
||||||
--arg name "secrets-mcp ${version}" \
|
|
||||||
--arg body "$body" \
|
|
||||||
'{tag_name: $tag, name: $name, body: $body, draft: true}')
|
|
||||||
|
|
||||||
http_code=$(curl -sS -o /tmp/create-release.json -w '%{http_code}' \
|
|
||||||
-H "Authorization: token $RELEASE_TOKEN" \
|
|
||||||
-H "Content-Type: application/json" \
|
|
||||||
-X POST "$release_api" \
|
|
||||||
-d "$payload")
|
|
||||||
|
|
||||||
if [ "$http_code" = "201" ] || [ "$http_code" = "200" ]; then
|
|
||||||
release_id=$(jq -r '.id // empty' /tmp/create-release.json)
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ -n "$release_id" ]; then
|
if [ -n "$release_id" ]; then
|
||||||
echo "已创建草稿 Release: ${release_id}"
|
curl -sS -o /dev/null -H "$auth" -H "Content-Type: application/json" \
|
||||||
echo "release_id=${release_id}" >> "$GITHUB_OUTPUT"
|
-X PATCH "${api}/${release_id}" \
|
||||||
|
-d "$(jq -n --arg n "secrets-mcp ${version}" --arg b "$body" '{name:$n,body:$b,draft:false}')"
|
||||||
|
curl -sS -H "$auth" "${api}/${release_id}/assets" | \
|
||||||
|
jq -r '.[].id' | xargs -I{} curl -sS -o /dev/null -H "$auth" -X DELETE "${api}/${release_id}/assets/{}"
|
||||||
|
echo "已更新 Release ${release_id}"
|
||||||
else
|
else
|
||||||
echo "⚠ 创建 Release 失败 (HTTP ${http_code}),跳过产物上传"
|
release_id=$(curl -fsS -H "$auth" -H "Content-Type: application/json" \
|
||||||
cat /tmp/create-release.json 2>/dev/null || true
|
-X POST "$api" \
|
||||||
echo "release_id=" >> "$GITHUB_OUTPUT"
|
-d "$(jq -n --arg t "$tag" --arg n "secrets-mcp ${version}" --arg b "$body" \
|
||||||
|
'{tag_name:$t,name:$n,body:$b,draft:false}')" | jq -r '.id')
|
||||||
|
echo "已创建 Release ${release_id}"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
check:
|
bin="target/${MUSL_TARGET}/release/${MCP_BINARY}"
|
||||||
name: 质量检查 (fmt / clippy / test)
|
archive="${MCP_BINARY}-${tag}-x86_64-linux-musl.tar.gz"
|
||||||
needs: [version]
|
|
||||||
runs-on: debian
|
|
||||||
timeout-minutes: 15
|
|
||||||
steps:
|
|
||||||
- name: 安装 Rust
|
|
||||||
run: |
|
|
||||||
if ! command -v rustup >/dev/null 2>&1; then
|
|
||||||
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain "${RUST_TOOLCHAIN}"
|
|
||||||
echo "$HOME/.cargo/bin" >> "$GITHUB_PATH"
|
|
||||||
fi
|
|
||||||
source "$HOME/.cargo/env" 2>/dev/null || true
|
|
||||||
rustup toolchain install "${RUST_TOOLCHAIN}" --profile minimal --component rustfmt --component clippy
|
|
||||||
rustup default "${RUST_TOOLCHAIN}"
|
|
||||||
rustc -V
|
|
||||||
cargo -V
|
|
||||||
|
|
||||||
- uses: actions/checkout@v4
|
|
||||||
|
|
||||||
- name: 缓存 Cargo
|
|
||||||
uses: actions/cache@v4
|
|
||||||
with:
|
|
||||||
path: |
|
|
||||||
~/.cargo/registry/index
|
|
||||||
~/.cargo/registry/cache
|
|
||||||
~/.cargo/git/db
|
|
||||||
target
|
|
||||||
key: cargo-check-${{ hashFiles('Cargo.lock') }}
|
|
||||||
restore-keys: |
|
|
||||||
cargo-check-
|
|
||||||
|
|
||||||
- run: cargo fmt -- --check
|
|
||||||
- run: cargo clippy --locked -- -D warnings
|
|
||||||
- run: cargo test --locked
|
|
||||||
|
|
||||||
build-linux:
|
|
||||||
name: Build Linux (secrets-mcp, musl)
|
|
||||||
needs: [version, check]
|
|
||||||
runs-on: debian
|
|
||||||
timeout-minutes: 25
|
|
||||||
steps:
|
|
||||||
- name: 安装依赖
|
|
||||||
run: |
|
|
||||||
sudo apt-get update
|
|
||||||
sudo apt-get install -y pkg-config musl-tools binutils curl
|
|
||||||
if ! command -v rustup >/dev/null 2>&1; then
|
|
||||||
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain "${RUST_TOOLCHAIN}"
|
|
||||||
echo "$HOME/.cargo/bin" >> "$GITHUB_PATH"
|
|
||||||
fi
|
|
||||||
source "$HOME/.cargo/env" 2>/dev/null || true
|
|
||||||
rustup toolchain install "${RUST_TOOLCHAIN}" --profile minimal
|
|
||||||
rustup default "${RUST_TOOLCHAIN}"
|
|
||||||
rustup target add x86_64-unknown-linux-musl --toolchain "${RUST_TOOLCHAIN}"
|
|
||||||
rustc -V
|
|
||||||
cargo -V
|
|
||||||
|
|
||||||
- uses: actions/checkout@v4
|
|
||||||
|
|
||||||
- name: 缓存 Cargo
|
|
||||||
uses: actions/cache@v4
|
|
||||||
with:
|
|
||||||
path: |
|
|
||||||
~/.cargo/registry/index
|
|
||||||
~/.cargo/registry/cache
|
|
||||||
~/.cargo/git/db
|
|
||||||
target
|
|
||||||
key: cargo-x86_64-unknown-linux-musl-${{ hashFiles('Cargo.lock') }}
|
|
||||||
restore-keys: |
|
|
||||||
cargo-x86_64-unknown-linux-musl-
|
|
||||||
|
|
||||||
- name: 构建 secrets-mcp (musl)
|
|
||||||
run: |
|
|
||||||
cargo build --release --locked --target x86_64-unknown-linux-musl -p secrets-mcp
|
|
||||||
strip target/x86_64-unknown-linux-musl/release/${{ env.MCP_BINARY }}
|
|
||||||
|
|
||||||
- name: 上传 Release 产物
|
|
||||||
if: needs.version.outputs.release_id != ''
|
|
||||||
env:
|
|
||||||
RELEASE_TOKEN: ${{ secrets.RELEASE_TOKEN }}
|
|
||||||
run: |
|
|
||||||
[ -z "$RELEASE_TOKEN" ] && exit 0
|
|
||||||
tag="${{ needs.version.outputs.tag }}"
|
|
||||||
bin="target/x86_64-unknown-linux-musl/release/${{ env.MCP_BINARY }}"
|
|
||||||
archive="${{ env.MCP_BINARY }}-${tag}-x86_64-linux-musl.tar.gz"
|
|
||||||
tar -czf "$archive" -C "$(dirname "$bin")" "$(basename "$bin")"
|
tar -czf "$archive" -C "$(dirname "$bin")" "$(basename "$bin")"
|
||||||
sha256sum "$archive" > "${archive}.sha256"
|
sha256sum "$archive" > "${archive}.sha256"
|
||||||
release_url="${{ github.server_url }}/api/v1/repos/${{ github.repository }}/releases/${{ needs.version.outputs.release_id }}/assets"
|
curl -fsS -H "$auth" -F "attachment=@${archive}" "${api}/${release_id}/assets"
|
||||||
curl -fsS -H "Authorization: token $RELEASE_TOKEN" \
|
curl -fsS -H "$auth" -F "attachment=@${archive}.sha256" "${api}/${release_id}/assets"
|
||||||
-F "attachment=@${archive}" "$release_url"
|
echo "Release ${tag} 已发布"
|
||||||
curl -fsS -H "Authorization: token $RELEASE_TOKEN" \
|
|
||||||
-F "attachment=@${archive}.sha256" "$release_url"
|
|
||||||
|
|
||||||
|
# ── 飞书汇总通知 ─────────────────────────────────────────────────────
|
||||||
- name: 飞书通知
|
- name: 飞书通知
|
||||||
if: always()
|
if: always()
|
||||||
env:
|
env:
|
||||||
WEBHOOK_URL: ${{ vars.WEBHOOK_URL }}
|
WEBHOOK_URL: ${{ vars.WEBHOOK_URL }}
|
||||||
run: |
|
run: |
|
||||||
[ -z "$WEBHOOK_URL" ] && exit 0
|
[ -z "$WEBHOOK_URL" ] && exit 0
|
||||||
command -v jq >/dev/null 2>&1 || (sudo apt-get update -qq && sudo apt-get install -y -qq jq)
|
tag="${{ steps.ver.outputs.tag }}"
|
||||||
tag="${{ needs.version.outputs.tag }}"
|
commit="${{ github.event.head_commit.message }}"
|
||||||
commit=$(git log -1 --pretty=format:"%s" 2>/dev/null || echo "N/A")
|
[ -z "$commit" ] && commit="${{ github.sha }}"
|
||||||
url="${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_number }}"
|
url="${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_number }}"
|
||||||
result="${{ job.status }}"
|
result="${{ job.status }}"
|
||||||
if [ "$result" = "success" ]; then icon="✅"; else icon="❌"; fi
|
if [ "$result" = "success" ]; then icon="✅"; else icon="❌"; fi
|
||||||
msg="secrets-mcp linux 构建${icon}
|
msg="secrets-mcp 构建&发版 ${icon}
|
||||||
版本:${tag}
|
版本:${tag}
|
||||||
提交:${commit}
|
提交:${commit}
|
||||||
作者:${{ github.actor }}
|
作者:${{ github.actor }}
|
||||||
@@ -250,50 +187,21 @@ jobs:
|
|||||||
payload=$(jq -n --arg text "$msg" '{msg_type: "text", content: {text: $text}}')
|
payload=$(jq -n --arg text "$msg" '{msg_type: "text", content: {text: $text}}')
|
||||||
curl -sS -H "Content-Type: application/json" -X POST -d "$payload" "$WEBHOOK_URL"
|
curl -sS -H "Content-Type: application/json" -X POST -d "$payload" "$WEBHOOK_URL"
|
||||||
|
|
||||||
deploy-mcp:
|
deploy:
|
||||||
name: 部署 secrets-mcp
|
name: 部署 secrets-mcp
|
||||||
needs: [version, build-linux]
|
needs: [ci]
|
||||||
# 部署目标由仓库 Actions 配置:vars.DEPLOY_HOST / vars.DEPLOY_USER;私钥 secrets.DEPLOY_SSH_KEY(PEM 原文,勿 base64)
|
if: |
|
||||||
# (可用 scripts/setup-gitea-actions.sh 或 Gitea API 写入,勿写进本文件)
|
github.ref == 'refs/heads/main' ||
|
||||||
# Google OAuth / SERVER_MASTER_KEY / SECRETS_DATABASE_URL 等勿写入 CI,请在 ECS 上
|
github.ref == 'refs/heads/feat/mcp' ||
|
||||||
# /opt/secrets-mcp/.env 配置(见 deploy/.env.example)。
|
github.ref == 'refs/heads/mcp'
|
||||||
# 若仓库 main 仍为纯 CLI、仅 feat/mcp 含本 workflow,请去掉条件里的 main,避免误部署。
|
|
||||||
if: needs.build-linux.result == 'success' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/feat/mcp' || github.ref == 'refs/heads/mcp')
|
|
||||||
runs-on: debian
|
runs-on: debian
|
||||||
timeout-minutes: 10
|
timeout-minutes: 10
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- name: 下载构建产物
|
||||||
|
uses: actions/download-artifact@v3
|
||||||
- name: 安装 Rust
|
|
||||||
run: |
|
|
||||||
if ! command -v rustup >/dev/null 2>&1; then
|
|
||||||
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain "${RUST_TOOLCHAIN}"
|
|
||||||
echo "$HOME/.cargo/bin" >> "$GITHUB_PATH"
|
|
||||||
fi
|
|
||||||
source "$HOME/.cargo/env" 2>/dev/null || true
|
|
||||||
sudo apt-get update -qq && sudo apt-get install -y -qq pkg-config musl-tools
|
|
||||||
rustup toolchain install "${RUST_TOOLCHAIN}" --profile minimal
|
|
||||||
rustup default "${RUST_TOOLCHAIN}"
|
|
||||||
rustup target add x86_64-unknown-linux-musl --toolchain "${RUST_TOOLCHAIN}"
|
|
||||||
rustc -V
|
|
||||||
cargo -V
|
|
||||||
|
|
||||||
- name: 缓存 Cargo
|
|
||||||
uses: actions/cache@v4
|
|
||||||
with:
|
with:
|
||||||
path: |
|
name: ${{ env.MCP_BINARY }}-linux-musl
|
||||||
~/.cargo/registry/index
|
path: /tmp/artifact
|
||||||
~/.cargo/registry/cache
|
|
||||||
~/.cargo/git/db
|
|
||||||
target
|
|
||||||
key: cargo-x86_64-unknown-linux-musl-${{ hashFiles('Cargo.lock') }}
|
|
||||||
restore-keys: |
|
|
||||||
cargo-x86_64-unknown-linux-musl-
|
|
||||||
|
|
||||||
- name: 构建 secrets-mcp
|
|
||||||
run: |
|
|
||||||
cargo build --release --locked --target x86_64-unknown-linux-musl -p secrets-mcp
|
|
||||||
strip target/x86_64-unknown-linux-musl/release/${{ env.MCP_BINARY }}
|
|
||||||
|
|
||||||
- name: 部署到阿里云 ECS
|
- name: 部署到阿里云 ECS
|
||||||
env:
|
env:
|
||||||
@@ -302,16 +210,15 @@ jobs:
|
|||||||
DEPLOY_SSH_KEY: ${{ secrets.DEPLOY_SSH_KEY }}
|
DEPLOY_SSH_KEY: ${{ secrets.DEPLOY_SSH_KEY }}
|
||||||
run: |
|
run: |
|
||||||
if [ -z "$DEPLOY_HOST" ] || [ -z "$DEPLOY_USER" ] || [ -z "$DEPLOY_SSH_KEY" ]; then
|
if [ -z "$DEPLOY_HOST" ] || [ -z "$DEPLOY_USER" ] || [ -z "$DEPLOY_SSH_KEY" ]; then
|
||||||
echo "部署跳过:请在仓库 Actions 中配置 vars.DEPLOY_HOST、vars.DEPLOY_USER 与 secrets.DEPLOY_SSH_KEY"
|
echo "部署跳过:请配置 vars.DEPLOY_HOST、vars.DEPLOY_USER 与 secrets.DEPLOY_SSH_KEY"
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "$DEPLOY_SSH_KEY" > /tmp/deploy_key
|
echo "$DEPLOY_SSH_KEY" > /tmp/deploy_key
|
||||||
chmod 600 /tmp/deploy_key
|
chmod 600 /tmp/deploy_key
|
||||||
|
|
||||||
SCP="scp -i /tmp/deploy_key -o StrictHostKeyChecking=no"
|
scp -i /tmp/deploy_key -o StrictHostKeyChecking=no \
|
||||||
|
"/tmp/artifact/${MCP_BINARY}" \
|
||||||
$SCP target/x86_64-unknown-linux-musl/release/${{ env.MCP_BINARY }} \
|
|
||||||
"${DEPLOY_USER}@${DEPLOY_HOST}:/tmp/secrets-mcp.new"
|
"${DEPLOY_USER}@${DEPLOY_HOST}:/tmp/secrets-mcp.new"
|
||||||
|
|
||||||
ssh -i /tmp/deploy_key -o StrictHostKeyChecking=no "${DEPLOY_USER}@${DEPLOY_HOST}" "
|
ssh -i /tmp/deploy_key -o StrictHostKeyChecking=no "${DEPLOY_USER}@${DEPLOY_HOST}" "
|
||||||
@@ -321,7 +228,6 @@ jobs:
|
|||||||
sleep 2
|
sleep 2
|
||||||
sudo systemctl is-active secrets-mcp && echo '服务启动成功' || (sudo journalctl -u secrets-mcp -n 20 && exit 1)
|
sudo systemctl is-active secrets-mcp && echo '服务启动成功' || (sudo journalctl -u secrets-mcp -n 20 && exit 1)
|
||||||
"
|
"
|
||||||
|
|
||||||
rm -f /tmp/deploy_key
|
rm -f /tmp/deploy_key
|
||||||
|
|
||||||
- name: 飞书通知
|
- name: 飞书通知
|
||||||
@@ -330,94 +236,13 @@ jobs:
|
|||||||
WEBHOOK_URL: ${{ vars.WEBHOOK_URL }}
|
WEBHOOK_URL: ${{ vars.WEBHOOK_URL }}
|
||||||
run: |
|
run: |
|
||||||
[ -z "$WEBHOOK_URL" ] && exit 0
|
[ -z "$WEBHOOK_URL" ] && exit 0
|
||||||
command -v jq >/dev/null 2>&1 || (sudo apt-get update -qq && sudo apt-get install -y -qq jq)
|
tag="${{ needs.ci.outputs.tag }}"
|
||||||
tag="${{ needs.version.outputs.tag }}"
|
|
||||||
commit=$(git log -1 --pretty=format:"%s" 2>/dev/null || echo "N/A")
|
|
||||||
url="${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_number }}"
|
url="${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_number }}"
|
||||||
result="${{ job.status }}"
|
result="${{ job.status }}"
|
||||||
if [ "$result" = "success" ]; then icon="✅"; else icon="❌"; fi
|
if [ "$result" = "success" ]; then icon="✅"; else icon="❌"; fi
|
||||||
msg="secrets-mcp 部署${icon}
|
msg="secrets-mcp 部署 ${icon}
|
||||||
版本:${tag}
|
版本:${tag}
|
||||||
提交:${commit}
|
|
||||||
作者:${{ github.actor }}
|
作者:${{ github.actor }}
|
||||||
详情:${url}"
|
详情:${url}"
|
||||||
payload=$(jq -n --arg text "$msg" '{msg_type: "text", content: {text: $text}}')
|
payload=$(jq -n --arg text "$msg" '{msg_type: "text", content: {text: $text}}')
|
||||||
curl -sS -H "Content-Type: application/json" -X POST -d "$payload" "$WEBHOOK_URL"
|
curl -sS -H "Content-Type: application/json" -X POST -d "$payload" "$WEBHOOK_URL"
|
||||||
|
|
||||||
publish-release:
|
|
||||||
name: 发布草稿 Release
|
|
||||||
needs: [version, build-linux]
|
|
||||||
if: always() && needs.version.outputs.release_id != ''
|
|
||||||
runs-on: debian
|
|
||||||
timeout-minutes: 5
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v4
|
|
||||||
|
|
||||||
- name: 发布草稿
|
|
||||||
env:
|
|
||||||
RELEASE_TOKEN: ${{ secrets.RELEASE_TOKEN }}
|
|
||||||
run: |
|
|
||||||
[ -z "$RELEASE_TOKEN" ] && exit 0
|
|
||||||
|
|
||||||
linux_r="${{ needs.build-linux.result }}"
|
|
||||||
if [ "$linux_r" != "success" ]; then
|
|
||||||
echo "linux 构建未成功,保留草稿 Release"
|
|
||||||
exit 0
|
|
||||||
fi
|
|
||||||
|
|
||||||
release_api="${{ github.server_url }}/api/v1/repos/${{ github.repository }}/releases/${{ needs.version.outputs.release_id }}"
|
|
||||||
http_code=$(curl -sS -o /tmp/publish-release.json -w '%{http_code}' \
|
|
||||||
-H "Authorization: token $RELEASE_TOKEN" \
|
|
||||||
-H "Content-Type: application/json" \
|
|
||||||
-X PATCH "$release_api" \
|
|
||||||
-d '{"draft":false}')
|
|
||||||
|
|
||||||
if [ "$http_code" != "200" ]; then
|
|
||||||
echo "发布草稿 Release 失败 (HTTP ${http_code})"
|
|
||||||
cat /tmp/publish-release.json 2>/dev/null || true
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
echo "Release 已发布"
|
|
||||||
|
|
||||||
- name: 飞书汇总通知
|
|
||||||
if: always()
|
|
||||||
env:
|
|
||||||
WEBHOOK_URL: ${{ vars.WEBHOOK_URL }}
|
|
||||||
run: |
|
|
||||||
[ -z "$WEBHOOK_URL" ] && exit 0
|
|
||||||
command -v jq >/dev/null 2>&1 || (sudo apt-get update -qq && sudo apt-get install -y -qq jq)
|
|
||||||
|
|
||||||
tag="${{ needs.version.outputs.tag }}"
|
|
||||||
tag_exists="${{ needs.version.outputs.tag_exists }}"
|
|
||||||
commit="${{ github.event.head_commit.message }}"
|
|
||||||
[ -z "$commit" ] && commit="${{ github.sha }}"
|
|
||||||
url="${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_number }}"
|
|
||||||
|
|
||||||
linux_r="${{ needs.build-linux.result }}"
|
|
||||||
publish_r="${{ job.status }}"
|
|
||||||
|
|
||||||
icon() { case "$1" in success) echo "✅";; skipped) echo "⏭";; *) echo "❌";; esac; }
|
|
||||||
|
|
||||||
if [ "$linux_r" = "success" ] && [ "$publish_r" = "success" ]; then
|
|
||||||
status="发布成功 ✅"
|
|
||||||
elif [ "$linux_r" != "success" ]; then
|
|
||||||
status="构建失败 ❌"
|
|
||||||
else
|
|
||||||
status="发布失败 ❌"
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ "$tag_exists" = "false" ]; then
|
|
||||||
version_line="🆕 新版本 ${tag}"
|
|
||||||
else
|
|
||||||
version_line="🔄 重复构建 ${tag}"
|
|
||||||
fi
|
|
||||||
|
|
||||||
msg="secrets-mcp ${status}
|
|
||||||
${version_line}
|
|
||||||
linux $(icon "$linux_r") | Release $(icon "$publish_r")
|
|
||||||
提交:${commit}
|
|
||||||
作者:${{ github.actor }}
|
|
||||||
详情:${url}"
|
|
||||||
|
|
||||||
payload=$(jq -n --arg text "$msg" '{msg_type: "text", content: {text: $text}}')
|
|
||||||
curl -sS -H "Content-Type: application/json" -X POST -d "$payload" "$WEBHOOK_URL"
|
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
|
|
||||||
1. 涉及 `crates/**`、根目录 `Cargo.toml`/`Cargo.lock`、`secrets-mcp` 行为变更的提交,默认视为**需要发版**,除非明确说明「本次不发版」。
|
1. 涉及 `crates/**`、根目录 `Cargo.toml`/`Cargo.lock`、`secrets-mcp` 行为变更的提交,默认视为**需要发版**,除非明确说明「本次不发版」。
|
||||||
2. 发版前检查 `crates/secrets-mcp/Cargo.toml` 的 `version`,再查 tag:`git tag -l 'secrets-mcp-*'`。
|
2. 发版前检查 `crates/secrets-mcp/Cargo.toml` 的 `version`,再查 tag:`git tag -l 'secrets-mcp-*'`。
|
||||||
3. 若当前版本对应 tag 已存在,须先 bump `version`,再 `cargo build` 同步 `Cargo.lock` 后提交。
|
3. 若当前版本对应 tag 已存在,默认允许复用现有 tag 继续构建;仅在需要新的发布版本时再 bump `version` 并 `cargo build` 同步 `Cargo.lock`。
|
||||||
4. 提交前优先运行 `./scripts/release-check.sh`(版本/tag + `fmt` + `clippy --locked` + `test --locked`)。
|
4. 提交前优先运行 `./scripts/release-check.sh`(版本/tag + `fmt` + `clippy --locked` + `test --locked`)。
|
||||||
|
|
||||||
## 项目结构
|
## 项目结构
|
||||||
@@ -149,7 +149,7 @@ git tag -l 'secrets-mcp-*'
|
|||||||
## CI/CD
|
## CI/CD
|
||||||
|
|
||||||
- **触发**:任意分支 `push`,且路径含 `crates/**`、`deploy/**`、根目录 `Cargo.toml`、`Cargo.lock`(见 `.gitea/workflows/secrets.yml`)。
|
- **触发**:任意分支 `push`,且路径含 `crates/**`、`deploy/**`、根目录 `Cargo.toml`、`Cargo.lock`(见 `.gitea/workflows/secrets.yml`)。
|
||||||
- **版本与 tag**:从 `crates/secrets-mcp/Cargo.toml` 读版本;若远程已存在同名 `secrets-mcp-<version>` tag,**工作流失败**(须先 bump 版本并 `cargo build` 同步 `Cargo.lock`);否则由 CI 创建并推送该 tag。
|
- **版本与 tag**:从 `crates/secrets-mcp/Cargo.toml` 读版本;若远程已存在同名 `secrets-mcp-<version>` tag,则复用现有 tag 继续构建;否则由 CI 创建并推送该 tag。
|
||||||
- **质量与构建**:`fmt` / `clippy --locked` / `test --locked` → `x86_64-unknown-linux-musl` 发布构建 `secrets-mcp`。
|
- **质量与构建**:`fmt` / `clippy --locked` / `test --locked` → `x86_64-unknown-linux-musl` 发布构建 `secrets-mcp`。
|
||||||
- **Release(可选)**:`secrets.RELEASE_TOKEN`(Gitea PAT)用于创建草稿 Release、上传 `tar.gz` + `.sha256`、构建成功后发布;未配置则跳过 API Release,仅 tag + 构建。
|
- **Release(可选)**:`secrets.RELEASE_TOKEN`(Gitea PAT)用于创建草稿 Release、上传 `tar.gz` + `.sha256`、构建成功后发布;未配置则跳过 API Release,仅 tag + 构建。
|
||||||
- **部署(可选)**:仅 `main`、`feat/mcp`、`mcp` 分支在构建成功时跑 `deploy-mcp`;需 `vars.DEPLOY_HOST`、`vars.DEPLOY_USER`、`secrets.DEPLOY_SSH_KEY`。勿把 OAuth/DB 等写进 workflow,用 `deploy/.env.example` 在目标机配置。
|
- **部署(可选)**:仅 `main`、`feat/mcp`、`mcp` 分支在构建成功时跑 `deploy-mcp`;需 `vars.DEPLOY_HOST`、`vars.DEPLOY_USER`、`secrets.DEPLOY_SSH_KEY`。勿把 OAuth/DB 等写进 workflow,用 `deploy/.env.example` 在目标机配置。
|
||||||
|
|||||||
2
Cargo.lock
generated
2
Cargo.lock
generated
@@ -1949,7 +1949,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "secrets-mcp"
|
name = "secrets-mcp"
|
||||||
version = "0.1.2"
|
version = "0.1.9"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"askama",
|
"askama",
|
||||||
|
|||||||
@@ -165,7 +165,7 @@ deploy/ # systemd、.env 示例
|
|||||||
见 [`.gitea/workflows/secrets.yml`](.gitea/workflows/secrets.yml)。
|
见 [`.gitea/workflows/secrets.yml`](.gitea/workflows/secrets.yml)。
|
||||||
|
|
||||||
- **触发**:任意分支 `push`,且变更路径包含 `crates/**`、`deploy/**`、根目录 `Cargo.toml` / `Cargo.lock`。
|
- **触发**:任意分支 `push`,且变更路径包含 `crates/**`、`deploy/**`、根目录 `Cargo.toml` / `Cargo.lock`。
|
||||||
- **流水线**:解析 `crates/secrets-mcp/Cargo.toml` 版本 → **若 `secrets-mcp-<version>` 的 tag 已存在则整次运行失败**(避免重复发版)→ 否则自动打 tag → `cargo fmt` / `clippy --locked` / `test --locked` → 交叉编译 `x86_64-unknown-linux-musl` 的 `secrets-mcp`。
|
- **流水线**:解析 `crates/secrets-mcp/Cargo.toml` 版本 → 若 `secrets-mcp-<version>` 的 tag 已存在则**复用现有 tag 继续构建**,否则自动打 tag → `cargo fmt` / `clippy --locked` / `test --locked` → 交叉编译 `x86_64-unknown-linux-musl` 的 `secrets-mcp`。
|
||||||
- **Release(可选)**:配置仓库 Secret `RELEASE_TOKEN`(Gitea PAT,明文勿 base64)时,会通过 API 创建**草稿** Release、在 Linux 构建成功后上传 `tar.gz` 与 `.sha256`,再自动将草稿**正式发布**;未配置则跳过创建 Release 与产物上传,仅保留 tag 与构建结果。
|
- **Release(可选)**:配置仓库 Secret `RELEASE_TOKEN`(Gitea PAT,明文勿 base64)时,会通过 API 创建**草稿** Release、在 Linux 构建成功后上传 `tar.gz` 与 `.sha256`,再自动将草稿**正式发布**;未配置则跳过创建 Release 与产物上传,仅保留 tag 与构建结果。
|
||||||
- **部署(可选)**:仅在 `main`、`feat/mcp` 或 `mcp` 分支且构建成功时,若已配置 `vars.DEPLOY_HOST`、`vars.DEPLOY_USER` 与 `secrets.DEPLOY_SSH_KEY`,则 `deploy-mcp` 通过 SCP/SSH 更新目标机二进制并 `systemctl restart secrets-mcp`。
|
- **部署(可选)**:仅在 `main`、`feat/mcp` 或 `mcp` 分支且构建成功时,若已配置 `vars.DEPLOY_HOST`、`vars.DEPLOY_USER` 与 `secrets.DEPLOY_SSH_KEY`,则 `deploy-mcp` 通过 SCP/SSH 更新目标机二进制并 `systemctl restart secrets-mcp`。
|
||||||
- **通知(可选)**:`vars.WEBHOOK_URL` 为飞书 Webhook 时,构建/部署/发布节点会推送简要状态。
|
- **通知(可选)**:`vars.WEBHOOK_URL` 为飞书 Webhook 时,构建/部署/发布节点会推送简要状态。
|
||||||
|
|||||||
@@ -1,14 +1,59 @@
|
|||||||
use serde_json::Value;
|
use serde_json::{Value, json};
|
||||||
use sqlx::{Postgres, Transaction};
|
use sqlx::{PgPool, Postgres, Transaction};
|
||||||
|
use uuid::Uuid;
|
||||||
|
|
||||||
|
pub const ACTION_LOGIN: &str = "login";
|
||||||
|
pub const NAMESPACE_AUTH: &str = "auth";
|
||||||
|
|
||||||
/// Return the current OS user as the audit actor (falls back to empty string).
|
/// Return the current OS user as the audit actor (falls back to empty string).
|
||||||
pub fn current_actor() -> String {
|
pub fn current_actor() -> String {
|
||||||
std::env::var("USER").unwrap_or_default()
|
std::env::var("USER").unwrap_or_default()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn login_detail(provider: &str, client_ip: Option<&str>, user_agent: Option<&str>) -> Value {
|
||||||
|
json!({
|
||||||
|
"provider": provider,
|
||||||
|
"client_ip": client_ip,
|
||||||
|
"user_agent": user_agent,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Write a login audit entry without requiring an explicit transaction.
|
||||||
|
pub async fn log_login(
|
||||||
|
pool: &PgPool,
|
||||||
|
kind: &str,
|
||||||
|
provider: &str,
|
||||||
|
user_id: Uuid,
|
||||||
|
client_ip: Option<&str>,
|
||||||
|
user_agent: Option<&str>,
|
||||||
|
) {
|
||||||
|
let actor = current_actor();
|
||||||
|
let detail = login_detail(provider, client_ip, user_agent);
|
||||||
|
let result: Result<_, sqlx::Error> = sqlx::query(
|
||||||
|
"INSERT INTO audit_log (user_id, action, namespace, kind, name, detail, actor) \
|
||||||
|
VALUES ($1, $2, $3, $4, $5, $6, $7)",
|
||||||
|
)
|
||||||
|
.bind(user_id)
|
||||||
|
.bind(ACTION_LOGIN)
|
||||||
|
.bind(NAMESPACE_AUTH)
|
||||||
|
.bind(kind)
|
||||||
|
.bind(provider)
|
||||||
|
.bind(&detail)
|
||||||
|
.bind(&actor)
|
||||||
|
.execute(pool)
|
||||||
|
.await;
|
||||||
|
|
||||||
|
if let Err(e) = result {
|
||||||
|
tracing::warn!(error = %e, kind, provider, "failed to write login audit log");
|
||||||
|
} else {
|
||||||
|
tracing::debug!(kind, provider, ?user_id, actor, "login audit logged");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// Write an audit entry within an existing transaction.
|
/// Write an audit entry within an existing transaction.
|
||||||
pub async fn log_tx(
|
pub async fn log_tx(
|
||||||
tx: &mut Transaction<'_, Postgres>,
|
tx: &mut Transaction<'_, Postgres>,
|
||||||
|
user_id: Option<Uuid>,
|
||||||
action: &str,
|
action: &str,
|
||||||
namespace: &str,
|
namespace: &str,
|
||||||
kind: &str,
|
kind: &str,
|
||||||
@@ -17,9 +62,10 @@ pub async fn log_tx(
|
|||||||
) {
|
) {
|
||||||
let actor = current_actor();
|
let actor = current_actor();
|
||||||
let result: Result<_, sqlx::Error> = sqlx::query(
|
let result: Result<_, sqlx::Error> = sqlx::query(
|
||||||
"INSERT INTO audit_log (action, namespace, kind, name, detail, actor) \
|
"INSERT INTO audit_log (user_id, action, namespace, kind, name, detail, actor) \
|
||||||
VALUES ($1, $2, $3, $4, $5, $6)",
|
VALUES ($1, $2, $3, $4, $5, $6, $7)",
|
||||||
)
|
)
|
||||||
|
.bind(user_id)
|
||||||
.bind(action)
|
.bind(action)
|
||||||
.bind(namespace)
|
.bind(namespace)
|
||||||
.bind(kind)
|
.bind(kind)
|
||||||
@@ -35,3 +81,17 @@ pub async fn log_tx(
|
|||||||
tracing::debug!(action, namespace, kind, name, actor, "audit logged");
|
tracing::debug!(action, namespace, kind, name, actor, "audit logged");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[cfg(test)]
|
||||||
|
mod tests {
|
||||||
|
use super::*;
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn login_detail_includes_expected_fields() {
|
||||||
|
let detail = login_detail("google", Some("127.0.0.1"), Some("Mozilla/5.0"));
|
||||||
|
|
||||||
|
assert_eq!(detail["provider"], "google");
|
||||||
|
assert_eq!(detail["client_ip"], "127.0.0.1");
|
||||||
|
assert_eq!(detail["user_agent"], "Mozilla/5.0");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
@@ -67,6 +67,7 @@ pub async fn migrate(pool: &PgPool) -> Result<()> {
|
|||||||
-- ── audit_log: append-only operation log ─────────────────────────────────
|
-- ── audit_log: append-only operation log ─────────────────────────────────
|
||||||
CREATE TABLE IF NOT EXISTS audit_log (
|
CREATE TABLE IF NOT EXISTS audit_log (
|
||||||
id BIGINT GENERATED ALWAYS AS IDENTITY PRIMARY KEY,
|
id BIGINT GENERATED ALWAYS AS IDENTITY PRIMARY KEY,
|
||||||
|
user_id UUID,
|
||||||
action VARCHAR(32) NOT NULL,
|
action VARCHAR(32) NOT NULL,
|
||||||
namespace VARCHAR(64) NOT NULL,
|
namespace VARCHAR(64) NOT NULL,
|
||||||
kind VARCHAR(64) NOT NULL,
|
kind VARCHAR(64) NOT NULL,
|
||||||
@@ -78,6 +79,7 @@ pub async fn migrate(pool: &PgPool) -> Result<()> {
|
|||||||
|
|
||||||
CREATE INDEX IF NOT EXISTS idx_audit_log_created ON audit_log(created_at DESC);
|
CREATE INDEX IF NOT EXISTS idx_audit_log_created ON audit_log(created_at DESC);
|
||||||
CREATE INDEX IF NOT EXISTS idx_audit_log_ns_kind ON audit_log(namespace, kind);
|
CREATE INDEX IF NOT EXISTS idx_audit_log_ns_kind ON audit_log(namespace, kind);
|
||||||
|
CREATE INDEX IF NOT EXISTS idx_audit_log_user_id ON audit_log(user_id) WHERE user_id IS NOT NULL;
|
||||||
|
|
||||||
-- ── entries_history ───────────────────────────────────────────────────────
|
-- ── entries_history ───────────────────────────────────────────────────────
|
||||||
CREATE TABLE IF NOT EXISTS entries_history (
|
CREATE TABLE IF NOT EXISTS entries_history (
|
||||||
|
|||||||
@@ -174,6 +174,20 @@ pub struct OauthAccount {
|
|||||||
pub created_at: DateTime<Utc>,
|
pub created_at: DateTime<Utc>,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// A single audit log row, optionally scoped to a business user.
|
||||||
|
#[derive(Debug, Serialize, Deserialize, sqlx::FromRow)]
|
||||||
|
pub struct AuditLogEntry {
|
||||||
|
pub id: i64,
|
||||||
|
pub user_id: Option<Uuid>,
|
||||||
|
pub action: String,
|
||||||
|
pub namespace: String,
|
||||||
|
pub kind: String,
|
||||||
|
pub name: String,
|
||||||
|
pub detail: Value,
|
||||||
|
pub actor: String,
|
||||||
|
pub created_at: DateTime<Utc>,
|
||||||
|
}
|
||||||
|
|
||||||
// ── TOML ↔ JSON value conversion ──────────────────────────────────────────────
|
// ── TOML ↔ JSON value conversion ──────────────────────────────────────────────
|
||||||
|
|
||||||
/// Convert a serde_json Value to a toml Value.
|
/// Convert a serde_json Value to a toml Value.
|
||||||
|
|||||||
@@ -346,6 +346,7 @@ pub async fn run(pool: &PgPool, params: AddParams<'_>, master_key: &[u8; 32]) ->
|
|||||||
|
|
||||||
crate::audit::log_tx(
|
crate::audit::log_tx(
|
||||||
&mut tx,
|
&mut tx,
|
||||||
|
params.user_id,
|
||||||
"add",
|
"add",
|
||||||
params.namespace,
|
params.namespace,
|
||||||
params.kind,
|
params.kind,
|
||||||
|
|||||||
23
crates/secrets-core/src/service/audit_log.rs
Normal file
23
crates/secrets-core/src/service/audit_log.rs
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
use anyhow::Result;
|
||||||
|
use sqlx::PgPool;
|
||||||
|
use uuid::Uuid;
|
||||||
|
|
||||||
|
use crate::models::AuditLogEntry;
|
||||||
|
|
||||||
|
pub async fn list_for_user(pool: &PgPool, user_id: Uuid, limit: i64) -> Result<Vec<AuditLogEntry>> {
|
||||||
|
let limit = limit.clamp(1, 200);
|
||||||
|
|
||||||
|
let rows = sqlx::query_as(
|
||||||
|
"SELECT id, user_id, action, namespace, kind, name, detail, actor, created_at \
|
||||||
|
FROM audit_log \
|
||||||
|
WHERE user_id = $1 \
|
||||||
|
ORDER BY created_at DESC, id DESC \
|
||||||
|
LIMIT $2",
|
||||||
|
)
|
||||||
|
.bind(user_id)
|
||||||
|
.bind(limit)
|
||||||
|
.fetch_all(pool)
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
Ok(rows)
|
||||||
|
}
|
||||||
@@ -137,7 +137,7 @@ async fn delete_one(
|
|||||||
};
|
};
|
||||||
|
|
||||||
snapshot_and_delete(&mut tx, namespace, kind, name, &row, user_id).await?;
|
snapshot_and_delete(&mut tx, namespace, kind, name, &row, user_id).await?;
|
||||||
crate::audit::log_tx(&mut tx, "delete", namespace, kind, name, json!({})).await;
|
crate::audit::log_tx(&mut tx, user_id, "delete", namespace, kind, name, json!({})).await;
|
||||||
tx.commit().await?;
|
tx.commit().await?;
|
||||||
|
|
||||||
Ok(DeleteResult {
|
Ok(DeleteResult {
|
||||||
@@ -240,6 +240,7 @@ async fn delete_bulk(
|
|||||||
.await?;
|
.await?;
|
||||||
crate::audit::log_tx(
|
crate::audit::log_tx(
|
||||||
&mut tx,
|
&mut tx,
|
||||||
|
user_id,
|
||||||
"delete",
|
"delete",
|
||||||
namespace,
|
namespace,
|
||||||
&row.kind,
|
&row.kind,
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
pub mod add;
|
pub mod add;
|
||||||
pub mod api_key;
|
pub mod api_key;
|
||||||
|
pub mod audit_log;
|
||||||
pub mod delete;
|
pub mod delete;
|
||||||
pub mod env_map;
|
pub mod env_map;
|
||||||
pub mod export;
|
pub mod export;
|
||||||
|
|||||||
@@ -274,6 +274,7 @@ pub async fn run(
|
|||||||
|
|
||||||
crate::audit::log_tx(
|
crate::audit::log_tx(
|
||||||
&mut tx,
|
&mut tx,
|
||||||
|
user_id,
|
||||||
"rollback",
|
"rollback",
|
||||||
namespace,
|
namespace,
|
||||||
kind,
|
kind,
|
||||||
|
|||||||
@@ -241,6 +241,7 @@ pub async fn run(
|
|||||||
|
|
||||||
crate::audit::log_tx(
|
crate::audit::log_tx(
|
||||||
&mut tx,
|
&mut tx,
|
||||||
|
params.user_id,
|
||||||
"update",
|
"update",
|
||||||
params.namespace,
|
params.namespace,
|
||||||
params.kind,
|
params.kind,
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "secrets-mcp"
|
name = "secrets-mcp"
|
||||||
version = "0.1.2"
|
version = "0.1.9"
|
||||||
edition.workspace = true
|
edition.workspace = true
|
||||||
|
|
||||||
[[bin]]
|
[[bin]]
|
||||||
|
|||||||
@@ -1,9 +1,12 @@
|
|||||||
use askama::Template;
|
use askama::Template;
|
||||||
|
use chrono::SecondsFormat;
|
||||||
|
use std::net::SocketAddr;
|
||||||
|
|
||||||
use axum::{
|
use axum::{
|
||||||
Json, Router,
|
Json, Router,
|
||||||
body::Body,
|
body::Body,
|
||||||
extract::{Path, Query, State},
|
extract::{ConnectInfo, Path, Query, State},
|
||||||
http::{StatusCode, header},
|
http::{HeaderMap, StatusCode, header},
|
||||||
response::{Html, IntoResponse, Redirect, Response},
|
response::{Html, IntoResponse, Redirect, Response},
|
||||||
routing::{get, post},
|
routing::{get, post},
|
||||||
};
|
};
|
||||||
@@ -11,9 +14,11 @@ use serde::{Deserialize, Serialize};
|
|||||||
use tower_sessions::Session;
|
use tower_sessions::Session;
|
||||||
use uuid::Uuid;
|
use uuid::Uuid;
|
||||||
|
|
||||||
|
use secrets_core::audit::log_login;
|
||||||
use secrets_core::crypto::hex;
|
use secrets_core::crypto::hex;
|
||||||
use secrets_core::service::{
|
use secrets_core::service::{
|
||||||
api_key::{ensure_api_key, regenerate_api_key},
|
api_key::{ensure_api_key, regenerate_api_key},
|
||||||
|
audit_log::list_for_user,
|
||||||
user::{
|
user::{
|
||||||
OAuthProfile, bind_oauth_account, find_or_create_user, get_user_by_id,
|
OAuthProfile, bind_oauth_account, find_or_create_user, get_user_by_id,
|
||||||
unbind_oauth_account, update_user_key_setup,
|
unbind_oauth_account, update_user_key_setup,
|
||||||
@@ -47,6 +52,23 @@ struct DashboardTemplate {
|
|||||||
version: &'static str,
|
version: &'static str,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[derive(Template)]
|
||||||
|
#[template(path = "audit.html")]
|
||||||
|
struct AuditPageTemplate {
|
||||||
|
user_name: String,
|
||||||
|
user_email: String,
|
||||||
|
entries: Vec<AuditEntryView>,
|
||||||
|
version: &'static str,
|
||||||
|
}
|
||||||
|
|
||||||
|
struct AuditEntryView {
|
||||||
|
/// RFC3339 UTC for `<time datetime>`; rendered as browser-local in audit.html.
|
||||||
|
created_at_iso: String,
|
||||||
|
action: String,
|
||||||
|
target: String,
|
||||||
|
detail: String,
|
||||||
|
}
|
||||||
|
|
||||||
// ── App state helpers ─────────────────────────────────────────────────────────
|
// ── App state helpers ─────────────────────────────────────────────────────────
|
||||||
|
|
||||||
fn google_cfg(state: &AppState) -> Option<&OAuthConfig> {
|
fn google_cfg(state: &AppState) -> Option<&OAuthConfig> {
|
||||||
@@ -62,6 +84,30 @@ async fn current_user_id(session: &Session) -> Option<Uuid> {
|
|||||||
.and_then(|s| Uuid::parse_str(&s).ok())
|
.and_then(|s| Uuid::parse_str(&s).ok())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn request_client_ip(headers: &HeaderMap, connect_info: ConnectInfo<SocketAddr>) -> Option<String> {
|
||||||
|
if let Some(first) = headers
|
||||||
|
.get("x-forwarded-for")
|
||||||
|
.and_then(|v| v.to_str().ok())
|
||||||
|
.and_then(|s| s.split(',').next())
|
||||||
|
{
|
||||||
|
let value = first.trim();
|
||||||
|
if !value.is_empty() {
|
||||||
|
return Some(value.to_string());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Some(connect_info.ip().to_string())
|
||||||
|
}
|
||||||
|
|
||||||
|
fn request_user_agent(headers: &HeaderMap) -> Option<String> {
|
||||||
|
headers
|
||||||
|
.get(header::USER_AGENT)
|
||||||
|
.and_then(|value| value.to_str().ok())
|
||||||
|
.map(str::trim)
|
||||||
|
.filter(|value| !value.is_empty())
|
||||||
|
.map(ToOwned::to_owned)
|
||||||
|
}
|
||||||
|
|
||||||
// ── Routes ────────────────────────────────────────────────────────────────────
|
// ── Routes ────────────────────────────────────────────────────────────────────
|
||||||
|
|
||||||
pub fn web_router() -> Router<AppState> {
|
pub fn web_router() -> Router<AppState> {
|
||||||
@@ -76,6 +122,7 @@ pub fn web_router() -> Router<AppState> {
|
|||||||
.route("/auth/google/callback", get(auth_google_callback))
|
.route("/auth/google/callback", get(auth_google_callback))
|
||||||
.route("/auth/logout", post(auth_logout))
|
.route("/auth/logout", post(auth_logout))
|
||||||
.route("/dashboard", get(dashboard))
|
.route("/dashboard", get(dashboard))
|
||||||
|
.route("/audit", get(audit_page))
|
||||||
.route("/account/bind/google", get(account_bind_google))
|
.route("/account/bind/google", get(account_bind_google))
|
||||||
.route(
|
.route(
|
||||||
"/account/bind/google/callback",
|
"/account/bind/google/callback",
|
||||||
@@ -141,16 +188,28 @@ struct OAuthCallbackQuery {
|
|||||||
|
|
||||||
async fn auth_google_callback(
|
async fn auth_google_callback(
|
||||||
State(state): State<AppState>,
|
State(state): State<AppState>,
|
||||||
|
connect_info: ConnectInfo<SocketAddr>,
|
||||||
|
headers: HeaderMap,
|
||||||
session: Session,
|
session: Session,
|
||||||
Query(params): Query<OAuthCallbackQuery>,
|
Query(params): Query<OAuthCallbackQuery>,
|
||||||
) -> Result<Response, StatusCode> {
|
) -> Result<Response, StatusCode> {
|
||||||
handle_oauth_callback(&state, &session, params, "google", |s, cfg, code| {
|
let client_ip = request_client_ip(&headers, connect_info);
|
||||||
Box::pin(crate::oauth::google::exchange_code(
|
let user_agent = request_user_agent(&headers);
|
||||||
&s.http_client,
|
handle_oauth_callback(
|
||||||
cfg,
|
&state,
|
||||||
code,
|
&session,
|
||||||
))
|
params,
|
||||||
})
|
"google",
|
||||||
|
client_ip.as_deref(),
|
||||||
|
user_agent.as_deref(),
|
||||||
|
|s, cfg, code| {
|
||||||
|
Box::pin(crate::oauth::google::exchange_code(
|
||||||
|
&s.http_client,
|
||||||
|
cfg,
|
||||||
|
code,
|
||||||
|
))
|
||||||
|
},
|
||||||
|
)
|
||||||
.await
|
.await
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -161,6 +220,8 @@ async fn handle_oauth_callback<F>(
|
|||||||
session: &Session,
|
session: &Session,
|
||||||
params: OAuthCallbackQuery,
|
params: OAuthCallbackQuery,
|
||||||
provider: &str,
|
provider: &str,
|
||||||
|
client_ip: Option<&str>,
|
||||||
|
user_agent: Option<&str>,
|
||||||
exchange_fn: F,
|
exchange_fn: F,
|
||||||
) -> Result<Response, StatusCode>
|
) -> Result<Response, StatusCode>
|
||||||
where
|
where
|
||||||
@@ -274,6 +335,16 @@ where
|
|||||||
.await
|
.await
|
||||||
.map_err(|_| StatusCode::INTERNAL_SERVER_ERROR)?;
|
.map_err(|_| StatusCode::INTERNAL_SERVER_ERROR)?;
|
||||||
|
|
||||||
|
log_login(
|
||||||
|
&state.pool,
|
||||||
|
"oauth",
|
||||||
|
provider,
|
||||||
|
user.id,
|
||||||
|
client_ip,
|
||||||
|
user_agent,
|
||||||
|
)
|
||||||
|
.await;
|
||||||
|
|
||||||
Ok(Redirect::to("/dashboard").into_response())
|
Ok(Redirect::to("/dashboard").into_response())
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -313,6 +384,49 @@ async fn dashboard(
|
|||||||
render_template(tmpl)
|
render_template(tmpl)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async fn audit_page(
|
||||||
|
State(state): State<AppState>,
|
||||||
|
session: Session,
|
||||||
|
) -> Result<Response, StatusCode> {
|
||||||
|
let Some(user_id) = current_user_id(&session).await else {
|
||||||
|
return Ok(Redirect::to("/").into_response());
|
||||||
|
};
|
||||||
|
|
||||||
|
let user = match get_user_by_id(&state.pool, user_id)
|
||||||
|
.await
|
||||||
|
.map_err(|_| StatusCode::INTERNAL_SERVER_ERROR)?
|
||||||
|
{
|
||||||
|
Some(u) => u,
|
||||||
|
None => return Ok(Redirect::to("/").into_response()),
|
||||||
|
};
|
||||||
|
|
||||||
|
let rows = list_for_user(&state.pool, user_id, 100)
|
||||||
|
.await
|
||||||
|
.map_err(|e| {
|
||||||
|
tracing::error!(error = %e, "failed to load audit log for user");
|
||||||
|
StatusCode::INTERNAL_SERVER_ERROR
|
||||||
|
})?;
|
||||||
|
|
||||||
|
let entries = rows
|
||||||
|
.into_iter()
|
||||||
|
.map(|row| AuditEntryView {
|
||||||
|
created_at_iso: row.created_at.to_rfc3339_opts(SecondsFormat::Secs, true),
|
||||||
|
action: row.action,
|
||||||
|
target: format_audit_target(&row.namespace, &row.kind, &row.name),
|
||||||
|
detail: serde_json::to_string_pretty(&row.detail).unwrap_or_else(|_| "{}".to_string()),
|
||||||
|
})
|
||||||
|
.collect();
|
||||||
|
|
||||||
|
let tmpl = AuditPageTemplate {
|
||||||
|
user_name: user.name.clone(),
|
||||||
|
user_email: user.email.clone().unwrap_or_default(),
|
||||||
|
entries,
|
||||||
|
version: env!("CARGO_PKG_VERSION"),
|
||||||
|
};
|
||||||
|
|
||||||
|
render_template(tmpl)
|
||||||
|
}
|
||||||
|
|
||||||
// ── Account bind/unbind ───────────────────────────────────────────────────────
|
// ── Account bind/unbind ───────────────────────────────────────────────────────
|
||||||
|
|
||||||
async fn account_bind_google(
|
async fn account_bind_google(
|
||||||
@@ -342,16 +456,28 @@ async fn account_bind_google(
|
|||||||
|
|
||||||
async fn account_bind_google_callback(
|
async fn account_bind_google_callback(
|
||||||
State(state): State<AppState>,
|
State(state): State<AppState>,
|
||||||
|
connect_info: ConnectInfo<SocketAddr>,
|
||||||
|
headers: HeaderMap,
|
||||||
session: Session,
|
session: Session,
|
||||||
Query(params): Query<OAuthCallbackQuery>,
|
Query(params): Query<OAuthCallbackQuery>,
|
||||||
) -> Result<Response, StatusCode> {
|
) -> Result<Response, StatusCode> {
|
||||||
handle_oauth_callback(&state, &session, params, "google", |s, cfg, code| {
|
let client_ip = request_client_ip(&headers, connect_info);
|
||||||
Box::pin(crate::oauth::google::exchange_code(
|
let user_agent = request_user_agent(&headers);
|
||||||
&s.http_client,
|
handle_oauth_callback(
|
||||||
cfg,
|
&state,
|
||||||
code,
|
&session,
|
||||||
))
|
params,
|
||||||
})
|
"google",
|
||||||
|
client_ip.as_deref(),
|
||||||
|
user_agent.as_deref(),
|
||||||
|
|s, cfg, code| {
|
||||||
|
Box::pin(crate::oauth::google::exchange_code(
|
||||||
|
&s.http_client,
|
||||||
|
cfg,
|
||||||
|
code,
|
||||||
|
))
|
||||||
|
},
|
||||||
|
)
|
||||||
.await
|
.await
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -514,3 +640,11 @@ fn render_template<T: Template>(tmpl: T) -> Result<Response, StatusCode> {
|
|||||||
})?;
|
})?;
|
||||||
Ok(Html(html).into_response())
|
Ok(Html(html).into_response())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn format_audit_target(namespace: &str, kind: &str, name: &str) -> String {
|
||||||
|
if namespace == "auth" {
|
||||||
|
format!("{}/{}", kind, name)
|
||||||
|
} else {
|
||||||
|
format!("[{}/{}] {}", namespace, kind, name)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
154
crates/secrets-mcp/templates/audit.html
Normal file
154
crates/secrets-mcp/templates/audit.html
Normal file
@@ -0,0 +1,154 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="zh-CN">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<link rel="icon" href="/favicon.svg?v={{ version }}" type="image/svg+xml">
|
||||||
|
<title>Secrets — Audit</title>
|
||||||
|
<style>
|
||||||
|
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
|
||||||
|
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;600&family=Inter:wght@400;500;600&display=swap');
|
||||||
|
:root {
|
||||||
|
--bg: #0d1117; --surface: #161b22; --surface2: #21262d;
|
||||||
|
--border: #30363d; --text: #e6edf3; --text-muted: #8b949e;
|
||||||
|
--accent: #58a6ff; --accent-hover: #79b8ff;
|
||||||
|
}
|
||||||
|
body { background: var(--bg); color: var(--text); font-family: 'Inter', sans-serif; min-height: 100vh; }
|
||||||
|
.layout { display: flex; min-height: 100vh; }
|
||||||
|
.sidebar {
|
||||||
|
width: 220px; flex-shrink: 0; background: var(--surface); border-right: 1px solid var(--border);
|
||||||
|
padding: 24px 16px; display: flex; flex-direction: column; gap: 20px;
|
||||||
|
}
|
||||||
|
.sidebar-logo { font-family: 'JetBrains Mono', monospace; font-size: 16px; font-weight: 600;
|
||||||
|
color: var(--text); text-decoration: none; padding: 0 10px; }
|
||||||
|
.sidebar-logo span { color: var(--accent); }
|
||||||
|
.sidebar-menu { display: flex; flex-direction: column; gap: 6px; }
|
||||||
|
.sidebar-link {
|
||||||
|
padding: 10px 12px; border-radius: 8px; color: var(--text-muted); text-decoration: none;
|
||||||
|
border: 1px solid transparent; font-size: 13px; font-weight: 500;
|
||||||
|
}
|
||||||
|
.sidebar-link:hover { background: var(--surface2); color: var(--text); }
|
||||||
|
.sidebar-link.active {
|
||||||
|
background: rgba(88,166,255,0.12); color: var(--text); border-color: rgba(88,166,255,0.35);
|
||||||
|
}
|
||||||
|
.content-shell { flex: 1; min-width: 0; display: flex; flex-direction: column; }
|
||||||
|
.topbar {
|
||||||
|
background: var(--surface); border-bottom: 1px solid var(--border); padding: 0 24px;
|
||||||
|
display: flex; align-items: center; gap: 12px; min-height: 52px;
|
||||||
|
}
|
||||||
|
.topbar-spacer { flex: 1; }
|
||||||
|
.nav-user { font-size: 13px; color: var(--text-muted); }
|
||||||
|
.btn-sign-out {
|
||||||
|
padding: 5px 12px; border-radius: 6px; border: 1px solid var(--border);
|
||||||
|
background: none; color: var(--text); font-size: 12px; text-decoration: none; cursor: pointer;
|
||||||
|
}
|
||||||
|
.btn-sign-out:hover { background: var(--surface2); }
|
||||||
|
.main { padding: 32px 24px 40px; flex: 1; }
|
||||||
|
.card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px;
|
||||||
|
padding: 24px; width: 100%; max-width: 1180px; margin: 0 auto; }
|
||||||
|
.card-title { font-size: 20px; font-weight: 600; margin-bottom: 8px; }
|
||||||
|
.card-subtitle { color: var(--text-muted); font-size: 13px; margin-bottom: 20px; }
|
||||||
|
.empty { color: var(--text-muted); font-size: 14px; padding: 20px 0; }
|
||||||
|
table { width: 100%; border-collapse: collapse; }
|
||||||
|
th, td { text-align: left; vertical-align: top; padding: 12px 10px; border-top: 1px solid var(--border); }
|
||||||
|
th { color: var(--text-muted); font-size: 12px; font-weight: 600; }
|
||||||
|
td { font-size: 13px; }
|
||||||
|
.mono { font-family: 'JetBrains Mono', monospace; }
|
||||||
|
.detail {
|
||||||
|
background: var(--bg); border: 1px solid var(--border); border-radius: 8px;
|
||||||
|
padding: 10px; white-space: pre-wrap; word-break: break-word; font-size: 12px;
|
||||||
|
max-width: 460px;
|
||||||
|
}
|
||||||
|
@media (max-width: 900px) {
|
||||||
|
.layout { flex-direction: column; }
|
||||||
|
.sidebar {
|
||||||
|
width: 100%; border-right: none; border-bottom: 1px solid var(--border);
|
||||||
|
padding: 16px; gap: 14px;
|
||||||
|
}
|
||||||
|
.sidebar-menu { flex-direction: row; }
|
||||||
|
.sidebar-link { flex: 1; text-align: center; }
|
||||||
|
.main { padding: 20px 12px 28px; }
|
||||||
|
.card { padding: 16px; }
|
||||||
|
.topbar { padding: 12px 16px; flex-wrap: wrap; }
|
||||||
|
table, thead, tbody, th, td, tr { display: block; }
|
||||||
|
thead { display: none; }
|
||||||
|
tr { border-top: 1px solid var(--border); padding: 12px 0; }
|
||||||
|
td { border-top: none; padding: 6px 0; }
|
||||||
|
td::before {
|
||||||
|
display: block; color: var(--text-muted); font-size: 11px;
|
||||||
|
margin-bottom: 4px; text-transform: uppercase;
|
||||||
|
}
|
||||||
|
td.col-time::before { content: "Time"; }
|
||||||
|
td.col-action::before { content: "Action"; }
|
||||||
|
td.col-target::before { content: "Target"; }
|
||||||
|
td.col-detail::before { content: "Detail"; }
|
||||||
|
.detail { max-width: none; }
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="layout">
|
||||||
|
<aside class="sidebar">
|
||||||
|
<a href="/dashboard" class="sidebar-logo"><span>secrets</span></a>
|
||||||
|
<nav class="sidebar-menu">
|
||||||
|
<a href="/dashboard" class="sidebar-link">MCP</a>
|
||||||
|
<a href="/audit" class="sidebar-link active">审计</a>
|
||||||
|
</nav>
|
||||||
|
</aside>
|
||||||
|
|
||||||
|
<div class="content-shell">
|
||||||
|
<div class="topbar">
|
||||||
|
<span class="topbar-spacer"></span>
|
||||||
|
<span class="nav-user">{{ user_name }}{% if !user_email.is_empty() %} · {{ user_email }}{% endif %}</span>
|
||||||
|
<form action="/auth/logout" method="post" style="display:inline">
|
||||||
|
<button type="submit" class="btn-sign-out">退出</button>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<main class="main">
|
||||||
|
<section class="card">
|
||||||
|
<div class="card-title">我的审计</div>
|
||||||
|
<div class="card-subtitle">展示最近 100 条与当前用户相关的新审计记录。时间为浏览器本地时区。</div>
|
||||||
|
|
||||||
|
{% if entries.is_empty() %}
|
||||||
|
<div class="empty">暂无审计记录。</div>
|
||||||
|
{% else %}
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>时间</th>
|
||||||
|
<th>动作</th>
|
||||||
|
<th>目标</th>
|
||||||
|
<th>详情</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
{% for entry in entries %}
|
||||||
|
<tr>
|
||||||
|
<td class="col-time mono"><time class="audit-local-time" datetime="{{ entry.created_at_iso }}">{{ entry.created_at_iso }}</time></td>
|
||||||
|
<td class="col-action mono">{{ entry.action }}</td>
|
||||||
|
<td class="col-target mono">{{ entry.target }}</td>
|
||||||
|
<td class="col-detail"><pre class="detail">{{ entry.detail }}</pre></td>
|
||||||
|
</tr>
|
||||||
|
{% endfor %}
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
{% endif %}
|
||||||
|
</section>
|
||||||
|
</main>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<script>
|
||||||
|
(function () {
|
||||||
|
document.querySelectorAll('time.audit-local-time[datetime]').forEach(function (el) {
|
||||||
|
var raw = el.getAttribute('datetime');
|
||||||
|
var d = raw ? new Date(raw) : null;
|
||||||
|
if (d && !isNaN(d.getTime())) {
|
||||||
|
el.textContent = d.toLocaleString(undefined, { dateStyle: 'medium', timeStyle: 'medium' });
|
||||||
|
el.title = raw + ' (UTC)';
|
||||||
|
}
|
||||||
|
});
|
||||||
|
})();
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -16,13 +16,29 @@
|
|||||||
}
|
}
|
||||||
body { background: var(--bg); color: var(--text); font-family: 'Inter', sans-serif; min-height: 100vh; }
|
body { background: var(--bg); color: var(--text); font-family: 'Inter', sans-serif; min-height: 100vh; }
|
||||||
|
|
||||||
/* Nav */
|
.layout { display: flex; min-height: 100vh; }
|
||||||
.nav { background: var(--surface); border-bottom: 1px solid var(--border);
|
.sidebar {
|
||||||
padding: 0 24px; display: flex; align-items: center; gap: 12px; height: 52px; }
|
width: 220px; flex-shrink: 0; background: var(--surface); border-right: 1px solid var(--border);
|
||||||
.nav-logo { font-family: 'JetBrains Mono', monospace; font-size: 15px; font-weight: 600;
|
padding: 24px 16px; display: flex; flex-direction: column; gap: 20px;
|
||||||
color: var(--text); text-decoration: none; }
|
}
|
||||||
.nav-logo span { color: var(--accent); }
|
.sidebar-logo { font-family: 'JetBrains Mono', monospace; font-size: 16px; font-weight: 600;
|
||||||
.nav-spacer { flex: 1; }
|
color: var(--text); text-decoration: none; padding: 0 10px; }
|
||||||
|
.sidebar-logo span { color: var(--accent); }
|
||||||
|
.sidebar-menu { display: flex; flex-direction: column; gap: 6px; }
|
||||||
|
.sidebar-link {
|
||||||
|
padding: 10px 12px; border-radius: 8px; color: var(--text-muted); text-decoration: none;
|
||||||
|
border: 1px solid transparent; font-size: 13px; font-weight: 500;
|
||||||
|
}
|
||||||
|
.sidebar-link:hover { background: var(--surface2); color: var(--text); }
|
||||||
|
.sidebar-link.active {
|
||||||
|
background: rgba(88,166,255,0.12); color: var(--text); border-color: rgba(88,166,255,0.35);
|
||||||
|
}
|
||||||
|
.content-shell { flex: 1; min-width: 0; display: flex; flex-direction: column; }
|
||||||
|
.topbar {
|
||||||
|
background: var(--surface); border-bottom: 1px solid var(--border); padding: 0 24px;
|
||||||
|
display: flex; align-items: center; gap: 12px; min-height: 52px;
|
||||||
|
}
|
||||||
|
.topbar-spacer { flex: 1; }
|
||||||
.nav-user { font-size: 13px; color: var(--text-muted); }
|
.nav-user { font-size: 13px; color: var(--text-muted); }
|
||||||
.lang-bar { display: flex; gap: 2px; background: var(--surface2); border-radius: 6px; padding: 2px; }
|
.lang-bar { display: flex; gap: 2px; background: var(--surface2); border-radius: 6px; padding: 2px; }
|
||||||
.lang-btn { padding: 3px 9px; border: none; background: none; color: var(--text-muted);
|
.lang-btn { padding: 3px 9px; border: none; background: none; color: var(--text-muted);
|
||||||
@@ -32,11 +48,19 @@
|
|||||||
background: none; color: var(--text); font-size: 12px; cursor: pointer; }
|
background: none; color: var(--text); font-size: 12px; cursor: pointer; }
|
||||||
.btn-sign-out:hover { background: var(--surface2); }
|
.btn-sign-out:hover { background: var(--surface2); }
|
||||||
|
|
||||||
/* Main: column so footer can sit at bottom of viewport when content is short */
|
/* Main content column */
|
||||||
.main { display: flex; flex-direction: column; align-items: center;
|
.main { display: flex; flex-direction: column; align-items: center;
|
||||||
padding: 48px 24px 24px; min-height: calc(100vh - 52px); }
|
padding: 24px 20px 8px; min-height: 0; }
|
||||||
|
.app-footer {
|
||||||
|
margin-top: auto;
|
||||||
|
text-align: center;
|
||||||
|
padding: 4px 20px 12px;
|
||||||
|
font-size: 12px;
|
||||||
|
color: #9da7b3;
|
||||||
|
font-family: 'JetBrains Mono', monospace;
|
||||||
|
}
|
||||||
.card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px;
|
.card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px;
|
||||||
padding: 32px; width: 100%; max-width: 980px; }
|
padding: 24px; width: 100%; max-width: 980px; }
|
||||||
.card-title { font-size: 18px; font-weight: 600; margin-bottom: 24px; }
|
.card-title { font-size: 18px; font-weight: 600; margin-bottom: 24px; }
|
||||||
/* Form */
|
/* Form */
|
||||||
.field { margin-bottom: 12px; }
|
.field { margin-bottom: 12px; }
|
||||||
@@ -123,28 +147,40 @@
|
|||||||
background: none; color: var(--text); font-size: 13px; cursor: pointer; }
|
background: none; color: var(--text); font-size: 13px; cursor: pointer; }
|
||||||
.btn-modal-cancel:hover { background: var(--surface2); }
|
.btn-modal-cancel:hover { background: var(--surface2); }
|
||||||
|
|
||||||
@media (max-width: 720px) {
|
@media (max-width: 900px) {
|
||||||
.config-tabs { grid-template-columns: 1fr; }
|
.layout { flex-direction: column; }
|
||||||
|
.sidebar {
|
||||||
|
width: 100%; border-right: none; border-bottom: 1px solid var(--border);
|
||||||
|
padding: 16px; gap: 14px;
|
||||||
|
}
|
||||||
|
.sidebar-menu { flex-direction: row; }
|
||||||
|
.sidebar-link { flex: 1; text-align: center; }
|
||||||
}
|
}
|
||||||
|
|
||||||
.app-footer {
|
@media (max-width: 720px) {
|
||||||
margin-top: auto;
|
.config-tabs { grid-template-columns: 1fr; }
|
||||||
width: 100%;
|
.topbar { padding: 12px 16px; flex-wrap: wrap; }
|
||||||
max-width: 980px;
|
.main { padding: 16px 12px 6px; }
|
||||||
flex-shrink: 0;
|
.app-footer { padding: 4px 12px 10px; }
|
||||||
text-align: center;
|
.card { padding: 18px; }
|
||||||
padding-top: 28px;
|
|
||||||
font-size: 12px;
|
|
||||||
color: #9da7b3;
|
|
||||||
font-family: 'JetBrains Mono', monospace;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body data-has-passphrase="{{ has_passphrase }}" data-base-url="{{ base_url }}">
|
<body data-has-passphrase="{{ has_passphrase }}" data-base-url="{{ base_url }}">
|
||||||
|
|
||||||
<nav class="nav">
|
<div class="layout">
|
||||||
<a href="/dashboard" class="nav-logo"><span>secrets</span></a>
|
<aside class="sidebar">
|
||||||
<span class="nav-spacer"></span>
|
<a href="/dashboard" class="sidebar-logo"><span>secrets</span></a>
|
||||||
|
<nav class="sidebar-menu">
|
||||||
|
<a href="/dashboard" class="sidebar-link active">MCP</a>
|
||||||
|
<a href="/audit" class="sidebar-link">审计</a>
|
||||||
|
</nav>
|
||||||
|
</aside>
|
||||||
|
|
||||||
|
<div class="content-shell">
|
||||||
|
<div class="topbar">
|
||||||
|
<span class="topbar-spacer"></span>
|
||||||
<span class="nav-user">{{ user_name }}{% if !user_email.is_empty() %} · {{ user_email }}{% endif %}</span>
|
<span class="nav-user">{{ user_name }}{% if !user_email.is_empty() %} · {{ user_email }}{% endif %}</span>
|
||||||
<div class="lang-bar">
|
<div class="lang-bar">
|
||||||
<button class="lang-btn" onclick="setLang('zh-CN')">简</button>
|
<button class="lang-btn" onclick="setLang('zh-CN')">简</button>
|
||||||
@@ -154,7 +190,7 @@
|
|||||||
<form action="/auth/logout" method="post" style="display:inline">
|
<form action="/auth/logout" method="post" style="display:inline">
|
||||||
<button type="submit" class="btn-sign-out" data-i18n="signOut">退出</button>
|
<button type="submit" class="btn-sign-out" data-i18n="signOut">退出</button>
|
||||||
</form>
|
</form>
|
||||||
</nav>
|
</div>
|
||||||
|
|
||||||
<div class="main">
|
<div class="main">
|
||||||
<div class="card">
|
<div class="card">
|
||||||
@@ -258,9 +294,11 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
<footer class="app-footer">{{ version }}</footer>
|
<footer class="app-footer">{{ version }}</footer>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<!-- ── Change passphrase modal ──────────────────────────────────────────────── -->
|
<!-- ── Change passphrase modal ──────────────────────────────────────────────── -->
|
||||||
<div class="modal-bd" id="change-modal">
|
<div class="modal-bd" id="change-modal">
|
||||||
@@ -535,12 +573,14 @@ function buildOpencodeEntry(apiKey, encKey) {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** Full OpenCode config: MCP servers live under top-level `mcp`. */
|
||||||
function buildOpencodeConfigText(apiKey, encKey) {
|
function buildOpencodeConfigText(apiKey, encKey) {
|
||||||
return JSON.stringify({ secrets: buildOpencodeEntry(apiKey, encKey) }, null, 2);
|
return JSON.stringify({ mcp: { secrets: buildOpencodeEntry(apiKey, encKey) } }, null, 2);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** Strip outer `{` `}` so user can paste `secrets` under an existing `mcp` object. */
|
||||||
function buildOpencodeMergeSnippet(apiKey, encKey) {
|
function buildOpencodeMergeSnippet(apiKey, encKey) {
|
||||||
const wrapped = buildOpencodeConfigText(apiKey, encKey);
|
const wrapped = JSON.stringify({ secrets: buildOpencodeEntry(apiKey, encKey) }, null, 2);
|
||||||
const lines = wrapped.split('\n');
|
const lines = wrapped.split('\n');
|
||||||
return lines.length < 3 ? wrapped : lines.slice(1, -1).join('\n');
|
return lines.length < 3 ? wrapped : lines.slice(1, -1).join('\n');
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -12,12 +12,13 @@ echo "==> 当前 secrets-mcp 版本: ${version}"
|
|||||||
echo "==> 检查是否已存在 tag: ${tag}"
|
echo "==> 检查是否已存在 tag: ${tag}"
|
||||||
|
|
||||||
if git rev-parse "refs/tags/${tag}" >/dev/null 2>&1; then
|
if git rev-parse "refs/tags/${tag}" >/dev/null 2>&1; then
|
||||||
echo "错误: 已存在 tag ${tag}"
|
echo "提示: 已存在 tag ${tag},将按重复构建处理,不阻断检查。"
|
||||||
echo "请先 bump crates/secrets-mcp/Cargo.toml 中的 version,再执行 cargo build 同步 Cargo.lock。"
|
echo "如需创建新的发布版本,请先 bump crates/secrets-mcp/Cargo.toml 中的 version。"
|
||||||
exit 1
|
else
|
||||||
|
echo "==> 未发现重复 tag,将创建新版本"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "==> 未发现重复 tag,开始执行检查"
|
echo "==> 开始执行检查"
|
||||||
cargo fmt -- --check
|
cargo fmt -- --check
|
||||||
cargo clippy --locked -- -D warnings
|
cargo clippy --locked -- -D warnings
|
||||||
cargo test --locked
|
cargo test --locked
|
||||||
|
|||||||
Reference in New Issue
Block a user