Compare commits
52 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
aced098982 | ||
|
|
7862a34760 | ||
|
|
1384d28cac | ||
|
|
24b7338153 | ||
|
|
30d254eaef | ||
|
|
bb8a936ade | ||
|
|
61044fd30b | ||
|
|
22a4546d0f | ||
|
|
07450416ed | ||
|
|
0d6db0d2a1 | ||
|
|
ab30b3407b | ||
|
|
7a4c735803 | ||
|
|
654c764019 | ||
|
|
7101139250 | ||
|
|
793614841a | ||
|
|
94f2ac5b2a | ||
|
|
d4d39eecaa | ||
|
|
8af01c859c | ||
|
|
3af92d03e8 | ||
|
|
f17d891302 | ||
|
|
51623436b0 | ||
|
|
1b7c7eef8f | ||
|
|
15e4c7e522 | ||
|
|
120ab132a9 | ||
|
|
0b52e8faa8 | ||
|
|
60eaaf390a | ||
|
|
9101badb1c | ||
|
|
7082111b34 | ||
|
|
a156f2681e | ||
|
|
7cb823c957 | ||
|
|
817f612224 | ||
|
|
1cbaf9d6bc | ||
|
|
d353f9837f | ||
|
|
14beef72fc | ||
|
|
91a33fe7f6 | ||
|
|
7ad7a0ff41 | ||
|
|
d646469f71 | ||
|
|
4f616ffff1 | ||
|
|
64400fba61 | ||
|
|
fc15e8c63d | ||
|
|
cbba1e5317 | ||
|
|
75b997dcc4 | ||
|
|
853063c59b | ||
|
|
5c65edb8fa | ||
|
|
7707cc116f | ||
|
|
737fe749de | ||
|
|
b9c6f17e3f | ||
|
|
af6a340003 | ||
|
|
8ba3bee944 | ||
|
|
153c3566b6 | ||
|
|
97a4753f4f | ||
|
|
74c3899b55 |
@@ -1,8 +1,11 @@
|
|||||||
# Ignore Docker Compose configuration files
|
# Ignore Docker Compose configuration files
|
||||||
docker-compose.yaml
|
docker-compose.yaml
|
||||||
|
docker-compose-dev.yaml
|
||||||
|
|
||||||
# Ignore development Dockerfile
|
# Ignore development Dockerfile
|
||||||
|
Dockerfile
|
||||||
Dockerfile.dev
|
Dockerfile.dev
|
||||||
|
docker-dev.sh
|
||||||
|
|
||||||
# Ignore the data directory
|
# Ignore the data directory
|
||||||
data/
|
data/
|
||||||
|
|||||||
271
.github/workflows/build_test.yml
vendored
Normal file
271
.github/workflows/build_test.yml
vendored
Normal file
@@ -0,0 +1,271 @@
|
|||||||
|
name: Build Test
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
inputs:
|
||||||
|
BASE_IMAGE_NAMESPACE:
|
||||||
|
description: 'Base image namespace (Default: Your Github username)'
|
||||||
|
required: false
|
||||||
|
default: ''
|
||||||
|
DOCKERHUB_IMAGE_NAMESPACE:
|
||||||
|
description: 'Docker Hub image namespace (Default: Your Github username)'
|
||||||
|
required: false
|
||||||
|
default: ''
|
||||||
|
GHCR_IMAGE_NAMESPACE:
|
||||||
|
description: 'GitHub Container Registry image namespace (Default: Your Github username)'
|
||||||
|
required: false
|
||||||
|
default: ''
|
||||||
|
SKIP_DOCKER_HUB:
|
||||||
|
description: 'Set to true to skip pushing to Docker Hub (default: false)'
|
||||||
|
required: false
|
||||||
|
default: 'false'
|
||||||
|
SKIP_GHCR:
|
||||||
|
description: 'Set to true to skip pushing to GHCR (default: false)'
|
||||||
|
required: false
|
||||||
|
default: 'false'
|
||||||
|
WEBCLIENT_SOURCE_LOCATION:
|
||||||
|
description: 'Web Client API Repository'
|
||||||
|
required: true
|
||||||
|
default: 'https://github.com/lejianwen/rustdesk-api-web'
|
||||||
|
|
||||||
|
env:
|
||||||
|
LATEST_TAG: latest
|
||||||
|
WEBCLIENT_SOURCE_LOCATION: ${{ github.event.inputs.WEBCLIENT_SOURCE_LOCATION || 'https://github.com/lejianwen/rustdesk-api-web' }}
|
||||||
|
BASE_IMAGE_NAMESPACE: ${{ github.event.inputs.BASE_IMAGE_NAMESPACE || github.actor }}
|
||||||
|
DOCKERHUB_IMAGE_NAMESPACE: ${{ github.event.inputs.DOCKERHUB_IMAGE_NAMESPACE || github.actor }}
|
||||||
|
GHCR_IMAGE_NAMESPACE: ${{ github.event.inputs.GHCR_IMAGE_NAMESPACE || github.actor }}
|
||||||
|
SKIP_DOCKER_HUB: ${{ github.event.inputs.SKIP_DOCKER_HUB || 'false' }}
|
||||||
|
SKIP_GHCR: ${{ github.event.inputs.SKIP_GHCR || 'false' }}
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
job:
|
||||||
|
- { platform: "amd64", goos: "linux", file_ext: "tar.gz" }
|
||||||
|
- { platform: "arm64", goos: "linux", file_ext: "tar.gz" }
|
||||||
|
- { platform: "armv7l", goos: "linux", file_ext: "tar.gz" }
|
||||||
|
- { platform: "amd64", goos: "windows", file_ext: "zip" }
|
||||||
|
steps:
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Set up Go environment
|
||||||
|
uses: actions/setup-go@v4
|
||||||
|
with:
|
||||||
|
go-version: '1.22' # 选择 Go 版本
|
||||||
|
|
||||||
|
- name: Set up npm
|
||||||
|
uses: actions/setup-node@v2
|
||||||
|
with:
|
||||||
|
node-version: '20'
|
||||||
|
|
||||||
|
|
||||||
|
- name: build rustdesk-api-web
|
||||||
|
run: |
|
||||||
|
git clone ${{ env.WEBCLIENT_SOURCE_LOCATION }}
|
||||||
|
cd rustdesk-api-web
|
||||||
|
npm install
|
||||||
|
npm run build
|
||||||
|
mkdir ../resources/admin/ -p
|
||||||
|
cp -ar dist/* ../resources/admin/
|
||||||
|
|
||||||
|
- name: tidy
|
||||||
|
run: go mod tidy
|
||||||
|
|
||||||
|
- name: swag
|
||||||
|
run: |
|
||||||
|
go install github.com/swaggo/swag/cmd/swag@latest
|
||||||
|
swag init -g cmd/apimain.go --output docs/api --instanceName api --exclude http/controller/admin
|
||||||
|
swag init -g cmd/apimain.go --output docs/admin --instanceName admin --exclude http/controller/api
|
||||||
|
|
||||||
|
- name: Build for ${{ matrix.job.goos }}-${{ matrix.job.platform }}
|
||||||
|
run: |
|
||||||
|
mkdir release -p
|
||||||
|
cp -ar resources release/
|
||||||
|
cp -ar docs release/
|
||||||
|
cp -ar conf release/
|
||||||
|
mkdir -p release/data
|
||||||
|
mkdir -p release/runtime
|
||||||
|
if [ "${{ matrix.job.goos }}" = "windows" ]; then
|
||||||
|
sudo apt-get install gcc-mingw-w64-x86-64 zip -y
|
||||||
|
GOOS=${{ matrix.job.goos }} GOARCH=${{ matrix.job.platform }} CC=x86_64-w64-mingw32-gcc CGO_LDFLAGS="-static" CGO_ENABLED=1 go build -ldflags "-s -w" -o ./release/apimain.exe ./cmd/apimain.go
|
||||||
|
zip -r ${{ matrix.job.goos}}-${{ matrix.job.platform }}.${{matrix.job.file_ext}} ./release
|
||||||
|
else
|
||||||
|
if [ "${{ matrix.job.platform }}" = "arm64" ]; then
|
||||||
|
wget https://musl.cc/aarch64-linux-musl-cross.tgz
|
||||||
|
tar -xf aarch64-linux-musl-cross.tgz
|
||||||
|
export PATH=$PATH:$PWD/aarch64-linux-musl-cross/bin
|
||||||
|
GOOS=${{ matrix.job.goos }} GOARCH=${{ matrix.job.platform }} CC=aarch64-linux-musl-gcc CGO_LDFLAGS="-static" CGO_ENABLED=1 go build -ldflags "-s -w" -o ./release/apimain ./cmd/apimain.go
|
||||||
|
elif [ "${{ matrix.job.platform }}" = "armv7l" ]; then
|
||||||
|
wget https://musl.cc/armv7l-linux-musleabihf-cross.tgz
|
||||||
|
tar -xf armv7l-linux-musleabihf-cross.tgz
|
||||||
|
export PATH=$PATH:$PWD/armv7l-linux-musleabihf-cross/bin
|
||||||
|
GOOS=${{ matrix.job.goos }} GOARCH=arm GOARM=7 CC=armv7l-linux-musleabihf-gcc CGO_LDFLAGS="-static" CGO_ENABLED=1 go build -ldflags "-s -w" -o ./release/apimain ./cmd/apimain.go
|
||||||
|
else
|
||||||
|
sudo apt-get install musl musl-dev musl-tools -y
|
||||||
|
GOOS=${{ matrix.job.goos }} GOARCH=${{ matrix.job.platform }} CC=musl-gcc CGO_LDFLAGS="-static" CGO_ENABLED=1 go build -ldflags "-s -w" -o ./release/apimain ./cmd/apimain.go
|
||||||
|
fi
|
||||||
|
tar -czf ${{ matrix.job.goos}}-${{ matrix.job.platform }}.${{matrix.job.file_ext}} ./release
|
||||||
|
fi
|
||||||
|
|
||||||
|
- name: Upload artifact
|
||||||
|
uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: rustdesk-api-${{ matrix.job.goos }}-${{ matrix.job.platform }}
|
||||||
|
path: |
|
||||||
|
${{ matrix.job.goos}}-${{ matrix.job.platform }}.${{matrix.job.file_ext}}
|
||||||
|
- name: Upload to GitHub Release
|
||||||
|
uses: softprops/action-gh-release@v2
|
||||||
|
with:
|
||||||
|
files: |
|
||||||
|
${{ matrix.job.goos}}-${{ matrix.job.platform }}.${{matrix.job.file_ext}}
|
||||||
|
tag_name: test
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
|
docker:
|
||||||
|
name: Push Docker Image
|
||||||
|
needs: build
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
job:
|
||||||
|
- { platform: "amd64", goos: "linux", docker_platform: "linux/amd64" }
|
||||||
|
- { platform: "arm64", goos: "linux", docker_platform: "linux/arm64" }
|
||||||
|
- { platform: "armv7l", goos: "linux", docker_platform: "linux/arm/v7" }
|
||||||
|
steps:
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Set up QEMU
|
||||||
|
uses: docker/setup-qemu-action@v2
|
||||||
|
|
||||||
|
- name: Set up Docker Buildx
|
||||||
|
uses: docker/setup-buildx-action@v2
|
||||||
|
|
||||||
|
- name: Log in to Docker Hub
|
||||||
|
if: ${{ env.SKIP_DOCKER_HUB == 'false' }} # Only log in if SKIP_DOCKER_HUB is false
|
||||||
|
uses: docker/login-action@v2
|
||||||
|
with:
|
||||||
|
username: ${{ secrets.DOCKER_USERNAME }}
|
||||||
|
password: ${{ secrets.DOCKER_ACCESS_TOKEN }}
|
||||||
|
|
||||||
|
- name: Log in to GitHub Container Registry
|
||||||
|
if: ${{ env.SKIP_GHCR == 'false' }} # Only log in if GHCR push is enabled
|
||||||
|
uses: docker/login-action@v2
|
||||||
|
with:
|
||||||
|
registry: ghcr.io
|
||||||
|
username: ${{ github.actor }}
|
||||||
|
password: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
|
- name: Extract version from tag
|
||||||
|
id: vars
|
||||||
|
run: |
|
||||||
|
if [[ "${GITHUB_REF}" == refs/tags/* ]]; then
|
||||||
|
echo "TAG=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
|
||||||
|
else
|
||||||
|
echo "TAG=test" >> $GITHUB_ENV # Default to 'test' if not a tag
|
||||||
|
fi
|
||||||
|
|
||||||
|
- name: Extract metadata (tags, labels) for Docker
|
||||||
|
id: meta
|
||||||
|
uses: docker/metadata-action@v4
|
||||||
|
with:
|
||||||
|
images: ${{ env.BASE_IMAGE_NAMESPACE }}/rustdesk-api
|
||||||
|
|
||||||
|
- name: Download binaries
|
||||||
|
uses: actions/download-artifact@v4
|
||||||
|
with:
|
||||||
|
name: rustdesk-api-${{ matrix.job.goos }}-${{ matrix.job.platform }}
|
||||||
|
path: ./
|
||||||
|
|
||||||
|
- name: Unzip binaries
|
||||||
|
run: |
|
||||||
|
mkdir -p ${{ matrix.job.platform }}
|
||||||
|
tar -xzf ${{ matrix.job.goos }}-${{ matrix.job.platform }}.tar.gz -C ${{ matrix.job.platform }}
|
||||||
|
file ${{ matrix.job.platform }}/apimain
|
||||||
|
|
||||||
|
- name: Build and push Docker image to Docker Hub ${{ matrix.job.platform }}
|
||||||
|
if: ${{ env.SKIP_DOCKER_HUB == 'false' }} # Only run this step if SKIP_DOCKER_HUB is false
|
||||||
|
uses: docker/build-push-action@v5
|
||||||
|
with:
|
||||||
|
context: "."
|
||||||
|
file: ./Dockerfile
|
||||||
|
platforms: ${{ matrix.job.docker_platform }}
|
||||||
|
push: true
|
||||||
|
provenance: false
|
||||||
|
build-args: |
|
||||||
|
BUILDARCH=${{ matrix.job.platform }}
|
||||||
|
tags: |
|
||||||
|
${{ env.DOCKERHUB_IMAGE_NAMESPACE }}/rustdesk-api:${{ env.TAG }}-${{ matrix.job.platform }}
|
||||||
|
labels: ${{ steps.meta.outputs.labels }}
|
||||||
|
|
||||||
|
- name: Build and push Docker image to GHCR ${{ matrix.job.platform }}
|
||||||
|
if: ${{ env.SKIP_GHCR == 'false' }} # Only run this step if SKIP_GHCR is false
|
||||||
|
uses: docker/build-push-action@v5
|
||||||
|
with:
|
||||||
|
context: "."
|
||||||
|
file: ./Dockerfile
|
||||||
|
platforms: ${{ matrix.job.docker_platform }}
|
||||||
|
push: true
|
||||||
|
provenance: false
|
||||||
|
build-args: |
|
||||||
|
BUILDARCH=${{ matrix.job.platform }}
|
||||||
|
tags: |
|
||||||
|
ghcr.io/${{ env.GHCR_IMAGE_NAMESPACE }}/rustdesk-api:${{ env.TAG }}-${{ matrix.job.platform }}
|
||||||
|
labels: ${{ steps.meta.outputs.labels }}
|
||||||
|
|
||||||
|
#
|
||||||
|
docker-manifest:
|
||||||
|
name: Push Docker Manifest
|
||||||
|
needs: docker
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Extract version from tag
|
||||||
|
id: vars
|
||||||
|
run: |
|
||||||
|
if [[ "${GITHUB_REF}" == refs/tags/* ]]; then
|
||||||
|
echo "TAG=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
|
||||||
|
else
|
||||||
|
echo "TAG=test" >> $GITHUB_ENV # Default to 'test' if not a tag
|
||||||
|
fi
|
||||||
|
|
||||||
|
- name: Log in to Docker Hub
|
||||||
|
if: ${{ env.SKIP_DOCKER_HUB == 'false' }} # Only log in if Docker Hub push is enabled
|
||||||
|
uses: docker/login-action@v2
|
||||||
|
with:
|
||||||
|
username: ${{ secrets.DOCKER_USERNAME }}
|
||||||
|
password: ${{ secrets.DOCKER_ACCESS_TOKEN }}
|
||||||
|
|
||||||
|
- name: Log in to GitHub Container Registry
|
||||||
|
if: ${{ env.SKIP_GHCR == 'false' }} # Only log in if GHCR push is enabled
|
||||||
|
uses: docker/login-action@v2
|
||||||
|
with:
|
||||||
|
registry: ghcr.io
|
||||||
|
username: ${{ github.actor }}
|
||||||
|
password: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
|
- name: Create and push manifest Docker Hub (:version)
|
||||||
|
if: ${{ env.SKIP_DOCKER_HUB == 'false' }}
|
||||||
|
uses: Noelware/docker-manifest-action@master
|
||||||
|
with:
|
||||||
|
base-image: ${{ env.BASE_IMAGE_NAMESPACE }}/rustdesk-api:${{ env.TAG }}
|
||||||
|
extra-images: ${{ env.DOCKERHUB_IMAGE_NAMESPACE }}/rustdesk-api:${{ env.TAG }}-amd64,
|
||||||
|
${{ env.DOCKERHUB_IMAGE_NAMESPACE }}/rustdesk-api:${{ env.TAG }}-armv7l,
|
||||||
|
${{ env.DOCKERHUB_IMAGE_NAMESPACE }}/rustdesk-api:${{ env.TAG }}-arm64
|
||||||
|
push: true
|
||||||
|
|
||||||
|
- name: Create and push manifest GHCR (:version)
|
||||||
|
if: ${{ env.SKIP_GHCR == 'false' }}
|
||||||
|
uses: Noelware/docker-manifest-action@master
|
||||||
|
with:
|
||||||
|
base-image: ghcr.io/${{ env.BASE_IMAGE_NAMESPACE }}/rustdesk-api:${{ env.TAG }}
|
||||||
|
extra-images: ghcr.io/${{ env.GHCR_IMAGE_NAMESPACE }}/rustdesk-api:${{ env.TAG }}-amd64,
|
||||||
|
ghcr.io/${{ env.GHCR_IMAGE_NAMESPACE }}/rustdesk-api:${{ env.TAG }}-armv7l,
|
||||||
|
ghcr.io/${{ env.GHCR_IMAGE_NAMESPACE }}/rustdesk-api:${{ env.TAG }}-arm64
|
||||||
|
push: true
|
||||||
|
amend: true
|
||||||
95
.github/workflows/release.yml
vendored
95
.github/workflows/release.yml
vendored
@@ -1,95 +0,0 @@
|
|||||||
name: Build and Release
|
|
||||||
|
|
||||||
on:
|
|
||||||
workflow_dispatch:
|
|
||||||
# tags:
|
|
||||||
# - 'v*.*.*' # 当推送带有版本号的 tag(例如 v1.0.0)时触发工作流
|
|
||||||
#on:
|
|
||||||
# push:
|
|
||||||
# branches: [ "master" ]
|
|
||||||
# pull_request:
|
|
||||||
# branches: [ "master" ]
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
goos: [ linux, windows ] # 指定要构建的操作系统
|
|
||||||
goarch: [ amd64 ] # 指定架构
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Checkout code
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
|
|
||||||
- name: Set up Go environment
|
|
||||||
uses: actions/setup-go@v4
|
|
||||||
with:
|
|
||||||
go-version: '1.22' # 选择 Go 版本
|
|
||||||
|
|
||||||
- name: Set up npm
|
|
||||||
uses: actions/setup-node@v2
|
|
||||||
with:
|
|
||||||
node-version: '20'
|
|
||||||
|
|
||||||
- name: install gcc zip musl
|
|
||||||
run: |
|
|
||||||
if [ "${{ matrix.goos }}" = "windows" ]; then
|
|
||||||
sudo apt-get install gcc-mingw-w64-x86-64 zip -y
|
|
||||||
else
|
|
||||||
sudo apt-get install musl musl-dev musl-tools -y
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
- name: build rustdesk-api-web
|
|
||||||
run: |
|
|
||||||
git clone https://github.com/lejianwen/rustdesk-api-web
|
|
||||||
cd rustdesk-api-web
|
|
||||||
npm install
|
|
||||||
npm run build
|
|
||||||
mkdir ../resources/admin/ -p
|
|
||||||
cp -ar dist/* ../resources/admin/
|
|
||||||
|
|
||||||
- name: tidy
|
|
||||||
run: go mod tidy
|
|
||||||
|
|
||||||
|
|
||||||
- name: swag
|
|
||||||
run: |
|
|
||||||
go install github.com/swaggo/swag/cmd/swag@latest
|
|
||||||
swag init -g cmd/apimain.go --output docs/api --instanceName api --exclude http/controller/admin
|
|
||||||
swag init -g cmd/apimain.go --output docs/admin --instanceName admin --exclude http/controller/api
|
|
||||||
|
|
||||||
- name: Build for ${{ matrix.goos }}-${{ matrix.goarch }}
|
|
||||||
run: |
|
|
||||||
mkdir release -p
|
|
||||||
cp -ar resources release/
|
|
||||||
cp -ar docs release/
|
|
||||||
cp -ar conf release/
|
|
||||||
mkdir -p release/data
|
|
||||||
mkdir -p release/runtime
|
|
||||||
if [ "${{ matrix.goos }}" = "windows" ]; then
|
|
||||||
GOOS=${{ matrix.goos }} GOARCH=${{ matrix.goarch }} CC=x86_64-w64-mingw32-gcc CGO_LDFLAGS="-static" CGO_ENABLED=1 go build -ldflags "-s -w" -o ./release/apimain.exe ./cmd/apimain.go
|
|
||||||
zip -r ${{ matrix.goos}}-${{ matrix.goarch }}.zip ./release
|
|
||||||
else
|
|
||||||
GOOS=${{ matrix.goos }} GOARCH=${{ matrix.goarch }} CC=musl-gcc CGO_LDFLAGS="-static" CGO_ENABLED=1 go build -ldflags "-s -w" -o ./release/apimain ./cmd/apimain.go
|
|
||||||
tar -czf ${{ matrix.goos}}-${{ matrix.goarch }}.tar.gz ./release
|
|
||||||
fi
|
|
||||||
|
|
||||||
- name: Upload artifact
|
|
||||||
uses: actions/upload-artifact@v4
|
|
||||||
with:
|
|
||||||
name: myapp-${{ matrix.goos }}-${{ matrix.goarch }}
|
|
||||||
path: |
|
|
||||||
${{ matrix.goos}}-${{ matrix.goarch }}.tar.gz
|
|
||||||
${{ matrix.goos}}-${{ matrix.goarch }}.zip
|
|
||||||
|
|
||||||
- name: Upload to GitHub Release
|
|
||||||
uses: softprops/action-gh-release@v2
|
|
||||||
with:
|
|
||||||
files: |
|
|
||||||
${{ matrix.goos}}-${{ matrix.goarch }}.tar.gz
|
|
||||||
${{ matrix.goos}}-${{ matrix.goarch }}.zip
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
@@ -12,17 +12,19 @@ WORKDIR /app
|
|||||||
# Step 1: Copy the source code
|
# Step 1: Copy the source code
|
||||||
COPY . .
|
COPY . .
|
||||||
|
|
||||||
|
# use --mount=type=cache,target=/go/pkg/mod to cache the go mod
|
||||||
# Step 2: Download dependencies
|
# Step 2: Download dependencies
|
||||||
RUN go mod tidy && go mod download
|
RUN --mount=type=cache,target=/go/pkg/mod \
|
||||||
|
go mod tidy && go mod download && go install github.com/swaggo/swag/cmd/swag@latest
|
||||||
|
|
||||||
|
# Step 3: Run swag build script
|
||||||
# Step 3: Install swag and Run the build script
|
RUN --mount=type=cache,target=/go/pkg/mod \
|
||||||
RUN go install github.com/swaggo/swag/cmd/swag@latest && \
|
|
||||||
swag init -g cmd/apimain.go --output docs/api --instanceName api --exclude http/controller/admin && \
|
swag init -g cmd/apimain.go --output docs/api --instanceName api --exclude http/controller/admin && \
|
||||||
swag init -g cmd/apimain.go --output docs/admin --instanceName admin --exclude http/controller/api
|
swag init -g cmd/apimain.go --output docs/admin --instanceName admin --exclude http/controller/api
|
||||||
|
|
||||||
# Build the Go application with CGO enabled and specified ldflags
|
# Step 4: Build the Go application with CGO enabled and specified ldflags
|
||||||
RUN CGO_ENABLED=1 GOOS=linux go build -a \
|
RUN --mount=type=cache,target=/go/pkg/mod \
|
||||||
|
CGO_ENABLED=1 GOOS=linux go build -a \
|
||||||
-ldflags "-s -w --extldflags '-static -fpic'" \
|
-ldflags "-s -w --extldflags '-static -fpic'" \
|
||||||
-installsuffix cgo -o release/apimain cmd/apimain.go
|
-installsuffix cgo -o release/apimain cmd/apimain.go
|
||||||
|
|
||||||
@@ -32,13 +34,27 @@ FROM node:18-alpine AS builder-admin-frontend
|
|||||||
# Set working directory
|
# Set working directory
|
||||||
WORKDIR /frontend
|
WORKDIR /frontend
|
||||||
|
|
||||||
RUN apk update && apk add git --no-cache
|
ARG COUNTRY
|
||||||
|
# Install required tools without caching index to minimize image size
|
||||||
|
RUN if [ "$COUNTRY" = "CN" ] ; then \
|
||||||
|
echo "It is in China, updating the repositories"; \
|
||||||
|
sed -i 's#https\?://dl-cdn.alpinelinux.org/alpine#https://mirrors.tuna.tsinghua.edu.cn/alpine#g' /etc/apk/repositories; \
|
||||||
|
fi && \
|
||||||
|
apk update && apk add --no-cache git
|
||||||
|
|
||||||
|
ARG FREONTEND_GIT_REPO=https://github.com/lejianwen/rustdesk-api-web.git
|
||||||
|
ARG FRONTEND_GIT_BRANCH=master
|
||||||
# Clone the frontend repository
|
# Clone the frontend repository
|
||||||
RUN git clone https://github.com/lejianwen/rustdesk-api-web .
|
|
||||||
|
|
||||||
# Install npm dependencies and build the frontend
|
RUN git clone -b $FRONTEND_GIT_BRANCH $FREONTEND_GIT_REPO .
|
||||||
RUN npm install && npm run build
|
|
||||||
|
# Install required tools without caching index to minimize image size
|
||||||
|
RUN if [ "$COUNTRY" = "CN" ] ; then \
|
||||||
|
echo "It is in China, updating NPM_CONFIG_REGISTRY"; \
|
||||||
|
export NPM_CONFIG_REGISTRY="https://mirrors.huaweicloud.com/repository/npm/"; \
|
||||||
|
fi && \
|
||||||
|
npm install && npm run build
|
||||||
|
|
||||||
|
|
||||||
# Stage 2: Final Image
|
# Stage 2: Final Image
|
||||||
FROM alpine:latest
|
FROM alpine:latest
|
||||||
@@ -47,7 +63,13 @@ FROM alpine:latest
|
|||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
# Install necessary runtime dependencies
|
# Install necessary runtime dependencies
|
||||||
RUN apk add --no-cache tzdata file
|
# Install required tools without caching index to minimize image size
|
||||||
|
ARG COUNTRY
|
||||||
|
RUN if [ "$COUNTRY" = "CN" ] ; then \
|
||||||
|
echo "It is in China, updating the repositories"; \
|
||||||
|
sed -i 's#https\?://dl-cdn.alpinelinux.org/alpine#https://mirrors.tuna.tsinghua.edu.cn/alpine#g' /etc/apk/repositories; \
|
||||||
|
fi && \
|
||||||
|
apk update && apk add --no-cache tzdata file
|
||||||
|
|
||||||
# Copy the built application and resources from the builder stage
|
# Copy the built application and resources from the builder stage
|
||||||
COPY --from=builder-backend /app/release /app/
|
COPY --from=builder-backend /app/release /app/
|
||||||
|
|||||||
13
README.md
13
README.md
@@ -39,6 +39,8 @@
|
|||||||
- 自动获取ID服务器和KEY
|
- 自动获取ID服务器和KEY
|
||||||
- 自动获取地址簿
|
- 自动获取地址簿
|
||||||
- 游客通过临时分享链接直接远程到设备
|
- 游客通过临时分享链接直接远程到设备
|
||||||
|
- CLI
|
||||||
|
- 重置管理员密码
|
||||||
|
|
||||||
## 使用前准备
|
## 使用前准备
|
||||||
|
|
||||||
@@ -147,6 +149,17 @@
|
|||||||
2. PC端文档 `<youer server[:port]>/swagger/index.html`
|
2. PC端文档 `<youer server[:port]>/swagger/index.html`
|
||||||

|

|
||||||
|
|
||||||
|
### CLI
|
||||||
|
```bash
|
||||||
|
# 查看帮助
|
||||||
|
./apimain -h
|
||||||
|
```
|
||||||
|
|
||||||
|
#### 重置管理员密码
|
||||||
|
```bash
|
||||||
|
./apimain reset-admin-pwd <pwd>
|
||||||
|
```
|
||||||
|
|
||||||
## 安装与运行
|
## 安装与运行
|
||||||
|
|
||||||
### 相关配置
|
### 相关配置
|
||||||
|
|||||||
14
README_EN.md
14
README_EN.md
@@ -38,7 +38,8 @@ desktop software that provides self-hosted solutions.
|
|||||||
- Automatically obtain ID server and KEY
|
- Automatically obtain ID server and KEY
|
||||||
- Automatically obtain address book
|
- Automatically obtain address book
|
||||||
- Visitors are remotely to the device via a temporary sharing link
|
- Visitors are remotely to the device via a temporary sharing link
|
||||||
|
- CLI
|
||||||
|
- Reset admin password
|
||||||
## Prerequisites
|
## Prerequisites
|
||||||
|
|
||||||
### [Rustdesk](https://github.com/rustdesk/rustdesk)
|
### [Rustdesk](https://github.com/rustdesk/rustdesk)
|
||||||
@@ -153,6 +154,17 @@ installation are `admin` `admin`, please change the password immediately.
|
|||||||
2. PC client docs: `<your server[:port]>/swagger/index.html`
|
2. PC client docs: `<your server[:port]>/swagger/index.html`
|
||||||

|

|
||||||
|
|
||||||
|
### CLI
|
||||||
|
```bash
|
||||||
|
# help
|
||||||
|
./apimain -h
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Reset admin password
|
||||||
|
```bash
|
||||||
|
./apimain reset-admin-pwd <pwd>
|
||||||
|
```
|
||||||
|
|
||||||
## Installation and Setup
|
## Installation and Setup
|
||||||
|
|
||||||
### Configuration
|
### Configuration
|
||||||
|
|||||||
100
cmd/apimain.go
100
cmd/apimain.go
@@ -14,6 +14,9 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
"github.com/go-redis/redis/v8"
|
"github.com/go-redis/redis/v8"
|
||||||
"github.com/nicksnyder/go-i18n/v2/i18n"
|
"github.com/nicksnyder/go-i18n/v2/i18n"
|
||||||
|
"github.com/spf13/cobra"
|
||||||
|
"os"
|
||||||
|
"strconv"
|
||||||
)
|
)
|
||||||
|
|
||||||
// @title 管理系统API
|
// @title 管理系统API
|
||||||
@@ -26,9 +29,79 @@ import (
|
|||||||
// @securitydefinitions.apikey BearerAuth
|
// @securitydefinitions.apikey BearerAuth
|
||||||
// @in header
|
// @in header
|
||||||
// @name Authorization
|
// @name Authorization
|
||||||
|
|
||||||
|
var rootCmd = &cobra.Command{
|
||||||
|
Use: "apimain",
|
||||||
|
Short: "RUSTDESK API SERVER",
|
||||||
|
PersistentPreRun: func(cmd *cobra.Command, args []string) {
|
||||||
|
InitGlobal()
|
||||||
|
},
|
||||||
|
Run: func(cmd *cobra.Command, args []string) {
|
||||||
|
//gin
|
||||||
|
http.ApiInit()
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
var resetPwdCmd = &cobra.Command{
|
||||||
|
Use: "reset-admin-pwd [pwd]",
|
||||||
|
Example: "reset-admin-pwd 123456",
|
||||||
|
Short: "Reset Admin Password",
|
||||||
|
Args: cobra.ExactArgs(1),
|
||||||
|
Run: func(cmd *cobra.Command, args []string) {
|
||||||
|
pwd := args[0]
|
||||||
|
admin := service.AllService.UserService.InfoById(1)
|
||||||
|
err := service.AllService.UserService.UpdatePassword(admin, pwd)
|
||||||
|
if err != nil {
|
||||||
|
fmt.Printf("reset password fail! %v \n", err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
fmt.Printf("reset password success! \n")
|
||||||
|
},
|
||||||
|
}
|
||||||
|
var resetUserPwdCmd = &cobra.Command{
|
||||||
|
Use: "reset-pwd [userId] [pwd]",
|
||||||
|
Example: "reset-pwd 2 123456",
|
||||||
|
Short: "Reset User Password",
|
||||||
|
Args: cobra.ExactArgs(2),
|
||||||
|
Run: func(cmd *cobra.Command, args []string) {
|
||||||
|
userId := args[0]
|
||||||
|
pwd := args[1]
|
||||||
|
uid, err := strconv.Atoi(userId)
|
||||||
|
if err != nil {
|
||||||
|
fmt.Printf("userId must be int! \n")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if uid <= 0 {
|
||||||
|
fmt.Printf("userId must be greater than 0! \n")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
u := service.AllService.UserService.InfoById(uint(uid))
|
||||||
|
err = service.AllService.UserService.UpdatePassword(u, pwd)
|
||||||
|
if err != nil {
|
||||||
|
fmt.Printf("reset password fail! %v \n", err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
fmt.Printf("reset password success! \n")
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
rootCmd.PersistentFlags().StringVarP(&global.ConfigPath, "config", "c", "./conf/config.yaml", "choose config file")
|
||||||
|
rootCmd.AddCommand(resetPwdCmd, resetUserPwdCmd)
|
||||||
|
}
|
||||||
func main() {
|
func main() {
|
||||||
|
if err := rootCmd.Execute(); err != nil {
|
||||||
|
fmt.Println(err)
|
||||||
|
os.Exit(1)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func InitGlobal() {
|
||||||
//配置解析
|
//配置解析
|
||||||
global.Viper = config.Init(&global.Config)
|
global.Viper = config.Init(&global.Config, global.ConfigPath)
|
||||||
|
|
||||||
|
//从配置文件中加载密钥
|
||||||
|
config.LoadKeyFile(&global.Config.Rustdesk)
|
||||||
|
|
||||||
//日志
|
//日志
|
||||||
global.Logger = logger.New(&logger.Config{
|
global.Logger = logger.New(&logger.Config{
|
||||||
@@ -94,14 +167,9 @@ func main() {
|
|||||||
|
|
||||||
//locker
|
//locker
|
||||||
global.Lock = lock.NewLocal()
|
global.Lock = lock.NewLocal()
|
||||||
|
|
||||||
//gin
|
|
||||||
http.ApiInit()
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func DatabaseAutoUpdate() {
|
func DatabaseAutoUpdate() {
|
||||||
version := 244
|
version := 246
|
||||||
|
|
||||||
db := global.DB
|
db := global.DB
|
||||||
|
|
||||||
@@ -146,6 +214,24 @@ func DatabaseAutoUpdate() {
|
|||||||
if v.Version < uint(version) {
|
if v.Version < uint(version) {
|
||||||
Migrate(uint(version))
|
Migrate(uint(version))
|
||||||
}
|
}
|
||||||
|
// 245迁移
|
||||||
|
if v.Version < 245 {
|
||||||
|
//oauths 表的 oauth_type 字段设置为 op同样的值
|
||||||
|
db.Exec("update oauths set oauth_type = op")
|
||||||
|
db.Exec("update oauths set issuer = 'https://accounts.google.com' where op = 'google'")
|
||||||
|
db.Exec("update user_thirds set oauth_type = third_type, op = third_type")
|
||||||
|
//通过email迁移旧的google授权
|
||||||
|
uts := make([]model.UserThird, 0)
|
||||||
|
db.Where("oauth_type = ?", "google").Find(&uts)
|
||||||
|
for _, ut := range uts {
|
||||||
|
if ut.UserId > 0 {
|
||||||
|
db.Model(&model.User{}).Where("id = ?", ut.UserId).Update("email", ut.OpenId)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if v.Version < 246 {
|
||||||
|
db.Exec("update oauths set issuer = 'https://accounts.google.com' where op = 'google' and issuer is null")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
1
conf/admin/hello.html
Normal file
1
conf/admin/hello.html
Normal file
@@ -0,0 +1 @@
|
|||||||
|
👏👏👏 你好 <strong>{{username}}</strong>, 欢迎使用 <a href='https://github.com/lejianwen/rustdesk-api' target='_blank'>RustDesk Api Admin</a>
|
||||||
@@ -2,6 +2,10 @@ lang: "zh-CN"
|
|||||||
app:
|
app:
|
||||||
web-client: 1 # 1:启用 0:禁用
|
web-client: 1 # 1:启用 0:禁用
|
||||||
register: false #是否开启注册
|
register: false #是否开启注册
|
||||||
|
admin:
|
||||||
|
title: "RustDesk Api Admin"
|
||||||
|
hello-file: "./conf/admin/hello.html" #优先使用file
|
||||||
|
hello: ""
|
||||||
gin:
|
gin:
|
||||||
api-addr: "0.0.0.0:21114"
|
api-addr: "0.0.0.0:21114"
|
||||||
mode: "release" #release,debug,test
|
mode: "release" #release,debug,test
|
||||||
@@ -20,7 +24,8 @@ rustdesk:
|
|||||||
id-server: "192.168.1.66:21116"
|
id-server: "192.168.1.66:21116"
|
||||||
relay-server: "192.168.1.66:21117"
|
relay-server: "192.168.1.66:21117"
|
||||||
api-server: "http://127.0.0.1:21114"
|
api-server: "http://127.0.0.1:21114"
|
||||||
key: "123456789"
|
key: ""
|
||||||
|
key-file: "./conf/data/id_ed25519.pub"
|
||||||
personal: 1
|
personal: 1
|
||||||
logger:
|
logger:
|
||||||
path: "./runtime/log.txt"
|
path: "./runtime/log.txt"
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
package config
|
package config
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"flag"
|
|
||||||
"fmt"
|
"fmt"
|
||||||
"github.com/fsnotify/fsnotify"
|
"github.com/fsnotify/fsnotify"
|
||||||
"github.com/spf13/viper"
|
"github.com/spf13/viper"
|
||||||
@@ -18,10 +17,15 @@ type App struct {
|
|||||||
WebClient int `mapstructure:"web-client"`
|
WebClient int `mapstructure:"web-client"`
|
||||||
Register bool `mapstructure:"register"`
|
Register bool `mapstructure:"register"`
|
||||||
}
|
}
|
||||||
|
type Admin struct {
|
||||||
|
Title string `mapstructure:"title"`
|
||||||
|
Hello string `mapstructure:"hello"`
|
||||||
|
HelloFile string `mapstructure:"hello-file"`
|
||||||
|
}
|
||||||
type Config struct {
|
type Config struct {
|
||||||
Lang string `mapstructure:"lang"`
|
Lang string `mapstructure:"lang"`
|
||||||
App App
|
App App
|
||||||
|
Admin Admin
|
||||||
Gorm Gorm
|
Gorm Gorm
|
||||||
Mysql Mysql
|
Mysql Mysql
|
||||||
Gin Gin
|
Gin Gin
|
||||||
@@ -35,18 +39,15 @@ type Config struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Init 初始化配置
|
// Init 初始化配置
|
||||||
func Init(rowVal interface{}) *viper.Viper {
|
func Init(rowVal interface{}, path string) *viper.Viper {
|
||||||
var config string
|
if path == "" {
|
||||||
flag.StringVar(&config, "c", "", "choose config file.")
|
path = DefaultConfig
|
||||||
flag.Parse()
|
|
||||||
if config == "" { // 优先级: 命令行 > 默认值
|
|
||||||
config = DefaultConfig
|
|
||||||
}
|
}
|
||||||
v := viper.New()
|
v := viper.GetViper()
|
||||||
v.AutomaticEnv()
|
v.AutomaticEnv()
|
||||||
v.SetEnvKeyReplacer(strings.NewReplacer(".", "_", "-", "_"))
|
v.SetEnvKeyReplacer(strings.NewReplacer(".", "_", "-", "_"))
|
||||||
v.SetEnvPrefix("RUSTDESK_API")
|
v.SetEnvPrefix("RUSTDESK_API")
|
||||||
v.SetConfigFile(config)
|
v.SetConfigFile(path)
|
||||||
v.SetConfigType("yaml")
|
v.SetConfigType("yaml")
|
||||||
err := v.ReadInConfig()
|
err := v.ReadInConfig()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@@ -63,6 +64,7 @@ func Init(rowVal interface{}) *viper.Viper {
|
|||||||
if err := v.Unmarshal(rowVal); err != nil {
|
if err := v.Unmarshal(rowVal); err != nil {
|
||||||
fmt.Println(err)
|
fmt.Println(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
return v
|
return v
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,9 +1,30 @@
|
|||||||
package config
|
package config
|
||||||
|
|
||||||
|
import (
|
||||||
|
"os"
|
||||||
|
)
|
||||||
|
|
||||||
type Rustdesk struct {
|
type Rustdesk struct {
|
||||||
IdServer string `mapstructure:"id-server"`
|
IdServer string `mapstructure:"id-server"`
|
||||||
RelayServer string `mapstructure:"relay-server"`
|
RelayServer string `mapstructure:"relay-server"`
|
||||||
ApiServer string `mapstructure:"api-server"`
|
ApiServer string `mapstructure:"api-server"`
|
||||||
Key string `mapstructure:"key"`
|
Key string `mapstructure:"key"`
|
||||||
|
KeyFile string `mapstructure:"key-file"`
|
||||||
Personal int `mapstructure:"personal"`
|
Personal int `mapstructure:"personal"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func LoadKeyFile(rustdesk *Rustdesk) {
|
||||||
|
// Load key file
|
||||||
|
if rustdesk.Key != "" {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if rustdesk.KeyFile != "" {
|
||||||
|
// Load key from file
|
||||||
|
b, err := os.ReadFile(rustdesk.KeyFile)
|
||||||
|
if err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
rustdesk.Key = string(b)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
@@ -3,6 +3,10 @@ services:
|
|||||||
build:
|
build:
|
||||||
context: .
|
context: .
|
||||||
dockerfile: Dockerfile.dev
|
dockerfile: Dockerfile.dev
|
||||||
|
args:
|
||||||
|
COUNTRY: CN
|
||||||
|
FREONTEND_GIT_REPO: https://github.com/lejianwen/rustdesk-api-web.git
|
||||||
|
FRONTEND_GIT_BRANCH: master
|
||||||
# image: lejianwen/rustdesk-api
|
# image: lejianwen/rustdesk-api
|
||||||
container_name: rustdesk-api
|
container_name: rustdesk-api
|
||||||
environment:
|
environment:
|
||||||
|
|||||||
35
docker-dev.sh
Executable file
35
docker-dev.sh
Executable file
@@ -0,0 +1,35 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
set -e
|
||||||
|
|
||||||
|
# Define Docker Compose file and cache option
|
||||||
|
COMPOSE_FILE_NAME="docker-compose-dev.yaml"
|
||||||
|
CACHE=""
|
||||||
|
# Uncomment the next line to enable no-cache option
|
||||||
|
# CACHE="--no-cache"
|
||||||
|
|
||||||
|
# Define the base Docker Compose command
|
||||||
|
DCS="docker compose -f ${COMPOSE_FILE_NAME}"
|
||||||
|
|
||||||
|
# Function to build and start services
|
||||||
|
build_and_run() {
|
||||||
|
echo "Building services..."
|
||||||
|
if ! $DCS build ${CACHE}; then
|
||||||
|
echo "Error: Failed to build services"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "Starting services..."
|
||||||
|
if ! $DCS up -d; then
|
||||||
|
echo "Error: Failed to start services"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
echo "Services started successfully"
|
||||||
|
echo "If you want to stop the services, run"
|
||||||
|
echo "docker compose -f ${COMPOSE_FILE_NAME} down"
|
||||||
|
|
||||||
|
echo "If you want to see the logs, run"
|
||||||
|
echo "docker compose -f ${COMPOSE_FILE_NAME} logs -f"
|
||||||
|
}
|
||||||
|
|
||||||
|
# Execute build and start function
|
||||||
|
build_and_run
|
||||||
@@ -353,17 +353,20 @@ const docTemplateadmin = `{
|
|||||||
"token": []
|
"token": []
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"description": "创建地址簿集合",
|
"description": "创建地址簿名称",
|
||||||
"consumes": [
|
"consumes": [
|
||||||
"application/json"
|
"application/json"
|
||||||
],
|
],
|
||||||
"produces": [
|
"produces": [
|
||||||
"application/json"
|
"application/json"
|
||||||
],
|
],
|
||||||
"summary": "创建地址簿集合",
|
"tags": [
|
||||||
|
"地址簿名称"
|
||||||
|
],
|
||||||
|
"summary": "创建地址簿名称",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"description": "地址簿集合信息",
|
"description": "地址簿名称信息",
|
||||||
"name": "body",
|
"name": "body",
|
||||||
"in": "body",
|
"in": "body",
|
||||||
"required": true,
|
"required": true,
|
||||||
@@ -407,17 +410,20 @@ const docTemplateadmin = `{
|
|||||||
"token": []
|
"token": []
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"description": "地址簿集合删除",
|
"description": "地址簿名称删除",
|
||||||
"consumes": [
|
"consumes": [
|
||||||
"application/json"
|
"application/json"
|
||||||
],
|
],
|
||||||
"produces": [
|
"produces": [
|
||||||
"application/json"
|
"application/json"
|
||||||
],
|
],
|
||||||
"summary": "地址簿集合删除",
|
"tags": [
|
||||||
|
"地址簿名称"
|
||||||
|
],
|
||||||
|
"summary": "地址簿名称删除",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"description": "地址簿集合信息",
|
"description": "地址簿名称信息",
|
||||||
"name": "body",
|
"name": "body",
|
||||||
"in": "body",
|
"in": "body",
|
||||||
"required": true,
|
"required": true,
|
||||||
@@ -449,14 +455,17 @@ const docTemplateadmin = `{
|
|||||||
"token": []
|
"token": []
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"description": "地址簿集合详情",
|
"description": "地址簿名称详情",
|
||||||
"consumes": [
|
"consumes": [
|
||||||
"application/json"
|
"application/json"
|
||||||
],
|
],
|
||||||
"produces": [
|
"produces": [
|
||||||
"application/json"
|
"application/json"
|
||||||
],
|
],
|
||||||
"summary": "地址簿集合详情",
|
"tags": [
|
||||||
|
"地址簿名称"
|
||||||
|
],
|
||||||
|
"summary": "地址簿名称详情",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"type": "integer",
|
"type": "integer",
|
||||||
@@ -501,14 +510,17 @@ const docTemplateadmin = `{
|
|||||||
"token": []
|
"token": []
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"description": "地址簿集合列表",
|
"description": "地址簿名称列表",
|
||||||
"consumes": [
|
"consumes": [
|
||||||
"application/json"
|
"application/json"
|
||||||
],
|
],
|
||||||
"produces": [
|
"produces": [
|
||||||
"application/json"
|
"application/json"
|
||||||
],
|
],
|
||||||
"summary": "地址簿集合列表",
|
"tags": [
|
||||||
|
"地址簿名称"
|
||||||
|
],
|
||||||
|
"summary": "地址簿名称列表",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"type": "integer",
|
"type": "integer",
|
||||||
@@ -570,17 +582,20 @@ const docTemplateadmin = `{
|
|||||||
"token": []
|
"token": []
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"description": "地址簿集合编辑",
|
"description": "地址簿名称编辑",
|
||||||
"consumes": [
|
"consumes": [
|
||||||
"application/json"
|
"application/json"
|
||||||
],
|
],
|
||||||
"produces": [
|
"produces": [
|
||||||
"application/json"
|
"application/json"
|
||||||
],
|
],
|
||||||
"summary": "地址簿集合编辑",
|
"tags": [
|
||||||
|
"地址簿名称"
|
||||||
|
],
|
||||||
|
"summary": "地址簿名称编辑",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"description": "地址簿集合信息",
|
"description": "地址簿名称信息",
|
||||||
"name": "body",
|
"name": "body",
|
||||||
"in": "body",
|
"in": "body",
|
||||||
"required": true,
|
"required": true,
|
||||||
@@ -624,17 +639,20 @@ const docTemplateadmin = `{
|
|||||||
"token": []
|
"token": []
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"description": "创建地址簿集合规则",
|
"description": "创建地址簿规则",
|
||||||
"consumes": [
|
"consumes": [
|
||||||
"application/json"
|
"application/json"
|
||||||
],
|
],
|
||||||
"produces": [
|
"produces": [
|
||||||
"application/json"
|
"application/json"
|
||||||
],
|
],
|
||||||
"summary": "创建地址簿集合规则",
|
"tags": [
|
||||||
|
"地址簿规则"
|
||||||
|
],
|
||||||
|
"summary": "创建地址簿规则",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"description": "地址簿集合规则信息",
|
"description": "地址簿规则信息",
|
||||||
"name": "body",
|
"name": "body",
|
||||||
"in": "body",
|
"in": "body",
|
||||||
"required": true,
|
"required": true,
|
||||||
@@ -678,17 +696,20 @@ const docTemplateadmin = `{
|
|||||||
"token": []
|
"token": []
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"description": "地址簿集合规则删除",
|
"description": "地址簿规则删除",
|
||||||
"consumes": [
|
"consumes": [
|
||||||
"application/json"
|
"application/json"
|
||||||
],
|
],
|
||||||
"produces": [
|
"produces": [
|
||||||
"application/json"
|
"application/json"
|
||||||
],
|
],
|
||||||
"summary": "地址簿集合规则删除",
|
"tags": [
|
||||||
|
"地址簿规则"
|
||||||
|
],
|
||||||
|
"summary": "地址簿规则删除",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"description": "地址簿集合规则信息",
|
"description": "地址簿规则信息",
|
||||||
"name": "body",
|
"name": "body",
|
||||||
"in": "body",
|
"in": "body",
|
||||||
"required": true,
|
"required": true,
|
||||||
@@ -720,14 +741,17 @@ const docTemplateadmin = `{
|
|||||||
"token": []
|
"token": []
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"description": "地址簿集合规则详情",
|
"description": "地址簿规则详情",
|
||||||
"consumes": [
|
"consumes": [
|
||||||
"application/json"
|
"application/json"
|
||||||
],
|
],
|
||||||
"produces": [
|
"produces": [
|
||||||
"application/json"
|
"application/json"
|
||||||
],
|
],
|
||||||
"summary": "地址簿集合规则详情",
|
"tags": [
|
||||||
|
"地址簿规则"
|
||||||
|
],
|
||||||
|
"summary": "地址簿规则详情",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"type": "integer",
|
"type": "integer",
|
||||||
@@ -772,14 +796,17 @@ const docTemplateadmin = `{
|
|||||||
"token": []
|
"token": []
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"description": "地址簿集合规则列表",
|
"description": "地址簿规则列表",
|
||||||
"consumes": [
|
"consumes": [
|
||||||
"application/json"
|
"application/json"
|
||||||
],
|
],
|
||||||
"produces": [
|
"produces": [
|
||||||
"application/json"
|
"application/json"
|
||||||
],
|
],
|
||||||
"summary": "地址簿集合规则列表",
|
"tags": [
|
||||||
|
"地址簿规则"
|
||||||
|
],
|
||||||
|
"summary": "地址簿规则列表",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"type": "integer",
|
"type": "integer",
|
||||||
@@ -847,17 +874,20 @@ const docTemplateadmin = `{
|
|||||||
"token": []
|
"token": []
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"description": "地址簿集合规则编辑",
|
"description": "地址簿规则编辑",
|
||||||
"consumes": [
|
"consumes": [
|
||||||
"application/json"
|
"application/json"
|
||||||
],
|
],
|
||||||
"produces": [
|
"produces": [
|
||||||
"application/json"
|
"application/json"
|
||||||
],
|
],
|
||||||
"summary": "地址簿集合规则编辑",
|
"tags": [
|
||||||
|
"地址簿规则"
|
||||||
|
],
|
||||||
|
"summary": "地址簿规则编辑",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"description": "地址簿集合规则信息",
|
"description": "地址簿规则信息",
|
||||||
"name": "body",
|
"name": "body",
|
||||||
"in": "body",
|
"in": "body",
|
||||||
"required": true,
|
"required": true,
|
||||||
@@ -928,7 +958,214 @@ const docTemplateadmin = `{
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"/admin/audit_conn/batchDelete": {
|
||||||
|
"post": {
|
||||||
|
"security": [
|
||||||
|
{
|
||||||
|
"token": []
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"description": "链接日志批量删除",
|
||||||
|
"consumes": [
|
||||||
|
"application/json"
|
||||||
|
],
|
||||||
|
"produces": [
|
||||||
|
"application/json"
|
||||||
|
],
|
||||||
|
"tags": [
|
||||||
|
"链接日志"
|
||||||
|
],
|
||||||
|
"summary": "链接日志批量删除",
|
||||||
|
"parameters": [
|
||||||
|
{
|
||||||
|
"description": "链接日志",
|
||||||
|
"name": "body",
|
||||||
|
"in": "body",
|
||||||
|
"required": true,
|
||||||
|
"schema": {
|
||||||
|
"$ref": "#/definitions/admin.AuditConnLogIds"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"responses": {
|
||||||
|
"200": {
|
||||||
|
"description": "OK",
|
||||||
|
"schema": {
|
||||||
|
"$ref": "#/definitions/response.Response"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"500": {
|
||||||
|
"description": "Internal Server Error",
|
||||||
|
"schema": {
|
||||||
|
"$ref": "#/definitions/response.Response"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"/admin/audit_conn/delete": {
|
"/admin/audit_conn/delete": {
|
||||||
|
"post": {
|
||||||
|
"security": [
|
||||||
|
{
|
||||||
|
"token": []
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"description": "链接日志删除",
|
||||||
|
"consumes": [
|
||||||
|
"application/json"
|
||||||
|
],
|
||||||
|
"produces": [
|
||||||
|
"application/json"
|
||||||
|
],
|
||||||
|
"tags": [
|
||||||
|
"链接日志"
|
||||||
|
],
|
||||||
|
"summary": "链接日志删除",
|
||||||
|
"parameters": [
|
||||||
|
{
|
||||||
|
"description": "链接日志信息",
|
||||||
|
"name": "body",
|
||||||
|
"in": "body",
|
||||||
|
"required": true,
|
||||||
|
"schema": {
|
||||||
|
"$ref": "#/definitions/model.AuditConn"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"responses": {
|
||||||
|
"200": {
|
||||||
|
"description": "OK",
|
||||||
|
"schema": {
|
||||||
|
"$ref": "#/definitions/response.Response"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"500": {
|
||||||
|
"description": "Internal Server Error",
|
||||||
|
"schema": {
|
||||||
|
"$ref": "#/definitions/response.Response"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"/admin/audit_conn/list": {
|
||||||
|
"get": {
|
||||||
|
"security": [
|
||||||
|
{
|
||||||
|
"token": []
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"description": "链接日志列表",
|
||||||
|
"consumes": [
|
||||||
|
"application/json"
|
||||||
|
],
|
||||||
|
"produces": [
|
||||||
|
"application/json"
|
||||||
|
],
|
||||||
|
"tags": [
|
||||||
|
"链接日志"
|
||||||
|
],
|
||||||
|
"summary": "链接日志列表",
|
||||||
|
"parameters": [
|
||||||
|
{
|
||||||
|
"type": "integer",
|
||||||
|
"description": "页码",
|
||||||
|
"name": "page",
|
||||||
|
"in": "query"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "integer",
|
||||||
|
"description": "页大小",
|
||||||
|
"name": "page_size",
|
||||||
|
"in": "query"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "integer",
|
||||||
|
"description": "目标设备",
|
||||||
|
"name": "peer_id",
|
||||||
|
"in": "query"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "integer",
|
||||||
|
"description": "来源设备",
|
||||||
|
"name": "from_peer",
|
||||||
|
"in": "query"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"responses": {
|
||||||
|
"200": {
|
||||||
|
"description": "OK",
|
||||||
|
"schema": {
|
||||||
|
"allOf": [
|
||||||
|
{
|
||||||
|
"$ref": "#/definitions/response.Response"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"data": {
|
||||||
|
"$ref": "#/definitions/model.AuditConnList"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"500": {
|
||||||
|
"description": "Internal Server Error",
|
||||||
|
"schema": {
|
||||||
|
"$ref": "#/definitions/response.Response"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"/admin/audit_file/batchDelete": {
|
||||||
|
"post": {
|
||||||
|
"security": [
|
||||||
|
{
|
||||||
|
"token": []
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"description": "文件日志批量删除",
|
||||||
|
"consumes": [
|
||||||
|
"application/json"
|
||||||
|
],
|
||||||
|
"produces": [
|
||||||
|
"application/json"
|
||||||
|
],
|
||||||
|
"tags": [
|
||||||
|
"文件日志"
|
||||||
|
],
|
||||||
|
"summary": "文件日志批量删除",
|
||||||
|
"parameters": [
|
||||||
|
{
|
||||||
|
"description": "文件日志",
|
||||||
|
"name": "body",
|
||||||
|
"in": "body",
|
||||||
|
"required": true,
|
||||||
|
"schema": {
|
||||||
|
"$ref": "#/definitions/admin.AuditFileLogIds"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"responses": {
|
||||||
|
"200": {
|
||||||
|
"description": "OK",
|
||||||
|
"schema": {
|
||||||
|
"$ref": "#/definitions/response.Response"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"500": {
|
||||||
|
"description": "Internal Server Error",
|
||||||
|
"schema": {
|
||||||
|
"$ref": "#/definitions/response.Response"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"/admin/audit_file/delete": {
|
||||||
"post": {
|
"post": {
|
||||||
"security": [
|
"security": [
|
||||||
{
|
{
|
||||||
@@ -973,7 +1210,7 @@ const docTemplateadmin = `{
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"/admin/audit_conn/list": {
|
"/admin/audit_file/list": {
|
||||||
"get": {
|
"get": {
|
||||||
"security": [
|
"security": [
|
||||||
{
|
{
|
||||||
@@ -1045,6 +1282,108 @@ const docTemplateadmin = `{
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"/admin/config/admin": {
|
||||||
|
"get": {
|
||||||
|
"security": [
|
||||||
|
{
|
||||||
|
"token": []
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"description": "ADMIN服务配置",
|
||||||
|
"consumes": [
|
||||||
|
"application/json"
|
||||||
|
],
|
||||||
|
"produces": [
|
||||||
|
"application/json"
|
||||||
|
],
|
||||||
|
"tags": [
|
||||||
|
"ADMIN"
|
||||||
|
],
|
||||||
|
"summary": "ADMIN服务配置",
|
||||||
|
"responses": {
|
||||||
|
"200": {
|
||||||
|
"description": "OK",
|
||||||
|
"schema": {
|
||||||
|
"$ref": "#/definitions/response.Response"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"500": {
|
||||||
|
"description": "Internal Server Error",
|
||||||
|
"schema": {
|
||||||
|
"$ref": "#/definitions/response.Response"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"/admin/config/app": {
|
||||||
|
"get": {
|
||||||
|
"security": [
|
||||||
|
{
|
||||||
|
"token": []
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"description": "APP服务配置",
|
||||||
|
"consumes": [
|
||||||
|
"application/json"
|
||||||
|
],
|
||||||
|
"produces": [
|
||||||
|
"application/json"
|
||||||
|
],
|
||||||
|
"tags": [
|
||||||
|
"ADMIN"
|
||||||
|
],
|
||||||
|
"summary": "APP服务配置",
|
||||||
|
"responses": {
|
||||||
|
"200": {
|
||||||
|
"description": "OK",
|
||||||
|
"schema": {
|
||||||
|
"$ref": "#/definitions/response.Response"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"500": {
|
||||||
|
"description": "Internal Server Error",
|
||||||
|
"schema": {
|
||||||
|
"$ref": "#/definitions/response.Response"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"/admin/config/server": {
|
||||||
|
"get": {
|
||||||
|
"security": [
|
||||||
|
{
|
||||||
|
"token": []
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"description": "服务配置,给webclient提供api-server",
|
||||||
|
"consumes": [
|
||||||
|
"application/json"
|
||||||
|
],
|
||||||
|
"produces": [
|
||||||
|
"application/json"
|
||||||
|
],
|
||||||
|
"tags": [
|
||||||
|
"ADMIN"
|
||||||
|
],
|
||||||
|
"summary": "RUSTDESK服务配置",
|
||||||
|
"responses": {
|
||||||
|
"200": {
|
||||||
|
"description": "OK",
|
||||||
|
"schema": {
|
||||||
|
"$ref": "#/definitions/response.Response"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"500": {
|
||||||
|
"description": "Internal Server Error",
|
||||||
|
"schema": {
|
||||||
|
"$ref": "#/definitions/response.Response"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"/admin/file/oss_token": {
|
"/admin/file/oss_token": {
|
||||||
"get": {
|
"get": {
|
||||||
"security": [
|
"security": [
|
||||||
@@ -1492,7 +1831,7 @@ const docTemplateadmin = `{
|
|||||||
"token": []
|
"token": []
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"description": "登录日志删除",
|
"description": "登录日志批量删除",
|
||||||
"consumes": [
|
"consumes": [
|
||||||
"application/json"
|
"application/json"
|
||||||
],
|
],
|
||||||
@@ -1502,15 +1841,15 @@ const docTemplateadmin = `{
|
|||||||
"tags": [
|
"tags": [
|
||||||
"登录日志"
|
"登录日志"
|
||||||
],
|
],
|
||||||
"summary": "登录日志删除",
|
"summary": "登录日志批量删除",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"description": "登录日志信息",
|
"description": "登录日志",
|
||||||
"name": "body",
|
"name": "body",
|
||||||
"in": "body",
|
"in": "body",
|
||||||
"required": true,
|
"required": true,
|
||||||
"schema": {
|
"schema": {
|
||||||
"$ref": "#/definitions/model.LoginLog"
|
"$ref": "#/definitions/admin.LoginLogIds"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
@@ -2011,6 +2350,51 @@ const docTemplateadmin = `{
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"/admin/peer/batchDelete": {
|
||||||
|
"post": {
|
||||||
|
"security": [
|
||||||
|
{
|
||||||
|
"token": []
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"description": "批量设备删除",
|
||||||
|
"consumes": [
|
||||||
|
"application/json"
|
||||||
|
],
|
||||||
|
"produces": [
|
||||||
|
"application/json"
|
||||||
|
],
|
||||||
|
"tags": [
|
||||||
|
"设备"
|
||||||
|
],
|
||||||
|
"summary": "批量设备删除",
|
||||||
|
"parameters": [
|
||||||
|
{
|
||||||
|
"description": "设备id",
|
||||||
|
"name": "body",
|
||||||
|
"in": "body",
|
||||||
|
"required": true,
|
||||||
|
"schema": {
|
||||||
|
"$ref": "#/definitions/admin.PeerBatchDeleteForm"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"responses": {
|
||||||
|
"200": {
|
||||||
|
"description": "OK",
|
||||||
|
"schema": {
|
||||||
|
"$ref": "#/definitions/response.Response"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"500": {
|
||||||
|
"description": "Internal Server Error",
|
||||||
|
"schema": {
|
||||||
|
"$ref": "#/definitions/response.Response"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"/admin/peer/create": {
|
"/admin/peer/create": {
|
||||||
"post": {
|
"post": {
|
||||||
"security": [
|
"security": [
|
||||||
@@ -2075,7 +2459,7 @@ const docTemplateadmin = `{
|
|||||||
"token": []
|
"token": []
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"description": "批量设备删除",
|
"description": "设备删除",
|
||||||
"consumes": [
|
"consumes": [
|
||||||
"application/json"
|
"application/json"
|
||||||
],
|
],
|
||||||
@@ -2085,15 +2469,15 @@ const docTemplateadmin = `{
|
|||||||
"tags": [
|
"tags": [
|
||||||
"设备"
|
"设备"
|
||||||
],
|
],
|
||||||
"summary": "批量设备删除",
|
"summary": "设备删除",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"description": "设备id",
|
"description": "设备信息",
|
||||||
"name": "body",
|
"name": "body",
|
||||||
"in": "body",
|
"in": "body",
|
||||||
"required": true,
|
"required": true,
|
||||||
"schema": {
|
"schema": {
|
||||||
"$ref": "#/definitions/admin.PeerBatchDeleteForm"
|
"$ref": "#/definitions/admin.PeerForm"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
@@ -2992,6 +3376,90 @@ const docTemplateadmin = `{
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"/admin/user/myPeer": {
|
||||||
|
"get": {
|
||||||
|
"security": [
|
||||||
|
{
|
||||||
|
"token": []
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"description": "我的设备列表",
|
||||||
|
"consumes": [
|
||||||
|
"application/json"
|
||||||
|
],
|
||||||
|
"produces": [
|
||||||
|
"application/json"
|
||||||
|
],
|
||||||
|
"tags": [
|
||||||
|
"设备"
|
||||||
|
],
|
||||||
|
"summary": "我的设备列表",
|
||||||
|
"parameters": [
|
||||||
|
{
|
||||||
|
"type": "integer",
|
||||||
|
"description": "页码",
|
||||||
|
"name": "page",
|
||||||
|
"in": "query"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "integer",
|
||||||
|
"description": "页大小",
|
||||||
|
"name": "page_size",
|
||||||
|
"in": "query"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "integer",
|
||||||
|
"description": "时间",
|
||||||
|
"name": "time_ago",
|
||||||
|
"in": "query"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "string",
|
||||||
|
"description": "ID",
|
||||||
|
"name": "id",
|
||||||
|
"in": "query"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "string",
|
||||||
|
"description": "主机名",
|
||||||
|
"name": "hostname",
|
||||||
|
"in": "query"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "string",
|
||||||
|
"description": "uuids 用逗号分隔",
|
||||||
|
"name": "uuids",
|
||||||
|
"in": "query"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"responses": {
|
||||||
|
"200": {
|
||||||
|
"description": "OK",
|
||||||
|
"schema": {
|
||||||
|
"allOf": [
|
||||||
|
{
|
||||||
|
"$ref": "#/definitions/response.Response"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"data": {
|
||||||
|
"$ref": "#/definitions/model.PeerList"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"500": {
|
||||||
|
"description": "Internal Server Error",
|
||||||
|
"schema": {
|
||||||
|
"$ref": "#/definitions/response.Response"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"/admin/user/update": {
|
"/admin/user/update": {
|
||||||
"post": {
|
"post": {
|
||||||
"security": [
|
"security": [
|
||||||
@@ -3293,6 +3761,34 @@ const docTemplateadmin = `{
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"admin.AuditConnLogIds": {
|
||||||
|
"type": "object",
|
||||||
|
"required": [
|
||||||
|
"ids"
|
||||||
|
],
|
||||||
|
"properties": {
|
||||||
|
"ids": {
|
||||||
|
"type": "array",
|
||||||
|
"items": {
|
||||||
|
"type": "integer"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"admin.AuditFileLogIds": {
|
||||||
|
"type": "object",
|
||||||
|
"required": [
|
||||||
|
"ids"
|
||||||
|
],
|
||||||
|
"properties": {
|
||||||
|
"ids": {
|
||||||
|
"type": "array",
|
||||||
|
"items": {
|
||||||
|
"type": "integer"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"admin.ChangeCurPasswordForm": {
|
"admin.ChangeCurPasswordForm": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"required": [
|
"required": [
|
||||||
@@ -3329,9 +3825,29 @@ const docTemplateadmin = `{
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"admin.LoginLogIds": {
|
||||||
|
"type": "object",
|
||||||
|
"required": [
|
||||||
|
"ids"
|
||||||
|
],
|
||||||
|
"properties": {
|
||||||
|
"ids": {
|
||||||
|
"type": "array",
|
||||||
|
"items": {
|
||||||
|
"type": "integer"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"admin.LoginPayload": {
|
"admin.LoginPayload": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
|
"avatar": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"email": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
"nickname": {
|
"nickname": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
@@ -3354,7 +3870,7 @@ const docTemplateadmin = `{
|
|||||||
"required": [
|
"required": [
|
||||||
"client_id",
|
"client_id",
|
||||||
"client_secret",
|
"client_secret",
|
||||||
"op",
|
"oauth_type",
|
||||||
"redirect_url"
|
"redirect_url"
|
||||||
],
|
],
|
||||||
"properties": {
|
"properties": {
|
||||||
@@ -3373,6 +3889,9 @@ const docTemplateadmin = `{
|
|||||||
"issuer": {
|
"issuer": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
|
"oauth_type": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
"op": {
|
"op": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
@@ -3492,6 +4011,10 @@ const docTemplateadmin = `{
|
|||||||
"avatar": {
|
"avatar": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
|
"email": {
|
||||||
|
"description": "validate:\"required,email\" email不强制",
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
"group_id": {
|
"group_id": {
|
||||||
"type": "integer"
|
"type": "integer"
|
||||||
},
|
},
|
||||||
@@ -3516,18 +4039,18 @@ const docTemplateadmin = `{
|
|||||||
"username": {
|
"username": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"maxLength": 10,
|
"maxLength": 10,
|
||||||
"minLength": 4
|
"minLength": 2
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"admin.UserOauthItem": {
|
"admin.UserOauthItem": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
|
"op": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
"status": {
|
"status": {
|
||||||
"type": "integer"
|
"type": "integer"
|
||||||
},
|
|
||||||
"third_type": {
|
|
||||||
"type": "string"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -3898,6 +4421,9 @@ const docTemplateadmin = `{
|
|||||||
"created_at": {
|
"created_at": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
|
"device_id": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
"id": {
|
"id": {
|
||||||
"type": "integer"
|
"type": "integer"
|
||||||
},
|
},
|
||||||
@@ -3967,6 +4493,9 @@ const docTemplateadmin = `{
|
|||||||
"issuer": {
|
"issuer": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
|
"oauth_type": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
"op": {
|
"op": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
@@ -4145,6 +4674,9 @@ const docTemplateadmin = `{
|
|||||||
"created_at": {
|
"created_at": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
|
"email": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
"group_id": {
|
"group_id": {
|
||||||
"type": "integer"
|
"type": "integer"
|
||||||
},
|
},
|
||||||
@@ -4194,6 +4726,12 @@ const docTemplateadmin = `{
|
|||||||
"created_at": {
|
"created_at": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
|
"device_id": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"device_uuid": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
"expired_at": {
|
"expired_at": {
|
||||||
"type": "integer"
|
"type": "integer"
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -346,17 +346,20 @@
|
|||||||
"token": []
|
"token": []
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"description": "创建地址簿集合",
|
"description": "创建地址簿名称",
|
||||||
"consumes": [
|
"consumes": [
|
||||||
"application/json"
|
"application/json"
|
||||||
],
|
],
|
||||||
"produces": [
|
"produces": [
|
||||||
"application/json"
|
"application/json"
|
||||||
],
|
],
|
||||||
"summary": "创建地址簿集合",
|
"tags": [
|
||||||
|
"地址簿名称"
|
||||||
|
],
|
||||||
|
"summary": "创建地址簿名称",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"description": "地址簿集合信息",
|
"description": "地址簿名称信息",
|
||||||
"name": "body",
|
"name": "body",
|
||||||
"in": "body",
|
"in": "body",
|
||||||
"required": true,
|
"required": true,
|
||||||
@@ -400,17 +403,20 @@
|
|||||||
"token": []
|
"token": []
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"description": "地址簿集合删除",
|
"description": "地址簿名称删除",
|
||||||
"consumes": [
|
"consumes": [
|
||||||
"application/json"
|
"application/json"
|
||||||
],
|
],
|
||||||
"produces": [
|
"produces": [
|
||||||
"application/json"
|
"application/json"
|
||||||
],
|
],
|
||||||
"summary": "地址簿集合删除",
|
"tags": [
|
||||||
|
"地址簿名称"
|
||||||
|
],
|
||||||
|
"summary": "地址簿名称删除",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"description": "地址簿集合信息",
|
"description": "地址簿名称信息",
|
||||||
"name": "body",
|
"name": "body",
|
||||||
"in": "body",
|
"in": "body",
|
||||||
"required": true,
|
"required": true,
|
||||||
@@ -442,14 +448,17 @@
|
|||||||
"token": []
|
"token": []
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"description": "地址簿集合详情",
|
"description": "地址簿名称详情",
|
||||||
"consumes": [
|
"consumes": [
|
||||||
"application/json"
|
"application/json"
|
||||||
],
|
],
|
||||||
"produces": [
|
"produces": [
|
||||||
"application/json"
|
"application/json"
|
||||||
],
|
],
|
||||||
"summary": "地址簿集合详情",
|
"tags": [
|
||||||
|
"地址簿名称"
|
||||||
|
],
|
||||||
|
"summary": "地址簿名称详情",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"type": "integer",
|
"type": "integer",
|
||||||
@@ -494,14 +503,17 @@
|
|||||||
"token": []
|
"token": []
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"description": "地址簿集合列表",
|
"description": "地址簿名称列表",
|
||||||
"consumes": [
|
"consumes": [
|
||||||
"application/json"
|
"application/json"
|
||||||
],
|
],
|
||||||
"produces": [
|
"produces": [
|
||||||
"application/json"
|
"application/json"
|
||||||
],
|
],
|
||||||
"summary": "地址簿集合列表",
|
"tags": [
|
||||||
|
"地址簿名称"
|
||||||
|
],
|
||||||
|
"summary": "地址簿名称列表",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"type": "integer",
|
"type": "integer",
|
||||||
@@ -563,17 +575,20 @@
|
|||||||
"token": []
|
"token": []
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"description": "地址簿集合编辑",
|
"description": "地址簿名称编辑",
|
||||||
"consumes": [
|
"consumes": [
|
||||||
"application/json"
|
"application/json"
|
||||||
],
|
],
|
||||||
"produces": [
|
"produces": [
|
||||||
"application/json"
|
"application/json"
|
||||||
],
|
],
|
||||||
"summary": "地址簿集合编辑",
|
"tags": [
|
||||||
|
"地址簿名称"
|
||||||
|
],
|
||||||
|
"summary": "地址簿名称编辑",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"description": "地址簿集合信息",
|
"description": "地址簿名称信息",
|
||||||
"name": "body",
|
"name": "body",
|
||||||
"in": "body",
|
"in": "body",
|
||||||
"required": true,
|
"required": true,
|
||||||
@@ -617,17 +632,20 @@
|
|||||||
"token": []
|
"token": []
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"description": "创建地址簿集合规则",
|
"description": "创建地址簿规则",
|
||||||
"consumes": [
|
"consumes": [
|
||||||
"application/json"
|
"application/json"
|
||||||
],
|
],
|
||||||
"produces": [
|
"produces": [
|
||||||
"application/json"
|
"application/json"
|
||||||
],
|
],
|
||||||
"summary": "创建地址簿集合规则",
|
"tags": [
|
||||||
|
"地址簿规则"
|
||||||
|
],
|
||||||
|
"summary": "创建地址簿规则",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"description": "地址簿集合规则信息",
|
"description": "地址簿规则信息",
|
||||||
"name": "body",
|
"name": "body",
|
||||||
"in": "body",
|
"in": "body",
|
||||||
"required": true,
|
"required": true,
|
||||||
@@ -671,17 +689,20 @@
|
|||||||
"token": []
|
"token": []
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"description": "地址簿集合规则删除",
|
"description": "地址簿规则删除",
|
||||||
"consumes": [
|
"consumes": [
|
||||||
"application/json"
|
"application/json"
|
||||||
],
|
],
|
||||||
"produces": [
|
"produces": [
|
||||||
"application/json"
|
"application/json"
|
||||||
],
|
],
|
||||||
"summary": "地址簿集合规则删除",
|
"tags": [
|
||||||
|
"地址簿规则"
|
||||||
|
],
|
||||||
|
"summary": "地址簿规则删除",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"description": "地址簿集合规则信息",
|
"description": "地址簿规则信息",
|
||||||
"name": "body",
|
"name": "body",
|
||||||
"in": "body",
|
"in": "body",
|
||||||
"required": true,
|
"required": true,
|
||||||
@@ -713,14 +734,17 @@
|
|||||||
"token": []
|
"token": []
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"description": "地址簿集合规则详情",
|
"description": "地址簿规则详情",
|
||||||
"consumes": [
|
"consumes": [
|
||||||
"application/json"
|
"application/json"
|
||||||
],
|
],
|
||||||
"produces": [
|
"produces": [
|
||||||
"application/json"
|
"application/json"
|
||||||
],
|
],
|
||||||
"summary": "地址簿集合规则详情",
|
"tags": [
|
||||||
|
"地址簿规则"
|
||||||
|
],
|
||||||
|
"summary": "地址簿规则详情",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"type": "integer",
|
"type": "integer",
|
||||||
@@ -765,14 +789,17 @@
|
|||||||
"token": []
|
"token": []
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"description": "地址簿集合规则列表",
|
"description": "地址簿规则列表",
|
||||||
"consumes": [
|
"consumes": [
|
||||||
"application/json"
|
"application/json"
|
||||||
],
|
],
|
||||||
"produces": [
|
"produces": [
|
||||||
"application/json"
|
"application/json"
|
||||||
],
|
],
|
||||||
"summary": "地址簿集合规则列表",
|
"tags": [
|
||||||
|
"地址簿规则"
|
||||||
|
],
|
||||||
|
"summary": "地址簿规则列表",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"type": "integer",
|
"type": "integer",
|
||||||
@@ -840,17 +867,20 @@
|
|||||||
"token": []
|
"token": []
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"description": "地址簿集合规则编辑",
|
"description": "地址簿规则编辑",
|
||||||
"consumes": [
|
"consumes": [
|
||||||
"application/json"
|
"application/json"
|
||||||
],
|
],
|
||||||
"produces": [
|
"produces": [
|
||||||
"application/json"
|
"application/json"
|
||||||
],
|
],
|
||||||
"summary": "地址簿集合规则编辑",
|
"tags": [
|
||||||
|
"地址簿规则"
|
||||||
|
],
|
||||||
|
"summary": "地址簿规则编辑",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"description": "地址簿集合规则信息",
|
"description": "地址簿规则信息",
|
||||||
"name": "body",
|
"name": "body",
|
||||||
"in": "body",
|
"in": "body",
|
||||||
"required": true,
|
"required": true,
|
||||||
@@ -921,7 +951,214 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"/admin/audit_conn/batchDelete": {
|
||||||
|
"post": {
|
||||||
|
"security": [
|
||||||
|
{
|
||||||
|
"token": []
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"description": "链接日志批量删除",
|
||||||
|
"consumes": [
|
||||||
|
"application/json"
|
||||||
|
],
|
||||||
|
"produces": [
|
||||||
|
"application/json"
|
||||||
|
],
|
||||||
|
"tags": [
|
||||||
|
"链接日志"
|
||||||
|
],
|
||||||
|
"summary": "链接日志批量删除",
|
||||||
|
"parameters": [
|
||||||
|
{
|
||||||
|
"description": "链接日志",
|
||||||
|
"name": "body",
|
||||||
|
"in": "body",
|
||||||
|
"required": true,
|
||||||
|
"schema": {
|
||||||
|
"$ref": "#/definitions/admin.AuditConnLogIds"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"responses": {
|
||||||
|
"200": {
|
||||||
|
"description": "OK",
|
||||||
|
"schema": {
|
||||||
|
"$ref": "#/definitions/response.Response"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"500": {
|
||||||
|
"description": "Internal Server Error",
|
||||||
|
"schema": {
|
||||||
|
"$ref": "#/definitions/response.Response"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"/admin/audit_conn/delete": {
|
"/admin/audit_conn/delete": {
|
||||||
|
"post": {
|
||||||
|
"security": [
|
||||||
|
{
|
||||||
|
"token": []
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"description": "链接日志删除",
|
||||||
|
"consumes": [
|
||||||
|
"application/json"
|
||||||
|
],
|
||||||
|
"produces": [
|
||||||
|
"application/json"
|
||||||
|
],
|
||||||
|
"tags": [
|
||||||
|
"链接日志"
|
||||||
|
],
|
||||||
|
"summary": "链接日志删除",
|
||||||
|
"parameters": [
|
||||||
|
{
|
||||||
|
"description": "链接日志信息",
|
||||||
|
"name": "body",
|
||||||
|
"in": "body",
|
||||||
|
"required": true,
|
||||||
|
"schema": {
|
||||||
|
"$ref": "#/definitions/model.AuditConn"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"responses": {
|
||||||
|
"200": {
|
||||||
|
"description": "OK",
|
||||||
|
"schema": {
|
||||||
|
"$ref": "#/definitions/response.Response"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"500": {
|
||||||
|
"description": "Internal Server Error",
|
||||||
|
"schema": {
|
||||||
|
"$ref": "#/definitions/response.Response"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"/admin/audit_conn/list": {
|
||||||
|
"get": {
|
||||||
|
"security": [
|
||||||
|
{
|
||||||
|
"token": []
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"description": "链接日志列表",
|
||||||
|
"consumes": [
|
||||||
|
"application/json"
|
||||||
|
],
|
||||||
|
"produces": [
|
||||||
|
"application/json"
|
||||||
|
],
|
||||||
|
"tags": [
|
||||||
|
"链接日志"
|
||||||
|
],
|
||||||
|
"summary": "链接日志列表",
|
||||||
|
"parameters": [
|
||||||
|
{
|
||||||
|
"type": "integer",
|
||||||
|
"description": "页码",
|
||||||
|
"name": "page",
|
||||||
|
"in": "query"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "integer",
|
||||||
|
"description": "页大小",
|
||||||
|
"name": "page_size",
|
||||||
|
"in": "query"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "integer",
|
||||||
|
"description": "目标设备",
|
||||||
|
"name": "peer_id",
|
||||||
|
"in": "query"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "integer",
|
||||||
|
"description": "来源设备",
|
||||||
|
"name": "from_peer",
|
||||||
|
"in": "query"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"responses": {
|
||||||
|
"200": {
|
||||||
|
"description": "OK",
|
||||||
|
"schema": {
|
||||||
|
"allOf": [
|
||||||
|
{
|
||||||
|
"$ref": "#/definitions/response.Response"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"data": {
|
||||||
|
"$ref": "#/definitions/model.AuditConnList"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"500": {
|
||||||
|
"description": "Internal Server Error",
|
||||||
|
"schema": {
|
||||||
|
"$ref": "#/definitions/response.Response"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"/admin/audit_file/batchDelete": {
|
||||||
|
"post": {
|
||||||
|
"security": [
|
||||||
|
{
|
||||||
|
"token": []
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"description": "文件日志批量删除",
|
||||||
|
"consumes": [
|
||||||
|
"application/json"
|
||||||
|
],
|
||||||
|
"produces": [
|
||||||
|
"application/json"
|
||||||
|
],
|
||||||
|
"tags": [
|
||||||
|
"文件日志"
|
||||||
|
],
|
||||||
|
"summary": "文件日志批量删除",
|
||||||
|
"parameters": [
|
||||||
|
{
|
||||||
|
"description": "文件日志",
|
||||||
|
"name": "body",
|
||||||
|
"in": "body",
|
||||||
|
"required": true,
|
||||||
|
"schema": {
|
||||||
|
"$ref": "#/definitions/admin.AuditFileLogIds"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"responses": {
|
||||||
|
"200": {
|
||||||
|
"description": "OK",
|
||||||
|
"schema": {
|
||||||
|
"$ref": "#/definitions/response.Response"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"500": {
|
||||||
|
"description": "Internal Server Error",
|
||||||
|
"schema": {
|
||||||
|
"$ref": "#/definitions/response.Response"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"/admin/audit_file/delete": {
|
||||||
"post": {
|
"post": {
|
||||||
"security": [
|
"security": [
|
||||||
{
|
{
|
||||||
@@ -966,7 +1203,7 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"/admin/audit_conn/list": {
|
"/admin/audit_file/list": {
|
||||||
"get": {
|
"get": {
|
||||||
"security": [
|
"security": [
|
||||||
{
|
{
|
||||||
@@ -1038,6 +1275,108 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"/admin/config/admin": {
|
||||||
|
"get": {
|
||||||
|
"security": [
|
||||||
|
{
|
||||||
|
"token": []
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"description": "ADMIN服务配置",
|
||||||
|
"consumes": [
|
||||||
|
"application/json"
|
||||||
|
],
|
||||||
|
"produces": [
|
||||||
|
"application/json"
|
||||||
|
],
|
||||||
|
"tags": [
|
||||||
|
"ADMIN"
|
||||||
|
],
|
||||||
|
"summary": "ADMIN服务配置",
|
||||||
|
"responses": {
|
||||||
|
"200": {
|
||||||
|
"description": "OK",
|
||||||
|
"schema": {
|
||||||
|
"$ref": "#/definitions/response.Response"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"500": {
|
||||||
|
"description": "Internal Server Error",
|
||||||
|
"schema": {
|
||||||
|
"$ref": "#/definitions/response.Response"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"/admin/config/app": {
|
||||||
|
"get": {
|
||||||
|
"security": [
|
||||||
|
{
|
||||||
|
"token": []
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"description": "APP服务配置",
|
||||||
|
"consumes": [
|
||||||
|
"application/json"
|
||||||
|
],
|
||||||
|
"produces": [
|
||||||
|
"application/json"
|
||||||
|
],
|
||||||
|
"tags": [
|
||||||
|
"ADMIN"
|
||||||
|
],
|
||||||
|
"summary": "APP服务配置",
|
||||||
|
"responses": {
|
||||||
|
"200": {
|
||||||
|
"description": "OK",
|
||||||
|
"schema": {
|
||||||
|
"$ref": "#/definitions/response.Response"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"500": {
|
||||||
|
"description": "Internal Server Error",
|
||||||
|
"schema": {
|
||||||
|
"$ref": "#/definitions/response.Response"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"/admin/config/server": {
|
||||||
|
"get": {
|
||||||
|
"security": [
|
||||||
|
{
|
||||||
|
"token": []
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"description": "服务配置,给webclient提供api-server",
|
||||||
|
"consumes": [
|
||||||
|
"application/json"
|
||||||
|
],
|
||||||
|
"produces": [
|
||||||
|
"application/json"
|
||||||
|
],
|
||||||
|
"tags": [
|
||||||
|
"ADMIN"
|
||||||
|
],
|
||||||
|
"summary": "RUSTDESK服务配置",
|
||||||
|
"responses": {
|
||||||
|
"200": {
|
||||||
|
"description": "OK",
|
||||||
|
"schema": {
|
||||||
|
"$ref": "#/definitions/response.Response"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"500": {
|
||||||
|
"description": "Internal Server Error",
|
||||||
|
"schema": {
|
||||||
|
"$ref": "#/definitions/response.Response"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"/admin/file/oss_token": {
|
"/admin/file/oss_token": {
|
||||||
"get": {
|
"get": {
|
||||||
"security": [
|
"security": [
|
||||||
@@ -1485,7 +1824,7 @@
|
|||||||
"token": []
|
"token": []
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"description": "登录日志删除",
|
"description": "登录日志批量删除",
|
||||||
"consumes": [
|
"consumes": [
|
||||||
"application/json"
|
"application/json"
|
||||||
],
|
],
|
||||||
@@ -1495,15 +1834,15 @@
|
|||||||
"tags": [
|
"tags": [
|
||||||
"登录日志"
|
"登录日志"
|
||||||
],
|
],
|
||||||
"summary": "登录日志删除",
|
"summary": "登录日志批量删除",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"description": "登录日志信息",
|
"description": "登录日志",
|
||||||
"name": "body",
|
"name": "body",
|
||||||
"in": "body",
|
"in": "body",
|
||||||
"required": true,
|
"required": true,
|
||||||
"schema": {
|
"schema": {
|
||||||
"$ref": "#/definitions/model.LoginLog"
|
"$ref": "#/definitions/admin.LoginLogIds"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
@@ -2004,6 +2343,51 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"/admin/peer/batchDelete": {
|
||||||
|
"post": {
|
||||||
|
"security": [
|
||||||
|
{
|
||||||
|
"token": []
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"description": "批量设备删除",
|
||||||
|
"consumes": [
|
||||||
|
"application/json"
|
||||||
|
],
|
||||||
|
"produces": [
|
||||||
|
"application/json"
|
||||||
|
],
|
||||||
|
"tags": [
|
||||||
|
"设备"
|
||||||
|
],
|
||||||
|
"summary": "批量设备删除",
|
||||||
|
"parameters": [
|
||||||
|
{
|
||||||
|
"description": "设备id",
|
||||||
|
"name": "body",
|
||||||
|
"in": "body",
|
||||||
|
"required": true,
|
||||||
|
"schema": {
|
||||||
|
"$ref": "#/definitions/admin.PeerBatchDeleteForm"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"responses": {
|
||||||
|
"200": {
|
||||||
|
"description": "OK",
|
||||||
|
"schema": {
|
||||||
|
"$ref": "#/definitions/response.Response"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"500": {
|
||||||
|
"description": "Internal Server Error",
|
||||||
|
"schema": {
|
||||||
|
"$ref": "#/definitions/response.Response"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"/admin/peer/create": {
|
"/admin/peer/create": {
|
||||||
"post": {
|
"post": {
|
||||||
"security": [
|
"security": [
|
||||||
@@ -2068,7 +2452,7 @@
|
|||||||
"token": []
|
"token": []
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"description": "批量设备删除",
|
"description": "设备删除",
|
||||||
"consumes": [
|
"consumes": [
|
||||||
"application/json"
|
"application/json"
|
||||||
],
|
],
|
||||||
@@ -2078,15 +2462,15 @@
|
|||||||
"tags": [
|
"tags": [
|
||||||
"设备"
|
"设备"
|
||||||
],
|
],
|
||||||
"summary": "批量设备删除",
|
"summary": "设备删除",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"description": "设备id",
|
"description": "设备信息",
|
||||||
"name": "body",
|
"name": "body",
|
||||||
"in": "body",
|
"in": "body",
|
||||||
"required": true,
|
"required": true,
|
||||||
"schema": {
|
"schema": {
|
||||||
"$ref": "#/definitions/admin.PeerBatchDeleteForm"
|
"$ref": "#/definitions/admin.PeerForm"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
@@ -2985,6 +3369,90 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"/admin/user/myPeer": {
|
||||||
|
"get": {
|
||||||
|
"security": [
|
||||||
|
{
|
||||||
|
"token": []
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"description": "我的设备列表",
|
||||||
|
"consumes": [
|
||||||
|
"application/json"
|
||||||
|
],
|
||||||
|
"produces": [
|
||||||
|
"application/json"
|
||||||
|
],
|
||||||
|
"tags": [
|
||||||
|
"设备"
|
||||||
|
],
|
||||||
|
"summary": "我的设备列表",
|
||||||
|
"parameters": [
|
||||||
|
{
|
||||||
|
"type": "integer",
|
||||||
|
"description": "页码",
|
||||||
|
"name": "page",
|
||||||
|
"in": "query"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "integer",
|
||||||
|
"description": "页大小",
|
||||||
|
"name": "page_size",
|
||||||
|
"in": "query"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "integer",
|
||||||
|
"description": "时间",
|
||||||
|
"name": "time_ago",
|
||||||
|
"in": "query"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "string",
|
||||||
|
"description": "ID",
|
||||||
|
"name": "id",
|
||||||
|
"in": "query"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "string",
|
||||||
|
"description": "主机名",
|
||||||
|
"name": "hostname",
|
||||||
|
"in": "query"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "string",
|
||||||
|
"description": "uuids 用逗号分隔",
|
||||||
|
"name": "uuids",
|
||||||
|
"in": "query"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"responses": {
|
||||||
|
"200": {
|
||||||
|
"description": "OK",
|
||||||
|
"schema": {
|
||||||
|
"allOf": [
|
||||||
|
{
|
||||||
|
"$ref": "#/definitions/response.Response"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"data": {
|
||||||
|
"$ref": "#/definitions/model.PeerList"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"500": {
|
||||||
|
"description": "Internal Server Error",
|
||||||
|
"schema": {
|
||||||
|
"$ref": "#/definitions/response.Response"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"/admin/user/update": {
|
"/admin/user/update": {
|
||||||
"post": {
|
"post": {
|
||||||
"security": [
|
"security": [
|
||||||
@@ -3286,6 +3754,34 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"admin.AuditConnLogIds": {
|
||||||
|
"type": "object",
|
||||||
|
"required": [
|
||||||
|
"ids"
|
||||||
|
],
|
||||||
|
"properties": {
|
||||||
|
"ids": {
|
||||||
|
"type": "array",
|
||||||
|
"items": {
|
||||||
|
"type": "integer"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"admin.AuditFileLogIds": {
|
||||||
|
"type": "object",
|
||||||
|
"required": [
|
||||||
|
"ids"
|
||||||
|
],
|
||||||
|
"properties": {
|
||||||
|
"ids": {
|
||||||
|
"type": "array",
|
||||||
|
"items": {
|
||||||
|
"type": "integer"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"admin.ChangeCurPasswordForm": {
|
"admin.ChangeCurPasswordForm": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"required": [
|
"required": [
|
||||||
@@ -3322,9 +3818,29 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"admin.LoginLogIds": {
|
||||||
|
"type": "object",
|
||||||
|
"required": [
|
||||||
|
"ids"
|
||||||
|
],
|
||||||
|
"properties": {
|
||||||
|
"ids": {
|
||||||
|
"type": "array",
|
||||||
|
"items": {
|
||||||
|
"type": "integer"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"admin.LoginPayload": {
|
"admin.LoginPayload": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
|
"avatar": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"email": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
"nickname": {
|
"nickname": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
@@ -3347,7 +3863,7 @@
|
|||||||
"required": [
|
"required": [
|
||||||
"client_id",
|
"client_id",
|
||||||
"client_secret",
|
"client_secret",
|
||||||
"op",
|
"oauth_type",
|
||||||
"redirect_url"
|
"redirect_url"
|
||||||
],
|
],
|
||||||
"properties": {
|
"properties": {
|
||||||
@@ -3366,6 +3882,9 @@
|
|||||||
"issuer": {
|
"issuer": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
|
"oauth_type": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
"op": {
|
"op": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
@@ -3485,6 +4004,10 @@
|
|||||||
"avatar": {
|
"avatar": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
|
"email": {
|
||||||
|
"description": "validate:\"required,email\" email不强制",
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
"group_id": {
|
"group_id": {
|
||||||
"type": "integer"
|
"type": "integer"
|
||||||
},
|
},
|
||||||
@@ -3509,18 +4032,18 @@
|
|||||||
"username": {
|
"username": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"maxLength": 10,
|
"maxLength": 10,
|
||||||
"minLength": 4
|
"minLength": 2
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"admin.UserOauthItem": {
|
"admin.UserOauthItem": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
|
"op": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
"status": {
|
"status": {
|
||||||
"type": "integer"
|
"type": "integer"
|
||||||
},
|
|
||||||
"third_type": {
|
|
||||||
"type": "string"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -3891,6 +4414,9 @@
|
|||||||
"created_at": {
|
"created_at": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
|
"device_id": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
"id": {
|
"id": {
|
||||||
"type": "integer"
|
"type": "integer"
|
||||||
},
|
},
|
||||||
@@ -3960,6 +4486,9 @@
|
|||||||
"issuer": {
|
"issuer": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
|
"oauth_type": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
"op": {
|
"op": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
@@ -4138,6 +4667,9 @@
|
|||||||
"created_at": {
|
"created_at": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
|
"email": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
"group_id": {
|
"group_id": {
|
||||||
"type": "integer"
|
"type": "integer"
|
||||||
},
|
},
|
||||||
@@ -4187,6 +4719,12 @@
|
|||||||
"created_at": {
|
"created_at": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
|
"device_id": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"device_uuid": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
"expired_at": {
|
"expired_at": {
|
||||||
"type": "integer"
|
"type": "integer"
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -57,6 +57,24 @@ definitions:
|
|||||||
required:
|
required:
|
||||||
- id
|
- id
|
||||||
type: object
|
type: object
|
||||||
|
admin.AuditConnLogIds:
|
||||||
|
properties:
|
||||||
|
ids:
|
||||||
|
items:
|
||||||
|
type: integer
|
||||||
|
type: array
|
||||||
|
required:
|
||||||
|
- ids
|
||||||
|
type: object
|
||||||
|
admin.AuditFileLogIds:
|
||||||
|
properties:
|
||||||
|
ids:
|
||||||
|
items:
|
||||||
|
type: integer
|
||||||
|
type: array
|
||||||
|
required:
|
||||||
|
- ids
|
||||||
|
type: object
|
||||||
admin.ChangeCurPasswordForm:
|
admin.ChangeCurPasswordForm:
|
||||||
properties:
|
properties:
|
||||||
new_password:
|
new_password:
|
||||||
@@ -82,8 +100,21 @@ definitions:
|
|||||||
required:
|
required:
|
||||||
- name
|
- name
|
||||||
type: object
|
type: object
|
||||||
|
admin.LoginLogIds:
|
||||||
|
properties:
|
||||||
|
ids:
|
||||||
|
items:
|
||||||
|
type: integer
|
||||||
|
type: array
|
||||||
|
required:
|
||||||
|
- ids
|
||||||
|
type: object
|
||||||
admin.LoginPayload:
|
admin.LoginPayload:
|
||||||
properties:
|
properties:
|
||||||
|
avatar:
|
||||||
|
type: string
|
||||||
|
email:
|
||||||
|
type: string
|
||||||
nickname:
|
nickname:
|
||||||
type: string
|
type: string
|
||||||
route_names:
|
route_names:
|
||||||
@@ -107,6 +138,8 @@ definitions:
|
|||||||
type: integer
|
type: integer
|
||||||
issuer:
|
issuer:
|
||||||
type: string
|
type: string
|
||||||
|
oauth_type:
|
||||||
|
type: string
|
||||||
op:
|
op:
|
||||||
type: string
|
type: string
|
||||||
redirect_url:
|
redirect_url:
|
||||||
@@ -116,7 +149,7 @@ definitions:
|
|||||||
required:
|
required:
|
||||||
- client_id
|
- client_id
|
||||||
- client_secret
|
- client_secret
|
||||||
- op
|
- oauth_type
|
||||||
- redirect_url
|
- redirect_url
|
||||||
type: object
|
type: object
|
||||||
admin.PeerBatchDeleteForm:
|
admin.PeerBatchDeleteForm:
|
||||||
@@ -188,6 +221,9 @@ definitions:
|
|||||||
properties:
|
properties:
|
||||||
avatar:
|
avatar:
|
||||||
type: string
|
type: string
|
||||||
|
email:
|
||||||
|
description: validate:"required,email" email不强制
|
||||||
|
type: string
|
||||||
group_id:
|
group_id:
|
||||||
type: integer
|
type: integer
|
||||||
id:
|
id:
|
||||||
@@ -203,7 +239,7 @@ definitions:
|
|||||||
minimum: 0
|
minimum: 0
|
||||||
username:
|
username:
|
||||||
maxLength: 10
|
maxLength: 10
|
||||||
minLength: 4
|
minLength: 2
|
||||||
type: string
|
type: string
|
||||||
required:
|
required:
|
||||||
- group_id
|
- group_id
|
||||||
@@ -212,10 +248,10 @@ definitions:
|
|||||||
type: object
|
type: object
|
||||||
admin.UserOauthItem:
|
admin.UserOauthItem:
|
||||||
properties:
|
properties:
|
||||||
|
op:
|
||||||
|
type: string
|
||||||
status:
|
status:
|
||||||
type: integer
|
type: integer
|
||||||
third_type:
|
|
||||||
type: string
|
|
||||||
type: object
|
type: object
|
||||||
admin.UserPasswordForm:
|
admin.UserPasswordForm:
|
||||||
properties:
|
properties:
|
||||||
@@ -462,6 +498,8 @@ definitions:
|
|||||||
type: string
|
type: string
|
||||||
created_at:
|
created_at:
|
||||||
type: string
|
type: string
|
||||||
|
device_id:
|
||||||
|
type: string
|
||||||
id:
|
id:
|
||||||
type: integer
|
type: integer
|
||||||
ip:
|
ip:
|
||||||
@@ -508,6 +546,8 @@ definitions:
|
|||||||
type: integer
|
type: integer
|
||||||
issuer:
|
issuer:
|
||||||
type: string
|
type: string
|
||||||
|
oauth_type:
|
||||||
|
type: string
|
||||||
op:
|
op:
|
||||||
type: string
|
type: string
|
||||||
redirect_url:
|
redirect_url:
|
||||||
@@ -627,6 +667,8 @@ definitions:
|
|||||||
type: string
|
type: string
|
||||||
created_at:
|
created_at:
|
||||||
type: string
|
type: string
|
||||||
|
email:
|
||||||
|
type: string
|
||||||
group_id:
|
group_id:
|
||||||
type: integer
|
type: integer
|
||||||
id:
|
id:
|
||||||
@@ -659,6 +701,10 @@ definitions:
|
|||||||
properties:
|
properties:
|
||||||
created_at:
|
created_at:
|
||||||
type: string
|
type: string
|
||||||
|
device_id:
|
||||||
|
type: string
|
||||||
|
device_uuid:
|
||||||
|
type: string
|
||||||
expired_at:
|
expired_at:
|
||||||
type: integer
|
type: integer
|
||||||
id:
|
id:
|
||||||
@@ -903,9 +949,9 @@ paths:
|
|||||||
post:
|
post:
|
||||||
consumes:
|
consumes:
|
||||||
- application/json
|
- application/json
|
||||||
description: 创建地址簿集合
|
description: 创建地址簿名称
|
||||||
parameters:
|
parameters:
|
||||||
- description: 地址簿集合信息
|
- description: 地址簿名称信息
|
||||||
in: body
|
in: body
|
||||||
name: body
|
name: body
|
||||||
required: true
|
required: true
|
||||||
@@ -929,14 +975,16 @@ paths:
|
|||||||
$ref: '#/definitions/response.Response'
|
$ref: '#/definitions/response.Response'
|
||||||
security:
|
security:
|
||||||
- token: []
|
- token: []
|
||||||
summary: 创建地址簿集合
|
summary: 创建地址簿名称
|
||||||
|
tags:
|
||||||
|
- 地址簿名称
|
||||||
/admin/address_book_collection/delete:
|
/admin/address_book_collection/delete:
|
||||||
post:
|
post:
|
||||||
consumes:
|
consumes:
|
||||||
- application/json
|
- application/json
|
||||||
description: 地址簿集合删除
|
description: 地址簿名称删除
|
||||||
parameters:
|
parameters:
|
||||||
- description: 地址簿集合信息
|
- description: 地址簿名称信息
|
||||||
in: body
|
in: body
|
||||||
name: body
|
name: body
|
||||||
required: true
|
required: true
|
||||||
@@ -955,12 +1003,14 @@ paths:
|
|||||||
$ref: '#/definitions/response.Response'
|
$ref: '#/definitions/response.Response'
|
||||||
security:
|
security:
|
||||||
- token: []
|
- token: []
|
||||||
summary: 地址簿集合删除
|
summary: 地址簿名称删除
|
||||||
|
tags:
|
||||||
|
- 地址簿名称
|
||||||
/admin/address_book_collection/detail/{id}:
|
/admin/address_book_collection/detail/{id}:
|
||||||
get:
|
get:
|
||||||
consumes:
|
consumes:
|
||||||
- application/json
|
- application/json
|
||||||
description: 地址簿集合详情
|
description: 地址簿名称详情
|
||||||
parameters:
|
parameters:
|
||||||
- description: ID
|
- description: ID
|
||||||
in: path
|
in: path
|
||||||
@@ -985,12 +1035,14 @@ paths:
|
|||||||
$ref: '#/definitions/response.Response'
|
$ref: '#/definitions/response.Response'
|
||||||
security:
|
security:
|
||||||
- token: []
|
- token: []
|
||||||
summary: 地址簿集合详情
|
summary: 地址簿名称详情
|
||||||
|
tags:
|
||||||
|
- 地址簿名称
|
||||||
/admin/address_book_collection/list:
|
/admin/address_book_collection/list:
|
||||||
get:
|
get:
|
||||||
consumes:
|
consumes:
|
||||||
- application/json
|
- application/json
|
||||||
description: 地址簿集合列表
|
description: 地址簿名称列表
|
||||||
parameters:
|
parameters:
|
||||||
- description: 页码
|
- description: 页码
|
||||||
in: query
|
in: query
|
||||||
@@ -1026,14 +1078,16 @@ paths:
|
|||||||
$ref: '#/definitions/response.Response'
|
$ref: '#/definitions/response.Response'
|
||||||
security:
|
security:
|
||||||
- token: []
|
- token: []
|
||||||
summary: 地址簿集合列表
|
summary: 地址簿名称列表
|
||||||
|
tags:
|
||||||
|
- 地址簿名称
|
||||||
/admin/address_book_collection/update:
|
/admin/address_book_collection/update:
|
||||||
post:
|
post:
|
||||||
consumes:
|
consumes:
|
||||||
- application/json
|
- application/json
|
||||||
description: 地址簿集合编辑
|
description: 地址簿名称编辑
|
||||||
parameters:
|
parameters:
|
||||||
- description: 地址簿集合信息
|
- description: 地址簿名称信息
|
||||||
in: body
|
in: body
|
||||||
name: body
|
name: body
|
||||||
required: true
|
required: true
|
||||||
@@ -1057,14 +1111,16 @@ paths:
|
|||||||
$ref: '#/definitions/response.Response'
|
$ref: '#/definitions/response.Response'
|
||||||
security:
|
security:
|
||||||
- token: []
|
- token: []
|
||||||
summary: 地址簿集合编辑
|
summary: 地址簿名称编辑
|
||||||
|
tags:
|
||||||
|
- 地址簿名称
|
||||||
/admin/address_book_collection_rule/create:
|
/admin/address_book_collection_rule/create:
|
||||||
post:
|
post:
|
||||||
consumes:
|
consumes:
|
||||||
- application/json
|
- application/json
|
||||||
description: 创建地址簿集合规则
|
description: 创建地址簿规则
|
||||||
parameters:
|
parameters:
|
||||||
- description: 地址簿集合规则信息
|
- description: 地址簿规则信息
|
||||||
in: body
|
in: body
|
||||||
name: body
|
name: body
|
||||||
required: true
|
required: true
|
||||||
@@ -1088,14 +1144,16 @@ paths:
|
|||||||
$ref: '#/definitions/response.Response'
|
$ref: '#/definitions/response.Response'
|
||||||
security:
|
security:
|
||||||
- token: []
|
- token: []
|
||||||
summary: 创建地址簿集合规则
|
summary: 创建地址簿规则
|
||||||
|
tags:
|
||||||
|
- 地址簿规则
|
||||||
/admin/address_book_collection_rule/delete:
|
/admin/address_book_collection_rule/delete:
|
||||||
post:
|
post:
|
||||||
consumes:
|
consumes:
|
||||||
- application/json
|
- application/json
|
||||||
description: 地址簿集合规则删除
|
description: 地址簿规则删除
|
||||||
parameters:
|
parameters:
|
||||||
- description: 地址簿集合规则信息
|
- description: 地址簿规则信息
|
||||||
in: body
|
in: body
|
||||||
name: body
|
name: body
|
||||||
required: true
|
required: true
|
||||||
@@ -1114,12 +1172,14 @@ paths:
|
|||||||
$ref: '#/definitions/response.Response'
|
$ref: '#/definitions/response.Response'
|
||||||
security:
|
security:
|
||||||
- token: []
|
- token: []
|
||||||
summary: 地址簿集合规则删除
|
summary: 地址簿规则删除
|
||||||
|
tags:
|
||||||
|
- 地址簿规则
|
||||||
/admin/address_book_collection_rule/detail/{id}:
|
/admin/address_book_collection_rule/detail/{id}:
|
||||||
get:
|
get:
|
||||||
consumes:
|
consumes:
|
||||||
- application/json
|
- application/json
|
||||||
description: 地址簿集合规则详情
|
description: 地址簿规则详情
|
||||||
parameters:
|
parameters:
|
||||||
- description: ID
|
- description: ID
|
||||||
in: path
|
in: path
|
||||||
@@ -1144,12 +1204,14 @@ paths:
|
|||||||
$ref: '#/definitions/response.Response'
|
$ref: '#/definitions/response.Response'
|
||||||
security:
|
security:
|
||||||
- token: []
|
- token: []
|
||||||
summary: 地址簿集合规则详情
|
summary: 地址簿规则详情
|
||||||
|
tags:
|
||||||
|
- 地址簿规则
|
||||||
/admin/address_book_collection_rule/list:
|
/admin/address_book_collection_rule/list:
|
||||||
get:
|
get:
|
||||||
consumes:
|
consumes:
|
||||||
- application/json
|
- application/json
|
||||||
description: 地址簿集合规则列表
|
description: 地址簿规则列表
|
||||||
parameters:
|
parameters:
|
||||||
- description: 页码
|
- description: 页码
|
||||||
in: query
|
in: query
|
||||||
@@ -1189,14 +1251,16 @@ paths:
|
|||||||
$ref: '#/definitions/response.Response'
|
$ref: '#/definitions/response.Response'
|
||||||
security:
|
security:
|
||||||
- token: []
|
- token: []
|
||||||
summary: 地址簿集合规则列表
|
summary: 地址簿规则列表
|
||||||
|
tags:
|
||||||
|
- 地址簿规则
|
||||||
/admin/address_book_collection_rule/update:
|
/admin/address_book_collection_rule/update:
|
||||||
post:
|
post:
|
||||||
consumes:
|
consumes:
|
||||||
- application/json
|
- application/json
|
||||||
description: 地址簿集合规则编辑
|
description: 地址簿规则编辑
|
||||||
parameters:
|
parameters:
|
||||||
- description: 地址簿集合规则信息
|
- description: 地址簿规则信息
|
||||||
in: body
|
in: body
|
||||||
name: body
|
name: body
|
||||||
required: true
|
required: true
|
||||||
@@ -1220,7 +1284,9 @@ paths:
|
|||||||
$ref: '#/definitions/response.Response'
|
$ref: '#/definitions/response.Response'
|
||||||
security:
|
security:
|
||||||
- token: []
|
- token: []
|
||||||
summary: 地址簿集合规则编辑
|
summary: 地址簿规则编辑
|
||||||
|
tags:
|
||||||
|
- 地址簿规则
|
||||||
/admin/app-config:
|
/admin/app-config:
|
||||||
get:
|
get:
|
||||||
consumes:
|
consumes:
|
||||||
@@ -1242,7 +1308,134 @@ paths:
|
|||||||
summary: APP服务配置
|
summary: APP服务配置
|
||||||
tags:
|
tags:
|
||||||
- ADMIN
|
- ADMIN
|
||||||
|
/admin/audit_conn/batchDelete:
|
||||||
|
post:
|
||||||
|
consumes:
|
||||||
|
- application/json
|
||||||
|
description: 链接日志批量删除
|
||||||
|
parameters:
|
||||||
|
- description: 链接日志
|
||||||
|
in: body
|
||||||
|
name: body
|
||||||
|
required: true
|
||||||
|
schema:
|
||||||
|
$ref: '#/definitions/admin.AuditConnLogIds'
|
||||||
|
produces:
|
||||||
|
- application/json
|
||||||
|
responses:
|
||||||
|
"200":
|
||||||
|
description: OK
|
||||||
|
schema:
|
||||||
|
$ref: '#/definitions/response.Response'
|
||||||
|
"500":
|
||||||
|
description: Internal Server Error
|
||||||
|
schema:
|
||||||
|
$ref: '#/definitions/response.Response'
|
||||||
|
security:
|
||||||
|
- token: []
|
||||||
|
summary: 链接日志批量删除
|
||||||
|
tags:
|
||||||
|
- 链接日志
|
||||||
/admin/audit_conn/delete:
|
/admin/audit_conn/delete:
|
||||||
|
post:
|
||||||
|
consumes:
|
||||||
|
- application/json
|
||||||
|
description: 链接日志删除
|
||||||
|
parameters:
|
||||||
|
- description: 链接日志信息
|
||||||
|
in: body
|
||||||
|
name: body
|
||||||
|
required: true
|
||||||
|
schema:
|
||||||
|
$ref: '#/definitions/model.AuditConn'
|
||||||
|
produces:
|
||||||
|
- application/json
|
||||||
|
responses:
|
||||||
|
"200":
|
||||||
|
description: OK
|
||||||
|
schema:
|
||||||
|
$ref: '#/definitions/response.Response'
|
||||||
|
"500":
|
||||||
|
description: Internal Server Error
|
||||||
|
schema:
|
||||||
|
$ref: '#/definitions/response.Response'
|
||||||
|
security:
|
||||||
|
- token: []
|
||||||
|
summary: 链接日志删除
|
||||||
|
tags:
|
||||||
|
- 链接日志
|
||||||
|
/admin/audit_conn/list:
|
||||||
|
get:
|
||||||
|
consumes:
|
||||||
|
- application/json
|
||||||
|
description: 链接日志列表
|
||||||
|
parameters:
|
||||||
|
- description: 页码
|
||||||
|
in: query
|
||||||
|
name: page
|
||||||
|
type: integer
|
||||||
|
- description: 页大小
|
||||||
|
in: query
|
||||||
|
name: page_size
|
||||||
|
type: integer
|
||||||
|
- description: 目标设备
|
||||||
|
in: query
|
||||||
|
name: peer_id
|
||||||
|
type: integer
|
||||||
|
- description: 来源设备
|
||||||
|
in: query
|
||||||
|
name: from_peer
|
||||||
|
type: integer
|
||||||
|
produces:
|
||||||
|
- application/json
|
||||||
|
responses:
|
||||||
|
"200":
|
||||||
|
description: OK
|
||||||
|
schema:
|
||||||
|
allOf:
|
||||||
|
- $ref: '#/definitions/response.Response'
|
||||||
|
- properties:
|
||||||
|
data:
|
||||||
|
$ref: '#/definitions/model.AuditConnList'
|
||||||
|
type: object
|
||||||
|
"500":
|
||||||
|
description: Internal Server Error
|
||||||
|
schema:
|
||||||
|
$ref: '#/definitions/response.Response'
|
||||||
|
security:
|
||||||
|
- token: []
|
||||||
|
summary: 链接日志列表
|
||||||
|
tags:
|
||||||
|
- 链接日志
|
||||||
|
/admin/audit_file/batchDelete:
|
||||||
|
post:
|
||||||
|
consumes:
|
||||||
|
- application/json
|
||||||
|
description: 文件日志批量删除
|
||||||
|
parameters:
|
||||||
|
- description: 文件日志
|
||||||
|
in: body
|
||||||
|
name: body
|
||||||
|
required: true
|
||||||
|
schema:
|
||||||
|
$ref: '#/definitions/admin.AuditFileLogIds'
|
||||||
|
produces:
|
||||||
|
- application/json
|
||||||
|
responses:
|
||||||
|
"200":
|
||||||
|
description: OK
|
||||||
|
schema:
|
||||||
|
$ref: '#/definitions/response.Response'
|
||||||
|
"500":
|
||||||
|
description: Internal Server Error
|
||||||
|
schema:
|
||||||
|
$ref: '#/definitions/response.Response'
|
||||||
|
security:
|
||||||
|
- token: []
|
||||||
|
summary: 文件日志批量删除
|
||||||
|
tags:
|
||||||
|
- 文件日志
|
||||||
|
/admin/audit_file/delete:
|
||||||
post:
|
post:
|
||||||
consumes:
|
consumes:
|
||||||
- application/json
|
- application/json
|
||||||
@@ -1270,7 +1463,7 @@ paths:
|
|||||||
summary: 文件日志删除
|
summary: 文件日志删除
|
||||||
tags:
|
tags:
|
||||||
- 文件日志
|
- 文件日志
|
||||||
/admin/audit_conn/list:
|
/admin/audit_file/list:
|
||||||
get:
|
get:
|
||||||
consumes:
|
consumes:
|
||||||
- application/json
|
- application/json
|
||||||
@@ -1313,6 +1506,69 @@ paths:
|
|||||||
summary: 文件日志列表
|
summary: 文件日志列表
|
||||||
tags:
|
tags:
|
||||||
- 文件日志
|
- 文件日志
|
||||||
|
/admin/config/admin:
|
||||||
|
get:
|
||||||
|
consumes:
|
||||||
|
- application/json
|
||||||
|
description: ADMIN服务配置
|
||||||
|
produces:
|
||||||
|
- application/json
|
||||||
|
responses:
|
||||||
|
"200":
|
||||||
|
description: OK
|
||||||
|
schema:
|
||||||
|
$ref: '#/definitions/response.Response'
|
||||||
|
"500":
|
||||||
|
description: Internal Server Error
|
||||||
|
schema:
|
||||||
|
$ref: '#/definitions/response.Response'
|
||||||
|
security:
|
||||||
|
- token: []
|
||||||
|
summary: ADMIN服务配置
|
||||||
|
tags:
|
||||||
|
- ADMIN
|
||||||
|
/admin/config/app:
|
||||||
|
get:
|
||||||
|
consumes:
|
||||||
|
- application/json
|
||||||
|
description: APP服务配置
|
||||||
|
produces:
|
||||||
|
- application/json
|
||||||
|
responses:
|
||||||
|
"200":
|
||||||
|
description: OK
|
||||||
|
schema:
|
||||||
|
$ref: '#/definitions/response.Response'
|
||||||
|
"500":
|
||||||
|
description: Internal Server Error
|
||||||
|
schema:
|
||||||
|
$ref: '#/definitions/response.Response'
|
||||||
|
security:
|
||||||
|
- token: []
|
||||||
|
summary: APP服务配置
|
||||||
|
tags:
|
||||||
|
- ADMIN
|
||||||
|
/admin/config/server:
|
||||||
|
get:
|
||||||
|
consumes:
|
||||||
|
- application/json
|
||||||
|
description: 服务配置,给webclient提供api-server
|
||||||
|
produces:
|
||||||
|
- application/json
|
||||||
|
responses:
|
||||||
|
"200":
|
||||||
|
description: OK
|
||||||
|
schema:
|
||||||
|
$ref: '#/definitions/response.Response'
|
||||||
|
"500":
|
||||||
|
description: Internal Server Error
|
||||||
|
schema:
|
||||||
|
$ref: '#/definitions/response.Response'
|
||||||
|
security:
|
||||||
|
- token: []
|
||||||
|
summary: RUSTDESK服务配置
|
||||||
|
tags:
|
||||||
|
- ADMIN
|
||||||
/admin/file/oss_token:
|
/admin/file/oss_token:
|
||||||
get:
|
get:
|
||||||
consumes:
|
consumes:
|
||||||
@@ -1580,14 +1836,14 @@ paths:
|
|||||||
post:
|
post:
|
||||||
consumes:
|
consumes:
|
||||||
- application/json
|
- application/json
|
||||||
description: 登录日志删除
|
description: 登录日志批量删除
|
||||||
parameters:
|
parameters:
|
||||||
- description: 登录日志信息
|
- description: 登录日志
|
||||||
in: body
|
in: body
|
||||||
name: body
|
name: body
|
||||||
required: true
|
required: true
|
||||||
schema:
|
schema:
|
||||||
$ref: '#/definitions/model.LoginLog'
|
$ref: '#/definitions/admin.LoginLogIds'
|
||||||
produces:
|
produces:
|
||||||
- application/json
|
- application/json
|
||||||
responses:
|
responses:
|
||||||
@@ -1601,7 +1857,7 @@ paths:
|
|||||||
$ref: '#/definitions/response.Response'
|
$ref: '#/definitions/response.Response'
|
||||||
security:
|
security:
|
||||||
- token: []
|
- token: []
|
||||||
summary: 登录日志删除
|
summary: 登录日志批量删除
|
||||||
tags:
|
tags:
|
||||||
- 登录日志
|
- 登录日志
|
||||||
/admin/login_log/detail/{id}:
|
/admin/login_log/detail/{id}:
|
||||||
@@ -1890,6 +2146,34 @@ paths:
|
|||||||
summary: OidcAuthQuery
|
summary: OidcAuthQuery
|
||||||
tags:
|
tags:
|
||||||
- Oauth
|
- Oauth
|
||||||
|
/admin/peer/batchDelete:
|
||||||
|
post:
|
||||||
|
consumes:
|
||||||
|
- application/json
|
||||||
|
description: 批量设备删除
|
||||||
|
parameters:
|
||||||
|
- description: 设备id
|
||||||
|
in: body
|
||||||
|
name: body
|
||||||
|
required: true
|
||||||
|
schema:
|
||||||
|
$ref: '#/definitions/admin.PeerBatchDeleteForm'
|
||||||
|
produces:
|
||||||
|
- application/json
|
||||||
|
responses:
|
||||||
|
"200":
|
||||||
|
description: OK
|
||||||
|
schema:
|
||||||
|
$ref: '#/definitions/response.Response'
|
||||||
|
"500":
|
||||||
|
description: Internal Server Error
|
||||||
|
schema:
|
||||||
|
$ref: '#/definitions/response.Response'
|
||||||
|
security:
|
||||||
|
- token: []
|
||||||
|
summary: 批量设备删除
|
||||||
|
tags:
|
||||||
|
- 设备
|
||||||
/admin/peer/create:
|
/admin/peer/create:
|
||||||
post:
|
post:
|
||||||
consumes:
|
consumes:
|
||||||
@@ -1927,14 +2211,14 @@ paths:
|
|||||||
post:
|
post:
|
||||||
consumes:
|
consumes:
|
||||||
- application/json
|
- application/json
|
||||||
description: 批量设备删除
|
description: 设备删除
|
||||||
parameters:
|
parameters:
|
||||||
- description: 设备id
|
- description: 设备信息
|
||||||
in: body
|
in: body
|
||||||
name: body
|
name: body
|
||||||
required: true
|
required: true
|
||||||
schema:
|
schema:
|
||||||
$ref: '#/definitions/admin.PeerBatchDeleteForm'
|
$ref: '#/definitions/admin.PeerForm'
|
||||||
produces:
|
produces:
|
||||||
- application/json
|
- application/json
|
||||||
responses:
|
responses:
|
||||||
@@ -1948,7 +2232,7 @@ paths:
|
|||||||
$ref: '#/definitions/response.Response'
|
$ref: '#/definitions/response.Response'
|
||||||
security:
|
security:
|
||||||
- token: []
|
- token: []
|
||||||
summary: 批量设备删除
|
summary: 设备删除
|
||||||
tags:
|
tags:
|
||||||
- 设备
|
- 设备
|
||||||
/admin/peer/detail/{id}:
|
/admin/peer/detail/{id}:
|
||||||
@@ -2471,6 +2755,57 @@ paths:
|
|||||||
summary: 我的授权
|
summary: 我的授权
|
||||||
tags:
|
tags:
|
||||||
- 用户
|
- 用户
|
||||||
|
/admin/user/myPeer:
|
||||||
|
get:
|
||||||
|
consumes:
|
||||||
|
- application/json
|
||||||
|
description: 我的设备列表
|
||||||
|
parameters:
|
||||||
|
- description: 页码
|
||||||
|
in: query
|
||||||
|
name: page
|
||||||
|
type: integer
|
||||||
|
- description: 页大小
|
||||||
|
in: query
|
||||||
|
name: page_size
|
||||||
|
type: integer
|
||||||
|
- description: 时间
|
||||||
|
in: query
|
||||||
|
name: time_ago
|
||||||
|
type: integer
|
||||||
|
- description: ID
|
||||||
|
in: query
|
||||||
|
name: id
|
||||||
|
type: string
|
||||||
|
- description: 主机名
|
||||||
|
in: query
|
||||||
|
name: hostname
|
||||||
|
type: string
|
||||||
|
- description: uuids 用逗号分隔
|
||||||
|
in: query
|
||||||
|
name: uuids
|
||||||
|
type: string
|
||||||
|
produces:
|
||||||
|
- application/json
|
||||||
|
responses:
|
||||||
|
"200":
|
||||||
|
description: OK
|
||||||
|
schema:
|
||||||
|
allOf:
|
||||||
|
- $ref: '#/definitions/response.Response'
|
||||||
|
- properties:
|
||||||
|
data:
|
||||||
|
$ref: '#/definitions/model.PeerList'
|
||||||
|
type: object
|
||||||
|
"500":
|
||||||
|
description: Internal Server Error
|
||||||
|
schema:
|
||||||
|
$ref: '#/definitions/response.Response'
|
||||||
|
security:
|
||||||
|
- token: []
|
||||||
|
summary: 我的设备列表
|
||||||
|
tags:
|
||||||
|
- 设备
|
||||||
/admin/user/update:
|
/admin/user/update:
|
||||||
post:
|
post:
|
||||||
consumes:
|
consumes:
|
||||||
|
|||||||
@@ -1365,7 +1365,7 @@ const docTemplateapi = `{
|
|||||||
"username": {
|
"username": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"maxLength": 10,
|
"maxLength": 10,
|
||||||
"minLength": 4
|
"minLength": 2
|
||||||
},
|
},
|
||||||
"uuid": {
|
"uuid": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
|
|||||||
@@ -1358,7 +1358,7 @@
|
|||||||
"username": {
|
"username": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"maxLength": 10,
|
"maxLength": 10,
|
||||||
"minLength": 4
|
"minLength": 2
|
||||||
},
|
},
|
||||||
"uuid": {
|
"uuid": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
|
|||||||
@@ -69,7 +69,7 @@ definitions:
|
|||||||
type: string
|
type: string
|
||||||
username:
|
username:
|
||||||
maxLength: 10
|
maxLength: 10
|
||||||
minLength: 4
|
minLength: 2
|
||||||
type: string
|
type: string
|
||||||
uuid:
|
uuid:
|
||||||
type: string
|
type: string
|
||||||
|
|||||||
@@ -19,6 +19,7 @@ import (
|
|||||||
var (
|
var (
|
||||||
DB *gorm.DB
|
DB *gorm.DB
|
||||||
Logger *logrus.Logger
|
Logger *logrus.Logger
|
||||||
|
ConfigPath string = ""
|
||||||
Config config.Config
|
Config config.Config
|
||||||
Viper *viper.Viper
|
Viper *viper.Viper
|
||||||
Redis *redis.Client
|
Redis *redis.Client
|
||||||
|
|||||||
3
go.mod
3
go.mod
@@ -16,6 +16,7 @@ require (
|
|||||||
github.com/google/uuid v1.1.2
|
github.com/google/uuid v1.1.2
|
||||||
github.com/nicksnyder/go-i18n/v2 v2.4.0
|
github.com/nicksnyder/go-i18n/v2 v2.4.0
|
||||||
github.com/sirupsen/logrus v1.8.1
|
github.com/sirupsen/logrus v1.8.1
|
||||||
|
github.com/spf13/cobra v1.8.1
|
||||||
github.com/spf13/viper v1.9.0
|
github.com/spf13/viper v1.9.0
|
||||||
github.com/swaggo/files v1.0.1
|
github.com/swaggo/files v1.0.1
|
||||||
github.com/swaggo/gin-swagger v1.6.0
|
github.com/swaggo/gin-swagger v1.6.0
|
||||||
@@ -28,7 +29,6 @@ require (
|
|||||||
)
|
)
|
||||||
|
|
||||||
require (
|
require (
|
||||||
cloud.google.com/go/compute/metadata v0.5.1 // indirect
|
|
||||||
github.com/KyleBanks/depth v1.2.1 // indirect
|
github.com/KyleBanks/depth v1.2.1 // indirect
|
||||||
github.com/PuerkitoBio/purell v1.1.1 // indirect
|
github.com/PuerkitoBio/purell v1.1.1 // indirect
|
||||||
github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578 // indirect
|
github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578 // indirect
|
||||||
@@ -44,6 +44,7 @@ require (
|
|||||||
github.com/go-sql-driver/mysql v1.7.0 // indirect
|
github.com/go-sql-driver/mysql v1.7.0 // indirect
|
||||||
github.com/goccy/go-json v0.10.0 // indirect
|
github.com/goccy/go-json v0.10.0 // indirect
|
||||||
github.com/hashicorp/hcl v1.0.0 // indirect
|
github.com/hashicorp/hcl v1.0.0 // indirect
|
||||||
|
github.com/inconshreveable/mousetrap v1.1.0 // indirect
|
||||||
github.com/jinzhu/inflection v1.0.0 // indirect
|
github.com/jinzhu/inflection v1.0.0 // indirect
|
||||||
github.com/jinzhu/now v1.1.5 // indirect
|
github.com/jinzhu/now v1.1.5 // indirect
|
||||||
github.com/josharian/intern v1.0.0 // indirect
|
github.com/josharian/intern v1.0.0 // indirect
|
||||||
|
|||||||
@@ -14,10 +14,10 @@ import (
|
|||||||
type AddressBookCollection struct {
|
type AddressBookCollection struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Detail 地址簿集合
|
// Detail 地址簿名称
|
||||||
// @AddressBookCollections 地址簿集合
|
// @Tags 地址簿名称
|
||||||
// @Summary 地址簿集合详情
|
// @Summary 地址簿名称详情
|
||||||
// @Description 地址簿集合详情
|
// @Description 地址簿名称详情
|
||||||
// @Accept json
|
// @Accept json
|
||||||
// @Produce json
|
// @Produce json
|
||||||
// @Param id path int true "ID"
|
// @Param id path int true "ID"
|
||||||
@@ -42,13 +42,13 @@ func (abc *AddressBookCollection) Detail(c *gin.Context) {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
// Create 创建地址簿集合
|
// Create 创建地址簿名称
|
||||||
// @AddressBookCollections 地址簿集合
|
// @Tags 地址簿名称
|
||||||
// @Summary 创建地址簿集合
|
// @Summary 创建地址簿名称
|
||||||
// @Description 创建地址簿集合
|
// @Description 创建地址簿名称
|
||||||
// @Accept json
|
// @Accept json
|
||||||
// @Produce json
|
// @Produce json
|
||||||
// @Param body body model.AddressBookCollection true "地址簿集合信息"
|
// @Param body body model.AddressBookCollection true "地址簿名称信息"
|
||||||
// @Success 200 {object} response.Response{data=model.AddressBookCollection}
|
// @Success 200 {object} response.Response{data=model.AddressBookCollection}
|
||||||
// @Failure 500 {object} response.Response
|
// @Failure 500 {object} response.Response
|
||||||
// @Router /admin/address_book_collection/create [post]
|
// @Router /admin/address_book_collection/create [post]
|
||||||
@@ -79,9 +79,9 @@ func (abc *AddressBookCollection) Create(c *gin.Context) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// List 列表
|
// List 列表
|
||||||
// @AddressBookCollections 地址簿集合
|
// @Tags 地址簿名称
|
||||||
// @Summary 地址簿集合列表
|
// @Summary 地址簿名称列表
|
||||||
// @Description 地址簿集合列表
|
// @Description 地址簿名称列表
|
||||||
// @Accept json
|
// @Accept json
|
||||||
// @Produce json
|
// @Produce json
|
||||||
// @Param page query int false "页码"
|
// @Param page query int false "页码"
|
||||||
@@ -111,12 +111,12 @@ func (abc *AddressBookCollection) List(c *gin.Context) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Update 编辑
|
// Update 编辑
|
||||||
// @AddressBookCollections 地址簿集合
|
// @Tags 地址簿名称
|
||||||
// @Summary 地址簿集合编辑
|
// @Summary 地址簿名称编辑
|
||||||
// @Description 地址簿集合编辑
|
// @Description 地址簿名称编辑
|
||||||
// @Accept json
|
// @Accept json
|
||||||
// @Produce json
|
// @Produce json
|
||||||
// @Param body body model.AddressBookCollection true "地址簿集合信息"
|
// @Param body body model.AddressBookCollection true "地址簿名称信息"
|
||||||
// @Success 200 {object} response.Response{data=model.AddressBookCollection}
|
// @Success 200 {object} response.Response{data=model.AddressBookCollection}
|
||||||
// @Failure 500 {object} response.Response
|
// @Failure 500 {object} response.Response
|
||||||
// @Router /admin/address_book_collection/update [post]
|
// @Router /admin/address_book_collection/update [post]
|
||||||
@@ -151,12 +151,12 @@ func (abc *AddressBookCollection) Update(c *gin.Context) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Delete 删除
|
// Delete 删除
|
||||||
// @AddressBookCollections 地址簿集合
|
// @Tags 地址簿名称
|
||||||
// @Summary 地址簿集合删除
|
// @Summary 地址簿名称删除
|
||||||
// @Description 地址簿集合删除
|
// @Description 地址簿名称删除
|
||||||
// @Accept json
|
// @Accept json
|
||||||
// @Produce json
|
// @Produce json
|
||||||
// @Param body body model.AddressBookCollection true "地址簿集合信息"
|
// @Param body body model.AddressBookCollection true "地址簿名称信息"
|
||||||
// @Success 200 {object} response.Response
|
// @Success 200 {object} response.Response
|
||||||
// @Failure 500 {object} response.Response
|
// @Failure 500 {object} response.Response
|
||||||
// @Router /admin/address_book_collection/delete [post]
|
// @Router /admin/address_book_collection/delete [post]
|
||||||
|
|||||||
@@ -15,9 +15,9 @@ type AddressBookCollectionRule struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// List 列表
|
// List 列表
|
||||||
// @AddressBookCollectionRule 地址簿集合规则
|
// @Tags 地址簿规则
|
||||||
// @Summary 地址簿集合规则列表
|
// @Summary 地址簿规则列表
|
||||||
// @Description 地址簿集合规则列表
|
// @Description 地址簿规则列表
|
||||||
// @Accept json
|
// @Accept json
|
||||||
// @Produce json
|
// @Produce json
|
||||||
// @Param page query int false "页码"
|
// @Param page query int false "页码"
|
||||||
@@ -51,10 +51,10 @@ func (abcr *AddressBookCollectionRule) List(c *gin.Context) {
|
|||||||
response.Success(c, res)
|
response.Success(c, res)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Detail 地址簿集合规则
|
// Detail 地址簿规则
|
||||||
// @AddressBookCollectionRule 地址簿集合规则
|
// @Tags 地址簿规则
|
||||||
// @Summary 地址簿集合规则详情
|
// @Summary 地址簿规则详情
|
||||||
// @Description 地址簿集合规则详情
|
// @Description 地址簿规则详情
|
||||||
// @Accept json
|
// @Accept json
|
||||||
// @Produce json
|
// @Produce json
|
||||||
// @Param id path int true "ID"
|
// @Param id path int true "ID"
|
||||||
@@ -79,13 +79,13 @@ func (abcr *AddressBookCollectionRule) Detail(c *gin.Context) {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
// Create 创建地址簿集合规则
|
// Create 创建地址簿规则
|
||||||
// @AddressBookCollectionRule 地址簿集合规则
|
// @Tags 地址簿规则
|
||||||
// @Summary 创建地址簿集合规则
|
// @Summary 创建地址簿规则
|
||||||
// @Description 创建地址簿集合规则
|
// @Description 创建地址簿规则
|
||||||
// @Accept json
|
// @Accept json
|
||||||
// @Produce json
|
// @Produce json
|
||||||
// @Param body body model.AddressBookCollectionRule true "地址簿集合规则信息"
|
// @Param body body model.AddressBookCollectionRule true "地址簿规则信息"
|
||||||
// @Success 200 {object} response.Response{data=model.AddressBookCollection}
|
// @Success 200 {object} response.Response{data=model.AddressBookCollection}
|
||||||
// @Failure 500 {object} response.Response
|
// @Failure 500 {object} response.Response
|
||||||
// @Router /admin/address_book_collection_rule/create [post]
|
// @Router /admin/address_book_collection_rule/create [post]
|
||||||
@@ -169,12 +169,12 @@ func (abcr *AddressBookCollectionRule) CheckForm(u *model.User, t *model.Address
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Update 编辑
|
// Update 编辑
|
||||||
// @AddressBookCollectionRule 地址簿集合规则
|
// @Tags 地址簿规则
|
||||||
// @Summary 地址簿集合规则编辑
|
// @Summary 地址簿规则编辑
|
||||||
// @Description 地址簿集合规则编辑
|
// @Description 地址簿规则编辑
|
||||||
// @Accept json
|
// @Accept json
|
||||||
// @Produce json
|
// @Produce json
|
||||||
// @Param body body model.AddressBookCollectionRule true "地址簿集合规则信息"
|
// @Param body body model.AddressBookCollectionRule true "地址簿规则信息"
|
||||||
// @Success 200 {object} response.Response{data=model.AddressBookCollection}
|
// @Success 200 {object} response.Response{data=model.AddressBookCollection}
|
||||||
// @Failure 500 {object} response.Response
|
// @Failure 500 {object} response.Response
|
||||||
// @Router /admin/address_book_collection_rule/update [post]
|
// @Router /admin/address_book_collection_rule/update [post]
|
||||||
@@ -210,12 +210,12 @@ func (abcr *AddressBookCollectionRule) Update(c *gin.Context) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Delete 删除
|
// Delete 删除
|
||||||
// @AddressBookCollectionRule 地址簿集合规则
|
// @Tags 地址簿规则
|
||||||
// @Summary 地址簿集合规则删除
|
// @Summary 地址簿规则删除
|
||||||
// @Description 地址簿集合规则删除
|
// @Description 地址簿规则删除
|
||||||
// @Accept json
|
// @Accept json
|
||||||
// @Produce json
|
// @Produce json
|
||||||
// @Param body body model.AddressBookCollectionRule true "地址簿集合规则信息"
|
// @Param body body model.AddressBookCollectionRule true "地址簿规则信息"
|
||||||
// @Success 200 {object} response.Response
|
// @Success 200 {object} response.Response
|
||||||
// @Failure 500 {object} response.Response
|
// @Failure 500 {object} response.Response
|
||||||
// @Router /admin/address_book_collection_rule/delete [post]
|
// @Router /admin/address_book_collection_rule/delete [post]
|
||||||
|
|||||||
@@ -81,6 +81,37 @@ func (a *Audit) ConnDelete(c *gin.Context) {
|
|||||||
response.Fail(c, 101, response.TranslateMsg(c, "ItemNotFound"))
|
response.Fail(c, 101, response.TranslateMsg(c, "ItemNotFound"))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// BatchConnDelete 删除
|
||||||
|
// @Tags 链接日志
|
||||||
|
// @Summary 链接日志批量删除
|
||||||
|
// @Description 链接日志批量删除
|
||||||
|
// @Accept json
|
||||||
|
// @Produce json
|
||||||
|
// @Param body body admin.AuditConnLogIds true "链接日志"
|
||||||
|
// @Success 200 {object} response.Response
|
||||||
|
// @Failure 500 {object} response.Response
|
||||||
|
// @Router /admin/audit_conn/batchDelete [post]
|
||||||
|
// @Security token
|
||||||
|
func (a *Audit) BatchConnDelete(c *gin.Context) {
|
||||||
|
f := &admin.AuditConnLogIds{}
|
||||||
|
if err := c.ShouldBindJSON(f); err != nil {
|
||||||
|
response.Fail(c, 101, response.TranslateMsg(c, "ParamsError")+err.Error())
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if len(f.Ids) == 0 {
|
||||||
|
response.Fail(c, 101, response.TranslateMsg(c, "ParamsError"))
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
err := service.AllService.AuditService.BatchDeleteAuditConn(f.Ids)
|
||||||
|
if err == nil {
|
||||||
|
response.Success(c, nil)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
response.Fail(c, 101, err.Error())
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
// FileList 列表
|
// FileList 列表
|
||||||
// @Tags 文件日志
|
// @Tags 文件日志
|
||||||
// @Summary 文件日志列表
|
// @Summary 文件日志列表
|
||||||
@@ -93,7 +124,7 @@ func (a *Audit) ConnDelete(c *gin.Context) {
|
|||||||
// @Param from_peer query int false "来源设备"
|
// @Param from_peer query int false "来源设备"
|
||||||
// @Success 200 {object} response.Response{data=model.AuditFileList}
|
// @Success 200 {object} response.Response{data=model.AuditFileList}
|
||||||
// @Failure 500 {object} response.Response
|
// @Failure 500 {object} response.Response
|
||||||
// @Router /admin/audit_conn/list [get]
|
// @Router /admin/audit_file/list [get]
|
||||||
// @Security token
|
// @Security token
|
||||||
func (a *Audit) FileList(c *gin.Context) {
|
func (a *Audit) FileList(c *gin.Context) {
|
||||||
query := &admin.AuditQuery{}
|
query := &admin.AuditQuery{}
|
||||||
@@ -122,7 +153,7 @@ func (a *Audit) FileList(c *gin.Context) {
|
|||||||
// @Param body body model.AuditFile true "文件日志信息"
|
// @Param body body model.AuditFile true "文件日志信息"
|
||||||
// @Success 200 {object} response.Response
|
// @Success 200 {object} response.Response
|
||||||
// @Failure 500 {object} response.Response
|
// @Failure 500 {object} response.Response
|
||||||
// @Router /admin/audit_conn/delete [post]
|
// @Router /admin/audit_file/delete [post]
|
||||||
// @Security token
|
// @Security token
|
||||||
func (a *Audit) FileDelete(c *gin.Context) {
|
func (a *Audit) FileDelete(c *gin.Context) {
|
||||||
f := &model.AuditFile{}
|
f := &model.AuditFile{}
|
||||||
@@ -148,3 +179,34 @@ func (a *Audit) FileDelete(c *gin.Context) {
|
|||||||
}
|
}
|
||||||
response.Fail(c, 101, response.TranslateMsg(c, "ItemNotFound"))
|
response.Fail(c, 101, response.TranslateMsg(c, "ItemNotFound"))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// BatchFileDelete 删除
|
||||||
|
// @Tags 文件日志
|
||||||
|
// @Summary 文件日志批量删除
|
||||||
|
// @Description 文件日志批量删除
|
||||||
|
// @Accept json
|
||||||
|
// @Produce json
|
||||||
|
// @Param body body admin.AuditFileLogIds true "文件日志"
|
||||||
|
// @Success 200 {object} response.Response
|
||||||
|
// @Failure 500 {object} response.Response
|
||||||
|
// @Router /admin/audit_file/batchDelete [post]
|
||||||
|
// @Security token
|
||||||
|
func (a *Audit) BatchFileDelete(c *gin.Context) {
|
||||||
|
f := &admin.AuditFileLogIds{}
|
||||||
|
if err := c.ShouldBindJSON(f); err != nil {
|
||||||
|
response.Fail(c, 101, response.TranslateMsg(c, "ParamsError")+err.Error())
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if len(f.Ids) == 0 {
|
||||||
|
response.Fail(c, 101, response.TranslateMsg(c, "ParamsError"))
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
err := service.AllService.AuditService.BatchDeleteAuditFile(f.Ids)
|
||||||
|
if err == nil {
|
||||||
|
response.Success(c, nil)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
response.Fail(c, 101, err.Error())
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|||||||
79
http/controller/admin/config.go
Normal file
79
http/controller/admin/config.go
Normal file
@@ -0,0 +1,79 @@
|
|||||||
|
package admin
|
||||||
|
|
||||||
|
import (
|
||||||
|
"Gwen/global"
|
||||||
|
"Gwen/http/response"
|
||||||
|
"Gwen/service"
|
||||||
|
"github.com/gin-gonic/gin"
|
||||||
|
"os"
|
||||||
|
"strings"
|
||||||
|
)
|
||||||
|
|
||||||
|
type Config struct {
|
||||||
|
}
|
||||||
|
|
||||||
|
// ServerConfig RUSTDESK服务配置
|
||||||
|
// @Tags ADMIN
|
||||||
|
// @Summary RUSTDESK服务配置
|
||||||
|
// @Description 服务配置,给webclient提供api-server
|
||||||
|
// @Accept json
|
||||||
|
// @Produce json
|
||||||
|
// @Success 200 {object} response.Response
|
||||||
|
// @Failure 500 {object} response.Response
|
||||||
|
// @Router /admin/config/server [get]
|
||||||
|
// @Security token
|
||||||
|
func (co *Config) ServerConfig(c *gin.Context) {
|
||||||
|
cf := &response.ServerConfigResponse{
|
||||||
|
IdServer: global.Config.Rustdesk.IdServer,
|
||||||
|
Key: global.Config.Rustdesk.Key,
|
||||||
|
RelayServer: global.Config.Rustdesk.RelayServer,
|
||||||
|
ApiServer: global.Config.Rustdesk.ApiServer,
|
||||||
|
}
|
||||||
|
response.Success(c, cf)
|
||||||
|
}
|
||||||
|
|
||||||
|
// AppConfig APP服务配置
|
||||||
|
// @Tags ADMIN
|
||||||
|
// @Summary APP服务配置
|
||||||
|
// @Description APP服务配置
|
||||||
|
// @Accept json
|
||||||
|
// @Produce json
|
||||||
|
// @Success 200 {object} response.Response
|
||||||
|
// @Failure 500 {object} response.Response
|
||||||
|
// @Router /admin/config/app [get]
|
||||||
|
// @Security token
|
||||||
|
func (co *Config) AppConfig(c *gin.Context) {
|
||||||
|
response.Success(c, &gin.H{
|
||||||
|
"web_client": global.Config.App.WebClient,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// AdminConfig ADMIN服务配置
|
||||||
|
// @Tags ADMIN
|
||||||
|
// @Summary ADMIN服务配置
|
||||||
|
// @Description ADMIN服务配置
|
||||||
|
// @Accept json
|
||||||
|
// @Produce json
|
||||||
|
// @Success 200 {object} response.Response
|
||||||
|
// @Failure 500 {object} response.Response
|
||||||
|
// @Router /admin/config/admin [get]
|
||||||
|
// @Security token
|
||||||
|
func (co *Config) AdminConfig(c *gin.Context) {
|
||||||
|
|
||||||
|
u := service.AllService.UserService.CurUser(c)
|
||||||
|
hello := global.Config.Admin.Hello
|
||||||
|
helloFile := global.Config.Admin.HelloFile
|
||||||
|
if helloFile != "" {
|
||||||
|
b, err := os.ReadFile(helloFile)
|
||||||
|
if err == nil && len(b) > 0 {
|
||||||
|
hello = string(b)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
//replace {{username}} to username
|
||||||
|
hello = strings.Replace(hello, "{{username}}", u.Username, -1)
|
||||||
|
response.Success(c, &gin.H{
|
||||||
|
"title": global.Config.Admin.Title,
|
||||||
|
"hello": hello,
|
||||||
|
})
|
||||||
|
}
|
||||||
@@ -11,7 +11,6 @@ import (
|
|||||||
"Gwen/service"
|
"Gwen/service"
|
||||||
"fmt"
|
"fmt"
|
||||||
"github.com/gin-gonic/gin"
|
"github.com/gin-gonic/gin"
|
||||||
"gorm.io/gorm"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
type Login struct {
|
type Login struct {
|
||||||
@@ -60,12 +59,7 @@ func (ct *Login) Login(c *gin.Context) {
|
|||||||
Platform: f.Platform,
|
Platform: f.Platform,
|
||||||
})
|
})
|
||||||
|
|
||||||
response.Success(c, &adResp.LoginPayload{
|
responseLoginSuccess(c, u, ut.Token)
|
||||||
Token: ut.Token,
|
|
||||||
Username: u.Username,
|
|
||||||
RouteNames: service.AllService.UserService.RouteNames(u),
|
|
||||||
Nickname: u.Nickname,
|
|
||||||
})
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Logout 登出
|
// Logout 登出
|
||||||
@@ -96,13 +90,7 @@ func (ct *Login) Logout(c *gin.Context) {
|
|||||||
// @Failure 500 {object} response.ErrorResponse
|
// @Failure 500 {object} response.ErrorResponse
|
||||||
// @Router /admin/login-options [post]
|
// @Router /admin/login-options [post]
|
||||||
func (ct *Login) LoginOptions(c *gin.Context) {
|
func (ct *Login) LoginOptions(c *gin.Context) {
|
||||||
res := service.AllService.OauthService.List(1, 100, func(tx *gorm.DB) {
|
ops := service.AllService.OauthService.GetOauthProviders()
|
||||||
tx.Select("op").Order("id")
|
|
||||||
})
|
|
||||||
var ops []string
|
|
||||||
for _, v := range res.Oauths {
|
|
||||||
ops = append(ops, v.Op)
|
|
||||||
}
|
|
||||||
response.Success(c, gin.H{
|
response.Success(c, gin.H{
|
||||||
"ops": ops,
|
"ops": ops,
|
||||||
"register": global.Config.App.Register,
|
"register": global.Config.App.Register,
|
||||||
@@ -163,12 +151,14 @@ func (ct *Login) OidcAuthQuery(c *gin.Context) {
|
|||||||
if ut == nil {
|
if ut == nil {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
//fmt.Println("u:", u)
|
responseLoginSuccess(c, u, ut.Token)
|
||||||
//fmt.Println("ut:", ut)
|
}
|
||||||
response.Success(c, &adResp.LoginPayload{
|
|
||||||
Token: ut.Token,
|
|
||||||
Username: u.Username,
|
func responseLoginSuccess(c *gin.Context, u *model.User, token string) {
|
||||||
RouteNames: service.AllService.UserService.RouteNames(u),
|
lp := &adResp.LoginPayload{}
|
||||||
Nickname: u.Nickname,
|
lp.FromUser(u)
|
||||||
})
|
lp.Token = token
|
||||||
|
lp.RouteNames = service.AllService.UserService.RouteNames(u)
|
||||||
|
response.Success(c, lp)
|
||||||
}
|
}
|
||||||
@@ -109,3 +109,34 @@ func (ct *LoginLog) Delete(c *gin.Context) {
|
|||||||
}
|
}
|
||||||
response.Fail(c, 101, response.TranslateMsg(c, "ItemNotFound"))
|
response.Fail(c, 101, response.TranslateMsg(c, "ItemNotFound"))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// BatchDelete 删除
|
||||||
|
// @Tags 登录日志
|
||||||
|
// @Summary 登录日志批量删除
|
||||||
|
// @Description 登录日志批量删除
|
||||||
|
// @Accept json
|
||||||
|
// @Produce json
|
||||||
|
// @Param body body admin.LoginLogIds true "登录日志"
|
||||||
|
// @Success 200 {object} response.Response
|
||||||
|
// @Failure 500 {object} response.Response
|
||||||
|
// @Router /admin/login_log/delete [post]
|
||||||
|
// @Security token
|
||||||
|
func (ct *LoginLog) BatchDelete(c *gin.Context) {
|
||||||
|
f := &admin.LoginLogIds{}
|
||||||
|
if err := c.ShouldBindJSON(f); err != nil {
|
||||||
|
response.Fail(c, 101, response.TranslateMsg(c, "ParamsError")+err.Error())
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if len(f.Ids) == 0 {
|
||||||
|
response.Fail(c, 101, response.TranslateMsg(c, "ParamsError"))
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
err := service.AllService.LoginLogService.BatchDelete(f.Ids)
|
||||||
|
if err == nil {
|
||||||
|
response.Success(c, nil)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
response.Fail(c, 101, err.Error())
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|||||||
@@ -5,7 +5,6 @@ import (
|
|||||||
"Gwen/http/request/admin"
|
"Gwen/http/request/admin"
|
||||||
adminReq "Gwen/http/request/admin"
|
adminReq "Gwen/http/request/admin"
|
||||||
"Gwen/http/response"
|
"Gwen/http/response"
|
||||||
"Gwen/model"
|
|
||||||
"Gwen/service"
|
"Gwen/service"
|
||||||
"github.com/gin-gonic/gin"
|
"github.com/gin-gonic/gin"
|
||||||
"strconv"
|
"strconv"
|
||||||
@@ -96,21 +95,23 @@ func (o *Oauth) BindConfirm(c *gin.Context) {
|
|||||||
response.Fail(c, 101, response.TranslateMsg(c, "ParamsError"))
|
response.Fail(c, 101, response.TranslateMsg(c, "ParamsError"))
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
v := service.AllService.OauthService.GetOauthCache(j.Code)
|
oauthService := service.AllService.OauthService
|
||||||
if v == nil {
|
oauthCache := oauthService.GetOauthCache(j.Code)
|
||||||
|
if oauthCache == nil {
|
||||||
response.Fail(c, 101, response.TranslateMsg(c, "OauthExpired"))
|
response.Fail(c, 101, response.TranslateMsg(c, "OauthExpired"))
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
u := service.AllService.UserService.CurUser(c)
|
oauthUser := oauthCache.ToOauthUser()
|
||||||
err = service.AllService.OauthService.BindOauthUser(v.Op, v.ThirdOpenId, v.ThirdName, u.Id)
|
user := service.AllService.UserService.CurUser(c)
|
||||||
|
err = oauthService.BindOauthUser(user.Id, oauthUser, oauthCache.Op)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
response.Fail(c, 101, response.TranslateMsg(c, "BindFail"))
|
response.Fail(c, 101, response.TranslateMsg(c, "BindFail"))
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
v.UserId = u.Id
|
oauthCache.UserId = user.Id
|
||||||
service.AllService.OauthService.SetOauthCache(j.Code, v, 0)
|
oauthService.SetOauthCache(j.Code, oauthCache, 0)
|
||||||
response.Success(c, v)
|
response.Success(c, oauthCache)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (o *Oauth) Unbind(c *gin.Context) {
|
func (o *Oauth) Unbind(c *gin.Context) {
|
||||||
@@ -126,28 +127,11 @@ func (o *Oauth) Unbind(c *gin.Context) {
|
|||||||
response.Fail(c, 101, response.TranslateMsg(c, "ItemNotFound"))
|
response.Fail(c, 101, response.TranslateMsg(c, "ItemNotFound"))
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
if f.Op == model.OauthTypeGithub {
|
err = service.AllService.OauthService.UnBindOauthUser(u.Id, f.Op)
|
||||||
err = service.AllService.OauthService.UnBindGithubUser(u.Id)
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
response.Fail(c, 101, response.TranslateMsg(c, "OperationFailed")+err.Error())
|
response.Fail(c, 101, response.TranslateMsg(c, "OperationFailed")+err.Error())
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
}
|
|
||||||
if f.Op == model.OauthTypeGoogle {
|
|
||||||
err = service.AllService.OauthService.UnBindGoogleUser(u.Id)
|
|
||||||
if err != nil {
|
|
||||||
response.Fail(c, 101, response.TranslateMsg(c, "OperationFailed")+err.Error())
|
|
||||||
return
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if f.Op == model.OauthTypeOidc {
|
|
||||||
err = service.AllService.OauthService.UnBindOidcUser(u.Id)
|
|
||||||
if err != nil {
|
|
||||||
response.Fail(c, 101, response.TranslateMsg(c, "OperationFailed")+err.Error())
|
|
||||||
return
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
response.Success(c, nil)
|
response.Success(c, nil)
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -196,15 +180,18 @@ func (o *Oauth) Create(c *gin.Context) {
|
|||||||
response.Fail(c, 101, errList[0])
|
response.Fail(c, 101, errList[0])
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
u := f.ToOauth()
|
||||||
ex := service.AllService.OauthService.InfoByOp(f.Op)
|
err := u.FormatOauthInfo()
|
||||||
|
if err != nil {
|
||||||
|
response.Fail(c, 101, response.TranslateMsg(c, "ParamsError")+err.Error())
|
||||||
|
return
|
||||||
|
}
|
||||||
|
ex := service.AllService.OauthService.InfoByOp(u.Op)
|
||||||
if ex.Id > 0 {
|
if ex.Id > 0 {
|
||||||
response.Fail(c, 101, response.TranslateMsg(c, "ItemExists"))
|
response.Fail(c, 101, response.TranslateMsg(c, "ItemExists"))
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
err = service.AllService.OauthService.Create(u)
|
||||||
u := f.ToOauth()
|
|
||||||
err := service.AllService.OauthService.Create(u)
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
response.Fail(c, 101, response.TranslateMsg(c, "OperationFailed")+err.Error())
|
response.Fail(c, 101, response.TranslateMsg(c, "OperationFailed")+err.Error())
|
||||||
return
|
return
|
||||||
|
|||||||
@@ -192,7 +192,7 @@ func (ct *Peer) Delete(c *gin.Context) {
|
|||||||
// @Param body body admin.PeerBatchDeleteForm true "设备id"
|
// @Param body body admin.PeerBatchDeleteForm true "设备id"
|
||||||
// @Success 200 {object} response.Response
|
// @Success 200 {object} response.Response
|
||||||
// @Failure 500 {object} response.Response
|
// @Failure 500 {object} response.Response
|
||||||
// @Router /admin/peer/delete [post]
|
// @Router /admin/peer/batchDelete [post]
|
||||||
// @Security token
|
// @Security token
|
||||||
func (ct *Peer) BatchDelete(c *gin.Context) {
|
func (ct *Peer) BatchDelete(c *gin.Context) {
|
||||||
f := &admin.PeerBatchDeleteForm{}
|
f := &admin.PeerBatchDeleteForm{}
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ import (
|
|||||||
"github.com/gin-gonic/gin"
|
"github.com/gin-gonic/gin"
|
||||||
"gorm.io/gorm"
|
"gorm.io/gorm"
|
||||||
"strconv"
|
"strconv"
|
||||||
|
"time"
|
||||||
)
|
)
|
||||||
|
|
||||||
type User struct {
|
type User struct {
|
||||||
@@ -216,12 +217,7 @@ func (ct *User) Current(c *gin.Context) {
|
|||||||
u := service.AllService.UserService.CurUser(c)
|
u := service.AllService.UserService.CurUser(c)
|
||||||
token, _ := c.Get("token")
|
token, _ := c.Get("token")
|
||||||
t := token.(string)
|
t := token.(string)
|
||||||
response.Success(c, &adResp.LoginPayload{
|
responseLoginSuccess(c, u, t)
|
||||||
Token: t,
|
|
||||||
Username: u.Username,
|
|
||||||
RouteNames: service.AllService.UserService.RouteNames(u),
|
|
||||||
Nickname: u.Nickname,
|
|
||||||
})
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// ChangeCurPwd 修改当前用户密码
|
// ChangeCurPwd 修改当前用户密码
|
||||||
@@ -286,10 +282,10 @@ func (ct *User) MyOauth(c *gin.Context) {
|
|||||||
var res []*adResp.UserOauthItem
|
var res []*adResp.UserOauthItem
|
||||||
for _, oa := range oal.Oauths {
|
for _, oa := range oal.Oauths {
|
||||||
item := &adResp.UserOauthItem{
|
item := &adResp.UserOauthItem{
|
||||||
ThirdType: oa.Op,
|
Op: oa.Op,
|
||||||
}
|
}
|
||||||
for _, ut := range uts {
|
for _, ut := range uts {
|
||||||
if ut.ThirdType == oa.Op {
|
if ut.Op == oa.Op {
|
||||||
item.Status = 1
|
item.Status = 1
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
@@ -299,6 +295,51 @@ func (ct *User) MyOauth(c *gin.Context) {
|
|||||||
response.Success(c, res)
|
response.Success(c, res)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// MyPeer 列表
|
||||||
|
// @Tags 设备
|
||||||
|
// @Summary 我的设备列表
|
||||||
|
// @Description 我的设备列表
|
||||||
|
// @Accept json
|
||||||
|
// @Produce json
|
||||||
|
// @Param page query int false "页码"
|
||||||
|
// @Param page_size query int false "页大小"
|
||||||
|
// @Param time_ago query int false "时间"
|
||||||
|
// @Param id query string false "ID"
|
||||||
|
// @Param hostname query string false "主机名"
|
||||||
|
// @Param uuids query string false "uuids 用逗号分隔"
|
||||||
|
// @Success 200 {object} response.Response{data=model.PeerList}
|
||||||
|
// @Failure 500 {object} response.Response
|
||||||
|
// @Router /admin/user/myPeer [get]
|
||||||
|
// @Security token
|
||||||
|
func (ct *User) MyPeer(c *gin.Context) {
|
||||||
|
query := &admin.PeerQuery{}
|
||||||
|
if err := c.ShouldBindQuery(query); err != nil {
|
||||||
|
response.Fail(c, 101, response.TranslateMsg(c, "ParamsError")+err.Error())
|
||||||
|
return
|
||||||
|
}
|
||||||
|
u := service.AllService.UserService.CurUser(c)
|
||||||
|
res := service.AllService.PeerService.ListFilterByUserId(query.Page, query.PageSize, func(tx *gorm.DB) {
|
||||||
|
if query.TimeAgo > 0 {
|
||||||
|
lt := time.Now().Unix() - int64(query.TimeAgo)
|
||||||
|
tx.Where("last_online_time < ?", lt)
|
||||||
|
}
|
||||||
|
if query.TimeAgo < 0 {
|
||||||
|
lt := time.Now().Unix() + int64(query.TimeAgo)
|
||||||
|
tx.Where("last_online_time > ?", lt)
|
||||||
|
}
|
||||||
|
if query.Id != "" {
|
||||||
|
tx.Where("id like ?", "%"+query.Id+"%")
|
||||||
|
}
|
||||||
|
if query.Hostname != "" {
|
||||||
|
tx.Where("hostname like ?", "%"+query.Hostname+"%")
|
||||||
|
}
|
||||||
|
if query.Uuids != "" {
|
||||||
|
tx.Where("uuid in (?)", query.Uuids)
|
||||||
|
}
|
||||||
|
}, u.Id)
|
||||||
|
response.Success(c, res)
|
||||||
|
}
|
||||||
|
|
||||||
// groupUsers
|
// groupUsers
|
||||||
func (ct *User) GroupUsers(c *gin.Context) {
|
func (ct *User) GroupUsers(c *gin.Context) {
|
||||||
q := &admin.GroupUsersQuery{}
|
q := &admin.GroupUsersQuery{}
|
||||||
@@ -345,7 +386,7 @@ func (ct *User) Register(c *gin.Context) {
|
|||||||
response.Fail(c, 101, errList[0])
|
response.Fail(c, 101, errList[0])
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
u := service.AllService.UserService.Register(f.Username, f.Password)
|
u := service.AllService.UserService.Register(f.Username, f.Email, f.Password)
|
||||||
if u == nil || u.Id == 0 {
|
if u == nil || u.Id == 0 {
|
||||||
response.Fail(c, 101, response.TranslateMsg(c, "OperationFailed"))
|
response.Fail(c, 101, response.TranslateMsg(c, "OperationFailed"))
|
||||||
return
|
return
|
||||||
@@ -358,10 +399,5 @@ func (ct *User) Register(c *gin.Context) {
|
|||||||
Ip: c.ClientIP(),
|
Ip: c.ClientIP(),
|
||||||
Type: model.LoginLogTypeAccount,
|
Type: model.LoginLogTypeAccount,
|
||||||
})
|
})
|
||||||
response.Success(c, &adResp.LoginPayload{
|
responseLoginSuccess(c, u, ut.Token)
|
||||||
Token: ut.Token,
|
|
||||||
Username: u.Username,
|
|
||||||
RouteNames: service.AllService.UserService.RouteNames(u),
|
|
||||||
Nickname: u.Nickname,
|
|
||||||
})
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -60,6 +60,7 @@ func (l *Login) Login(c *gin.Context) {
|
|||||||
ut := service.AllService.UserService.Login(u, &model.LoginLog{
|
ut := service.AllService.UserService.Login(u, &model.LoginLog{
|
||||||
UserId: u.Id,
|
UserId: u.Id,
|
||||||
Client: f.DeviceInfo.Type,
|
Client: f.DeviceInfo.Type,
|
||||||
|
DeviceId: f.Id,
|
||||||
Uuid: f.Uuid,
|
Uuid: f.Uuid,
|
||||||
Ip: c.ClientIP(),
|
Ip: c.ClientIP(),
|
||||||
Type: model.LoginLogTypeAccount,
|
Type: model.LoginLogTypeAccount,
|
||||||
@@ -83,22 +84,10 @@ func (l *Login) Login(c *gin.Context) {
|
|||||||
// @Failure 500 {object} response.ErrorResponse
|
// @Failure 500 {object} response.ErrorResponse
|
||||||
// @Router /login-options [get]
|
// @Router /login-options [get]
|
||||||
func (l *Login) LoginOptions(c *gin.Context) {
|
func (l *Login) LoginOptions(c *gin.Context) {
|
||||||
oauthOks := []string{}
|
ops := service.AllService.OauthService.GetOauthProviders()
|
||||||
err, _ := service.AllService.OauthService.GetOauthConfig(model.OauthTypeGithub)
|
ops = append(ops, model.OauthTypeWebauth)
|
||||||
if err == nil {
|
|
||||||
oauthOks = append(oauthOks, model.OauthTypeGithub)
|
|
||||||
}
|
|
||||||
err, _ = service.AllService.OauthService.GetOauthConfig(model.OauthTypeGoogle)
|
|
||||||
if err == nil {
|
|
||||||
oauthOks = append(oauthOks, model.OauthTypeGoogle)
|
|
||||||
}
|
|
||||||
err, _ = service.AllService.OauthService.GetOauthConfig(model.OauthTypeOidc)
|
|
||||||
if err == nil {
|
|
||||||
oauthOks = append(oauthOks, model.OauthTypeOidc)
|
|
||||||
}
|
|
||||||
oauthOks = append(oauthOks, model.OauthTypeWebauth)
|
|
||||||
var oidcItems []map[string]string
|
var oidcItems []map[string]string
|
||||||
for _, v := range oauthOks {
|
for _, v := range ops {
|
||||||
oidcItems = append(oidcItems, map[string]string{"name": v})
|
oidcItems = append(oidcItems, map[string]string{"name": v})
|
||||||
}
|
}
|
||||||
common, err := json.Marshal(oidcItems)
|
common, err := json.Marshal(oidcItems)
|
||||||
@@ -108,7 +97,7 @@ func (l *Login) LoginOptions(c *gin.Context) {
|
|||||||
}
|
}
|
||||||
var res []string
|
var res []string
|
||||||
res = append(res, "common-oidc/"+string(common))
|
res = append(res, "common-oidc/"+string(common))
|
||||||
for _, v := range oauthOks {
|
for _, v := range ops {
|
||||||
res = append(res, "oidc/"+v)
|
res = append(res, "oidc/"+v)
|
||||||
}
|
}
|
||||||
c.JSON(http.StatusOK, res)
|
c.JSON(http.StatusOK, res)
|
||||||
|
|||||||
@@ -9,8 +9,6 @@ import (
|
|||||||
"Gwen/service"
|
"Gwen/service"
|
||||||
"github.com/gin-gonic/gin"
|
"github.com/gin-gonic/gin"
|
||||||
"net/http"
|
"net/http"
|
||||||
"strconv"
|
|
||||||
"strings"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
type Oauth struct {
|
type Oauth struct {
|
||||||
@@ -32,13 +30,11 @@ func (o *Oauth) OidcAuth(c *gin.Context) {
|
|||||||
response.Error(c, response.TranslateMsg(c, "ParamsError")+err.Error())
|
response.Error(c, response.TranslateMsg(c, "ParamsError")+err.Error())
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
//fmt.Println(f)
|
|
||||||
if f.Op != model.OauthTypeWebauth && f.Op != model.OauthTypeGoogle && f.Op != model.OauthTypeGithub && f.Op != model.OauthTypeOidc {
|
|
||||||
response.Error(c, response.TranslateMsg(c, "ParamsError"))
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
err, code, url := service.AllService.OauthService.BeginAuth(f.Op)
|
oauthService := service.AllService.OauthService
|
||||||
|
var code string
|
||||||
|
var url string
|
||||||
|
err, code, url = oauthService.BeginAuth(f.Op)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
response.Error(c, response.TranslateMsg(c, err.Error()))
|
response.Error(c, response.TranslateMsg(c, err.Error()))
|
||||||
return
|
return
|
||||||
@@ -98,6 +94,7 @@ func (o *Oauth) OidcAuthQueryPre(c *gin.Context) (*model.User, *model.UserToken)
|
|||||||
ut = service.AllService.UserService.Login(u, &model.LoginLog{
|
ut = service.AllService.UserService.Login(u, &model.LoginLog{
|
||||||
UserId: u.Id,
|
UserId: u.Id,
|
||||||
Client: v.DeviceType,
|
Client: v.DeviceType,
|
||||||
|
DeviceId: v.Id,
|
||||||
Uuid: v.Uuid,
|
Uuid: v.Uuid,
|
||||||
Ip: c.ClientIP(),
|
Ip: c.ClientIP(),
|
||||||
Type: model.LoginLogTypeOauth,
|
Type: model.LoginLogTypeOauth,
|
||||||
@@ -149,70 +146,43 @@ func (o *Oauth) OauthCallback(c *gin.Context) {
|
|||||||
c.String(http.StatusInternalServerError, response.TranslateParamMsg(c, "ParamIsEmpty", "state"))
|
c.String(http.StatusInternalServerError, response.TranslateParamMsg(c, "ParamIsEmpty", "state"))
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
cacheKey := state
|
cacheKey := state
|
||||||
|
oauthService := service.AllService.OauthService
|
||||||
//从缓存中获取
|
//从缓存中获取
|
||||||
v := service.AllService.OauthService.GetOauthCache(cacheKey)
|
oauthCache := oauthService.GetOauthCache(cacheKey)
|
||||||
if v == nil {
|
if oauthCache == nil {
|
||||||
c.String(http.StatusInternalServerError, response.TranslateMsg(c, "OauthExpired"))
|
c.String(http.StatusInternalServerError, response.TranslateMsg(c, "OauthExpired"))
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
op := oauthCache.Op
|
||||||
ty := v.Op
|
action := oauthCache.Action
|
||||||
ac := v.Action
|
var user *model.User
|
||||||
var u *model.User
|
// 获取用户信息
|
||||||
openid := ""
|
|
||||||
thirdName := ""
|
|
||||||
//fmt.Println("ty ac ", ty, ac)
|
|
||||||
|
|
||||||
if ty == model.OauthTypeGithub {
|
|
||||||
code := c.Query("code")
|
code := c.Query("code")
|
||||||
err, userData := service.AllService.OauthService.GithubCallback(code)
|
err, oauthUser := oauthService.Callback(code, op)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
c.String(http.StatusInternalServerError, response.TranslateMsg(c, "OauthFailed")+response.TranslateMsg(c, err.Error()))
|
c.String(http.StatusInternalServerError, response.TranslateMsg(c, "OauthFailed")+response.TranslateMsg(c, err.Error()))
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
openid = strconv.Itoa(userData.Id)
|
userId := oauthCache.UserId
|
||||||
thirdName = userData.Login
|
openid := oauthUser.OpenId
|
||||||
} else if ty == model.OauthTypeGoogle {
|
if action == service.OauthActionTypeBind {
|
||||||
code := c.Query("code")
|
|
||||||
err, userData := service.AllService.OauthService.GoogleCallback(code)
|
|
||||||
if err != nil {
|
|
||||||
c.String(http.StatusInternalServerError, response.TranslateMsg(c, "OauthFailed")+response.TranslateMsg(c, err.Error()))
|
|
||||||
return
|
|
||||||
}
|
|
||||||
openid = userData.Email
|
|
||||||
//将空格替换成_
|
|
||||||
thirdName = strings.Replace(userData.Name, " ", "_", -1)
|
|
||||||
} else if ty == model.OauthTypeOidc {
|
|
||||||
code := c.Query("code")
|
|
||||||
err, userData := service.AllService.OauthService.OidcCallback(code)
|
|
||||||
if err != nil {
|
|
||||||
c.String(http.StatusInternalServerError, response.TranslateMsg(c, "OauthFailed")+response.TranslateMsg(c, err.Error()))
|
|
||||||
return
|
|
||||||
}
|
|
||||||
openid = userData.Sub
|
|
||||||
thirdName = userData.PreferredUsername
|
|
||||||
} else {
|
|
||||||
c.String(http.StatusInternalServerError, response.TranslateMsg(c, "ParamsError"))
|
|
||||||
return
|
|
||||||
}
|
|
||||||
if ac == service.OauthActionTypeBind {
|
|
||||||
|
|
||||||
//fmt.Println("bind", ty, userData)
|
//fmt.Println("bind", ty, userData)
|
||||||
utr := service.AllService.OauthService.UserThirdInfo(ty, openid)
|
// 检查此openid是否已经绑定过
|
||||||
|
utr := oauthService.UserThirdInfo(op, openid)
|
||||||
if utr.UserId > 0 {
|
if utr.UserId > 0 {
|
||||||
c.String(http.StatusInternalServerError, response.TranslateMsg(c, "OauthHasBindOtherUser"))
|
c.String(http.StatusInternalServerError, response.TranslateMsg(c, "OauthHasBindOtherUser"))
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
//绑定
|
//绑定
|
||||||
u = service.AllService.UserService.InfoById(v.UserId)
|
user = service.AllService.UserService.InfoById(userId)
|
||||||
if u == nil {
|
if user == nil {
|
||||||
c.String(http.StatusInternalServerError, response.TranslateMsg(c, "ItemNotFound"))
|
c.String(http.StatusInternalServerError, response.TranslateMsg(c, "ItemNotFound"))
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
//绑定
|
//绑定
|
||||||
err := service.AllService.OauthService.BindOauthUser(ty, openid, thirdName, v.UserId)
|
err := oauthService.BindOauthUser(userId, oauthUser, op)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
c.String(http.StatusInternalServerError, response.TranslateMsg(c, "BindFail"))
|
c.String(http.StatusInternalServerError, response.TranslateMsg(c, "BindFail"))
|
||||||
return
|
return
|
||||||
@@ -220,42 +190,41 @@ func (o *Oauth) OauthCallback(c *gin.Context) {
|
|||||||
c.String(http.StatusOK, response.TranslateMsg(c, "BindSuccess"))
|
c.String(http.StatusOK, response.TranslateMsg(c, "BindSuccess"))
|
||||||
return
|
return
|
||||||
|
|
||||||
} else if ac == service.OauthActionTypeLogin {
|
} else if action == service.OauthActionTypeLogin {
|
||||||
//登录
|
//登录
|
||||||
if v.UserId != 0 {
|
if userId != 0 {
|
||||||
c.String(http.StatusInternalServerError, response.TranslateMsg(c, "OauthHasBeenSuccess"))
|
c.String(http.StatusInternalServerError, response.TranslateMsg(c, "OauthHasBeenSuccess"))
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
u = service.AllService.UserService.InfoByGithubId(openid)
|
user = service.AllService.UserService.InfoByOauthId(op, openid)
|
||||||
if u == nil {
|
if user == nil {
|
||||||
oa := service.AllService.OauthService.InfoByOp(ty)
|
oauthConfig := oauthService.InfoByOp(op)
|
||||||
if !*oa.AutoRegister {
|
if !*oauthConfig.AutoRegister {
|
||||||
//c.String(http.StatusInternalServerError, "还未绑定用户,请先绑定")
|
//c.String(http.StatusInternalServerError, "还未绑定用户,请先绑定")
|
||||||
v.ThirdName = thirdName
|
oauthCache.UpdateFromOauthUser(oauthUser)
|
||||||
v.ThirdOpenId = openid
|
|
||||||
url := global.Config.Rustdesk.ApiServer + "/_admin/#/oauth/bind/" + cacheKey
|
url := global.Config.Rustdesk.ApiServer + "/_admin/#/oauth/bind/" + cacheKey
|
||||||
c.Redirect(http.StatusFound, url)
|
c.Redirect(http.StatusFound, url)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
//自动注册
|
//自动注册
|
||||||
u = service.AllService.UserService.RegisterByOauth(ty, thirdName, openid)
|
err, user = service.AllService.UserService.RegisterByOauth(oauthUser, op)
|
||||||
if u.Id == 0 {
|
if err != nil {
|
||||||
c.String(http.StatusInternalServerError, response.TranslateMsg(c, "OauthRegisterFailed"))
|
c.String(http.StatusInternalServerError, response.TranslateMsg(c, err.Error()))
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
v.UserId = u.Id
|
oauthCache.UserId = user.Id
|
||||||
service.AllService.OauthService.SetOauthCache(cacheKey, v, 0)
|
oauthService.SetOauthCache(cacheKey, oauthCache, 0)
|
||||||
// 如果是webadmin,登录成功后跳转到webadmin
|
// 如果是webadmin,登录成功后跳转到webadmin
|
||||||
if v.DeviceType == "webadmin" {
|
if oauthCache.DeviceType == model.LoginLogClientWebAdmin {
|
||||||
/*service.AllService.UserService.Login(u, &model.LoginLog{
|
/*service.AllService.UserService.Login(u, &model.LoginLog{
|
||||||
UserId: u.Id,
|
UserId: u.Id,
|
||||||
Client: "webadmin",
|
Client: "webadmin",
|
||||||
Uuid: "", //must be empty
|
Uuid: "", //must be empty
|
||||||
Ip: c.ClientIP(),
|
Ip: c.ClientIP(),
|
||||||
Type: model.LoginLogTypeOauth,
|
Type: model.LoginLogTypeOauth,
|
||||||
Platform: v.DeviceOs,
|
Platform: oauthService.DeviceOs,
|
||||||
})*/
|
})*/
|
||||||
url := global.Config.Rustdesk.ApiServer + "/_admin/#/"
|
url := global.Config.Rustdesk.ApiServer + "/_admin/#/"
|
||||||
c.Redirect(http.StatusFound, url)
|
c.Redirect(http.StatusFound, url)
|
||||||
|
|||||||
@@ -17,7 +17,7 @@ func AdminAuth() gin.HandlerFunc {
|
|||||||
c.Abort()
|
c.Abort()
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
user := service.AllService.UserService.InfoByAccessToken(token)
|
user, ut := service.AllService.UserService.InfoByAccessToken(token)
|
||||||
if user.Id == 0 {
|
if user.Id == 0 {
|
||||||
response.Fail(c, 403, "请先登录")
|
response.Fail(c, 403, "请先登录")
|
||||||
c.Abort()
|
c.Abort()
|
||||||
@@ -26,6 +26,8 @@ func AdminAuth() gin.HandlerFunc {
|
|||||||
|
|
||||||
c.Set("curUser", user)
|
c.Set("curUser", user)
|
||||||
c.Set("token", token)
|
c.Set("token", token)
|
||||||
|
//如果时间小于1天,token自动续期
|
||||||
|
service.AllService.UserService.AutoRefreshAccessToken(ut)
|
||||||
|
|
||||||
c.Next()
|
c.Next()
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -28,7 +28,7 @@ func RustAuth() gin.HandlerFunc {
|
|||||||
//这里只是简单的提取
|
//这里只是简单的提取
|
||||||
token = token[7:]
|
token = token[7:]
|
||||||
//验证token
|
//验证token
|
||||||
user := service.AllService.UserService.InfoByAccessToken(token)
|
user, ut := service.AllService.UserService.InfoByAccessToken(token)
|
||||||
if user.Id == 0 {
|
if user.Id == 0 {
|
||||||
c.JSON(401, gin.H{
|
c.JSON(401, gin.H{
|
||||||
"error": "Unauthorized",
|
"error": "Unauthorized",
|
||||||
@@ -46,6 +46,9 @@ func RustAuth() gin.HandlerFunc {
|
|||||||
|
|
||||||
c.Set("curUser", user)
|
c.Set("curUser", user)
|
||||||
c.Set("token", token)
|
c.Set("token", token)
|
||||||
|
|
||||||
|
service.AllService.UserService.AutoRefreshAccessToken(ut)
|
||||||
|
|
||||||
c.Next()
|
c.Next()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -5,3 +5,10 @@ type AuditQuery struct {
|
|||||||
FromPeer string `form:"from_peer"`
|
FromPeer string `form:"from_peer"`
|
||||||
PageQuery
|
PageQuery
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type AuditConnLogIds struct {
|
||||||
|
Ids []uint `json:"ids" validate:"required"`
|
||||||
|
}
|
||||||
|
type AuditFileLogIds struct {
|
||||||
|
Ids []uint `json:"ids" validate:"required"`
|
||||||
|
}
|
||||||
|
|||||||
@@ -15,3 +15,7 @@ type LoginTokenQuery struct {
|
|||||||
UserId int `form:"user_id"`
|
UserId int `form:"user_id"`
|
||||||
PageQuery
|
PageQuery
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type LoginLogIds struct {
|
||||||
|
Ids []uint `json:"ids" validate:"required"`
|
||||||
|
}
|
||||||
|
|||||||
@@ -1,6 +1,8 @@
|
|||||||
package admin
|
package admin
|
||||||
|
|
||||||
import "Gwen/model"
|
import (
|
||||||
|
"Gwen/model"
|
||||||
|
)
|
||||||
|
|
||||||
type BindOauthForm struct {
|
type BindOauthForm struct {
|
||||||
Op string `json:"op" binding:"required"`
|
Op string `json:"op" binding:"required"`
|
||||||
@@ -14,7 +16,8 @@ type UnBindOauthForm struct {
|
|||||||
}
|
}
|
||||||
type OauthForm struct {
|
type OauthForm struct {
|
||||||
Id uint `json:"id"`
|
Id uint `json:"id"`
|
||||||
Op string `json:"op" validate:"required"`
|
Op string `json:"op" validate:"omitempty"`
|
||||||
|
OauthType string `json:"oauth_type" validate:"required"`
|
||||||
Issuer string `json:"issuer" validate:"omitempty,url"`
|
Issuer string `json:"issuer" validate:"omitempty,url"`
|
||||||
Scopes string `json:"scopes" validate:"omitempty"`
|
Scopes string `json:"scopes" validate:"omitempty"`
|
||||||
ClientId string `json:"client_id" validate:"required"`
|
ClientId string `json:"client_id" validate:"required"`
|
||||||
@@ -26,6 +29,7 @@ type OauthForm struct {
|
|||||||
func (of *OauthForm) ToOauth() *model.Oauth {
|
func (of *OauthForm) ToOauth() *model.Oauth {
|
||||||
oa := &model.Oauth{
|
oa := &model.Oauth{
|
||||||
Op: of.Op,
|
Op: of.Op,
|
||||||
|
OauthType: of.OauthType,
|
||||||
ClientId: of.ClientId,
|
ClientId: of.ClientId,
|
||||||
ClientSecret: of.ClientSecret,
|
ClientSecret: of.ClientSecret,
|
||||||
RedirectUrl: of.RedirectUrl,
|
RedirectUrl: of.RedirectUrl,
|
||||||
|
|||||||
@@ -6,7 +6,8 @@ import (
|
|||||||
|
|
||||||
type UserForm struct {
|
type UserForm struct {
|
||||||
Id uint `json:"id"`
|
Id uint `json:"id"`
|
||||||
Username string `json:"username" validate:"required,gte=4,lte=10"`
|
Username string `json:"username" validate:"required,gte=2,lte=10"`
|
||||||
|
Email string `json:"email"` //validate:"required,email" email不强制
|
||||||
//Password string `json:"password" validate:"required,gte=4,lte=20"`
|
//Password string `json:"password" validate:"required,gte=4,lte=20"`
|
||||||
Nickname string `json:"nickname"`
|
Nickname string `json:"nickname"`
|
||||||
Avatar string `json:"avatar"`
|
Avatar string `json:"avatar"`
|
||||||
@@ -19,6 +20,7 @@ func (uf *UserForm) FromUser(user *model.User) *UserForm {
|
|||||||
uf.Id = user.Id
|
uf.Id = user.Id
|
||||||
uf.Username = user.Username
|
uf.Username = user.Username
|
||||||
uf.Nickname = user.Nickname
|
uf.Nickname = user.Nickname
|
||||||
|
uf.Email = user.Email
|
||||||
uf.Avatar = user.Avatar
|
uf.Avatar = user.Avatar
|
||||||
uf.GroupId = user.GroupId
|
uf.GroupId = user.GroupId
|
||||||
uf.IsAdmin = user.IsAdmin
|
uf.IsAdmin = user.IsAdmin
|
||||||
@@ -30,6 +32,7 @@ func (uf *UserForm) ToUser() *model.User {
|
|||||||
user.Id = uf.Id
|
user.Id = uf.Id
|
||||||
user.Username = uf.Username
|
user.Username = uf.Username
|
||||||
user.Nickname = uf.Nickname
|
user.Nickname = uf.Nickname
|
||||||
|
user.Email = uf.Email
|
||||||
user.Avatar = uf.Avatar
|
user.Avatar = uf.Avatar
|
||||||
user.GroupId = uf.GroupId
|
user.GroupId = uf.GroupId
|
||||||
user.IsAdmin = uf.IsAdmin
|
user.IsAdmin = uf.IsAdmin
|
||||||
@@ -61,7 +64,8 @@ type GroupUsersQuery struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
type RegisterForm struct {
|
type RegisterForm struct {
|
||||||
Username string `json:"username" validate:"required,gte=4,lte=10"`
|
Username string `json:"username" validate:"required,gte=2,lte=10"`
|
||||||
|
Email string `json:"email"` // validate:"required,email"
|
||||||
Password string `json:"password" validate:"required,gte=4,lte=20"`
|
Password string `json:"password" validate:"required,gte=4,lte=20"`
|
||||||
ConfirmPassword string `json:"confirm_password" validate:"required,gte=4,lte=20"`
|
ConfirmPassword string `json:"confirm_password" validate:"required,gte=4,lte=20"`
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -34,7 +34,7 @@ type LoginForm struct {
|
|||||||
Id string `json:"id" label:"id"`
|
Id string `json:"id" label:"id"`
|
||||||
Type string `json:"type" label:"type"`
|
Type string `json:"type" label:"type"`
|
||||||
Uuid string `json:"uuid" label:"uuid"`
|
Uuid string `json:"uuid" label:"uuid"`
|
||||||
Username string `json:"username" validate:"required,gte=4,lte=10" label:"用户名"`
|
Username string `json:"username" validate:"required,gte=2,lte=10" label:"用户名"`
|
||||||
Password string `json:"password,omitempty" validate:"gte=4,lte=20" label:"密码"`
|
Password string `json:"password,omitempty" validate:"gte=4,lte=20" label:"密码"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -4,18 +4,27 @@ import "Gwen/model"
|
|||||||
|
|
||||||
type LoginPayload struct {
|
type LoginPayload struct {
|
||||||
Username string `json:"username"`
|
Username string `json:"username"`
|
||||||
|
Email string `json:"email"`
|
||||||
|
Avatar string `json:"avatar"`
|
||||||
Token string `json:"token"`
|
Token string `json:"token"`
|
||||||
RouteNames []string `json:"route_names"`
|
RouteNames []string `json:"route_names"`
|
||||||
Nickname string `json:"nickname"`
|
Nickname string `json:"nickname"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (lp *LoginPayload) FromUser(user *model.User) {
|
||||||
|
lp.Username = user.Username
|
||||||
|
lp.Email = user.Email
|
||||||
|
lp.Avatar = user.Avatar
|
||||||
|
lp.Nickname = user.Nickname
|
||||||
|
}
|
||||||
|
|
||||||
var UserRouteNames = []string{
|
var UserRouteNames = []string{
|
||||||
"MyTagList", "MyAddressBookList", "MyInfo", "MyAddressBookCollection",
|
"MyTagList", "MyAddressBookList", "MyInfo", "MyAddressBookCollection", "MyPeer",
|
||||||
}
|
}
|
||||||
var AdminRouteNames = []string{"*"}
|
var AdminRouteNames = []string{"*"}
|
||||||
|
|
||||||
type UserOauthItem struct {
|
type UserOauthItem struct {
|
||||||
ThirdType string `json:"third_type"`
|
Op string `json:"op"`
|
||||||
Status int `json:"status"`
|
Status int `json:"status"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -29,6 +29,7 @@ type UserPayload struct {
|
|||||||
|
|
||||||
func (up *UserPayload) FromUser(user *model.User) *UserPayload {
|
func (up *UserPayload) FromUser(user *model.User) *UserPayload {
|
||||||
up.Name = user.Username
|
up.Name = user.Username
|
||||||
|
up.Email = user.Email
|
||||||
up.IsAdmin = user.IsAdmin
|
up.IsAdmin = user.IsAdmin
|
||||||
up.Status = int(user.Status)
|
up.Status = int(user.Status)
|
||||||
up.Info = map[string]interface{}{}
|
up.Info = map[string]interface{}{}
|
||||||
|
|||||||
@@ -31,9 +31,14 @@ func Init(g *gin.Engine) {
|
|||||||
AddressBookCollectionBind(adg)
|
AddressBookCollectionBind(adg)
|
||||||
AddressBookCollectionRuleBind(adg)
|
AddressBookCollectionRuleBind(adg)
|
||||||
UserTokenBind(adg)
|
UserTokenBind(adg)
|
||||||
|
ConfigBind(adg)
|
||||||
|
|
||||||
|
//deprecated by ConfigBind
|
||||||
rs := &admin.Rustdesk{}
|
rs := &admin.Rustdesk{}
|
||||||
adg.GET("/server-config", rs.ServerConfig)
|
adg.GET("/server-config", rs.ServerConfig)
|
||||||
adg.GET("/app-config", rs.AppConfig)
|
adg.GET("/app-config", rs.AppConfig)
|
||||||
|
//deprecated end
|
||||||
|
|
||||||
//访问静态文件
|
//访问静态文件
|
||||||
//g.StaticFS("/upload", http.Dir(global.Config.Gin.ResourcesPath+"/upload"))
|
//g.StaticFS("/upload", http.Dir(global.Config.Gin.ResourcesPath+"/upload"))
|
||||||
}
|
}
|
||||||
@@ -53,6 +58,7 @@ func UserBind(rg *gin.RouterGroup) {
|
|||||||
aR.GET("/current", cont.Current)
|
aR.GET("/current", cont.Current)
|
||||||
aR.POST("/changeCurPwd", cont.ChangeCurPwd)
|
aR.POST("/changeCurPwd", cont.ChangeCurPwd)
|
||||||
aR.POST("/myOauth", cont.MyOauth)
|
aR.POST("/myOauth", cont.MyOauth)
|
||||||
|
aR.GET("/myPeer", cont.MyPeer)
|
||||||
aR.POST("/groupUsers", cont.GroupUsers)
|
aR.POST("/groupUsers", cont.GroupUsers)
|
||||||
}
|
}
|
||||||
aRP := rg.Group("/user").Use(middleware.AdminPrivilege())
|
aRP := rg.Group("/user").Use(middleware.AdminPrivilege())
|
||||||
@@ -108,6 +114,8 @@ func AddressBookBind(rg *gin.RouterGroup) {
|
|||||||
}
|
}
|
||||||
func PeerBind(rg *gin.RouterGroup) {
|
func PeerBind(rg *gin.RouterGroup) {
|
||||||
aR := rg.Group("/peer")
|
aR := rg.Group("/peer")
|
||||||
|
aR.POST("/simpleData", (&admin.Peer{}).SimpleData)
|
||||||
|
aR.Use(middleware.AdminPrivilege())
|
||||||
{
|
{
|
||||||
cont := &admin.Peer{}
|
cont := &admin.Peer{}
|
||||||
aR.GET("/list", cont.List)
|
aR.GET("/list", cont.List)
|
||||||
@@ -115,10 +123,7 @@ func PeerBind(rg *gin.RouterGroup) {
|
|||||||
aR.POST("/create", cont.Create)
|
aR.POST("/create", cont.Create)
|
||||||
aR.POST("/update", cont.Update)
|
aR.POST("/update", cont.Update)
|
||||||
aR.POST("/delete", cont.Delete)
|
aR.POST("/delete", cont.Delete)
|
||||||
aR.POST("/simpleData", cont.SimpleData)
|
aR.POST("/batchDelete", cont.BatchDelete)
|
||||||
|
|
||||||
arp := aR.Use(middleware.AdminPrivilege())
|
|
||||||
arp.POST("/batchDelete", cont.BatchDelete)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -149,15 +154,18 @@ func LoginLogBind(rg *gin.RouterGroup) {
|
|||||||
cont := &admin.LoginLog{}
|
cont := &admin.LoginLog{}
|
||||||
aR.GET("/list", cont.List)
|
aR.GET("/list", cont.List)
|
||||||
aR.POST("/delete", cont.Delete)
|
aR.POST("/delete", cont.Delete)
|
||||||
|
aR.POST("/batchDelete", cont.BatchDelete)
|
||||||
}
|
}
|
||||||
func AuditBind(rg *gin.RouterGroup) {
|
func AuditBind(rg *gin.RouterGroup) {
|
||||||
cont := &admin.Audit{}
|
cont := &admin.Audit{}
|
||||||
aR := rg.Group("/audit_conn").Use(middleware.AdminPrivilege())
|
aR := rg.Group("/audit_conn").Use(middleware.AdminPrivilege())
|
||||||
aR.GET("/list", cont.ConnList)
|
aR.GET("/list", cont.ConnList)
|
||||||
aR.POST("/delete", cont.ConnDelete)
|
aR.POST("/delete", cont.ConnDelete)
|
||||||
|
aR.POST("/batchDelete", cont.BatchConnDelete)
|
||||||
afR := rg.Group("/audit_file").Use(middleware.AdminPrivilege())
|
afR := rg.Group("/audit_file").Use(middleware.AdminPrivilege())
|
||||||
afR.GET("/list", cont.FileList)
|
afR.GET("/list", cont.FileList)
|
||||||
afR.POST("/delete", cont.FileDelete)
|
afR.POST("/delete", cont.FileDelete)
|
||||||
|
afR.POST("/batchDelete", cont.BatchFileDelete)
|
||||||
}
|
}
|
||||||
func AddressBookCollectionBind(rg *gin.RouterGroup) {
|
func AddressBookCollectionBind(rg *gin.RouterGroup) {
|
||||||
aR := rg.Group("/address_book_collection")
|
aR := rg.Group("/address_book_collection")
|
||||||
@@ -188,6 +196,13 @@ func UserTokenBind(rg *gin.RouterGroup) {
|
|||||||
aR.GET("/list", cont.List)
|
aR.GET("/list", cont.List)
|
||||||
aR.POST("/delete", cont.Delete)
|
aR.POST("/delete", cont.Delete)
|
||||||
}
|
}
|
||||||
|
func ConfigBind(rg *gin.RouterGroup) {
|
||||||
|
aR := rg.Group("/config")
|
||||||
|
rs := &admin.Config{}
|
||||||
|
aR.GET("/server", rs.ServerConfig)
|
||||||
|
aR.GET("/app", rs.AppConfig)
|
||||||
|
aR.GET("/admin", rs.AdminConfig)
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
func FileBind(rg *gin.RouterGroup) {
|
func FileBind(rg *gin.RouterGroup) {
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ type LoginLog struct {
|
|||||||
IdModel
|
IdModel
|
||||||
UserId uint `json:"user_id" gorm:"default:0;not null;"`
|
UserId uint `json:"user_id" gorm:"default:0;not null;"`
|
||||||
Client string `json:"client"` //webadmin,webclient,app,
|
Client string `json:"client"` //webadmin,webclient,app,
|
||||||
|
DeviceId string `json:"device_id"`
|
||||||
Uuid string `json:"uuid"`
|
Uuid string `json:"uuid"`
|
||||||
Ip string `json:"ip"`
|
Ip string `json:"ip"`
|
||||||
Type string `json:"type"` //account,oauth
|
Type string `json:"type"` //account,oauth
|
||||||
|
|||||||
134
model/oauth.go
134
model/oauth.go
@@ -1,8 +1,40 @@
|
|||||||
package model
|
package model
|
||||||
|
|
||||||
|
import (
|
||||||
|
"errors"
|
||||||
|
"strconv"
|
||||||
|
"strings"
|
||||||
|
)
|
||||||
|
|
||||||
|
const OIDC_DEFAULT_SCOPES = "openid,profile,email"
|
||||||
|
|
||||||
|
const (
|
||||||
|
// make sure the value shouldbe lowercase
|
||||||
|
OauthTypeGithub string = "github"
|
||||||
|
OauthTypeGoogle string = "google"
|
||||||
|
OauthTypeOidc string = "oidc"
|
||||||
|
OauthTypeWebauth string = "webauth"
|
||||||
|
)
|
||||||
|
|
||||||
|
// Validate the oauth type
|
||||||
|
func ValidateOauthType(oauthType string) error {
|
||||||
|
switch oauthType {
|
||||||
|
case OauthTypeGithub, OauthTypeGoogle, OauthTypeOidc, OauthTypeWebauth:
|
||||||
|
return nil
|
||||||
|
default:
|
||||||
|
return errors.New("invalid Oauth type")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const (
|
||||||
|
UserEndpointGithub string = "https://api.github.com/user"
|
||||||
|
IssuerGoogle string = "https://accounts.google.com"
|
||||||
|
)
|
||||||
|
|
||||||
type Oauth struct {
|
type Oauth struct {
|
||||||
IdModel
|
IdModel
|
||||||
Op string `json:"op"`
|
Op string `json:"op"`
|
||||||
|
OauthType string `json:"oauth_type"`
|
||||||
ClientId string `json:"client_id"`
|
ClientId string `json:"client_id"`
|
||||||
ClientSecret string `json:"client_secret"`
|
ClientSecret string `json:"client_secret"`
|
||||||
RedirectUrl string `json:"redirect_url"`
|
RedirectUrl string `json:"redirect_url"`
|
||||||
@@ -12,12 +44,102 @@ type Oauth struct {
|
|||||||
TimeModel
|
TimeModel
|
||||||
}
|
}
|
||||||
|
|
||||||
const (
|
// Helper function to format oauth info, it's used in the update and create method
|
||||||
OauthTypeGithub = "github"
|
func (oa *Oauth) FormatOauthInfo() error {
|
||||||
OauthTypeGoogle = "google"
|
oauthType := strings.TrimSpace(oa.OauthType)
|
||||||
OauthTypeOidc = "oidc"
|
err := ValidateOauthType(oa.OauthType)
|
||||||
OauthTypeWebauth = "webauth"
|
if err != nil {
|
||||||
)
|
return err
|
||||||
|
}
|
||||||
|
switch oauthType {
|
||||||
|
case OauthTypeGithub:
|
||||||
|
oa.Op = OauthTypeGithub
|
||||||
|
case OauthTypeGoogle:
|
||||||
|
oa.Op = OauthTypeGoogle
|
||||||
|
}
|
||||||
|
// check if the op is empty, set the default value
|
||||||
|
op := strings.TrimSpace(oa.Op)
|
||||||
|
if op == "" && oauthType == OauthTypeOidc {
|
||||||
|
oa.Op = OauthTypeOidc
|
||||||
|
}
|
||||||
|
// check the issuer, if the oauth type is google and the issuer is empty, set the issuer to the default value
|
||||||
|
issuer := strings.TrimSpace(oa.Issuer)
|
||||||
|
// If the oauth type is google and the issuer is empty, set the issuer to the default value
|
||||||
|
if oauthType == OauthTypeGoogle && issuer == "" {
|
||||||
|
oa.Issuer = IssuerGoogle
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
type OauthUser struct {
|
||||||
|
OpenId string `json:"open_id" gorm:"not null;index"`
|
||||||
|
Name string `json:"name"`
|
||||||
|
Username string `json:"username"`
|
||||||
|
Email string `json:"email"`
|
||||||
|
VerifiedEmail bool `json:"verified_email,omitempty"`
|
||||||
|
Picture string `json:"picture,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (ou *OauthUser) ToUser(user *User, overideUsername bool) {
|
||||||
|
if overideUsername {
|
||||||
|
user.Username = ou.Username
|
||||||
|
}
|
||||||
|
user.Email = ou.Email
|
||||||
|
user.Nickname = ou.Name
|
||||||
|
user.Avatar = ou.Picture
|
||||||
|
}
|
||||||
|
|
||||||
|
type OauthUserBase struct {
|
||||||
|
Name string `json:"name"`
|
||||||
|
Email string `json:"email"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type OidcUser struct {
|
||||||
|
OauthUserBase
|
||||||
|
Sub string `json:"sub"`
|
||||||
|
VerifiedEmail bool `json:"email_verified"`
|
||||||
|
PreferredUsername string `json:"preferred_username"`
|
||||||
|
Picture string `json:"picture"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (ou *OidcUser) ToOauthUser() *OauthUser {
|
||||||
|
var username string
|
||||||
|
// 使用 PreferredUsername,如果不存在,降级到 Email 前缀
|
||||||
|
if ou.PreferredUsername != "" {
|
||||||
|
username = ou.PreferredUsername
|
||||||
|
} else {
|
||||||
|
username = strings.ToLower(ou.Email)
|
||||||
|
}
|
||||||
|
|
||||||
|
return &OauthUser{
|
||||||
|
OpenId: ou.Sub,
|
||||||
|
Name: ou.Name,
|
||||||
|
Username: username,
|
||||||
|
Email: ou.Email,
|
||||||
|
VerifiedEmail: ou.VerifiedEmail,
|
||||||
|
Picture: ou.Picture,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
type GithubUser struct {
|
||||||
|
OauthUserBase
|
||||||
|
Id int `json:"id"`
|
||||||
|
Login string `json:"login"`
|
||||||
|
AvatarUrl string `json:"avatar_url"`
|
||||||
|
VerifiedEmail bool `json:"verified_email"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (gu *GithubUser) ToOauthUser() *OauthUser {
|
||||||
|
username := strings.ToLower(gu.Login)
|
||||||
|
return &OauthUser{
|
||||||
|
OpenId: strconv.Itoa(gu.Id),
|
||||||
|
Name: gu.Name,
|
||||||
|
Username: username,
|
||||||
|
Email: gu.Email,
|
||||||
|
VerifiedEmail: gu.VerifiedEmail,
|
||||||
|
Picture: gu.AvatarUrl,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
type OauthList struct {
|
type OauthList struct {
|
||||||
Oauths []*Oauth `json:"list"`
|
Oauths []*Oauth `json:"list"`
|
||||||
|
|||||||
@@ -3,6 +3,8 @@ package model
|
|||||||
type User struct {
|
type User struct {
|
||||||
IdModel
|
IdModel
|
||||||
Username string `json:"username" gorm:"default:'';not null;uniqueIndex"`
|
Username string `json:"username" gorm:"default:'';not null;uniqueIndex"`
|
||||||
|
Email string `json:"email" gorm:"default:'';not null;index"`
|
||||||
|
// Email string `json:"email" `
|
||||||
Password string `json:"-" gorm:"default:'';not null;"`
|
Password string `json:"-" gorm:"default:'';not null;"`
|
||||||
Nickname string `json:"nickname" gorm:"default:'';not null;"`
|
Nickname string `json:"nickname" gorm:"default:'';not null;"`
|
||||||
Avatar string `json:"avatar" gorm:"default:'';not null;"`
|
Avatar string `json:"avatar" gorm:"default:'';not null;"`
|
||||||
@@ -12,6 +14,15 @@ type User struct {
|
|||||||
TimeModel
|
TimeModel
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// BeforeSave 钩子用于确保 email 字段有合理的默认值
|
||||||
|
//func (u *User) BeforeSave(tx *gorm.DB) (err error) {
|
||||||
|
// // 如果 email 为空,设置为默认值
|
||||||
|
// if u.Email == "" {
|
||||||
|
// u.Email = fmt.Sprintf("%s@example.com", u.Username)
|
||||||
|
// }
|
||||||
|
// return nil
|
||||||
|
//}
|
||||||
|
|
||||||
type UserList struct {
|
type UserList struct {
|
||||||
Users []*User `json:"list,omitempty"`
|
Users []*User `json:"list,omitempty"`
|
||||||
Pagination
|
Pagination
|
||||||
|
|||||||
@@ -1,12 +1,26 @@
|
|||||||
package model
|
package model
|
||||||
|
|
||||||
|
import (
|
||||||
|
"strings"
|
||||||
|
)
|
||||||
|
|
||||||
type UserThird struct {
|
type UserThird struct {
|
||||||
IdModel
|
IdModel
|
||||||
UserId uint `json:"user_id" gorm:"not null;index"`
|
UserId uint `json:"user_id" gorm:"not null;index"`
|
||||||
OpenId string `json:"open_id" gorm:"not null;index"`
|
OauthUser
|
||||||
UnionId string `json:"union_id" gorm:"not null;"`
|
UnionId string `json:"union_id" gorm:"default:'';not null;"`
|
||||||
ThirdType string `json:"third_type" gorm:"not null;"`
|
// OauthType string `json:"oauth_type" gorm:"not null;"`
|
||||||
ThirdEmail string `json:"third_email"`
|
ThirdType string `json:"third_type" gorm:"default:'';not null;"` //deprecated
|
||||||
ThirdName string `json:"third_name"`
|
OauthType string `json:"oauth_type" gorm:"default:'';not null;"`
|
||||||
|
Op string `json:"op" gorm:"default:'';not null;"`
|
||||||
TimeModel
|
TimeModel
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (u *UserThird) FromOauthUser(userId uint, oauthUser *OauthUser, oauthType string, op string) {
|
||||||
|
u.UserId = userId
|
||||||
|
u.OauthUser = *oauthUser
|
||||||
|
u.OauthType = oauthType
|
||||||
|
u.Op = op
|
||||||
|
// make sure email is lower case
|
||||||
|
u.Email = strings.ToLower(u.Email)
|
||||||
|
}
|
||||||
|
|||||||
@@ -3,6 +3,8 @@ package model
|
|||||||
type UserToken struct {
|
type UserToken struct {
|
||||||
IdModel
|
IdModel
|
||||||
UserId uint `json:"user_id" gorm:"default:0;not null;index"`
|
UserId uint `json:"user_id" gorm:"default:0;not null;index"`
|
||||||
|
DeviceUuid string `json:"device_uuid" gorm:"default:'';omitempty;"`
|
||||||
|
DeviceId string `json:"device_id" gorm:"default:'';omitempty;"`
|
||||||
Token string `json:"token" gorm:"default:'';not null;index"`
|
Token string `json:"token" gorm:"default:'';not null;index"`
|
||||||
ExpiredAt int64 `json:"expired_at" gorm:"default:0;not null;"`
|
ExpiredAt int64 `json:"expired_at" gorm:"default:0;not null;"`
|
||||||
TimeModel
|
TimeModel
|
||||||
|
|||||||
@@ -85,3 +85,11 @@ func (as *AuditService) DeleteAuditFile(u *model.AuditFile) error {
|
|||||||
func (as *AuditService) UpdateAuditFile(u *model.AuditFile) error {
|
func (as *AuditService) UpdateAuditFile(u *model.AuditFile) error {
|
||||||
return global.DB.Model(u).Updates(u).Error
|
return global.DB.Model(u).Updates(u).Error
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (as *AuditService) BatchDeleteAuditConn(ids []uint) error {
|
||||||
|
return global.DB.Where("id in (?)", ids).Delete(&model.AuditConn{}).Error
|
||||||
|
}
|
||||||
|
|
||||||
|
func (as *AuditService) BatchDeleteAuditFile(ids []uint) error {
|
||||||
|
return global.DB.Where("id in (?)", ids).Delete(&model.AuditFile{}).Error
|
||||||
|
}
|
||||||
|
|||||||
@@ -43,3 +43,7 @@ func (us *LoginLogService) Delete(u *model.LoginLog) error {
|
|||||||
func (us *LoginLogService) Update(u *model.LoginLog) error {
|
func (us *LoginLogService) Update(u *model.LoginLog) error {
|
||||||
return global.DB.Model(u).Updates(u).Error
|
return global.DB.Model(u).Updates(u).Error
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (us *LoginLogService) BatchDelete(ids []uint) error {
|
||||||
|
return global.DB.Where("id in (?)", ids).Delete(&model.LoginLog{}).Error
|
||||||
|
}
|
||||||
|
|||||||
549
service/oauth.go
549
service/oauth.go
@@ -9,9 +9,10 @@ import (
|
|||||||
"errors"
|
"errors"
|
||||||
"golang.org/x/oauth2"
|
"golang.org/x/oauth2"
|
||||||
"golang.org/x/oauth2/github"
|
"golang.org/x/oauth2/github"
|
||||||
"golang.org/x/oauth2/google"
|
// "golang.org/x/oauth2/google"
|
||||||
"gorm.io/gorm"
|
"gorm.io/gorm"
|
||||||
"io"
|
// "io"
|
||||||
|
"fmt"
|
||||||
"net/http"
|
"net/http"
|
||||||
"net/url"
|
"net/url"
|
||||||
"strconv"
|
"strconv"
|
||||||
@@ -20,6 +21,9 @@ import (
|
|||||||
"time"
|
"time"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
type OauthService struct {
|
||||||
|
}
|
||||||
|
|
||||||
// Define a struct to parse the .well-known/openid-configuration response
|
// Define a struct to parse the .well-known/openid-configuration response
|
||||||
type OidcEndpoint struct {
|
type OidcEndpoint struct {
|
||||||
Issuer string `json:"issuer"`
|
Issuer string `json:"issuer"`
|
||||||
@@ -28,73 +32,6 @@ type OidcEndpoint struct {
|
|||||||
UserInfo string `json:"userinfo_endpoint"`
|
UserInfo string `json:"userinfo_endpoint"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type OauthService struct {
|
|
||||||
}
|
|
||||||
|
|
||||||
type GithubUserdata struct {
|
|
||||||
AvatarUrl string `json:"avatar_url"`
|
|
||||||
Bio string `json:"bio"`
|
|
||||||
Blog string `json:"blog"`
|
|
||||||
Collaborators int `json:"collaborators"`
|
|
||||||
Company interface{} `json:"company"`
|
|
||||||
CreatedAt time.Time `json:"created_at"`
|
|
||||||
DiskUsage int `json:"disk_usage"`
|
|
||||||
Email interface{} `json:"email"`
|
|
||||||
EventsUrl string `json:"events_url"`
|
|
||||||
Followers int `json:"followers"`
|
|
||||||
FollowersUrl string `json:"followers_url"`
|
|
||||||
Following int `json:"following"`
|
|
||||||
FollowingUrl string `json:"following_url"`
|
|
||||||
GistsUrl string `json:"gists_url"`
|
|
||||||
GravatarId string `json:"gravatar_id"`
|
|
||||||
Hireable interface{} `json:"hireable"`
|
|
||||||
HtmlUrl string `json:"html_url"`
|
|
||||||
Id int `json:"id"`
|
|
||||||
Location interface{} `json:"location"`
|
|
||||||
Login string `json:"login"`
|
|
||||||
Name string `json:"name"`
|
|
||||||
NodeId string `json:"node_id"`
|
|
||||||
NotificationEmail interface{} `json:"notification_email"`
|
|
||||||
OrganizationsUrl string `json:"organizations_url"`
|
|
||||||
OwnedPrivateRepos int `json:"owned_private_repos"`
|
|
||||||
Plan struct {
|
|
||||||
Collaborators int `json:"collaborators"`
|
|
||||||
Name string `json:"name"`
|
|
||||||
PrivateRepos int `json:"private_repos"`
|
|
||||||
Space int `json:"space"`
|
|
||||||
} `json:"plan"`
|
|
||||||
PrivateGists int `json:"private_gists"`
|
|
||||||
PublicGists int `json:"public_gists"`
|
|
||||||
PublicRepos int `json:"public_repos"`
|
|
||||||
ReceivedEventsUrl string `json:"received_events_url"`
|
|
||||||
ReposUrl string `json:"repos_url"`
|
|
||||||
SiteAdmin bool `json:"site_admin"`
|
|
||||||
StarredUrl string `json:"starred_url"`
|
|
||||||
SubscriptionsUrl string `json:"subscriptions_url"`
|
|
||||||
TotalPrivateRepos int `json:"total_private_repos"`
|
|
||||||
//TwitterUsername interface{} `json:"twitter_username"`
|
|
||||||
TwoFactorAuthentication bool `json:"two_factor_authentication"`
|
|
||||||
Type string `json:"type"`
|
|
||||||
UpdatedAt time.Time `json:"updated_at"`
|
|
||||||
Url string `json:"url"`
|
|
||||||
}
|
|
||||||
type GoogleUserdata struct {
|
|
||||||
Email string `json:"email"`
|
|
||||||
FamilyName string `json:"family_name"`
|
|
||||||
GivenName string `json:"given_name"`
|
|
||||||
Id string `json:"id"`
|
|
||||||
Name string `json:"name"`
|
|
||||||
Picture string `json:"picture"`
|
|
||||||
VerifiedEmail bool `json:"verified_email"`
|
|
||||||
}
|
|
||||||
type OidcUserdata struct {
|
|
||||||
Sub string `json:"sub"`
|
|
||||||
Email string `json:"email"`
|
|
||||||
VerifiedEmail bool `json:"email_verified"`
|
|
||||||
Name string `json:"name"`
|
|
||||||
PreferredUsername string `json:"preferred_username"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type OauthCacheItem struct {
|
type OauthCacheItem struct {
|
||||||
UserId uint `json:"user_id"`
|
UserId uint `json:"user_id"`
|
||||||
Id string `json:"id"` //rustdesk的设备ID
|
Id string `json:"id"` //rustdesk的设备ID
|
||||||
@@ -104,9 +41,19 @@ type OauthCacheItem struct {
|
|||||||
DeviceName string `json:"device_name"`
|
DeviceName string `json:"device_name"`
|
||||||
DeviceOs string `json:"device_os"`
|
DeviceOs string `json:"device_os"`
|
||||||
DeviceType string `json:"device_type"`
|
DeviceType string `json:"device_type"`
|
||||||
ThirdOpenId string `json:"third_open_id"`
|
OpenId string `json:"open_id"`
|
||||||
ThirdName string `json:"third_name"`
|
Username string `json:"username"`
|
||||||
ThirdEmail string `json:"third_email"`
|
Name string `json:"name"`
|
||||||
|
Email string `json:"email"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (oci *OauthCacheItem) ToOauthUser() *model.OauthUser {
|
||||||
|
return &model.OauthUser{
|
||||||
|
OpenId: oci.OpenId,
|
||||||
|
Username: oci.Username,
|
||||||
|
Name: oci.Name,
|
||||||
|
Email: oci.Email,
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
var OauthCache = &sync.Map{}
|
var OauthCache = &sync.Map{}
|
||||||
@@ -116,6 +63,13 @@ const (
|
|||||||
OauthActionTypeBind = "bind"
|
OauthActionTypeBind = "bind"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
func (oci *OauthCacheItem) UpdateFromOauthUser(oauthUser *model.OauthUser) {
|
||||||
|
oci.OpenId = oauthUser.OpenId
|
||||||
|
oci.Username = oauthUser.Username
|
||||||
|
oci.Name = oauthUser.Name
|
||||||
|
oci.Email = oauthUser.Email
|
||||||
|
}
|
||||||
|
|
||||||
func (os *OauthService) GetOauthCache(key string) *OauthCacheItem {
|
func (os *OauthService) GetOauthCache(key string) *OauthCacheItem {
|
||||||
v, ok := OauthCache.Load(key)
|
v, ok := OauthCache.Load(key)
|
||||||
if !ok {
|
if !ok {
|
||||||
@@ -140,22 +94,21 @@ func (os *OauthService) DeleteOauthCache(key string) {
|
|||||||
|
|
||||||
func (os *OauthService) BeginAuth(op string) (error error, code, url string) {
|
func (os *OauthService) BeginAuth(op string) (error error, code, url string) {
|
||||||
code = utils.RandomString(10) + strconv.FormatInt(time.Now().Unix(), 10)
|
code = utils.RandomString(10) + strconv.FormatInt(time.Now().Unix(), 10)
|
||||||
|
if op == string(model.OauthTypeWebauth) {
|
||||||
if op == model.OauthTypeWebauth {
|
|
||||||
url = global.Config.Rustdesk.ApiServer + "/_admin/#/oauth/" + code
|
url = global.Config.Rustdesk.ApiServer + "/_admin/#/oauth/" + code
|
||||||
//url = "http://localhost:8888/_admin/#/oauth/" + code
|
//url = "http://localhost:8888/_admin/#/oauth/" + code
|
||||||
return nil, code, url
|
return nil, code, url
|
||||||
}
|
}
|
||||||
err, conf := os.GetOauthConfig(op)
|
err, _, oauthConfig := os.GetOauthConfig(op)
|
||||||
if err == nil {
|
if err == nil {
|
||||||
return err, code, conf.AuthCodeURL(code)
|
return err, code, oauthConfig.AuthCodeURL(code)
|
||||||
}
|
}
|
||||||
|
|
||||||
return err, code, ""
|
return err, code, ""
|
||||||
}
|
}
|
||||||
|
|
||||||
// Method to fetch OIDC configuration dynamically
|
// Method to fetch OIDC configuration dynamically
|
||||||
func FetchOidcConfig(issuer string) (error, OidcEndpoint) {
|
func (os *OauthService) FetchOidcEndpoint(issuer string) (error, OidcEndpoint) {
|
||||||
configURL := strings.TrimSuffix(issuer, "/") + "/.well-known/openid-configuration"
|
configURL := strings.TrimSuffix(issuer, "/") + "/.well-known/openid-configuration"
|
||||||
|
|
||||||
// Get the HTTP client (with or without proxy based on configuration)
|
// Get the HTTP client (with or without proxy based on configuration)
|
||||||
@@ -179,76 +132,58 @@ func FetchOidcConfig(issuer string) (error, OidcEndpoint) {
|
|||||||
return nil, endpoint
|
return nil, endpoint
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetOauthConfig retrieves the OAuth2 configuration based on the provider type
|
func (os *OauthService) FetchOidcEndpointByOp(op string) (error, OidcEndpoint) {
|
||||||
func (os *OauthService) GetOauthConfig(op string) (error, *oauth2.Config) {
|
oauthInfo := os.InfoByOp(op)
|
||||||
switch op {
|
if oauthInfo.Issuer == "" {
|
||||||
case model.OauthTypeGithub:
|
return errors.New("issuer is empty"), OidcEndpoint{}
|
||||||
return os.getGithubConfig()
|
|
||||||
case model.OauthTypeGoogle:
|
|
||||||
return os.getGoogleConfig()
|
|
||||||
case model.OauthTypeOidc:
|
|
||||||
return os.getOidcConfig()
|
|
||||||
default:
|
|
||||||
return errors.New("unsupported OAuth type"), nil
|
|
||||||
}
|
}
|
||||||
|
return os.FetchOidcEndpoint(oauthInfo.Issuer)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Helper function to get GitHub OAuth2 configuration
|
// GetOauthConfig retrieves the OAuth2 configuration based on the provider name
|
||||||
func (os *OauthService) getGithubConfig() (error, *oauth2.Config) {
|
func (os *OauthService) GetOauthConfig(op string) (err error, oauthInfo *model.Oauth, oauthConfig *oauth2.Config) {
|
||||||
g := os.InfoByOp(model.OauthTypeGithub)
|
err, oauthInfo, oauthConfig = os.getOauthConfigGeneral(op)
|
||||||
if g.Id == 0 || g.ClientId == "" || g.ClientSecret == "" || g.RedirectUrl == "" {
|
|
||||||
return errors.New("ConfigNotFound"), nil
|
|
||||||
}
|
|
||||||
return nil, &oauth2.Config{
|
|
||||||
ClientID: g.ClientId,
|
|
||||||
ClientSecret: g.ClientSecret,
|
|
||||||
RedirectURL: g.RedirectUrl,
|
|
||||||
Endpoint: github.Endpoint,
|
|
||||||
Scopes: []string{"read:user", "user:email"},
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Helper function to get Google OAuth2 configuration
|
|
||||||
func (os *OauthService) getGoogleConfig() (error, *oauth2.Config) {
|
|
||||||
g := os.InfoByOp(model.OauthTypeGoogle)
|
|
||||||
if g.Id == 0 || g.ClientId == "" || g.ClientSecret == "" || g.RedirectUrl == "" {
|
|
||||||
return errors.New("ConfigNotFound"), nil
|
|
||||||
}
|
|
||||||
return nil, &oauth2.Config{
|
|
||||||
ClientID: g.ClientId,
|
|
||||||
ClientSecret: g.ClientSecret,
|
|
||||||
RedirectURL: g.RedirectUrl,
|
|
||||||
Endpoint: google.Endpoint,
|
|
||||||
Scopes: []string{"https://www.googleapis.com/auth/userinfo.profile", "https://www.googleapis.com/auth/userinfo.email"},
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Helper function to get OIDC OAuth2 configuration
|
|
||||||
func (os *OauthService) getOidcConfig() (error, *oauth2.Config) {
|
|
||||||
g := os.InfoByOp(model.OauthTypeOidc)
|
|
||||||
if g.Id == 0 || g.ClientId == "" || g.ClientSecret == "" || g.RedirectUrl == "" || g.Issuer == "" {
|
|
||||||
return errors.New("ConfigNotFound"), nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// Set scopes
|
|
||||||
scopes := strings.TrimSpace(g.Scopes)
|
|
||||||
if scopes == "" {
|
|
||||||
scopes = "openid,profile,email"
|
|
||||||
}
|
|
||||||
scopeList := strings.Split(scopes, ",")
|
|
||||||
err, endpoint := FetchOidcConfig(g.Issuer)
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err, nil
|
return err, nil, nil
|
||||||
}
|
}
|
||||||
return nil, &oauth2.Config{
|
// Maybe should validate the oauthConfig here
|
||||||
ClientID: g.ClientId,
|
oauthType := oauthInfo.OauthType
|
||||||
ClientSecret: g.ClientSecret,
|
err = model.ValidateOauthType(oauthType)
|
||||||
RedirectURL: g.RedirectUrl,
|
if err != nil {
|
||||||
Endpoint: oauth2.Endpoint{
|
return err, nil, nil
|
||||||
AuthURL: endpoint.AuthURL,
|
}
|
||||||
TokenURL: endpoint.TokenURL,
|
switch oauthType {
|
||||||
},
|
case model.OauthTypeGithub:
|
||||||
Scopes: scopeList,
|
oauthConfig.Endpoint = github.Endpoint
|
||||||
|
oauthConfig.Scopes = []string{"read:user", "user:email"}
|
||||||
|
case model.OauthTypeOidc, model.OauthTypeGoogle:
|
||||||
|
var endpoint OidcEndpoint
|
||||||
|
err, endpoint = os.FetchOidcEndpoint(oauthInfo.Issuer)
|
||||||
|
if err != nil {
|
||||||
|
return err, nil, nil
|
||||||
|
}
|
||||||
|
oauthConfig.Endpoint = oauth2.Endpoint{AuthURL: endpoint.AuthURL, TokenURL: endpoint.TokenURL}
|
||||||
|
oauthConfig.Scopes = os.constructScopes(oauthInfo.Scopes)
|
||||||
|
default:
|
||||||
|
return errors.New("unsupported OAuth type"), nil, nil
|
||||||
|
}
|
||||||
|
return nil, oauthInfo, oauthConfig
|
||||||
|
}
|
||||||
|
|
||||||
|
// GetOauthConfig retrieves the OAuth2 configuration based on the provider name
|
||||||
|
func (os *OauthService) getOauthConfigGeneral(op string) (err error, oauthInfo *model.Oauth, oauthConfig *oauth2.Config) {
|
||||||
|
oauthInfo = os.InfoByOp(op)
|
||||||
|
if oauthInfo.Id == 0 || oauthInfo.ClientId == "" || oauthInfo.ClientSecret == "" {
|
||||||
|
return errors.New("ConfigNotFound"), nil, nil
|
||||||
|
}
|
||||||
|
// If the redirect URL is empty, use the default redirect URL
|
||||||
|
if oauthInfo.RedirectUrl == "" {
|
||||||
|
oauthInfo.RedirectUrl = global.Config.Rustdesk.ApiServer + "/api/oidc/callback"
|
||||||
|
}
|
||||||
|
return nil, oauthInfo, &oauth2.Config{
|
||||||
|
ClientID: oauthInfo.ClientId,
|
||||||
|
ClientSecret: oauthInfo.ClientSecret,
|
||||||
|
RedirectURL: oauthInfo.RedirectUrl,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -272,194 +207,151 @@ func getHTTPClientWithProxy() *http.Client {
|
|||||||
return http.DefaultClient
|
return http.DefaultClient
|
||||||
}
|
}
|
||||||
|
|
||||||
func (os *OauthService) GithubCallback(code string) (error error, userData *GithubUserdata) {
|
func (os *OauthService) callbackBase(oauthConfig *oauth2.Config, code string, userEndpoint string, userData interface{}) (err error, client *http.Client) {
|
||||||
err, oauthConfig := os.GetOauthConfig(model.OauthTypeGithub)
|
|
||||||
if err != nil {
|
|
||||||
return err, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// 使用代理配置创建 HTTP 客户端
|
// 设置代理客户端
|
||||||
httpClient := getHTTPClientWithProxy()
|
httpClient := getHTTPClientWithProxy()
|
||||||
ctx := context.WithValue(context.Background(), oauth2.HTTPClient, httpClient)
|
ctx := context.WithValue(context.Background(), oauth2.HTTPClient, httpClient)
|
||||||
|
|
||||||
token, err := oauthConfig.Exchange(ctx, code)
|
// 使用 code 换取 token
|
||||||
|
var token *oauth2.Token
|
||||||
|
token, err = oauthConfig.Exchange(ctx, code)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
global.Logger.Warn("oauthConfig.Exchange() failed: ", err)
|
global.Logger.Warn("oauthConfig.Exchange() failed: ", err)
|
||||||
error = errors.New("GetOauthTokenError")
|
return errors.New("GetOauthTokenError"), nil
|
||||||
return
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// 使用带有代理的 HTTP 客户端获取用户信息
|
// 获取用户信息
|
||||||
client := oauthConfig.Client(ctx, token)
|
client = oauthConfig.Client(ctx, token)
|
||||||
resp, err := client.Get("https://api.github.com/user")
|
resp, err := client.Get(userEndpoint)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
global.Logger.Warn("failed getting user info: ", err)
|
global.Logger.Warn("failed getting user info: ", err)
|
||||||
error = errors.New("GetOauthUserInfoError")
|
return errors.New("GetOauthUserInfoError"), nil
|
||||||
return
|
|
||||||
}
|
}
|
||||||
defer func(Body io.ReadCloser) {
|
defer func() {
|
||||||
err := Body.Close()
|
if closeErr := resp.Body.Close(); closeErr != nil {
|
||||||
if err != nil {
|
global.Logger.Warn("failed closing response body: ", closeErr)
|
||||||
global.Logger.Warn("failed closing response body: ", err)
|
|
||||||
}
|
}
|
||||||
}(resp.Body)
|
}()
|
||||||
|
|
||||||
// 解析用户信息
|
// 解析用户信息
|
||||||
if err = json.NewDecoder(resp.Body).Decode(&userData); err != nil {
|
if err = json.NewDecoder(resp.Body).Decode(userData); err != nil {
|
||||||
global.Logger.Warn("failed decoding user info: ", err)
|
global.Logger.Warn("failed decoding user info: ", err)
|
||||||
error = errors.New("DecodeOauthUserInfoError")
|
return errors.New("DecodeOauthUserInfoError"), nil
|
||||||
return
|
|
||||||
}
|
|
||||||
return
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func (os *OauthService) GoogleCallback(code string) (error error, userData *GoogleUserdata) {
|
return nil, client
|
||||||
err, oauthConfig := os.GetOauthConfig(model.OauthTypeGoogle)
|
}
|
||||||
|
|
||||||
|
// githubCallback github回调
|
||||||
|
func (os *OauthService) githubCallback(oauthConfig *oauth2.Config, code string) (error, *model.OauthUser) {
|
||||||
|
var user = &model.GithubUser{}
|
||||||
|
err, client := os.callbackBase(oauthConfig, code, model.UserEndpointGithub, user)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err, nil
|
return err, nil
|
||||||
}
|
}
|
||||||
|
err = os.getGithubPrimaryEmail(client, user)
|
||||||
// 使用代理配置创建 HTTP 客户端
|
|
||||||
httpClient := getHTTPClientWithProxy()
|
|
||||||
ctx := context.WithValue(context.Background(), oauth2.HTTPClient, httpClient)
|
|
||||||
|
|
||||||
token, err := oauthConfig.Exchange(ctx, code)
|
|
||||||
if err != nil {
|
|
||||||
global.Logger.Warn("oauthConfig.Exchange() failed: ", err)
|
|
||||||
error = errors.New("GetOauthTokenError")
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
// 使用带有代理的 HTTP 客户端获取用户信息
|
|
||||||
client := oauthConfig.Client(ctx, token)
|
|
||||||
resp, err := client.Get("https://www.googleapis.com/oauth2/v2/userinfo")
|
|
||||||
if err != nil {
|
|
||||||
global.Logger.Warn("failed getting user info: ", err)
|
|
||||||
error = errors.New("GetOauthUserInfoError")
|
|
||||||
return
|
|
||||||
}
|
|
||||||
defer func(Body io.ReadCloser) {
|
|
||||||
err := Body.Close()
|
|
||||||
if err != nil {
|
|
||||||
global.Logger.Warn("failed closing response body: ", err)
|
|
||||||
}
|
|
||||||
}(resp.Body)
|
|
||||||
|
|
||||||
// 解析用户信息
|
|
||||||
if err = json.NewDecoder(resp.Body).Decode(&userData); err != nil {
|
|
||||||
global.Logger.Warn("failed decoding user info: ", err)
|
|
||||||
error = errors.New("DecodeOauthUserInfoError")
|
|
||||||
return
|
|
||||||
}
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
func (os *OauthService) OidcCallback(code string) (error error, userData *OidcUserdata) {
|
|
||||||
err, oauthConfig := os.GetOauthConfig(model.OauthTypeOidc)
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err, nil
|
return err, nil
|
||||||
}
|
}
|
||||||
// 使用代理配置创建 HTTP 客户端
|
return nil, user.ToOauthUser()
|
||||||
httpClient := getHTTPClientWithProxy()
|
|
||||||
ctx := context.WithValue(context.Background(), oauth2.HTTPClient, httpClient)
|
|
||||||
|
|
||||||
token, err := oauthConfig.Exchange(ctx, code)
|
|
||||||
if err != nil {
|
|
||||||
global.Logger.Warn("oauthConfig.Exchange() failed: ", err)
|
|
||||||
error = errors.New("GetOauthTokenError")
|
|
||||||
return
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// 使用带有代理的 HTTP 客户端获取用户信息
|
// oidcCallback oidc回调, 通过code获取用户信息
|
||||||
client := oauthConfig.Client(ctx, token)
|
func (os *OauthService) oidcCallback(oauthConfig *oauth2.Config, code string, userInfoEndpoint string) (error, *model.OauthUser) {
|
||||||
g := os.InfoByOp(model.OauthTypeOidc)
|
var user = &model.OidcUser{}
|
||||||
err, endpoint := FetchOidcConfig(g.Issuer)
|
if err, _ := os.callbackBase(oauthConfig, code, userInfoEndpoint, user); err != nil {
|
||||||
if err != nil {
|
return err, nil
|
||||||
global.Logger.Warn("failed fetching OIDC configuration: ", err)
|
|
||||||
error = errors.New("FetchOidcConfigError")
|
|
||||||
return
|
|
||||||
}
|
}
|
||||||
resp, err := client.Get(endpoint.UserInfo)
|
return nil, user.ToOauthUser()
|
||||||
if err != nil {
|
|
||||||
global.Logger.Warn("failed getting user info: ", err)
|
|
||||||
error = errors.New("GetOauthUserInfoError")
|
|
||||||
return
|
|
||||||
}
|
|
||||||
defer func(Body io.ReadCloser) {
|
|
||||||
err := Body.Close()
|
|
||||||
if err != nil {
|
|
||||||
global.Logger.Warn("failed closing response body: ", err)
|
|
||||||
}
|
|
||||||
}(resp.Body)
|
|
||||||
|
|
||||||
// 解析用户信息
|
|
||||||
if err = json.NewDecoder(resp.Body).Decode(&userData); err != nil {
|
|
||||||
global.Logger.Warn("failed decoding user info: ", err)
|
|
||||||
error = errors.New("DecodeOauthUserInfoError")
|
|
||||||
return
|
|
||||||
}
|
|
||||||
return
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func (os *OauthService) UserThirdInfo(op, openid string) *model.UserThird {
|
// Callback: Get user information by code and op(Oauth provider)
|
||||||
|
func (os *OauthService) Callback(code string, op string) (err error, oauthUser *model.OauthUser) {
|
||||||
|
var oauthInfo *model.Oauth
|
||||||
|
var oauthConfig *oauth2.Config
|
||||||
|
err, oauthInfo, oauthConfig = os.GetOauthConfig(op)
|
||||||
|
// oauthType is already validated in GetOauthConfig
|
||||||
|
if err != nil {
|
||||||
|
return err, nil
|
||||||
|
}
|
||||||
|
oauthType := oauthInfo.OauthType
|
||||||
|
switch oauthType {
|
||||||
|
case model.OauthTypeGithub:
|
||||||
|
err, oauthUser = os.githubCallback(oauthConfig, code)
|
||||||
|
case model.OauthTypeOidc, model.OauthTypeGoogle:
|
||||||
|
err, endpoint := os.FetchOidcEndpoint(oauthInfo.Issuer)
|
||||||
|
if err != nil {
|
||||||
|
return err, nil
|
||||||
|
}
|
||||||
|
err, oauthUser = os.oidcCallback(oauthConfig, code, endpoint.UserInfo)
|
||||||
|
default:
|
||||||
|
return errors.New("unsupported OAuth type"), nil
|
||||||
|
}
|
||||||
|
return err, oauthUser
|
||||||
|
}
|
||||||
|
|
||||||
|
func (os *OauthService) UserThirdInfo(op string, openId string) *model.UserThird {
|
||||||
ut := &model.UserThird{}
|
ut := &model.UserThird{}
|
||||||
global.DB.Where("open_id = ? and third_type = ?", openid, op).First(ut)
|
global.DB.Where("open_id = ? and op = ?", openId, op).First(ut)
|
||||||
return ut
|
return ut
|
||||||
}
|
}
|
||||||
|
|
||||||
func (os *OauthService) BindGithubUser(openid, username string, userId uint) error {
|
// BindOauthUser: Bind third party account
|
||||||
return os.BindOauthUser(model.OauthTypeGithub, openid, username, userId)
|
func (os *OauthService) BindOauthUser(userId uint, oauthUser *model.OauthUser, op string) error {
|
||||||
}
|
utr := &model.UserThird{}
|
||||||
|
err, oauthType := os.GetTypeByOp(op)
|
||||||
func (os *OauthService) BindGoogleUser(email, username string, userId uint) error {
|
if err != nil {
|
||||||
return os.BindOauthUser(model.OauthTypeGoogle, email, username, userId)
|
return err
|
||||||
}
|
|
||||||
|
|
||||||
func (os *OauthService) BindOidcUser(sub, username string, userId uint) error {
|
|
||||||
return os.BindOauthUser(model.OauthTypeOidc, sub, username, userId)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (os *OauthService) BindOauthUser(thirdType, openid, username string, userId uint) error {
|
|
||||||
utr := &model.UserThird{
|
|
||||||
OpenId: openid,
|
|
||||||
ThirdType: thirdType,
|
|
||||||
ThirdName: username,
|
|
||||||
UserId: userId,
|
|
||||||
}
|
}
|
||||||
|
utr.FromOauthUser(userId, oauthUser, oauthType, op)
|
||||||
return global.DB.Create(utr).Error
|
return global.DB.Create(utr).Error
|
||||||
}
|
}
|
||||||
|
|
||||||
func (os *OauthService) UnBindGithubUser(userid uint) error {
|
// UnBindOauthUser: Unbind third party account
|
||||||
return os.UnBindThird(model.OauthTypeGithub, userid)
|
func (os *OauthService) UnBindOauthUser(userId uint, op string) error {
|
||||||
|
return os.UnBindThird(op, userId)
|
||||||
}
|
}
|
||||||
func (os *OauthService) UnBindGoogleUser(userid uint) error {
|
|
||||||
return os.UnBindThird(model.OauthTypeGoogle, userid)
|
// UnBindThird: Unbind third party account
|
||||||
}
|
func (os *OauthService) UnBindThird(op string, userId uint) error {
|
||||||
func (os *OauthService) UnBindOidcUser(userid uint) error {
|
return global.DB.Where("user_id = ? and op = ?", userId, op).Delete(&model.UserThird{}).Error
|
||||||
return os.UnBindThird(model.OauthTypeOidc, userid)
|
|
||||||
}
|
|
||||||
func (os *OauthService) UnBindThird(thirdType string, userid uint) error {
|
|
||||||
return global.DB.Where("user_id = ? and third_type = ?", userid, thirdType).Delete(&model.UserThird{}).Error
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// DeleteUserByUserId: When user is deleted, delete all third party bindings
|
// DeleteUserByUserId: When user is deleted, delete all third party bindings
|
||||||
func (os *OauthService) DeleteUserByUserId(userid uint) error {
|
func (os *OauthService) DeleteUserByUserId(userId uint) error {
|
||||||
return global.DB.Where("user_id = ?", userid).Delete(&model.UserThird{}).Error
|
return global.DB.Where("user_id = ?", userId).Delete(&model.UserThird{}).Error
|
||||||
}
|
}
|
||||||
|
|
||||||
// InfoById 根据id取用户信息
|
// InfoById 根据id获取Oauth信息
|
||||||
func (os *OauthService) InfoById(id uint) *model.Oauth {
|
func (os *OauthService) InfoById(id uint) *model.Oauth {
|
||||||
u := &model.Oauth{}
|
oauthInfo := &model.Oauth{}
|
||||||
global.DB.Where("id = ?", id).First(u)
|
global.DB.Where("id = ?", id).First(oauthInfo)
|
||||||
return u
|
return oauthInfo
|
||||||
}
|
}
|
||||||
|
|
||||||
// InfoByOp 根据op取用户信息
|
// InfoByOp 根据op获取Oauth信息
|
||||||
func (os *OauthService) InfoByOp(op string) *model.Oauth {
|
func (os *OauthService) InfoByOp(op string) *model.Oauth {
|
||||||
u := &model.Oauth{}
|
oauthInfo := &model.Oauth{}
|
||||||
global.DB.Where("op = ?", op).First(u)
|
global.DB.Where("op = ?", op).First(oauthInfo)
|
||||||
return u
|
return oauthInfo
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Helper function to get scopes by operation
|
||||||
|
func (os *OauthService) getScopesByOp(op string) []string {
|
||||||
|
scopes := os.InfoByOp(op).Scopes
|
||||||
|
return os.constructScopes(scopes)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Helper function to construct scopes
|
||||||
|
func (os *OauthService) constructScopes(scopes string) []string {
|
||||||
|
scopes = strings.TrimSpace(scopes)
|
||||||
|
if scopes == "" {
|
||||||
|
scopes = model.OIDC_DEFAULT_SCOPES
|
||||||
|
}
|
||||||
|
return strings.Split(scopes, ",")
|
||||||
|
}
|
||||||
|
|
||||||
func (os *OauthService) List(page, pageSize uint, where func(tx *gorm.DB)) (res *model.OauthList) {
|
func (os *OauthService) List(page, pageSize uint, where func(tx *gorm.DB)) (res *model.OauthList) {
|
||||||
res = &model.OauthList{}
|
res = &model.OauthList{}
|
||||||
res.Page = int64(page)
|
res.Page = int64(page)
|
||||||
@@ -474,16 +366,95 @@ func (os *OauthService) List(page, pageSize uint, where func(tx *gorm.DB)) (res
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// GetTypeByOp 根据op获取OauthType
|
||||||
|
func (os *OauthService) GetTypeByOp(op string) (error, string) {
|
||||||
|
oauthInfo := &model.Oauth{}
|
||||||
|
if global.DB.Where("op = ?", op).First(oauthInfo).Error != nil {
|
||||||
|
return fmt.Errorf("OAuth provider with op '%s' not found", op), ""
|
||||||
|
}
|
||||||
|
return nil, oauthInfo.OauthType
|
||||||
|
}
|
||||||
|
|
||||||
|
// ValidateOauthProvider 验证Oauth提供者是否正确
|
||||||
|
func (os *OauthService) ValidateOauthProvider(op string) error {
|
||||||
|
if !os.IsOauthProviderExist(op) {
|
||||||
|
return fmt.Errorf("OAuth provider with op '%s' not found", op)
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// IsOauthProviderExist 验证Oauth提供者是否存在
|
||||||
|
func (os *OauthService) IsOauthProviderExist(op string) bool {
|
||||||
|
oauthInfo := &model.Oauth{}
|
||||||
|
// 使用 Gorm 的 Take 方法查找符合条件的记录
|
||||||
|
if err := global.DB.Where("op = ?", op).Take(oauthInfo).Error; err != nil {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
// Create 创建
|
// Create 创建
|
||||||
func (os *OauthService) Create(u *model.Oauth) error {
|
func (os *OauthService) Create(oauthInfo *model.Oauth) error {
|
||||||
res := global.DB.Create(u).Error
|
err := oauthInfo.FormatOauthInfo()
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
res := global.DB.Create(oauthInfo).Error
|
||||||
return res
|
return res
|
||||||
}
|
}
|
||||||
func (os *OauthService) Delete(u *model.Oauth) error {
|
func (os *OauthService) Delete(oauthInfo *model.Oauth) error {
|
||||||
return global.DB.Delete(u).Error
|
return global.DB.Delete(oauthInfo).Error
|
||||||
}
|
}
|
||||||
|
|
||||||
// Update 更新
|
// Update 更新
|
||||||
func (os *OauthService) Update(u *model.Oauth) error {
|
func (os *OauthService) Update(oauthInfo *model.Oauth) error {
|
||||||
return global.DB.Model(u).Updates(u).Error
|
err := oauthInfo.FormatOauthInfo()
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
return global.DB.Model(oauthInfo).Updates(oauthInfo).Error
|
||||||
|
}
|
||||||
|
|
||||||
|
// GetOauthProviders 获取所有的provider
|
||||||
|
func (os *OauthService) GetOauthProviders() []string {
|
||||||
|
var res []string
|
||||||
|
global.DB.Model(&model.Oauth{}).Pluck("op", &res)
|
||||||
|
return res
|
||||||
|
}
|
||||||
|
|
||||||
|
// getGithubPrimaryEmail: Get the primary email of the user from Github
|
||||||
|
func (os *OauthService) getGithubPrimaryEmail(client *http.Client, githubUser *model.GithubUser) error {
|
||||||
|
// the client is already set with the token
|
||||||
|
resp, err := client.Get("https://api.github.com/user/emails")
|
||||||
|
if err != nil {
|
||||||
|
return fmt.Errorf("failed to fetch emails: %w", err)
|
||||||
|
}
|
||||||
|
defer resp.Body.Close()
|
||||||
|
|
||||||
|
// check the response status code
|
||||||
|
if resp.StatusCode != http.StatusOK {
|
||||||
|
return fmt.Errorf("failed to fetch emails: %s", resp.Status)
|
||||||
|
}
|
||||||
|
|
||||||
|
// decode the response
|
||||||
|
var emails []struct {
|
||||||
|
Email string `json:"email"`
|
||||||
|
Primary bool `json:"primary"`
|
||||||
|
Verified bool `json:"verified"`
|
||||||
|
}
|
||||||
|
|
||||||
|
if err := json.NewDecoder(resp.Body).Decode(&emails); err != nil {
|
||||||
|
return fmt.Errorf("failed to decode response: %w", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
// find the primary verified email
|
||||||
|
for _, e := range emails {
|
||||||
|
if e.Primary && e.Verified {
|
||||||
|
githubUser.Email = e.Email
|
||||||
|
githubUser.VerifiedEmail = e.Verified
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return fmt.Errorf("no primary verified email found")
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -26,15 +26,45 @@ func (ps *PeerService) InfoByRowId(id uint) *model.Peer {
|
|||||||
return p
|
return p
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// FindByUserIdAndUuid 根据用户id和uuid查找peer
|
||||||
|
func (ps *PeerService) FindByUserIdAndUuid(uuid string, userId uint) *model.Peer {
|
||||||
|
p := &model.Peer{}
|
||||||
|
global.DB.Where("uuid = ? and user_id = ?", uuid, userId).First(p)
|
||||||
|
return p
|
||||||
|
}
|
||||||
|
|
||||||
// UuidBindUserId 绑定用户id
|
// UuidBindUserId 绑定用户id
|
||||||
func (ps *PeerService) UuidBindUserId(uuid string, userId uint) {
|
func (ps *PeerService) UuidBindUserId(deviceId string, uuid string, userId uint) {
|
||||||
peer := ps.FindByUuid(uuid)
|
peer := ps.FindByUuid(uuid)
|
||||||
|
// 如果存在则更新
|
||||||
if peer.RowId > 0 {
|
if peer.RowId > 0 {
|
||||||
peer.UserId = userId
|
peer.UserId = userId
|
||||||
ps.Update(peer)
|
ps.Update(peer)
|
||||||
|
} else {
|
||||||
|
// 不存在则创建
|
||||||
|
/*if deviceId != "" {
|
||||||
|
global.DB.Create(&model.Peer{
|
||||||
|
Id: deviceId,
|
||||||
|
Uuid: uuid,
|
||||||
|
UserId: userId,
|
||||||
|
})
|
||||||
|
}*/
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// UuidUnbindUserId 解绑用户id, 用于用户注销
|
||||||
|
func (ps *PeerService) UuidUnbindUserId(uuid string, userId uint) {
|
||||||
|
peer := ps.FindByUserIdAndUuid(uuid, userId)
|
||||||
|
if peer.RowId > 0 {
|
||||||
|
global.DB.Model(peer).Update("user_id", 0)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// EraseUserId 清除用户id, 用于用户删除
|
||||||
|
func (ps *PeerService) EraseUserId(userId uint) error {
|
||||||
|
return global.DB.Model(&model.Peer{}).Where("user_id = ?", userId).Update("user_id", 0).Error
|
||||||
|
}
|
||||||
|
|
||||||
// ListByUserIds 根据用户id取列表
|
// ListByUserIds 根据用户id取列表
|
||||||
func (ps *PeerService) ListByUserIds(userIds []uint, page, pageSize uint) (res *model.PeerList) {
|
func (ps *PeerService) ListByUserIds(userIds []uint, page, pageSize uint) (res *model.PeerList) {
|
||||||
res = &model.PeerList{}
|
res = &model.PeerList{}
|
||||||
@@ -62,18 +92,53 @@ func (ps *PeerService) List(page, pageSize uint, where func(tx *gorm.DB)) (res *
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ListFilterByUserId 根据用户id过滤Peer列表
|
||||||
|
func (ps *PeerService) ListFilterByUserId(page, pageSize uint, where func(tx *gorm.DB), userId uint) (res *model.PeerList) {
|
||||||
|
userWhere := func(tx *gorm.DB) {
|
||||||
|
tx.Where("user_id = ?", userId)
|
||||||
|
// 如果还有额外的筛选条件,执行它
|
||||||
|
if where != nil {
|
||||||
|
where(tx)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return ps.List(page, pageSize, userWhere)
|
||||||
|
}
|
||||||
|
|
||||||
// Create 创建
|
// Create 创建
|
||||||
func (ps *PeerService) Create(u *model.Peer) error {
|
func (ps *PeerService) Create(u *model.Peer) error {
|
||||||
res := global.DB.Create(u).Error
|
res := global.DB.Create(u).Error
|
||||||
return res
|
return res
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Delete 删除, 同时也应该删除token
|
||||||
func (ps *PeerService) Delete(u *model.Peer) error {
|
func (ps *PeerService) Delete(u *model.Peer) error {
|
||||||
return global.DB.Delete(u).Error
|
uuid := u.Uuid
|
||||||
|
err := global.DB.Delete(u).Error
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
// 删除token
|
||||||
|
return AllService.UserService.FlushTokenByUuid(uuid)
|
||||||
}
|
}
|
||||||
|
|
||||||
// BatchDelete
|
// GetUuidListByIDs 根据ids获取uuid列表
|
||||||
|
func (ps *PeerService) GetUuidListByIDs(ids []uint) ([]string, error) {
|
||||||
|
var uuids []string
|
||||||
|
err := global.DB.Model(&model.Peer{}).
|
||||||
|
Where("row_id in (?)", ids).
|
||||||
|
Pluck("uuid", &uuids).Error
|
||||||
|
return uuids, err
|
||||||
|
}
|
||||||
|
|
||||||
|
// BatchDelete 批量删除, 同时也应该删除token
|
||||||
func (ps *PeerService) BatchDelete(ids []uint) error {
|
func (ps *PeerService) BatchDelete(ids []uint) error {
|
||||||
return global.DB.Where("row_id in (?)", ids).Delete(&model.Peer{}).Error
|
uuids, err := ps.GetUuidListByIDs(ids)
|
||||||
|
err = global.DB.Where("row_id in (?)", ids).Delete(&model.Peer{}).Error
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
// 删除token
|
||||||
|
return AllService.UserService.FlushTokenByUuids(uuids)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Update 更新
|
// Update 更新
|
||||||
|
|||||||
203
service/user.go
203
service/user.go
@@ -5,10 +5,12 @@ import (
|
|||||||
adResp "Gwen/http/response/admin"
|
adResp "Gwen/http/response/admin"
|
||||||
"Gwen/model"
|
"Gwen/model"
|
||||||
"Gwen/utils"
|
"Gwen/utils"
|
||||||
|
"errors"
|
||||||
"github.com/gin-gonic/gin"
|
"github.com/gin-gonic/gin"
|
||||||
"gorm.io/gorm"
|
"gorm.io/gorm"
|
||||||
"math/rand"
|
"math/rand"
|
||||||
"strconv"
|
"strconv"
|
||||||
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -21,12 +23,21 @@ func (us *UserService) InfoById(id uint) *model.User {
|
|||||||
global.DB.Where("id = ?", id).First(u)
|
global.DB.Where("id = ?", id).First(u)
|
||||||
return u
|
return u
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// InfoByUsername 根据用户名取用户信息
|
||||||
func (us *UserService) InfoByUsername(un string) *model.User {
|
func (us *UserService) InfoByUsername(un string) *model.User {
|
||||||
u := &model.User{}
|
u := &model.User{}
|
||||||
global.DB.Where("username = ?", un).First(u)
|
global.DB.Where("username = ?", un).First(u)
|
||||||
return u
|
return u
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// InfoByEmail 根据邮箱取用户信息
|
||||||
|
func (us *UserService) InfoByEmail(email string) *model.User {
|
||||||
|
u := &model.User{}
|
||||||
|
global.DB.Where("email = ?", email).First(u)
|
||||||
|
return u
|
||||||
|
}
|
||||||
|
|
||||||
// InfoByOpenid 根据openid取用户信息
|
// InfoByOpenid 根据openid取用户信息
|
||||||
func (us *UserService) InfoByOpenid(openid string) *model.User {
|
func (us *UserService) InfoByOpenid(openid string) *model.User {
|
||||||
u := &model.User{}
|
u := &model.User{}
|
||||||
@@ -42,18 +53,18 @@ func (us *UserService) InfoByUsernamePassword(username, password string) *model.
|
|||||||
}
|
}
|
||||||
|
|
||||||
// InfoByAccesstoken 根据accesstoken取用户信息
|
// InfoByAccesstoken 根据accesstoken取用户信息
|
||||||
func (us *UserService) InfoByAccessToken(token string) *model.User {
|
func (us *UserService) InfoByAccessToken(token string) (*model.User, *model.UserToken) {
|
||||||
u := &model.User{}
|
u := &model.User{}
|
||||||
ut := &model.UserToken{}
|
ut := &model.UserToken{}
|
||||||
global.DB.Where("token = ?", token).First(ut)
|
global.DB.Where("token = ?", token).First(ut)
|
||||||
if ut.Id == 0 {
|
if ut.Id == 0 {
|
||||||
return u
|
return u, ut
|
||||||
}
|
}
|
||||||
if ut.ExpiredAt < time.Now().Unix() {
|
if ut.ExpiredAt < time.Now().Unix() {
|
||||||
return u
|
return u, ut
|
||||||
}
|
}
|
||||||
global.DB.Where("id = ?", ut.UserId).First(u)
|
global.DB.Where("id = ?", ut.UserId).First(u)
|
||||||
return u
|
return u, ut
|
||||||
}
|
}
|
||||||
|
|
||||||
// GenerateToken 生成token
|
// GenerateToken 生成token
|
||||||
@@ -67,13 +78,15 @@ func (us *UserService) Login(u *model.User, llog *model.LoginLog) *model.UserTok
|
|||||||
ut := &model.UserToken{
|
ut := &model.UserToken{
|
||||||
UserId: u.Id,
|
UserId: u.Id,
|
||||||
Token: token,
|
Token: token,
|
||||||
|
DeviceUuid: llog.Uuid,
|
||||||
|
DeviceId: llog.DeviceId,
|
||||||
ExpiredAt: time.Now().Add(time.Hour * 24 * 7).Unix(),
|
ExpiredAt: time.Now().Add(time.Hour * 24 * 7).Unix(),
|
||||||
}
|
}
|
||||||
global.DB.Create(ut)
|
global.DB.Create(ut)
|
||||||
llog.UserTokenId = ut.UserId
|
llog.UserTokenId = ut.UserId
|
||||||
global.DB.Create(llog)
|
global.DB.Create(llog)
|
||||||
if llog.Uuid != "" {
|
if llog.Uuid != "" {
|
||||||
AllService.PeerService.UuidBindUserId(llog.Uuid, u.Id)
|
AllService.PeerService.UuidBindUserId(llog.DeviceId, llog.Uuid, u.Id)
|
||||||
}
|
}
|
||||||
return ut
|
return ut
|
||||||
}
|
}
|
||||||
@@ -140,18 +153,42 @@ func (us *UserService) CheckUserEnable(u *model.User) bool {
|
|||||||
|
|
||||||
// Create 创建
|
// Create 创建
|
||||||
func (us *UserService) Create(u *model.User) error {
|
func (us *UserService) Create(u *model.User) error {
|
||||||
|
// The initial username should be formatted, and the username should be unique
|
||||||
|
u.Username = us.formatUsername(u.Username)
|
||||||
u.Password = us.EncryptPassword(u.Password)
|
u.Password = us.EncryptPassword(u.Password)
|
||||||
res := global.DB.Create(u).Error
|
res := global.DB.Create(u).Error
|
||||||
return res
|
return res
|
||||||
}
|
}
|
||||||
|
|
||||||
// Logout 退出登录
|
// GetUuidByToken 根据token和user取uuid
|
||||||
|
func (us *UserService) GetUuidByToken(u *model.User, token string) string {
|
||||||
|
ut := &model.UserToken{}
|
||||||
|
err := global.DB.Where("user_id = ? and token = ?", u.Id, token).First(ut).Error
|
||||||
|
if err != nil {
|
||||||
|
return ""
|
||||||
|
}
|
||||||
|
return ut.DeviceUuid
|
||||||
|
}
|
||||||
|
|
||||||
|
// Logout 退出登录 -> 删除token, 解绑uuid
|
||||||
func (us *UserService) Logout(u *model.User, token string) error {
|
func (us *UserService) Logout(u *model.User, token string) error {
|
||||||
return global.DB.Where("user_id = ? and token = ?", u.Id, token).Delete(&model.UserToken{}).Error
|
uuid := us.GetUuidByToken(u, token)
|
||||||
|
err := global.DB.Where("user_id = ? and token = ?", u.Id, token).Delete(&model.UserToken{}).Error
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
if uuid != "" {
|
||||||
|
AllService.PeerService.UuidUnbindUserId(uuid, u.Id)
|
||||||
|
}
|
||||||
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// Delete 删除用户和oauth信息
|
// Delete 删除用户和oauth信息
|
||||||
func (us *UserService) Delete(u *model.User) error {
|
func (us *UserService) Delete(u *model.User) error {
|
||||||
|
userCount := us.getAdminUserCount()
|
||||||
|
if userCount <= 1 && us.IsAdmin(u) {
|
||||||
|
return errors.New("The last admin user cannot be deleted")
|
||||||
|
}
|
||||||
tx := global.DB.Begin()
|
tx := global.DB.Begin()
|
||||||
// 删除用户
|
// 删除用户
|
||||||
if err := tx.Delete(u).Error; err != nil {
|
if err := tx.Delete(u).Error; err != nil {
|
||||||
@@ -179,11 +216,25 @@ func (us *UserService) Delete(u *model.User) error {
|
|||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
tx.Commit()
|
tx.Commit()
|
||||||
|
// 删除关联的peer
|
||||||
|
if err := AllService.PeerService.EraseUserId(u.Id); err != nil {
|
||||||
|
global.Logger.Warn("User deleted successfully, but failed to unlink peer.")
|
||||||
|
return nil
|
||||||
|
}
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// Update 更新
|
// Update 更新
|
||||||
func (us *UserService) Update(u *model.User) error {
|
func (us *UserService) Update(u *model.User) error {
|
||||||
|
currentUser := us.InfoById(u.Id)
|
||||||
|
// 如果当前用户是管理员并且 IsAdmin 不为空,进行检查
|
||||||
|
if us.IsAdmin(currentUser) {
|
||||||
|
adminCount := us.getAdminUserCount()
|
||||||
|
// 如果这是唯一的管理员,确保不能禁用或取消管理员权限
|
||||||
|
if adminCount <= 1 && (!us.IsAdmin(u) || u.Status == model.COMMON_STATUS_DISABLED) {
|
||||||
|
return errors.New("The last admin user cannot be disabled or demoted")
|
||||||
|
}
|
||||||
|
}
|
||||||
return global.DB.Model(u).Updates(u).Error
|
return global.DB.Model(u).Updates(u).Error
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -192,6 +243,16 @@ func (us *UserService) FlushToken(u *model.User) error {
|
|||||||
return global.DB.Where("user_id = ?", u.Id).Delete(&model.UserToken{}).Error
|
return global.DB.Where("user_id = ?", u.Id).Delete(&model.UserToken{}).Error
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// FlushTokenByUuid 清空token
|
||||||
|
func (us *UserService) FlushTokenByUuid(uuid string) error {
|
||||||
|
return global.DB.Where("device_uuid = ?", uuid).Delete(&model.UserToken{}).Error
|
||||||
|
}
|
||||||
|
|
||||||
|
// FlushTokenByUuids 清空token
|
||||||
|
func (us *UserService) FlushTokenByUuids(uuids []string) error {
|
||||||
|
return global.DB.Where("device_uuid in (?)", uuids).Delete(&model.UserToken{}).Error
|
||||||
|
}
|
||||||
|
|
||||||
// UpdatePassword 更新密码
|
// UpdatePassword 更新密码
|
||||||
func (us *UserService) UpdatePassword(u *model.User, password string) error {
|
func (us *UserService) UpdatePassword(u *model.User, password string) error {
|
||||||
u.Password = us.EncryptPassword(password)
|
u.Password = us.EncryptPassword(password)
|
||||||
@@ -216,24 +277,9 @@ func (us *UserService) RouteNames(u *model.User) []string {
|
|||||||
return adResp.UserRouteNames
|
return adResp.UserRouteNames
|
||||||
}
|
}
|
||||||
|
|
||||||
// InfoByGithubId 根据githubid取用户信息
|
// InfoByOauthId 根据oauth的name和openId取用户信息
|
||||||
func (us *UserService) InfoByGithubId(githubId string) *model.User {
|
func (us *UserService) InfoByOauthId(op string, openId string) *model.User {
|
||||||
return us.InfoByOauthId(model.OauthTypeGithub, githubId)
|
ut := AllService.OauthService.UserThirdInfo(op, openId)
|
||||||
}
|
|
||||||
|
|
||||||
// InfoByGoogleEmail 根据googleid取用户信息
|
|
||||||
func (us *UserService) InfoByGoogleEmail(email string) *model.User {
|
|
||||||
return us.InfoByOauthId(model.OauthTypeGithub, email)
|
|
||||||
}
|
|
||||||
|
|
||||||
// InfoByOidcSub 根据oidc取用户信息
|
|
||||||
func (us *UserService) InfoByOidcSub(sub string) *model.User {
|
|
||||||
return us.InfoByOauthId(model.OauthTypeOidc, sub)
|
|
||||||
}
|
|
||||||
|
|
||||||
// InfoByOauthId 根据oauth取用户信息
|
|
||||||
func (us *UserService) InfoByOauthId(thirdType, uid string) *model.User {
|
|
||||||
ut := AllService.OauthService.UserThirdInfo(thirdType, uid)
|
|
||||||
if ut.Id == 0 {
|
if ut.Id == 0 {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
@@ -244,55 +290,53 @@ func (us *UserService) InfoByOauthId(thirdType, uid string) *model.User {
|
|||||||
return u
|
return u
|
||||||
}
|
}
|
||||||
|
|
||||||
// RegisterByGithub 注册
|
|
||||||
func (us *UserService) RegisterByGithub(githubName string, githubId string) *model.User {
|
|
||||||
return us.RegisterByOauth(model.OauthTypeGithub, githubName, githubId)
|
|
||||||
}
|
|
||||||
|
|
||||||
// RegisterByGoogle 注册
|
|
||||||
func (us *UserService) RegisterByGoogle(name string, email string) *model.User {
|
|
||||||
return us.RegisterByOauth(model.OauthTypeGoogle, name, email)
|
|
||||||
}
|
|
||||||
|
|
||||||
// RegisterByOidc 注册, use PreferredUsername as username, sub as openid
|
|
||||||
func (us *UserService) RegisterByOidc(PreferredUsername string, sub string) *model.User {
|
|
||||||
return us.RegisterByOauth(model.OauthTypeOidc, PreferredUsername, sub)
|
|
||||||
}
|
|
||||||
|
|
||||||
// RegisterByOauth 注册
|
// RegisterByOauth 注册
|
||||||
func (us *UserService) RegisterByOauth(thirdType, thirdName, uid string) *model.User {
|
func (us *UserService) RegisterByOauth(oauthUser *model.OauthUser, op string) (error, *model.User) {
|
||||||
global.Lock.Lock("registerByOauth")
|
global.Lock.Lock("registerByOauth")
|
||||||
defer global.Lock.UnLock("registerByOauth")
|
defer global.Lock.UnLock("registerByOauth")
|
||||||
ut := AllService.OauthService.UserThirdInfo(thirdType, uid)
|
ut := AllService.OauthService.UserThirdInfo(op, oauthUser.OpenId)
|
||||||
if ut.Id != 0 {
|
if ut.Id != 0 {
|
||||||
u := &model.User{}
|
return nil, us.InfoById(ut.UserId)
|
||||||
global.DB.Where("id = ?", ut.UserId).First(u)
|
}
|
||||||
return u
|
err, oauthType := AllService.OauthService.GetTypeByOp(op)
|
||||||
|
if err != nil {
|
||||||
|
return err, nil
|
||||||
|
}
|
||||||
|
//check if this email has been registered
|
||||||
|
email := oauthUser.Email
|
||||||
|
// only email is not empty
|
||||||
|
if email != "" {
|
||||||
|
email = strings.ToLower(email)
|
||||||
|
// update email to oauthUser, in case it contain upper case
|
||||||
|
oauthUser.Email = email
|
||||||
|
user := us.InfoByEmail(email)
|
||||||
|
if user.Id != 0 {
|
||||||
|
ut.FromOauthUser(user.Id, oauthUser, oauthType, op)
|
||||||
|
global.DB.Create(ut)
|
||||||
|
return nil, user
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
tx := global.DB.Begin()
|
tx := global.DB.Begin()
|
||||||
ut = &model.UserThird{
|
ut = &model.UserThird{}
|
||||||
OpenId: uid,
|
ut.FromOauthUser(0, oauthUser, oauthType, op)
|
||||||
ThirdName: thirdName,
|
// The initial username should be formatted
|
||||||
ThirdType: thirdType,
|
username := us.formatUsername(oauthUser.Username)
|
||||||
}
|
usernameUnique := us.GenerateUsernameByOauth(username)
|
||||||
|
user := &model.User{
|
||||||
username := us.GenerateUsernameByOauth(thirdName)
|
Username: usernameUnique,
|
||||||
u := &model.User{
|
|
||||||
Username: username,
|
|
||||||
GroupId: 1,
|
GroupId: 1,
|
||||||
}
|
}
|
||||||
tx.Create(u)
|
oauthUser.ToUser(user, false)
|
||||||
if u.Id == 0 {
|
tx.Create(user)
|
||||||
|
if user.Id == 0 {
|
||||||
tx.Rollback()
|
tx.Rollback()
|
||||||
return u
|
return errors.New("OauthRegisterFailed"), user
|
||||||
}
|
}
|
||||||
|
ut.UserId = user.Id
|
||||||
ut.UserId = u.Id
|
|
||||||
tx.Create(ut)
|
tx.Create(ut)
|
||||||
|
|
||||||
tx.Commit()
|
tx.Commit()
|
||||||
return u
|
return nil, user
|
||||||
}
|
}
|
||||||
|
|
||||||
// GenerateUsernameByOauth 生成用户名
|
// GenerateUsernameByOauth 生成用户名
|
||||||
@@ -314,7 +358,7 @@ func (us *UserService) UserThirdsByUserId(userId uint) (res []*model.UserThird)
|
|||||||
|
|
||||||
func (us *UserService) UserThirdInfo(userId uint, op string) *model.UserThird {
|
func (us *UserService) UserThirdInfo(userId uint, op string) *model.UserThird {
|
||||||
ut := &model.UserThird{}
|
ut := &model.UserThird{}
|
||||||
global.DB.Where("user_id = ? and third_type = ?", userId, op).First(ut)
|
global.DB.Where("user_id = ? and op = ?", userId, op).First(ut)
|
||||||
return ut
|
return ut
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -348,9 +392,11 @@ func (us *UserService) IsPasswordEmptyByUser(u *model.User) bool {
|
|||||||
return us.IsPasswordEmptyById(u.Id)
|
return us.IsPasswordEmptyById(u.Id)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (us *UserService) Register(username string, password string) *model.User {
|
// Register 注册
|
||||||
|
func (us *UserService) Register(username string, email string, password string) *model.User {
|
||||||
u := &model.User{
|
u := &model.User{
|
||||||
Username: username,
|
Username: username,
|
||||||
|
Email: email,
|
||||||
Password: us.EncryptPassword(password),
|
Password: us.EncryptPassword(password),
|
||||||
GroupId: 1,
|
GroupId: 1,
|
||||||
}
|
}
|
||||||
@@ -381,3 +427,34 @@ func (us *UserService) TokenInfoById(id uint) *model.UserToken {
|
|||||||
func (us *UserService) DeleteToken(l *model.UserToken) error {
|
func (us *UserService) DeleteToken(l *model.UserToken) error {
|
||||||
return global.DB.Delete(l).Error
|
return global.DB.Delete(l).Error
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Helper functions, used for formatting username
|
||||||
|
func (us *UserService) formatUsername(username string) string {
|
||||||
|
username = strings.ReplaceAll(username, " ", "")
|
||||||
|
username = strings.ToLower(username)
|
||||||
|
return username
|
||||||
|
}
|
||||||
|
|
||||||
|
// Helper functions, getUserCount
|
||||||
|
func (us *UserService) getUserCount() int64 {
|
||||||
|
var count int64
|
||||||
|
global.DB.Model(&model.User{}).Count(&count)
|
||||||
|
return count
|
||||||
|
}
|
||||||
|
|
||||||
|
// helper functions, getAdminUserCount
|
||||||
|
func (us *UserService) getAdminUserCount() int64 {
|
||||||
|
var count int64
|
||||||
|
global.DB.Model(&model.User{}).Where("is_admin = ?", true).Count(&count)
|
||||||
|
return count
|
||||||
|
}
|
||||||
|
|
||||||
|
func (us *UserService) RefreshAccessToken(ut *model.UserToken) {
|
||||||
|
ut.ExpiredAt = time.Now().Add(time.Hour * 24 * 7).Unix()
|
||||||
|
global.DB.Model(ut).Update("expired_at", ut.ExpiredAt)
|
||||||
|
}
|
||||||
|
func (us *UserService) AutoRefreshAccessToken(ut *model.UserToken) {
|
||||||
|
if ut.ExpiredAt-time.Now().Unix() < 86400 {
|
||||||
|
us.RefreshAccessToken(ut)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user