Compare commits
64
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7780aa69c0 | ||
|
|
d198796fde | ||
|
|
43c94b68b0 | ||
|
|
ac60b2c795 | ||
|
|
27ea7345ea | ||
|
|
5b534242c4 | ||
|
|
e36fc9738b | ||
|
|
657a3f08e5 | ||
|
|
af78ac0586 | ||
|
|
d65c1a1ab3 | ||
|
|
4fb99e3bd0 | ||
|
|
f0a83abcfa | ||
|
|
6f1c715b8c | ||
|
|
38dd4d1079 | ||
|
|
154204742d | ||
|
|
db55998546 | ||
|
|
5885e067a6 | ||
|
|
a92152d86d | ||
|
|
b5cd5e30ef | ||
|
|
b0c977b324 | ||
|
|
bfe4018e43 | ||
|
|
cc7a7962a8 | ||
|
|
fb4011084d | ||
|
|
3a3415915f | ||
|
|
964884a5de | ||
|
|
db57706794 | ||
|
|
a186732ca5 | ||
|
|
e635bc23ec | ||
|
|
3cb7da95e3 | ||
|
|
dea0f675dd | ||
|
|
480f210ce8 | ||
|
|
caa8607468 | ||
|
|
32e6600272 | ||
|
|
5335124306 | ||
|
|
1561481eb4 | ||
|
|
8f9015a6ff | ||
|
|
ed22b3a5ce | ||
|
|
65fbd36624 | ||
|
|
050ba16d4a | ||
|
|
65bc6c8fc6 | ||
|
|
6ad3da5f35 | ||
|
|
947eb15771 | ||
|
|
f4ee35fb09 | ||
|
|
6048587d34 | ||
|
|
80cf8fc4e8 | ||
|
|
4f54227495 | ||
|
|
aab1734615 | ||
|
|
40a41ffd64 | ||
|
|
d30ceea373 | ||
|
|
3e8a401077 | ||
|
|
99f400bc7b | ||
|
|
73b576a75f | ||
|
|
4e4e598daf | ||
|
|
77daf82b94 | ||
|
|
e00603f276 | ||
|
|
1b2c7b2fa1 | ||
|
|
c526095d4f | ||
|
|
8cc4bbea4d | ||
|
|
911ffc767e | ||
|
|
1690df998d | ||
|
|
519d3c08a8 | ||
|
|
9846d8aac2 | ||
|
|
c74b6255dd | ||
|
|
df91b8c990 |
@@ -1,37 +0,0 @@
|
|||||||
name: Build documentation
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- main
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
deploy:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
permissions:
|
|
||||||
contents: write # To push a branch
|
|
||||||
pages: write # To push to a GitHub Pages site
|
|
||||||
id-token: write # To update the deployment status
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v4
|
|
||||||
with:
|
|
||||||
fetch-depth: 0
|
|
||||||
- name: Install latest mdbook
|
|
||||||
run: |
|
|
||||||
tag=$(curl 'https://api.github.com/repos/rust-lang/mdbook/releases/latest' | jq -r '.tag_name')
|
|
||||||
url="https://github.com/rust-lang/mdbook/releases/download/${tag}/mdbook-${tag}-x86_64-unknown-linux-gnu.tar.gz"
|
|
||||||
mkdir mdbook
|
|
||||||
curl -sSL $url | tar -xz --directory=./mdbook
|
|
||||||
echo `pwd`/mdbook >> $GITHUB_PATH
|
|
||||||
- name: Build Book
|
|
||||||
run: |
|
|
||||||
cd doc
|
|
||||||
mdbook build
|
|
||||||
- name: Setup Pages
|
|
||||||
uses: actions/configure-pages@v4
|
|
||||||
- name: Upload artifact
|
|
||||||
uses: actions/upload-pages-artifact@v3
|
|
||||||
with:
|
|
||||||
path: "doc/book"
|
|
||||||
- name: Deploy to GitHub Pages
|
|
||||||
id: deployment
|
|
||||||
uses: actions/deploy-pages@v4
|
|
||||||
@@ -5,8 +5,6 @@ on:
|
|||||||
tags:
|
tags:
|
||||||
- "*"
|
- "*"
|
||||||
pull_request:
|
pull_request:
|
||||||
branches:
|
|
||||||
- "main"
|
|
||||||
paths:
|
paths:
|
||||||
- "Dockerfile"
|
- "Dockerfile"
|
||||||
|
|
||||||
@@ -14,6 +12,10 @@ permissions:
|
|||||||
contents: read
|
contents: read
|
||||||
packages: write
|
packages: write
|
||||||
|
|
||||||
|
concurrency:
|
||||||
|
group: ${{ github.head_ref }}
|
||||||
|
cancel-in-progress: true
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
base:
|
base:
|
||||||
name: Test base image build
|
name: Test base image build
|
||||||
@@ -49,13 +51,6 @@ jobs:
|
|||||||
uses: docker/setup-buildx-action@v2
|
uses: docker/setup-buildx-action@v2
|
||||||
|
|
||||||
# Authenticate with Docker Hub and GHCR
|
# Authenticate with Docker Hub and GHCR
|
||||||
- name: Login to DockerHub
|
|
||||||
uses: docker/login-action@v2
|
|
||||||
with:
|
|
||||||
registry: docker.io
|
|
||||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
||||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
||||||
|
|
||||||
- name: Login to Github Container Registry
|
- name: Login to Github Container Registry
|
||||||
uses: docker/login-action@v2
|
uses: docker/login-action@v2
|
||||||
with:
|
with:
|
||||||
@@ -72,14 +67,13 @@ jobs:
|
|||||||
platforms: linux/amd64,linux/arm64
|
platforms: linux/amd64,linux/arm64
|
||||||
tags: ghcr.io/${{ github.repository_owner }}/base:latest
|
tags: ghcr.io/${{ github.repository_owner }}/base:latest
|
||||||
|
|
||||||
# revoltchat/server
|
# stoatchat/api
|
||||||
- name: Docker meta
|
- name: Docker meta
|
||||||
id: meta-delta
|
id: meta-delta
|
||||||
uses: docker/metadata-action@v4
|
uses: docker/metadata-action@v4
|
||||||
with:
|
with:
|
||||||
images: |
|
images: |
|
||||||
docker.io/revoltchat/server
|
ghcr.io/stoatchat/api
|
||||||
ghcr.io/revoltchat/server
|
|
||||||
- name: Publish
|
- name: Publish
|
||||||
uses: docker/build-push-action@v4
|
uses: docker/build-push-action@v4
|
||||||
with:
|
with:
|
||||||
@@ -92,14 +86,13 @@ jobs:
|
|||||||
BASE_IMAGE=ghcr.io/${{ github.repository_owner }}/base:latest
|
BASE_IMAGE=ghcr.io/${{ github.repository_owner }}/base:latest
|
||||||
labels: ${{ steps.meta-delta.outputs.labels }}
|
labels: ${{ steps.meta-delta.outputs.labels }}
|
||||||
|
|
||||||
# revoltchat/bonfire
|
# stoatchat/events
|
||||||
- name: Docker meta
|
- name: Docker meta
|
||||||
id: meta-bonfire
|
id: meta-bonfire
|
||||||
uses: docker/metadata-action@v4
|
uses: docker/metadata-action@v4
|
||||||
with:
|
with:
|
||||||
images: |
|
images: |
|
||||||
docker.io/revoltchat/bonfire
|
ghcr.io/stoatchat/events
|
||||||
ghcr.io/revoltchat/bonfire
|
|
||||||
- name: Publish
|
- name: Publish
|
||||||
uses: docker/build-push-action@v4
|
uses: docker/build-push-action@v4
|
||||||
with:
|
with:
|
||||||
@@ -112,14 +105,13 @@ jobs:
|
|||||||
BASE_IMAGE=ghcr.io/${{ github.repository_owner }}/base:latest
|
BASE_IMAGE=ghcr.io/${{ github.repository_owner }}/base:latest
|
||||||
labels: ${{ steps.meta-bonfire.outputs.labels }}
|
labels: ${{ steps.meta-bonfire.outputs.labels }}
|
||||||
|
|
||||||
# revoltchat/autumn
|
# stoatchat/file-server
|
||||||
- name: Docker meta
|
- name: Docker meta
|
||||||
id: meta-autumn
|
id: meta-autumn
|
||||||
uses: docker/metadata-action@v4
|
uses: docker/metadata-action@v4
|
||||||
with:
|
with:
|
||||||
images: |
|
images: |
|
||||||
docker.io/revoltchat/autumn
|
ghcr.io/stoatchat/file-server
|
||||||
ghcr.io/revoltchat/autumn
|
|
||||||
- name: Publish
|
- name: Publish
|
||||||
uses: docker/build-push-action@v4
|
uses: docker/build-push-action@v4
|
||||||
with:
|
with:
|
||||||
@@ -132,14 +124,13 @@ jobs:
|
|||||||
BASE_IMAGE=ghcr.io/${{ github.repository_owner }}/base:latest
|
BASE_IMAGE=ghcr.io/${{ github.repository_owner }}/base:latest
|
||||||
labels: ${{ steps.meta-autumn.outputs.labels }}
|
labels: ${{ steps.meta-autumn.outputs.labels }}
|
||||||
|
|
||||||
# revoltchat/january
|
# stoatchat/proxy
|
||||||
- name: Docker meta
|
- name: Docker meta
|
||||||
id: meta-january
|
id: meta-january
|
||||||
uses: docker/metadata-action@v4
|
uses: docker/metadata-action@v4
|
||||||
with:
|
with:
|
||||||
images: |
|
images: |
|
||||||
docker.io/revoltchat/january
|
ghcr.io/stoatchat/proxy
|
||||||
ghcr.io/revoltchat/january
|
|
||||||
- name: Publish
|
- name: Publish
|
||||||
uses: docker/build-push-action@v4
|
uses: docker/build-push-action@v4
|
||||||
with:
|
with:
|
||||||
@@ -152,14 +143,32 @@ jobs:
|
|||||||
BASE_IMAGE=ghcr.io/${{ github.repository_owner }}/base:latest
|
BASE_IMAGE=ghcr.io/${{ github.repository_owner }}/base:latest
|
||||||
labels: ${{ steps.meta-january.outputs.labels }}
|
labels: ${{ steps.meta-january.outputs.labels }}
|
||||||
|
|
||||||
# revoltchat/crond
|
# stoatchat/gifbox
|
||||||
|
- name: Docker meta
|
||||||
|
id: meta-gifbox
|
||||||
|
uses: docker/metadata-action@v4
|
||||||
|
with:
|
||||||
|
images: |
|
||||||
|
ghcr.io/stoatchat/gifbox
|
||||||
|
- name: Publish
|
||||||
|
uses: docker/build-push-action@v4
|
||||||
|
with:
|
||||||
|
context: .
|
||||||
|
push: true
|
||||||
|
platforms: linux/amd64,linux/arm64
|
||||||
|
file: crates/services/gifbox/Dockerfile
|
||||||
|
tags: ${{ steps.meta-gifbox.outputs.tags }}
|
||||||
|
build-args: |
|
||||||
|
BASE_IMAGE=ghcr.io/${{ github.repository_owner }}/base:latest
|
||||||
|
labels: ${{ steps.meta-gifbox.outputs.labels }}
|
||||||
|
|
||||||
|
# stoatchat/crond
|
||||||
- name: Docker meta
|
- name: Docker meta
|
||||||
id: meta-crond
|
id: meta-crond
|
||||||
uses: docker/metadata-action@v4
|
uses: docker/metadata-action@v4
|
||||||
with:
|
with:
|
||||||
images: |
|
images: |
|
||||||
docker.io/revoltchat/crond
|
ghcr.io/stoatchat/crond
|
||||||
ghcr.io/revoltchat/crond
|
|
||||||
- name: Publish
|
- name: Publish
|
||||||
uses: docker/build-push-action@v4
|
uses: docker/build-push-action@v4
|
||||||
with:
|
with:
|
||||||
@@ -172,14 +181,13 @@ jobs:
|
|||||||
BASE_IMAGE=ghcr.io/${{ github.repository_owner }}/base:latest
|
BASE_IMAGE=ghcr.io/${{ github.repository_owner }}/base:latest
|
||||||
labels: ${{ steps.meta-crond.outputs.labels }}
|
labels: ${{ steps.meta-crond.outputs.labels }}
|
||||||
|
|
||||||
# revoltchat/pushd
|
# stoatchat/pushd
|
||||||
- name: Docker meta
|
- name: Docker meta
|
||||||
id: meta-pushd
|
id: meta-pushd
|
||||||
uses: docker/metadata-action@v4
|
uses: docker/metadata-action@v4
|
||||||
with:
|
with:
|
||||||
images: |
|
images: |
|
||||||
docker.io/revoltchat/pushd
|
ghcr.io/stoatchat/pushd
|
||||||
ghcr.io/revoltchat/pushd
|
|
||||||
- name: Publish
|
- name: Publish
|
||||||
uses: docker/build-push-action@v4
|
uses: docker/build-push-action@v4
|
||||||
with:
|
with:
|
||||||
@@ -191,3 +199,22 @@ jobs:
|
|||||||
build-args: |
|
build-args: |
|
||||||
BASE_IMAGE=ghcr.io/${{ github.repository_owner }}/base:latest
|
BASE_IMAGE=ghcr.io/${{ github.repository_owner }}/base:latest
|
||||||
labels: ${{ steps.meta-pushd.outputs.labels }}
|
labels: ${{ steps.meta-pushd.outputs.labels }}
|
||||||
|
|
||||||
|
# stoatchat/voice-ingress
|
||||||
|
- name: Docker meta
|
||||||
|
id: meta-voice-ingress
|
||||||
|
uses: docker/metadata-action@v4
|
||||||
|
with:
|
||||||
|
images: |
|
||||||
|
ghcr.io/stoatchat/voice-ingress
|
||||||
|
- name: Publish
|
||||||
|
uses: docker/build-push-action@v4
|
||||||
|
with:
|
||||||
|
context: .
|
||||||
|
push: true
|
||||||
|
platforms: linux/amd64,linux/arm64
|
||||||
|
file: crates/daemons/voice-ingress/Dockerfile
|
||||||
|
tags: ${{ steps.meta-voice-ingress.outputs.tags }}
|
||||||
|
build-args: |
|
||||||
|
BASE_IMAGE=ghcr.io/${{ github.repository_owner }}/base:latest
|
||||||
|
labels: ${{ steps.meta-voice-ingress.outputs.labels }}
|
||||||
|
|||||||
@@ -0,0 +1,29 @@
|
|||||||
|
name: Documentation (test)
|
||||||
|
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
test-deploy:
|
||||||
|
name: Test deployment
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
defaults:
|
||||||
|
run:
|
||||||
|
working-directory: ./docs
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
- uses: pnpm/action-setup@v4
|
||||||
|
with:
|
||||||
|
package_json_file: ./docs/package.json
|
||||||
|
- uses: actions/setup-node@v4
|
||||||
|
with:
|
||||||
|
node-version: lts/*
|
||||||
|
cache: pnpm
|
||||||
|
cache-dependency-path: ./docs/pnpm-lock.yaml
|
||||||
|
|
||||||
|
- name: Install dependencies
|
||||||
|
run: pnpm install
|
||||||
|
- name: Test build website
|
||||||
|
run: pnpm run build
|
||||||
@@ -0,0 +1,54 @@
|
|||||||
|
name: Documentation
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
name: Build Docusaurus
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
defaults:
|
||||||
|
run:
|
||||||
|
working-directory: ./docs
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
- uses: pnpm/action-setup@v4
|
||||||
|
with:
|
||||||
|
package_json_file: ./docs/package.json
|
||||||
|
- uses: actions/setup-node@v4
|
||||||
|
with:
|
||||||
|
node-version: lts/*
|
||||||
|
cache: pnpm
|
||||||
|
cache-dependency-path: ./docs/pnpm-lock.yaml
|
||||||
|
|
||||||
|
- name: Install dependencies
|
||||||
|
run: pnpm install
|
||||||
|
- name: Build website
|
||||||
|
run: pnpm run build
|
||||||
|
|
||||||
|
- name: Upload Build Artifact
|
||||||
|
uses: actions/upload-pages-artifact@v3
|
||||||
|
with:
|
||||||
|
path: ./docs/build
|
||||||
|
|
||||||
|
deploy:
|
||||||
|
name: Deploy to GitHub Pages
|
||||||
|
needs: build
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
pages: write # to deploy to Pages
|
||||||
|
id-token: write # to verify the deployment originates from an appropriate source
|
||||||
|
|
||||||
|
environment:
|
||||||
|
name: github-pages
|
||||||
|
url: ${{ steps.deployment.outputs.page_url }}
|
||||||
|
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Deploy to GitHub Pages
|
||||||
|
id: deployment
|
||||||
|
uses: actions/deploy-pages@v4
|
||||||
+12
-12
@@ -2,16 +2,12 @@ name: Rust build, test, and generate specification
|
|||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
paths-ignore:
|
|
||||||
- ".github/**"
|
|
||||||
- "!.github/workflows/rust.yaml"
|
|
||||||
- ".vscode/**"
|
|
||||||
- "doc/**"
|
|
||||||
- ".gitignore"
|
|
||||||
- "LICENSE"
|
|
||||||
- "README"
|
|
||||||
pull_request:
|
|
||||||
branches: [main]
|
branches: [main]
|
||||||
|
pull_request:
|
||||||
|
|
||||||
|
concurrency:
|
||||||
|
group: ${{ github.head_ref }}
|
||||||
|
cancel-in-progress: true
|
||||||
|
|
||||||
env:
|
env:
|
||||||
CARGO_TERM_COLOR: always
|
CARGO_TERM_COLOR: always
|
||||||
@@ -22,6 +18,10 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
- name: Free up disk space
|
||||||
|
run: |
|
||||||
|
sudo rm -rf /usr/local/lib/android /usr/share/dotnet /opt/ghc
|
||||||
|
|
||||||
- name: Install latest stable
|
- name: Install latest stable
|
||||||
uses: actions-rs/toolchain@v1
|
uses: actions-rs/toolchain@v1
|
||||||
with:
|
with:
|
||||||
@@ -32,7 +32,7 @@ jobs:
|
|||||||
uses: baptiste0928/cargo-install@v1
|
uses: baptiste0928/cargo-install@v1
|
||||||
with:
|
with:
|
||||||
crate: cargo-nextest
|
crate: cargo-nextest
|
||||||
locked: true
|
args: --locked
|
||||||
|
|
||||||
- name: Run cargo build
|
- name: Run cargo build
|
||||||
uses: actions-rs/cargo@v1
|
uses: actions-rs/cargo@v1
|
||||||
@@ -73,9 +73,9 @@ jobs:
|
|||||||
if: github.event_name != 'pull_request' && github.ref_name == 'main'
|
if: github.event_name != 'pull_request' && github.ref_name == 'main'
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
repository: revoltchat/api
|
repository: stoatchat/javascript-client-api
|
||||||
path: api
|
path: api
|
||||||
token: ${{ secrets.PAT }}
|
ssh-key: ${{ secrets.DEPLOY_KEY_JAVASCRIPT_CLIENT_API }}
|
||||||
|
|
||||||
- name: Download OpenAPI specification
|
- name: Download OpenAPI specification
|
||||||
if: github.event_name != 'pull_request' && github.ref_name == 'main'
|
if: github.event_name != 'pull_request' && github.ref_name == 'main'
|
||||||
|
|||||||
@@ -1,54 +0,0 @@
|
|||||||
name: Add Issue to Board
|
|
||||||
|
|
||||||
on:
|
|
||||||
issues:
|
|
||||||
types: [opened]
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
track_issue:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Get project data
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.PAT }}
|
|
||||||
run: |
|
|
||||||
gh api graphql -f query='
|
|
||||||
query {
|
|
||||||
organization(login: "revoltchat"){
|
|
||||||
projectV2(number: 3) {
|
|
||||||
id
|
|
||||||
fields(first:20) {
|
|
||||||
nodes {
|
|
||||||
... on ProjectV2SingleSelectField {
|
|
||||||
id
|
|
||||||
name
|
|
||||||
options {
|
|
||||||
id
|
|
||||||
name
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}' > project_data.json
|
|
||||||
|
|
||||||
echo 'PROJECT_ID='$(jq '.data.organization.projectV2.id' project_data.json) >> $GITHUB_ENV
|
|
||||||
echo 'STATUS_FIELD_ID='$(jq '.data.organization.projectV2.fields.nodes[] | select(.name== "Status") | .id' project_data.json) >> $GITHUB_ENV
|
|
||||||
echo 'TODO_OPTION_ID='$(jq '.data.organization.projectV2.fields.nodes[] | select(.name== "Status") | .options[] | select(.name=="Todo") |.id' project_data.json) >> $GITHUB_ENV
|
|
||||||
|
|
||||||
- name: Add issue to project
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.PAT }}
|
|
||||||
ISSUE_ID: ${{ github.event.issue.node_id }}
|
|
||||||
run: |
|
|
||||||
item_id="$( gh api graphql -f query='
|
|
||||||
mutation($project:ID!, $issue:ID!) {
|
|
||||||
addProjectV2ItemById(input: {projectId: $project, contentId: $issue}) {
|
|
||||||
item {
|
|
||||||
id
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}' -f project=$PROJECT_ID -f issue=$ISSUE_ID --jq '.data.addProjectV2ItemById.item.id')"
|
|
||||||
|
|
||||||
echo 'ITEM_ID='$item_id >> $GITHUB_ENV
|
|
||||||
@@ -1,79 +0,0 @@
|
|||||||
name: Add PR to Board
|
|
||||||
|
|
||||||
on:
|
|
||||||
pull_request_target:
|
|
||||||
types: [opened, synchronize, ready_for_review, review_requested]
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
track_pr:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Get project data
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.PAT }}
|
|
||||||
run: |
|
|
||||||
gh api graphql -f query='
|
|
||||||
query {
|
|
||||||
organization(login: "revoltchat"){
|
|
||||||
projectV2(number: 5) {
|
|
||||||
id
|
|
||||||
fields(first:20) {
|
|
||||||
nodes {
|
|
||||||
... on ProjectV2SingleSelectField {
|
|
||||||
id
|
|
||||||
name
|
|
||||||
options {
|
|
||||||
id
|
|
||||||
name
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}' > project_data.json
|
|
||||||
|
|
||||||
echo 'PROJECT_ID='$(jq '.data.organization.projectV2.id' project_data.json) >> $GITHUB_ENV
|
|
||||||
echo 'STATUS_FIELD_ID='$(jq '.data.organization.projectV2.fields.nodes[] | select(.name== "Status") | .id' project_data.json) >> $GITHUB_ENV
|
|
||||||
echo 'INCOMING_OPTION_ID='$(jq '.data.organization.projectV2.fields.nodes[] | select(.name== "Status") | .options[] | select(.name=="🆕 Untriaged") |.id' project_data.json) >> $GITHUB_ENV
|
|
||||||
|
|
||||||
- name: Add PR to project
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.PAT }}
|
|
||||||
PR_ID: ${{ github.event.pull_request.node_id }}
|
|
||||||
run: |
|
|
||||||
item_id="$( gh api graphql -f query='
|
|
||||||
mutation($project:ID!, $pr:ID!) {
|
|
||||||
addProjectV2ItemById(input: {projectId: $project, contentId: $pr}) {
|
|
||||||
item {
|
|
||||||
id
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}' -f project=$PROJECT_ID -f pr=$PR_ID --jq '.data.addProjectV2ItemById.item.id')"
|
|
||||||
|
|
||||||
echo 'ITEM_ID='$item_id >> $GITHUB_ENV
|
|
||||||
|
|
||||||
- name: Set fields
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.PAT }}
|
|
||||||
run: |
|
|
||||||
gh api graphql -f query='
|
|
||||||
mutation (
|
|
||||||
$project: ID!
|
|
||||||
$item: ID!
|
|
||||||
$status_field: ID!
|
|
||||||
$status_value: String!
|
|
||||||
) {
|
|
||||||
set_status: updateProjectV2ItemFieldValue(input: {
|
|
||||||
projectId: $project
|
|
||||||
itemId: $item
|
|
||||||
fieldId: $status_field
|
|
||||||
value: {
|
|
||||||
singleSelectOptionId: $status_value
|
|
||||||
}
|
|
||||||
}) {
|
|
||||||
projectV2Item {
|
|
||||||
id
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}' -f project=$PROJECT_ID -f item=$ITEM_ID -f status_field=$STATUS_FIELD_ID -f status_value=${{ env.INCOMING_OPTION_ID }} --silent
|
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
name: "Lint PR"
|
||||||
|
|
||||||
|
on:
|
||||||
|
pull_request_target:
|
||||||
|
types:
|
||||||
|
- opened
|
||||||
|
- reopened
|
||||||
|
- edited
|
||||||
|
- synchronize
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
main:
|
||||||
|
name: Validate PR title
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
pull-requests: read
|
||||||
|
steps:
|
||||||
|
- uses: amannn/action-semantic-pull-request@v6
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
@@ -11,4 +11,5 @@ venv/
|
|||||||
.vercel
|
.vercel
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
|
||||||
|
livekit.yml
|
||||||
.idea
|
.idea
|
||||||
Generated
+2434
-1366
File diff suppressed because it is too large
Load Diff
@@ -11,6 +11,9 @@ members = [
|
|||||||
|
|
||||||
[patch.crates-io]
|
[patch.crates-io]
|
||||||
redis23 = { package = "redis", version = "0.23.3", git = "https://github.com/revoltchat/redis-rs", rev = "523b2937367e17bd0073722bf6e23d06042cb4e4" }
|
redis23 = { package = "redis", version = "0.23.3", git = "https://github.com/revoltchat/redis-rs", rev = "523b2937367e17bd0073722bf6e23d06042cb4e4" }
|
||||||
|
authifier = { package = "authifier", version = "1.0.10", path = "../authifier/crates/authifier" }
|
||||||
|
rocket_authifier = { package = "rocket_authifier", version = "1.0.10", path = "../authifier/crates/rocket_authifier" }
|
||||||
|
iso8601-timestamp = { path = "../iso8601-timestamp" }
|
||||||
|
|
||||||
# I'm 99% sure this is overloading the GitHub worker
|
# I'm 99% sure this is overloading the GitHub worker
|
||||||
# hence builds have been failing since, let's just
|
# hence builds have been failing since, let's just
|
||||||
|
|||||||
@@ -27,10 +27,14 @@ COPY crates/core/parser/Cargo.toml ./crates/core/parser/
|
|||||||
COPY crates/core/permissions/Cargo.toml ./crates/core/permissions/
|
COPY crates/core/permissions/Cargo.toml ./crates/core/permissions/
|
||||||
COPY crates/core/presence/Cargo.toml ./crates/core/presence/
|
COPY crates/core/presence/Cargo.toml ./crates/core/presence/
|
||||||
COPY crates/core/result/Cargo.toml ./crates/core/result/
|
COPY crates/core/result/Cargo.toml ./crates/core/result/
|
||||||
|
COPY crates/core/coalesced/Cargo.toml ./crates/core/coalesced/
|
||||||
|
COPY crates/core/ratelimits/Cargo.toml ./crates/core/ratelimits/
|
||||||
COPY crates/services/autumn/Cargo.toml ./crates/services/autumn/
|
COPY crates/services/autumn/Cargo.toml ./crates/services/autumn/
|
||||||
COPY crates/services/january/Cargo.toml ./crates/services/january/
|
COPY crates/services/january/Cargo.toml ./crates/services/january/
|
||||||
|
COPY crates/services/gifbox/Cargo.toml ./crates/services/gifbox/
|
||||||
COPY crates/daemons/crond/Cargo.toml ./crates/daemons/crond/
|
COPY crates/daemons/crond/Cargo.toml ./crates/daemons/crond/
|
||||||
COPY crates/daemons/pushd/Cargo.toml ./crates/daemons/pushd/
|
COPY crates/daemons/pushd/Cargo.toml ./crates/daemons/pushd/
|
||||||
|
COPY crates/daemons/voice-ingress/Cargo.toml ./crates/daemons/voice-ingress/
|
||||||
RUN sh /tmp/build-image-layer.sh deps
|
RUN sh /tmp/build-image-layer.sh deps
|
||||||
|
|
||||||
# Build all apps
|
# Build all apps
|
||||||
|
|||||||
@@ -23,10 +23,14 @@ COPY crates/core/parser/Cargo.toml ./crates/core/parser/
|
|||||||
COPY crates/core/permissions/Cargo.toml ./crates/core/permissions/
|
COPY crates/core/permissions/Cargo.toml ./crates/core/permissions/
|
||||||
COPY crates/core/presence/Cargo.toml ./crates/core/presence/
|
COPY crates/core/presence/Cargo.toml ./crates/core/presence/
|
||||||
COPY crates/core/result/Cargo.toml ./crates/core/result/
|
COPY crates/core/result/Cargo.toml ./crates/core/result/
|
||||||
|
COPY crates/core/coalesced/Cargo.toml ./crates/core/coalesced/
|
||||||
|
COPY crates/core/ratelimits/Cargo.toml ./crates/core/ratelimits/
|
||||||
COPY crates/services/autumn/Cargo.toml ./crates/services/autumn/
|
COPY crates/services/autumn/Cargo.toml ./crates/services/autumn/
|
||||||
COPY crates/services/january/Cargo.toml ./crates/services/january/
|
COPY crates/services/january/Cargo.toml ./crates/services/january/
|
||||||
|
COPY crates/services/gifbox/Cargo.toml ./crates/services/gifbox/
|
||||||
COPY crates/daemons/crond/Cargo.toml ./crates/daemons/crond/
|
COPY crates/daemons/crond/Cargo.toml ./crates/daemons/crond/
|
||||||
COPY crates/daemons/pushd/Cargo.toml ./crates/daemons/pushd/
|
COPY crates/daemons/pushd/Cargo.toml ./crates/daemons/pushd/
|
||||||
|
COPY crates/daemons/voice-ingress/Cargo.toml ./crates/daemons/voice-ingress/
|
||||||
RUN sh /tmp/build-image-layer.sh deps
|
RUN sh /tmp/build-image-layer.sh deps
|
||||||
|
|
||||||
# Build all apps
|
# Build all apps
|
||||||
|
|||||||
@@ -21,9 +21,11 @@ The services and libraries that power the Revolt service.<br/>
|
|||||||
| `core/permissions` | [crates/core/permissions](crates/core/permissions) | Core: Permission Logic |     |
|
| `core/permissions` | [crates/core/permissions](crates/core/permissions) | Core: Permission Logic |     |
|
||||||
| `core/presence` | [crates/core/presence](crates/core/presence) | Core: User Presence |     |
|
| `core/presence` | [crates/core/presence](crates/core/presence) | Core: User Presence |     |
|
||||||
| `core/result` | [crates/core/result](crates/core/result) | Core: Result and Error types |     |
|
| `core/result` | [crates/core/result](crates/core/result) | Core: Result and Error types |     |
|
||||||
|
| `core/coalesced` | [crates/core/coalesced](crates/core/coalesced) | Core: Coalescion service |     |
|
||||||
| `delta` | [crates/delta](crates/delta) | REST API server |  |
|
| `delta` | [crates/delta](crates/delta) | REST API server |  |
|
||||||
| `bonfire` | [crates/bonfire](crates/bonfire) | WebSocket events server |  |
|
| `bonfire` | [crates/bonfire](crates/bonfire) | WebSocket events server |  |
|
||||||
| `services/january` | [crates/services/january](crates/services/january) | Proxy server |  |
|
| `services/january` | [crates/services/january](crates/services/january) | Proxy server |  |
|
||||||
|
| `services/gifbox` | [crates/services/gifbox](crates/services/gifbox) | Tenor proxy server |  |
|
||||||
| `services/autumn` | [crates/services/autumn](crates/services/autumn) | File server |  |
|
| `services/autumn` | [crates/services/autumn](crates/services/autumn) | File server |  |
|
||||||
| `daemons/crond` | [crates/daemons/crond](crates/daemons/crond) | Timed data clean up daemon server |  |
|
| `daemons/crond` | [crates/daemons/crond](crates/daemons/crond) | Timed data clean up daemon server |  |
|
||||||
| `daemons/pushd` | [crates/daemons/pushd](crates/daemons/pushd) | Push notification daemon server |  |
|
| `daemons/pushd` | [crates/daemons/pushd](crates/daemons/pushd) | Push notification daemon server |  |
|
||||||
@@ -66,6 +68,7 @@ As a heads-up, the development environment uses the following ports:
|
|||||||
| `crates/bonfire` | 14703 |
|
| `crates/bonfire` | 14703 |
|
||||||
| `crates/services/autumn` | 14704 |
|
| `crates/services/autumn` | 14704 |
|
||||||
| `crates/services/january` | 14705 |
|
| `crates/services/january` | 14705 |
|
||||||
|
| `crates/services/gifbox` | 14706 |
|
||||||
|
|
||||||
Now you can clone and build the project:
|
Now you can clone and build the project:
|
||||||
|
|
||||||
@@ -114,7 +117,8 @@ If you'd like to change anything, create a `Revolt.overrides.toml` file and spec
|
|||||||
> And corresponding Revolt configuration:
|
> And corresponding Revolt configuration:
|
||||||
>
|
>
|
||||||
> ```toml
|
> ```toml
|
||||||
> # Revolt.overrides.toml
|
> # Revolt.overrides.toml
|
||||||
|
> # and Revolt.test-overrides.toml
|
||||||
> [database]
|
> [database]
|
||||||
> mongodb = "mongodb://127.0.0.1:14017"
|
> mongodb = "mongodb://127.0.0.1:14017"
|
||||||
> redis = "redis://127.0.0.1:14079/"
|
> redis = "redis://127.0.0.1:14079/"
|
||||||
@@ -140,6 +144,8 @@ cargo run --bin revolt-bonfire
|
|||||||
cargo run --bin revolt-autumn
|
cargo run --bin revolt-autumn
|
||||||
# run the proxy server
|
# run the proxy server
|
||||||
cargo run --bin revolt-january
|
cargo run --bin revolt-january
|
||||||
|
# run the tenor proxy
|
||||||
|
cargo run --bin revolt-gifbox
|
||||||
# run the push daemon (not usually needed in regular development)
|
# run the push daemon (not usually needed in regular development)
|
||||||
cargo run --bin revolt-pushd
|
cargo run --bin revolt-pushd
|
||||||
|
|
||||||
|
|||||||
+17
@@ -26,6 +26,11 @@ january = "http://local.revolt.chat:14705"
|
|||||||
voso_legacy = ""
|
voso_legacy = ""
|
||||||
voso_legacy_ws = ""
|
voso_legacy_ws = ""
|
||||||
|
|
||||||
|
# Public urls for livekit nodes
|
||||||
|
# each entry here should have a corresponding entry under `api.livekit.nodes`
|
||||||
|
[hosts.livekit]
|
||||||
|
worldwide = "ws://local.revolt.chat:14706"
|
||||||
|
|
||||||
[api]
|
[api]
|
||||||
|
|
||||||
[api.smtp]
|
[api.smtp]
|
||||||
@@ -40,6 +45,18 @@ port = 14025
|
|||||||
use_tls = false
|
use_tls = false
|
||||||
use_starttls = false
|
use_starttls = false
|
||||||
|
|
||||||
|
[api.livekit]
|
||||||
|
|
||||||
|
# Config for livekit nodes
|
||||||
|
# Make sure to change the secret when deploying
|
||||||
|
# The key and secret should match the values livekit is using
|
||||||
|
[api.livekit.nodes.worldwide]
|
||||||
|
url = "http://livekit"
|
||||||
|
lat = 0.0
|
||||||
|
lon = 0.0
|
||||||
|
key = "worldwide"
|
||||||
|
secret = "ZjCofRlfm6GGtjlifmNpCDkcQbEIIVC0"
|
||||||
|
|
||||||
[files.s3]
|
[files.s3]
|
||||||
# S3 protocol endpoint
|
# S3 protocol endpoint
|
||||||
endpoint = "http://127.0.0.1:14009"
|
endpoint = "http://127.0.0.1:14009"
|
||||||
|
|||||||
@@ -1,73 +0,0 @@
|
|||||||
# Code Style Guide
|
|
||||||
|
|
||||||
Beyond using Cargo format and Clippy, there are some specific code style guidelines laid out in this document for different parts of the project.
|
|
||||||
|
|
||||||
## Writing Style
|
|
||||||
|
|
||||||
- Shorten "identifier" to "Id" with that exact casing, i.e. Server Id.
|
|
||||||
|
|
||||||
## `core/database` crate
|
|
||||||
|
|
||||||
w.r.t. `model.rs` files
|
|
||||||
|
|
||||||
- All struct definitions must be commented.
|
|
||||||
```rust
|
|
||||||
/// Server
|
|
||||||
pub struct Server {
|
|
||||||
/// Name of the server
|
|
||||||
pub name: String,
|
|
||||||
```
|
|
||||||
- Struct definitions should not include derives unless necessary (if additional traits such as Hash are required) and instead use `auto_derived!` and `auto_derived_partial!`.
|
|
||||||
```rust
|
|
||||||
auto_derived_partial!(
|
|
||||||
/// Server
|
|
||||||
pub struct Server { .. },
|
|
||||||
"PartialServer"
|
|
||||||
);
|
|
||||||
```
|
|
||||||
- `auto_derived!` macro accepts multiple entries and should be used as such:
|
|
||||||
|
|
||||||
```rust
|
|
||||||
auto_derived!(
|
|
||||||
/// Optional fields on server object
|
|
||||||
pub enum FieldsServer { .. }
|
|
||||||
|
|
||||||
/// Optional fields on server object
|
|
||||||
pub enum FieldsRole { .. }
|
|
||||||
);
|
|
||||||
```
|
|
||||||
|
|
||||||
- If special serialisation conditions are required, such as checking if a boolean is false, use the existing definitions for these functions from the crate root:
|
|
||||||
```rust
|
|
||||||
#[serde(skip_serializing_if = "crate::if_false", default)]
|
|
||||||
```
|
|
||||||
- `impl` blocks may be defined below the struct definitions and should be ordered in the same order of definition. Methods in the block must follow the same guidelines as traits where-in: methods are ordered in terms of CRUD, there are empty line breaks, and methods are commented.
|
|
||||||
|
|
||||||
w.r.t. `ops` module for models
|
|
||||||
|
|
||||||
- All traits must use a the name format `AbstractPlural` where Plural is the plural form of the collection. e.g. Servers
|
|
||||||
- Traits defined must follow these guidelines:
|
|
||||||
|
|
||||||
- Methods are ordered in terms of CRUD, create-read-update-delete ordering.
|
|
||||||
|
|
||||||
```rust
|
|
||||||
#[async_trait]
|
|
||||||
pub trait AbstractServerMembers: Sync + Send {
|
|
||||||
/// Insert a new server member into the database
|
|
||||||
async fn insert_member(&self, member: &Member) -> Result<()>;
|
|
||||||
|
|
||||||
/// Fetch a server member by their id
|
|
||||||
async fn fetch_member(&self, server_id: &str, user_id: &str) -> Result<Member>;
|
|
||||||
|
|
||||||
/// Update information for a server member
|
|
||||||
async fn update_member(&self, .. ) -> Result<()>;
|
|
||||||
|
|
||||||
/// Delete a server member by their id
|
|
||||||
async fn delete_member(&self, id: &MemberCompositeKey) -> Result<()>;
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
- There should be an empty line break between each method declaration.
|
|
||||||
- All methods must have an appropriate comment.
|
|
||||||
|
|
||||||
- When implementing the trait defined in `ops.rs` with each driver, the method declaration style should be the same for ease of searching: same ordering, same comments, same line breaks.
|
|
||||||
+9
-2
@@ -34,13 +34,13 @@ services:
|
|||||||
- minio
|
- minio
|
||||||
entrypoint: >
|
entrypoint: >
|
||||||
/bin/sh -c "while ! /usr/bin/mc ready minio; do
|
/bin/sh -c "while ! /usr/bin/mc ready minio; do
|
||||||
/usr/bin/mc config host add minio http://minio:9000 minioautumn minioautumn;
|
/usr/bin/mc alias set minio http://minio:9000 minioautumn minioautumn;
|
||||||
echo 'Waiting minio...' && sleep 1;
|
echo 'Waiting minio...' && sleep 1;
|
||||||
done; /usr/bin/mc mb minio/revolt-uploads; exit 0;"
|
done; /usr/bin/mc mb minio/revolt-uploads; exit 0;"
|
||||||
|
|
||||||
# Rabbit
|
# Rabbit
|
||||||
rabbit:
|
rabbit:
|
||||||
image: rabbitmq:3-management
|
image: rabbitmq:4-management
|
||||||
environment:
|
environment:
|
||||||
RABBITMQ_DEFAULT_USER: rabbituser
|
RABBITMQ_DEFAULT_USER: rabbituser
|
||||||
RABBITMQ_DEFAULT_PASS: rabbitpass
|
RABBITMQ_DEFAULT_PASS: rabbitpass
|
||||||
@@ -64,3 +64,10 @@ services:
|
|||||||
MAILDEV_WEB_PORT: 8080
|
MAILDEV_WEB_PORT: 8080
|
||||||
MAILDEV_INCOMING_USER: smtp
|
MAILDEV_INCOMING_USER: smtp
|
||||||
MAILDEV_INCOMING_PASS: smtp
|
MAILDEV_INCOMING_PASS: smtp
|
||||||
|
|
||||||
|
livekit:
|
||||||
|
image: ghcr.io/stoatchat/livekit-server:v1.9.9
|
||||||
|
command: --config /etc/livekit.yml
|
||||||
|
network_mode: "host"
|
||||||
|
volumes:
|
||||||
|
- ./livekit.yml:/etc/livekit.yml
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "revolt-bonfire"
|
name = "revolt-bonfire"
|
||||||
version = "0.8.7"
|
version = "0.8.9"
|
||||||
license = "AGPL-3.0-or-later"
|
license = "AGPL-3.0-or-later"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
@@ -19,6 +19,7 @@ async-channel = "2.3.1"
|
|||||||
|
|
||||||
# parsing
|
# parsing
|
||||||
querystring = "1.1.0"
|
querystring = "1.1.0"
|
||||||
|
regex = "1.11.1"
|
||||||
|
|
||||||
# serde
|
# serde
|
||||||
bincode = "1.3.3"
|
bincode = "1.3.3"
|
||||||
@@ -40,8 +41,8 @@ authifier = { version = "1.0.15" }
|
|||||||
revolt-result = { path = "../core/result" }
|
revolt-result = { path = "../core/result" }
|
||||||
revolt-models = { path = "../core/models" }
|
revolt-models = { path = "../core/models" }
|
||||||
revolt-config = { path = "../core/config" }
|
revolt-config = { path = "../core/config" }
|
||||||
revolt-database = { path = "../core/database" }
|
revolt-database = { path = "../core/database", features = ["voice"] }
|
||||||
revolt-permissions = { version = "0.8.7", path = "../core/permissions" }
|
revolt-permissions = { version = "0.8.9", path = "../core/permissions" }
|
||||||
revolt-presence = { path = "../core/presence", features = ["redis-is-patched"] }
|
revolt-presence = { path = "../core/presence", features = ["redis-is-patched"] }
|
||||||
|
|
||||||
# redis
|
# redis
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
# Build Stage
|
# Build Stage
|
||||||
FROM ghcr.io/revoltchat/base:latest AS builder
|
FROM ghcr.io/stoatchat/base:latest AS builder
|
||||||
FROM debian:12 AS debian
|
FROM debian:12 AS debian
|
||||||
|
|
||||||
# Bundle Stage
|
# Bundle Stage
|
||||||
|
|||||||
@@ -1,9 +1,15 @@
|
|||||||
use async_tungstenite::tungstenite::{handshake, Message};
|
use async_tungstenite::tungstenite::{handshake, Message};
|
||||||
use futures::channel::oneshot::Sender;
|
use futures::channel::oneshot::Sender;
|
||||||
|
use once_cell::sync::Lazy;
|
||||||
|
use regex::Regex;
|
||||||
use revolt_database::events::client::ReadyPayloadFields;
|
use revolt_database::events::client::ReadyPayloadFields;
|
||||||
use revolt_result::{create_error, Result};
|
use revolt_result::{create_error, Result};
|
||||||
use serde::{Deserialize, Serialize};
|
use serde::{Deserialize, Serialize};
|
||||||
|
|
||||||
|
/// matches either a single word ie "users" or a key and value ie "settings[notifications]"
|
||||||
|
static READY_PAYLOAD_FIELD_REGEX: Lazy<Regex> =
|
||||||
|
Lazy::new(|| Regex::new(r#"^(\w+)(?:\[(\S+)\])?$"#).unwrap());
|
||||||
|
|
||||||
/// Enumeration of supported protocol formats
|
/// Enumeration of supported protocol formats
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub enum ProtocolFormat {
|
pub enum ProtocolFormat {
|
||||||
@@ -17,6 +23,7 @@ pub struct ProtocolConfiguration {
|
|||||||
protocol_version: i32,
|
protocol_version: i32,
|
||||||
format: ProtocolFormat,
|
format: ProtocolFormat,
|
||||||
session_token: Option<String>,
|
session_token: Option<String>,
|
||||||
|
ready_payload_fields: ReadyPayloadFields,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl ProtocolConfiguration {
|
impl ProtocolConfiguration {
|
||||||
@@ -25,11 +32,13 @@ impl ProtocolConfiguration {
|
|||||||
protocol_version: i32,
|
protocol_version: i32,
|
||||||
format: ProtocolFormat,
|
format: ProtocolFormat,
|
||||||
session_token: Option<String>,
|
session_token: Option<String>,
|
||||||
|
ready_payload_fields: ReadyPayloadFields,
|
||||||
) -> Self {
|
) -> Self {
|
||||||
Self {
|
Self {
|
||||||
protocol_version,
|
protocol_version,
|
||||||
format,
|
format,
|
||||||
session_token,
|
session_token,
|
||||||
|
ready_payload_fields,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -86,14 +95,8 @@ impl ProtocolConfiguration {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// Get ready payload fields
|
/// Get ready payload fields
|
||||||
pub fn get_ready_payload_fields(&self) -> Vec<ReadyPayloadFields> {
|
pub fn get_ready_payload_fields(&self) -> &ReadyPayloadFields {
|
||||||
vec![
|
&self.ready_payload_fields
|
||||||
ReadyPayloadFields::Users,
|
|
||||||
ReadyPayloadFields::Servers,
|
|
||||||
ReadyPayloadFields::Channels,
|
|
||||||
ReadyPayloadFields::Members,
|
|
||||||
ReadyPayloadFields::Emoji,
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -124,6 +127,23 @@ impl handshake::server::Callback for WebsocketHandshakeCallback {
|
|||||||
let mut protocol_version = 1;
|
let mut protocol_version = 1;
|
||||||
let mut format = ProtocolFormat::Json;
|
let mut format = ProtocolFormat::Json;
|
||||||
let mut session_token = None;
|
let mut session_token = None;
|
||||||
|
let mut ready_payload_fields = if params.iter().any(|(k, _)| *k == "ready") {
|
||||||
|
// If they pass the ready field, set all fields to false
|
||||||
|
|
||||||
|
ReadyPayloadFields {
|
||||||
|
users: false,
|
||||||
|
servers: false,
|
||||||
|
channels: false,
|
||||||
|
members: false,
|
||||||
|
emojis: false,
|
||||||
|
voice_states: false,
|
||||||
|
user_settings: Vec::new(),
|
||||||
|
channel_unreads: false,
|
||||||
|
policy_changes: false,
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
ReadyPayloadFields::default()
|
||||||
|
};
|
||||||
|
|
||||||
// Parse and map parameters from key-value to known variables.
|
// Parse and map parameters from key-value to known variables.
|
||||||
for (key, value) in params {
|
for (key, value) in params {
|
||||||
@@ -139,6 +159,31 @@ impl handshake::server::Callback for WebsocketHandshakeCallback {
|
|||||||
_ => {}
|
_ => {}
|
||||||
},
|
},
|
||||||
"token" => session_token = Some(value.into()),
|
"token" => session_token = Some(value.into()),
|
||||||
|
"ready" => {
|
||||||
|
// Re-enable all the fields the client specifies
|
||||||
|
if let Some(captures) = READY_PAYLOAD_FIELD_REGEX.captures(value) {
|
||||||
|
if let Some(field) = captures.get(0) {
|
||||||
|
match field.as_str() {
|
||||||
|
"users" => ready_payload_fields.users = true,
|
||||||
|
"servers" => ready_payload_fields.servers = true,
|
||||||
|
"channels" => ready_payload_fields.channels = true,
|
||||||
|
"members" => ready_payload_fields.members = true,
|
||||||
|
"emojis" => ready_payload_fields.emojis = true,
|
||||||
|
"voice_states" => ready_payload_fields.voice_states = true,
|
||||||
|
"channel_unreads" => ready_payload_fields.channel_unreads = true,
|
||||||
|
"user_settings" => {
|
||||||
|
if let Some(subkey) = captures.get(1) {
|
||||||
|
ready_payload_fields
|
||||||
|
.user_settings
|
||||||
|
.push(subkey.as_str().to_string());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
"policy_changes" => ready_payload_fields.policy_changes = true,
|
||||||
|
_ => {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
_ => {}
|
_ => {}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -151,6 +196,7 @@ impl handshake::server::Callback for WebsocketHandshakeCallback {
|
|||||||
protocol_version,
|
protocol_version,
|
||||||
format,
|
format,
|
||||||
session_token,
|
session_token,
|
||||||
|
ready_payload_fields,
|
||||||
})
|
})
|
||||||
.is_ok()
|
.is_ok()
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,9 +1,10 @@
|
|||||||
use std::collections::HashSet;
|
use std::collections::{HashMap, HashSet};
|
||||||
|
|
||||||
use futures::future::join_all;
|
use futures::future::join_all;
|
||||||
use revolt_database::{
|
use revolt_database::{
|
||||||
events::client::{EventV1, ReadyPayloadFields},
|
events::client::{EventV1, ReadyPayloadFields},
|
||||||
util::permissions::DatabasePermissionQuery,
|
util::permissions::DatabasePermissionQuery,
|
||||||
|
voice::get_channel_voice_state,
|
||||||
Channel, Database, Member, MemberCompositeKey, Presence, RelationshipStatus,
|
Channel, Database, Member, MemberCompositeKey, Presence, RelationshipStatus,
|
||||||
};
|
};
|
||||||
use revolt_models::v0;
|
use revolt_models::v0;
|
||||||
@@ -17,8 +18,9 @@ use super::state::{Cache, State};
|
|||||||
impl Cache {
|
impl Cache {
|
||||||
/// Check whether the current user can view a channel
|
/// Check whether the current user can view a channel
|
||||||
pub async fn can_view_channel(&self, db: &Database, channel: &Channel) -> bool {
|
pub async fn can_view_channel(&self, db: &Database, channel: &Channel) -> bool {
|
||||||
|
#[allow(deprecated)]
|
||||||
match &channel {
|
match &channel {
|
||||||
Channel::TextChannel { server, .. } | Channel::VoiceChannel { server, .. } => {
|
Channel::TextChannel { server, .. } => {
|
||||||
let member = self.members.get(server);
|
let member = self.members.get(server);
|
||||||
let server = self.servers.get(server);
|
let server = self.servers.get(server);
|
||||||
let mut query =
|
let mut query =
|
||||||
@@ -95,21 +97,23 @@ impl State {
|
|||||||
pub async fn generate_ready_payload(
|
pub async fn generate_ready_payload(
|
||||||
&mut self,
|
&mut self,
|
||||||
db: &Database,
|
db: &Database,
|
||||||
fields: Vec<ReadyPayloadFields>,
|
fields: &ReadyPayloadFields,
|
||||||
) -> Result<EventV1> {
|
) -> Result<EventV1> {
|
||||||
let user = self.clone_user();
|
let user = self.clone_user();
|
||||||
self.cache.is_bot = user.bot.is_some();
|
self.cache.is_bot = user.bot.is_some();
|
||||||
|
|
||||||
// Fetch pending policy changes.
|
// Fetch pending policy changes.
|
||||||
let policy_changes = if user.bot.is_some() {
|
let policy_changes = if user.bot.is_some() || !fields.policy_changes {
|
||||||
vec![]
|
None
|
||||||
} else {
|
} else {
|
||||||
db.fetch_policy_changes()
|
Some(
|
||||||
.await?
|
db.fetch_policy_changes()
|
||||||
.into_iter()
|
.await?
|
||||||
.filter(|policy| policy.created_time > user.last_acknowledged_policy_change)
|
.into_iter()
|
||||||
.map(Into::into)
|
.filter(|policy| policy.created_time > user.last_acknowledged_policy_change)
|
||||||
.collect()
|
.map(Into::into)
|
||||||
|
.collect(),
|
||||||
|
)
|
||||||
};
|
};
|
||||||
|
|
||||||
// Find all relationships to the user.
|
// Find all relationships to the user.
|
||||||
@@ -120,12 +124,7 @@ impl State {
|
|||||||
.unwrap_or_default();
|
.unwrap_or_default();
|
||||||
|
|
||||||
// Fetch all memberships with their corresponding servers.
|
// Fetch all memberships with their corresponding servers.
|
||||||
let members: Vec<Member> = db.fetch_all_memberships(&user.id).await?;
|
let mut members: Vec<Member> = db.fetch_all_memberships(&user.id).await?;
|
||||||
self.cache.members = members
|
|
||||||
.iter()
|
|
||||||
.cloned()
|
|
||||||
.map(|x| (x.id.server.clone(), x))
|
|
||||||
.collect();
|
|
||||||
|
|
||||||
let server_ids: Vec<String> = members.iter().map(|x| x.id.server.clone()).collect();
|
let server_ids: Vec<String> = members.iter().map(|x| x.id.server.clone()).collect();
|
||||||
let servers = db.fetch_servers(&server_ids).await?;
|
let servers = db.fetch_servers(&server_ids).await?;
|
||||||
@@ -154,6 +153,51 @@ impl State {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
let voice_states = if fields.voice_states {
|
||||||
|
let mut voice_state_server_members: HashMap<String, HashSet<String>> = HashMap::new();
|
||||||
|
|
||||||
|
// fetch voice states for all the channels we can see
|
||||||
|
let mut voice_states = Vec::new();
|
||||||
|
|
||||||
|
for channel in channels.iter().filter(|c| {
|
||||||
|
matches!(
|
||||||
|
c,
|
||||||
|
Channel::DirectMessage { .. }
|
||||||
|
| Channel::Group { .. }
|
||||||
|
| Channel::TextChannel { voice: Some(_), .. }
|
||||||
|
)
|
||||||
|
}) {
|
||||||
|
if let Ok(Some(voice_state)) = get_channel_voice_state(channel).await {
|
||||||
|
if let Some(server) = channel.server() {
|
||||||
|
let set = voice_state_server_members.entry(server.to_string()).or_default();
|
||||||
|
|
||||||
|
for participant in &voice_state.participants {
|
||||||
|
user_ids.insert(participant.id.clone());
|
||||||
|
set.insert(participant.id.clone());
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
for participant in &voice_state.participants {
|
||||||
|
user_ids.insert(participant.id.clone());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
voice_states.push(voice_state);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Fetch all the members for for the participants who are in a server
|
||||||
|
for (server, user_ids) in voice_state_server_members {
|
||||||
|
let user_ids = user_ids.into_iter().collect::<Vec<_>>();
|
||||||
|
let voice_members = db.fetch_members(&server, &user_ids).await?;
|
||||||
|
|
||||||
|
members.extend(voice_members);
|
||||||
|
}
|
||||||
|
|
||||||
|
Some(voice_states)
|
||||||
|
} else {
|
||||||
|
None
|
||||||
|
};
|
||||||
|
|
||||||
// Fetch presence data for known users.
|
// Fetch presence data for known users.
|
||||||
let online_ids = filter_online(&user_ids.iter().cloned().collect::<Vec<String>>()).await;
|
let online_ids = filter_online(&user_ids.iter().cloned().collect::<Vec<String>>()).await;
|
||||||
|
|
||||||
@@ -167,8 +211,14 @@ impl State {
|
|||||||
)
|
)
|
||||||
.await?;
|
.await?;
|
||||||
|
|
||||||
|
self.cache.members = members
|
||||||
|
.iter()
|
||||||
|
.cloned()
|
||||||
|
.map(|x| (x.id.server.clone(), x))
|
||||||
|
.collect();
|
||||||
|
|
||||||
// Fetch customisations.
|
// Fetch customisations.
|
||||||
let emojis = if fields.contains(&ReadyPayloadFields::Emoji) {
|
let emojis = if fields.emojis {
|
||||||
Some(
|
Some(
|
||||||
db.fetch_emoji_by_parent_ids(
|
db.fetch_emoji_by_parent_ids(
|
||||||
&servers
|
&servers
|
||||||
@@ -176,25 +226,34 @@ impl State {
|
|||||||
.map(|x| x.id.to_string())
|
.map(|x| x.id.to_string())
|
||||||
.collect::<Vec<String>>(),
|
.collect::<Vec<String>>(),
|
||||||
)
|
)
|
||||||
.await?,
|
.await?
|
||||||
|
.into_iter()
|
||||||
|
.map(|emoji| emoji.into())
|
||||||
|
.collect(),
|
||||||
)
|
)
|
||||||
} else {
|
} else {
|
||||||
None
|
None
|
||||||
};
|
};
|
||||||
|
|
||||||
// Fetch user settings
|
// Fetch user settings
|
||||||
let user_settings = if let Some(ReadyPayloadFields::UserSettings(keys)) = fields
|
let user_settings = if !fields.user_settings.is_empty() {
|
||||||
.iter()
|
Some(
|
||||||
.find(|e| matches!(e, ReadyPayloadFields::UserSettings(_)))
|
db.fetch_user_settings(&user.id, &fields.user_settings)
|
||||||
{
|
.await?,
|
||||||
Some(db.fetch_user_settings(&user.id, keys).await?)
|
)
|
||||||
} else {
|
} else {
|
||||||
None
|
None
|
||||||
};
|
};
|
||||||
|
|
||||||
// Fetch channel unreads
|
// Fetch channel unreads
|
||||||
let channel_unreads = if fields.contains(&ReadyPayloadFields::ChannelUnreads) {
|
let channel_unreads = if fields.channel_unreads {
|
||||||
Some(db.fetch_unreads(&user.id).await?)
|
Some(
|
||||||
|
db.fetch_unreads(&user.id)
|
||||||
|
.await?
|
||||||
|
.into_iter()
|
||||||
|
.map(|unread| unread.into())
|
||||||
|
.collect(),
|
||||||
|
)
|
||||||
} else {
|
} else {
|
||||||
None
|
None
|
||||||
};
|
};
|
||||||
@@ -241,30 +300,27 @@ impl State {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Ok(EventV1::Ready {
|
Ok(EventV1::Ready {
|
||||||
users: if fields.contains(&ReadyPayloadFields::Users) {
|
users: if fields.users { Some(users) } else { None },
|
||||||
Some(users)
|
servers: if fields.servers {
|
||||||
} else {
|
|
||||||
None
|
|
||||||
},
|
|
||||||
servers: if fields.contains(&ReadyPayloadFields::Servers) {
|
|
||||||
Some(servers.into_iter().map(Into::into).collect())
|
Some(servers.into_iter().map(Into::into).collect())
|
||||||
} else {
|
} else {
|
||||||
None
|
None
|
||||||
},
|
},
|
||||||
channels: if fields.contains(&ReadyPayloadFields::Channels) {
|
channels: if fields.channels {
|
||||||
Some(channels.into_iter().map(Into::into).collect())
|
Some(channels.into_iter().map(Into::into).collect())
|
||||||
} else {
|
} else {
|
||||||
None
|
None
|
||||||
},
|
},
|
||||||
members: if fields.contains(&ReadyPayloadFields::Members) {
|
members: if fields.members {
|
||||||
Some(members.into_iter().map(Into::into).collect())
|
Some(members.into_iter().map(Into::into).collect())
|
||||||
} else {
|
} else {
|
||||||
None
|
None
|
||||||
},
|
},
|
||||||
emojis: emojis.map(|vec| vec.into_iter().map(Into::into).collect()),
|
voice_states,
|
||||||
|
|
||||||
|
emojis,
|
||||||
user_settings,
|
user_settings,
|
||||||
channel_unreads: channel_unreads.map(|vec| vec.into_iter().map(Into::into).collect()),
|
channel_unreads,
|
||||||
|
|
||||||
policy_changes,
|
policy_changes,
|
||||||
})
|
})
|
||||||
@@ -279,19 +335,14 @@ impl State {
|
|||||||
|
|
||||||
let id = &id.to_string();
|
let id = &id.to_string();
|
||||||
for (channel_id, channel) in &self.cache.channels {
|
for (channel_id, channel) in &self.cache.channels {
|
||||||
match channel {
|
if channel.server() == Some(id) {
|
||||||
Channel::TextChannel { server, .. } | Channel::VoiceChannel { server, .. } => {
|
channel_ids.insert(channel_id.clone());
|
||||||
if server == id {
|
|
||||||
channel_ids.insert(channel_id.clone());
|
|
||||||
|
|
||||||
if self.cache.can_view_channel(db, channel).await {
|
if self.cache.can_view_channel(db, channel).await {
|
||||||
added_channels.push(channel_id.clone());
|
added_channels.push(channel_id.clone());
|
||||||
} else {
|
} else {
|
||||||
removed_channels.push(channel_id.clone());
|
removed_channels.push(channel_id.clone());
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
_ => {}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -459,6 +510,7 @@ impl State {
|
|||||||
server,
|
server,
|
||||||
channels,
|
channels,
|
||||||
emojis: _,
|
emojis: _,
|
||||||
|
voice_states: _,
|
||||||
} => {
|
} => {
|
||||||
self.insert_subscription(id.clone()).await;
|
self.insert_subscription(id.clone()).await;
|
||||||
|
|
||||||
|
|||||||
@@ -17,6 +17,7 @@ use redis_kiss::{PayloadType, REDIS_PAYLOAD_TYPE, REDIS_URI};
|
|||||||
use revolt_config::report_internal_error;
|
use revolt_config::report_internal_error;
|
||||||
use revolt_database::{
|
use revolt_database::{
|
||||||
events::{client::EventV1, server::ClientMessage},
|
events::{client::EventV1, server::ClientMessage},
|
||||||
|
iso8601_timestamp::Timestamp,
|
||||||
Database, User, UserHint,
|
Database, User, UserHint,
|
||||||
};
|
};
|
||||||
use revolt_presence::{create_session, delete_session};
|
use revolt_presence::{create_session, delete_session};
|
||||||
@@ -100,6 +101,10 @@ pub async fn client(db: &'static Database, stream: TcpStream, addr: SocketAddr)
|
|||||||
|
|
||||||
info!("User {addr:?} authenticated as @{}", user.username);
|
info!("User {addr:?} authenticated as @{}", user.username);
|
||||||
|
|
||||||
|
db.update_session_last_seen(&session_id, Timestamp::now_utc())
|
||||||
|
.await
|
||||||
|
.ok();
|
||||||
|
|
||||||
// Create local state.
|
// Create local state.
|
||||||
let mut state = State::from(user, session_id);
|
let mut state = State::from(user, session_id);
|
||||||
let user_id = state.cache.user_id.clone();
|
let user_id = state.cache.user_id.clone();
|
||||||
|
|||||||
@@ -0,0 +1,22 @@
|
|||||||
|
[package]
|
||||||
|
name = "revolt-coalesced"
|
||||||
|
version = "0.8.9"
|
||||||
|
edition = "2021"
|
||||||
|
license = "MIT"
|
||||||
|
authors = ["Paul Makles <me@insrt.uk>", "Zomatree <me@zomatree.live>"]
|
||||||
|
description = "Revolt Backend: Coalescion service"
|
||||||
|
|
||||||
|
[features]
|
||||||
|
tokio = ["dep:tokio"]
|
||||||
|
queue = ["dep:indexmap"]
|
||||||
|
cache = ["dep:lru"]
|
||||||
|
|
||||||
|
default = ["tokio"]
|
||||||
|
|
||||||
|
[dependencies]
|
||||||
|
tokio = { version = "1.47.0", features = ["sync"], optional = true }
|
||||||
|
indexmap = { version = "*", optional = true }
|
||||||
|
lru = { version = "*", optional = true }
|
||||||
|
|
||||||
|
[dev-dependencies]
|
||||||
|
tokio = { version = "1.47.0", features = ["rt", "rt-multi-thread", "macros", "time"] }
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
MIT License
|
||||||
|
|
||||||
|
Copyright (c) 2024 Pawel Makles
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||||
@@ -0,0 +1,24 @@
|
|||||||
|
#[derive(Clone, PartialEq, Eq, Debug)]
|
||||||
|
/// Config values for [`CoalescionService`].
|
||||||
|
pub struct CoalescionServiceConfig {
|
||||||
|
/// How many tasks are running at once
|
||||||
|
pub max_concurrent: Option<usize>,
|
||||||
|
/// Whether to queue tasks once `max_concurrent` is reached
|
||||||
|
#[cfg(feature = "queue")]
|
||||||
|
pub queue_requests: bool,
|
||||||
|
/// Max amount of tasks in the buffer queue
|
||||||
|
#[cfg(feature = "queue")]
|
||||||
|
pub max_queue: Option<usize>,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Default for CoalescionServiceConfig {
|
||||||
|
fn default() -> Self {
|
||||||
|
Self {
|
||||||
|
max_concurrent: Some(100),
|
||||||
|
#[cfg(feature = "queue")]
|
||||||
|
queue_requests: true,
|
||||||
|
#[cfg(feature = "queue")]
|
||||||
|
max_queue: Some(100)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,27 @@
|
|||||||
|
use std::fmt;
|
||||||
|
|
||||||
|
#[derive(Clone, Copy, PartialEq, Eq, Debug, Hash)]
|
||||||
|
/// Coalescion service error.
|
||||||
|
pub enum Error {
|
||||||
|
/// Failed to receive the actions return from the channel for unknown reason
|
||||||
|
RecvError,
|
||||||
|
/// Reached the `max_concurrent` amount of actions running at once and could not queue the action
|
||||||
|
MaxConcurrent,
|
||||||
|
/// Reached the `max_queue` amount of actions in the queue
|
||||||
|
MaxQueue,
|
||||||
|
/// Failed to downcast the type to the current type being returned, this will be most likely an ID collision
|
||||||
|
DowncastError,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl fmt::Display for Error {
|
||||||
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
||||||
|
match self {
|
||||||
|
Error::RecvError => write!(f, "Unable to receive data from the channel"),
|
||||||
|
Error::MaxConcurrent => write!(f, "Max number of tasks running at once"),
|
||||||
|
Error::MaxQueue => write!(f, "Max number of tasks in queue"),
|
||||||
|
Error::DowncastError => write!(f, "Failed to downcast type, possible key collision with different types")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl std::error::Error for Error {}
|
||||||
@@ -0,0 +1,39 @@
|
|||||||
|
//! # Coalesced
|
||||||
|
//!
|
||||||
|
//! Coalescion service to group, caching and queue duplicate actions.
|
||||||
|
//! useful for deduplicating web requests, database lookups and other similar resource
|
||||||
|
//! intensive or rate-limited actions.
|
||||||
|
//!
|
||||||
|
//! ## Features
|
||||||
|
//! - `tokio`: Uses tokio for the async backend, this is currently the only backend.
|
||||||
|
//! - `queue`: Whether to support queueing requests to only allow X amount of actions running at once.
|
||||||
|
//! - `cache`: Whether to cache the actions results for future actions with the same id, uses an LRU cache internally.
|
||||||
|
//!
|
||||||
|
//! [`CoalescionService`] uses both [`Arc`] and [`RwLock`] internally and can be cheaply cloned to
|
||||||
|
//! use in your codebase.
|
||||||
|
//!
|
||||||
|
//! It is common practice to wrap the service and in your own which delegates the executions to ensure all ids are tracked in one location across your codebase.
|
||||||
|
//!
|
||||||
|
//! All values are stored using [`Any`] and must be [`'static`] + [`Send`] + [`Sync`], if there is an id mismatch
|
||||||
|
//! and a type is wrong the library will return an error, values returned from the service are also
|
||||||
|
//! wrapped in an [`Arc`] as they are shared to each duplicate action.
|
||||||
|
//!
|
||||||
|
//! ## Example:
|
||||||
|
//! ```rs
|
||||||
|
//! use revolt_coalesced::CoalescionService;
|
||||||
|
//!
|
||||||
|
//! let service = CoalescionService::new();
|
||||||
|
//!
|
||||||
|
//! let user_id = "my_user_id";
|
||||||
|
//! let user = service.execute(user_id, || async move {
|
||||||
|
//! database.fetch_user(user_id).await.unwrap()
|
||||||
|
//! }).await;
|
||||||
|
//! ```
|
||||||
|
|
||||||
|
mod config;
|
||||||
|
mod error;
|
||||||
|
mod service;
|
||||||
|
|
||||||
|
pub use config::CoalescionServiceConfig;
|
||||||
|
pub use error::Error;
|
||||||
|
pub use service::CoalescionService;
|
||||||
@@ -0,0 +1,208 @@
|
|||||||
|
use std::{any::Any, collections::HashMap, fmt::Debug, future::Future, hash::Hash, sync::Arc};
|
||||||
|
|
||||||
|
use tokio::sync::{
|
||||||
|
watch::{channel as watch_channel, Receiver},
|
||||||
|
RwLock,
|
||||||
|
};
|
||||||
|
|
||||||
|
#[cfg(feature = "cache")]
|
||||||
|
use lru::LruCache;
|
||||||
|
|
||||||
|
#[cfg(feature = "queue")]
|
||||||
|
use indexmap::IndexMap;
|
||||||
|
|
||||||
|
use crate::{CoalescionServiceConfig, Error};
|
||||||
|
|
||||||
|
#[derive(Debug, Clone)]
|
||||||
|
#[allow(clippy::type_complexity)]
|
||||||
|
/// Coalescion service
|
||||||
|
///
|
||||||
|
/// See module description for example usage.
|
||||||
|
pub struct CoalescionService<Id: Hash + Clone + Eq> {
|
||||||
|
config: Arc<CoalescionServiceConfig>,
|
||||||
|
watchers: Arc<RwLock<HashMap<Id, Receiver<Option<Result<Arc<dyn Any + Send + Sync>, Error>>>>>>,
|
||||||
|
#[cfg(feature = "queue")]
|
||||||
|
queue: Arc<RwLock<IndexMap<Id, Receiver<Option<Result<Arc<dyn Any + Send + Sync>, Error>>>>>>,
|
||||||
|
#[cfg(feature = "cache")]
|
||||||
|
cache: Option<Arc<tokio::sync::Mutex<LruCache<Id, Arc<dyn Any + Send + Sync>>>>>,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl<Id: Hash + Clone + Eq> CoalescionService<Id> {
|
||||||
|
pub fn new() -> Self {
|
||||||
|
Default::default()
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn from_config(config: CoalescionServiceConfig) -> Self {
|
||||||
|
Self {
|
||||||
|
config: Arc::new(config),
|
||||||
|
watchers: Arc::new(RwLock::new(HashMap::new())),
|
||||||
|
#[cfg(feature = "queue")]
|
||||||
|
queue: Arc::new(RwLock::new(IndexMap::new())),
|
||||||
|
#[cfg(feature = "cache")]
|
||||||
|
cache: None,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#[cfg(feature = "cache")]
|
||||||
|
pub fn from_cache(
|
||||||
|
config: CoalescionServiceConfig,
|
||||||
|
cache: LruCache<Id, Arc<dyn Any + Send + Sync>>,
|
||||||
|
) -> Self {
|
||||||
|
Self {
|
||||||
|
cache: Some(Arc::new(Mutex::new(cache))),
|
||||||
|
..Self::from_config(config)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async fn wait_for<Value: Any + Send + Sync>(
|
||||||
|
&self,
|
||||||
|
mut receiver: Receiver<Option<Result<Arc<dyn Any + Send + Sync>, Error>>>,
|
||||||
|
) -> Result<Arc<Value>, Error> {
|
||||||
|
receiver
|
||||||
|
.wait_for(|v| v.is_some())
|
||||||
|
.await
|
||||||
|
.map_err(|_| Error::RecvError)
|
||||||
|
.and_then(|r| r.clone().unwrap())
|
||||||
|
.and_then(|arc| Arc::downcast(arc).map_err(|_| Error::DowncastError))
|
||||||
|
}
|
||||||
|
|
||||||
|
async fn insert_and_execute<
|
||||||
|
Value: Send + Sync + 'static,
|
||||||
|
F: FnOnce() -> Fut,
|
||||||
|
Fut: Future<Output = Value>,
|
||||||
|
>(
|
||||||
|
&self,
|
||||||
|
id: Id,
|
||||||
|
func: F,
|
||||||
|
) -> Result<Arc<Value>, Error> {
|
||||||
|
let (send, recv) = watch_channel(None);
|
||||||
|
|
||||||
|
self.watchers.write().await.insert(id.clone(), recv);
|
||||||
|
|
||||||
|
let value = Ok(Arc::new(func().await));
|
||||||
|
|
||||||
|
send.send_modify(|opt| {
|
||||||
|
opt.replace(value.clone().map(|v| v as Arc<dyn Any + Send + Sync>));
|
||||||
|
});
|
||||||
|
|
||||||
|
#[cfg(feature = "cache")]
|
||||||
|
if let Some(cache) = self.cache.as_ref() {
|
||||||
|
if let Ok(value) = &value {
|
||||||
|
cache.lock().await.push(id.clone(), value.clone());
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
self.watchers.write().await.remove(&id);
|
||||||
|
|
||||||
|
value
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Coalesces an function, the actual function may not run if one with the same id is already running,
|
||||||
|
/// queued to be ran, or cached, the id should be globally unique for this specific action.
|
||||||
|
pub async fn execute<
|
||||||
|
Value: Send + Sync + 'static,
|
||||||
|
F: FnOnce() -> Fut,
|
||||||
|
Fut: Future<Output = Value>,
|
||||||
|
>(
|
||||||
|
&self,
|
||||||
|
id: Id,
|
||||||
|
func: F,
|
||||||
|
) -> Result<Arc<Value>, Error> {
|
||||||
|
#[cfg(feature = "cache")]
|
||||||
|
if let Some(cache) = self.cache.as_ref() {
|
||||||
|
if let Some(value) = cache.lock().await.get(&id) {
|
||||||
|
return Arc::downcast::<Value>(value.clone()).map_err(|_| Error::DowncastError);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
let (receiver, length) = {
|
||||||
|
let watchers = self.watchers.read().await;
|
||||||
|
let length = watchers.len();
|
||||||
|
|
||||||
|
(watchers.get(&id).cloned(), length)
|
||||||
|
};
|
||||||
|
|
||||||
|
if let Some(receiver) = receiver {
|
||||||
|
self.wait_for(receiver).await
|
||||||
|
} else {
|
||||||
|
match self.config.max_concurrent {
|
||||||
|
Some(max_concurrent) if length >= max_concurrent => {
|
||||||
|
#[cfg(feature = "queue")]
|
||||||
|
if self.config.queue_requests {
|
||||||
|
let (receiver, length) = {
|
||||||
|
let queue = self.queue.read().await;
|
||||||
|
|
||||||
|
(queue.get(&id).cloned(), queue.len())
|
||||||
|
};
|
||||||
|
|
||||||
|
if let Some(receiver) = receiver {
|
||||||
|
return self.wait_for(receiver).await;
|
||||||
|
} else {
|
||||||
|
if self
|
||||||
|
.config
|
||||||
|
.max_queue
|
||||||
|
.is_some_and(|max_queue| max_queue >= length)
|
||||||
|
{
|
||||||
|
return Err(Error::MaxQueue);
|
||||||
|
};
|
||||||
|
|
||||||
|
let (send, recv) = watch_channel(None);
|
||||||
|
|
||||||
|
self.queue.write().await.insert(id.clone(), recv);
|
||||||
|
|
||||||
|
loop {
|
||||||
|
let length = self.watchers.read().await.len();
|
||||||
|
|
||||||
|
if length < max_concurrent {
|
||||||
|
let first_key = {
|
||||||
|
let queue = self.queue.read().await;
|
||||||
|
queue.first().map(|v| v.0).cloned()
|
||||||
|
};
|
||||||
|
|
||||||
|
if first_key == Some(id.clone()) {
|
||||||
|
self.queue.write().await.shift_remove(&id);
|
||||||
|
|
||||||
|
let response = self.insert_and_execute(id, func).await;
|
||||||
|
|
||||||
|
send.send_modify(|opt| {
|
||||||
|
opt.replace(
|
||||||
|
response
|
||||||
|
.clone()
|
||||||
|
.map(|v| v as Arc<dyn Any + Send + Sync>),
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|
||||||
|
return response;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
Err(Error::MaxConcurrent)
|
||||||
|
}
|
||||||
|
|
||||||
|
#[cfg(not(feature = "queue"))]
|
||||||
|
Err(Error::MaxConcurrent)
|
||||||
|
}
|
||||||
|
_ => self.insert_and_execute(id, func).await,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Fetches the amount of currently running tasks
|
||||||
|
pub async fn current_task_count(&self) -> usize {
|
||||||
|
self.watchers.read().await.len()
|
||||||
|
}
|
||||||
|
|
||||||
|
#[cfg(feature = "queue")]
|
||||||
|
/// Fetches the current length of the queue
|
||||||
|
pub async fn current_queue_len(&self) -> usize {
|
||||||
|
self.queue.read().await.len()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl<Id: Hash + Clone + Eq> Default for CoalescionService<Id> {
|
||||||
|
fn default() -> Self {
|
||||||
|
Self::from_config(CoalescionServiceConfig::default())
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "revolt-config"
|
name = "revolt-config"
|
||||||
version = "0.8.7"
|
version = "0.8.9"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
authors = ["Paul Makles <me@insrt.uk>"]
|
authors = ["Paul Makles <me@insrt.uk>"]
|
||||||
@@ -11,8 +11,9 @@ description = "Revolt Backend: Configuration"
|
|||||||
[features]
|
[features]
|
||||||
anyhow = ["dep:sentry-anyhow"]
|
anyhow = ["dep:sentry-anyhow"]
|
||||||
report-macros = ["revolt-result"]
|
report-macros = ["revolt-result"]
|
||||||
|
sentry = ["dep:sentry"]
|
||||||
test = ["async-std"]
|
test = ["async-std"]
|
||||||
default = ["test", "anyhow"]
|
default = ["test", "sentry"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# Utility
|
# Utility
|
||||||
@@ -32,8 +33,8 @@ log = "0.4.14"
|
|||||||
pretty_env_logger = "0.4.0"
|
pretty_env_logger = "0.4.0"
|
||||||
|
|
||||||
# Sentry
|
# Sentry
|
||||||
sentry = "0.31.5"
|
sentry = { version = "0.31.5", optional = true }
|
||||||
sentry-anyhow = { version = "0.38.1", optional = true }
|
sentry-anyhow = { version = "0.38.1", optional = true }
|
||||||
|
|
||||||
# Core
|
# Core
|
||||||
revolt-result = { version = "0.8.7", path = "../result", optional = true }
|
revolt-result = { version = "0.8.9", path = "../result", optional = true }
|
||||||
|
|||||||
@@ -22,6 +22,8 @@ january = "http://local.revolt.chat/january"
|
|||||||
voso_legacy = ""
|
voso_legacy = ""
|
||||||
voso_legacy_ws = ""
|
voso_legacy_ws = ""
|
||||||
|
|
||||||
|
[hosts.livekit]
|
||||||
|
|
||||||
[rabbit]
|
[rabbit]
|
||||||
host = "rabbit"
|
host = "rabbit"
|
||||||
port = 5672
|
port = 5672
|
||||||
@@ -56,6 +58,8 @@ voso_legacy_token = ""
|
|||||||
trust_cloudflare = false
|
trust_cloudflare = false
|
||||||
# easypwned endpoint
|
# easypwned endpoint
|
||||||
easypwned = ""
|
easypwned = ""
|
||||||
|
# Tenor API Key
|
||||||
|
tenor_key = ""
|
||||||
|
|
||||||
[api.security.captcha]
|
[api.security.captcha]
|
||||||
# hCaptcha configuration
|
# hCaptcha configuration
|
||||||
@@ -66,8 +70,13 @@ hcaptcha_sitekey = ""
|
|||||||
# Maximum concurrent connections (to proxy server)
|
# Maximum concurrent connections (to proxy server)
|
||||||
max_concurrent_connections = 50
|
max_concurrent_connections = 50
|
||||||
|
|
||||||
[api.users]
|
[api.livekit]
|
||||||
|
# How long to ring devices for when calling in dms/groups, in seconds
|
||||||
|
call_ring_duration = 30
|
||||||
|
|
||||||
|
[api.livekit.nodes]
|
||||||
|
|
||||||
|
[api.users]
|
||||||
|
|
||||||
[pushd]
|
[pushd]
|
||||||
# this changes the names of the queues to not overlap
|
# this changes the names of the queues to not overlap
|
||||||
@@ -85,6 +94,7 @@ message_queue = "notifications.origin.message"
|
|||||||
mass_mention_queue = "notifications.origin.mass_mention" # handles messages that contain role or everyone mentions
|
mass_mention_queue = "notifications.origin.mass_mention" # handles messages that contain role or everyone mentions
|
||||||
fr_accepted_queue = "notifications.ingest.fr_accepted" # friend request accepted
|
fr_accepted_queue = "notifications.ingest.fr_accepted" # friend request accepted
|
||||||
fr_received_queue = "notifications.ingest.fr_received" # friend request received
|
fr_received_queue = "notifications.ingest.fr_received" # friend request received
|
||||||
|
dm_call_queue = "notifications.ingest.dm_call" # direct message voice call
|
||||||
generic_queue = "notifications.ingest.generic" # generic messages (title + body)
|
generic_queue = "notifications.ingest.generic" # generic messages (title + body)
|
||||||
ack_queue = "notifications.process.ack" # updates badges for apple devices
|
ack_queue = "notifications.process.ack" # updates badges for apple devices
|
||||||
|
|
||||||
@@ -228,6 +238,18 @@ message_attachments = 5
|
|||||||
# Maximum number of servers the user can create/join
|
# Maximum number of servers the user can create/join
|
||||||
servers = 50
|
servers = 50
|
||||||
|
|
||||||
|
# Maximum audio frequency (Hz) in voice calls
|
||||||
|
voice_quality = 16000
|
||||||
|
|
||||||
|
# Whether the user can use video streams in voice calls
|
||||||
|
video = true
|
||||||
|
|
||||||
|
# Mamimum resolution (width, height) of video streams in voice calls
|
||||||
|
video_resolution = [1080, 720]
|
||||||
|
|
||||||
|
# Minimum and maximum aspect ratio of video streams in voice calls
|
||||||
|
video_aspect_ratio = [0.3, 2.5]
|
||||||
|
|
||||||
[features.limits.new_user.file_upload_size_limit]
|
[features.limits.new_user.file_upload_size_limit]
|
||||||
# Maximum file size limits (in bytes)
|
# Maximum file size limits (in bytes)
|
||||||
attachments = 20_000_000
|
attachments = 20_000_000
|
||||||
@@ -255,6 +277,18 @@ message_attachments = 5
|
|||||||
# Maximum number of servers the user can create/join
|
# Maximum number of servers the user can create/join
|
||||||
servers = 100
|
servers = 100
|
||||||
|
|
||||||
|
# Maximum audio frequency (Hz) in voice calls
|
||||||
|
voice_quality = 16000
|
||||||
|
|
||||||
|
# Whether the user can use video streams in voice calls
|
||||||
|
video = true
|
||||||
|
|
||||||
|
# Mamimum resolution (width, height) of video streams in voice calls
|
||||||
|
video_resolution = [1080, 720]
|
||||||
|
|
||||||
|
# Minimum and maximum aspect ratio of video streams in voice calls
|
||||||
|
video_aspect_ratio = [0.3, 2.5]
|
||||||
|
|
||||||
[features.limits.default.file_upload_size_limit]
|
[features.limits.default.file_upload_size_limit]
|
||||||
# Maximum file size limits (in bytes)
|
# Maximum file size limits (in bytes)
|
||||||
attachments = 20_000_000
|
attachments = 20_000_000
|
||||||
@@ -273,7 +307,9 @@ process_message_delay_limit = 5
|
|||||||
# Configuration for Sentry error reporting
|
# Configuration for Sentry error reporting
|
||||||
api = ""
|
api = ""
|
||||||
events = ""
|
events = ""
|
||||||
|
voice_ingress = ""
|
||||||
files = ""
|
files = ""
|
||||||
proxy = ""
|
proxy = ""
|
||||||
pushd = ""
|
pushd = ""
|
||||||
crond = ""
|
crond = ""
|
||||||
|
gifbox = ""
|
||||||
@@ -6,10 +6,12 @@ use futures_locks::RwLock;
|
|||||||
use once_cell::sync::Lazy;
|
use once_cell::sync::Lazy;
|
||||||
use serde::Deserialize;
|
use serde::Deserialize;
|
||||||
|
|
||||||
|
#[cfg(feature = "sentry")]
|
||||||
pub use sentry::{capture_error, capture_message, Level};
|
pub use sentry::{capture_error, capture_message, Level};
|
||||||
|
#[cfg(feature = "anyhow")]
|
||||||
pub use sentry_anyhow::capture_anyhow;
|
pub use sentry_anyhow::capture_anyhow;
|
||||||
|
|
||||||
#[cfg(feature = "report-macros")]
|
#[cfg(all(feature = "report-macros", feature = "sentry"))]
|
||||||
#[macro_export]
|
#[macro_export]
|
||||||
macro_rules! report_error {
|
macro_rules! report_error {
|
||||||
( $expr: expr, $error: ident $( $tt:tt )? ) => {
|
( $expr: expr, $error: ident $( $tt:tt )? ) => {
|
||||||
@@ -24,7 +26,7 @@ macro_rules! report_error {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(feature = "report-macros")]
|
#[cfg(all(feature = "report-macros", feature = "sentry"))]
|
||||||
#[macro_export]
|
#[macro_export]
|
||||||
macro_rules! capture_internal_error {
|
macro_rules! capture_internal_error {
|
||||||
( $expr: expr ) => {
|
( $expr: expr ) => {
|
||||||
@@ -35,7 +37,7 @@ macro_rules! capture_internal_error {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(feature = "report-macros")]
|
#[cfg(all(feature = "report-macros", feature = "sentry"))]
|
||||||
#[macro_export]
|
#[macro_export]
|
||||||
macro_rules! report_internal_error {
|
macro_rules! report_internal_error {
|
||||||
( $expr: expr ) => {
|
( $expr: expr ) => {
|
||||||
@@ -60,6 +62,9 @@ static CONFIG_SEARCH_PATHS: [&str; 3] = [
|
|||||||
"/Revolt.toml",
|
"/Revolt.toml",
|
||||||
];
|
];
|
||||||
|
|
||||||
|
/// Path to search for test overrides
|
||||||
|
static TEST_OVERRIDE_PATH: &str = "Revolt.test-overrides.toml";
|
||||||
|
|
||||||
/// Configuration builder
|
/// Configuration builder
|
||||||
static CONFIG_BUILDER: Lazy<RwLock<Config>> = Lazy::new(|| {
|
static CONFIG_BUILDER: Lazy<RwLock<Config>> = Lazy::new(|| {
|
||||||
RwLock::new({
|
RwLock::new({
|
||||||
@@ -73,6 +78,20 @@ static CONFIG_BUILDER: Lazy<RwLock<Config>> = Lazy::new(|| {
|
|||||||
include_str!("../Revolt.test.toml"),
|
include_str!("../Revolt.test.toml"),
|
||||||
FileFormat::Toml,
|
FileFormat::Toml,
|
||||||
));
|
));
|
||||||
|
|
||||||
|
// recursively search upwards for an overrides file (if there is one)
|
||||||
|
if let Ok(cwd) = std::env::current_dir() {
|
||||||
|
let mut path = Some(cwd.as_path());
|
||||||
|
while let Some(current_path) = path {
|
||||||
|
let target_path = current_path.join(TEST_OVERRIDE_PATH);
|
||||||
|
if target_path.exists() {
|
||||||
|
builder = builder
|
||||||
|
.add_source(File::new(target_path.to_str().unwrap(), FileFormat::Toml));
|
||||||
|
}
|
||||||
|
|
||||||
|
path = current_path.parent();
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
for path in CONFIG_SEARCH_PATHS {
|
for path in CONFIG_SEARCH_PATHS {
|
||||||
@@ -106,8 +125,7 @@ pub struct Hosts {
|
|||||||
pub events: String,
|
pub events: String,
|
||||||
pub autumn: String,
|
pub autumn: String,
|
||||||
pub january: String,
|
pub january: String,
|
||||||
pub voso_legacy: String,
|
pub livekit: HashMap<String, String>,
|
||||||
pub voso_legacy_ws: String,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Deserialize, Debug, Clone)]
|
#[derive(Deserialize, Debug, Clone)]
|
||||||
@@ -171,6 +189,7 @@ pub struct ApiSecurity {
|
|||||||
pub captcha: ApiSecurityCaptcha,
|
pub captcha: ApiSecurityCaptcha,
|
||||||
pub trust_cloudflare: bool,
|
pub trust_cloudflare: bool,
|
||||||
pub easypwned: String,
|
pub easypwned: String,
|
||||||
|
pub tenor_key: String,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Deserialize, Debug, Clone)]
|
#[derive(Deserialize, Debug, Clone)]
|
||||||
@@ -178,6 +197,25 @@ pub struct ApiWorkers {
|
|||||||
pub max_concurrent_connections: usize,
|
pub max_concurrent_connections: usize,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[derive(Deserialize, Debug, Clone)]
|
||||||
|
pub struct ApiLiveKit {
|
||||||
|
pub call_ring_duration: usize,
|
||||||
|
pub nodes: HashMap<String, LiveKitNode>,
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Deserialize, Debug, Clone)]
|
||||||
|
pub struct LiveKitNode {
|
||||||
|
pub url: String,
|
||||||
|
pub lat: f64,
|
||||||
|
pub lon: f64,
|
||||||
|
pub key: String,
|
||||||
|
pub secret: String,
|
||||||
|
|
||||||
|
// whether to hide the node in the nodes list
|
||||||
|
#[serde(default)]
|
||||||
|
pub private: bool,
|
||||||
|
}
|
||||||
|
|
||||||
#[derive(Deserialize, Debug, Clone)]
|
#[derive(Deserialize, Debug, Clone)]
|
||||||
pub struct ApiUsers {
|
pub struct ApiUsers {
|
||||||
pub early_adopter_cutoff: Option<u64>,
|
pub early_adopter_cutoff: Option<u64>,
|
||||||
@@ -189,6 +227,7 @@ pub struct Api {
|
|||||||
pub smtp: ApiSmtp,
|
pub smtp: ApiSmtp,
|
||||||
pub security: ApiSecurity,
|
pub security: ApiSecurity,
|
||||||
pub workers: ApiWorkers,
|
pub workers: ApiWorkers,
|
||||||
|
pub livekit: ApiLiveKit,
|
||||||
pub users: ApiUsers,
|
pub users: ApiUsers,
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -201,6 +240,7 @@ pub struct Pushd {
|
|||||||
// Queues
|
// Queues
|
||||||
pub message_queue: String,
|
pub message_queue: String,
|
||||||
pub mass_mention_queue: String,
|
pub mass_mention_queue: String,
|
||||||
|
pub dm_call_queue: String,
|
||||||
pub fr_accepted_queue: String,
|
pub fr_accepted_queue: String,
|
||||||
pub fr_received_queue: String,
|
pub fr_received_queue: String,
|
||||||
pub generic_queue: String,
|
pub generic_queue: String,
|
||||||
@@ -231,6 +271,10 @@ impl Pushd {
|
|||||||
self.get_routing_key(self.mass_mention_queue.clone())
|
self.get_routing_key(self.mass_mention_queue.clone())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn get_dm_call_routing_key(&self) -> String {
|
||||||
|
self.get_routing_key(self.dm_call_queue.clone())
|
||||||
|
}
|
||||||
|
|
||||||
pub fn get_fr_accepted_routing_key(&self) -> String {
|
pub fn get_fr_accepted_routing_key(&self) -> String {
|
||||||
self.get_routing_key(self.fr_accepted_queue.clone())
|
self.get_routing_key(self.fr_accepted_queue.clone())
|
||||||
}
|
}
|
||||||
@@ -298,6 +342,10 @@ pub struct FeaturesLimits {
|
|||||||
pub message_length: usize,
|
pub message_length: usize,
|
||||||
pub message_attachments: usize,
|
pub message_attachments: usize,
|
||||||
pub servers: usize,
|
pub servers: usize,
|
||||||
|
pub voice_quality: u32,
|
||||||
|
pub video: bool,
|
||||||
|
pub video_resolution: [u32; 2],
|
||||||
|
pub video_aspect_ratio: [f32; 2],
|
||||||
|
|
||||||
pub file_upload_size_limit: HashMap<String, usize>,
|
pub file_upload_size_limit: HashMap<String, usize>,
|
||||||
}
|
}
|
||||||
@@ -342,10 +390,12 @@ pub struct Features {
|
|||||||
pub struct Sentry {
|
pub struct Sentry {
|
||||||
pub api: String,
|
pub api: String,
|
||||||
pub events: String,
|
pub events: String,
|
||||||
|
pub voice_ingress: String,
|
||||||
pub files: String,
|
pub files: String,
|
||||||
pub proxy: String,
|
pub proxy: String,
|
||||||
pub pushd: String,
|
pub pushd: String,
|
||||||
pub crond: String,
|
pub crond: String,
|
||||||
|
pub gifbox: String,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Deserialize, Debug, Clone)]
|
#[derive(Deserialize, Debug, Clone)]
|
||||||
@@ -388,6 +438,11 @@ pub async fn read() -> Config {
|
|||||||
pub async fn config() -> Settings {
|
pub async fn config() -> Settings {
|
||||||
let mut config = read().await.try_deserialize::<Settings>().unwrap();
|
let mut config = read().await.try_deserialize::<Settings>().unwrap();
|
||||||
|
|
||||||
|
// inject REDIS_URI for redis-kiss library
|
||||||
|
if std::env::var("REDIS_URL").is_err() {
|
||||||
|
std::env::set_var("REDIS_URI", config.database.redis.clone());
|
||||||
|
}
|
||||||
|
|
||||||
// auto-detect production nodes
|
// auto-detect production nodes
|
||||||
if config.hosts.api.contains("https") && config.hosts.api.contains("revolt.chat") {
|
if config.hosts.api.contains("https") && config.hosts.api.contains("revolt.chat") {
|
||||||
config.production = true;
|
config.production = true;
|
||||||
@@ -397,6 +452,7 @@ pub async fn config() -> Settings {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// Configure logging and common Rust variables
|
/// Configure logging and common Rust variables
|
||||||
|
#[cfg(feature = "sentry")]
|
||||||
pub async fn setup_logging(release: &'static str, dsn: String) -> Option<sentry::ClientInitGuard> {
|
pub async fn setup_logging(release: &'static str, dsn: String) -> Option<sentry::ClientInitGuard> {
|
||||||
if std::env::var("RUST_LOG").is_err() {
|
if std::env::var("RUST_LOG").is_err() {
|
||||||
std::env::set_var("RUST_LOG", "info");
|
std::env::set_var("RUST_LOG", "info");
|
||||||
@@ -406,12 +462,6 @@ pub async fn setup_logging(release: &'static str, dsn: String) -> Option<sentry:
|
|||||||
std::env::set_var("ROCKET_ADDRESS", "0.0.0.0");
|
std::env::set_var("ROCKET_ADDRESS", "0.0.0.0");
|
||||||
}
|
}
|
||||||
|
|
||||||
if std::env::var("REDIS_URL").is_err() {
|
|
||||||
// Configure redis-kiss library
|
|
||||||
let config = config().await;
|
|
||||||
std::env::set_var("REDIS_URI", config.database.redis);
|
|
||||||
}
|
|
||||||
|
|
||||||
pretty_env_logger::init();
|
pretty_env_logger::init();
|
||||||
log::info!("Starting {release}");
|
log::info!("Starting {release}");
|
||||||
|
|
||||||
@@ -428,6 +478,7 @@ pub async fn setup_logging(release: &'static str, dsn: String) -> Option<sentry:
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[cfg(feature = "sentry")]
|
||||||
#[macro_export]
|
#[macro_export]
|
||||||
macro_rules! configure {
|
macro_rules! configure {
|
||||||
($application: ident) => {
|
($application: ident) => {
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "revolt-database"
|
name = "revolt-database"
|
||||||
version = "0.8.7"
|
version = "0.8.9"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "AGPL-3.0-or-later"
|
license = "AGPL-3.0-or-later"
|
||||||
authors = ["Paul Makles <me@insrt.uk>"]
|
authors = ["Paul Makles <me@insrt.uk>"]
|
||||||
@@ -10,33 +10,34 @@ description = "Revolt Backend: Database Implementation"
|
|||||||
|
|
||||||
[features]
|
[features]
|
||||||
# Databases
|
# Databases
|
||||||
mongodb = ["dep:mongodb", "bson"]
|
mongodb = ["dep:mongodb", "bson", "authifier/database-mongodb"]
|
||||||
|
|
||||||
# ... Other
|
# ... Other
|
||||||
tasks = ["isahc", "linkify", "url-escape"]
|
tasks = ["isahc", "linkify", "url-escape"]
|
||||||
async-std-runtime = ["async-std"]
|
async-std-runtime = ["async-std", "authifier/async-std-runtime"]
|
||||||
rocket-impl = ["rocket", "schemars", "revolt_okapi", "revolt_rocket_okapi"]
|
rocket-impl = ["rocket"]
|
||||||
axum-impl = ["axum"]
|
axum-impl = ["axum"]
|
||||||
redis-is-patched = ["revolt-presence/redis-is-patched"]
|
redis-is-patched = ["revolt-presence/redis-is-patched"]
|
||||||
|
voice = ["livekit-api", "livekit-protocol", "livekit-runtime"]
|
||||||
|
|
||||||
# Default Features
|
# Default Features
|
||||||
default = ["mongodb", "async-std-runtime", "tasks"]
|
default = ["mongodb", "async-std-runtime", "tasks"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# Core
|
# Core
|
||||||
revolt-config = { version = "0.8.7", path = "../config", features = [
|
revolt-config = { version = "0.8.9", path = "../config", features = [
|
||||||
"report-macros",
|
"report-macros",
|
||||||
] }
|
] }
|
||||||
revolt-result = { version = "0.8.7", path = "../result" }
|
revolt-result = { version = "0.8.9", path = "../result" }
|
||||||
revolt-models = { version = "0.8.7", path = "../models", features = [
|
revolt-models = { version = "0.8.9", path = "../models", features = [
|
||||||
"validator",
|
"validator",
|
||||||
] }
|
] }
|
||||||
revolt-presence = { version = "0.8.7", path = "../presence" }
|
revolt-presence = { version = "0.8.9", path = "../presence" }
|
||||||
revolt-permissions = { version = "0.8.7", path = "../permissions", features = [
|
revolt-permissions = { version = "0.8.9", path = "../permissions", features = [
|
||||||
"serde",
|
"serde",
|
||||||
"bson",
|
"bson",
|
||||||
] }
|
] }
|
||||||
revolt-parser = { version = "0.8.7", path = "../parser" }
|
revolt-parser = { version = "0.8.9", path = "../parser" }
|
||||||
|
|
||||||
# Utility
|
# Utility
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
@@ -46,7 +47,7 @@ ulid = "1.0.0"
|
|||||||
nanoid = "0.4.0"
|
nanoid = "0.4.0"
|
||||||
base64 = "0.21.3"
|
base64 = "0.21.3"
|
||||||
once_cell = "1.17"
|
once_cell = "1.17"
|
||||||
indexmap = "1.9.1"
|
indexmap = "2.12.0"
|
||||||
decancer = "1.6.2"
|
decancer = "1.6.2"
|
||||||
deadqueue = "0.2.4"
|
deadqueue = "0.2.4"
|
||||||
linkify = { optional = true, version = "0.8.1" }
|
linkify = { optional = true, version = "0.8.1" }
|
||||||
@@ -58,7 +59,7 @@ isahc = { optional = true, version = "1.7", features = ["json"] }
|
|||||||
serde_json = "1"
|
serde_json = "1"
|
||||||
revolt_optional_struct = "0.2.0"
|
revolt_optional_struct = "0.2.0"
|
||||||
serde = { version = "1", features = ["derive"] }
|
serde = { version = "1", features = ["derive"] }
|
||||||
iso8601-timestamp = { version = "0.2.10", features = ["serde", "bson"] }
|
iso8601-timestamp = { version = "0.4.0", features = ["serde", "bson"] }
|
||||||
|
|
||||||
# Events
|
# Events
|
||||||
redis-kiss = { version = "0.1.4" }
|
redis-kiss = { version = "0.1.4" }
|
||||||
@@ -81,23 +82,23 @@ async-recursion = "1.0.4"
|
|||||||
async-std = { version = "1.8.0", features = ["attributes"], optional = true }
|
async-std = { version = "1.8.0", features = ["attributes"], optional = true }
|
||||||
|
|
||||||
# Axum Impl
|
# Axum Impl
|
||||||
axum = { version = "0.7.5", optional = true }
|
axum = { version = "0.8.6", optional = true }
|
||||||
|
|
||||||
# Rocket Impl
|
# Rocket Impl
|
||||||
schemars = { version = "0.8.8", optional = true }
|
|
||||||
rocket = { version = "0.5.1", default-features = false, features = [
|
rocket = { version = "0.5.1", default-features = false, features = [
|
||||||
"json",
|
"json",
|
||||||
], optional = true }
|
], optional = true }
|
||||||
revolt_okapi = { version = "0.9.1", optional = true }
|
|
||||||
revolt_rocket_okapi = { version = "0.10.0", optional = true }
|
|
||||||
|
|
||||||
# Notifications
|
# Openapi Schema
|
||||||
fcm_v1 = "0.3.0"
|
utoipa = { version = "5.4.0", optional = true }
|
||||||
web-push = "0.10.0"
|
|
||||||
revolt_a2 = { version = "0.10", default-features = false, features = ["ring"] }
|
|
||||||
|
|
||||||
# Authifier
|
# Authifier
|
||||||
authifier = { version = "1.0.15", features = ["rocket_impl"] }
|
authifier = { version = "1.0.15" }
|
||||||
|
|
||||||
# RabbitMQ
|
# RabbitMQ
|
||||||
amqprs = { version = "1.7.0" }
|
amqprs = { version = "1.7.0" }
|
||||||
|
|
||||||
|
# Voice
|
||||||
|
livekit-api = { version = "=0.4.4", optional = true}
|
||||||
|
livekit-protocol = { version = "=0.4.0", optional = true }
|
||||||
|
livekit-runtime = { version = "=0.3.1", features = ["tokio"], optional = true }
|
||||||
|
|||||||
@@ -3,18 +3,21 @@
|
|||||||
"_object_type": "User",
|
"_object_type": "User",
|
||||||
"_id": "__ID:0__",
|
"_id": "__ID:0__",
|
||||||
"username": "Owner",
|
"username": "Owner",
|
||||||
|
"last_acknowledged_policy_change": "2025-06-07T04:04:48+0000",
|
||||||
"discriminator": "0001"
|
"discriminator": "0001"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"_object_type": "User",
|
"_object_type": "User",
|
||||||
"_id": "__ID:1__",
|
"_id": "__ID:1__",
|
||||||
"username": "Member",
|
"username": "Member",
|
||||||
|
"last_acknowledged_policy_change": "2025-06-07T04:04:48+0000",
|
||||||
"discriminator": "0001"
|
"discriminator": "0001"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"_object_type": "User",
|
"_object_type": "User",
|
||||||
"_id": "__ID:2__",
|
"_id": "__ID:2__",
|
||||||
"username": "Member",
|
"username": "Member",
|
||||||
|
"last_acknowledged_policy_change": "2025-06-07T04:04:48+0000",
|
||||||
"discriminator": "0002"
|
"discriminator": "0002"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -23,6 +26,9 @@
|
|||||||
"channel_type": "Group",
|
"channel_type": "Group",
|
||||||
"name": "My Group",
|
"name": "My Group",
|
||||||
"owner": "__ID:0__",
|
"owner": "__ID:0__",
|
||||||
"recipients": ["__ID:0__", "__ID:1__"]
|
"recipients": [
|
||||||
|
"__ID:0__",
|
||||||
|
"__ID:1__"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -3,18 +3,21 @@
|
|||||||
"_object_type": "User",
|
"_object_type": "User",
|
||||||
"_id": "__ID:0__",
|
"_id": "__ID:0__",
|
||||||
"username": "Owner",
|
"username": "Owner",
|
||||||
|
"last_acknowledged_policy_change": "2025-06-07T04:04:48+0000",
|
||||||
"discriminator": "0001"
|
"discriminator": "0001"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"_object_type": "User",
|
"_object_type": "User",
|
||||||
"_id": "__ID:1__",
|
"_id": "__ID:1__",
|
||||||
"username": "Moderator",
|
"username": "Moderator",
|
||||||
|
"last_acknowledged_policy_change": "2025-06-07T04:04:48+0000",
|
||||||
"discriminator": "0001"
|
"discriminator": "0001"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"_object_type": "User",
|
"_object_type": "User",
|
||||||
"_id": "__ID:2__",
|
"_id": "__ID:2__",
|
||||||
"username": "User",
|
"username": "User",
|
||||||
|
"last_acknowledged_policy_change": "2025-06-07T04:04:48+0000",
|
||||||
"discriminator": "0001"
|
"discriminator": "0001"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -39,7 +42,9 @@
|
|||||||
"_id": "__ID:4__",
|
"_id": "__ID:4__",
|
||||||
"owner": "__ID:0__",
|
"owner": "__ID:0__",
|
||||||
"name": "Server",
|
"name": "Server",
|
||||||
"channels": ["__ID:3__"],
|
"channels": [
|
||||||
|
"__ID:3__"
|
||||||
|
],
|
||||||
"roles": {
|
"roles": {
|
||||||
"__ID:5__": {
|
"__ID:5__": {
|
||||||
"name": "Moderator",
|
"name": "Moderator",
|
||||||
@@ -47,7 +52,7 @@
|
|||||||
"a": 545270208,
|
"a": 545270208,
|
||||||
"d": 0
|
"d": 0
|
||||||
},
|
},
|
||||||
"rank": 3
|
"rank": 1
|
||||||
},
|
},
|
||||||
"__ID:6__": {
|
"__ID:6__": {
|
||||||
"name": "Owner",
|
"name": "Owner",
|
||||||
@@ -66,7 +71,9 @@
|
|||||||
"user": "__ID:0__",
|
"user": "__ID:0__",
|
||||||
"server": "__ID:4__"
|
"server": "__ID:4__"
|
||||||
},
|
},
|
||||||
"roles": ["__ID:6__"],
|
"roles": [
|
||||||
|
"__ID:6__"
|
||||||
|
],
|
||||||
"joined_at": 1698318340195
|
"joined_at": 1698318340195
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -75,7 +82,9 @@
|
|||||||
"user": "__ID:1__",
|
"user": "__ID:1__",
|
||||||
"server": "__ID:4__"
|
"server": "__ID:4__"
|
||||||
},
|
},
|
||||||
"roles": ["__ID:5__"],
|
"roles": [
|
||||||
|
"__ID:5__"
|
||||||
|
],
|
||||||
"joined_at": 1698318340195
|
"joined_at": 1698318340195
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -86,4 +95,4 @@
|
|||||||
},
|
},
|
||||||
"joined_at": 1698318340195
|
"joined_at": 1698318340195
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -2,7 +2,8 @@ use std::collections::HashSet;
|
|||||||
|
|
||||||
use crate::events::rabbit::*;
|
use crate::events::rabbit::*;
|
||||||
use crate::User;
|
use crate::User;
|
||||||
use amqprs::channel::BasicPublishArguments;
|
use amqprs::channel::{BasicPublishArguments, ExchangeDeclareArguments};
|
||||||
|
use amqprs::connection::OpenConnectionArguments;
|
||||||
use amqprs::{channel::Channel, connection::Connection, error::Error as AMQPError};
|
use amqprs::{channel::Channel, connection::Connection, error::Error as AMQPError};
|
||||||
use amqprs::{BasicProperties, FieldTable};
|
use amqprs::{BasicProperties, FieldTable};
|
||||||
use revolt_models::v0::PushNotification;
|
use revolt_models::v0::PushNotification;
|
||||||
@@ -25,6 +26,35 @@ impl AMQP {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub async fn new_auto() -> AMQP {
|
||||||
|
let config = revolt_config::config().await;
|
||||||
|
|
||||||
|
let connection = Connection::open(&OpenConnectionArguments::new(
|
||||||
|
&config.rabbit.host,
|
||||||
|
config.rabbit.port,
|
||||||
|
&config.rabbit.username,
|
||||||
|
&config.rabbit.password,
|
||||||
|
))
|
||||||
|
.await
|
||||||
|
.expect("Failed to connect to RabbitMQ");
|
||||||
|
|
||||||
|
let channel = connection
|
||||||
|
.open_channel(None)
|
||||||
|
.await
|
||||||
|
.expect("Failed to open RabbitMQ channel");
|
||||||
|
|
||||||
|
channel
|
||||||
|
.exchange_declare(
|
||||||
|
ExchangeDeclareArguments::new(&config.pushd.exchange, "direct")
|
||||||
|
.durable(true)
|
||||||
|
.finish(),
|
||||||
|
)
|
||||||
|
.await
|
||||||
|
.expect("Failed to declare exchange");
|
||||||
|
|
||||||
|
AMQP::new(connection, channel)
|
||||||
|
}
|
||||||
|
|
||||||
pub async fn friend_request_accepted(
|
pub async fn friend_request_accepted(
|
||||||
&self,
|
&self,
|
||||||
accepted_request_user: &User,
|
accepted_request_user: &User,
|
||||||
@@ -240,4 +270,50 @@ impl AMQP {
|
|||||||
)
|
)
|
||||||
.await
|
.await
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// # DM Call Update
|
||||||
|
/// Used to send an update about a DM call, eg. start or end of a call.
|
||||||
|
/// Recipients can be used to narrow the scope of recipients, otherwise all recipients will be notified.
|
||||||
|
/// `ended` refers to the ringing period, not necessarily the call itself.
|
||||||
|
pub async fn dm_call_updated(
|
||||||
|
&self,
|
||||||
|
initiator_id: &str,
|
||||||
|
channel_id: &str,
|
||||||
|
started_at: Option<&str>,
|
||||||
|
ended: bool,
|
||||||
|
recipients: Option<Vec<String>>,
|
||||||
|
) -> Result<(), AMQPError> {
|
||||||
|
let config = revolt_config::config().await;
|
||||||
|
|
||||||
|
let payload = InternalDmCallPayload {
|
||||||
|
payload: DmCallPayload {
|
||||||
|
initiator_id: initiator_id.to_string(),
|
||||||
|
channel_id: channel_id.to_string(),
|
||||||
|
started_at: started_at.map(|f| f.to_string()),
|
||||||
|
ended,
|
||||||
|
},
|
||||||
|
recipients,
|
||||||
|
};
|
||||||
|
let payload = to_string(&payload).unwrap();
|
||||||
|
|
||||||
|
debug!(
|
||||||
|
"Sending dm call update payload on channel {}: {}",
|
||||||
|
config.pushd.get_dm_call_routing_key(),
|
||||||
|
payload
|
||||||
|
);
|
||||||
|
|
||||||
|
self.channel
|
||||||
|
.basic_publish(
|
||||||
|
BasicProperties::default()
|
||||||
|
.with_content_type("application/json")
|
||||||
|
.with_persistence(true)
|
||||||
|
.finish(),
|
||||||
|
payload.into(),
|
||||||
|
BasicPublishArguments::new(
|
||||||
|
&config.pushd.exchange,
|
||||||
|
&config.pushd.get_dm_call_routing_key(),
|
||||||
|
),
|
||||||
|
)
|
||||||
|
.await
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
#[cfg(feature = "mongodb")]
|
||||||
mod mongodb;
|
mod mongodb;
|
||||||
mod reference;
|
mod reference;
|
||||||
|
|
||||||
@@ -13,6 +14,7 @@ use authifier::Authifier;
|
|||||||
use rand::Rng;
|
use rand::Rng;
|
||||||
use revolt_config::config;
|
use revolt_config::config;
|
||||||
|
|
||||||
|
#[cfg(feature = "mongodb")]
|
||||||
pub use self::mongodb::*;
|
pub use self::mongodb::*;
|
||||||
pub use self::reference::*;
|
pub use self::reference::*;
|
||||||
|
|
||||||
@@ -25,17 +27,20 @@ pub enum DatabaseInfo {
|
|||||||
/// Use the mock database
|
/// Use the mock database
|
||||||
Reference,
|
Reference,
|
||||||
/// Connect to MongoDB
|
/// Connect to MongoDB
|
||||||
|
#[cfg(feature = "mongodb")]
|
||||||
MongoDb { uri: String, database_name: String },
|
MongoDb { uri: String, database_name: String },
|
||||||
/// Use existing MongoDB connection
|
/// Use existing MongoDB connection
|
||||||
|
#[cfg(feature = "mongodb")]
|
||||||
MongoDbFromClient(::mongodb::Client, String),
|
MongoDbFromClient(::mongodb::Client, String),
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Database
|
/// Database
|
||||||
#[derive(Clone)]
|
#[derive(Clone, Debug)]
|
||||||
pub enum Database {
|
pub enum Database {
|
||||||
/// Mock database
|
/// Mock database
|
||||||
Reference(ReferenceDb),
|
Reference(ReferenceDb),
|
||||||
/// MongoDB database
|
/// MongoDB database
|
||||||
|
#[cfg(feature = "mongodb")]
|
||||||
MongoDb(MongoDb),
|
MongoDb(MongoDb),
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -45,7 +50,7 @@ impl DatabaseInfo {
|
|||||||
pub async fn connect(self) -> Result<Database, String> {
|
pub async fn connect(self) -> Result<Database, String> {
|
||||||
let config = config().await;
|
let config = config().await;
|
||||||
|
|
||||||
Ok(match self {
|
match self {
|
||||||
DatabaseInfo::Auto => {
|
DatabaseInfo::Auto => {
|
||||||
if std::env::var("TEST_DB").is_ok() {
|
if std::env::var("TEST_DB").is_ok() {
|
||||||
DatabaseInfo::Test(format!(
|
DatabaseInfo::Test(format!(
|
||||||
@@ -53,16 +58,20 @@ impl DatabaseInfo {
|
|||||||
rand::thread_rng().gen_range(1_000_000..10_000_000)
|
rand::thread_rng().gen_range(1_000_000..10_000_000)
|
||||||
))
|
))
|
||||||
.connect()
|
.connect()
|
||||||
.await?
|
.await
|
||||||
} else if !config.database.mongodb.is_empty() {
|
} else if !config.database.mongodb.is_empty() {
|
||||||
DatabaseInfo::MongoDb {
|
#[cfg(feature = "mongodb")]
|
||||||
|
return DatabaseInfo::MongoDb {
|
||||||
uri: config.database.mongodb,
|
uri: config.database.mongodb,
|
||||||
database_name: "revolt".to_string(),
|
database_name: "revolt".to_string(),
|
||||||
}
|
}
|
||||||
.connect()
|
.connect()
|
||||||
.await?
|
.await;
|
||||||
|
|
||||||
|
#[cfg(not(feature = "mongodb"))]
|
||||||
|
return Err("MongoDB not enabled.".to_string())
|
||||||
} else {
|
} else {
|
||||||
DatabaseInfo::Reference.connect().await?
|
DatabaseInfo::Reference.connect().await
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
DatabaseInfo::Test(database_name) => {
|
DatabaseInfo::Test(database_name) => {
|
||||||
@@ -70,30 +79,36 @@ impl DatabaseInfo {
|
|||||||
.expect("`TEST_DB` environment variable should be set to REFERENCE or MONGODB")
|
.expect("`TEST_DB` environment variable should be set to REFERENCE or MONGODB")
|
||||||
.as_str()
|
.as_str()
|
||||||
{
|
{
|
||||||
"REFERENCE" => DatabaseInfo::Reference.connect().await?,
|
"REFERENCE" => DatabaseInfo::Reference.connect().await,
|
||||||
"MONGODB" => {
|
"MONGODB" => {
|
||||||
DatabaseInfo::MongoDb {
|
#[cfg(feature = "mongodb")]
|
||||||
|
return DatabaseInfo::MongoDb {
|
||||||
uri: config.database.mongodb,
|
uri: config.database.mongodb,
|
||||||
database_name,
|
database_name,
|
||||||
}
|
}
|
||||||
.connect()
|
.connect()
|
||||||
.await?
|
.await;
|
||||||
|
|
||||||
|
#[cfg(not(feature = "mongodb"))]
|
||||||
|
return Err("MongoDB not enabled.".to_string())
|
||||||
}
|
}
|
||||||
_ => unreachable!("must specify REFERENCE or MONGODB"),
|
_ => unreachable!("must specify REFERENCE or MONGODB"),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
DatabaseInfo::Reference => Database::Reference(Default::default()),
|
DatabaseInfo::Reference => Ok(Database::Reference(Default::default())),
|
||||||
|
#[cfg(feature = "mongodb")]
|
||||||
DatabaseInfo::MongoDb { uri, database_name } => {
|
DatabaseInfo::MongoDb { uri, database_name } => {
|
||||||
let client = ::mongodb::Client::with_uri_str(uri)
|
let client = ::mongodb::Client::with_uri_str(uri)
|
||||||
.await
|
.await
|
||||||
.map_err(|_| "Failed to init db connection.".to_string())?;
|
.map_err(|_| "Failed to init db connection.".to_string())?;
|
||||||
|
|
||||||
Database::MongoDb(MongoDb(client, database_name))
|
Ok(Database::MongoDb(MongoDb(client, database_name)))
|
||||||
}
|
}
|
||||||
|
#[cfg(feature = "mongodb")]
|
||||||
DatabaseInfo::MongoDbFromClient(client, database_name) => {
|
DatabaseInfo::MongoDbFromClient(client, database_name) => {
|
||||||
Database::MongoDb(MongoDb(client, database_name))
|
Ok(Database::MongoDb(MongoDb(client, database_name)))
|
||||||
}
|
}
|
||||||
})
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -219,12 +234,16 @@ impl Database {
|
|||||||
Authifier {
|
Authifier {
|
||||||
database: match self {
|
database: match self {
|
||||||
Database::Reference(_) => Default::default(),
|
Database::Reference(_) => Default::default(),
|
||||||
|
#[cfg(feature = "mongodb")]
|
||||||
Database::MongoDb(MongoDb(client, _)) => authifier::Database::MongoDb(
|
Database::MongoDb(MongoDb(client, _)) => authifier::Database::MongoDb(
|
||||||
authifier::database::MongoDb(client.database("revolt")),
|
authifier::database::MongoDb(client.database("revolt")),
|
||||||
),
|
),
|
||||||
},
|
},
|
||||||
config: auth_config,
|
config: auth_config,
|
||||||
|
#[cfg(feature = "tasks")]
|
||||||
event_channel: Some(crate::tasks::authifier_relay::sender()),
|
event_channel: Some(crate::tasks::authifier_relay::sender()),
|
||||||
|
#[cfg(not(feature = "tasks"))]
|
||||||
|
event_channel: None,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,8 +10,8 @@ use serde::de::DeserializeOwned;
|
|||||||
use serde::Serialize;
|
use serde::Serialize;
|
||||||
|
|
||||||
database_derived!(
|
database_derived!(
|
||||||
#[cfg(feature = "mongodb")]
|
|
||||||
/// MongoDB implementation
|
/// MongoDB implementation
|
||||||
|
#[derive(Debug)]
|
||||||
pub struct MongoDb(pub ::mongodb::Client, pub String);
|
pub struct MongoDb(pub ::mongodb::Client, pub String);
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ use crate::{
|
|||||||
|
|
||||||
database_derived!(
|
database_derived!(
|
||||||
/// Reference implementation
|
/// Reference implementation
|
||||||
#[derive(Default)]
|
#[derive(Default, Debug)]
|
||||||
pub struct ReferenceDb {
|
pub struct ReferenceDb {
|
||||||
pub bots: Arc<Mutex<HashMap<String, Bot>>>,
|
pub bots: Arc<Mutex<HashMap<String, Bot>>>,
|
||||||
pub channels: Arc<Mutex<HashMap<String, Channel>>>,
|
pub channels: Arc<Mutex<HashMap<String, Channel>>>,
|
||||||
|
|||||||
@@ -3,10 +3,7 @@ use revolt_result::Error;
|
|||||||
use serde::{Deserialize, Serialize};
|
use serde::{Deserialize, Serialize};
|
||||||
|
|
||||||
use revolt_models::v0::{
|
use revolt_models::v0::{
|
||||||
AppendMessage, Channel, ChannelUnread, Emoji, FieldsChannel, FieldsMember, FieldsMessage,
|
AppendMessage, Channel, ChannelUnread, ChannelVoiceState, Emoji, FieldsChannel, FieldsMember, FieldsMessage, FieldsRole, FieldsServer, FieldsUser, FieldsWebhook, Member, MemberCompositeKey, Message, PartialChannel, PartialMember, PartialMessage, PartialRole, PartialServer, PartialUser, PartialUserVoiceState, PartialWebhook, PolicyChange, RemovalIntention, Report, Server, User, UserSettings, UserVoiceState, Webhook
|
||||||
FieldsRole, FieldsServer, FieldsUser, FieldsWebhook, Member, MemberCompositeKey, Message,
|
|
||||||
PartialChannel, PartialMember, PartialMessage, PartialRole, PartialServer, PartialUser,
|
|
||||||
PartialWebhook, PolicyChange, RemovalIntention, Report, Server, User, UserSettings, Webhook,
|
|
||||||
};
|
};
|
||||||
|
|
||||||
use crate::Database;
|
use crate::Database;
|
||||||
@@ -20,16 +17,33 @@ pub enum Ping {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// Fields provided in Ready payload
|
/// Fields provided in Ready payload
|
||||||
#[derive(PartialEq)]
|
#[derive(PartialEq, Debug, Clone, Deserialize)]
|
||||||
pub enum ReadyPayloadFields {
|
pub struct ReadyPayloadFields {
|
||||||
Users,
|
pub users: bool,
|
||||||
Servers,
|
pub servers: bool,
|
||||||
Channels,
|
pub channels: bool,
|
||||||
Members,
|
pub members: bool,
|
||||||
Emoji,
|
pub emojis: bool,
|
||||||
|
pub voice_states: bool,
|
||||||
|
pub user_settings: Vec<String>,
|
||||||
|
pub channel_unreads: bool,
|
||||||
|
pub policy_changes: bool,
|
||||||
|
}
|
||||||
|
|
||||||
UserSettings(Vec<String>),
|
impl Default for ReadyPayloadFields {
|
||||||
ChannelUnreads,
|
fn default() -> Self {
|
||||||
|
Self {
|
||||||
|
users: true,
|
||||||
|
servers: true,
|
||||||
|
channels: true,
|
||||||
|
members: true,
|
||||||
|
emojis: true,
|
||||||
|
voice_states: true,
|
||||||
|
user_settings: Vec::new(),
|
||||||
|
channel_unreads: false,
|
||||||
|
policy_changes: true,
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Protocol Events
|
/// Protocol Events
|
||||||
@@ -57,13 +71,16 @@ pub enum EventV1 {
|
|||||||
members: Option<Vec<Member>>,
|
members: Option<Vec<Member>>,
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
#[serde(skip_serializing_if = "Option::is_none")]
|
||||||
emojis: Option<Vec<Emoji>>,
|
emojis: Option<Vec<Emoji>>,
|
||||||
|
#[serde(skip_serializing_if = "Option::is_none")]
|
||||||
|
voice_states: Option<Vec<ChannelVoiceState>>,
|
||||||
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
#[serde(skip_serializing_if = "Option::is_none")]
|
||||||
user_settings: Option<UserSettings>,
|
user_settings: Option<UserSettings>,
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
#[serde(skip_serializing_if = "Option::is_none")]
|
||||||
channel_unreads: Option<Vec<ChannelUnread>>,
|
channel_unreads: Option<Vec<ChannelUnread>>,
|
||||||
|
|
||||||
policy_changes: Vec<PolicyChange>,
|
#[serde(skip_serializing_if = "Option::is_none")]
|
||||||
|
policy_changes: Option<Vec<PolicyChange>>,
|
||||||
},
|
},
|
||||||
|
|
||||||
/// Ping response
|
/// Ping response
|
||||||
@@ -122,6 +139,7 @@ pub enum EventV1 {
|
|||||||
server: Server,
|
server: Server,
|
||||||
channels: Vec<Channel>,
|
channels: Vec<Channel>,
|
||||||
emojis: Vec<Emoji>,
|
emojis: Vec<Emoji>,
|
||||||
|
voice_states: Vec<ChannelVoiceState>
|
||||||
},
|
},
|
||||||
|
|
||||||
/// Update existing server
|
/// Update existing server
|
||||||
@@ -144,7 +162,13 @@ pub enum EventV1 {
|
|||||||
},
|
},
|
||||||
|
|
||||||
/// User joins server
|
/// User joins server
|
||||||
ServerMemberJoin { id: String, user: String },
|
ServerMemberJoin {
|
||||||
|
id: String,
|
||||||
|
// Deprecated: use member.id.user
|
||||||
|
#[deprecated = "Use member.id.user instead"]
|
||||||
|
user: String,
|
||||||
|
member: Member,
|
||||||
|
},
|
||||||
|
|
||||||
/// User left server
|
/// User left server
|
||||||
ServerMemberLeave {
|
ServerMemberLeave {
|
||||||
@@ -165,6 +189,9 @@ pub enum EventV1 {
|
|||||||
/// Server role deleted
|
/// Server role deleted
|
||||||
ServerRoleDelete { id: String, role_id: String },
|
ServerRoleDelete { id: String, role_id: String },
|
||||||
|
|
||||||
|
/// Server roles ranks updated
|
||||||
|
ServerRoleRanksUpdate { id: String, ranks: Vec<String> },
|
||||||
|
|
||||||
/// Update existing user
|
/// Update existing user
|
||||||
UserUpdate {
|
UserUpdate {
|
||||||
id: String,
|
id: String,
|
||||||
@@ -245,6 +272,33 @@ pub enum EventV1 {
|
|||||||
|
|
||||||
/// Auth events
|
/// Auth events
|
||||||
Auth(AuthifierEvent),
|
Auth(AuthifierEvent),
|
||||||
|
|
||||||
|
/// Voice events
|
||||||
|
VoiceChannelJoin {
|
||||||
|
id: String,
|
||||||
|
state: UserVoiceState,
|
||||||
|
},
|
||||||
|
VoiceChannelLeave {
|
||||||
|
id: String,
|
||||||
|
user: String,
|
||||||
|
},
|
||||||
|
VoiceChannelMove {
|
||||||
|
user: String,
|
||||||
|
from: String,
|
||||||
|
to: String,
|
||||||
|
state: UserVoiceState
|
||||||
|
},
|
||||||
|
UserVoiceStateUpdate {
|
||||||
|
id: String,
|
||||||
|
channel_id: String,
|
||||||
|
data: PartialUserVoiceState,
|
||||||
|
},
|
||||||
|
UserMoveVoiceChannel {
|
||||||
|
node: String,
|
||||||
|
from: String,
|
||||||
|
to: String,
|
||||||
|
token: String,
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl EventV1 {
|
impl EventV1 {
|
||||||
|
|||||||
@@ -37,6 +37,20 @@ pub struct GenericPayload {
|
|||||||
pub user: User,
|
pub user: User,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[derive(Serialize, Deserialize, Clone)]
|
||||||
|
pub struct DmCallPayload {
|
||||||
|
pub initiator_id: String,
|
||||||
|
pub channel_id: String,
|
||||||
|
pub started_at: Option<String>,
|
||||||
|
pub ended: bool,
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Serialize, Deserialize, Clone)]
|
||||||
|
pub struct InternalDmCallPayload {
|
||||||
|
pub payload: DmCallPayload,
|
||||||
|
pub recipients: Option<Vec<String>>,
|
||||||
|
}
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize)]
|
#[derive(Serialize, Deserialize)]
|
||||||
#[serde(tag = "type", content = "data")]
|
#[serde(tag = "type", content = "data")]
|
||||||
#[allow(clippy::large_enum_variant)]
|
#[allow(clippy::large_enum_variant)]
|
||||||
@@ -46,6 +60,7 @@ pub enum PayloadKind {
|
|||||||
FRReceived(FRReceivedPayload),
|
FRReceived(FRReceivedPayload),
|
||||||
BadgeUpdate(usize),
|
BadgeUpdate(usize),
|
||||||
Generic(GenericPayload),
|
Generic(GenericPayload),
|
||||||
|
DmCallStartEnd(DmCallPayload),
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize)]
|
#[derive(Serialize, Deserialize)]
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
use serde::Deserialize;
|
use serde::{Serialize, Deserialize};
|
||||||
|
|
||||||
use super::client::Ping;
|
use super::client::Ping;
|
||||||
|
|
||||||
#[derive(Deserialize, Debug)]
|
#[derive(Serialize, Deserialize, Debug)]
|
||||||
#[serde(tag = "type")]
|
#[serde(tag = "type")]
|
||||||
pub enum ClientMessage {
|
pub enum ClientMessage {
|
||||||
Authenticate { token: String },
|
Authenticate { token: String },
|
||||||
|
|||||||
@@ -25,6 +25,13 @@ pub use mongodb;
|
|||||||
#[macro_use]
|
#[macro_use]
|
||||||
extern crate bson;
|
extern crate bson;
|
||||||
|
|
||||||
|
#[cfg(feature = "utoipa")]
|
||||||
|
#[macro_use]
|
||||||
|
extern crate utoipa;
|
||||||
|
|
||||||
|
#[cfg(not(feature = "async-std-runtime"))]
|
||||||
|
compile_error!("async-std-runtime feature must be enabled.");
|
||||||
|
|
||||||
#[macro_export]
|
#[macro_export]
|
||||||
#[cfg(debug_assertions)]
|
#[cfg(debug_assertions)]
|
||||||
macro_rules! query {
|
macro_rules! query {
|
||||||
@@ -57,7 +64,7 @@ macro_rules! database_derived {
|
|||||||
macro_rules! auto_derived {
|
macro_rules! auto_derived {
|
||||||
( $( $item:item )+ ) => {
|
( $( $item:item )+ ) => {
|
||||||
$(
|
$(
|
||||||
#[derive(Serialize, Deserialize, Debug, Clone, Eq, PartialEq)]
|
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq)]
|
||||||
$item
|
$item
|
||||||
)+
|
)+
|
||||||
};
|
};
|
||||||
@@ -65,8 +72,8 @@ macro_rules! auto_derived {
|
|||||||
|
|
||||||
macro_rules! auto_derived_partial {
|
macro_rules! auto_derived_partial {
|
||||||
( $item:item, $name:expr ) => {
|
( $item:item, $name:expr ) => {
|
||||||
#[derive(OptionalStruct, Serialize, Deserialize, Debug, Clone, Eq, PartialEq)]
|
#[derive(OptionalStruct, Serialize, Deserialize, Debug, Clone, PartialEq)]
|
||||||
#[optional_derive(Serialize, Deserialize, Debug, Clone, Default, Eq, PartialEq)]
|
#[optional_derive(Serialize, Deserialize, Debug, Clone, Default, PartialEq)]
|
||||||
#[optional_name = $name]
|
#[optional_name = $name]
|
||||||
#[opt_skip_serializing_none]
|
#[opt_skip_serializing_none]
|
||||||
#[opt_some_priority]
|
#[opt_some_priority]
|
||||||
@@ -103,11 +110,16 @@ pub mod util;
|
|||||||
pub use models::*;
|
pub use models::*;
|
||||||
|
|
||||||
pub mod events;
|
pub mod events;
|
||||||
|
#[cfg(feature = "tasks")]
|
||||||
pub mod tasks;
|
pub mod tasks;
|
||||||
|
|
||||||
mod amqp;
|
mod amqp;
|
||||||
pub use amqp::amqp::AMQP;
|
pub use amqp::amqp::AMQP;
|
||||||
|
|
||||||
|
#[cfg(feature = "voice")]
|
||||||
|
pub mod voice;
|
||||||
|
|
||||||
|
|
||||||
/// Utility function to check if a boolean value is false
|
/// Utility function to check if a boolean value is false
|
||||||
pub fn if_false(t: &bool) -> bool {
|
pub fn if_false(t: &bool) -> bool {
|
||||||
!t
|
!t
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
#[cfg(feature = "mongodb")]
|
||||||
mod mongodb;
|
mod mongodb;
|
||||||
mod reference;
|
mod reference;
|
||||||
|
|
||||||
|
|||||||
@@ -1,18 +1,21 @@
|
|||||||
use std::{collections::HashSet, ops::BitXor, time::Duration};
|
use std::{
|
||||||
|
collections::{HashMap, HashSet},
|
||||||
|
ops::BitXor,
|
||||||
|
time::Duration,
|
||||||
|
};
|
||||||
|
|
||||||
use crate::{
|
use crate::{
|
||||||
mongodb::{
|
mongodb::{
|
||||||
bson::{doc, from_bson, from_document, to_document, Bson, DateTime, Document},
|
bson::{doc, from_bson, from_document, to_document, Bson, DateTime, Document},
|
||||||
options::FindOptions,
|
options::FindOptions,
|
||||||
},
|
},
|
||||||
AbstractChannels, AbstractServers, Channel, Invite, MongoDb, User, DISCRIMINATOR_SEARCH_SPACE,
|
AbstractServers, Invite, MongoDb, User, DISCRIMINATOR_SEARCH_SPACE,
|
||||||
};
|
};
|
||||||
use bson::{oid::ObjectId, to_bson};
|
use bson::{oid::ObjectId, to_bson};
|
||||||
use futures::StreamExt;
|
use futures::StreamExt;
|
||||||
use iso8601_timestamp::Timestamp;
|
use iso8601_timestamp::Timestamp;
|
||||||
use rand::seq::SliceRandom;
|
use rand::seq::SliceRandom;
|
||||||
use revolt_permissions::DEFAULT_WEBHOOK_PERMISSIONS;
|
use revolt_permissions::{ChannelPermission, DEFAULT_WEBHOOK_PERMISSIONS};
|
||||||
use revolt_result::{Error, ErrorType};
|
|
||||||
use serde::{Deserialize, Serialize};
|
use serde::{Deserialize, Serialize};
|
||||||
use unicode_segmentation::UnicodeSegmentation;
|
use unicode_segmentation::UnicodeSegmentation;
|
||||||
|
|
||||||
@@ -22,7 +25,7 @@ struct MigrationInfo {
|
|||||||
revision: i32,
|
revision: i32,
|
||||||
}
|
}
|
||||||
|
|
||||||
pub const LATEST_REVISION: i32 = 41; // MUST BE +1 to last migration
|
pub const LATEST_REVISION: i32 = 49; // MUST BE +1 to last migration
|
||||||
|
|
||||||
pub async fn migrate_database(db: &MongoDb) {
|
pub async fn migrate_database(db: &MongoDb) {
|
||||||
let migrations = db.col::<Document>("migrations");
|
let migrations = db.col::<Document>("migrations");
|
||||||
@@ -910,6 +913,7 @@ pub async fn run_migrations(db: &MongoDb, revision: i32) -> i32 {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if revision <= 26 {
|
if revision <= 26 {
|
||||||
|
// Need to migrate fields on attachments, change `user_id`, `object_id`, etc to `parent`.
|
||||||
info!("Running migration [revision 26 / 15-05-2024]: fix invites being incorrectly serialized with wrong enum tagging.");
|
info!("Running migration [revision 26 / 15-05-2024]: fix invites being incorrectly serialized with wrong enum tagging.");
|
||||||
|
|
||||||
auto_derived!(
|
auto_derived!(
|
||||||
@@ -1076,6 +1080,14 @@ pub async fn run_migrations(db: &MongoDb, revision: i32) -> i32 {
|
|||||||
channel_id: String,
|
channel_id: String,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[allow(clippy::enum_variant_names)]
|
||||||
|
#[derive(serde::Serialize, serde::Deserialize)]
|
||||||
|
enum Channel {
|
||||||
|
Group { owner: String },
|
||||||
|
TextChannel { server: String },
|
||||||
|
VoiceChannel { server: String }
|
||||||
|
}
|
||||||
|
|
||||||
let webhooks = db
|
let webhooks = db
|
||||||
.db()
|
.db()
|
||||||
.collection::<WebhookShell>("channel_webhooks")
|
.collection::<WebhookShell>("channel_webhooks")
|
||||||
@@ -1087,8 +1099,8 @@ pub async fn run_migrations(db: &MongoDb, revision: i32) -> i32 {
|
|||||||
.await;
|
.await;
|
||||||
|
|
||||||
for webhook in webhooks {
|
for webhook in webhooks {
|
||||||
match db.fetch_channel(&webhook.channel_id).await {
|
match db.col::<Channel>("channels").find_one(doc! { "_id": &webhook.channel_id }).await.unwrap() {
|
||||||
Ok(channel) => {
|
Some(channel) => {
|
||||||
let creator_id = match channel {
|
let creator_id = match channel {
|
||||||
Channel::Group { owner, .. } => owner,
|
Channel::Group { owner, .. } => owner,
|
||||||
Channel::TextChannel { server, .. }
|
Channel::TextChannel { server, .. }
|
||||||
@@ -1096,7 +1108,6 @@ pub async fn run_migrations(db: &MongoDb, revision: i32) -> i32 {
|
|||||||
let server = db.fetch_server(&server).await.expect("server");
|
let server = db.fetch_server(&server).await.expect("server");
|
||||||
server.owner
|
server.owner
|
||||||
}
|
}
|
||||||
_ => unreachable!("not server or group channel!"),
|
|
||||||
};
|
};
|
||||||
|
|
||||||
db.db()
|
db.db()
|
||||||
@@ -1114,17 +1125,13 @@ pub async fn run_migrations(db: &MongoDb, revision: i32) -> i32 {
|
|||||||
.await
|
.await
|
||||||
.expect("update webhook");
|
.expect("update webhook");
|
||||||
}
|
}
|
||||||
Err(Error {
|
None => {
|
||||||
error_type: ErrorType::NotFound,
|
|
||||||
..
|
|
||||||
}) => {
|
|
||||||
db.db()
|
db.db()
|
||||||
.collection::<WebhookShell>("channel_webhooks")
|
.collection::<WebhookShell>("channel_webhooks")
|
||||||
.delete_one(doc! { "_id": webhook._id })
|
.delete_one(doc! { "_id": webhook._id })
|
||||||
.await
|
.await
|
||||||
.expect("failed to delete invalid webhook");
|
.expect("failed to delete invalid webhook");
|
||||||
}
|
}
|
||||||
Err(err) => panic!("{err:?}"),
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1165,6 +1172,98 @@ pub async fn run_migrations(db: &MongoDb, revision: i32) -> i32 {
|
|||||||
.expect("failed to update users");
|
.expect("failed to update users");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if revision <= 43 {
|
||||||
|
info!(
|
||||||
|
"Running migration [revision 43 / 05-06-2025]: convert role ranks to uniform numbers."
|
||||||
|
);
|
||||||
|
|
||||||
|
#[derive(Serialize, Deserialize, Clone)]
|
||||||
|
struct Role {
|
||||||
|
pub rank: i64,
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Serialize, Deserialize, Clone)]
|
||||||
|
struct Server {
|
||||||
|
#[serde(rename = "_id")]
|
||||||
|
pub id: String,
|
||||||
|
#[serde(default = "HashMap::<String, Role>::new")]
|
||||||
|
pub roles: HashMap<String, Role>,
|
||||||
|
}
|
||||||
|
|
||||||
|
let mut servers = db
|
||||||
|
.db()
|
||||||
|
.collection::<Server>("servers")
|
||||||
|
.find(doc! {
|
||||||
|
"roles": {
|
||||||
|
"$exists": true,
|
||||||
|
"$ne": []
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.await
|
||||||
|
.unwrap()
|
||||||
|
.filter_map(|s| async { s.ok() })
|
||||||
|
.boxed();
|
||||||
|
|
||||||
|
while let Some(server) = servers.next().await {
|
||||||
|
let mut ordered_roles = server.roles.clone().into_iter().collect::<Vec<_>>();
|
||||||
|
ordered_roles.sort_by(|(_, role_a), (_, role_b)| role_a.rank.cmp(&role_b.rank));
|
||||||
|
let ordered_roles = ordered_roles
|
||||||
|
.into_iter()
|
||||||
|
.map(|(id, _)| id)
|
||||||
|
.collect::<Vec<_>>();
|
||||||
|
|
||||||
|
let mut doc = doc! {};
|
||||||
|
|
||||||
|
for id in server.roles.keys() {
|
||||||
|
doc.insert(
|
||||||
|
format!("roles.{id}.rank"),
|
||||||
|
ordered_roles.iter().position(|x| id == x).unwrap() as i64,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
db.db()
|
||||||
|
.collection::<Server>("servers")
|
||||||
|
.update_one(doc! { "_id": &server.id }, doc! { "$set": doc })
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if revision <= 46 {
|
||||||
|
info!("Running migration [revision 46 / 29-04-2025]: Convert all `VoiceChannel`'s into `TextChannel`");
|
||||||
|
|
||||||
|
db.col::<Document>("channels")
|
||||||
|
.update_many(
|
||||||
|
doc! { "channel_type": "VoiceChannel" },
|
||||||
|
doc! {
|
||||||
|
"$set": {
|
||||||
|
"channel_type": "TextChannel",
|
||||||
|
"voice": {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
)
|
||||||
|
.await
|
||||||
|
.expect("Failed to update voice channels");
|
||||||
|
};
|
||||||
|
|
||||||
|
if revision <= 48 {
|
||||||
|
info!("Running migration [revision 48 / 22-10-2025]: Add Video + Listen to default permissions");
|
||||||
|
|
||||||
|
db.col::<Document>("servers")
|
||||||
|
.update_many(
|
||||||
|
doc! { },
|
||||||
|
doc! {
|
||||||
|
"$bit": {
|
||||||
|
"default_permissions": {
|
||||||
|
"or": (ChannelPermission::Video + ChannelPermission::Speak + ChannelPermission::Listen) as i64
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
)
|
||||||
|
.await
|
||||||
|
.expect("Failed to update default_permissions");
|
||||||
|
};
|
||||||
|
|
||||||
// Reminder to update LATEST_REVISION when adding new migrations.
|
// Reminder to update LATEST_REVISION when adding new migrations.
|
||||||
LATEST_REVISION.max(revision)
|
LATEST_REVISION.max(revision)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,6 +2,7 @@ use revolt_result::Result;
|
|||||||
|
|
||||||
use crate::{Bot, FieldsBot, PartialBot};
|
use crate::{Bot, FieldsBot, PartialBot};
|
||||||
|
|
||||||
|
#[cfg(feature = "mongodb")]
|
||||||
mod mongodb;
|
mod mongodb;
|
||||||
mod reference;
|
mod reference;
|
||||||
|
|
||||||
|
|||||||
@@ -69,7 +69,7 @@ impl Invite {
|
|||||||
creator: creator.id.clone(),
|
creator: creator.id.clone(),
|
||||||
channel: id.clone(),
|
channel: id.clone(),
|
||||||
}),
|
}),
|
||||||
Channel::TextChannel { id, server, .. } | Channel::VoiceChannel { id, server, .. } => {
|
Channel::TextChannel { id, server, .. } => {
|
||||||
Ok(Invite::Server {
|
Ok(Invite::Server {
|
||||||
code,
|
code,
|
||||||
creator: creator.id.clone(),
|
creator: creator.id.clone(),
|
||||||
|
|||||||
@@ -2,6 +2,7 @@ use revolt_result::Result;
|
|||||||
|
|
||||||
use crate::Invite;
|
use crate::Invite;
|
||||||
|
|
||||||
|
#[cfg(feature = "mongodb")]
|
||||||
mod mongodb;
|
mod mongodb;
|
||||||
mod reference;
|
mod reference;
|
||||||
|
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ auto_derived!(
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// Composite primary key consisting of channel and user id
|
/// Composite primary key consisting of channel and user id
|
||||||
#[derive(Hash)]
|
#[derive(Hash, Eq)]
|
||||||
pub struct ChannelCompositeKey {
|
pub struct ChannelCompositeKey {
|
||||||
/// Channel Id
|
/// Channel Id
|
||||||
pub channel: String,
|
pub channel: String,
|
||||||
|
|||||||
@@ -2,6 +2,7 @@ use revolt_result::Result;
|
|||||||
|
|
||||||
use crate::ChannelUnread;
|
use crate::ChannelUnread;
|
||||||
|
|
||||||
|
#[cfg(feature = "mongodb")]
|
||||||
mod mongodb;
|
mod mongodb;
|
||||||
mod reference;
|
mod reference;
|
||||||
|
|
||||||
|
|||||||
@@ -2,6 +2,7 @@ use revolt_result::Result;
|
|||||||
|
|
||||||
use crate::{FieldsWebhook, PartialWebhook, Webhook};
|
use crate::{FieldsWebhook, PartialWebhook, Webhook};
|
||||||
|
|
||||||
|
#[cfg(feature = "mongodb")]
|
||||||
mod mongodb;
|
mod mongodb;
|
||||||
mod reference;
|
mod reference;
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
use std::collections::HashMap;
|
#![allow(deprecated)]
|
||||||
|
use std::{borrow::Cow, collections::HashMap};
|
||||||
|
|
||||||
use revolt_config::config;
|
use revolt_config::config;
|
||||||
use revolt_models::v0::{self, MessageAuthor};
|
use revolt_models::v0::{self, MessageAuthor};
|
||||||
@@ -8,10 +9,12 @@ use serde::{Deserialize, Serialize};
|
|||||||
use ulid::Ulid;
|
use ulid::Ulid;
|
||||||
|
|
||||||
use crate::{
|
use crate::{
|
||||||
events::client::EventV1, tasks::ack::AckEvent, Database, File, IntoDocumentPath, PartialServer,
|
events::client::EventV1, Database, File, PartialServer, Server, SystemMessage, User, AMQP,
|
||||||
Server, SystemMessage, User, AMQP,
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#[cfg(feature = "mongodb")]
|
||||||
|
use crate::IntoDocumentPath;
|
||||||
|
|
||||||
auto_derived!(
|
auto_derived!(
|
||||||
#[serde(tag = "channel_type")]
|
#[serde(tag = "channel_type")]
|
||||||
pub enum Channel {
|
pub enum Channel {
|
||||||
@@ -103,38 +106,18 @@ auto_derived!(
|
|||||||
/// Whether this channel is marked as not safe for work
|
/// Whether this channel is marked as not safe for work
|
||||||
#[serde(skip_serializing_if = "crate::if_false", default)]
|
#[serde(skip_serializing_if = "crate::if_false", default)]
|
||||||
nsfw: bool,
|
nsfw: bool,
|
||||||
|
|
||||||
|
/// Voice Information for when this channel is also a voice channel
|
||||||
|
#[serde(skip_serializing_if = "Option::is_none")]
|
||||||
|
voice: Option<VoiceInformation>,
|
||||||
},
|
},
|
||||||
/// Voice channel belonging to a server
|
}
|
||||||
VoiceChannel {
|
|
||||||
/// Unique Id
|
|
||||||
#[serde(rename = "_id")]
|
|
||||||
id: String,
|
|
||||||
/// Id of the server this channel belongs to
|
|
||||||
server: String,
|
|
||||||
|
|
||||||
/// Display name of the channel
|
#[derive(Default)]
|
||||||
name: String,
|
pub struct VoiceInformation {
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
/// Maximium amount of users allowed in the voice channel at once
|
||||||
/// Channel description
|
#[serde(skip_serializing_if = "Option::is_none")]
|
||||||
description: Option<String>,
|
pub max_users: Option<usize>,
|
||||||
/// Custom icon attachment
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
icon: Option<File>,
|
|
||||||
|
|
||||||
/// Default permissions assigned to users in this channel
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
default_permissions: Option<OverrideField>,
|
|
||||||
/// Permissions assigned based on role to this channel
|
|
||||||
#[serde(
|
|
||||||
default = "HashMap::<String, OverrideField>::new",
|
|
||||||
skip_serializing_if = "HashMap::<String, OverrideField>::is_empty"
|
|
||||||
)]
|
|
||||||
role_permissions: HashMap<String, OverrideField>,
|
|
||||||
|
|
||||||
/// Whether this channel is marked as not safe for work
|
|
||||||
#[serde(skip_serializing_if = "crate::if_false", default)]
|
|
||||||
nsfw: bool,
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
@@ -161,6 +144,8 @@ auto_derived!(
|
|||||||
pub default_permissions: Option<OverrideField>,
|
pub default_permissions: Option<OverrideField>,
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
#[serde(skip_serializing_if = "Option::is_none")]
|
||||||
pub last_message_id: Option<String>,
|
pub last_message_id: Option<String>,
|
||||||
|
#[serde(skip_serializing_if = "Option::is_none")]
|
||||||
|
pub voice: Option<VoiceInformation>,
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Optional fields on channel object
|
/// Optional fields on channel object
|
||||||
@@ -168,6 +153,7 @@ auto_derived!(
|
|||||||
Description,
|
Description,
|
||||||
Icon,
|
Icon,
|
||||||
DefaultPermissions,
|
DefaultPermissions,
|
||||||
|
Voice,
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
@@ -219,16 +205,19 @@ impl Channel {
|
|||||||
default_permissions: None,
|
default_permissions: None,
|
||||||
role_permissions: HashMap::new(),
|
role_permissions: HashMap::new(),
|
||||||
nsfw: data.nsfw.unwrap_or(false),
|
nsfw: data.nsfw.unwrap_or(false),
|
||||||
|
voice: data.voice.map(|voice| voice.into()),
|
||||||
},
|
},
|
||||||
v0::LegacyServerChannelType::Voice => Channel::VoiceChannel {
|
v0::LegacyServerChannelType::Voice => Channel::TextChannel {
|
||||||
id: id.clone(),
|
id: id.clone(),
|
||||||
server: server.id.to_owned(),
|
server: server.id.to_owned(),
|
||||||
name: data.name,
|
name: data.name,
|
||||||
description: data.description,
|
description: data.description,
|
||||||
icon: None,
|
icon: None,
|
||||||
|
last_message_id: None,
|
||||||
default_permissions: None,
|
default_permissions: None,
|
||||||
role_permissions: HashMap::new(),
|
role_permissions: HashMap::new(),
|
||||||
nsfw: data.nsfw.unwrap_or(false),
|
nsfw: data.nsfw.unwrap_or(false),
|
||||||
|
voice: Some(data.voice.unwrap_or_default().into()),
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -429,8 +418,28 @@ impl Channel {
|
|||||||
Channel::DirectMessage { id, .. }
|
Channel::DirectMessage { id, .. }
|
||||||
| Channel::Group { id, .. }
|
| Channel::Group { id, .. }
|
||||||
| Channel::SavedMessages { id, .. }
|
| Channel::SavedMessages { id, .. }
|
||||||
| Channel::TextChannel { id, .. }
|
| Channel::TextChannel { id, .. } => id,
|
||||||
| Channel::VoiceChannel { id, .. } => id,
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Clone this channel's server id
|
||||||
|
pub fn server(&self) -> Option<&str> {
|
||||||
|
match self {
|
||||||
|
Channel::TextChannel { server, .. } => Some(server),
|
||||||
|
_ => None,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Gets this channel's voice information
|
||||||
|
pub fn voice(&self) -> Option<Cow<VoiceInformation>> {
|
||||||
|
match self {
|
||||||
|
Self::DirectMessage { .. } | Self::Group { .. } => {
|
||||||
|
Some(Cow::Owned(VoiceInformation::default()))
|
||||||
|
}
|
||||||
|
Self::TextChannel {
|
||||||
|
voice: Some(voice), ..
|
||||||
|
} => Some(Cow::Borrowed(voice)),
|
||||||
|
_ => None,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -447,12 +456,6 @@ impl Channel {
|
|||||||
server,
|
server,
|
||||||
role_permissions,
|
role_permissions,
|
||||||
..
|
..
|
||||||
}
|
|
||||||
| Channel::VoiceChannel {
|
|
||||||
id,
|
|
||||||
server,
|
|
||||||
role_permissions,
|
|
||||||
..
|
|
||||||
} => {
|
} => {
|
||||||
db.set_channel_role_permission(id, role_id, permissions)
|
db.set_channel_role_permission(id, role_id, permissions)
|
||||||
.await?;
|
.await?;
|
||||||
@@ -499,7 +502,7 @@ impl Channel {
|
|||||||
clear: remove.into_iter().map(|v| v.into()).collect(),
|
clear: remove.into_iter().map(|v| v.into()).collect(),
|
||||||
}
|
}
|
||||||
.p(match self {
|
.p(match self {
|
||||||
Self::TextChannel { server, .. } | Self::VoiceChannel { server, .. } => server.clone(),
|
Self::TextChannel { server, .. } => server.clone(),
|
||||||
_ => id,
|
_ => id,
|
||||||
})
|
})
|
||||||
.await;
|
.await;
|
||||||
@@ -511,17 +514,13 @@ impl Channel {
|
|||||||
pub fn remove_field(&mut self, field: &FieldsChannel) {
|
pub fn remove_field(&mut self, field: &FieldsChannel) {
|
||||||
match field {
|
match field {
|
||||||
FieldsChannel::Description => match self {
|
FieldsChannel::Description => match self {
|
||||||
Self::Group { description, .. }
|
Self::Group { description, .. } | Self::TextChannel { description, .. } => {
|
||||||
| Self::TextChannel { description, .. }
|
|
||||||
| Self::VoiceChannel { description, .. } => {
|
|
||||||
description.take();
|
description.take();
|
||||||
}
|
}
|
||||||
_ => {}
|
_ => {}
|
||||||
},
|
},
|
||||||
FieldsChannel::Icon => match self {
|
FieldsChannel::Icon => match self {
|
||||||
Self::Group { icon, .. }
|
Self::Group { icon, .. } | Self::TextChannel { icon, .. } => {
|
||||||
| Self::TextChannel { icon, .. }
|
|
||||||
| Self::VoiceChannel { icon, .. } => {
|
|
||||||
icon.take();
|
icon.take();
|
||||||
}
|
}
|
||||||
_ => {}
|
_ => {}
|
||||||
@@ -530,15 +529,17 @@ impl Channel {
|
|||||||
Self::TextChannel {
|
Self::TextChannel {
|
||||||
default_permissions,
|
default_permissions,
|
||||||
..
|
..
|
||||||
}
|
|
||||||
| Self::VoiceChannel {
|
|
||||||
default_permissions,
|
|
||||||
..
|
|
||||||
} => {
|
} => {
|
||||||
default_permissions.take();
|
default_permissions.take();
|
||||||
}
|
}
|
||||||
_ => {}
|
_ => {}
|
||||||
},
|
},
|
||||||
|
FieldsChannel::Voice => match self {
|
||||||
|
Self::TextChannel { voice, .. } => {
|
||||||
|
voice.take();
|
||||||
|
}
|
||||||
|
_ => {}
|
||||||
|
},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -550,6 +551,7 @@ impl Channel {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// Apply partial channel to channel
|
/// Apply partial channel to channel
|
||||||
|
#[allow(deprecated)]
|
||||||
pub fn apply_options(&mut self, partial: PartialChannel) {
|
pub fn apply_options(&mut self, partial: PartialChannel) {
|
||||||
match self {
|
match self {
|
||||||
Self::SavedMessages { .. } => {}
|
Self::SavedMessages { .. } => {}
|
||||||
@@ -598,15 +600,7 @@ impl Channel {
|
|||||||
nsfw,
|
nsfw,
|
||||||
default_permissions,
|
default_permissions,
|
||||||
role_permissions,
|
role_permissions,
|
||||||
..
|
voice,
|
||||||
}
|
|
||||||
| Self::VoiceChannel {
|
|
||||||
name,
|
|
||||||
description,
|
|
||||||
icon,
|
|
||||||
nsfw,
|
|
||||||
default_permissions,
|
|
||||||
role_permissions,
|
|
||||||
..
|
..
|
||||||
} => {
|
} => {
|
||||||
if let Some(v) = partial.name {
|
if let Some(v) = partial.name {
|
||||||
@@ -632,6 +626,10 @@ impl Channel {
|
|||||||
if let Some(v) = partial.default_permissions {
|
if let Some(v) = partial.default_permissions {
|
||||||
default_permissions.replace(v);
|
default_permissions.replace(v);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if let Some(v) = partial.voice {
|
||||||
|
voice.replace(v);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -646,10 +644,11 @@ impl Channel {
|
|||||||
.private(user.to_string())
|
.private(user.to_string())
|
||||||
.await;
|
.await;
|
||||||
|
|
||||||
|
#[cfg(feature = "tasks")]
|
||||||
crate::tasks::ack::queue_ack(
|
crate::tasks::ack::queue_ack(
|
||||||
self.id().to_string(),
|
self.id().to_string(),
|
||||||
user.to_string(),
|
user.to_string(),
|
||||||
AckEvent::AckMessage {
|
crate::tasks::ack::AckEvent::AckMessage {
|
||||||
id: message.to_string(),
|
id: message.to_string(),
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
@@ -766,12 +765,14 @@ impl Channel {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[cfg(feature = "mongodb")]
|
||||||
impl IntoDocumentPath for FieldsChannel {
|
impl IntoDocumentPath for FieldsChannel {
|
||||||
fn as_path(&self) -> Option<&'static str> {
|
fn as_path(&self) -> Option<&'static str> {
|
||||||
Some(match self {
|
Some(match self {
|
||||||
FieldsChannel::Description => "description",
|
FieldsChannel::Description => "description",
|
||||||
FieldsChannel::Icon => "icon",
|
FieldsChannel::Icon => "icon",
|
||||||
FieldsChannel::DefaultPermissions => "default_permissions",
|
FieldsChannel::DefaultPermissions => "default_permissions",
|
||||||
|
FieldsChannel::Voice => "voice",
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,7 @@
|
|||||||
use crate::{revolt_result::Result, Channel, FieldsChannel, PartialChannel};
|
use crate::{revolt_result::Result, Channel, FieldsChannel, PartialChannel};
|
||||||
use revolt_permissions::OverrideField;
|
use revolt_permissions::OverrideField;
|
||||||
|
|
||||||
|
#[cfg(feature = "mongodb")]
|
||||||
mod mongodb;
|
mod mongodb;
|
||||||
mod reference;
|
mod reference;
|
||||||
|
|
||||||
|
|||||||
@@ -184,7 +184,7 @@ impl AbstractChannels for MongoDb {
|
|||||||
async fn delete_channel(&self, channel: &Channel) -> Result<()> {
|
async fn delete_channel(&self, channel: &Channel) -> Result<()> {
|
||||||
let id = channel.id().to_string();
|
let id = channel.id().to_string();
|
||||||
let server_id = match channel {
|
let server_id = match channel {
|
||||||
Channel::TextChannel { server, .. } | Channel::VoiceChannel { server, .. } => {
|
Channel::TextChannel { server, .. } => {
|
||||||
Some(server)
|
Some(server)
|
||||||
}
|
}
|
||||||
_ => None,
|
_ => None,
|
||||||
|
|||||||
@@ -94,9 +94,6 @@ impl AbstractChannels for ReferenceDb {
|
|||||||
match &mut channel {
|
match &mut channel {
|
||||||
Channel::TextChannel {
|
Channel::TextChannel {
|
||||||
role_permissions, ..
|
role_permissions, ..
|
||||||
}
|
|
||||||
| Channel::VoiceChannel {
|
|
||||||
role_permissions, ..
|
|
||||||
} => {
|
} => {
|
||||||
if role_permissions.get(role_id).is_some() {
|
if role_permissions.get(role_id).is_some() {
|
||||||
role_permissions.remove(role_id);
|
role_permissions.remove(role_id);
|
||||||
|
|||||||
@@ -2,6 +2,7 @@ use revolt_result::Result;
|
|||||||
|
|
||||||
use crate::Emoji;
|
use crate::Emoji;
|
||||||
|
|
||||||
|
#[cfg(feature = "mongodb")]
|
||||||
mod mongodb;
|
mod mongodb;
|
||||||
mod reference;
|
mod reference;
|
||||||
|
|
||||||
|
|||||||
@@ -2,6 +2,7 @@ use revolt_result::Result;
|
|||||||
|
|
||||||
use crate::FileHash;
|
use crate::FileHash;
|
||||||
|
|
||||||
|
#[cfg(feature = "mongodb")]
|
||||||
mod mongodb;
|
mod mongodb;
|
||||||
mod reference;
|
mod reference;
|
||||||
|
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ use crate::File;
|
|||||||
|
|
||||||
use super::FileUsedFor;
|
use super::FileUsedFor;
|
||||||
|
|
||||||
|
#[cfg(feature = "mongodb")]
|
||||||
mod mongodb;
|
mod mongodb;
|
||||||
mod reference;
|
mod reference;
|
||||||
|
|
||||||
|
|||||||
@@ -14,7 +14,6 @@ use validator::Validate;
|
|||||||
|
|
||||||
use crate::{
|
use crate::{
|
||||||
events::client::EventV1,
|
events::client::EventV1,
|
||||||
tasks::{self, ack::AckEvent},
|
|
||||||
util::{
|
util::{
|
||||||
bulk_permissions::BulkDatabasePermissionQuery, idempotency::IdempotencyKey,
|
bulk_permissions::BulkDatabasePermissionQuery, idempotency::IdempotencyKey,
|
||||||
permissions::DatabasePermissionQuery,
|
permissions::DatabasePermissionQuery,
|
||||||
@@ -22,6 +21,9 @@ use crate::{
|
|||||||
Channel, Database, Emoji, File, User, AMQP,
|
Channel, Database, Emoji, File, User, AMQP,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#[cfg(feature = "tasks")]
|
||||||
|
use crate::tasks::{self, ack::AckEvent};
|
||||||
|
|
||||||
auto_derived_partial!(
|
auto_derived_partial!(
|
||||||
/// Message
|
/// Message
|
||||||
pub struct Message {
|
pub struct Message {
|
||||||
@@ -112,6 +114,11 @@ auto_derived!(
|
|||||||
MessagePinned { id: String, by: String },
|
MessagePinned { id: String, by: String },
|
||||||
#[serde(rename = "message_unpinned")]
|
#[serde(rename = "message_unpinned")]
|
||||||
MessageUnpinned { id: String, by: String },
|
MessageUnpinned { id: String, by: String },
|
||||||
|
#[serde(rename = "call_started")]
|
||||||
|
CallStarted {
|
||||||
|
by: String,
|
||||||
|
finished_at: Option<Timestamp>,
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Name and / or avatar override information
|
/// Name and / or avatar override information
|
||||||
@@ -324,9 +331,7 @@ impl Message {
|
|||||||
}
|
}
|
||||||
|
|
||||||
let server_id = match channel {
|
let server_id = match channel {
|
||||||
Channel::TextChannel { ref server, .. } | Channel::VoiceChannel { ref server, .. } => {
|
Channel::TextChannel { ref server, .. } => Some(server.clone()),
|
||||||
Some(server.clone())
|
|
||||||
}
|
|
||||||
_ => None,
|
_ => None,
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -438,7 +443,8 @@ impl Message {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Verify replies are valid.
|
// Verify replies are valid.
|
||||||
let mut replies = HashSet::new();
|
let mut replies = Vec::new();
|
||||||
|
|
||||||
if let Some(entries) = data.replies {
|
if let Some(entries) = data.replies {
|
||||||
if entries.len() > config.features.limits.global.message_replies {
|
if entries.len() > config.features.limits.global.message_replies {
|
||||||
return Err(create_error!(TooManyReplies {
|
return Err(create_error!(TooManyReplies {
|
||||||
@@ -446,6 +452,8 @@ impl Message {
|
|||||||
}));
|
}));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
replies.reserve(entries.len());
|
||||||
|
|
||||||
for ReplyIntent {
|
for ReplyIntent {
|
||||||
id,
|
id,
|
||||||
mention,
|
mention,
|
||||||
@@ -459,7 +467,12 @@ impl Message {
|
|||||||
user_mentions.insert(message.author.to_owned());
|
user_mentions.insert(message.author.to_owned());
|
||||||
}
|
}
|
||||||
|
|
||||||
replies.insert(message.id);
|
// This is O(n^2), but this is faster than a HashSet
|
||||||
|
// when n < 20; as long as the message_replies limit
|
||||||
|
// is reasonable, this will be fast.
|
||||||
|
if !replies.contains(&message.id) {
|
||||||
|
replies.push(message.id);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
// If the referenced message doesn't exist and fail_if_not_exists
|
// If the referenced message doesn't exist and fail_if_not_exists
|
||||||
// is set to false, send the message without the reply.
|
// is set to false, send the message without the reply.
|
||||||
@@ -476,6 +489,7 @@ impl Message {
|
|||||||
|
|
||||||
// Validate the mentions go to users in the channel/server
|
// Validate the mentions go to users in the channel/server
|
||||||
if !user_mentions.is_empty() {
|
if !user_mentions.is_empty() {
|
||||||
|
#[allow(deprecated)]
|
||||||
match channel {
|
match channel {
|
||||||
Channel::DirectMessage { ref recipients, .. }
|
Channel::DirectMessage { ref recipients, .. }
|
||||||
| Channel::Group { ref recipients, .. } => {
|
| Channel::Group { ref recipients, .. } => {
|
||||||
@@ -483,8 +497,7 @@ impl Message {
|
|||||||
user_mentions.retain(|m| recipients_hash.contains(m));
|
user_mentions.retain(|m| recipients_hash.contains(m));
|
||||||
role_mentions.clear();
|
role_mentions.clear();
|
||||||
}
|
}
|
||||||
Channel::TextChannel { ref server, .. }
|
Channel::TextChannel { ref server, .. }=> {
|
||||||
| Channel::VoiceChannel { ref server, .. } => {
|
|
||||||
let mentions_vec = Vec::from_iter(user_mentions.iter().cloned());
|
let mentions_vec = Vec::from_iter(user_mentions.iter().cloned());
|
||||||
|
|
||||||
let valid_members = db.fetch_members(server.as_str(), &mentions_vec[..]).await;
|
let valid_members = db.fetch_members(server.as_str(), &mentions_vec[..]).await;
|
||||||
@@ -532,9 +545,7 @@ impl Message {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if !replies.is_empty() {
|
if !replies.is_empty() {
|
||||||
message
|
message.replies.replace(replies);
|
||||||
.replies
|
|
||||||
.replace(replies.into_iter().collect::<Vec<String>>());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Calculate final message flags
|
// Calculate final message flags
|
||||||
@@ -616,9 +627,11 @@ impl Message {
|
|||||||
.await;
|
.await;
|
||||||
|
|
||||||
// Update last_message_id
|
// Update last_message_id
|
||||||
|
#[cfg(feature = "tasks")]
|
||||||
tasks::last_message_id::queue(self.channel.to_string(), self.id.to_string(), is_dm).await;
|
tasks::last_message_id::queue(self.channel.to_string(), self.id.to_string(), is_dm).await;
|
||||||
|
|
||||||
// Add mentions for affected users
|
// Add mentions for affected users
|
||||||
|
#[cfg(feature = "tasks")]
|
||||||
if !mentions_elsewhere {
|
if !mentions_elsewhere {
|
||||||
if let Some(mentions) = &self.mentions {
|
if let Some(mentions) = &self.mentions {
|
||||||
tasks::ack::queue_message(
|
tasks::ack::queue_message(
|
||||||
@@ -637,6 +650,7 @@ impl Message {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Generate embeds
|
// Generate embeds
|
||||||
|
#[cfg(feature = "tasks")]
|
||||||
if generate_embeds {
|
if generate_embeds {
|
||||||
if let Some(content) = &self.content {
|
if let Some(content) = &self.content {
|
||||||
tasks::process_embeds::queue(
|
tasks::process_embeds::queue(
|
||||||
@@ -677,6 +691,7 @@ impl Message {
|
|||||||
&& (self.mentions.is_some() || self.contains_mass_push_mention())
|
&& (self.mentions.is_some() || self.contains_mass_push_mention())
|
||||||
{
|
{
|
||||||
// send Push notifications
|
// send Push notifications
|
||||||
|
#[cfg(feature = "tasks")]
|
||||||
tasks::ack::queue_message(
|
tasks::ack::queue_message(
|
||||||
self.channel.to_string(),
|
self.channel.to_string(),
|
||||||
AckEvent::ProcessMessage {
|
AckEvent::ProcessMessage {
|
||||||
@@ -787,7 +802,7 @@ impl Message {
|
|||||||
query: MessageQuery,
|
query: MessageQuery,
|
||||||
perspective: &User,
|
perspective: &User,
|
||||||
include_users: Option<bool>,
|
include_users: Option<bool>,
|
||||||
server_id: Option<String>,
|
server_id: Option<&str>,
|
||||||
) -> Result<BulkMessageResponse> {
|
) -> Result<BulkMessageResponse> {
|
||||||
let messages: Vec<v0::Message> = db
|
let messages: Vec<v0::Message> = db
|
||||||
.fetch_messages(query)
|
.fetch_messages(query)
|
||||||
@@ -830,6 +845,7 @@ impl Message {
|
|||||||
v0::SystemMessage::MessageUnpinned { by, .. } => {
|
v0::SystemMessage::MessageUnpinned { by, .. } => {
|
||||||
users.push(by.clone());
|
users.push(by.clone());
|
||||||
}
|
}
|
||||||
|
v0::SystemMessage::CallStarted { by, .. } => users.push(by.clone()),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
users
|
users
|
||||||
@@ -844,7 +860,7 @@ impl Message {
|
|||||||
users,
|
users,
|
||||||
members: if let Some(server_id) = server_id {
|
members: if let Some(server_id) = server_id {
|
||||||
Some(
|
Some(
|
||||||
db.fetch_members(&server_id, &user_ids)
|
db.fetch_members(server_id, &user_ids)
|
||||||
.await?
|
.await?
|
||||||
.into_iter()
|
.into_iter()
|
||||||
.map(Into::into)
|
.map(Into::into)
|
||||||
|
|||||||
@@ -2,6 +2,7 @@ use revolt_result::Result;
|
|||||||
|
|
||||||
use crate::{AppendMessage, FieldsMessage, Message, MessageQuery, PartialMessage};
|
use crate::{AppendMessage, FieldsMessage, Message, MessageQuery, PartialMessage};
|
||||||
|
|
||||||
|
#[cfg(feature = "mongodb")]
|
||||||
mod mongodb;
|
mod mongodb;
|
||||||
mod reference;
|
mod reference;
|
||||||
|
|
||||||
|
|||||||
@@ -247,7 +247,7 @@ impl AbstractMessages for ReferenceDb {
|
|||||||
let mut messages = self.messages.lock().await;
|
let mut messages = self.messages.lock().await;
|
||||||
if let Some(message) = messages.get_mut(id) {
|
if let Some(message) = messages.get_mut(id) {
|
||||||
if let Some(users) = message.reactions.get_mut(emoji) {
|
if let Some(users) = message.reactions.get_mut(emoji) {
|
||||||
users.remove(&user.to_string());
|
users.swap_remove(&user.to_string());
|
||||||
}
|
}
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
@@ -260,7 +260,7 @@ impl AbstractMessages for ReferenceDb {
|
|||||||
async fn clear_reaction(&self, id: &str, emoji: &str) -> Result<()> {
|
async fn clear_reaction(&self, id: &str, emoji: &str) -> Result<()> {
|
||||||
let mut messages = self.messages.lock().await;
|
let mut messages = self.messages.lock().await;
|
||||||
if let Some(message) = messages.get_mut(id) {
|
if let Some(message) = messages.get_mut(id) {
|
||||||
message.reactions.remove(emoji);
|
message.reactions.swap_remove(emoji);
|
||||||
Ok(())
|
Ok(())
|
||||||
} else {
|
} else {
|
||||||
Err(create_error!(NotFound))
|
Err(create_error!(NotFound))
|
||||||
|
|||||||
@@ -38,7 +38,10 @@ pub use servers::*;
|
|||||||
pub use user_settings::*;
|
pub use user_settings::*;
|
||||||
pub use users::*;
|
pub use users::*;
|
||||||
|
|
||||||
use crate::{Database, MongoDb, ReferenceDb};
|
use crate::{Database, ReferenceDb};
|
||||||
|
|
||||||
|
#[cfg(feature = "mongodb")]
|
||||||
|
use crate::MongoDb;
|
||||||
|
|
||||||
pub trait AbstractDatabase:
|
pub trait AbstractDatabase:
|
||||||
Sync
|
Sync
|
||||||
@@ -66,6 +69,8 @@ pub trait AbstractDatabase:
|
|||||||
}
|
}
|
||||||
|
|
||||||
impl AbstractDatabase for ReferenceDb {}
|
impl AbstractDatabase for ReferenceDb {}
|
||||||
|
|
||||||
|
#[cfg(feature = "mongodb")]
|
||||||
impl AbstractDatabase for MongoDb {}
|
impl AbstractDatabase for MongoDb {}
|
||||||
|
|
||||||
impl std::ops::Deref for Database {
|
impl std::ops::Deref for Database {
|
||||||
@@ -74,6 +79,7 @@ impl std::ops::Deref for Database {
|
|||||||
fn deref(&self) -> &Self::Target {
|
fn deref(&self) -> &Self::Target {
|
||||||
match &self {
|
match &self {
|
||||||
Database::Reference(dummy) => dummy,
|
Database::Reference(dummy) => dummy,
|
||||||
|
#[cfg(feature = "mongodb")]
|
||||||
Database::MongoDb(mongo) => mongo,
|
Database::MongoDb(mongo) => mongo,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,6 +2,7 @@ use revolt_result::Result;
|
|||||||
|
|
||||||
use crate::PolicyChange;
|
use crate::PolicyChange;
|
||||||
|
|
||||||
|
#[cfg(feature = "mongodb")]
|
||||||
mod mongodb;
|
mod mongodb;
|
||||||
mod reference;
|
mod reference;
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,8 @@
|
|||||||
use std::time::Duration;
|
use std::time::Duration;
|
||||||
|
|
||||||
use crate::{revolt_result::Result, RatelimitEvent, RatelimitEventType};
|
use crate::{revolt_result::Result, RatelimitEvent, RatelimitEventType};
|
||||||
|
|
||||||
|
#[cfg(feature = "mongodb")]
|
||||||
mod mongodb;
|
mod mongodb;
|
||||||
mod reference;
|
mod reference;
|
||||||
|
|
||||||
|
|||||||
@@ -2,6 +2,7 @@ use revolt_result::Result;
|
|||||||
|
|
||||||
use crate::Report;
|
use crate::Report;
|
||||||
|
|
||||||
|
#[cfg(feature = "mongodb")]
|
||||||
mod mongodb;
|
mod mongodb;
|
||||||
mod reference;
|
mod reference;
|
||||||
|
|
||||||
|
|||||||
@@ -2,6 +2,7 @@ use revolt_result::Result;
|
|||||||
|
|
||||||
use crate::Snapshot;
|
use crate::Snapshot;
|
||||||
|
|
||||||
|
#[cfg(feature = "mongodb")]
|
||||||
mod mongodb;
|
mod mongodb;
|
||||||
mod reference;
|
mod reference;
|
||||||
|
|
||||||
|
|||||||
@@ -2,6 +2,7 @@ use revolt_result::Result;
|
|||||||
|
|
||||||
use crate::{MemberCompositeKey, ServerBan};
|
use crate::{MemberCompositeKey, ServerBan};
|
||||||
|
|
||||||
|
#[cfg(feature = "mongodb")]
|
||||||
mod mongodb;
|
mod mongodb;
|
||||||
mod reference;
|
mod reference;
|
||||||
|
|
||||||
|
|||||||
@@ -3,10 +3,18 @@ use revolt_permissions::{calculate_channel_permissions, ChannelPermission};
|
|||||||
use revolt_result::{create_error, Result};
|
use revolt_result::{create_error, Result};
|
||||||
|
|
||||||
use crate::{
|
use crate::{
|
||||||
events::client::EventV1, util::permissions::DatabasePermissionQuery, Channel, Database, File,
|
events::client::EventV1, util::permissions::DatabasePermissionQuery, Channel,
|
||||||
Server, SystemMessage, User,
|
Database, File, Server, SystemMessage, User,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
fn default_true() -> bool {
|
||||||
|
true
|
||||||
|
}
|
||||||
|
|
||||||
|
fn is_true(x: &bool) -> bool {
|
||||||
|
*x
|
||||||
|
}
|
||||||
|
|
||||||
auto_derived_partial!(
|
auto_derived_partial!(
|
||||||
/// Server Member
|
/// Server Member
|
||||||
pub struct Member {
|
pub struct Member {
|
||||||
@@ -30,13 +38,24 @@ auto_derived_partial!(
|
|||||||
/// Timestamp this member is timed out until
|
/// Timestamp this member is timed out until
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
#[serde(skip_serializing_if = "Option::is_none")]
|
||||||
pub timeout: Option<Timestamp>,
|
pub timeout: Option<Timestamp>,
|
||||||
|
|
||||||
|
/// Whether the member is server-wide voice muted
|
||||||
|
#[serde(skip_serializing_if = "is_true", default = "default_true")]
|
||||||
|
pub can_publish: bool,
|
||||||
|
/// Whether the member is server-wide voice deafened
|
||||||
|
#[serde(skip_serializing_if = "is_true", default = "default_true")]
|
||||||
|
pub can_receive: bool,
|
||||||
|
|
||||||
|
// This value only exists in the database, not the models.
|
||||||
|
// If it is not-None, the database layer should return None to member fetching queries.
|
||||||
|
// pub pending_deletion_at: Option<Timestamp>
|
||||||
},
|
},
|
||||||
"PartialMember"
|
"PartialMember"
|
||||||
);
|
);
|
||||||
|
|
||||||
auto_derived!(
|
auto_derived!(
|
||||||
/// Composite primary key consisting of server and user id
|
/// Composite primary key consisting of server and user id
|
||||||
#[derive(Hash, Default)]
|
#[derive(Hash, Default, Eq)]
|
||||||
pub struct MemberCompositeKey {
|
pub struct MemberCompositeKey {
|
||||||
/// Server Id
|
/// Server Id
|
||||||
pub server: String,
|
pub server: String,
|
||||||
@@ -50,6 +69,9 @@ auto_derived!(
|
|||||||
Avatar,
|
Avatar,
|
||||||
Roles,
|
Roles,
|
||||||
Timeout,
|
Timeout,
|
||||||
|
CanReceive,
|
||||||
|
CanPublish,
|
||||||
|
JoinedAt,
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Member removal intention
|
/// Member removal intention
|
||||||
@@ -69,6 +91,8 @@ impl Default for Member {
|
|||||||
avatar: None,
|
avatar: None,
|
||||||
roles: vec![],
|
roles: vec![],
|
||||||
timeout: None,
|
timeout: None,
|
||||||
|
can_publish: true,
|
||||||
|
can_receive: true,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -90,7 +114,7 @@ impl Member {
|
|||||||
return Err(create_error!(AlreadyInServer));
|
return Err(create_error!(AlreadyInServer));
|
||||||
}
|
}
|
||||||
|
|
||||||
let member = Member {
|
let mut member = Member {
|
||||||
id: MemberCompositeKey {
|
id: MemberCompositeKey {
|
||||||
server: server.id.to_string(),
|
server: server.id.to_string(),
|
||||||
user: user.id.to_string(),
|
user: user.id.to_string(),
|
||||||
@@ -98,7 +122,9 @@ impl Member {
|
|||||||
..Default::default()
|
..Default::default()
|
||||||
};
|
};
|
||||||
|
|
||||||
db.insert_member(&member).await?;
|
if let Some(updated) = db.insert_or_merge_member(&member).await? {
|
||||||
|
member = updated;
|
||||||
|
}
|
||||||
|
|
||||||
let should_fetch = channels.is_none();
|
let should_fetch = channels.is_none();
|
||||||
let mut channels = channels.unwrap_or_default();
|
let mut channels = channels.unwrap_or_default();
|
||||||
@@ -121,9 +147,20 @@ impl Member {
|
|||||||
|
|
||||||
let emojis = db.fetch_emoji_by_parent_id(&server.id).await?;
|
let emojis = db.fetch_emoji_by_parent_id(&server.id).await?;
|
||||||
|
|
||||||
|
#[allow(unused_mut)]
|
||||||
|
let mut voice_states = Vec::new();
|
||||||
|
|
||||||
|
#[cfg(feature = "voice")]
|
||||||
|
for channel in &channels {
|
||||||
|
if let Ok(Some(voice_state)) = crate::voice::get_channel_voice_state(channel).await {
|
||||||
|
voice_states.push(voice_state)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
EventV1::ServerMemberJoin {
|
EventV1::ServerMemberJoin {
|
||||||
id: server.id.clone(),
|
id: server.id.clone(),
|
||||||
user: user.id.clone(),
|
user: user.id.clone(),
|
||||||
|
member: member.clone().into(),
|
||||||
}
|
}
|
||||||
.p(server.id.clone())
|
.p(server.id.clone())
|
||||||
.await;
|
.await;
|
||||||
@@ -137,6 +174,7 @@ impl Member {
|
|||||||
.map(|channel| channel.into())
|
.map(|channel| channel.into())
|
||||||
.collect(),
|
.collect(),
|
||||||
emojis: emojis.into_iter().map(|emoji| emoji.into()).collect(),
|
emojis: emojis.into_iter().map(|emoji| emoji.into()).collect(),
|
||||||
|
voice_states
|
||||||
}
|
}
|
||||||
.private(user.id.clone())
|
.private(user.id.clone())
|
||||||
.await;
|
.await;
|
||||||
@@ -186,10 +224,13 @@ impl Member {
|
|||||||
|
|
||||||
pub fn remove_field(&mut self, field: &FieldsMember) {
|
pub fn remove_field(&mut self, field: &FieldsMember) {
|
||||||
match field {
|
match field {
|
||||||
|
FieldsMember::JoinedAt => (),
|
||||||
FieldsMember::Avatar => self.avatar = None,
|
FieldsMember::Avatar => self.avatar = None,
|
||||||
FieldsMember::Nickname => self.nickname = None,
|
FieldsMember::Nickname => self.nickname = None,
|
||||||
FieldsMember::Roles => self.roles.clear(),
|
FieldsMember::Roles => self.roles.clear(),
|
||||||
FieldsMember::Timeout => self.timeout = None,
|
FieldsMember::Timeout => self.timeout = None,
|
||||||
|
FieldsMember::CanReceive => self.can_receive = true,
|
||||||
|
FieldsMember::CanPublish => self.can_publish = true,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -224,7 +265,7 @@ impl Member {
|
|||||||
intention: RemovalIntention,
|
intention: RemovalIntention,
|
||||||
silent: bool,
|
silent: bool,
|
||||||
) -> Result<()> {
|
) -> Result<()> {
|
||||||
db.delete_member(&self.id).await?;
|
db.soft_delete_member(&self.id).await?;
|
||||||
|
|
||||||
EventV1::ServerMemberLeave {
|
EventV1::ServerMemberLeave {
|
||||||
id: self.id.server.to_string(),
|
id: self.id.server.to_string(),
|
||||||
@@ -260,3 +301,74 @@ impl Member {
|
|||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[cfg(test)]
|
||||||
|
mod tests {
|
||||||
|
use iso8601_timestamp::{Duration, Timestamp};
|
||||||
|
use revolt_models::v0::DataCreateServer;
|
||||||
|
|
||||||
|
use crate::{Member, PartialMember, RemovalIntention, Server, User};
|
||||||
|
|
||||||
|
#[async_std::test]
|
||||||
|
async fn muted_member_rejoin() {
|
||||||
|
database_test!(|db| async move {
|
||||||
|
match db {
|
||||||
|
crate::Database::Reference(_) => return,
|
||||||
|
crate::Database::MongoDb(_) => (),
|
||||||
|
}
|
||||||
|
let owner = User::create(&db, "Server Owner".to_string(), None, None)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
|
let kickable_user = User::create(&db, "Member".to_string(), None, None)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
|
let server = Server::create(
|
||||||
|
&db,
|
||||||
|
DataCreateServer {
|
||||||
|
name: "Server".to_string(),
|
||||||
|
description: None,
|
||||||
|
nsfw: None,
|
||||||
|
},
|
||||||
|
&owner,
|
||||||
|
false,
|
||||||
|
)
|
||||||
|
.await
|
||||||
|
.unwrap()
|
||||||
|
.0;
|
||||||
|
|
||||||
|
Member::create(&db, &server, &owner, None).await.unwrap();
|
||||||
|
let mut kickable_member = Member::create(&db, &server, &kickable_user, None)
|
||||||
|
.await
|
||||||
|
.unwrap()
|
||||||
|
.0;
|
||||||
|
|
||||||
|
kickable_member
|
||||||
|
.update(
|
||||||
|
&db,
|
||||||
|
PartialMember {
|
||||||
|
timeout: Some(Timestamp::now_utc() + Duration::minutes(5)),
|
||||||
|
..Default::default()
|
||||||
|
},
|
||||||
|
vec![],
|
||||||
|
)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
|
assert!(kickable_member.in_timeout());
|
||||||
|
|
||||||
|
kickable_member
|
||||||
|
.remove(&db, &server, RemovalIntention::Kick, false)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
|
let kickable_member = Member::create(&db, &server, &kickable_user, None)
|
||||||
|
.await
|
||||||
|
.unwrap()
|
||||||
|
.0;
|
||||||
|
|
||||||
|
assert!(kickable_member.in_timeout())
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
@@ -1,16 +1,20 @@
|
|||||||
use ::mongodb::SessionCursor;
|
#[cfg(feature = "mongodb")]
|
||||||
|
use ::mongodb::{ClientSession, SessionCursor};
|
||||||
|
|
||||||
use revolt_result::Result;
|
use revolt_result::Result;
|
||||||
|
|
||||||
use crate::{FieldsMember, Member, MemberCompositeKey, PartialMember};
|
use crate::{FieldsMember, Member, MemberCompositeKey, PartialMember};
|
||||||
|
|
||||||
|
#[cfg(feature = "mongodb")]
|
||||||
mod mongodb;
|
mod mongodb;
|
||||||
mod reference;
|
mod reference;
|
||||||
|
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
|
#[allow(clippy::large_enum_variant)]
|
||||||
pub enum ChunkedServerMembersGenerator {
|
pub enum ChunkedServerMembersGenerator {
|
||||||
#[cfg(feature = "mongodb")]
|
#[cfg(feature = "mongodb")]
|
||||||
MongoDb {
|
MongoDb {
|
||||||
session: ::mongodb::ClientSession,
|
session: ClientSession,
|
||||||
cursor: Option<SessionCursor<Member>>,
|
cursor: Option<SessionCursor<Member>>,
|
||||||
},
|
},
|
||||||
|
|
||||||
@@ -22,7 +26,7 @@ pub enum ChunkedServerMembersGenerator {
|
|||||||
|
|
||||||
impl ChunkedServerMembersGenerator {
|
impl ChunkedServerMembersGenerator {
|
||||||
#[cfg(feature = "mongodb")]
|
#[cfg(feature = "mongodb")]
|
||||||
pub fn new_mongo(session: ::mongodb::ClientSession, cursor: SessionCursor<Member>) -> Self {
|
pub fn new_mongo(session: ClientSession, cursor: SessionCursor<Member>) -> Self {
|
||||||
ChunkedServerMembersGenerator::MongoDb {
|
ChunkedServerMembersGenerator::MongoDb {
|
||||||
session,
|
session,
|
||||||
cursor: Some(cursor),
|
cursor: Some(cursor),
|
||||||
@@ -69,13 +73,13 @@ impl ChunkedServerMembersGenerator {
|
|||||||
#[async_trait]
|
#[async_trait]
|
||||||
pub trait AbstractServerMembers: Sync + Send {
|
pub trait AbstractServerMembers: Sync + Send {
|
||||||
/// Insert a new server member into the database
|
/// Insert a new server member into the database
|
||||||
async fn insert_member(&self, member: &Member) -> Result<()>;
|
async fn insert_or_merge_member(&self, member: &Member) -> Result<Option<Member>>;
|
||||||
|
|
||||||
/// Fetch a server member by their id
|
/// Fetch a server member by their id
|
||||||
async fn fetch_member(&self, server_id: &str, user_id: &str) -> Result<Member>;
|
async fn fetch_member(&self, server_id: &str, user_id: &str) -> Result<Member>;
|
||||||
|
|
||||||
/// Fetch all members in a server
|
/// Fetch all members in a server
|
||||||
async fn fetch_all_members<'a>(&self, server_id: &str) -> Result<Vec<Member>>;
|
async fn fetch_all_members(&self, server_id: &str) -> Result<Vec<Member>>;
|
||||||
|
|
||||||
/// Fetch all members in a server as an iterator
|
/// Fetch all members in a server as an iterator
|
||||||
async fn fetch_all_members_chunked(
|
async fn fetch_all_members_chunked(
|
||||||
@@ -96,10 +100,10 @@ pub trait AbstractServerMembers: Sync + Send {
|
|||||||
) -> Result<ChunkedServerMembersGenerator>;
|
) -> Result<ChunkedServerMembersGenerator>;
|
||||||
|
|
||||||
/// Fetch all memberships for a user
|
/// Fetch all memberships for a user
|
||||||
async fn fetch_all_memberships<'a>(&self, user_id: &str) -> Result<Vec<Member>>;
|
async fn fetch_all_memberships(&self, user_id: &str) -> Result<Vec<Member>>;
|
||||||
|
|
||||||
/// Fetch multiple members by their ids
|
/// Fetch multiple members by their ids
|
||||||
async fn fetch_members<'a>(&self, server_id: &str, ids: &'a [String]) -> Result<Vec<Member>>;
|
async fn fetch_members(&self, server_id: &str, ids: &[String]) -> Result<Vec<Member>>;
|
||||||
|
|
||||||
/// Fetch member count of a server
|
/// Fetch member count of a server
|
||||||
async fn fetch_member_count(&self, server_id: &str) -> Result<usize>;
|
async fn fetch_member_count(&self, server_id: &str) -> Result<usize>;
|
||||||
@@ -115,6 +119,14 @@ pub trait AbstractServerMembers: Sync + Send {
|
|||||||
remove: Vec<FieldsMember>,
|
remove: Vec<FieldsMember>,
|
||||||
) -> Result<()>;
|
) -> Result<()>;
|
||||||
|
|
||||||
/// Delete a server member by their id
|
/// Marks a user as no longer a member of a server, while retaining the database value.
|
||||||
async fn delete_member(&self, id: &MemberCompositeKey) -> Result<()>;
|
/// This is used to keep information such as timeouts in place, but will remove information such as join date and applied roles.
|
||||||
|
async fn soft_delete_member(&self, id: &MemberCompositeKey) -> Result<()>;
|
||||||
|
|
||||||
|
/// Forcibly delete a server member by their id.
|
||||||
|
/// This will cancel any pending timeouts or other longer term actions, and they will not be reapplied on rejoin.
|
||||||
|
async fn force_delete_member(&self, id: &MemberCompositeKey) -> Result<()>;
|
||||||
|
|
||||||
|
/// Fetch all members who have been marked for deletion.
|
||||||
|
async fn remove_dangling_members(&self) -> Result<()>;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,4 +1,6 @@
|
|||||||
|
use bson::Document;
|
||||||
use futures::StreamExt;
|
use futures::StreamExt;
|
||||||
|
use iso8601_timestamp::Timestamp;
|
||||||
use mongodb::options::ReadConcern;
|
use mongodb::options::ReadConcern;
|
||||||
use revolt_result::Result;
|
use revolt_result::Result;
|
||||||
|
|
||||||
@@ -11,9 +13,42 @@ static COL: &str = "server_members";
|
|||||||
|
|
||||||
#[async_trait]
|
#[async_trait]
|
||||||
impl AbstractServerMembers for MongoDb {
|
impl AbstractServerMembers for MongoDb {
|
||||||
/// Insert a new server member into the database
|
/// Insert a new server member (or use the existing member if one is found)
|
||||||
async fn insert_member(&self, member: &Member) -> Result<()> {
|
async fn insert_or_merge_member(&self, member: &Member) -> Result<Option<Member>> {
|
||||||
query!(self, insert_one, COL, &member).map(|_| ())
|
let existing: Result<Option<Document>> = query!(
|
||||||
|
self,
|
||||||
|
find_one,
|
||||||
|
COL,
|
||||||
|
doc! {
|
||||||
|
"_id.server": &member.id.server,
|
||||||
|
"_id.user": &member.id.user,
|
||||||
|
"pending_deletion_at": {"$exists": true}
|
||||||
|
}
|
||||||
|
);
|
||||||
|
// Update the existing record if it exist, otherwise make a new record
|
||||||
|
if existing.is_ok_and(|x| x.is_some()) {
|
||||||
|
self.col::<Member>(COL)
|
||||||
|
.find_one_and_update(
|
||||||
|
doc! {
|
||||||
|
"_id.server": &member.id.server,
|
||||||
|
"_id.user": &member.id.user,
|
||||||
|
},
|
||||||
|
doc! {
|
||||||
|
"$set": {
|
||||||
|
"joined_at": member.joined_at.duration_since(Timestamp::UNIX_EPOCH).whole_seconds(),
|
||||||
|
},
|
||||||
|
"$unset": {
|
||||||
|
"pending_deletion_at": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
|
)
|
||||||
|
.return_document(mongodb::options::ReturnDocument::After)
|
||||||
|
.await
|
||||||
|
.map_err(|_| create_database_error!("update_one", COL))
|
||||||
|
} else {
|
||||||
|
query!(self, insert_one, COL, &member).map(|_| ())?;
|
||||||
|
Ok(None)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Fetch a server member by their id
|
/// Fetch a server member by their id
|
||||||
@@ -24,18 +59,20 @@ impl AbstractServerMembers for MongoDb {
|
|||||||
COL,
|
COL,
|
||||||
doc! {
|
doc! {
|
||||||
"_id.server": server_id,
|
"_id.server": server_id,
|
||||||
"_id.user": user_id
|
"_id.user": user_id,
|
||||||
|
"pending_deletion_at": {"$exists": false}
|
||||||
}
|
}
|
||||||
)?
|
)?
|
||||||
.ok_or_else(|| create_error!(NotFound))
|
.ok_or_else(|| create_error!(NotFound))
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Fetch all members in a server
|
/// Fetch all members in a server
|
||||||
async fn fetch_all_members<'a>(&self, server_id: &str) -> Result<Vec<Member>> {
|
async fn fetch_all_members(&self, server_id: &str) -> Result<Vec<Member>> {
|
||||||
Ok(self
|
Ok(self
|
||||||
.col::<Member>(COL)
|
.col::<Member>(COL)
|
||||||
.find(doc! {
|
.find(doc! {
|
||||||
"_id.server": server_id
|
"_id.server": server_id,
|
||||||
|
"pending_deletion_at": {"$exists": false}
|
||||||
})
|
})
|
||||||
.await
|
.await
|
||||||
.map_err(|_| create_database_error!("find", COL))?
|
.map_err(|_| create_database_error!("find", COL))?
|
||||||
@@ -139,11 +176,12 @@ impl AbstractServerMembers for MongoDb {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// Fetch all memberships for a user
|
/// Fetch all memberships for a user
|
||||||
async fn fetch_all_memberships<'a>(&self, user_id: &str) -> Result<Vec<Member>> {
|
async fn fetch_all_memberships(&self, user_id: &str) -> Result<Vec<Member>> {
|
||||||
Ok(self
|
Ok(self
|
||||||
.col::<Member>(COL)
|
.col::<Member>(COL)
|
||||||
.find(doc! {
|
.find(doc! {
|
||||||
"_id.user": user_id
|
"_id.user": user_id,
|
||||||
|
"pending_deletion_at": {"$exists": false}
|
||||||
})
|
})
|
||||||
.await
|
.await
|
||||||
.map_err(|_| create_database_error!("find", COL))?
|
.map_err(|_| create_database_error!("find", COL))?
|
||||||
@@ -159,11 +197,12 @@ impl AbstractServerMembers for MongoDb {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// Fetch multiple members by their ids
|
/// Fetch multiple members by their ids
|
||||||
async fn fetch_members<'a>(&self, server_id: &str, ids: &'a [String]) -> Result<Vec<Member>> {
|
async fn fetch_members(&self, server_id: &str, ids: &[String]) -> Result<Vec<Member>> {
|
||||||
Ok(self
|
Ok(self
|
||||||
.col::<Member>(COL)
|
.col::<Member>(COL)
|
||||||
.find(doc! {
|
.find(doc! {
|
||||||
"_id.server": server_id,
|
"_id.server": server_id,
|
||||||
|
"pending_deletion_at": {"$exists": false},
|
||||||
"_id.user": {
|
"_id.user": {
|
||||||
"$in": ids
|
"$in": ids
|
||||||
}
|
}
|
||||||
@@ -185,7 +224,8 @@ impl AbstractServerMembers for MongoDb {
|
|||||||
async fn fetch_member_count(&self, server_id: &str) -> Result<usize> {
|
async fn fetch_member_count(&self, server_id: &str) -> Result<usize> {
|
||||||
self.col::<Member>(COL)
|
self.col::<Member>(COL)
|
||||||
.count_documents(doc! {
|
.count_documents(doc! {
|
||||||
"_id.server": server_id
|
"_id.server": server_id,
|
||||||
|
"pending_deletion_at": {"$exists": false}
|
||||||
})
|
})
|
||||||
.await
|
.await
|
||||||
.map(|c| c as usize)
|
.map(|c| c as usize)
|
||||||
@@ -196,7 +236,8 @@ impl AbstractServerMembers for MongoDb {
|
|||||||
async fn fetch_server_count(&self, user_id: &str) -> Result<usize> {
|
async fn fetch_server_count(&self, user_id: &str) -> Result<usize> {
|
||||||
self.col::<Member>(COL)
|
self.col::<Member>(COL)
|
||||||
.count_documents(doc! {
|
.count_documents(doc! {
|
||||||
"_id.user": user_id
|
"_id.user": user_id,
|
||||||
|
"pending_deletion_at": {"$exists": false}
|
||||||
})
|
})
|
||||||
.await
|
.await
|
||||||
.map(|c| c as usize)
|
.map(|c| c as usize)
|
||||||
@@ -225,8 +266,42 @@ impl AbstractServerMembers for MongoDb {
|
|||||||
.map(|_| ())
|
.map(|_| ())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Marks a member for deletion.
|
||||||
|
/// This will remove the record if the user has no pending actions (eg. timeout),
|
||||||
|
/// otherwise will slate the record for deletion by revolt_crond once the actions expire.
|
||||||
|
async fn soft_delete_member(&self, id: &MemberCompositeKey) -> Result<()> {
|
||||||
|
let member = self.fetch_member(&id.server, &id.user).await;
|
||||||
|
if let Ok(member) = member {
|
||||||
|
if member.in_timeout() {
|
||||||
|
self.col::<Document>(COL)
|
||||||
|
.update_many(
|
||||||
|
doc! {
|
||||||
|
"_id.server": &id.server,
|
||||||
|
"_id.user": &id.user,
|
||||||
|
},
|
||||||
|
doc! {
|
||||||
|
"$set": {"pending_deletion_at": format!("{}", member.timeout.unwrap().format())},
|
||||||
|
"$unset": {
|
||||||
|
"joined_at": "",
|
||||||
|
"avatar": "",
|
||||||
|
"nickname": "",
|
||||||
|
"roles": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
|
)
|
||||||
|
.await
|
||||||
|
.map(|_| ())
|
||||||
|
.map_err(|_| create_database_error!("update_many", COL))
|
||||||
|
} else {
|
||||||
|
self.force_delete_member(id).await
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
Err(create_database_error!("fetch_member", COL))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// Delete a server member by their id
|
/// Delete a server member by their id
|
||||||
async fn delete_member(&self, id: &MemberCompositeKey) -> Result<()> {
|
async fn force_delete_member(&self, id: &MemberCompositeKey) -> Result<()> {
|
||||||
query!(
|
query!(
|
||||||
self,
|
self,
|
||||||
delete_one,
|
delete_one,
|
||||||
@@ -238,15 +313,31 @@ impl AbstractServerMembers for MongoDb {
|
|||||||
)
|
)
|
||||||
.map(|_| ())
|
.map(|_| ())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async fn remove_dangling_members(&self) -> Result<()> {
|
||||||
|
let now = Timestamp::now_utc();
|
||||||
|
let date = bson::to_bson(&now).expect("Failed to serialize timestamp");
|
||||||
|
|
||||||
|
self.col::<Document>(COL)
|
||||||
|
.delete_many(doc! {
|
||||||
|
"pending_deletion_at": {"$lt": date}
|
||||||
|
})
|
||||||
|
.await
|
||||||
|
.map(|_| ())
|
||||||
|
.map_err(|_| create_database_error!("count_documents", COL))
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl IntoDocumentPath for FieldsMember {
|
impl IntoDocumentPath for FieldsMember {
|
||||||
fn as_path(&self) -> Option<&'static str> {
|
fn as_path(&self) -> Option<&'static str> {
|
||||||
Some(match self {
|
Some(match self {
|
||||||
|
FieldsMember::JoinedAt => "joined_at",
|
||||||
FieldsMember::Avatar => "avatar",
|
FieldsMember::Avatar => "avatar",
|
||||||
FieldsMember::Nickname => "nickname",
|
FieldsMember::Nickname => "nickname",
|
||||||
FieldsMember::Roles => "roles",
|
FieldsMember::Roles => "roles",
|
||||||
FieldsMember::Timeout => "timeout",
|
FieldsMember::Timeout => "timeout",
|
||||||
|
FieldsMember::CanPublish => "can_publish",
|
||||||
|
FieldsMember::CanReceive => "can_receive",
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -8,13 +8,13 @@ use super::{AbstractServerMembers, ChunkedServerMembersGenerator};
|
|||||||
#[async_trait]
|
#[async_trait]
|
||||||
impl AbstractServerMembers for ReferenceDb {
|
impl AbstractServerMembers for ReferenceDb {
|
||||||
/// Insert a new server member into the database
|
/// Insert a new server member into the database
|
||||||
async fn insert_member(&self, member: &Member) -> Result<()> {
|
async fn insert_or_merge_member(&self, member: &Member) -> Result<Option<Member>> {
|
||||||
let mut server_members = self.server_members.lock().await;
|
let mut server_members = self.server_members.lock().await;
|
||||||
if server_members.contains_key(&member.id) {
|
if server_members.contains_key(&member.id) {
|
||||||
Err(create_database_error!("insert", "member"))
|
Err(create_database_error!("insert", "member"))
|
||||||
} else {
|
} else {
|
||||||
server_members.insert(member.id.clone(), member.clone());
|
server_members.insert(member.id.clone(), member.clone());
|
||||||
Ok(())
|
Ok(None)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -31,7 +31,7 @@ impl AbstractServerMembers for ReferenceDb {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// Fetch all members in a server
|
/// Fetch all members in a server
|
||||||
async fn fetch_all_members<'a>(&self, server_id: &str) -> Result<Vec<Member>> {
|
async fn fetch_all_members(&self, server_id: &str) -> Result<Vec<Member>> {
|
||||||
let server_members = self.server_members.lock().await;
|
let server_members = self.server_members.lock().await;
|
||||||
Ok(server_members
|
Ok(server_members
|
||||||
.values()
|
.values()
|
||||||
@@ -105,7 +105,7 @@ impl AbstractServerMembers for ReferenceDb {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// Fetch all memberships for a user
|
/// Fetch all memberships for a user
|
||||||
async fn fetch_all_memberships<'a>(&self, user_id: &str) -> Result<Vec<Member>> {
|
async fn fetch_all_memberships(&self, user_id: &str) -> Result<Vec<Member>> {
|
||||||
let server_members = self.server_members.lock().await;
|
let server_members = self.server_members.lock().await;
|
||||||
Ok(server_members
|
Ok(server_members
|
||||||
.values()
|
.values()
|
||||||
@@ -115,7 +115,7 @@ impl AbstractServerMembers for ReferenceDb {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// Fetch multiple members by their ids
|
/// Fetch multiple members by their ids
|
||||||
async fn fetch_members<'a>(&self, server_id: &str, ids: &'a [String]) -> Result<Vec<Member>> {
|
async fn fetch_members(&self, server_id: &str, ids: &[String]) -> Result<Vec<Member>> {
|
||||||
let server_members = self.server_members.lock().await;
|
let server_members = self.server_members.lock().await;
|
||||||
Ok(ids
|
Ok(ids
|
||||||
.iter()
|
.iter()
|
||||||
@@ -169,8 +169,26 @@ impl AbstractServerMembers for ReferenceDb {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Soft delete a member
|
||||||
|
async fn soft_delete_member(&self, id: &MemberCompositeKey) -> Result<()> {
|
||||||
|
let mut server_members = self.server_members.lock().await;
|
||||||
|
|
||||||
|
let member = server_members.get_mut(id);
|
||||||
|
if let Some(member) = member {
|
||||||
|
if member.in_timeout() {
|
||||||
|
panic!("Soft deletion is not implemented.")
|
||||||
|
} else if server_members.remove(id).is_some() {
|
||||||
|
Ok(())
|
||||||
|
} else {
|
||||||
|
Err(create_error!(NotFound))
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
Err(create_error!(NotFound))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// Delete a server member by their id
|
/// Delete a server member by their id
|
||||||
async fn delete_member(&self, id: &MemberCompositeKey) -> Result<()> {
|
async fn force_delete_member(&self, id: &MemberCompositeKey) -> Result<()> {
|
||||||
let mut server_members = self.server_members.lock().await;
|
let mut server_members = self.server_members.lock().await;
|
||||||
if server_members.remove(id).is_some() {
|
if server_members.remove(id).is_some() {
|
||||||
Ok(())
|
Ok(())
|
||||||
@@ -178,4 +196,8 @@ impl AbstractServerMembers for ReferenceDb {
|
|||||||
Err(create_error!(NotFound))
|
Err(create_error!(NotFound))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async fn remove_dangling_members(&self) -> Result<()> {
|
||||||
|
todo!()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -181,7 +181,7 @@ impl Server {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// Update server data
|
/// Update server data
|
||||||
pub async fn update<'a>(
|
pub async fn update(
|
||||||
&mut self,
|
&mut self,
|
||||||
db: &Database,
|
db: &Database,
|
||||||
partial: PartialServer,
|
partial: PartialServer,
|
||||||
@@ -228,6 +228,13 @@ impl Server {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Ordered roles list
|
||||||
|
pub fn ordered_roles(&self) -> Vec<(String, Role)> {
|
||||||
|
let mut ordered_roles = self.roles.clone().into_iter().collect::<Vec<_>>();
|
||||||
|
ordered_roles.sort_by(|(_, role_a), (_, role_b)| role_a.rank.cmp(&role_b.rank));
|
||||||
|
ordered_roles
|
||||||
|
}
|
||||||
|
|
||||||
/// Set role permission on a server
|
/// Set role permission on a server
|
||||||
pub async fn set_role_permission(
|
pub async fn set_role_permission(
|
||||||
&mut self,
|
&mut self,
|
||||||
@@ -253,6 +260,37 @@ impl Server {
|
|||||||
Err(create_error!(NotFound))
|
Err(create_error!(NotFound))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Reorders the server's roles rankings
|
||||||
|
pub async fn set_role_ordering(&mut self, db: &Database, new_order: Vec<String>) -> Result<()> {
|
||||||
|
// New order must always contain every role
|
||||||
|
debug_assert_eq!(self.roles.len(), new_order.len());
|
||||||
|
|
||||||
|
// Set the role's ranks to the positions in the vec
|
||||||
|
for (rank, id) in new_order.iter().enumerate() {
|
||||||
|
self.roles.get_mut(id).unwrap().rank = rank as i64;
|
||||||
|
}
|
||||||
|
|
||||||
|
db.update_server(
|
||||||
|
&self.id,
|
||||||
|
&PartialServer {
|
||||||
|
roles: Some(self.roles.clone()),
|
||||||
|
..Default::default()
|
||||||
|
},
|
||||||
|
Vec::new(),
|
||||||
|
)
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
// Publish bulk update event
|
||||||
|
EventV1::ServerRoleRanksUpdate {
|
||||||
|
id: self.id.clone(),
|
||||||
|
ranks: new_order,
|
||||||
|
}
|
||||||
|
.p(self.id.clone())
|
||||||
|
.await;
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Role {
|
impl Role {
|
||||||
|
|||||||
@@ -2,6 +2,7 @@ use revolt_result::Result;
|
|||||||
|
|
||||||
use crate::{FieldsRole, FieldsServer, PartialRole, PartialServer, Role, Server};
|
use crate::{FieldsRole, FieldsServer, PartialRole, PartialServer, Role, Server};
|
||||||
|
|
||||||
|
#[cfg(feature = "mongodb")]
|
||||||
mod mongodb;
|
mod mongodb;
|
||||||
mod reference;
|
mod reference;
|
||||||
|
|
||||||
|
|||||||
@@ -2,6 +2,7 @@ use revolt_result::Result;
|
|||||||
|
|
||||||
use crate::UserSettings;
|
use crate::UserSettings;
|
||||||
|
|
||||||
|
#[cfg(feature = "mongodb")]
|
||||||
mod mongodb;
|
mod mongodb;
|
||||||
mod reference;
|
mod reference;
|
||||||
|
|
||||||
|
|||||||
@@ -1,14 +1,19 @@
|
|||||||
use axum::{extract::FromRequestParts, http::request::Parts};
|
use axum::{extract::{FromRef, FromRequestParts}, http::request::Parts};
|
||||||
|
|
||||||
use revolt_result::{create_error, Error, Result};
|
use revolt_result::{create_error, Error, Result};
|
||||||
|
|
||||||
use crate::{Database, User};
|
use crate::{Database, User};
|
||||||
|
|
||||||
#[async_trait::async_trait]
|
impl<S> FromRequestParts<S> for User
|
||||||
impl FromRequestParts<Database> for User {
|
where
|
||||||
|
Database: FromRef<S>,
|
||||||
|
S: Send + Sync
|
||||||
|
{
|
||||||
type Rejection = Error;
|
type Rejection = Error;
|
||||||
|
|
||||||
async fn from_request_parts(parts: &mut Parts, db: &Database) -> Result<User> {
|
async fn from_request_parts(parts: &mut Parts, state: &S) -> Result<User> {
|
||||||
|
let db = Database::from_ref(state);
|
||||||
|
|
||||||
if let Some(Ok(bot_token)) = parts.headers.get("x-bot-token").map(|v| v.to_str()) {
|
if let Some(Ok(bot_token)) = parts.headers.get("x-bot-token").map(|v| v.to_str()) {
|
||||||
let bot = db.fetch_bot_by_token(bot_token).await?;
|
let bot = db.fetch_bot_by_token(bot_token).await?;
|
||||||
db.fetch_user(&bot.id).await
|
db.fetch_user(&bot.id).await
|
||||||
|
|||||||
@@ -4,14 +4,6 @@ mod model;
|
|||||||
mod ops;
|
mod ops;
|
||||||
#[cfg(feature = "rocket-impl")]
|
#[cfg(feature = "rocket-impl")]
|
||||||
mod rocket;
|
mod rocket;
|
||||||
#[cfg(feature = "rocket-impl")]
|
|
||||||
mod schema;
|
|
||||||
|
|
||||||
#[cfg(feature = "axum-impl")]
|
|
||||||
pub use self::axum::*;
|
|
||||||
#[cfg(feature = "rocket-impl")]
|
|
||||||
pub use self::rocket::*;
|
|
||||||
#[cfg(feature = "rocket-impl")]
|
|
||||||
pub use self::schema::*;
|
|
||||||
pub use model::*;
|
pub use model::*;
|
||||||
pub use ops::*;
|
pub use ops::*;
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ use serde_json::json;
|
|||||||
use ulid::Ulid;
|
use ulid::Ulid;
|
||||||
|
|
||||||
auto_derived_partial!(
|
auto_derived_partial!(
|
||||||
/// # User
|
/// User
|
||||||
pub struct User {
|
pub struct User {
|
||||||
/// Unique Id
|
/// Unique Id
|
||||||
#[serde(rename = "_id")]
|
#[serde(rename = "_id")]
|
||||||
|
|||||||
@@ -1,8 +1,10 @@
|
|||||||
use authifier::models::Session;
|
use authifier::models::Session;
|
||||||
|
use iso8601_timestamp::Timestamp;
|
||||||
use revolt_result::Result;
|
use revolt_result::Result;
|
||||||
|
|
||||||
use crate::{FieldsUser, PartialUser, RelationshipStatus, User};
|
use crate::{FieldsUser, PartialUser, RelationshipStatus, User};
|
||||||
|
|
||||||
|
#[cfg(feature = "mongodb")]
|
||||||
mod mongodb;
|
mod mongodb;
|
||||||
mod reference;
|
mod reference;
|
||||||
|
|
||||||
@@ -61,4 +63,6 @@ pub trait AbstractUsers: Sync + Send {
|
|||||||
|
|
||||||
/// Remove push subscription for a session by session id (TODO: remove)
|
/// Remove push subscription for a session by session id (TODO: remove)
|
||||||
async fn remove_push_subscription_by_session_id(&self, session_id: &str) -> Result<()>;
|
async fn remove_push_subscription_by_session_id(&self, session_id: &str) -> Result<()>;
|
||||||
|
|
||||||
|
async fn update_session_last_seen(&self, session_id: &str, when: Timestamp) -> Result<()>;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
use ::mongodb::options::{Collation, CollationStrength, FindOneOptions, FindOptions};
|
use ::mongodb::options::{Collation, CollationStrength, FindOneOptions, FindOptions};
|
||||||
use authifier::models::Session;
|
use authifier::models::Session;
|
||||||
use futures::StreamExt;
|
use futures::StreamExt;
|
||||||
|
use iso8601_timestamp::Timestamp;
|
||||||
use revolt_result::Result;
|
use revolt_result::Result;
|
||||||
|
|
||||||
use crate::DocumentId;
|
use crate::DocumentId;
|
||||||
@@ -211,16 +212,34 @@ impl AbstractUsers for MongoDb {
|
|||||||
partial: &PartialUser,
|
partial: &PartialUser,
|
||||||
remove: Vec<FieldsUser>,
|
remove: Vec<FieldsUser>,
|
||||||
) -> Result<()> {
|
) -> Result<()> {
|
||||||
query!(
|
if remove.contains(&FieldsUser::StatusText) && partial.status.is_some() {
|
||||||
self,
|
// stupid-ass workaround to fix mongo conflicting the same item
|
||||||
update_one_by_id,
|
let _: Result<()> = query!(
|
||||||
COL,
|
self,
|
||||||
id,
|
update_one_by_id,
|
||||||
partial,
|
COL,
|
||||||
remove.iter().map(|x| x as &dyn IntoDocumentPath).collect(),
|
id,
|
||||||
None
|
PartialUser {
|
||||||
)
|
..Default::default()
|
||||||
.map(|_| ())
|
},
|
||||||
|
remove.iter().map(|x| x as &dyn IntoDocumentPath).collect(),
|
||||||
|
None
|
||||||
|
)
|
||||||
|
.map(|_| ());
|
||||||
|
|
||||||
|
query!(self, update_one_by_id, COL, id, partial, vec![], None).map(|_| ())
|
||||||
|
} else {
|
||||||
|
query!(
|
||||||
|
self,
|
||||||
|
update_one_by_id,
|
||||||
|
COL,
|
||||||
|
id,
|
||||||
|
partial,
|
||||||
|
remove.iter().map(|x| x as &dyn IntoDocumentPath).collect(),
|
||||||
|
None
|
||||||
|
)
|
||||||
|
.map(|_| ())
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Set relationship with another user
|
/// Set relationship with another user
|
||||||
@@ -317,7 +336,26 @@ impl AbstractUsers for MongoDb {
|
|||||||
)
|
)
|
||||||
.await
|
.await
|
||||||
.map(|_| ())
|
.map(|_| ())
|
||||||
.map_err(|_| create_database_error!("update_one", COL))
|
.map_err(|_| create_database_error!("update_one", "sessions"))
|
||||||
|
}
|
||||||
|
|
||||||
|
async fn update_session_last_seen(&self, session_id: &str, when: Timestamp) -> Result<()> {
|
||||||
|
let formatted: &str = &when.format();
|
||||||
|
|
||||||
|
self.col::<Session>("sessions")
|
||||||
|
.update_one(
|
||||||
|
doc! {
|
||||||
|
"_id": session_id
|
||||||
|
},
|
||||||
|
doc! {
|
||||||
|
"$set": {
|
||||||
|
"last_seen": formatted
|
||||||
|
}
|
||||||
|
},
|
||||||
|
)
|
||||||
|
.await
|
||||||
|
.map(|_| ())
|
||||||
|
.map_err(|_| create_database_error!("update_one", "sessions"))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
use authifier::models::Session;
|
use authifier::models::Session;
|
||||||
|
use iso8601_timestamp::Timestamp;
|
||||||
use revolt_result::Result;
|
use revolt_result::Result;
|
||||||
|
|
||||||
use crate::{FieldsUser, PartialUser, RelationshipStatus, User};
|
use crate::{FieldsUser, PartialUser, RelationshipStatus, User};
|
||||||
@@ -168,4 +169,8 @@ impl AbstractUsers for ReferenceDb {
|
|||||||
async fn remove_push_subscription_by_session_id(&self, _session_id: &str) -> Result<()> {
|
async fn remove_push_subscription_by_session_id(&self, _session_id: &str) -> Result<()> {
|
||||||
todo!()
|
todo!()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async fn update_session_last_seen(&self, _session_id: &str, _when: Timestamp) -> Result<()> {
|
||||||
|
todo!()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,31 +0,0 @@
|
|||||||
use revolt_okapi::openapi3::{SecurityScheme, SecuritySchemeData};
|
|
||||||
use revolt_rocket_okapi::{
|
|
||||||
gen::OpenApiGenerator,
|
|
||||||
request::{OpenApiFromRequest, RequestHeaderInput},
|
|
||||||
};
|
|
||||||
|
|
||||||
use crate::User;
|
|
||||||
|
|
||||||
impl OpenApiFromRequest<'_> for User {
|
|
||||||
fn from_request_input(
|
|
||||||
_gen: &mut OpenApiGenerator,
|
|
||||||
_name: String,
|
|
||||||
_required: bool,
|
|
||||||
) -> revolt_rocket_okapi::Result<RequestHeaderInput> {
|
|
||||||
let mut requirements = schemars::Map::new();
|
|
||||||
requirements.insert("Session Token".to_owned(), vec![]);
|
|
||||||
|
|
||||||
Ok(RequestHeaderInput::Security(
|
|
||||||
"Session Token".to_owned(),
|
|
||||||
SecurityScheme {
|
|
||||||
data: SecuritySchemeData::ApiKey {
|
|
||||||
name: "x-session-token".to_owned(),
|
|
||||||
location: "header".to_owned(),
|
|
||||||
},
|
|
||||||
description: Some("Used to authenticate as a user.".to_owned()),
|
|
||||||
extensions: schemars::Map::new(),
|
|
||||||
},
|
|
||||||
requirements,
|
|
||||||
))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -14,10 +14,10 @@ use validator::HasLen;
|
|||||||
use revolt_result::Result;
|
use revolt_result::Result;
|
||||||
|
|
||||||
use super::DelayedTask;
|
use super::DelayedTask;
|
||||||
use crate::Channel::{TextChannel, VoiceChannel};
|
use crate::Channel::TextChannel;
|
||||||
|
|
||||||
/// Enumeration of possible events
|
/// Enumeration of possible events
|
||||||
#[derive(Debug, Eq, PartialEq)]
|
#[derive(Debug, PartialEq)]
|
||||||
pub enum AckEvent {
|
pub enum AckEvent {
|
||||||
/// Add mentions for a channel
|
/// Add mentions for a channel
|
||||||
ProcessMessage {
|
ProcessMessage {
|
||||||
@@ -191,17 +191,14 @@ pub async fn handle_ack_event(
|
|||||||
.await
|
.await
|
||||||
.expect("Failed to fetch channel from db");
|
.expect("Failed to fetch channel from db");
|
||||||
|
|
||||||
match channel {
|
if let TextChannel { server, .. } = channel {
|
||||||
TextChannel { server, .. } | VoiceChannel { server, .. } => {
|
if let Err(err) =
|
||||||
if let Err(err) =
|
amqp.mass_mention_message_sent(server, mass_mentions).await
|
||||||
amqp.mass_mention_message_sent(server, mass_mentions).await
|
{
|
||||||
{
|
revolt_config::capture_error(&err);
|
||||||
revolt_config::capture_error(&err);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
_ => {
|
|
||||||
panic!("Unknown channel type when sending mass mention event");
|
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
panic!("Unknown channel type when sending mass mention event");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ use once_cell::sync::Lazy;
|
|||||||
|
|
||||||
use crate::events::client::EventV1;
|
use crate::events::client::EventV1;
|
||||||
|
|
||||||
static Q: Lazy<(Sender<AuthifierEvent>, Receiver<AuthifierEvent>)> = Lazy::new(|| unbounded());
|
static Q: Lazy<(Sender<AuthifierEvent>, Receiver<AuthifierEvent>)> = Lazy::new(unbounded);
|
||||||
|
|
||||||
/// Get sender
|
/// Get sender
|
||||||
pub fn sender() -> Sender<AuthifierEvent> {
|
pub fn sender() -> Sender<AuthifierEvent> {
|
||||||
|
|||||||
@@ -15,8 +15,7 @@ impl crate::Bot {
|
|||||||
avatar: user.avatar.map(|x| x.id).unwrap_or_default(),
|
avatar: user.avatar.map(|x| x.id).unwrap_or_default(),
|
||||||
description: user
|
description: user
|
||||||
.profile
|
.profile
|
||||||
.map(|profile| profile.content)
|
.and_then(|profile| profile.content)
|
||||||
.flatten()
|
|
||||||
.unwrap_or_default(),
|
.unwrap_or_default(),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -144,6 +143,7 @@ impl From<crate::FieldsWebhook> for FieldsWebhook {
|
|||||||
}
|
}
|
||||||
|
|
||||||
impl From<crate::Channel> for Channel {
|
impl From<crate::Channel> for Channel {
|
||||||
|
#[allow(deprecated)]
|
||||||
fn from(value: crate::Channel) -> Self {
|
fn from(value: crate::Channel) -> Self {
|
||||||
match value {
|
match value {
|
||||||
crate::Channel::SavedMessages { id, user } => Channel::SavedMessages { id, user },
|
crate::Channel::SavedMessages { id, user } => Channel::SavedMessages { id, user },
|
||||||
@@ -189,6 +189,7 @@ impl From<crate::Channel> for Channel {
|
|||||||
default_permissions,
|
default_permissions,
|
||||||
role_permissions,
|
role_permissions,
|
||||||
nsfw,
|
nsfw,
|
||||||
|
voice,
|
||||||
} => Channel::TextChannel {
|
} => Channel::TextChannel {
|
||||||
id,
|
id,
|
||||||
server,
|
server,
|
||||||
@@ -199,31 +200,14 @@ impl From<crate::Channel> for Channel {
|
|||||||
default_permissions,
|
default_permissions,
|
||||||
role_permissions,
|
role_permissions,
|
||||||
nsfw,
|
nsfw,
|
||||||
},
|
voice: voice.map(|voice| voice.into()),
|
||||||
crate::Channel::VoiceChannel {
|
|
||||||
id,
|
|
||||||
server,
|
|
||||||
name,
|
|
||||||
description,
|
|
||||||
icon,
|
|
||||||
default_permissions,
|
|
||||||
role_permissions,
|
|
||||||
nsfw,
|
|
||||||
} => Channel::VoiceChannel {
|
|
||||||
id,
|
|
||||||
server,
|
|
||||||
name,
|
|
||||||
description,
|
|
||||||
icon: icon.map(|file| file.into()),
|
|
||||||
default_permissions,
|
|
||||||
role_permissions,
|
|
||||||
nsfw,
|
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl From<Channel> for crate::Channel {
|
impl From<Channel> for crate::Channel {
|
||||||
|
#[allow(deprecated)]
|
||||||
fn from(value: Channel) -> crate::Channel {
|
fn from(value: Channel) -> crate::Channel {
|
||||||
match value {
|
match value {
|
||||||
Channel::SavedMessages { id, user } => crate::Channel::SavedMessages { id, user },
|
Channel::SavedMessages { id, user } => crate::Channel::SavedMessages { id, user },
|
||||||
@@ -269,6 +253,7 @@ impl From<Channel> for crate::Channel {
|
|||||||
default_permissions,
|
default_permissions,
|
||||||
role_permissions,
|
role_permissions,
|
||||||
nsfw,
|
nsfw,
|
||||||
|
voice,
|
||||||
} => crate::Channel::TextChannel {
|
} => crate::Channel::TextChannel {
|
||||||
id,
|
id,
|
||||||
server,
|
server,
|
||||||
@@ -279,25 +264,7 @@ impl From<Channel> for crate::Channel {
|
|||||||
default_permissions,
|
default_permissions,
|
||||||
role_permissions,
|
role_permissions,
|
||||||
nsfw,
|
nsfw,
|
||||||
},
|
voice: voice.map(|voice| voice.into()),
|
||||||
Channel::VoiceChannel {
|
|
||||||
id,
|
|
||||||
server,
|
|
||||||
name,
|
|
||||||
description,
|
|
||||||
icon,
|
|
||||||
default_permissions,
|
|
||||||
role_permissions,
|
|
||||||
nsfw,
|
|
||||||
} => crate::Channel::VoiceChannel {
|
|
||||||
id,
|
|
||||||
server,
|
|
||||||
name,
|
|
||||||
description,
|
|
||||||
icon: icon.map(|file| file.into()),
|
|
||||||
default_permissions,
|
|
||||||
role_permissions,
|
|
||||||
nsfw,
|
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -316,6 +283,7 @@ impl From<crate::PartialChannel> for PartialChannel {
|
|||||||
role_permissions: value.role_permissions,
|
role_permissions: value.role_permissions,
|
||||||
default_permissions: value.default_permissions,
|
default_permissions: value.default_permissions,
|
||||||
last_message_id: value.last_message_id,
|
last_message_id: value.last_message_id,
|
||||||
|
voice: value.voice.map(|voice| voice.into())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -333,6 +301,7 @@ impl From<PartialChannel> for crate::PartialChannel {
|
|||||||
role_permissions: value.role_permissions,
|
role_permissions: value.role_permissions,
|
||||||
default_permissions: value.default_permissions,
|
default_permissions: value.default_permissions,
|
||||||
last_message_id: value.last_message_id,
|
last_message_id: value.last_message_id,
|
||||||
|
voice: value.voice.map(|voice| voice.into())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -343,6 +312,7 @@ impl From<FieldsChannel> for crate::FieldsChannel {
|
|||||||
FieldsChannel::Description => crate::FieldsChannel::Description,
|
FieldsChannel::Description => crate::FieldsChannel::Description,
|
||||||
FieldsChannel::Icon => crate::FieldsChannel::Icon,
|
FieldsChannel::Icon => crate::FieldsChannel::Icon,
|
||||||
FieldsChannel::DefaultPermissions => crate::FieldsChannel::DefaultPermissions,
|
FieldsChannel::DefaultPermissions => crate::FieldsChannel::DefaultPermissions,
|
||||||
|
FieldsChannel::Voice => crate::FieldsChannel::Voice,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -353,6 +323,7 @@ impl From<crate::FieldsChannel> for FieldsChannel {
|
|||||||
crate::FieldsChannel::Description => FieldsChannel::Description,
|
crate::FieldsChannel::Description => FieldsChannel::Description,
|
||||||
crate::FieldsChannel::Icon => FieldsChannel::Icon,
|
crate::FieldsChannel::Icon => FieldsChannel::Icon,
|
||||||
crate::FieldsChannel::DefaultPermissions => FieldsChannel::DefaultPermissions,
|
crate::FieldsChannel::DefaultPermissions => FieldsChannel::DefaultPermissions,
|
||||||
|
crate::FieldsChannel::Voice => FieldsChannel::Voice,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -544,6 +515,7 @@ impl From<crate::SystemMessage> for SystemMessage {
|
|||||||
crate::SystemMessage::UserRemove { id, by } => Self::UserRemove { id, by },
|
crate::SystemMessage::UserRemove { id, by } => Self::UserRemove { id, by },
|
||||||
crate::SystemMessage::MessagePinned { id, by } => Self::MessagePinned { id, by },
|
crate::SystemMessage::MessagePinned { id, by } => Self::MessagePinned { id, by },
|
||||||
crate::SystemMessage::MessageUnpinned { id, by } => Self::MessageUnpinned { id, by },
|
crate::SystemMessage::MessageUnpinned { id, by } => Self::MessageUnpinned { id, by },
|
||||||
|
crate::SystemMessage::CallStarted { by, finished_at } => Self::CallStarted { by, finished_at }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -640,6 +612,8 @@ impl From<crate::Member> for Member {
|
|||||||
avatar: value.avatar.map(|f| f.into()),
|
avatar: value.avatar.map(|f| f.into()),
|
||||||
roles: value.roles,
|
roles: value.roles,
|
||||||
timeout: value.timeout,
|
timeout: value.timeout,
|
||||||
|
can_publish: value.can_publish,
|
||||||
|
can_receive: value.can_receive,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -653,6 +627,8 @@ impl From<Member> for crate::Member {
|
|||||||
avatar: value.avatar.map(|f| f.into()),
|
avatar: value.avatar.map(|f| f.into()),
|
||||||
roles: value.roles,
|
roles: value.roles,
|
||||||
timeout: value.timeout,
|
timeout: value.timeout,
|
||||||
|
can_publish: value.can_publish,
|
||||||
|
can_receive: value.can_receive,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -666,6 +642,8 @@ impl From<crate::PartialMember> for PartialMember {
|
|||||||
avatar: value.avatar.map(|f| f.into()),
|
avatar: value.avatar.map(|f| f.into()),
|
||||||
roles: value.roles,
|
roles: value.roles,
|
||||||
timeout: value.timeout,
|
timeout: value.timeout,
|
||||||
|
can_publish: value.can_publish,
|
||||||
|
can_receive: value.can_receive,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -679,6 +657,8 @@ impl From<PartialMember> for crate::PartialMember {
|
|||||||
avatar: value.avatar.map(|f| f.into()),
|
avatar: value.avatar.map(|f| f.into()),
|
||||||
roles: value.roles,
|
roles: value.roles,
|
||||||
timeout: value.timeout,
|
timeout: value.timeout,
|
||||||
|
can_publish: value.can_publish,
|
||||||
|
can_receive: value.can_receive,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -708,6 +688,9 @@ impl From<crate::FieldsMember> for FieldsMember {
|
|||||||
crate::FieldsMember::Nickname => FieldsMember::Nickname,
|
crate::FieldsMember::Nickname => FieldsMember::Nickname,
|
||||||
crate::FieldsMember::Roles => FieldsMember::Roles,
|
crate::FieldsMember::Roles => FieldsMember::Roles,
|
||||||
crate::FieldsMember::Timeout => FieldsMember::Timeout,
|
crate::FieldsMember::Timeout => FieldsMember::Timeout,
|
||||||
|
crate::FieldsMember::CanReceive => FieldsMember::CanReceive,
|
||||||
|
crate::FieldsMember::CanPublish => FieldsMember::CanPublish,
|
||||||
|
crate::FieldsMember::JoinedAt => FieldsMember::JoinedAt,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -719,6 +702,9 @@ impl From<FieldsMember> for crate::FieldsMember {
|
|||||||
FieldsMember::Nickname => crate::FieldsMember::Nickname,
|
FieldsMember::Nickname => crate::FieldsMember::Nickname,
|
||||||
FieldsMember::Roles => crate::FieldsMember::Roles,
|
FieldsMember::Roles => crate::FieldsMember::Roles,
|
||||||
FieldsMember::Timeout => crate::FieldsMember::Timeout,
|
FieldsMember::Timeout => crate::FieldsMember::Timeout,
|
||||||
|
FieldsMember::CanReceive => crate::FieldsMember::CanReceive,
|
||||||
|
FieldsMember::CanPublish => crate::FieldsMember::CanPublish,
|
||||||
|
FieldsMember::JoinedAt => crate::FieldsMember::JoinedAt,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1114,7 +1100,7 @@ impl crate::User {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// Convert user object into user model without presence information
|
/// Convert user object into user model without presence information
|
||||||
pub async fn into_known_static<'a>(self, is_online: bool) -> User {
|
pub async fn into_known_static(self, is_online: bool) -> User {
|
||||||
let badges = self.get_badges().await;
|
let badges = self.get_badges().await;
|
||||||
|
|
||||||
User {
|
User {
|
||||||
@@ -1386,3 +1372,19 @@ impl From<FieldsMessage> for crate::FieldsMessage {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
impl From<VoiceInformation> for crate::VoiceInformation {
|
||||||
|
fn from(value: VoiceInformation) -> Self {
|
||||||
|
crate::VoiceInformation {
|
||||||
|
max_users: value.max_users
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl From<crate::VoiceInformation> for VoiceInformation {
|
||||||
|
fn from(value: crate::VoiceInformation) -> Self {
|
||||||
|
VoiceInformation {
|
||||||
|
max_users: value.max_users
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -144,10 +144,6 @@ impl<'z> BulkDatabasePermissionQuery<'z> {
|
|||||||
Channel::TextChannel {
|
Channel::TextChannel {
|
||||||
default_permissions,
|
default_permissions,
|
||||||
..
|
..
|
||||||
}
|
|
||||||
| Channel::VoiceChannel {
|
|
||||||
default_permissions,
|
|
||||||
..
|
|
||||||
} => default_permissions.unwrap_or_default().into(),
|
} => default_permissions.unwrap_or_default().into(),
|
||||||
_ => Default::default(),
|
_ => Default::default(),
|
||||||
}
|
}
|
||||||
@@ -156,16 +152,14 @@ impl<'z> BulkDatabasePermissionQuery<'z> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[allow(dead_code)]
|
#[allow(dead_code, deprecated)]
|
||||||
fn get_channel_type(&mut self) -> ChannelType {
|
fn get_channel_type(&mut self) -> ChannelType {
|
||||||
if let Some(channel) = &self.channel {
|
if let Some(channel) = &self.channel {
|
||||||
match channel {
|
match channel {
|
||||||
Channel::DirectMessage { .. } => ChannelType::DirectMessage,
|
Channel::DirectMessage { .. } => ChannelType::DirectMessage,
|
||||||
Channel::Group { .. } => ChannelType::Group,
|
Channel::Group { .. } => ChannelType::Group,
|
||||||
Channel::SavedMessages { .. } => ChannelType::SavedMessages,
|
Channel::SavedMessages { .. } => ChannelType::SavedMessages,
|
||||||
Channel::TextChannel { .. } | Channel::VoiceChannel { .. } => {
|
Channel::TextChannel { .. } => ChannelType::ServerChannel,
|
||||||
ChannelType::ServerChannel
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
ChannelType::Unknown
|
ChannelType::Unknown
|
||||||
@@ -179,9 +173,6 @@ impl<'z> BulkDatabasePermissionQuery<'z> {
|
|||||||
match channel {
|
match channel {
|
||||||
Channel::TextChannel {
|
Channel::TextChannel {
|
||||||
role_permissions, ..
|
role_permissions, ..
|
||||||
}
|
|
||||||
| Channel::VoiceChannel {
|
|
||||||
role_permissions, ..
|
|
||||||
} => role_permissions,
|
} => role_permissions,
|
||||||
_ => panic!("Not supported for non-server channels"),
|
_ => panic!("Not supported for non-server channels"),
|
||||||
}
|
}
|
||||||
@@ -208,12 +199,6 @@ async fn calculate_members_permissions<'a>(
|
|||||||
role_permissions,
|
role_permissions,
|
||||||
default_permissions,
|
default_permissions,
|
||||||
..
|
..
|
||||||
}
|
|
||||||
| Channel::VoiceChannel {
|
|
||||||
id,
|
|
||||||
role_permissions,
|
|
||||||
default_permissions,
|
|
||||||
..
|
|
||||||
} => (id, role_permissions, default_permissions),
|
} => (id, role_permissions, default_permissions),
|
||||||
_ => panic!("Calculation of member permissions must be done on a server channel"),
|
_ => panic!("Calculation of member permissions must be done on a server channel"),
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -0,0 +1,24 @@
|
|||||||
|
use crate::Database;
|
||||||
|
use revolt_result::Result;
|
||||||
|
|
||||||
|
/// Formats a user's name depending on their optional features and location.
|
||||||
|
/// Factors in server display names and user display names before falling back to username#discriminator.
|
||||||
|
/// Passing a server in which the user is not a member will result in an Err.
|
||||||
|
pub async fn format_display_name(
|
||||||
|
db: &Database,
|
||||||
|
user_id: &str,
|
||||||
|
server_id: Option<&str>,
|
||||||
|
) -> Result<String> {
|
||||||
|
if let Some(server_id) = server_id {
|
||||||
|
let member = db.fetch_member(server_id, user_id).await?;
|
||||||
|
if let Some(nick) = member.nickname {
|
||||||
|
return Ok(nick);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
let user = db.fetch_user(user_id).await?;
|
||||||
|
if let Some(display) = user.display_name {
|
||||||
|
return Ok(display);
|
||||||
|
}
|
||||||
|
Ok(format!("{}#{}", user.username, user.discriminator))
|
||||||
|
}
|
||||||
@@ -10,16 +10,16 @@ use once_cell::sync::Lazy;
|
|||||||
use serde::{Deserialize, Serialize};
|
use serde::{Deserialize, Serialize};
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize)]
|
#[derive(Serialize, Deserialize)]
|
||||||
pub struct IdempotencyKey {
|
#[cfg_attr(feature = "utoipa", derive(IntoParams))]
|
||||||
key: String,
|
#[cfg_attr(feature = "utoipa", into_params(names("Idempotency-Key"), parameter_in=Header))]
|
||||||
}
|
pub struct IdempotencyKey(String);
|
||||||
|
|
||||||
static TOKEN_CACHE: Lazy<Mutex<lru::LruCache<String, ()>>> =
|
static TOKEN_CACHE: Lazy<Mutex<lru::LruCache<String, ()>>> =
|
||||||
Lazy::new(|| Mutex::new(lru::LruCache::new(NonZeroUsize::new(1000).unwrap())));
|
Lazy::new(|| Mutex::new(lru::LruCache::new(NonZeroUsize::new(1000).unwrap())));
|
||||||
|
|
||||||
impl IdempotencyKey {
|
impl IdempotencyKey {
|
||||||
pub fn unchecked_from_string(key: String) -> Self {
|
pub fn unchecked_from_string(key: String) -> Self {
|
||||||
Self { key }
|
Self(key)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Backwards compatibility.
|
// Backwards compatibility.
|
||||||
@@ -32,56 +32,56 @@ impl IdempotencyKey {
|
|||||||
}
|
}
|
||||||
|
|
||||||
cache.put(v.clone(), ());
|
cache.put(v.clone(), ());
|
||||||
self.key = v;
|
self.0 = v;
|
||||||
}
|
}
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn into_key(self) -> String {
|
pub fn into_key(self) -> String {
|
||||||
self.key
|
self.0
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(feature = "rocket-impl")]
|
// #[cfg(feature = "rocket-impl")]
|
||||||
use revolt_rocket_okapi::{
|
// use revolt_rocket_okapi::{
|
||||||
gen::OpenApiGenerator,
|
// gen::OpenApiGenerator,
|
||||||
request::{OpenApiFromRequest, RequestHeaderInput},
|
// request::{OpenApiFromRequest, RequestHeaderInput},
|
||||||
revolt_okapi::openapi3::{Parameter, ParameterValue},
|
// revolt_okapi::openapi3::{Parameter, ParameterValue},
|
||||||
};
|
// };
|
||||||
|
|
||||||
#[cfg(feature = "rocket-impl")]
|
// #[cfg(feature = "rocket-impl")]
|
||||||
use schemars::schema::{InstanceType, SchemaObject, SingleOrVec};
|
// use schemars::schema::{InstanceType, SchemaObject, SingleOrVec};
|
||||||
|
|
||||||
#[cfg(feature = "rocket-impl")]
|
// #[cfg(feature = "rocket-impl")]
|
||||||
impl<'r> OpenApiFromRequest<'r> for IdempotencyKey {
|
// impl OpenApiFromRequest<'_> for IdempotencyKey {
|
||||||
fn from_request_input(
|
// fn from_request_input(
|
||||||
_gen: &mut OpenApiGenerator,
|
// _gen: &mut OpenApiGenerator,
|
||||||
_name: String,
|
// _name: String,
|
||||||
_required: bool,
|
// _required: bool,
|
||||||
) -> revolt_rocket_okapi::Result<RequestHeaderInput> {
|
// ) -> revolt_rocket_okapi::Result<RequestHeaderInput> {
|
||||||
Ok(RequestHeaderInput::Parameter(Parameter {
|
// Ok(RequestHeaderInput::Parameter(Parameter {
|
||||||
name: "Idempotency-Key".to_string(),
|
// name: "Idempotency-Key".to_string(),
|
||||||
description: Some("Unique key to prevent duplicate requests".to_string()),
|
// description: Some("Unique key to prevent duplicate requests".to_string()),
|
||||||
allow_empty_value: false,
|
// allow_empty_value: false,
|
||||||
required: false,
|
// required: false,
|
||||||
deprecated: false,
|
// deprecated: false,
|
||||||
extensions: schemars::Map::new(),
|
// extensions: schemars::Map::new(),
|
||||||
location: "header".to_string(),
|
// location: "header".to_string(),
|
||||||
value: ParameterValue::Schema {
|
// value: ParameterValue::Schema {
|
||||||
allow_reserved: false,
|
// allow_reserved: false,
|
||||||
example: None,
|
// example: None,
|
||||||
examples: None,
|
// examples: None,
|
||||||
explode: None,
|
// explode: None,
|
||||||
style: None,
|
// style: None,
|
||||||
schema: SchemaObject {
|
// schema: SchemaObject {
|
||||||
instance_type: Some(SingleOrVec::Single(Box::new(InstanceType::String))),
|
// instance_type: Some(SingleOrVec::Single(Box::new(InstanceType::String))),
|
||||||
..Default::default()
|
// ..Default::default()
|
||||||
},
|
// },
|
||||||
},
|
// },
|
||||||
}))
|
// }))
|
||||||
}
|
// }
|
||||||
}
|
// }
|
||||||
|
|
||||||
#[cfg(feature = "rocket-impl")]
|
#[cfg(feature = "rocket-impl")]
|
||||||
use rocket::{
|
use rocket::{
|
||||||
@@ -110,18 +110,16 @@ impl<'r> FromRequest<'r> for IdempotencyKey {
|
|||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
let idempotency = IdempotencyKey { key };
|
let idempotency = IdempotencyKey(key);
|
||||||
let mut cache = TOKEN_CACHE.lock().await;
|
let mut cache = TOKEN_CACHE.lock().await;
|
||||||
if cache.get(&idempotency.key).is_some() {
|
if cache.get(&idempotency.0).is_some() {
|
||||||
return Outcome::Error((Status::Conflict, create_error!(DuplicateNonce)));
|
return Outcome::Error((Status::Conflict, create_error!(DuplicateNonce)));
|
||||||
}
|
}
|
||||||
|
|
||||||
cache.put(idempotency.key.clone(), ());
|
cache.put(idempotency.0.clone(), ());
|
||||||
return Outcome::Success(idempotency);
|
return Outcome::Success(idempotency);
|
||||||
}
|
}
|
||||||
|
|
||||||
Outcome::Success(IdempotencyKey {
|
Outcome::Success(IdempotencyKey(ulid::Ulid::new().to_string()))
|
||||||
key: ulid::Ulid::new().to_string(),
|
|
||||||
})
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,11 @@
|
|||||||
pub mod bridge;
|
pub mod bridge;
|
||||||
pub mod bulk_permissions;
|
pub mod bulk_permissions;
|
||||||
|
mod funcs;
|
||||||
pub mod idempotency;
|
pub mod idempotency;
|
||||||
pub mod permissions;
|
pub mod permissions;
|
||||||
pub mod reference;
|
pub mod reference;
|
||||||
pub mod test_fixtures;
|
pub mod test_fixtures;
|
||||||
|
#[cfg(feature = "utoipa")]
|
||||||
|
pub mod utoipa;
|
||||||
|
|
||||||
|
pub use funcs::*;
|
||||||
|
|||||||
@@ -104,7 +104,7 @@ impl PermissionQuery for DatabasePermissionQuery<'_> {
|
|||||||
.unwrap_or_default();
|
.unwrap_or_default();
|
||||||
|
|
||||||
self.cached_mutual_connection = Some(value);
|
self.cached_mutual_connection = Some(value);
|
||||||
matches!(value, true)
|
value
|
||||||
} else {
|
} else {
|
||||||
false
|
false
|
||||||
}
|
}
|
||||||
@@ -185,9 +185,26 @@ impl PermissionQuery for DatabasePermissionQuery<'_> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async fn do_we_have_publish_overwrites(&mut self) -> bool {
|
||||||
|
if let Some(member) = &self.member {
|
||||||
|
member.can_publish
|
||||||
|
} else {
|
||||||
|
true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async fn do_we_have_receive_overwrites(&mut self) -> bool {
|
||||||
|
if let Some(member) = &self.member {
|
||||||
|
member.can_receive
|
||||||
|
} else {
|
||||||
|
true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// * For calculating channel permission
|
// * For calculating channel permission
|
||||||
|
|
||||||
/// Get the type of the channel
|
/// Get the type of the channel
|
||||||
|
#[allow(deprecated)]
|
||||||
async fn get_channel_type(&mut self) -> ChannelType {
|
async fn get_channel_type(&mut self) -> ChannelType {
|
||||||
if let Some(channel) = &self.channel {
|
if let Some(channel) = &self.channel {
|
||||||
match channel {
|
match channel {
|
||||||
@@ -199,9 +216,7 @@ impl PermissionQuery for DatabasePermissionQuery<'_> {
|
|||||||
Cow::Borrowed(Channel::SavedMessages { .. })
|
Cow::Borrowed(Channel::SavedMessages { .. })
|
||||||
| Cow::Owned(Channel::SavedMessages { .. }) => ChannelType::SavedMessages,
|
| Cow::Owned(Channel::SavedMessages { .. }) => ChannelType::SavedMessages,
|
||||||
Cow::Borrowed(Channel::TextChannel { .. })
|
Cow::Borrowed(Channel::TextChannel { .. })
|
||||||
| Cow::Owned(Channel::TextChannel { .. })
|
| Cow::Owned(Channel::TextChannel { .. }) => ChannelType::ServerChannel,
|
||||||
| Cow::Borrowed(Channel::VoiceChannel { .. })
|
|
||||||
| Cow::Owned(Channel::VoiceChannel { .. }) => ChannelType::ServerChannel,
|
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
ChannelType::Unknown
|
ChannelType::Unknown
|
||||||
@@ -225,14 +240,6 @@ impl PermissionQuery for DatabasePermissionQuery<'_> {
|
|||||||
| Cow::Owned(Channel::TextChannel {
|
| Cow::Owned(Channel::TextChannel {
|
||||||
default_permissions,
|
default_permissions,
|
||||||
..
|
..
|
||||||
})
|
|
||||||
| Cow::Borrowed(Channel::VoiceChannel {
|
|
||||||
default_permissions,
|
|
||||||
..
|
|
||||||
})
|
|
||||||
| Cow::Owned(Channel::VoiceChannel {
|
|
||||||
default_permissions,
|
|
||||||
..
|
|
||||||
}) => default_permissions.unwrap_or_default().into(),
|
}) => default_permissions.unwrap_or_default().into(),
|
||||||
_ => Default::default(),
|
_ => Default::default(),
|
||||||
}
|
}
|
||||||
@@ -250,12 +257,6 @@ impl PermissionQuery for DatabasePermissionQuery<'_> {
|
|||||||
})
|
})
|
||||||
| Cow::Owned(Channel::TextChannel {
|
| Cow::Owned(Channel::TextChannel {
|
||||||
role_permissions, ..
|
role_permissions, ..
|
||||||
})
|
|
||||||
| Cow::Borrowed(Channel::VoiceChannel {
|
|
||||||
role_permissions, ..
|
|
||||||
})
|
|
||||||
| Cow::Owned(Channel::VoiceChannel {
|
|
||||||
role_permissions, ..
|
|
||||||
}) => {
|
}) => {
|
||||||
if let Some(server) = &self.server {
|
if let Some(server) = &self.server {
|
||||||
let member_roles = self
|
let member_roles = self
|
||||||
@@ -343,11 +344,10 @@ impl PermissionQuery for DatabasePermissionQuery<'_> {
|
|||||||
/// (this will only ever be called for server channels, use unimplemented!() for other code paths)
|
/// (this will only ever be called for server channels, use unimplemented!() for other code paths)
|
||||||
async fn set_server_from_channel(&mut self) {
|
async fn set_server_from_channel(&mut self) {
|
||||||
if let Some(channel) = &self.channel {
|
if let Some(channel) = &self.channel {
|
||||||
|
#[allow(deprecated)]
|
||||||
match channel {
|
match channel {
|
||||||
Cow::Borrowed(Channel::TextChannel { server, .. })
|
Cow::Borrowed(Channel::TextChannel { server, .. })
|
||||||
| Cow::Owned(Channel::TextChannel { server, .. })
|
| Cow::Owned(Channel::TextChannel { server, .. }) => {
|
||||||
| Cow::Borrowed(Channel::VoiceChannel { server, .. })
|
|
||||||
| Cow::Owned(Channel::VoiceChannel { server, .. }) => {
|
|
||||||
if let Some(known_server) =
|
if let Some(known_server) =
|
||||||
// I'm not sure why I can't just pattern match both at once here?
|
// I'm not sure why I can't just pattern match both at once here?
|
||||||
// It throws some weird error and the provided fix doesn't work :/
|
// It throws some weird error and the provided fix doesn't work :/
|
||||||
|
|||||||
@@ -3,52 +3,46 @@ use std::str::FromStr;
|
|||||||
use revolt_result::Result;
|
use revolt_result::Result;
|
||||||
#[cfg(feature = "rocket-impl")]
|
#[cfg(feature = "rocket-impl")]
|
||||||
use rocket::request::FromParam;
|
use rocket::request::FromParam;
|
||||||
#[cfg(feature = "rocket-impl")]
|
|
||||||
use schemars::{
|
|
||||||
schema::{InstanceType, Schema, SchemaObject, SingleOrVec},
|
|
||||||
JsonSchema,
|
|
||||||
};
|
|
||||||
|
|
||||||
use crate::{
|
use crate::{
|
||||||
Bot, Channel, Database, Emoji, Invite, Member, Message, Server, ServerBan, User, Webhook,
|
Bot, Channel, Database, Emoji, Invite, Member, Message, Server, ServerBan, User, Webhook,
|
||||||
};
|
};
|
||||||
|
|
||||||
/// Reference to some object in the database
|
/// Reference to some object in the database
|
||||||
#[derive(Serialize, Deserialize)]
|
pub struct Reference<'a> {
|
||||||
pub struct Reference {
|
|
||||||
/// Id of object
|
/// Id of object
|
||||||
pub id: String,
|
pub id: &'a str,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Reference {
|
impl<'a> Reference<'a> {
|
||||||
/// Create a Ref from an unchecked string
|
/// Create a Ref from an unchecked string
|
||||||
pub fn from_unchecked(id: String) -> Reference {
|
pub fn from_unchecked(id: &'a str) -> Reference<'a> {
|
||||||
Reference { id }
|
Reference { id }
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Fetch ban from Ref
|
/// Fetch ban from Ref
|
||||||
pub async fn as_ban(&self, db: &Database, server: &str) -> Result<ServerBan> {
|
pub async fn as_ban(&self, db: &Database, server: &str) -> Result<ServerBan> {
|
||||||
db.fetch_ban(server, &self.id).await
|
db.fetch_ban(server, self.id).await
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Fetch bot from Ref
|
/// Fetch bot from Ref
|
||||||
pub async fn as_bot(&self, db: &Database) -> Result<Bot> {
|
pub async fn as_bot(&self, db: &Database) -> Result<Bot> {
|
||||||
db.fetch_bot(&self.id).await
|
db.fetch_bot(self.id).await
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Fetch emoji from Ref
|
/// Fetch emoji from Ref
|
||||||
pub async fn as_emoji(&self, db: &Database) -> Result<Emoji> {
|
pub async fn as_emoji(&self, db: &Database) -> Result<Emoji> {
|
||||||
db.fetch_emoji(&self.id).await
|
db.fetch_emoji(self.id).await
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Fetch channel from Ref
|
/// Fetch channel from Ref
|
||||||
pub async fn as_channel(&self, db: &Database) -> Result<Channel> {
|
pub async fn as_channel(&self, db: &Database) -> Result<Channel> {
|
||||||
db.fetch_channel(&self.id).await
|
db.fetch_channel(self.id).await
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Fetch invite from Ref or create invite to server if discoverable
|
/// Fetch invite from Ref or create invite to server if discoverable
|
||||||
pub async fn as_invite(&self, db: &Database) -> Result<Invite> {
|
pub async fn as_invite(&self, db: &Database) -> Result<Invite> {
|
||||||
if ulid::Ulid::from_str(&self.id).is_ok() {
|
if ulid::Ulid::from_str(self.id).is_ok() {
|
||||||
let server = self.as_server(db).await?;
|
let server = self.as_server(db).await?;
|
||||||
if !server.discoverable {
|
if !server.discoverable {
|
||||||
return Err(create_error!(NotFound));
|
return Err(create_error!(NotFound));
|
||||||
@@ -65,18 +59,18 @@ impl Reference {
|
|||||||
.ok_or(create_error!(NotFound))?,
|
.ok_or(create_error!(NotFound))?,
|
||||||
})
|
})
|
||||||
} else {
|
} else {
|
||||||
db.fetch_invite(&self.id).await
|
db.fetch_invite(self.id).await
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Fetch message from Ref
|
/// Fetch message from Ref
|
||||||
pub async fn as_message(&self, db: &Database) -> Result<Message> {
|
pub async fn as_message(&self, db: &Database) -> Result<Message> {
|
||||||
db.fetch_message(&self.id).await
|
db.fetch_message(self.id).await
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Fetch message from Ref and validate channel
|
/// Fetch message from Ref and validate channel
|
||||||
pub async fn as_message_in_channel(&self, db: &Database, channel: &str) -> Result<Message> {
|
pub async fn as_message_in_channel(&self, db: &Database, channel: &str) -> Result<Message> {
|
||||||
let msg = db.fetch_message(&self.id).await?;
|
let msg = db.fetch_message(self.id).await?;
|
||||||
if msg.channel != channel {
|
if msg.channel != channel {
|
||||||
return Err(create_error!(NotFound));
|
return Err(create_error!(NotFound));
|
||||||
}
|
}
|
||||||
@@ -86,44 +80,30 @@ impl Reference {
|
|||||||
|
|
||||||
/// Fetch member from Ref
|
/// Fetch member from Ref
|
||||||
pub async fn as_member(&self, db: &Database, server: &str) -> Result<Member> {
|
pub async fn as_member(&self, db: &Database, server: &str) -> Result<Member> {
|
||||||
db.fetch_member(server, &self.id).await
|
db.fetch_member(server, self.id).await
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Fetch server from Ref
|
/// Fetch server from Ref
|
||||||
pub async fn as_server(&self, db: &Database) -> Result<Server> {
|
pub async fn as_server(&self, db: &Database) -> Result<Server> {
|
||||||
db.fetch_server(&self.id).await
|
db.fetch_server(self.id).await
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Fetch user from Ref
|
/// Fetch user from Ref
|
||||||
pub async fn as_user(&self, db: &Database) -> Result<User> {
|
pub async fn as_user(&self, db: &Database) -> Result<User> {
|
||||||
db.fetch_user(&self.id).await
|
db.fetch_user(self.id).await
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Fetch webhook from Ref
|
/// Fetch webhook from Ref
|
||||||
pub async fn as_webhook(&self, db: &Database) -> Result<Webhook> {
|
pub async fn as_webhook(&self, db: &Database) -> Result<Webhook> {
|
||||||
db.fetch_webhook(&self.id).await
|
db.fetch_webhook(self.id).await
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(feature = "rocket-impl")]
|
#[cfg(feature = "rocket-impl")]
|
||||||
impl<'r> FromParam<'r> for Reference {
|
impl<'r> FromParam<'r> for Reference<'r> {
|
||||||
type Error = &'r str;
|
type Error = &'r str;
|
||||||
|
|
||||||
fn from_param(param: &'r str) -> Result<Self, Self::Error> {
|
fn from_param(param: &'r str) -> Result<Self, Self::Error> {
|
||||||
Ok(Reference::from_unchecked(param.into()))
|
Ok(Reference::from_unchecked(param))
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[cfg(feature = "rocket-impl")]
|
|
||||||
impl JsonSchema for Reference {
|
|
||||||
fn schema_name() -> String {
|
|
||||||
"Id".to_string()
|
|
||||||
}
|
|
||||||
|
|
||||||
fn json_schema(_gen: &mut schemars::gen::SchemaGenerator) -> Schema {
|
|
||||||
Schema::Object(SchemaObject {
|
|
||||||
instance_type: Some(SingleOrVec::Single(Box::new(InstanceType::String))),
|
|
||||||
..Default::default()
|
|
||||||
})
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -39,7 +39,9 @@ pub async fn load_fixture(db: &Database, input: &str) -> HashMap<String, String>
|
|||||||
LoadedFixture::User(user) => db.insert_user(&user).await.unwrap(),
|
LoadedFixture::User(user) => db.insert_user(&user).await.unwrap(),
|
||||||
LoadedFixture::Channel(channel) => db.insert_channel(&channel).await.unwrap(),
|
LoadedFixture::Channel(channel) => db.insert_channel(&channel).await.unwrap(),
|
||||||
LoadedFixture::Server(server) => db.insert_server(&server).await.unwrap(),
|
LoadedFixture::Server(server) => db.insert_server(&server).await.unwrap(),
|
||||||
LoadedFixture::ServerMember(member) => db.insert_member(&member).await.unwrap(),
|
LoadedFixture::ServerMember(member) => {
|
||||||
|
db.insert_or_merge_member(&member).await.unwrap();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,49 @@
|
|||||||
|
use utoipa::{
|
||||||
|
openapi::{
|
||||||
|
schema::SchemaType,
|
||||||
|
security::{ApiKey, ApiKeyValue, SecurityScheme},
|
||||||
|
ObjectBuilder, OpenApi, RefOr, Schema, Type,
|
||||||
|
},
|
||||||
|
Modify, PartialSchema, ToSchema,
|
||||||
|
};
|
||||||
|
|
||||||
|
use crate::util::reference::Reference;
|
||||||
|
|
||||||
|
pub struct TokenSecurity;
|
||||||
|
|
||||||
|
impl Modify for TokenSecurity {
|
||||||
|
fn modify(&self, openapi: &mut OpenApi) {
|
||||||
|
let components = openapi.components.get_or_insert_default();
|
||||||
|
|
||||||
|
components.add_security_scheme(
|
||||||
|
"Session-Token",
|
||||||
|
SecurityScheme::ApiKey(ApiKey::Header(ApiKeyValue::new(
|
||||||
|
"X-Session-Token".to_string(),
|
||||||
|
))),
|
||||||
|
);
|
||||||
|
|
||||||
|
components.add_security_scheme(
|
||||||
|
"Bot-Token",
|
||||||
|
SecurityScheme::ApiKey(ApiKey::Header(ApiKeyValue::new("X-Bot-Ticket".to_string()))),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl ToSchema for Reference<'_> {
|
||||||
|
fn name() -> std::borrow::Cow<'static, str> {
|
||||||
|
std::borrow::Cow::Borrowed("Reference")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl PartialSchema for Reference<'_> {
|
||||||
|
fn schema() -> RefOr<Schema> {
|
||||||
|
RefOr::T(
|
||||||
|
ObjectBuilder::new()
|
||||||
|
.description(Some("An id referencing a stoat model."))
|
||||||
|
.schema_type(SchemaType::Type(Type::String))
|
||||||
|
.examples(["01FD58YK5W7QRV5H3D64KTQYX3"])
|
||||||
|
.build()
|
||||||
|
.into(),
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,598 @@
|
|||||||
|
use crate::{
|
||||||
|
events::client::EventV1,
|
||||||
|
models::{Channel, User},
|
||||||
|
util::{permissions::DatabasePermissionQuery, reference::Reference},
|
||||||
|
Database, Server,
|
||||||
|
};
|
||||||
|
use iso8601_timestamp::{Duration, Timestamp};
|
||||||
|
use livekit_protocol::ParticipantPermission;
|
||||||
|
use redis_kiss::{get_connection as _get_connection, redis::Pipeline, AsyncCommands, Conn};
|
||||||
|
use revolt_config::FeaturesLimits;
|
||||||
|
use revolt_models::v0::{self, PartialUserVoiceState, UserVoiceState};
|
||||||
|
use revolt_permissions::{calculate_channel_permissions, ChannelPermission, PermissionValue};
|
||||||
|
use revolt_result::{create_error, Result, ToRevoltError};
|
||||||
|
|
||||||
|
mod voice_client;
|
||||||
|
pub use voice_client::VoiceClient;
|
||||||
|
|
||||||
|
async fn get_connection() -> Result<Conn> {
|
||||||
|
_get_connection().await.map_err(|_| create_error!(InternalError))
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn raise_if_in_voice(user: &User, channel_id: &str) -> Result<()> {
|
||||||
|
let mut conn = get_connection().await?;
|
||||||
|
|
||||||
|
if user.bot.is_some()
|
||||||
|
// bots can be in as many voice channels as it wants so we just check if its already connected to the one its trying to connect to
|
||||||
|
&& conn.sismember(format!("vc:{}", &user.id), channel_id)
|
||||||
|
.await
|
||||||
|
.to_internal_error()?
|
||||||
|
{
|
||||||
|
Err(create_error!(AlreadyConnected))
|
||||||
|
} else if conn
|
||||||
|
.scard::<_, u32>(format!("vc:{}", &user.id)) // check if the current vc set is empty
|
||||||
|
.await
|
||||||
|
.to_internal_error()?
|
||||||
|
> 0
|
||||||
|
{
|
||||||
|
Err(create_error!(AlreadyConnected))
|
||||||
|
} else {
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn set_channel_node(channel: &str, node: &str) -> Result<()> {
|
||||||
|
get_connection()
|
||||||
|
.await?
|
||||||
|
.set(format!("node:{channel}"), node)
|
||||||
|
.await
|
||||||
|
.to_internal_error()
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn get_channel_node(channel: &str) -> Result<Option<String>> {
|
||||||
|
get_connection()
|
||||||
|
.await?
|
||||||
|
.get(format!("node:{channel}"))
|
||||||
|
.await
|
||||||
|
.to_internal_error()
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn get_user_voice_channels(user_id: &str) -> Result<Vec<String>> {
|
||||||
|
get_connection()
|
||||||
|
.await?
|
||||||
|
.smembers(format!("vc:{user_id}"))
|
||||||
|
.await
|
||||||
|
.to_internal_error()
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn set_user_moved_from_voice(
|
||||||
|
old_channel: &str,
|
||||||
|
new_channel: &str,
|
||||||
|
user_id: &str,
|
||||||
|
) -> Result<()> {
|
||||||
|
get_connection()
|
||||||
|
.await?
|
||||||
|
.set_ex(
|
||||||
|
format!("moved_from:{user_id}:{old_channel}"),
|
||||||
|
new_channel,
|
||||||
|
10,
|
||||||
|
)
|
||||||
|
.await
|
||||||
|
.to_internal_error()
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn get_user_moved_from_voice(channel_id: &str, user_id: &str) -> Result<Option<String>> {
|
||||||
|
get_connection()
|
||||||
|
.await?
|
||||||
|
.get_del(format!("moved_from:{user_id}:{channel_id}"))
|
||||||
|
.await
|
||||||
|
.to_internal_error()
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn set_user_moved_to_voice(
|
||||||
|
new_channel: &str,
|
||||||
|
old_channel: &str,
|
||||||
|
user_id: &str,
|
||||||
|
) -> Result<()> {
|
||||||
|
get_connection()
|
||||||
|
.await?
|
||||||
|
.set_ex(format!("moved_to:{user_id}:{new_channel}"), old_channel, 10)
|
||||||
|
.await
|
||||||
|
.to_internal_error()
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn get_user_moved_to_voice(channel_id: &str, user_id: &str) -> Result<Option<String>> {
|
||||||
|
get_connection()
|
||||||
|
.await?
|
||||||
|
.get_del(format!("moved_to:{user_id}:{channel_id}"))
|
||||||
|
.await
|
||||||
|
.to_internal_error()
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn is_in_voice_channel(user_id: &str, channel_id: &str) -> Result<bool> {
|
||||||
|
get_connection()
|
||||||
|
.await?
|
||||||
|
.sismember(format!("vc:{user_id}"), channel_id)
|
||||||
|
.await
|
||||||
|
.to_internal_error()
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn get_user_voice_channel_in_server(
|
||||||
|
user_id: &str,
|
||||||
|
server_id: &str,
|
||||||
|
) -> Result<Option<String>> {
|
||||||
|
let mut conn = get_connection().await?;
|
||||||
|
|
||||||
|
let unique_key = format!("{user_id}:{server_id}");
|
||||||
|
|
||||||
|
conn.get(&unique_key).await.to_internal_error()
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn get_allowed_sources(
|
||||||
|
limits: &FeaturesLimits,
|
||||||
|
permissions: PermissionValue,
|
||||||
|
) -> Vec<&'static str> {
|
||||||
|
let mut allowed_sources = Vec::new();
|
||||||
|
|
||||||
|
if permissions.has(ChannelPermission::Speak as u64) {
|
||||||
|
allowed_sources.push("microphone")
|
||||||
|
};
|
||||||
|
|
||||||
|
if permissions.has(ChannelPermission::Video as u64) && limits.video {
|
||||||
|
allowed_sources.extend(["camera", "screen_share", "screen_share_audio"]);
|
||||||
|
};
|
||||||
|
|
||||||
|
allowed_sources
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn create_voice_state(
|
||||||
|
channel_id: &str,
|
||||||
|
server_id: Option<&str>,
|
||||||
|
user_id: &str,
|
||||||
|
joined_at: Timestamp,
|
||||||
|
) -> Result<UserVoiceState> {
|
||||||
|
let unique_key = format!("{}:{}", &user_id, server_id.unwrap_or(channel_id));
|
||||||
|
|
||||||
|
let voice_state = UserVoiceState {
|
||||||
|
joined_at,
|
||||||
|
id: user_id.to_string(),
|
||||||
|
is_receiving: true,
|
||||||
|
is_publishing: false,
|
||||||
|
screensharing: false,
|
||||||
|
camera: false,
|
||||||
|
};
|
||||||
|
|
||||||
|
Pipeline::new()
|
||||||
|
.sadd(format!("vc_members:{channel_id}"), user_id)
|
||||||
|
.sadd(format!("vc:{user_id}"), channel_id)
|
||||||
|
.set(&unique_key, channel_id)
|
||||||
|
.set(
|
||||||
|
format!("joined_at:{unique_key}"),
|
||||||
|
joined_at
|
||||||
|
.duration_since(Timestamp::UNIX_EPOCH)
|
||||||
|
.whole_milliseconds() as i64,
|
||||||
|
)
|
||||||
|
.set(
|
||||||
|
format!("is_publishing:{unique_key}"),
|
||||||
|
voice_state.is_publishing,
|
||||||
|
)
|
||||||
|
.set(
|
||||||
|
format!("is_receiving:{unique_key}"),
|
||||||
|
voice_state.is_receiving,
|
||||||
|
)
|
||||||
|
.set(
|
||||||
|
format!("screensharing:{unique_key}"),
|
||||||
|
voice_state.screensharing,
|
||||||
|
)
|
||||||
|
.set(format!("camera:{unique_key}"), voice_state.camera)
|
||||||
|
.query_async::<_, ()>(&mut get_connection().await?.into_inner())
|
||||||
|
.await
|
||||||
|
.to_internal_error()?;
|
||||||
|
|
||||||
|
Ok(voice_state)
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn delete_voice_state(
|
||||||
|
channel_id: &str,
|
||||||
|
server_id: Option<&str>,
|
||||||
|
user_id: &str,
|
||||||
|
) -> Result<()> {
|
||||||
|
let unique_key = format!("{}:{}", &user_id, server_id.unwrap_or(channel_id));
|
||||||
|
|
||||||
|
Pipeline::new()
|
||||||
|
.srem(format!("vc_members:{channel_id}"), user_id)
|
||||||
|
.srem(format!("vc:{user_id}"), channel_id)
|
||||||
|
.del(&[
|
||||||
|
format!("joined_at:{unique_key}"),
|
||||||
|
format!("is_publishing:{unique_key}"),
|
||||||
|
format!("is_receiving:{unique_key}"),
|
||||||
|
format!("screensharing:{unique_key}"),
|
||||||
|
format!("camera:{unique_key}"),
|
||||||
|
unique_key.clone(),
|
||||||
|
])
|
||||||
|
.query_async(&mut get_connection().await?.into_inner())
|
||||||
|
.await
|
||||||
|
.to_internal_error()
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn delete_channel_voice_state(
|
||||||
|
channel_id: &str,
|
||||||
|
server_id: Option<&str>,
|
||||||
|
user_ids: &[String],
|
||||||
|
) -> Result<()> {
|
||||||
|
let parent_id = server_id.unwrap_or(channel_id);
|
||||||
|
|
||||||
|
let mut pipeline = Pipeline::new();
|
||||||
|
pipeline.del(format!("vc_members:{channel_id}"));
|
||||||
|
|
||||||
|
for user_id in user_ids {
|
||||||
|
let unique_key = format!("{user_id}:{parent_id}");
|
||||||
|
|
||||||
|
pipeline.srem(format!("vc:{user_id}"), channel_id).del(&[
|
||||||
|
format!("joined_at:{unique_key}"),
|
||||||
|
format!("is_publishing:{unique_key}"),
|
||||||
|
format!("is_receiving:{unique_key}"),
|
||||||
|
format!("screensharing:{unique_key}"),
|
||||||
|
format!("camera:{unique_key}"),
|
||||||
|
unique_key.clone(),
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
|
pipeline
|
||||||
|
.query_async(&mut get_connection().await?.into_inner())
|
||||||
|
.await
|
||||||
|
.to_internal_error()
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn update_voice_state_tracks(
|
||||||
|
channel_id: &str,
|
||||||
|
server_id: Option<&str>,
|
||||||
|
user_id: &str,
|
||||||
|
added: bool,
|
||||||
|
track: i32,
|
||||||
|
) -> Result<PartialUserVoiceState> {
|
||||||
|
let partial = match track {
|
||||||
|
/* TrackSource::Unknown */ 0 => PartialUserVoiceState::default(),
|
||||||
|
/* TrackSource::Camera */
|
||||||
|
1 => PartialUserVoiceState {
|
||||||
|
camera: Some(added),
|
||||||
|
..Default::default()
|
||||||
|
},
|
||||||
|
/* TrackSource::Microphone */
|
||||||
|
2 => PartialUserVoiceState {
|
||||||
|
is_publishing: Some(added),
|
||||||
|
..Default::default()
|
||||||
|
},
|
||||||
|
/* TrackSource::ScreenShare | TrackSource::ScreenShareAudio */
|
||||||
|
3 | 4 => PartialUserVoiceState {
|
||||||
|
screensharing: Some(added),
|
||||||
|
..Default::default()
|
||||||
|
},
|
||||||
|
_ => unreachable!(),
|
||||||
|
};
|
||||||
|
|
||||||
|
update_voice_state(channel_id, server_id, user_id, &partial).await?;
|
||||||
|
|
||||||
|
Ok(partial)
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn update_voice_state(
|
||||||
|
channel_id: &str,
|
||||||
|
server_id: Option<&str>,
|
||||||
|
user_id: &str,
|
||||||
|
partial: &PartialUserVoiceState,
|
||||||
|
) -> Result<()> {
|
||||||
|
let unique_key = format!("{}:{}", &user_id, server_id.unwrap_or(channel_id));
|
||||||
|
|
||||||
|
let mut pipeline = Pipeline::new();
|
||||||
|
|
||||||
|
if let Some(camera) = &partial.camera {
|
||||||
|
pipeline.set(format!("camera:{unique_key}"), camera);
|
||||||
|
};
|
||||||
|
|
||||||
|
if let Some(is_publishing) = &partial.is_publishing {
|
||||||
|
pipeline.set(format!("is_publishing:{unique_key}"), is_publishing);
|
||||||
|
}
|
||||||
|
|
||||||
|
if let Some(is_receiving) = &partial.is_receiving {
|
||||||
|
pipeline.set(format!("is_receiving:{unique_key}"), is_receiving);
|
||||||
|
}
|
||||||
|
|
||||||
|
if let Some(screensharing) = &partial.screensharing {
|
||||||
|
pipeline.set(format!("screensharing:{unique_key}"), screensharing);
|
||||||
|
}
|
||||||
|
|
||||||
|
pipeline
|
||||||
|
.query_async(&mut get_connection().await?.into_inner())
|
||||||
|
.await
|
||||||
|
.to_internal_error()
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn get_voice_channel_members(channel_id: &str) -> Result<Option<Vec<String>>> {
|
||||||
|
get_connection()
|
||||||
|
.await?
|
||||||
|
.smembers::<_, Option<Vec<String>>>(format!("vc_members:{channel_id}"))
|
||||||
|
.await
|
||||||
|
.to_internal_error()
|
||||||
|
.map(|opt| opt.and_then(|v| if v.is_empty() { None } else { Some(v) }))
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn get_voice_state(
|
||||||
|
channel_id: &str,
|
||||||
|
server_id: Option<&str>,
|
||||||
|
user_id: &str,
|
||||||
|
) -> Result<Option<UserVoiceState>> {
|
||||||
|
let unique_key = format!("{}:{}", user_id, server_id.unwrap_or(channel_id));
|
||||||
|
|
||||||
|
let (joined_at, is_publishing, is_receiving, screensharing, camera) = get_connection()
|
||||||
|
.await?
|
||||||
|
.mget(&[
|
||||||
|
format!("joined_at:{unique_key}"),
|
||||||
|
format!("is_publishing:{unique_key}"),
|
||||||
|
format!("is_receiving:{unique_key}"),
|
||||||
|
format!("screensharing:{unique_key}"),
|
||||||
|
format!("camera:{unique_key}"),
|
||||||
|
])
|
||||||
|
.await
|
||||||
|
.to_internal_error()?;
|
||||||
|
|
||||||
|
match (
|
||||||
|
joined_at,
|
||||||
|
is_publishing,
|
||||||
|
is_receiving,
|
||||||
|
screensharing,
|
||||||
|
camera,
|
||||||
|
) {
|
||||||
|
(
|
||||||
|
Some(joined_at),
|
||||||
|
Some(is_publishing),
|
||||||
|
Some(is_receiving),
|
||||||
|
Some(screensharing),
|
||||||
|
Some(camera),
|
||||||
|
) => Ok(Some(v0::UserVoiceState {
|
||||||
|
joined_at: Timestamp::UNIX_EPOCH
|
||||||
|
.checked_add(Duration::milliseconds(joined_at))
|
||||||
|
.unwrap(),
|
||||||
|
id: user_id.to_string(),
|
||||||
|
is_receiving,
|
||||||
|
is_publishing,
|
||||||
|
screensharing,
|
||||||
|
camera,
|
||||||
|
})),
|
||||||
|
_ => Ok(None),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn get_channel_voice_state(channel: &Channel) -> Result<Option<v0::ChannelVoiceState>> {
|
||||||
|
let members = get_voice_channel_members(channel.id()).await?;
|
||||||
|
|
||||||
|
let server = channel.server();
|
||||||
|
|
||||||
|
if let Some(members) = members {
|
||||||
|
let mut participants = Vec::with_capacity(members.len());
|
||||||
|
|
||||||
|
for user_id in members {
|
||||||
|
if let Some(voice_state) = get_voice_state(channel.id(), server, &user_id).await? {
|
||||||
|
participants.push(voice_state);
|
||||||
|
} else {
|
||||||
|
log::info!("Voice state not found but member in voice channel members, removing.");
|
||||||
|
|
||||||
|
delete_voice_state(channel.id(), server, &user_id).await?;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// In case a user voice state failed to be fetched, the vec's capacity will be larger than the length, shrink it
|
||||||
|
participants.shrink_to_fit();
|
||||||
|
|
||||||
|
Ok(Some(v0::ChannelVoiceState {
|
||||||
|
id: channel.id().to_string(),
|
||||||
|
participants,
|
||||||
|
}))
|
||||||
|
} else {
|
||||||
|
Ok(None)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn move_user(user: &str, from: &str, to: &str) -> Result<()> {
|
||||||
|
get_connection()
|
||||||
|
.await?
|
||||||
|
.smove(
|
||||||
|
format!("vc-members-{from}"),
|
||||||
|
format!("vc-members-{to}"),
|
||||||
|
user,
|
||||||
|
)
|
||||||
|
.await
|
||||||
|
.to_internal_error()
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn sync_voice_permissions(
|
||||||
|
db: &Database,
|
||||||
|
voice_client: &VoiceClient,
|
||||||
|
channel: &Channel,
|
||||||
|
server: Option<&Server>,
|
||||||
|
role_id: Option<&str>,
|
||||||
|
) -> Result<()> {
|
||||||
|
let Some(node) = get_channel_node(channel.id()).await? else {
|
||||||
|
return Ok(());
|
||||||
|
};
|
||||||
|
|
||||||
|
for user_id in get_voice_channel_members(channel.id())
|
||||||
|
.await?
|
||||||
|
.iter()
|
||||||
|
.flatten()
|
||||||
|
{
|
||||||
|
let user = Reference::from_unchecked(user_id).as_user(db).await?;
|
||||||
|
|
||||||
|
sync_user_voice_permissions(db, voice_client, &node, &user, channel, server, role_id)
|
||||||
|
.await?;
|
||||||
|
}
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn sync_user_voice_permissions(
|
||||||
|
db: &Database,
|
||||||
|
voice_client: &VoiceClient,
|
||||||
|
node: &str,
|
||||||
|
user: &User,
|
||||||
|
channel: &Channel,
|
||||||
|
server: Option<&Server>,
|
||||||
|
role_id: Option<&str>,
|
||||||
|
) -> Result<()> {
|
||||||
|
let channel_id = channel.id();
|
||||||
|
let server_id = server.as_ref().map(|s| s.id.as_str());
|
||||||
|
|
||||||
|
let member = match server_id {
|
||||||
|
Some(server_id) => Some(
|
||||||
|
Reference::from_unchecked(&user.id)
|
||||||
|
.as_member(db, server_id)
|
||||||
|
.await?,
|
||||||
|
),
|
||||||
|
None => None,
|
||||||
|
};
|
||||||
|
|
||||||
|
if role_id.is_none_or(|role_id| {
|
||||||
|
member
|
||||||
|
.as_ref()
|
||||||
|
.is_none_or(|member| member.roles.iter().any(|r| r == role_id))
|
||||||
|
}) {
|
||||||
|
let Some(voice_state) = get_voice_state(channel_id, server_id, &user.id).await? else {
|
||||||
|
return Ok(());
|
||||||
|
};
|
||||||
|
|
||||||
|
let mut query = DatabasePermissionQuery::new(db, user)
|
||||||
|
.channel(channel)
|
||||||
|
.user(user);
|
||||||
|
|
||||||
|
if let (Some(server), Some(member)) = (server, member.as_ref()) {
|
||||||
|
query = query.member(member).server(server)
|
||||||
|
}
|
||||||
|
|
||||||
|
let permissions = calculate_channel_permissions(&mut query).await;
|
||||||
|
let limits = user.limits().await;
|
||||||
|
|
||||||
|
let mut update_event = PartialUserVoiceState {
|
||||||
|
id: Some(user.id.clone()),
|
||||||
|
..Default::default()
|
||||||
|
};
|
||||||
|
|
||||||
|
let before = update_event.clone();
|
||||||
|
|
||||||
|
let can_video =
|
||||||
|
limits.video && permissions.has_channel_permission(ChannelPermission::Video);
|
||||||
|
let can_speak = permissions.has_channel_permission(ChannelPermission::Speak);
|
||||||
|
let can_listen = permissions.has_channel_permission(ChannelPermission::Listen);
|
||||||
|
|
||||||
|
update_event.camera = voice_state.camera.then_some(can_video);
|
||||||
|
update_event.screensharing = voice_state.screensharing.then_some(can_video);
|
||||||
|
update_event.is_publishing = voice_state.is_publishing.then_some(can_speak);
|
||||||
|
|
||||||
|
update_voice_state(channel_id, server_id, &user.id, &update_event).await?;
|
||||||
|
|
||||||
|
voice_client
|
||||||
|
.update_permissions(
|
||||||
|
node,
|
||||||
|
user,
|
||||||
|
channel_id,
|
||||||
|
ParticipantPermission {
|
||||||
|
can_subscribe: can_listen,
|
||||||
|
can_publish: can_speak,
|
||||||
|
can_publish_data: can_speak,
|
||||||
|
..Default::default()
|
||||||
|
},
|
||||||
|
)
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
if update_event != before {
|
||||||
|
EventV1::UserVoiceStateUpdate {
|
||||||
|
id: user.id.clone(),
|
||||||
|
channel_id: channel_id.to_string(),
|
||||||
|
data: update_event,
|
||||||
|
}
|
||||||
|
.p(channel_id.to_string())
|
||||||
|
.await;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn set_channel_call_started_system_message(
|
||||||
|
channel_id: &str,
|
||||||
|
message_id: &str,
|
||||||
|
) -> Result<()> {
|
||||||
|
get_connection()
|
||||||
|
.await?
|
||||||
|
.set(format!("call_started_message:{channel_id}"), message_id)
|
||||||
|
.await
|
||||||
|
.to_internal_error()
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn take_channel_call_started_system_message(channel_id: &str) -> Result<Option<String>> {
|
||||||
|
get_connection()
|
||||||
|
.await?
|
||||||
|
.get_del(format!("call_started_message:{channel_id}"))
|
||||||
|
.await
|
||||||
|
.to_internal_error()
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn set_call_notification_recipients(
|
||||||
|
channel_id: &str,
|
||||||
|
user_id: &str,
|
||||||
|
recipients: &[String],
|
||||||
|
) -> Result<()> {
|
||||||
|
get_connection()
|
||||||
|
.await?
|
||||||
|
.set_ex(
|
||||||
|
format!("call_notification_recipients:{channel_id}-{user_id}"),
|
||||||
|
recipients,
|
||||||
|
10,
|
||||||
|
)
|
||||||
|
.await
|
||||||
|
.to_internal_error()
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn get_call_notification_recipients(
|
||||||
|
channel_id: &str,
|
||||||
|
user_id: &str,
|
||||||
|
) -> Result<Option<Vec<String>>> {
|
||||||
|
get_connection()
|
||||||
|
.await?
|
||||||
|
.get_del(format!(
|
||||||
|
"call_notification_recipients:{channel_id}-{user_id}"
|
||||||
|
))
|
||||||
|
.await
|
||||||
|
.to_internal_error()
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn remove_user_from_voice_channels(db: &Database, voice_client: &VoiceClient, user_id: &str) -> Result<()> {
|
||||||
|
for channel_id in get_user_voice_channels(user_id).await? {
|
||||||
|
remove_user_from_voice_channel(db, voice_client, &channel_id, user_id).await?;
|
||||||
|
};
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn remove_user_from_voice_channel(db: &Database, voice_client: &VoiceClient, channel_id: &str, user_id: &str) -> Result<()> {
|
||||||
|
if let Some(node) = get_channel_node(channel_id).await? {
|
||||||
|
let _ = voice_client.remove_user(&node, user_id, channel_id).await;
|
||||||
|
}
|
||||||
|
|
||||||
|
let channel = Reference::from_unchecked(channel_id).as_channel(db).await?;
|
||||||
|
|
||||||
|
delete_voice_state(channel_id, channel.server(), user_id).await?;
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn delete_voice_channel(voice_client: &VoiceClient, channel_id: &str, server_id: Option<&str>) -> Result<()> {
|
||||||
|
if let Some(users) = get_voice_channel_members(channel_id).await? {
|
||||||
|
let node = get_channel_node(channel_id).await?.unwrap();
|
||||||
|
|
||||||
|
voice_client.delete_room(&node, channel_id).await?;
|
||||||
|
|
||||||
|
delete_channel_voice_state(channel_id, server_id, &users).await?;
|
||||||
|
};
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
@@ -0,0 +1,156 @@
|
|||||||
|
use crate::{
|
||||||
|
models::{Channel, User},
|
||||||
|
Database,
|
||||||
|
};
|
||||||
|
use livekit_api::{
|
||||||
|
access_token::{AccessToken, VideoGrants},
|
||||||
|
services::room::{CreateRoomOptions, RoomClient as InnerRoomClient, UpdateParticipantOptions},
|
||||||
|
};
|
||||||
|
use livekit_protocol::{ParticipantInfo, ParticipantPermission, Room};
|
||||||
|
use revolt_config::{config, LiveKitNode};
|
||||||
|
use revolt_permissions::{ChannelPermission, PermissionValue};
|
||||||
|
use revolt_result::{create_error, Result, ToRevoltError};
|
||||||
|
use std::{collections::HashMap, time::Duration};
|
||||||
|
|
||||||
|
use super::get_allowed_sources;
|
||||||
|
|
||||||
|
#[derive(Debug)]
|
||||||
|
pub struct RoomClient {
|
||||||
|
pub client: InnerRoomClient,
|
||||||
|
pub node: LiveKitNode,
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Debug)]
|
||||||
|
pub struct VoiceClient {
|
||||||
|
pub rooms: HashMap<String, RoomClient>,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl VoiceClient {
|
||||||
|
pub fn new(nodes: HashMap<String, LiveKitNode>) -> Self {
|
||||||
|
Self {
|
||||||
|
rooms: nodes
|
||||||
|
.into_iter()
|
||||||
|
.map(|(name, node)| {
|
||||||
|
(
|
||||||
|
name,
|
||||||
|
RoomClient {
|
||||||
|
client: InnerRoomClient::with_api_key(
|
||||||
|
&node.url,
|
||||||
|
&node.key,
|
||||||
|
&node.secret,
|
||||||
|
),
|
||||||
|
node,
|
||||||
|
},
|
||||||
|
)
|
||||||
|
})
|
||||||
|
.collect(),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn is_enabled(&self) -> bool {
|
||||||
|
!self.rooms.is_empty()
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn from_revolt_config() -> Self {
|
||||||
|
let config = config().await;
|
||||||
|
|
||||||
|
Self::new(config.api.livekit.nodes.clone())
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn get_node(&self, name: &str) -> Result<&RoomClient> {
|
||||||
|
self.rooms
|
||||||
|
.get(name)
|
||||||
|
.ok_or_else(|| create_error!(UnknownNode))
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn create_token(
|
||||||
|
&self,
|
||||||
|
node: &str,
|
||||||
|
db: &Database,
|
||||||
|
user: &User,
|
||||||
|
permissions: PermissionValue,
|
||||||
|
channel: &Channel,
|
||||||
|
) -> Result<String> {
|
||||||
|
let room = self.get_node(node)?;
|
||||||
|
|
||||||
|
let limits = user.limits().await;
|
||||||
|
let allowed_sources = get_allowed_sources(&limits, permissions);
|
||||||
|
|
||||||
|
AccessToken::with_api_key(&room.node.key, &room.node.secret)
|
||||||
|
.with_name(&format!("{}#{}", user.username, user.discriminator))
|
||||||
|
.with_identity(&user.id)
|
||||||
|
.with_metadata(
|
||||||
|
&serde_json::to_string(&user.clone().into(db, None).await).to_internal_error()?,
|
||||||
|
)
|
||||||
|
.with_ttl(Duration::from_secs(10))
|
||||||
|
.with_grants(VideoGrants {
|
||||||
|
room_join: true,
|
||||||
|
can_publish: true,
|
||||||
|
can_publish_data: false,
|
||||||
|
can_publish_sources: allowed_sources
|
||||||
|
.into_iter()
|
||||||
|
.map(ToString::to_string)
|
||||||
|
.collect(),
|
||||||
|
can_subscribe: permissions.has_channel_permission(ChannelPermission::Listen),
|
||||||
|
room: channel.id().to_string(),
|
||||||
|
..Default::default()
|
||||||
|
})
|
||||||
|
.to_jwt()
|
||||||
|
.to_internal_error()
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn create_room(&self, node: &str, channel: &Channel) -> Result<Room> {
|
||||||
|
let room = self.get_node(node)?;
|
||||||
|
|
||||||
|
room.client
|
||||||
|
.create_room(
|
||||||
|
channel.id(),
|
||||||
|
CreateRoomOptions {
|
||||||
|
empty_timeout: 5 * 60, // 5 minutes,
|
||||||
|
..Default::default()
|
||||||
|
},
|
||||||
|
)
|
||||||
|
.await
|
||||||
|
.to_internal_error()
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn update_permissions(
|
||||||
|
&self,
|
||||||
|
node: &str,
|
||||||
|
user: &User,
|
||||||
|
channel_id: &str,
|
||||||
|
new_permissions: ParticipantPermission,
|
||||||
|
) -> Result<ParticipantInfo> {
|
||||||
|
let room = self.get_node(node)?;
|
||||||
|
|
||||||
|
room.client
|
||||||
|
.update_participant(
|
||||||
|
channel_id,
|
||||||
|
&user.id,
|
||||||
|
UpdateParticipantOptions {
|
||||||
|
permission: Some(new_permissions),
|
||||||
|
..Default::default()
|
||||||
|
},
|
||||||
|
)
|
||||||
|
.await
|
||||||
|
.to_internal_error()
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn remove_user(&self, node: &str, user_id: &str, channel_id: &str) -> Result<()> {
|
||||||
|
let room = self.get_node(node)?;
|
||||||
|
|
||||||
|
room.client
|
||||||
|
.remove_participant(channel_id, user_id)
|
||||||
|
.await
|
||||||
|
.to_internal_error()
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn delete_room(&self, node: &str, channel_id: &str) -> Result<()> {
|
||||||
|
let room = self.get_node(node)?;
|
||||||
|
|
||||||
|
room.client
|
||||||
|
.delete_room(channel_id)
|
||||||
|
.await
|
||||||
|
.to_internal_error()
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<!-- Compiled with Bootstrap Email version: 1.5.1 --><meta http-equiv="x-ua-compatible" content="ie=edge">
|
<!-- Compiled with Bootstrap Email version: 1.6.0 --><meta http-equiv="x-ua-compatible" content="ie=edge">
|
||||||
<meta name="x-apple-disable-message-reformatting">
|
<meta name="x-apple-disable-message-reformatting">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta name="format-detection" content="telephone=no, date=no, address=no, email=no">
|
<meta name="format-detection" content="telephone=no, date=no, address=no, email=no">
|
||||||
@@ -42,7 +42,7 @@
|
|||||||
<tbody>
|
<tbody>
|
||||||
<tr>
|
<tr>
|
||||||
<td style="line-height: 24px; font-size: 16px; margin: 0;" align="left">
|
<td style="line-height: 24px; font-size: 16px; margin: 0;" align="left">
|
||||||
<img alt="Revolt Logo" class="w-24" src="https://app.revolt.chat/assets/logo_round.png" style="height: auto; line-height: 100%; outline: none; text-decoration: none; display: block; width: 96px; border-style: none; border-width: 0;" width="96">
|
<img alt="Stoat Logo" class="w-24" src="https://stoat.chat/favicon.svg" style="height: auto; line-height: 100%; outline: none; text-decoration: none; display: block; width: 96px; border-style: none; border-width: 0;" width="96">
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
@@ -107,7 +107,7 @@
|
|||||||
</table>
|
</table>
|
||||||
<div class="text-muted text-center" style="color: #718096;" align="center">
|
<div class="text-muted text-center" style="color: #718096;" align="center">
|
||||||
This email is intended for {{email}}<br>
|
This email is intended for {{email}}<br>
|
||||||
Sent from Revolt<br>
|
Sent from Stoat<br>
|
||||||
Made in Europe
|
Made in Europe
|
||||||
</div>
|
</div>
|
||||||
<table class="s-6 w-full" role="presentation" border="0" cellpadding="0" cellspacing="0" style="width: 100%;" width="100%">
|
<table class="s-6 w-full" role="presentation" border="0" cellpadding="0" cellspacing="0" style="width: 100%;" width="100%">
|
||||||
|
|||||||
@@ -1,38 +1,37 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
<head>
|
||||||
<style>
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||||
/* Add custom classes and styles that you want inlined here */
|
<style>
|
||||||
</style>
|
/* Add custom classes and styles that you want inlined here */
|
||||||
</head>
|
</style>
|
||||||
<body class="bg-light">
|
</head>
|
||||||
<div class="container">
|
|
||||||
<img
|
<body class="bg-light">
|
||||||
alt="Revolt Logo"
|
<div class="container">
|
||||||
class="ax-center my-10 w-24"
|
<img alt="Stoat Logo" class="ax-center my-10 w-24" src="https://stoat.chat/favicon.svg" />
|
||||||
src="https://app.revolt.chat/assets/logo_round.png"
|
<div class="card p-6 p-lg-10 space-y-4">
|
||||||
/>
|
<h1 class="h3 fw-700">Account Deletion</h1>
|
||||||
<div class="card p-6 p-lg-10 space-y-4">
|
<p>
|
||||||
<h1 class="h3 fw-700">Account Deletion</h1>
|
You requested to have your account deleted, if you did not perform
|
||||||
<p>
|
this action please take measures to secure your account immediately.
|
||||||
You requested to have your account deleted, if you did not perform
|
</p>
|
||||||
this action please take measures to secure your account immediately.
|
<a class="btn btn-primary p-3 fw-700" href="{{url}}">Confirm</a>
|
||||||
</p>
|
|
||||||
<a class="btn btn-primary p-3 fw-700" href="{{url}}">Confirm</a>
|
|
||||||
</div>
|
|
||||||
<div class="text-muted text-center my-6">
|
|
||||||
This email is intended for {{email}}<br />
|
|
||||||
Sent from Revolt<br />
|
|
||||||
Made in Europe
|
|
||||||
</div>
|
|
||||||
<div class="text-muted text-xs my-6 ax-center">
|
|
||||||
Revolt Platforms Ltd. is a company incorporated and registered under the
|
|
||||||
laws of England and Wales.<br />
|
|
||||||
Registered Company Number: 16260658<br />
|
|
||||||
Registered Office:<br />
|
|
||||||
Suite 5703 Unit 3A, 34-35 Hatton Garden,<br />
|
|
||||||
Holborn, United Kingdom, EC1N 8DX
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</body>
|
<div class="text-muted text-center my-6">
|
||||||
</html>
|
This email is intended for {{email}}<br />
|
||||||
|
Sent from Stoat<br />
|
||||||
|
Made in Europe
|
||||||
|
</div>
|
||||||
|
<div class="text-muted text-xs my-6 ax-center">
|
||||||
|
Revolt Platforms Ltd. is a company incorporated and registered under the
|
||||||
|
laws of England and Wales.<br />
|
||||||
|
Registered Company Number: 16260658<br />
|
||||||
|
Registered Office:<br />
|
||||||
|
Suite 5703 Unit 3A, 34-35 Hatton Garden,<br />
|
||||||
|
Holborn, United Kingdom, EC1N 8DX
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
||||||
@@ -3,7 +3,7 @@ You requested to have your account deleted, if you did not perform this action p
|
|||||||
Please navigate to: {{url}}
|
Please navigate to: {{url}}
|
||||||
|
|
||||||
This email is intended for {{email}}
|
This email is intended for {{email}}
|
||||||
Sent by Revolt
|
Sent by Stoat
|
||||||
Made in Europe
|
Made in Europe
|
||||||
|
|
||||||
Revolt Platforms Ltd. is a company incorporated and registered under the laws of England and Wales.
|
Revolt Platforms Ltd. is a company incorporated and registered under the laws of England and Wales.
|
||||||
|
|||||||
@@ -4,6 +4,6 @@ Please navigate to: {{url}}
|
|||||||
|
|
||||||
This email is intended for {{email}}
|
This email is intended for {{email}}
|
||||||
|
|
||||||
This email has no association with Revolt or Revolt Platforms Ltd.
|
This email has no association with Stoat or Revolt Platforms Ltd.
|
||||||
Learn more about third party instances here:
|
Learn more about third party instances here:
|
||||||
https://developers.revolt.chat/faq.html
|
https://developers.stoat.chat/faq.html
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<!-- Compiled with Bootstrap Email version: 1.5.1 --><meta http-equiv="x-ua-compatible" content="ie=edge">
|
<!-- Compiled with Bootstrap Email version: 1.6.0 --><meta http-equiv="x-ua-compatible" content="ie=edge">
|
||||||
<meta name="x-apple-disable-message-reformatting">
|
<meta name="x-apple-disable-message-reformatting">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta name="format-detection" content="telephone=no, date=no, address=no, email=no">
|
<meta name="format-detection" content="telephone=no, date=no, address=no, email=no">
|
||||||
@@ -42,7 +42,7 @@
|
|||||||
<tbody>
|
<tbody>
|
||||||
<tr>
|
<tr>
|
||||||
<td style="line-height: 24px; font-size: 16px; margin: 0;" align="left">
|
<td style="line-height: 24px; font-size: 16px; margin: 0;" align="left">
|
||||||
<img class="w-24" src="https://app.revolt.chat/assets/logo_round.png" style="height: auto; line-height: 100%; outline: none; text-decoration: none; display: block; width: 96px; border-style: none; border-width: 0;" width="96">
|
<img class="w-24" src="https://stoat.chat/favicon.svg" alt="Stoat Logo" style="height: auto; line-height: 100%; outline: none; text-decoration: none; display: block; width: 96px; border-style: none; border-width: 0;" width="96">
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
@@ -120,7 +120,7 @@
|
|||||||
</table>
|
</table>
|
||||||
<div class="text-muted text-center" style="color: #718096;" align="center">
|
<div class="text-muted text-center" style="color: #718096;" align="center">
|
||||||
This email is intended for {{email}}<br>
|
This email is intended for {{email}}<br>
|
||||||
Sent from Revolt<br>
|
Sent from Stoat<br>
|
||||||
Made in Europe
|
Made in Europe
|
||||||
</div>
|
</div>
|
||||||
<table class="s-6 w-full" role="presentation" border="0" cellpadding="0" cellspacing="0" style="width: 100%;" width="100%">
|
<table class="s-6 w-full" role="presentation" border="0" cellpadding="0" cellspacing="0" style="width: 100%;" width="100%">
|
||||||
|
|||||||
@@ -9,7 +9,8 @@
|
|||||||
<div class="container">
|
<div class="container">
|
||||||
<img
|
<img
|
||||||
class="ax-center my-10 w-24"
|
class="ax-center my-10 w-24"
|
||||||
src="https://app.revolt.chat/assets/logo_round.png"
|
src="https://stoat.chat/favicon.svg"
|
||||||
|
alt="Stoat Logo"
|
||||||
/>
|
/>
|
||||||
<div class="card p-6 p-lg-10 space-y-4">
|
<div class="card p-6 p-lg-10 space-y-4">
|
||||||
<h1 class="h3 fw-700">Password Reset</h1>
|
<h1 class="h3 fw-700">Password Reset</h1>
|
||||||
@@ -25,7 +26,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="text-muted text-center my-6">
|
<div class="text-muted text-center my-6">
|
||||||
This email is intended for {{email}}<br />
|
This email is intended for {{email}}<br />
|
||||||
Sent from Revolt<br />
|
Sent from Stoat<br />
|
||||||
Made in Europe
|
Made in Europe
|
||||||
</div>
|
</div>
|
||||||
<div class="text-muted text-xs my-6 ax-center">
|
<div class="text-muted text-xs my-6 ax-center">
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ password on it, click below to continue.
|
|||||||
Please navigate to: {{url}}
|
Please navigate to: {{url}}
|
||||||
|
|
||||||
This email is intended for {{email}}
|
This email is intended for {{email}}
|
||||||
Sent by Revolt
|
Sent by Stoat
|
||||||
Made in Europe
|
Made in Europe
|
||||||
|
|
||||||
Revolt Platforms Ltd. is a company incorporated and registered under the laws of England and Wales.
|
Revolt Platforms Ltd. is a company incorporated and registered under the laws of England and Wales.
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user