forked from jmug/stoatchat
chore(thanos): strip down codebase to just API routes
This commit is contained in:
@@ -1,20 +0,0 @@
|
|||||||
stages:
|
|
||||||
- build
|
|
||||||
|
|
||||||
# Rocket does not currently compile on stable Rust.
|
|
||||||
# Once it does, we can uncomment this, and instead
|
|
||||||
# put `allow-failure: true` on the nightly build.
|
|
||||||
#
|
|
||||||
# rust-latest:
|
|
||||||
# stage: build
|
|
||||||
# image: rust:latest
|
|
||||||
# script:
|
|
||||||
# - cargo build --verbose
|
|
||||||
# - cargo test --verbose
|
|
||||||
|
|
||||||
rust-nightly:
|
|
||||||
stage: build
|
|
||||||
image: rustlang/rust:nightly
|
|
||||||
script:
|
|
||||||
- cargo build --verbose
|
|
||||||
- cargo test --verbose
|
|
||||||
519
Cargo.lock
generated
519
Cargo.lock
generated
@@ -65,8 +65,8 @@ version = "1.1.2"
|
|||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "a3203e79f4dd9bdda415ed03cf14dae5a2bf775c683a00f94e9cd1faf0f596e5"
|
checksum = "a3203e79f4dd9bdda415ed03cf14dae5a2bf775c683a00f94e9cd1faf0f596e5"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"quote",
|
"quote 1.0.9",
|
||||||
"syn",
|
"syn 1.0.76",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@@ -195,6 +195,20 @@ dependencies = [
|
|||||||
"wasm-bindgen-futures",
|
"wasm-bindgen-futures",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "async-std-resolver"
|
||||||
|
version = "0.20.3"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "ed4e2c3da14d8ad45acb1e3191db7a918e9505b6f155b218e70a7c9a1a48c638"
|
||||||
|
dependencies = [
|
||||||
|
"async-std",
|
||||||
|
"async-trait",
|
||||||
|
"futures-io",
|
||||||
|
"futures-util",
|
||||||
|
"pin-utils",
|
||||||
|
"trust-dns-resolver 0.20.3",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "async-stream"
|
name = "async-stream"
|
||||||
version = "0.3.2"
|
version = "0.3.2"
|
||||||
@@ -212,8 +226,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|||||||
checksum = "648ed8c8d2ce5409ccd57453d9d1b214b342a0d69376a6feda1fd6cae3299308"
|
checksum = "648ed8c8d2ce5409ccd57453d9d1b214b342a0d69376a6feda1fd6cae3299308"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
"quote",
|
"quote 1.0.9",
|
||||||
"syn",
|
"syn 1.0.76",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@@ -229,8 +243,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|||||||
checksum = "44318e776df68115a881de9a8fd1b9e53368d7a4a5ce4cc48517da3393233a5e"
|
checksum = "44318e776df68115a881de9a8fd1b9e53368d7a4a5ce4cc48517da3393233a5e"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
"quote",
|
"quote 1.0.9",
|
||||||
"syn",
|
"syn 1.0.76",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@@ -442,6 +456,25 @@ dependencies = [
|
|||||||
"uuid",
|
"uuid",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "bson"
|
||||||
|
version = "2.1.0"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "41539b5c502b7c4e7b8af8ef07e5c442fe79ceba62a2aad8e62bd589b9454745"
|
||||||
|
dependencies = [
|
||||||
|
"ahash",
|
||||||
|
"base64 0.13.0",
|
||||||
|
"chrono",
|
||||||
|
"hex",
|
||||||
|
"indexmap",
|
||||||
|
"lazy_static",
|
||||||
|
"rand 0.8.4",
|
||||||
|
"serde",
|
||||||
|
"serde_bytes",
|
||||||
|
"serde_json",
|
||||||
|
"uuid",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "bumpalo"
|
name = "bumpalo"
|
||||||
version = "3.7.0"
|
version = "3.7.0"
|
||||||
@@ -592,6 +625,15 @@ dependencies = [
|
|||||||
"libc",
|
"libc",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "crc32fast"
|
||||||
|
version = "1.3.1"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "a2209c310e29876f7f0b2721e7e26b84aff178aa3da5d091f9bfbf47669e60e3"
|
||||||
|
dependencies = [
|
||||||
|
"cfg-if 1.0.0",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "crossbeam-utils"
|
name = "crossbeam-utils"
|
||||||
version = "0.8.5"
|
version = "0.8.5"
|
||||||
@@ -618,8 +660,8 @@ version = "0.1.21"
|
|||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "ccc0a48a9b826acdf4028595adc9db92caea352f7af011a3034acd172a52a0aa"
|
checksum = "ccc0a48a9b826acdf4028595adc9db92caea352f7af011a3034acd172a52a0aa"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"quote",
|
"quote 1.0.9",
|
||||||
"syn",
|
"syn 1.0.76",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@@ -661,9 +703,9 @@ dependencies = [
|
|||||||
"fnv",
|
"fnv",
|
||||||
"ident_case",
|
"ident_case",
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
"quote",
|
"quote 1.0.9",
|
||||||
"strsim 0.9.3",
|
"strsim 0.9.3",
|
||||||
"syn",
|
"syn 1.0.76",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@@ -675,9 +717,9 @@ dependencies = [
|
|||||||
"fnv",
|
"fnv",
|
||||||
"ident_case",
|
"ident_case",
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
"quote",
|
"quote 1.0.9",
|
||||||
"strsim 0.10.0",
|
"strsim 0.10.0",
|
||||||
"syn",
|
"syn 1.0.76",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@@ -687,8 +729,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|||||||
checksum = "d9b5a2f4ac4969822c62224815d069952656cadc7084fdca9751e6d959189b72"
|
checksum = "d9b5a2f4ac4969822c62224815d069952656cadc7084fdca9751e6d959189b72"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"darling_core 0.10.2",
|
"darling_core 0.10.2",
|
||||||
"quote",
|
"quote 1.0.9",
|
||||||
"syn",
|
"syn 1.0.76",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@@ -698,10 +740,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|||||||
checksum = "ade7bff147130fe5e6d39f089c6bd49ec0250f35d70b2eebf72afdfc919f15cc"
|
checksum = "ade7bff147130fe5e6d39f089c6bd49ec0250f35d70b2eebf72afdfc919f15cc"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"darling_core 0.13.0",
|
"darling_core 0.13.0",
|
||||||
"quote",
|
"quote 1.0.9",
|
||||||
"syn",
|
"syn 1.0.76",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "data-encoding"
|
||||||
|
version = "2.3.2"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "3ee2393c4a91429dffb4bedf19f4d6abf27d8a732c8ce4980305d782e5426d57"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "derivative"
|
name = "derivative"
|
||||||
version = "2.2.0"
|
version = "2.2.0"
|
||||||
@@ -709,8 +757,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|||||||
checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b"
|
checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
"quote",
|
"quote 1.0.9",
|
||||||
"syn",
|
"syn 1.0.76",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@@ -730,7 +778,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|||||||
checksum = "123c73e7a6e51b05c75fe1a1b2f4e241399ea5740ed810b0e3e6cacd9db5e7b2"
|
checksum = "123c73e7a6e51b05c75fe1a1b2f4e241399ea5740ed810b0e3e6cacd9db5e7b2"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"devise_core",
|
"devise_core",
|
||||||
"quote",
|
"quote 1.0.9",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@@ -742,8 +790,8 @@ dependencies = [
|
|||||||
"bitflags",
|
"bitflags",
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
"proc-macro2-diagnostics",
|
"proc-macro2-diagnostics",
|
||||||
"quote",
|
"quote 1.0.9",
|
||||||
"syn",
|
"syn 1.0.76",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@@ -805,8 +853,8 @@ checksum = "7c5f0096a91d210159eceb2ff5e1c4da18388a170e1e3ce948aac9c8fdbbf595"
|
|||||||
dependencies = [
|
dependencies = [
|
||||||
"heck",
|
"heck",
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
"quote",
|
"quote 1.0.9",
|
||||||
"syn",
|
"syn 1.0.76",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@@ -839,9 +887,9 @@ checksum = "22deed3a8124cff5fa835713fa105621e43bbdc46690c3a6b68328a012d350d4"
|
|||||||
dependencies = [
|
dependencies = [
|
||||||
"proc-macro-error",
|
"proc-macro-error",
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
"quote",
|
"quote 1.0.9",
|
||||||
"rustversion",
|
"rustversion",
|
||||||
"syn",
|
"syn 1.0.76",
|
||||||
"synstructure",
|
"synstructure",
|
||||||
]
|
]
|
||||||
|
|
||||||
@@ -880,6 +928,18 @@ dependencies = [
|
|||||||
"version_check",
|
"version_check",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "flate2"
|
||||||
|
version = "1.0.22"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "1e6988e897c1c9c485f43b47a529cef42fde0547f9d8d41a7062518f1d8fc53f"
|
||||||
|
dependencies = [
|
||||||
|
"cfg-if 1.0.0",
|
||||||
|
"crc32fast",
|
||||||
|
"libc",
|
||||||
|
"miniz_oxide",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "fnv"
|
name = "fnv"
|
||||||
version = "1.0.7"
|
version = "1.0.7"
|
||||||
@@ -1011,8 +1071,8 @@ dependencies = [
|
|||||||
"autocfg 1.0.1",
|
"autocfg 1.0.1",
|
||||||
"proc-macro-hack",
|
"proc-macro-hack",
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
"quote",
|
"quote 1.0.9",
|
||||||
"syn",
|
"syn 1.0.76",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@@ -1796,7 +1856,7 @@ dependencies = [
|
|||||||
"async-trait",
|
"async-trait",
|
||||||
"base64 0.11.0",
|
"base64 0.11.0",
|
||||||
"bitflags",
|
"bitflags",
|
||||||
"bson",
|
"bson 1.2.3",
|
||||||
"chrono",
|
"chrono",
|
||||||
"derivative",
|
"derivative",
|
||||||
"err-derive",
|
"err-derive",
|
||||||
@@ -1823,9 +1883,58 @@ dependencies = [
|
|||||||
"time 0.1.44",
|
"time 0.1.44",
|
||||||
"tokio 0.2.25",
|
"tokio 0.2.25",
|
||||||
"tokio-rustls 0.13.1",
|
"tokio-rustls 0.13.1",
|
||||||
"trust-dns-proto",
|
"trust-dns-proto 0.19.7",
|
||||||
"trust-dns-resolver",
|
"trust-dns-resolver 0.19.7",
|
||||||
"typed-builder",
|
"typed-builder 0.4.1",
|
||||||
|
"uuid",
|
||||||
|
"version_check",
|
||||||
|
"webpki",
|
||||||
|
"webpki-roots 0.21.1",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "mongodb"
|
||||||
|
version = "2.1.0"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "bacb6f8cee6bf010d7bc57550d859f6a4ffe255eb8c9a7014637fe988eaece64"
|
||||||
|
dependencies = [
|
||||||
|
"async-std",
|
||||||
|
"async-std-resolver",
|
||||||
|
"async-trait",
|
||||||
|
"base64 0.13.0",
|
||||||
|
"bitflags",
|
||||||
|
"bson 2.1.0",
|
||||||
|
"chrono",
|
||||||
|
"derivative",
|
||||||
|
"futures-core",
|
||||||
|
"futures-executor",
|
||||||
|
"futures-io",
|
||||||
|
"futures-util",
|
||||||
|
"hex",
|
||||||
|
"hmac",
|
||||||
|
"lazy_static",
|
||||||
|
"md-5",
|
||||||
|
"os_info",
|
||||||
|
"pbkdf2",
|
||||||
|
"percent-encoding",
|
||||||
|
"rand 0.8.4",
|
||||||
|
"rustls 0.19.1",
|
||||||
|
"rustls-pemfile",
|
||||||
|
"serde",
|
||||||
|
"serde_with",
|
||||||
|
"sha-1 0.9.8",
|
||||||
|
"sha2",
|
||||||
|
"socket2 0.4.2",
|
||||||
|
"stringprep",
|
||||||
|
"strsim 0.10.0",
|
||||||
|
"take_mut",
|
||||||
|
"thiserror",
|
||||||
|
"tokio 1.11.0",
|
||||||
|
"tokio-rustls 0.22.0",
|
||||||
|
"tokio-util 0.6.8",
|
||||||
|
"trust-dns-proto 0.20.3",
|
||||||
|
"trust-dns-resolver 0.20.3",
|
||||||
|
"typed-builder 0.9.1",
|
||||||
"uuid",
|
"uuid",
|
||||||
"version_check",
|
"version_check",
|
||||||
"webpki",
|
"webpki",
|
||||||
@@ -1955,24 +2064,23 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "num_enum"
|
name = "num_enum"
|
||||||
version = "0.5.4"
|
version = "0.5.6"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "3f9bd055fb730c4f8f4f57d45d35cd6b3f0980535b056dc7ff119cee6a66ed6f"
|
checksum = "720d3ea1055e4e4574c0c0b0f8c3fd4f24c4cdaf465948206dea090b57b526ad"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"derivative",
|
|
||||||
"num_enum_derive",
|
"num_enum_derive",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "num_enum_derive"
|
name = "num_enum_derive"
|
||||||
version = "0.5.4"
|
version = "0.5.6"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "486ea01961c4a818096de679a8b740b26d9033146ac5291b1c98557658f8cdd9"
|
checksum = "0d992b768490d7fe0d8586d9b5745f6c49f557da6d81dc982b1d167ad4edbb21"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"proc-macro-crate",
|
"proc-macro-crate",
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
"quote",
|
"quote 1.0.9",
|
||||||
"syn",
|
"syn 1.0.76",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@@ -2035,6 +2143,38 @@ dependencies = [
|
|||||||
"vcpkg",
|
"vcpkg",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "ops"
|
||||||
|
version = "0.6.0"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "84d3c0b53fdad4ac53b19afbf296402d4ba0c9e99ddc28cbb5201f37ecce217a"
|
||||||
|
dependencies = [
|
||||||
|
"futures-util",
|
||||||
|
"hyper 0.14.12",
|
||||||
|
"once_cell",
|
||||||
|
"ops-core",
|
||||||
|
"prometheus",
|
||||||
|
"serde_json",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "ops-core"
|
||||||
|
version = "0.2.0"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "0d57465be38a13e24528c3c821514029e9b6171b8e86cb04cfa481c78bc7af57"
|
||||||
|
dependencies = [
|
||||||
|
"async-trait",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "optional_struct"
|
||||||
|
version = "0.2.0"
|
||||||
|
source = "git+https://github.com/insertish/OptionalStruct?rev=2011de17db6ecb210fddabe3d79ade865efaf4ee#2011de17db6ecb210fddabe3d79ade865efaf4ee"
|
||||||
|
dependencies = [
|
||||||
|
"quote 0.3.15",
|
||||||
|
"syn 0.11.11",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "os_info"
|
name = "os_info"
|
||||||
version = "3.0.7"
|
version = "3.0.7"
|
||||||
@@ -2104,8 +2244,8 @@ checksum = "82a5ca643c2303ecb740d506539deba189e16f2754040a42901cd8105d0282d0"
|
|||||||
dependencies = [
|
dependencies = [
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
"proc-macro2-diagnostics",
|
"proc-macro2-diagnostics",
|
||||||
"quote",
|
"quote 1.0.9",
|
||||||
"syn",
|
"syn 1.0.76",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@@ -2142,8 +2282,8 @@ dependencies = [
|
|||||||
"pest",
|
"pest",
|
||||||
"pest_meta",
|
"pest_meta",
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
"quote",
|
"quote 1.0.9",
|
||||||
"syn",
|
"syn 1.0.76",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@@ -2188,8 +2328,8 @@ dependencies = [
|
|||||||
"phf_shared",
|
"phf_shared",
|
||||||
"proc-macro-hack",
|
"proc-macro-hack",
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
"quote",
|
"quote 1.0.9",
|
||||||
"syn",
|
"syn 1.0.76",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@@ -2217,8 +2357,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|||||||
checksum = "6e8fe8163d14ce7f0cdac2e040116f22eac817edabff0be91e8aff7e9accf389"
|
checksum = "6e8fe8163d14ce7f0cdac2e040116f22eac817edabff0be91e8aff7e9accf389"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
"quote",
|
"quote 1.0.9",
|
||||||
"syn",
|
"syn 1.0.76",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@@ -2282,8 +2422,8 @@ checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
|
|||||||
dependencies = [
|
dependencies = [
|
||||||
"proc-macro-error-attr",
|
"proc-macro-error-attr",
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
"quote",
|
"quote 1.0.9",
|
||||||
"syn",
|
"syn 1.0.76",
|
||||||
"version_check",
|
"version_check",
|
||||||
]
|
]
|
||||||
|
|
||||||
@@ -2294,7 +2434,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|||||||
checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
|
checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
"quote",
|
"quote 1.0.9",
|
||||||
"version_check",
|
"version_check",
|
||||||
]
|
]
|
||||||
|
|
||||||
@@ -2316,7 +2456,7 @@ version = "1.0.29"
|
|||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "b9f5105d4fdaab20335ca9565e106a5d9b82b6219b5ba735731124ac6711d23d"
|
checksum = "b9f5105d4fdaab20335ca9565e106a5d9b82b6219b5ba735731124ac6711d23d"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"unicode-xid",
|
"unicode-xid 0.2.2",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@@ -2326,12 +2466,42 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|||||||
checksum = "4bf29726d67464d49fa6224a1d07936a8c08bb3fba727c7493f6cf1616fdaada"
|
checksum = "4bf29726d67464d49fa6224a1d07936a8c08bb3fba727c7493f6cf1616fdaada"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
"quote",
|
"quote 1.0.9",
|
||||||
"syn",
|
"syn 1.0.76",
|
||||||
"version_check",
|
"version_check",
|
||||||
"yansi",
|
"yansi",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "procfs"
|
||||||
|
version = "0.9.1"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "ab8809e0c18450a2db0f236d2a44ec0b4c1412d0eb936233579f0990faa5d5cd"
|
||||||
|
dependencies = [
|
||||||
|
"bitflags",
|
||||||
|
"byteorder",
|
||||||
|
"flate2",
|
||||||
|
"hex",
|
||||||
|
"lazy_static",
|
||||||
|
"libc",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "prometheus"
|
||||||
|
version = "0.11.0"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "c8425533e7122f0c3cc7a37e6244b16ad3a2cc32ae7ac6276e2a75da0d9c200d"
|
||||||
|
dependencies = [
|
||||||
|
"cfg-if 1.0.0",
|
||||||
|
"fnv",
|
||||||
|
"lazy_static",
|
||||||
|
"libc",
|
||||||
|
"parking_lot",
|
||||||
|
"procfs",
|
||||||
|
"regex",
|
||||||
|
"thiserror",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "quick-error"
|
name = "quick-error"
|
||||||
version = "1.2.3"
|
version = "1.2.3"
|
||||||
@@ -2344,6 +2514,12 @@ version = "2.0.1"
|
|||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3"
|
checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "quote"
|
||||||
|
version = "0.3.15"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "7a6e920b65c65f10b2ae65c831a81a073a89edd28c7cce89475bff467ab4167a"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "quote"
|
name = "quote"
|
||||||
version = "1.0.9"
|
version = "1.0.9"
|
||||||
@@ -2587,7 +2763,7 @@ dependencies = [
|
|||||||
"json",
|
"json",
|
||||||
"lazy_static",
|
"lazy_static",
|
||||||
"lettre",
|
"lettre",
|
||||||
"mongodb",
|
"mongodb 1.2.3",
|
||||||
"nanoid",
|
"nanoid",
|
||||||
"rand 0.8.4",
|
"rand 0.8.4",
|
||||||
"regex",
|
"regex",
|
||||||
@@ -2678,8 +2854,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|||||||
checksum = "4c38e3aecd2b21cb3959637b883bb3714bc7e43f0268b9a29d3743ee3e55cdd2"
|
checksum = "4c38e3aecd2b21cb3959637b883bb3714bc7e43f0268b9a29d3743ee3e55cdd2"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
"quote",
|
"quote 1.0.9",
|
||||||
"syn",
|
"syn 1.0.76",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@@ -2814,7 +2990,7 @@ dependencies = [
|
|||||||
"many-to-many",
|
"many-to-many",
|
||||||
"mobc",
|
"mobc",
|
||||||
"mobc-redis",
|
"mobc-redis",
|
||||||
"mongodb",
|
"mongodb 1.2.3",
|
||||||
"nanoid",
|
"nanoid",
|
||||||
"num_enum",
|
"num_enum",
|
||||||
"once_cell",
|
"once_cell",
|
||||||
@@ -2823,6 +2999,7 @@ dependencies = [
|
|||||||
"redis 0.21.2",
|
"redis 0.21.2",
|
||||||
"regex",
|
"regex",
|
||||||
"reqwest 0.11.4",
|
"reqwest 0.11.4",
|
||||||
|
"revolt-quark",
|
||||||
"rmp-serde",
|
"rmp-serde",
|
||||||
"rocket",
|
"rocket",
|
||||||
"rocket_cors",
|
"rocket_cors",
|
||||||
@@ -2834,6 +3011,24 @@ dependencies = [
|
|||||||
"web-push",
|
"web-push",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "revolt-quark"
|
||||||
|
version = "0.1.0"
|
||||||
|
dependencies = [
|
||||||
|
"async-std",
|
||||||
|
"async-trait",
|
||||||
|
"impl_ops",
|
||||||
|
"lazy_static",
|
||||||
|
"log",
|
||||||
|
"mongodb 2.1.0",
|
||||||
|
"num_enum",
|
||||||
|
"ops",
|
||||||
|
"optional_struct",
|
||||||
|
"rocket",
|
||||||
|
"serde",
|
||||||
|
"validator 0.14.0",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "ring"
|
name = "ring"
|
||||||
version = "0.16.20"
|
version = "0.16.20"
|
||||||
@@ -2917,10 +3112,10 @@ dependencies = [
|
|||||||
"glob",
|
"glob",
|
||||||
"indexmap",
|
"indexmap",
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
"quote",
|
"quote 1.0.9",
|
||||||
"rocket_http",
|
"rocket_http",
|
||||||
"syn",
|
"syn 1.0.76",
|
||||||
"unicode-xid",
|
"unicode-xid 0.2.2",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@@ -3019,6 +3214,28 @@ dependencies = [
|
|||||||
"webpki",
|
"webpki",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "rustls"
|
||||||
|
version = "0.19.1"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "35edb675feee39aec9c99fa5ff985081995a06d594114ae14cbe797ad7b7a6d7"
|
||||||
|
dependencies = [
|
||||||
|
"base64 0.13.0",
|
||||||
|
"log",
|
||||||
|
"ring",
|
||||||
|
"sct",
|
||||||
|
"webpki",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "rustls-pemfile"
|
||||||
|
version = "0.2.1"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "5eebeaeb360c87bfb72e84abdb3447159c0eaececf1bef2aecd65a8be949d1c9"
|
||||||
|
dependencies = [
|
||||||
|
"base64 0.13.0",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rustversion"
|
name = "rustversion"
|
||||||
version = "1.0.5"
|
version = "1.0.5"
|
||||||
@@ -3141,8 +3358,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|||||||
checksum = "d7bc1a1ab1961464eae040d96713baa5a724a8152c1222492465b54322ec508b"
|
checksum = "d7bc1a1ab1961464eae040d96713baa5a724a8152c1222492465b54322ec508b"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
"quote",
|
"quote 1.0.9",
|
||||||
"syn",
|
"syn 1.0.76",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@@ -3188,8 +3405,8 @@ checksum = "98c1fcca18d55d1763e1c16873c4bde0ac3ef75179a28c7b372917e0494625be"
|
|||||||
dependencies = [
|
dependencies = [
|
||||||
"darling 0.13.0",
|
"darling 0.13.0",
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
"quote",
|
"quote 1.0.9",
|
||||||
"syn",
|
"syn 1.0.76",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@@ -3354,10 +3571,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|||||||
checksum = "c87a60a40fccc84bef0652345bbbbbe20a605bf5d0ce81719fc476f5c03b50ef"
|
checksum = "c87a60a40fccc84bef0652345bbbbbe20a605bf5d0ce81719fc476f5c03b50ef"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
"quote",
|
"quote 1.0.9",
|
||||||
"serde",
|
"serde",
|
||||||
"serde_derive",
|
"serde_derive",
|
||||||
"syn",
|
"syn 1.0.76",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@@ -3368,12 +3585,12 @@ checksum = "58fa5ff6ad0d98d1ffa8cb115892b6e69d67799f6763e162a1c9db421dc22e11"
|
|||||||
dependencies = [
|
dependencies = [
|
||||||
"base-x",
|
"base-x",
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
"quote",
|
"quote 1.0.9",
|
||||||
"serde",
|
"serde",
|
||||||
"serde_derive",
|
"serde_derive",
|
||||||
"serde_json",
|
"serde_json",
|
||||||
"sha1",
|
"sha1",
|
||||||
"syn",
|
"syn 1.0.76",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@@ -3410,6 +3627,17 @@ version = "2.4.1"
|
|||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601"
|
checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "syn"
|
||||||
|
version = "0.11.11"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "d3b891b9015c88c576343b9b3e41c2c11a51c219ef067b264bd9c8aa9b441dad"
|
||||||
|
dependencies = [
|
||||||
|
"quote 0.3.15",
|
||||||
|
"synom",
|
||||||
|
"unicode-xid 0.0.4",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "syn"
|
name = "syn"
|
||||||
version = "1.0.76"
|
version = "1.0.76"
|
||||||
@@ -3417,8 +3645,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|||||||
checksum = "c6f107db402c2c2055242dbf4d2af0e69197202e9faacbef9571bbe47f5a1b84"
|
checksum = "c6f107db402c2c2055242dbf4d2af0e69197202e9faacbef9571bbe47f5a1b84"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
"quote",
|
"quote 1.0.9",
|
||||||
"unicode-xid",
|
"unicode-xid 0.2.2",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "synom"
|
||||||
|
version = "0.11.3"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "a393066ed9010ebaed60b9eafa373d4b1baac186dd7e008555b0f702b51945b6"
|
||||||
|
dependencies = [
|
||||||
|
"unicode-xid 0.0.4",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@@ -3428,9 +3665,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|||||||
checksum = "474aaa926faa1603c40b7885a9eaea29b444d1cb2850cb7c0e37bb1a4182f4fa"
|
checksum = "474aaa926faa1603c40b7885a9eaea29b444d1cb2850cb7c0e37bb1a4182f4fa"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
"quote",
|
"quote 1.0.9",
|
||||||
"syn",
|
"syn 1.0.76",
|
||||||
"unicode-xid",
|
"unicode-xid 0.2.2",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@@ -3484,8 +3721,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|||||||
checksum = "bad553cc2c78e8de258400763a647e80e6d1b31ee237275d756f6836d204494c"
|
checksum = "bad553cc2c78e8de258400763a647e80e6d1b31ee237275d756f6836d204494c"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
"quote",
|
"quote 1.0.9",
|
||||||
"syn",
|
"syn 1.0.76",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@@ -3532,9 +3769,9 @@ checksum = "fd3c141a1b43194f3f56a1411225df8646c55781d5f26db825b3d98507eb482f"
|
|||||||
dependencies = [
|
dependencies = [
|
||||||
"proc-macro-hack",
|
"proc-macro-hack",
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
"quote",
|
"quote 1.0.9",
|
||||||
"standback",
|
"standback",
|
||||||
"syn",
|
"syn 1.0.76",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@@ -3597,8 +3834,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|||||||
checksum = "e44da00bfc73a25f814cd8d7e57a68a5c31b74b3152a0a1d1f590c97ed06265a"
|
checksum = "e44da00bfc73a25f814cd8d7e57a68a5c31b74b3152a0a1d1f590c97ed06265a"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
"quote",
|
"quote 1.0.9",
|
||||||
"syn",
|
"syn 1.0.76",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@@ -3608,8 +3845,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|||||||
checksum = "54473be61f4ebe4efd09cec9bd5d16fa51d70ea0192213d754d2d500457db110"
|
checksum = "54473be61f4ebe4efd09cec9bd5d16fa51d70ea0192213d754d2d500457db110"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
"quote",
|
"quote 1.0.9",
|
||||||
"syn",
|
"syn 1.0.76",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@@ -3646,6 +3883,17 @@ dependencies = [
|
|||||||
"webpki",
|
"webpki",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "tokio-rustls"
|
||||||
|
version = "0.22.0"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "bc6844de72e57df1980054b38be3a9f4702aba4858be64dd700181a8a6d0e1b6"
|
||||||
|
dependencies = [
|
||||||
|
"rustls 0.19.1",
|
||||||
|
"tokio 1.11.0",
|
||||||
|
"webpki",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "tokio-stream"
|
name = "tokio-stream"
|
||||||
version = "0.1.7"
|
version = "0.1.7"
|
||||||
@@ -3689,6 +3937,7 @@ checksum = "08d3725d3efa29485e87311c5b699de63cde14b00ed4d256b8318aa30ca452cd"
|
|||||||
dependencies = [
|
dependencies = [
|
||||||
"bytes 1.1.0",
|
"bytes 1.1.0",
|
||||||
"futures-core",
|
"futures-core",
|
||||||
|
"futures-io",
|
||||||
"futures-sink",
|
"futures-sink",
|
||||||
"log",
|
"log",
|
||||||
"pin-project-lite 0.2.7",
|
"pin-project-lite 0.2.7",
|
||||||
@@ -3774,6 +4023,31 @@ dependencies = [
|
|||||||
"url",
|
"url",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "trust-dns-proto"
|
||||||
|
version = "0.20.3"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "ad0d7f5db438199a6e2609debe3f69f808d074e0a2888ee0bccb45fe234d03f4"
|
||||||
|
dependencies = [
|
||||||
|
"async-trait",
|
||||||
|
"cfg-if 1.0.0",
|
||||||
|
"data-encoding",
|
||||||
|
"enum-as-inner",
|
||||||
|
"futures-channel",
|
||||||
|
"futures-io",
|
||||||
|
"futures-util",
|
||||||
|
"idna",
|
||||||
|
"ipnet",
|
||||||
|
"lazy_static",
|
||||||
|
"log",
|
||||||
|
"rand 0.8.4",
|
||||||
|
"smallvec",
|
||||||
|
"thiserror",
|
||||||
|
"tinyvec",
|
||||||
|
"tokio 1.11.0",
|
||||||
|
"url",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "trust-dns-resolver"
|
name = "trust-dns-resolver"
|
||||||
version = "0.19.7"
|
version = "0.19.7"
|
||||||
@@ -3790,7 +4064,27 @@ dependencies = [
|
|||||||
"smallvec",
|
"smallvec",
|
||||||
"thiserror",
|
"thiserror",
|
||||||
"tokio 0.2.25",
|
"tokio 0.2.25",
|
||||||
"trust-dns-proto",
|
"trust-dns-proto 0.19.7",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "trust-dns-resolver"
|
||||||
|
version = "0.20.3"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "f6ad17b608a64bd0735e67bde16b0636f8aa8591f831a25d18443ed00a699770"
|
||||||
|
dependencies = [
|
||||||
|
"cfg-if 1.0.0",
|
||||||
|
"futures-util",
|
||||||
|
"ipconfig",
|
||||||
|
"lazy_static",
|
||||||
|
"log",
|
||||||
|
"lru-cache",
|
||||||
|
"parking_lot",
|
||||||
|
"resolv-conf",
|
||||||
|
"smallvec",
|
||||||
|
"thiserror",
|
||||||
|
"tokio 1.11.0",
|
||||||
|
"trust-dns-proto 0.20.3",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@@ -3835,8 +4129,19 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|||||||
checksum = "dfc955f27acc7a547f328f52f4a5a568986a31efec2fc6de865279f3995787b9"
|
checksum = "dfc955f27acc7a547f328f52f4a5a568986a31efec2fc6de865279f3995787b9"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
"quote",
|
"quote 1.0.9",
|
||||||
"syn",
|
"syn 1.0.76",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "typed-builder"
|
||||||
|
version = "0.9.1"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "a46ee5bd706ff79131be9c94e7edcb82b703c487766a114434e5790361cf08c5"
|
||||||
|
dependencies = [
|
||||||
|
"proc-macro2",
|
||||||
|
"quote 1.0.9",
|
||||||
|
"syn 1.0.76",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@@ -3927,6 +4232,12 @@ version = "1.8.0"
|
|||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "8895849a949e7845e06bd6dc1aa51731a103c42707010a5b591c0038fb73385b"
|
checksum = "8895849a949e7845e06bd6dc1aa51731a103c42707010a5b591c0038fb73385b"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "unicode-xid"
|
||||||
|
version = "0.0.4"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "8c1f860d7d29cf02cb2f3f359fd35991af3d30bac52c57d265a3c461074cb4dc"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "unicode-xid"
|
name = "unicode-xid"
|
||||||
version = "0.2.2"
|
version = "0.2.2"
|
||||||
@@ -3970,6 +4281,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|||||||
checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7"
|
checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"getrandom 0.2.3",
|
"getrandom 0.2.3",
|
||||||
|
"serde",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@@ -3985,7 +4297,7 @@ dependencies = [
|
|||||||
"serde_derive",
|
"serde_derive",
|
||||||
"serde_json",
|
"serde_json",
|
||||||
"url",
|
"url",
|
||||||
"validator_derive",
|
"validator_derive 0.11.0",
|
||||||
"validator_types 0.11.0",
|
"validator_types 0.11.0",
|
||||||
]
|
]
|
||||||
|
|
||||||
@@ -4002,6 +4314,7 @@ dependencies = [
|
|||||||
"serde_derive",
|
"serde_derive",
|
||||||
"serde_json",
|
"serde_json",
|
||||||
"url",
|
"url",
|
||||||
|
"validator_derive 0.14.0",
|
||||||
"validator_types 0.14.0",
|
"validator_types 0.14.0",
|
||||||
]
|
]
|
||||||
|
|
||||||
@@ -4015,12 +4328,28 @@ dependencies = [
|
|||||||
"lazy_static",
|
"lazy_static",
|
||||||
"proc-macro-error",
|
"proc-macro-error",
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
"quote",
|
"quote 1.0.9",
|
||||||
"regex",
|
"regex",
|
||||||
"syn",
|
"syn 1.0.76",
|
||||||
"validator_types 0.11.0",
|
"validator_types 0.11.0",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "validator_derive"
|
||||||
|
version = "0.14.0"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "d85135714dba11a1bd0b3eb1744169266f1a38977bf4e3ff5e2e1acb8c2b7eee"
|
||||||
|
dependencies = [
|
||||||
|
"if_chain",
|
||||||
|
"lazy_static",
|
||||||
|
"proc-macro-error",
|
||||||
|
"proc-macro2",
|
||||||
|
"quote 1.0.9",
|
||||||
|
"regex",
|
||||||
|
"syn 1.0.76",
|
||||||
|
"validator_types 0.14.0",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "validator_types"
|
name = "validator_types"
|
||||||
version = "0.11.0"
|
version = "0.11.0"
|
||||||
@@ -4034,7 +4363,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|||||||
checksum = "ded9d97e1d42327632f5f3bae6403c04886e2de3036261ef42deebd931a6a291"
|
checksum = "ded9d97e1d42327632f5f3bae6403c04886e2de3036261ef42deebd931a6a291"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
"syn",
|
"syn 1.0.76",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@@ -4109,8 +4438,8 @@ dependencies = [
|
|||||||
"lazy_static",
|
"lazy_static",
|
||||||
"log",
|
"log",
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
"quote",
|
"quote 1.0.9",
|
||||||
"syn",
|
"syn 1.0.76",
|
||||||
"wasm-bindgen-shared",
|
"wasm-bindgen-shared",
|
||||||
]
|
]
|
||||||
|
|
||||||
@@ -4132,7 +4461,7 @@ version = "0.2.78"
|
|||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "d56146e7c495528bf6587663bea13a8eb588d39b36b679d83972e1a2dbbdacf9"
|
checksum = "d56146e7c495528bf6587663bea13a8eb588d39b36b679d83972e1a2dbbdacf9"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"quote",
|
"quote 1.0.9",
|
||||||
"wasm-bindgen-macro-support",
|
"wasm-bindgen-macro-support",
|
||||||
]
|
]
|
||||||
|
|
||||||
@@ -4143,8 +4472,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|||||||
checksum = "7803e0eea25835f8abdc585cd3021b3deb11543c6fe226dcd30b228857c5c5ab"
|
checksum = "7803e0eea25835f8abdc585cd3021b3deb11543c6fe226dcd30b228857c5c5ab"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
"quote",
|
"quote 1.0.9",
|
||||||
"syn",
|
"syn 1.0.76",
|
||||||
"wasm-bindgen-backend",
|
"wasm-bindgen-backend",
|
||||||
"wasm-bindgen-shared",
|
"wasm-bindgen-shared",
|
||||||
]
|
]
|
||||||
@@ -4303,7 +4632,7 @@ dependencies = [
|
|||||||
"chrono",
|
"chrono",
|
||||||
"futures",
|
"futures",
|
||||||
"log",
|
"log",
|
||||||
"mongodb",
|
"mongodb 1.2.3",
|
||||||
"serde",
|
"serde",
|
||||||
"thiserror",
|
"thiserror",
|
||||||
"ulid",
|
"ulid",
|
||||||
@@ -4320,9 +4649,9 @@ dependencies = [
|
|||||||
"darling 0.10.2",
|
"darling 0.10.2",
|
||||||
"proc-macro-error",
|
"proc-macro-error",
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
"quote",
|
"quote 1.0.9",
|
||||||
"serde",
|
"serde",
|
||||||
"syn",
|
"syn 1.0.76",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
|
|||||||
@@ -63,3 +63,6 @@ async-tungstenite = { version = "0.10.0", features = ["async-std-runtime"] }
|
|||||||
rocket = { version = "0.5.0-rc.1", default-features = false, features = ["json"] }
|
rocket = { version = "0.5.0-rc.1", default-features = false, features = ["json"] }
|
||||||
mongodb = { version = "1.2.2", features = ["tokio-runtime"], default-features = false }
|
mongodb = { version = "1.2.2", features = ["tokio-runtime"], default-features = false }
|
||||||
rocket_cors = { git = "https://github.com/lawliet89/rocket_cors", rev = "5843861a88958c16bfaa0b40f0d8910772bcd2f6" }
|
rocket_cors = { git = "https://github.com/lawliet89/rocket_cors", rev = "5843861a88958c16bfaa0b40f0d8910772bcd2f6" }
|
||||||
|
|
||||||
|
# quark
|
||||||
|
revolt-quark = { path = "/run/media/mink/2b4927e2-fad4-4b12-b6ea-cdf7e0ab0339/revolt/quark/" }
|
||||||
|
|||||||
661
LICENSE
661
LICENSE
@@ -1,661 +0,0 @@
|
|||||||
GNU AFFERO GENERAL PUBLIC LICENSE
|
|
||||||
Version 3, 19 November 2007
|
|
||||||
|
|
||||||
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
|
|
||||||
Everyone is permitted to copy and distribute verbatim copies
|
|
||||||
of this license document, but changing it is not allowed.
|
|
||||||
|
|
||||||
Preamble
|
|
||||||
|
|
||||||
The GNU Affero General Public License is a free, copyleft license for
|
|
||||||
software and other kinds of works, specifically designed to ensure
|
|
||||||
cooperation with the community in the case of network server software.
|
|
||||||
|
|
||||||
The licenses for most software and other practical works are designed
|
|
||||||
to take away your freedom to share and change the works. By contrast,
|
|
||||||
our General Public Licenses are intended to guarantee your freedom to
|
|
||||||
share and change all versions of a program--to make sure it remains free
|
|
||||||
software for all its users.
|
|
||||||
|
|
||||||
When we speak of free software, we are referring to freedom, not
|
|
||||||
price. Our General Public Licenses are designed to make sure that you
|
|
||||||
have the freedom to distribute copies of free software (and charge for
|
|
||||||
them if you wish), that you receive source code or can get it if you
|
|
||||||
want it, that you can change the software or use pieces of it in new
|
|
||||||
free programs, and that you know you can do these things.
|
|
||||||
|
|
||||||
Developers that use our General Public Licenses protect your rights
|
|
||||||
with two steps: (1) assert copyright on the software, and (2) offer
|
|
||||||
you this License which gives you legal permission to copy, distribute
|
|
||||||
and/or modify the software.
|
|
||||||
|
|
||||||
A secondary benefit of defending all users' freedom is that
|
|
||||||
improvements made in alternate versions of the program, if they
|
|
||||||
receive widespread use, become available for other developers to
|
|
||||||
incorporate. Many developers of free software are heartened and
|
|
||||||
encouraged by the resulting cooperation. However, in the case of
|
|
||||||
software used on network servers, this result may fail to come about.
|
|
||||||
The GNU General Public License permits making a modified version and
|
|
||||||
letting the public access it on a server without ever releasing its
|
|
||||||
source code to the public.
|
|
||||||
|
|
||||||
The GNU Affero General Public License is designed specifically to
|
|
||||||
ensure that, in such cases, the modified source code becomes available
|
|
||||||
to the community. It requires the operator of a network server to
|
|
||||||
provide the source code of the modified version running there to the
|
|
||||||
users of that server. Therefore, public use of a modified version, on
|
|
||||||
a publicly accessible server, gives the public access to the source
|
|
||||||
code of the modified version.
|
|
||||||
|
|
||||||
An older license, called the Affero General Public License and
|
|
||||||
published by Affero, was designed to accomplish similar goals. This is
|
|
||||||
a different license, not a version of the Affero GPL, but Affero has
|
|
||||||
released a new version of the Affero GPL which permits relicensing under
|
|
||||||
this license.
|
|
||||||
|
|
||||||
The precise terms and conditions for copying, distribution and
|
|
||||||
modification follow.
|
|
||||||
|
|
||||||
TERMS AND CONDITIONS
|
|
||||||
|
|
||||||
0. Definitions.
|
|
||||||
|
|
||||||
"This License" refers to version 3 of the GNU Affero General Public License.
|
|
||||||
|
|
||||||
"Copyright" also means copyright-like laws that apply to other kinds of
|
|
||||||
works, such as semiconductor masks.
|
|
||||||
|
|
||||||
"The Program" refers to any copyrightable work licensed under this
|
|
||||||
License. Each licensee is addressed as "you". "Licensees" and
|
|
||||||
"recipients" may be individuals or organizations.
|
|
||||||
|
|
||||||
To "modify" a work means to copy from or adapt all or part of the work
|
|
||||||
in a fashion requiring copyright permission, other than the making of an
|
|
||||||
exact copy. The resulting work is called a "modified version" of the
|
|
||||||
earlier work or a work "based on" the earlier work.
|
|
||||||
|
|
||||||
A "covered work" means either the unmodified Program or a work based
|
|
||||||
on the Program.
|
|
||||||
|
|
||||||
To "propagate" a work means to do anything with it that, without
|
|
||||||
permission, would make you directly or secondarily liable for
|
|
||||||
infringement under applicable copyright law, except executing it on a
|
|
||||||
computer or modifying a private copy. Propagation includes copying,
|
|
||||||
distribution (with or without modification), making available to the
|
|
||||||
public, and in some countries other activities as well.
|
|
||||||
|
|
||||||
To "convey" a work means any kind of propagation that enables other
|
|
||||||
parties to make or receive copies. Mere interaction with a user through
|
|
||||||
a computer network, with no transfer of a copy, is not conveying.
|
|
||||||
|
|
||||||
An interactive user interface displays "Appropriate Legal Notices"
|
|
||||||
to the extent that it includes a convenient and prominently visible
|
|
||||||
feature that (1) displays an appropriate copyright notice, and (2)
|
|
||||||
tells the user that there is no warranty for the work (except to the
|
|
||||||
extent that warranties are provided), that licensees may convey the
|
|
||||||
work under this License, and how to view a copy of this License. If
|
|
||||||
the interface presents a list of user commands or options, such as a
|
|
||||||
menu, a prominent item in the list meets this criterion.
|
|
||||||
|
|
||||||
1. Source Code.
|
|
||||||
|
|
||||||
The "source code" for a work means the preferred form of the work
|
|
||||||
for making modifications to it. "Object code" means any non-source
|
|
||||||
form of a work.
|
|
||||||
|
|
||||||
A "Standard Interface" means an interface that either is an official
|
|
||||||
standard defined by a recognized standards body, or, in the case of
|
|
||||||
interfaces specified for a particular programming language, one that
|
|
||||||
is widely used among developers working in that language.
|
|
||||||
|
|
||||||
The "System Libraries" of an executable work include anything, other
|
|
||||||
than the work as a whole, that (a) is included in the normal form of
|
|
||||||
packaging a Major Component, but which is not part of that Major
|
|
||||||
Component, and (b) serves only to enable use of the work with that
|
|
||||||
Major Component, or to implement a Standard Interface for which an
|
|
||||||
implementation is available to the public in source code form. A
|
|
||||||
"Major Component", in this context, means a major essential component
|
|
||||||
(kernel, window system, and so on) of the specific operating system
|
|
||||||
(if any) on which the executable work runs, or a compiler used to
|
|
||||||
produce the work, or an object code interpreter used to run it.
|
|
||||||
|
|
||||||
The "Corresponding Source" for a work in object code form means all
|
|
||||||
the source code needed to generate, install, and (for an executable
|
|
||||||
work) run the object code and to modify the work, including scripts to
|
|
||||||
control those activities. However, it does not include the work's
|
|
||||||
System Libraries, or general-purpose tools or generally available free
|
|
||||||
programs which are used unmodified in performing those activities but
|
|
||||||
which are not part of the work. For example, Corresponding Source
|
|
||||||
includes interface definition files associated with source files for
|
|
||||||
the work, and the source code for shared libraries and dynamically
|
|
||||||
linked subprograms that the work is specifically designed to require,
|
|
||||||
such as by intimate data communication or control flow between those
|
|
||||||
subprograms and other parts of the work.
|
|
||||||
|
|
||||||
The Corresponding Source need not include anything that users
|
|
||||||
can regenerate automatically from other parts of the Corresponding
|
|
||||||
Source.
|
|
||||||
|
|
||||||
The Corresponding Source for a work in source code form is that
|
|
||||||
same work.
|
|
||||||
|
|
||||||
2. Basic Permissions.
|
|
||||||
|
|
||||||
All rights granted under this License are granted for the term of
|
|
||||||
copyright on the Program, and are irrevocable provided the stated
|
|
||||||
conditions are met. This License explicitly affirms your unlimited
|
|
||||||
permission to run the unmodified Program. The output from running a
|
|
||||||
covered work is covered by this License only if the output, given its
|
|
||||||
content, constitutes a covered work. This License acknowledges your
|
|
||||||
rights of fair use or other equivalent, as provided by copyright law.
|
|
||||||
|
|
||||||
You may make, run and propagate covered works that you do not
|
|
||||||
convey, without conditions so long as your license otherwise remains
|
|
||||||
in force. You may convey covered works to others for the sole purpose
|
|
||||||
of having them make modifications exclusively for you, or provide you
|
|
||||||
with facilities for running those works, provided that you comply with
|
|
||||||
the terms of this License in conveying all material for which you do
|
|
||||||
not control copyright. Those thus making or running the covered works
|
|
||||||
for you must do so exclusively on your behalf, under your direction
|
|
||||||
and control, on terms that prohibit them from making any copies of
|
|
||||||
your copyrighted material outside their relationship with you.
|
|
||||||
|
|
||||||
Conveying under any other circumstances is permitted solely under
|
|
||||||
the conditions stated below. Sublicensing is not allowed; section 10
|
|
||||||
makes it unnecessary.
|
|
||||||
|
|
||||||
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
|
||||||
|
|
||||||
No covered work shall be deemed part of an effective technological
|
|
||||||
measure under any applicable law fulfilling obligations under article
|
|
||||||
11 of the WIPO copyright treaty adopted on 20 December 1996, or
|
|
||||||
similar laws prohibiting or restricting circumvention of such
|
|
||||||
measures.
|
|
||||||
|
|
||||||
When you convey a covered work, you waive any legal power to forbid
|
|
||||||
circumvention of technological measures to the extent such circumvention
|
|
||||||
is effected by exercising rights under this License with respect to
|
|
||||||
the covered work, and you disclaim any intention to limit operation or
|
|
||||||
modification of the work as a means of enforcing, against the work's
|
|
||||||
users, your or third parties' legal rights to forbid circumvention of
|
|
||||||
technological measures.
|
|
||||||
|
|
||||||
4. Conveying Verbatim Copies.
|
|
||||||
|
|
||||||
You may convey verbatim copies of the Program's source code as you
|
|
||||||
receive it, in any medium, provided that you conspicuously and
|
|
||||||
appropriately publish on each copy an appropriate copyright notice;
|
|
||||||
keep intact all notices stating that this License and any
|
|
||||||
non-permissive terms added in accord with section 7 apply to the code;
|
|
||||||
keep intact all notices of the absence of any warranty; and give all
|
|
||||||
recipients a copy of this License along with the Program.
|
|
||||||
|
|
||||||
You may charge any price or no price for each copy that you convey,
|
|
||||||
and you may offer support or warranty protection for a fee.
|
|
||||||
|
|
||||||
5. Conveying Modified Source Versions.
|
|
||||||
|
|
||||||
You may convey a work based on the Program, or the modifications to
|
|
||||||
produce it from the Program, in the form of source code under the
|
|
||||||
terms of section 4, provided that you also meet all of these conditions:
|
|
||||||
|
|
||||||
a) The work must carry prominent notices stating that you modified
|
|
||||||
it, and giving a relevant date.
|
|
||||||
|
|
||||||
b) The work must carry prominent notices stating that it is
|
|
||||||
released under this License and any conditions added under section
|
|
||||||
7. This requirement modifies the requirement in section 4 to
|
|
||||||
"keep intact all notices".
|
|
||||||
|
|
||||||
c) You must license the entire work, as a whole, under this
|
|
||||||
License to anyone who comes into possession of a copy. This
|
|
||||||
License will therefore apply, along with any applicable section 7
|
|
||||||
additional terms, to the whole of the work, and all its parts,
|
|
||||||
regardless of how they are packaged. This License gives no
|
|
||||||
permission to license the work in any other way, but it does not
|
|
||||||
invalidate such permission if you have separately received it.
|
|
||||||
|
|
||||||
d) If the work has interactive user interfaces, each must display
|
|
||||||
Appropriate Legal Notices; however, if the Program has interactive
|
|
||||||
interfaces that do not display Appropriate Legal Notices, your
|
|
||||||
work need not make them do so.
|
|
||||||
|
|
||||||
A compilation of a covered work with other separate and independent
|
|
||||||
works, which are not by their nature extensions of the covered work,
|
|
||||||
and which are not combined with it such as to form a larger program,
|
|
||||||
in or on a volume of a storage or distribution medium, is called an
|
|
||||||
"aggregate" if the compilation and its resulting copyright are not
|
|
||||||
used to limit the access or legal rights of the compilation's users
|
|
||||||
beyond what the individual works permit. Inclusion of a covered work
|
|
||||||
in an aggregate does not cause this License to apply to the other
|
|
||||||
parts of the aggregate.
|
|
||||||
|
|
||||||
6. Conveying Non-Source Forms.
|
|
||||||
|
|
||||||
You may convey a covered work in object code form under the terms
|
|
||||||
of sections 4 and 5, provided that you also convey the
|
|
||||||
machine-readable Corresponding Source under the terms of this License,
|
|
||||||
in one of these ways:
|
|
||||||
|
|
||||||
a) Convey the object code in, or embodied in, a physical product
|
|
||||||
(including a physical distribution medium), accompanied by the
|
|
||||||
Corresponding Source fixed on a durable physical medium
|
|
||||||
customarily used for software interchange.
|
|
||||||
|
|
||||||
b) Convey the object code in, or embodied in, a physical product
|
|
||||||
(including a physical distribution medium), accompanied by a
|
|
||||||
written offer, valid for at least three years and valid for as
|
|
||||||
long as you offer spare parts or customer support for that product
|
|
||||||
model, to give anyone who possesses the object code either (1) a
|
|
||||||
copy of the Corresponding Source for all the software in the
|
|
||||||
product that is covered by this License, on a durable physical
|
|
||||||
medium customarily used for software interchange, for a price no
|
|
||||||
more than your reasonable cost of physically performing this
|
|
||||||
conveying of source, or (2) access to copy the
|
|
||||||
Corresponding Source from a network server at no charge.
|
|
||||||
|
|
||||||
c) Convey individual copies of the object code with a copy of the
|
|
||||||
written offer to provide the Corresponding Source. This
|
|
||||||
alternative is allowed only occasionally and noncommercially, and
|
|
||||||
only if you received the object code with such an offer, in accord
|
|
||||||
with subsection 6b.
|
|
||||||
|
|
||||||
d) Convey the object code by offering access from a designated
|
|
||||||
place (gratis or for a charge), and offer equivalent access to the
|
|
||||||
Corresponding Source in the same way through the same place at no
|
|
||||||
further charge. You need not require recipients to copy the
|
|
||||||
Corresponding Source along with the object code. If the place to
|
|
||||||
copy the object code is a network server, the Corresponding Source
|
|
||||||
may be on a different server (operated by you or a third party)
|
|
||||||
that supports equivalent copying facilities, provided you maintain
|
|
||||||
clear directions next to the object code saying where to find the
|
|
||||||
Corresponding Source. Regardless of what server hosts the
|
|
||||||
Corresponding Source, you remain obligated to ensure that it is
|
|
||||||
available for as long as needed to satisfy these requirements.
|
|
||||||
|
|
||||||
e) Convey the object code using peer-to-peer transmission, provided
|
|
||||||
you inform other peers where the object code and Corresponding
|
|
||||||
Source of the work are being offered to the general public at no
|
|
||||||
charge under subsection 6d.
|
|
||||||
|
|
||||||
A separable portion of the object code, whose source code is excluded
|
|
||||||
from the Corresponding Source as a System Library, need not be
|
|
||||||
included in conveying the object code work.
|
|
||||||
|
|
||||||
A "User Product" is either (1) a "consumer product", which means any
|
|
||||||
tangible personal property which is normally used for personal, family,
|
|
||||||
or household purposes, or (2) anything designed or sold for incorporation
|
|
||||||
into a dwelling. In determining whether a product is a consumer product,
|
|
||||||
doubtful cases shall be resolved in favor of coverage. For a particular
|
|
||||||
product received by a particular user, "normally used" refers to a
|
|
||||||
typical or common use of that class of product, regardless of the status
|
|
||||||
of the particular user or of the way in which the particular user
|
|
||||||
actually uses, or expects or is expected to use, the product. A product
|
|
||||||
is a consumer product regardless of whether the product has substantial
|
|
||||||
commercial, industrial or non-consumer uses, unless such uses represent
|
|
||||||
the only significant mode of use of the product.
|
|
||||||
|
|
||||||
"Installation Information" for a User Product means any methods,
|
|
||||||
procedures, authorization keys, or other information required to install
|
|
||||||
and execute modified versions of a covered work in that User Product from
|
|
||||||
a modified version of its Corresponding Source. The information must
|
|
||||||
suffice to ensure that the continued functioning of the modified object
|
|
||||||
code is in no case prevented or interfered with solely because
|
|
||||||
modification has been made.
|
|
||||||
|
|
||||||
If you convey an object code work under this section in, or with, or
|
|
||||||
specifically for use in, a User Product, and the conveying occurs as
|
|
||||||
part of a transaction in which the right of possession and use of the
|
|
||||||
User Product is transferred to the recipient in perpetuity or for a
|
|
||||||
fixed term (regardless of how the transaction is characterized), the
|
|
||||||
Corresponding Source conveyed under this section must be accompanied
|
|
||||||
by the Installation Information. But this requirement does not apply
|
|
||||||
if neither you nor any third party retains the ability to install
|
|
||||||
modified object code on the User Product (for example, the work has
|
|
||||||
been installed in ROM).
|
|
||||||
|
|
||||||
The requirement to provide Installation Information does not include a
|
|
||||||
requirement to continue to provide support service, warranty, or updates
|
|
||||||
for a work that has been modified or installed by the recipient, or for
|
|
||||||
the User Product in which it has been modified or installed. Access to a
|
|
||||||
network may be denied when the modification itself materially and
|
|
||||||
adversely affects the operation of the network or violates the rules and
|
|
||||||
protocols for communication across the network.
|
|
||||||
|
|
||||||
Corresponding Source conveyed, and Installation Information provided,
|
|
||||||
in accord with this section must be in a format that is publicly
|
|
||||||
documented (and with an implementation available to the public in
|
|
||||||
source code form), and must require no special password or key for
|
|
||||||
unpacking, reading or copying.
|
|
||||||
|
|
||||||
7. Additional Terms.
|
|
||||||
|
|
||||||
"Additional permissions" are terms that supplement the terms of this
|
|
||||||
License by making exceptions from one or more of its conditions.
|
|
||||||
Additional permissions that are applicable to the entire Program shall
|
|
||||||
be treated as though they were included in this License, to the extent
|
|
||||||
that they are valid under applicable law. If additional permissions
|
|
||||||
apply only to part of the Program, that part may be used separately
|
|
||||||
under those permissions, but the entire Program remains governed by
|
|
||||||
this License without regard to the additional permissions.
|
|
||||||
|
|
||||||
When you convey a copy of a covered work, you may at your option
|
|
||||||
remove any additional permissions from that copy, or from any part of
|
|
||||||
it. (Additional permissions may be written to require their own
|
|
||||||
removal in certain cases when you modify the work.) You may place
|
|
||||||
additional permissions on material, added by you to a covered work,
|
|
||||||
for which you have or can give appropriate copyright permission.
|
|
||||||
|
|
||||||
Notwithstanding any other provision of this License, for material you
|
|
||||||
add to a covered work, you may (if authorized by the copyright holders of
|
|
||||||
that material) supplement the terms of this License with terms:
|
|
||||||
|
|
||||||
a) Disclaiming warranty or limiting liability differently from the
|
|
||||||
terms of sections 15 and 16 of this License; or
|
|
||||||
|
|
||||||
b) Requiring preservation of specified reasonable legal notices or
|
|
||||||
author attributions in that material or in the Appropriate Legal
|
|
||||||
Notices displayed by works containing it; or
|
|
||||||
|
|
||||||
c) Prohibiting misrepresentation of the origin of that material, or
|
|
||||||
requiring that modified versions of such material be marked in
|
|
||||||
reasonable ways as different from the original version; or
|
|
||||||
|
|
||||||
d) Limiting the use for publicity purposes of names of licensors or
|
|
||||||
authors of the material; or
|
|
||||||
|
|
||||||
e) Declining to grant rights under trademark law for use of some
|
|
||||||
trade names, trademarks, or service marks; or
|
|
||||||
|
|
||||||
f) Requiring indemnification of licensors and authors of that
|
|
||||||
material by anyone who conveys the material (or modified versions of
|
|
||||||
it) with contractual assumptions of liability to the recipient, for
|
|
||||||
any liability that these contractual assumptions directly impose on
|
|
||||||
those licensors and authors.
|
|
||||||
|
|
||||||
All other non-permissive additional terms are considered "further
|
|
||||||
restrictions" within the meaning of section 10. If the Program as you
|
|
||||||
received it, or any part of it, contains a notice stating that it is
|
|
||||||
governed by this License along with a term that is a further
|
|
||||||
restriction, you may remove that term. If a license document contains
|
|
||||||
a further restriction but permits relicensing or conveying under this
|
|
||||||
License, you may add to a covered work material governed by the terms
|
|
||||||
of that license document, provided that the further restriction does
|
|
||||||
not survive such relicensing or conveying.
|
|
||||||
|
|
||||||
If you add terms to a covered work in accord with this section, you
|
|
||||||
must place, in the relevant source files, a statement of the
|
|
||||||
additional terms that apply to those files, or a notice indicating
|
|
||||||
where to find the applicable terms.
|
|
||||||
|
|
||||||
Additional terms, permissive or non-permissive, may be stated in the
|
|
||||||
form of a separately written license, or stated as exceptions;
|
|
||||||
the above requirements apply either way.
|
|
||||||
|
|
||||||
8. Termination.
|
|
||||||
|
|
||||||
You may not propagate or modify a covered work except as expressly
|
|
||||||
provided under this License. Any attempt otherwise to propagate or
|
|
||||||
modify it is void, and will automatically terminate your rights under
|
|
||||||
this License (including any patent licenses granted under the third
|
|
||||||
paragraph of section 11).
|
|
||||||
|
|
||||||
However, if you cease all violation of this License, then your
|
|
||||||
license from a particular copyright holder is reinstated (a)
|
|
||||||
provisionally, unless and until the copyright holder explicitly and
|
|
||||||
finally terminates your license, and (b) permanently, if the copyright
|
|
||||||
holder fails to notify you of the violation by some reasonable means
|
|
||||||
prior to 60 days after the cessation.
|
|
||||||
|
|
||||||
Moreover, your license from a particular copyright holder is
|
|
||||||
reinstated permanently if the copyright holder notifies you of the
|
|
||||||
violation by some reasonable means, this is the first time you have
|
|
||||||
received notice of violation of this License (for any work) from that
|
|
||||||
copyright holder, and you cure the violation prior to 30 days after
|
|
||||||
your receipt of the notice.
|
|
||||||
|
|
||||||
Termination of your rights under this section does not terminate the
|
|
||||||
licenses of parties who have received copies or rights from you under
|
|
||||||
this License. If your rights have been terminated and not permanently
|
|
||||||
reinstated, you do not qualify to receive new licenses for the same
|
|
||||||
material under section 10.
|
|
||||||
|
|
||||||
9. Acceptance Not Required for Having Copies.
|
|
||||||
|
|
||||||
You are not required to accept this License in order to receive or
|
|
||||||
run a copy of the Program. Ancillary propagation of a covered work
|
|
||||||
occurring solely as a consequence of using peer-to-peer transmission
|
|
||||||
to receive a copy likewise does not require acceptance. However,
|
|
||||||
nothing other than this License grants you permission to propagate or
|
|
||||||
modify any covered work. These actions infringe copyright if you do
|
|
||||||
not accept this License. Therefore, by modifying or propagating a
|
|
||||||
covered work, you indicate your acceptance of this License to do so.
|
|
||||||
|
|
||||||
10. Automatic Licensing of Downstream Recipients.
|
|
||||||
|
|
||||||
Each time you convey a covered work, the recipient automatically
|
|
||||||
receives a license from the original licensors, to run, modify and
|
|
||||||
propagate that work, subject to this License. You are not responsible
|
|
||||||
for enforcing compliance by third parties with this License.
|
|
||||||
|
|
||||||
An "entity transaction" is a transaction transferring control of an
|
|
||||||
organization, or substantially all assets of one, or subdividing an
|
|
||||||
organization, or merging organizations. If propagation of a covered
|
|
||||||
work results from an entity transaction, each party to that
|
|
||||||
transaction who receives a copy of the work also receives whatever
|
|
||||||
licenses to the work the party's predecessor in interest had or could
|
|
||||||
give under the previous paragraph, plus a right to possession of the
|
|
||||||
Corresponding Source of the work from the predecessor in interest, if
|
|
||||||
the predecessor has it or can get it with reasonable efforts.
|
|
||||||
|
|
||||||
You may not impose any further restrictions on the exercise of the
|
|
||||||
rights granted or affirmed under this License. For example, you may
|
|
||||||
not impose a license fee, royalty, or other charge for exercise of
|
|
||||||
rights granted under this License, and you may not initiate litigation
|
|
||||||
(including a cross-claim or counterclaim in a lawsuit) alleging that
|
|
||||||
any patent claim is infringed by making, using, selling, offering for
|
|
||||||
sale, or importing the Program or any portion of it.
|
|
||||||
|
|
||||||
11. Patents.
|
|
||||||
|
|
||||||
A "contributor" is a copyright holder who authorizes use under this
|
|
||||||
License of the Program or a work on which the Program is based. The
|
|
||||||
work thus licensed is called the contributor's "contributor version".
|
|
||||||
|
|
||||||
A contributor's "essential patent claims" are all patent claims
|
|
||||||
owned or controlled by the contributor, whether already acquired or
|
|
||||||
hereafter acquired, that would be infringed by some manner, permitted
|
|
||||||
by this License, of making, using, or selling its contributor version,
|
|
||||||
but do not include claims that would be infringed only as a
|
|
||||||
consequence of further modification of the contributor version. For
|
|
||||||
purposes of this definition, "control" includes the right to grant
|
|
||||||
patent sublicenses in a manner consistent with the requirements of
|
|
||||||
this License.
|
|
||||||
|
|
||||||
Each contributor grants you a non-exclusive, worldwide, royalty-free
|
|
||||||
patent license under the contributor's essential patent claims, to
|
|
||||||
make, use, sell, offer for sale, import and otherwise run, modify and
|
|
||||||
propagate the contents of its contributor version.
|
|
||||||
|
|
||||||
In the following three paragraphs, a "patent license" is any express
|
|
||||||
agreement or commitment, however denominated, not to enforce a patent
|
|
||||||
(such as an express permission to practice a patent or covenant not to
|
|
||||||
sue for patent infringement). To "grant" such a patent license to a
|
|
||||||
party means to make such an agreement or commitment not to enforce a
|
|
||||||
patent against the party.
|
|
||||||
|
|
||||||
If you convey a covered work, knowingly relying on a patent license,
|
|
||||||
and the Corresponding Source of the work is not available for anyone
|
|
||||||
to copy, free of charge and under the terms of this License, through a
|
|
||||||
publicly available network server or other readily accessible means,
|
|
||||||
then you must either (1) cause the Corresponding Source to be so
|
|
||||||
available, or (2) arrange to deprive yourself of the benefit of the
|
|
||||||
patent license for this particular work, or (3) arrange, in a manner
|
|
||||||
consistent with the requirements of this License, to extend the patent
|
|
||||||
license to downstream recipients. "Knowingly relying" means you have
|
|
||||||
actual knowledge that, but for the patent license, your conveying the
|
|
||||||
covered work in a country, or your recipient's use of the covered work
|
|
||||||
in a country, would infringe one or more identifiable patents in that
|
|
||||||
country that you have reason to believe are valid.
|
|
||||||
|
|
||||||
If, pursuant to or in connection with a single transaction or
|
|
||||||
arrangement, you convey, or propagate by procuring conveyance of, a
|
|
||||||
covered work, and grant a patent license to some of the parties
|
|
||||||
receiving the covered work authorizing them to use, propagate, modify
|
|
||||||
or convey a specific copy of the covered work, then the patent license
|
|
||||||
you grant is automatically extended to all recipients of the covered
|
|
||||||
work and works based on it.
|
|
||||||
|
|
||||||
A patent license is "discriminatory" if it does not include within
|
|
||||||
the scope of its coverage, prohibits the exercise of, or is
|
|
||||||
conditioned on the non-exercise of one or more of the rights that are
|
|
||||||
specifically granted under this License. You may not convey a covered
|
|
||||||
work if you are a party to an arrangement with a third party that is
|
|
||||||
in the business of distributing software, under which you make payment
|
|
||||||
to the third party based on the extent of your activity of conveying
|
|
||||||
the work, and under which the third party grants, to any of the
|
|
||||||
parties who would receive the covered work from you, a discriminatory
|
|
||||||
patent license (a) in connection with copies of the covered work
|
|
||||||
conveyed by you (or copies made from those copies), or (b) primarily
|
|
||||||
for and in connection with specific products or compilations that
|
|
||||||
contain the covered work, unless you entered into that arrangement,
|
|
||||||
or that patent license was granted, prior to 28 March 2007.
|
|
||||||
|
|
||||||
Nothing in this License shall be construed as excluding or limiting
|
|
||||||
any implied license or other defenses to infringement that may
|
|
||||||
otherwise be available to you under applicable patent law.
|
|
||||||
|
|
||||||
12. No Surrender of Others' Freedom.
|
|
||||||
|
|
||||||
If conditions are imposed on you (whether by court order, agreement or
|
|
||||||
otherwise) that contradict the conditions of this License, they do not
|
|
||||||
excuse you from the conditions of this License. If you cannot convey a
|
|
||||||
covered work so as to satisfy simultaneously your obligations under this
|
|
||||||
License and any other pertinent obligations, then as a consequence you may
|
|
||||||
not convey it at all. For example, if you agree to terms that obligate you
|
|
||||||
to collect a royalty for further conveying from those to whom you convey
|
|
||||||
the Program, the only way you could satisfy both those terms and this
|
|
||||||
License would be to refrain entirely from conveying the Program.
|
|
||||||
|
|
||||||
13. Remote Network Interaction; Use with the GNU General Public License.
|
|
||||||
|
|
||||||
Notwithstanding any other provision of this License, if you modify the
|
|
||||||
Program, your modified version must prominently offer all users
|
|
||||||
interacting with it remotely through a computer network (if your version
|
|
||||||
supports such interaction) an opportunity to receive the Corresponding
|
|
||||||
Source of your version by providing access to the Corresponding Source
|
|
||||||
from a network server at no charge, through some standard or customary
|
|
||||||
means of facilitating copying of software. This Corresponding Source
|
|
||||||
shall include the Corresponding Source for any work covered by version 3
|
|
||||||
of the GNU General Public License that is incorporated pursuant to the
|
|
||||||
following paragraph.
|
|
||||||
|
|
||||||
Notwithstanding any other provision of this License, you have
|
|
||||||
permission to link or combine any covered work with a work licensed
|
|
||||||
under version 3 of the GNU General Public License into a single
|
|
||||||
combined work, and to convey the resulting work. The terms of this
|
|
||||||
License will continue to apply to the part which is the covered work,
|
|
||||||
but the work with which it is combined will remain governed by version
|
|
||||||
3 of the GNU General Public License.
|
|
||||||
|
|
||||||
14. Revised Versions of this License.
|
|
||||||
|
|
||||||
The Free Software Foundation may publish revised and/or new versions of
|
|
||||||
the GNU Affero General Public License from time to time. Such new versions
|
|
||||||
will be similar in spirit to the present version, but may differ in detail to
|
|
||||||
address new problems or concerns.
|
|
||||||
|
|
||||||
Each version is given a distinguishing version number. If the
|
|
||||||
Program specifies that a certain numbered version of the GNU Affero General
|
|
||||||
Public License "or any later version" applies to it, you have the
|
|
||||||
option of following the terms and conditions either of that numbered
|
|
||||||
version or of any later version published by the Free Software
|
|
||||||
Foundation. If the Program does not specify a version number of the
|
|
||||||
GNU Affero General Public License, you may choose any version ever published
|
|
||||||
by the Free Software Foundation.
|
|
||||||
|
|
||||||
If the Program specifies that a proxy can decide which future
|
|
||||||
versions of the GNU Affero General Public License can be used, that proxy's
|
|
||||||
public statement of acceptance of a version permanently authorizes you
|
|
||||||
to choose that version for the Program.
|
|
||||||
|
|
||||||
Later license versions may give you additional or different
|
|
||||||
permissions. However, no additional obligations are imposed on any
|
|
||||||
author or copyright holder as a result of your choosing to follow a
|
|
||||||
later version.
|
|
||||||
|
|
||||||
15. Disclaimer of Warranty.
|
|
||||||
|
|
||||||
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
|
|
||||||
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
|
|
||||||
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
|
|
||||||
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
|
|
||||||
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
||||||
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
|
|
||||||
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
|
|
||||||
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
|
||||||
|
|
||||||
16. Limitation of Liability.
|
|
||||||
|
|
||||||
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
|
||||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
|
|
||||||
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
|
|
||||||
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
|
|
||||||
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
|
|
||||||
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
|
|
||||||
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
|
|
||||||
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
|
|
||||||
SUCH DAMAGES.
|
|
||||||
|
|
||||||
17. Interpretation of Sections 15 and 16.
|
|
||||||
|
|
||||||
If the disclaimer of warranty and limitation of liability provided
|
|
||||||
above cannot be given local legal effect according to their terms,
|
|
||||||
reviewing courts shall apply local law that most closely approximates
|
|
||||||
an absolute waiver of all civil liability in connection with the
|
|
||||||
Program, unless a warranty or assumption of liability accompanies a
|
|
||||||
copy of the Program in return for a fee.
|
|
||||||
|
|
||||||
END OF TERMS AND CONDITIONS
|
|
||||||
|
|
||||||
How to Apply These Terms to Your New Programs
|
|
||||||
|
|
||||||
If you develop a new program, and you want it to be of the greatest
|
|
||||||
possible use to the public, the best way to achieve this is to make it
|
|
||||||
free software which everyone can redistribute and change under these terms.
|
|
||||||
|
|
||||||
To do so, attach the following notices to the program. It is safest
|
|
||||||
to attach them to the start of each source file to most effectively
|
|
||||||
state the exclusion of warranty; and each file should have at least
|
|
||||||
the "copyright" line and a pointer to where the full notice is found.
|
|
||||||
|
|
||||||
Server
|
|
||||||
Copyright (C) 2021 REVOLT
|
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify
|
|
||||||
it under the terms of the GNU Affero General Public License as published
|
|
||||||
by the Free Software Foundation, either version 3 of the License, or
|
|
||||||
(at your option) any later version.
|
|
||||||
|
|
||||||
This program is distributed in the hope that it will be useful,
|
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
GNU Affero General Public License for more details.
|
|
||||||
|
|
||||||
You should have received a copy of the GNU Affero General Public License
|
|
||||||
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
Also add information on how to contact you by electronic and paper mail.
|
|
||||||
|
|
||||||
If your software can interact with users remotely through a computer
|
|
||||||
network, you should also make sure that it provides a way for users to
|
|
||||||
get its source. For example, if your program is a web application, its
|
|
||||||
interface could display a "Source" link that leads users to an archive
|
|
||||||
of the code. There are many ways you could offer source, and different
|
|
||||||
solutions will be better for different programs; see section 13 for the
|
|
||||||
specific requirements.
|
|
||||||
|
|
||||||
You should also get your employer (if you work as a programmer) or school,
|
|
||||||
if any, to sign a "copyright disclaimer" for the program, if necessary.
|
|
||||||
For more information on this, and how to apply and follow the GNU AGPL, see
|
|
||||||
<https://www.gnu.org/licenses/>.
|
|
||||||
210
deny.toml
Normal file
210
deny.toml
Normal file
@@ -0,0 +1,210 @@
|
|||||||
|
# This template contains all of the possible sections and their default values
|
||||||
|
|
||||||
|
# Note that all fields that take a lint level have these possible values:
|
||||||
|
# * deny - An error will be produced and the check will fail
|
||||||
|
# * warn - A warning will be produced, but the check will not fail
|
||||||
|
# * allow - No warning or error will be produced, though in some cases a note
|
||||||
|
# will be
|
||||||
|
|
||||||
|
# The values provided in this template are the default values that will be used
|
||||||
|
# when any section or field is not specified in your own configuration
|
||||||
|
|
||||||
|
# If 1 or more target triples (and optionally, target_features) are specified,
|
||||||
|
# only the specified targets will be checked when running `cargo deny check`.
|
||||||
|
# This means, if a particular package is only ever used as a target specific
|
||||||
|
# dependency, such as, for example, the `nix` crate only being used via the
|
||||||
|
# `target_family = "unix"` configuration, that only having windows targets in
|
||||||
|
# this list would mean the nix crate, as well as any of its exclusive
|
||||||
|
# dependencies not shared by any other crates, would be ignored, as the target
|
||||||
|
# list here is effectively saying which targets you are building for.
|
||||||
|
targets = [
|
||||||
|
# The triple can be any string, but only the target triples built in to
|
||||||
|
# rustc (as of 1.40) can be checked against actual config expressions
|
||||||
|
#{ triple = "x86_64-unknown-linux-musl" },
|
||||||
|
# You can also specify which target_features you promise are enabled for a
|
||||||
|
# particular target. target_features are currently not validated against
|
||||||
|
# the actual valid features supported by the target architecture.
|
||||||
|
#{ triple = "wasm32-unknown-unknown", features = ["atomics"] },
|
||||||
|
]
|
||||||
|
|
||||||
|
# This section is considered when running `cargo deny check advisories`
|
||||||
|
# More documentation for the advisories section can be found here:
|
||||||
|
# https://embarkstudios.github.io/cargo-deny/checks/advisories/cfg.html
|
||||||
|
[advisories]
|
||||||
|
# The path where the advisory database is cloned/fetched into
|
||||||
|
db-path = "~/.cargo/advisory-db"
|
||||||
|
# The url(s) of the advisory databases to use
|
||||||
|
db-urls = ["https://github.com/rustsec/advisory-db"]
|
||||||
|
# The lint level for security vulnerabilities
|
||||||
|
vulnerability = "deny"
|
||||||
|
# The lint level for unmaintained crates
|
||||||
|
unmaintained = "warn"
|
||||||
|
# The lint level for crates that have been yanked from their source registry
|
||||||
|
yanked = "warn"
|
||||||
|
# The lint level for crates with security notices. Note that as of
|
||||||
|
# 2019-12-17 there are no security notice advisories in
|
||||||
|
# https://github.com/rustsec/advisory-db
|
||||||
|
notice = "warn"
|
||||||
|
# A list of advisory IDs to ignore. Note that ignored advisories will still
|
||||||
|
# output a note when they are encountered.
|
||||||
|
ignore = [
|
||||||
|
#"RUSTSEC-0000-0000",
|
||||||
|
]
|
||||||
|
# Threshold for security vulnerabilities, any vulnerability with a CVSS score
|
||||||
|
# lower than the range specified will be ignored. Note that ignored advisories
|
||||||
|
# will still output a note when they are encountered.
|
||||||
|
# * None - CVSS Score 0.0
|
||||||
|
# * Low - CVSS Score 0.1 - 3.9
|
||||||
|
# * Medium - CVSS Score 4.0 - 6.9
|
||||||
|
# * High - CVSS Score 7.0 - 8.9
|
||||||
|
# * Critical - CVSS Score 9.0 - 10.0
|
||||||
|
#severity-threshold =
|
||||||
|
|
||||||
|
# This section is considered when running `cargo deny check licenses`
|
||||||
|
# More documentation for the licenses section can be found here:
|
||||||
|
# https://embarkstudios.github.io/cargo-deny/checks/licenses/cfg.html
|
||||||
|
[licenses]
|
||||||
|
# The lint level for crates which do not have a detectable license
|
||||||
|
unlicensed = "warn"
|
||||||
|
# List of explicitly allowed licenses
|
||||||
|
# See https://spdx.org/licenses/ for list of possible licenses
|
||||||
|
# [possible values: any SPDX 3.11 short identifier (+ optional exception)].
|
||||||
|
allow = [
|
||||||
|
"MIT",
|
||||||
|
"ISC",
|
||||||
|
"0BSD",
|
||||||
|
"CC0-1.0",
|
||||||
|
"Apache-2.0",
|
||||||
|
"BSD-2-Clause",
|
||||||
|
"BSD-3-Clause",
|
||||||
|
#"Apache-2.0 WITH LLVM-exception",
|
||||||
|
]
|
||||||
|
# List of explicitly disallowed licenses
|
||||||
|
# See https://spdx.org/licenses/ for list of possible licenses
|
||||||
|
# [possible values: any SPDX 3.11 short identifier (+ optional exception)].
|
||||||
|
deny = [
|
||||||
|
#"Nokia",
|
||||||
|
]
|
||||||
|
# Lint level for licenses considered copyleft
|
||||||
|
copyleft = "warn"
|
||||||
|
# Blanket approval or denial for OSI-approved or FSF Free/Libre licenses
|
||||||
|
# * both - The license will be approved if it is both OSI-approved *AND* FSF
|
||||||
|
# * either - The license will be approved if it is either OSI-approved *OR* FSF
|
||||||
|
# * osi-only - The license will be approved if is OSI-approved *AND NOT* FSF
|
||||||
|
# * fsf-only - The license will be approved if is FSF *AND NOT* OSI-approved
|
||||||
|
# * neither - This predicate is ignored and the default lint level is used
|
||||||
|
allow-osi-fsf-free = "neither"
|
||||||
|
# Lint level used when no other predicates are matched
|
||||||
|
# 1. License isn't in the allow or deny lists
|
||||||
|
# 2. License isn't copyleft
|
||||||
|
# 3. License isn't OSI/FSF, or allow-osi-fsf-free = "neither"
|
||||||
|
default = "deny"
|
||||||
|
# The confidence threshold for detecting a license from license text.
|
||||||
|
# The higher the value, the more closely the license text must be to the
|
||||||
|
# canonical license text of a valid SPDX license file.
|
||||||
|
# [possible values: any between 0.0 and 1.0].
|
||||||
|
confidence-threshold = 0.8
|
||||||
|
# Allow 1 or more licenses on a per-crate basis, so that particular licenses
|
||||||
|
# aren't accepted for every possible crate as with the normal allow list
|
||||||
|
exceptions = [
|
||||||
|
# Each entry is the crate and version constraint, and its specific allow
|
||||||
|
# list
|
||||||
|
#{ allow = ["Zlib"], name = "adler32", version = "*" },
|
||||||
|
]
|
||||||
|
|
||||||
|
# Some crates don't have (easily) machine readable licensing information,
|
||||||
|
# adding a clarification entry for it allows you to manually specify the
|
||||||
|
# licensing information
|
||||||
|
#[[licenses.clarify]]
|
||||||
|
# The name of the crate the clarification applies to
|
||||||
|
#name = "ring"
|
||||||
|
# The optional version constraint for the crate
|
||||||
|
#version = "*"
|
||||||
|
# The SPDX expression for the license requirements of the crate
|
||||||
|
#expression = "MIT AND ISC AND OpenSSL"
|
||||||
|
# One or more files in the crate's source used as the "source of truth" for
|
||||||
|
# the license expression. If the contents match, the clarification will be used
|
||||||
|
# when running the license check, otherwise the clarification will be ignored
|
||||||
|
# and the crate will be checked normally, which may produce warnings or errors
|
||||||
|
# depending on the rest of your configuration
|
||||||
|
#license-files = [
|
||||||
|
# Each entry is a crate relative path, and the (opaque) hash of its contents
|
||||||
|
#{ path = "LICENSE", hash = 0xbd0eed23 }
|
||||||
|
#]
|
||||||
|
|
||||||
|
[licenses.private]
|
||||||
|
# If true, ignores workspace crates that aren't published, or are only
|
||||||
|
# published to private registries.
|
||||||
|
# To see how to mark a crate as unpublished (to the official registry),
|
||||||
|
# visit https://doc.rust-lang.org/cargo/reference/manifest.html#the-publish-field.
|
||||||
|
ignore = false
|
||||||
|
# One or more private registries that you might publish crates to, if a crate
|
||||||
|
# is only published to private registries, and ignore is true, the crate will
|
||||||
|
# not have its license(s) checked
|
||||||
|
registries = [
|
||||||
|
#"https://sekretz.com/registry
|
||||||
|
]
|
||||||
|
|
||||||
|
# This section is considered when running `cargo deny check bans`.
|
||||||
|
# More documentation about the 'bans' section can be found here:
|
||||||
|
# https://embarkstudios.github.io/cargo-deny/checks/bans/cfg.html
|
||||||
|
[bans]
|
||||||
|
# Lint level for when multiple versions of the same crate are detected
|
||||||
|
multiple-versions = "warn"
|
||||||
|
# Lint level for when a crate version requirement is `*`
|
||||||
|
wildcards = "allow"
|
||||||
|
# The graph highlighting used when creating dotgraphs for crates
|
||||||
|
# with multiple versions
|
||||||
|
# * lowest-version - The path to the lowest versioned duplicate is highlighted
|
||||||
|
# * simplest-path - The path to the version with the fewest edges is highlighted
|
||||||
|
# * all - Both lowest-version and simplest-path are used
|
||||||
|
highlight = "all"
|
||||||
|
# List of crates that are allowed. Use with care!
|
||||||
|
allow = [
|
||||||
|
#{ name = "ansi_term", version = "=0.11.0" },
|
||||||
|
]
|
||||||
|
# List of crates to deny
|
||||||
|
deny = [
|
||||||
|
# Each entry the name of a crate and a version range. If version is
|
||||||
|
# not specified, all versions will be matched.
|
||||||
|
#{ name = "ansi_term", version = "=0.11.0" },
|
||||||
|
#
|
||||||
|
# Wrapper crates can optionally be specified to allow the crate when it
|
||||||
|
# is a direct dependency of the otherwise banned crate
|
||||||
|
#{ name = "ansi_term", version = "=0.11.0", wrappers = [] },
|
||||||
|
]
|
||||||
|
# Certain crates/versions that will be skipped when doing duplicate detection.
|
||||||
|
skip = [
|
||||||
|
#{ name = "ansi_term", version = "=0.11.0" },
|
||||||
|
]
|
||||||
|
# Similarly to `skip` allows you to skip certain crates during duplicate
|
||||||
|
# detection. Unlike skip, it also includes the entire tree of transitive
|
||||||
|
# dependencies starting at the specified crate, up to a certain depth, which is
|
||||||
|
# by default infinite
|
||||||
|
skip-tree = [
|
||||||
|
#{ name = "ansi_term", version = "=0.11.0", depth = 20 },
|
||||||
|
]
|
||||||
|
|
||||||
|
# This section is considered when running `cargo deny check sources`.
|
||||||
|
# More documentation about the 'sources' section can be found here:
|
||||||
|
# https://embarkstudios.github.io/cargo-deny/checks/sources/cfg.html
|
||||||
|
[sources]
|
||||||
|
# Lint level for what to happen when a crate from a crate registry that is not
|
||||||
|
# in the allow list is encountered
|
||||||
|
unknown-registry = "warn"
|
||||||
|
# Lint level for what to happen when a crate from a git repository that is not
|
||||||
|
# in the allow list is encountered
|
||||||
|
unknown-git = "warn"
|
||||||
|
# List of URLs for allowed crate registries. Defaults to the crates.io index
|
||||||
|
# if not specified. If it is specified but empty, no registries are allowed.
|
||||||
|
allow-registry = ["https://github.com/rust-lang/crates.io-index"]
|
||||||
|
# List of URLs for allowed Git repositories
|
||||||
|
allow-git = ["https://gitlab.insrt.uk/insert/hive"]
|
||||||
|
|
||||||
|
[sources.allow-org]
|
||||||
|
# 1 or more github.com organizations to allow git sources for
|
||||||
|
github = ["insertish"]
|
||||||
|
# 1 or more gitlab.com organizations to allow git sources for
|
||||||
|
gitlab = []
|
||||||
|
# 1 or more bitbucket.org organizations to allow git sources for
|
||||||
|
bitbucket = [""]
|
||||||
@@ -1,20 +0,0 @@
|
|||||||
use serde::{Serialize, Deserialize};
|
|
||||||
|
|
||||||
pub fn if_false(t: &bool) -> bool {
|
|
||||||
!t
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize, Debug, Clone)]
|
|
||||||
pub struct Bot {
|
|
||||||
#[serde(rename = "_id")]
|
|
||||||
pub id: String,
|
|
||||||
pub owner: String,
|
|
||||||
pub token: String,
|
|
||||||
pub public: bool,
|
|
||||||
#[serde(skip_serializing_if = "if_false", default)]
|
|
||||||
pub analytics: bool,
|
|
||||||
#[serde(skip_serializing_if = "if_false", default)]
|
|
||||||
pub discoverable: bool,
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
pub interactions_url: Option<String>,
|
|
||||||
}
|
|
||||||
@@ -1,392 +0,0 @@
|
|||||||
use std::collections::HashMap;
|
|
||||||
|
|
||||||
use crate::database::*;
|
|
||||||
use crate::notifications::events::ClientboundNotification;
|
|
||||||
use crate::util::result::{Error, Result};
|
|
||||||
use crate::util::variables::MAX_GROUP_SIZE;
|
|
||||||
use futures::StreamExt;
|
|
||||||
use mongodb::bson::Bson;
|
|
||||||
use mongodb::{
|
|
||||||
bson::{doc, to_document, Document},
|
|
||||||
options::FindOptions,
|
|
||||||
};
|
|
||||||
use rocket::serde::json::Value;
|
|
||||||
use serde::{Deserialize, Serialize};
|
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize, Debug, Clone)]
|
|
||||||
#[serde(tag = "channel_type")]
|
|
||||||
pub enum Channel {
|
|
||||||
SavedMessages {
|
|
||||||
#[serde(rename = "_id")]
|
|
||||||
id: String,
|
|
||||||
user: String,
|
|
||||||
},
|
|
||||||
DirectMessage {
|
|
||||||
#[serde(rename = "_id")]
|
|
||||||
id: String,
|
|
||||||
|
|
||||||
active: bool,
|
|
||||||
recipients: Vec<String>,
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
last_message_id: Option<String>,
|
|
||||||
},
|
|
||||||
Group {
|
|
||||||
#[serde(rename = "_id")]
|
|
||||||
id: String,
|
|
||||||
|
|
||||||
name: String,
|
|
||||||
owner: String,
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
description: Option<String>,
|
|
||||||
recipients: Vec<String>,
|
|
||||||
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
icon: Option<File>,
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
last_message_id: Option<String>,
|
|
||||||
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
permissions: Option<i32>,
|
|
||||||
|
|
||||||
#[serde(skip_serializing_if = "entities::server::if_false", default)]
|
|
||||||
nsfw: bool
|
|
||||||
},
|
|
||||||
TextChannel {
|
|
||||||
#[serde(rename = "_id")]
|
|
||||||
id: String,
|
|
||||||
server: String,
|
|
||||||
|
|
||||||
name: String,
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
description: Option<String>,
|
|
||||||
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
icon: Option<File>,
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
last_message_id: Option<String>,
|
|
||||||
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
default_permissions: Option<i32>,
|
|
||||||
#[serde(default = "HashMap::new", skip_serializing_if = "HashMap::is_empty")]
|
|
||||||
role_permissions: HashMap<String, i32>,
|
|
||||||
|
|
||||||
#[serde(skip_serializing_if = "entities::server::if_false", default)]
|
|
||||||
nsfw: bool
|
|
||||||
},
|
|
||||||
VoiceChannel {
|
|
||||||
#[serde(rename = "_id")]
|
|
||||||
id: String,
|
|
||||||
server: String,
|
|
||||||
|
|
||||||
name: String,
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
description: Option<String>,
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
icon: Option<File>,
|
|
||||||
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
default_permissions: Option<i32>,
|
|
||||||
#[serde(default = "HashMap::new", skip_serializing_if = "HashMap::is_empty")]
|
|
||||||
role_permissions: HashMap<String, i32>,
|
|
||||||
|
|
||||||
#[serde(skip_serializing_if = "entities::server::if_false", default)]
|
|
||||||
nsfw: bool
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
impl Channel {
|
|
||||||
pub fn id(&self) -> &str {
|
|
||||||
match self {
|
|
||||||
Channel::SavedMessages { id, .. }
|
|
||||||
| Channel::DirectMessage { id, .. }
|
|
||||||
| Channel::Group { id, .. }
|
|
||||||
| Channel::TextChannel { id, .. }
|
|
||||||
| Channel::VoiceChannel { id, .. } => id,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
pub fn has_messaging(&self) -> Result<()> {
|
|
||||||
match self {
|
|
||||||
Channel::SavedMessages { .. }
|
|
||||||
| Channel::DirectMessage { .. }
|
|
||||||
| Channel::Group { .. }
|
|
||||||
| Channel::TextChannel { .. } => Ok(()),
|
|
||||||
Channel::VoiceChannel { .. } => Err(Error::InvalidOperation)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pub async fn publish(self) -> Result<()> {
|
|
||||||
get_collection("channels")
|
|
||||||
.insert_one(
|
|
||||||
to_document(&self).map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "to_bson",
|
|
||||||
with: "channel",
|
|
||||||
})?,
|
|
||||||
None,
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "insert_one",
|
|
||||||
with: "channel",
|
|
||||||
})?;
|
|
||||||
|
|
||||||
let channel_id = self.id().to_string();
|
|
||||||
ClientboundNotification::ChannelCreate(self).publish(channel_id);
|
|
||||||
|
|
||||||
Ok(())
|
|
||||||
}
|
|
||||||
|
|
||||||
pub async fn publish_update(&self, data: Value) -> Result<()> {
|
|
||||||
let id = self.id().to_string();
|
|
||||||
ClientboundNotification::ChannelUpdate {
|
|
||||||
id: id.clone(),
|
|
||||||
data,
|
|
||||||
clear: None,
|
|
||||||
}
|
|
||||||
.publish(id);
|
|
||||||
|
|
||||||
Ok(())
|
|
||||||
}
|
|
||||||
|
|
||||||
pub async fn delete_associated_objects(id: Bson) -> Result<()> {
|
|
||||||
get_collection("channel_invites")
|
|
||||||
.delete_many(
|
|
||||||
doc! {
|
|
||||||
"channel": id
|
|
||||||
},
|
|
||||||
None,
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map(|_| ())
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "delete_many",
|
|
||||||
with: "channel_invites",
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
pub async fn delete_messages(id: Bson) -> Result<()> {
|
|
||||||
let messages = get_collection("messages");
|
|
||||||
|
|
||||||
// Delete any unreads.
|
|
||||||
get_collection("channel_unreads")
|
|
||||||
.delete_many(
|
|
||||||
doc! {
|
|
||||||
"_id.channel": &id
|
|
||||||
},
|
|
||||||
None,
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "delete_many",
|
|
||||||
with: "channel_unreads",
|
|
||||||
})?;
|
|
||||||
|
|
||||||
// Check if there are any attachments we need to delete.
|
|
||||||
let message_ids = messages
|
|
||||||
.find(
|
|
||||||
doc! {
|
|
||||||
"channel": &id,
|
|
||||||
"attachment": {
|
|
||||||
"$exists": 1
|
|
||||||
}
|
|
||||||
},
|
|
||||||
FindOptions::builder().projection(doc! { "_id": 1 }).build(),
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "fetch_many",
|
|
||||||
with: "messages",
|
|
||||||
})?
|
|
||||||
.filter_map(async move |s| s.ok())
|
|
||||||
.collect::<Vec<Document>>()
|
|
||||||
.await
|
|
||||||
.into_iter()
|
|
||||||
.filter_map(|x| x.get_str("_id").ok().map(|x| x.to_string()))
|
|
||||||
.collect::<Vec<String>>();
|
|
||||||
|
|
||||||
// If we found any, mark them as deleted.
|
|
||||||
if message_ids.len() > 0 {
|
|
||||||
get_collection("attachments")
|
|
||||||
.update_many(
|
|
||||||
doc! {
|
|
||||||
"message_id": {
|
|
||||||
"$in": message_ids
|
|
||||||
}
|
|
||||||
},
|
|
||||||
doc! {
|
|
||||||
"$set": {
|
|
||||||
"deleted": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
None,
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "update_many",
|
|
||||||
with: "attachments",
|
|
||||||
})?;
|
|
||||||
}
|
|
||||||
|
|
||||||
// And then delete said messages.
|
|
||||||
messages
|
|
||||||
.delete_many(
|
|
||||||
doc! {
|
|
||||||
"channel": id
|
|
||||||
},
|
|
||||||
None,
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map(|_| ())
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "delete_many",
|
|
||||||
with: "messages",
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
pub async fn delete(&self) -> Result<()> {
|
|
||||||
let id = self.id();
|
|
||||||
|
|
||||||
// Delete any invites.
|
|
||||||
Channel::delete_associated_objects(Bson::String(id.to_string())).await?;
|
|
||||||
|
|
||||||
// Delete messages.
|
|
||||||
match &self {
|
|
||||||
Channel::VoiceChannel { .. } => {},
|
|
||||||
_ => {
|
|
||||||
Channel::delete_messages(Bson::String(id.to_string())).await?;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Remove from server object.
|
|
||||||
match &self {
|
|
||||||
Channel::TextChannel { server, .. }
|
|
||||||
| Channel::VoiceChannel { server, .. } => {
|
|
||||||
let server = Ref::from_unchecked(server.clone()).fetch_server().await?;
|
|
||||||
let mut update = doc! {
|
|
||||||
"$pull": {
|
|
||||||
"channels": id
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
if let Some(sys) = &server.system_messages {
|
|
||||||
let mut unset = doc! {};
|
|
||||||
|
|
||||||
if let Some(cid) = &sys.user_joined {
|
|
||||||
if id == cid {
|
|
||||||
unset.insert("system_messages.user_joined", 1);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if let Some(cid) = &sys.user_left {
|
|
||||||
if id == cid {
|
|
||||||
unset.insert("system_messages.user_left", 1);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if let Some(cid) = &sys.user_kicked {
|
|
||||||
if id == cid {
|
|
||||||
unset.insert("system_messages.user_kicked", 1);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if let Some(cid) = &sys.user_banned {
|
|
||||||
if id == cid {
|
|
||||||
unset.insert("system_messages.user_banned", 1);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if unset.len() > 0 {
|
|
||||||
update.insert("$unset", unset);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
get_collection("servers")
|
|
||||||
.update_one(
|
|
||||||
doc! {
|
|
||||||
"_id": server.id
|
|
||||||
},
|
|
||||||
update,
|
|
||||||
None,
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "update_one",
|
|
||||||
with: "servers",
|
|
||||||
})?;
|
|
||||||
},
|
|
||||||
_ => {}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Finally, delete the channel object.
|
|
||||||
get_collection("channels")
|
|
||||||
.delete_one(
|
|
||||||
doc! {
|
|
||||||
"_id": id
|
|
||||||
},
|
|
||||||
None,
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "delete_one",
|
|
||||||
with: "channel",
|
|
||||||
})?;
|
|
||||||
|
|
||||||
ClientboundNotification::ChannelDelete { id: id.to_string() }.publish(id.to_string());
|
|
||||||
|
|
||||||
if let Channel::Group { icon, .. } = self {
|
|
||||||
if let Some(attachment) = icon {
|
|
||||||
attachment.delete().await?;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Ok(())
|
|
||||||
}
|
|
||||||
|
|
||||||
pub async fn add_to_group(&self, member: String, by_user: String) -> Result<()> {
|
|
||||||
if let Channel::Group { id, recipients, .. } = &self {
|
|
||||||
if recipients.len() >= *MAX_GROUP_SIZE {
|
|
||||||
Err(Error::GroupTooLarge {
|
|
||||||
max: *MAX_GROUP_SIZE,
|
|
||||||
})?
|
|
||||||
}
|
|
||||||
|
|
||||||
if recipients.iter().find(|x| *x == &member).is_some() {
|
|
||||||
Err(Error::AlreadyInGroup)?
|
|
||||||
}
|
|
||||||
|
|
||||||
get_collection("channels")
|
|
||||||
.update_one(
|
|
||||||
doc! {
|
|
||||||
"_id": &id
|
|
||||||
},
|
|
||||||
doc! {
|
|
||||||
"$push": {
|
|
||||||
"recipients": &member
|
|
||||||
}
|
|
||||||
},
|
|
||||||
None,
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "update_one",
|
|
||||||
with: "channel",
|
|
||||||
})?;
|
|
||||||
|
|
||||||
ClientboundNotification::ChannelGroupJoin {
|
|
||||||
id: id.clone(),
|
|
||||||
user: member.clone(),
|
|
||||||
}
|
|
||||||
.publish(id.clone());
|
|
||||||
|
|
||||||
Content::SystemMessage(SystemMessage::UserAdded {
|
|
||||||
id: member,
|
|
||||||
by: by_user,
|
|
||||||
})
|
|
||||||
.send_as_system(&self)
|
|
||||||
.await
|
|
||||||
.ok();
|
|
||||||
Ok(())
|
|
||||||
} else {
|
|
||||||
Err(Error::InvalidOperation)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,96 +0,0 @@
|
|||||||
use mongodb::bson::doc;
|
|
||||||
use mongodb::bson::from_document;
|
|
||||||
use mongodb::bson::to_document;
|
|
||||||
use serde::{Deserialize, Serialize};
|
|
||||||
|
|
||||||
use crate::database::get_collection;
|
|
||||||
use crate::util::result::Error;
|
|
||||||
use crate::util::result::Result;
|
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize, Debug, Clone)]
|
|
||||||
#[serde(tag = "type")]
|
|
||||||
pub enum Invite {
|
|
||||||
Server {
|
|
||||||
#[serde(rename = "_id")]
|
|
||||||
code: String,
|
|
||||||
server: String,
|
|
||||||
creator: String,
|
|
||||||
channel: String,
|
|
||||||
},
|
|
||||||
Group {
|
|
||||||
#[serde(rename = "_id")]
|
|
||||||
code: String,
|
|
||||||
creator: String,
|
|
||||||
channel: String,
|
|
||||||
}, /* User {
|
|
||||||
code: String,
|
|
||||||
user: String
|
|
||||||
} */
|
|
||||||
}
|
|
||||||
|
|
||||||
impl Invite {
|
|
||||||
pub fn code(&self) -> &String {
|
|
||||||
match &self {
|
|
||||||
Invite::Server { code, .. } => code,
|
|
||||||
Invite::Group { code, .. } => code,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn creator(&self) -> &String {
|
|
||||||
match &self {
|
|
||||||
Invite::Server { creator, .. } => creator,
|
|
||||||
Invite::Group { creator, .. } => creator,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pub async fn get(code: &str) -> Result<Invite> {
|
|
||||||
let doc = get_collection("channel_invites")
|
|
||||||
.find_one(doc! { "_id": code }, None)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "find_one",
|
|
||||||
with: "invite",
|
|
||||||
})?
|
|
||||||
.ok_or_else(|| Error::UnknownServer)?;
|
|
||||||
|
|
||||||
from_document::<Invite>(doc).map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "from_document",
|
|
||||||
with: "invite",
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
pub async fn save(self) -> Result<()> {
|
|
||||||
get_collection("channel_invites")
|
|
||||||
.insert_one(
|
|
||||||
to_document(&self).map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "to_bson",
|
|
||||||
with: "invite",
|
|
||||||
})?,
|
|
||||||
None,
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "insert_one",
|
|
||||||
with: "invite",
|
|
||||||
})?;
|
|
||||||
|
|
||||||
Ok(())
|
|
||||||
}
|
|
||||||
|
|
||||||
pub async fn delete(&self) -> Result<()> {
|
|
||||||
get_collection("channel_invites")
|
|
||||||
.delete_one(
|
|
||||||
doc! {
|
|
||||||
"_id": self.code()
|
|
||||||
},
|
|
||||||
None,
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "delete_one",
|
|
||||||
with: "invite",
|
|
||||||
})?;
|
|
||||||
|
|
||||||
Ok(())
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,363 +0,0 @@
|
|||||||
use crate::util::variables::{USE_JANUARY, PUBLIC_URL, APP_URL};
|
|
||||||
use crate::{
|
|
||||||
database::*,
|
|
||||||
notifications::{events::ClientboundNotification, websocket::is_online},
|
|
||||||
util::result::{Error, Result},
|
|
||||||
};
|
|
||||||
|
|
||||||
use mongodb::bson::{doc, to_bson, DateTime};
|
|
||||||
use rocket::serde::json::Value;
|
|
||||||
use serde::{Deserialize, Serialize};
|
|
||||||
use ulid::Ulid;
|
|
||||||
use validator::Validate;
|
|
||||||
use std::collections::HashSet;
|
|
||||||
use std::time::SystemTime;
|
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize, Debug, Clone)]
|
|
||||||
pub struct PushNotification {
|
|
||||||
pub author: String,
|
|
||||||
pub icon: String,
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
pub image: Option<String>,
|
|
||||||
pub body: String,
|
|
||||||
pub tag: String,
|
|
||||||
pub timestamp: u64,
|
|
||||||
pub url: String,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl PushNotification {
|
|
||||||
pub async fn new(msg: Message, channel: &Channel) -> Self {
|
|
||||||
let author = Ref::from_unchecked(msg.author.clone())
|
|
||||||
.fetch_user()
|
|
||||||
.await;
|
|
||||||
|
|
||||||
let (author, avatar) = if let Ok(author) = author {
|
|
||||||
(Some(author.username), author.avatar)
|
|
||||||
} else {
|
|
||||||
(None, None)
|
|
||||||
};
|
|
||||||
|
|
||||||
let icon = if let Some(avatar) = avatar {
|
|
||||||
avatar.get_autumn_url()
|
|
||||||
} else {
|
|
||||||
format!("{}/users/{}/default_avatar", PUBLIC_URL.as_str(), msg.author)
|
|
||||||
};
|
|
||||||
|
|
||||||
let image = msg.attachments.map_or(None, |attachments| {
|
|
||||||
attachments
|
|
||||||
.first()
|
|
||||||
.map_or(None, |v| Some(v.get_autumn_url()))
|
|
||||||
});
|
|
||||||
|
|
||||||
let body = match msg.content {
|
|
||||||
Content::Text(body) => body,
|
|
||||||
Content::SystemMessage(sys_msg) => sys_msg.into()
|
|
||||||
};
|
|
||||||
|
|
||||||
let timestamp = SystemTime::now()
|
|
||||||
.duration_since(SystemTime::UNIX_EPOCH)
|
|
||||||
.expect("system time should be valid")
|
|
||||||
.as_secs();
|
|
||||||
|
|
||||||
Self {
|
|
||||||
author: author.unwrap_or_else(|| "Unknown".into()),
|
|
||||||
icon,
|
|
||||||
image,
|
|
||||||
body,
|
|
||||||
tag: channel.id().to_string(),
|
|
||||||
timestamp,
|
|
||||||
url: format!("{}/channel/{}/{}", *APP_URL, channel.id(), msg.id),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize, Debug, Clone)]
|
|
||||||
#[serde(tag = "type")]
|
|
||||||
pub enum SystemMessage {
|
|
||||||
#[serde(rename = "text")]
|
|
||||||
Text { content: String },
|
|
||||||
#[serde(rename = "user_added")]
|
|
||||||
UserAdded { id: String, by: String },
|
|
||||||
#[serde(rename = "user_remove")]
|
|
||||||
UserRemove { id: String, by: String },
|
|
||||||
#[serde(rename = "user_joined")]
|
|
||||||
UserJoined { id: String },
|
|
||||||
#[serde(rename = "user_left")]
|
|
||||||
UserLeft { id: String },
|
|
||||||
#[serde(rename = "user_kicked")]
|
|
||||||
UserKicked { id: String },
|
|
||||||
#[serde(rename = "user_banned")]
|
|
||||||
UserBanned { id: String },
|
|
||||||
#[serde(rename = "channel_renamed")]
|
|
||||||
ChannelRenamed { name: String, by: String },
|
|
||||||
#[serde(rename = "channel_description_changed")]
|
|
||||||
ChannelDescriptionChanged { by: String },
|
|
||||||
#[serde(rename = "channel_icon_changed")]
|
|
||||||
ChannelIconChanged { by: String },
|
|
||||||
}
|
|
||||||
|
|
||||||
impl Into<String> for SystemMessage {
|
|
||||||
fn into(self) -> String {
|
|
||||||
match self {
|
|
||||||
SystemMessage::Text { content } => content,
|
|
||||||
SystemMessage::UserAdded { .. } => "User added to the channel.".to_string(),
|
|
||||||
SystemMessage::UserRemove { .. } => "User removed from the channel.".to_string(),
|
|
||||||
SystemMessage::UserJoined { .. } => "User joined the channel.".to_string(),
|
|
||||||
SystemMessage::UserLeft { .. } => "User left the channel.".to_string(),
|
|
||||||
SystemMessage::UserKicked { .. } => "User kicked from the channel.".to_string(),
|
|
||||||
SystemMessage::UserBanned { .. } => "User banned from the channel.".to_string(),
|
|
||||||
SystemMessage::ChannelRenamed { .. } => "Channel renamed.".to_string(),
|
|
||||||
SystemMessage::ChannelDescriptionChanged { .. } => "Channel description changed.".to_string(),
|
|
||||||
SystemMessage::ChannelIconChanged { .. } => "Channel icon changed.".to_string()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize, Debug, Clone)]
|
|
||||||
#[serde(untagged)]
|
|
||||||
pub enum Content {
|
|
||||||
Text(String),
|
|
||||||
SystemMessage(SystemMessage),
|
|
||||||
}
|
|
||||||
|
|
||||||
impl Content {
|
|
||||||
pub async fn send_as_system(self, target: &Channel) -> Result<()> {
|
|
||||||
Message::create(
|
|
||||||
"00000000000000000000000000".to_string(),
|
|
||||||
target.id().to_string(),
|
|
||||||
self,
|
|
||||||
None,
|
|
||||||
None,
|
|
||||||
None
|
|
||||||
)
|
|
||||||
.publish(&target, false)
|
|
||||||
.await
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize, Debug, Clone, Validate)]
|
|
||||||
pub struct Masquerade {
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
#[validate(length(min = 1, max = 32))]
|
|
||||||
name: Option<String>,
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
#[validate(length(min = 1, max = 128))]
|
|
||||||
avatar: Option<String>
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize, Debug, Clone)]
|
|
||||||
pub struct Message {
|
|
||||||
#[serde(rename = "_id")]
|
|
||||||
pub id: String,
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
pub nonce: Option<String>,
|
|
||||||
pub channel: String,
|
|
||||||
pub author: String,
|
|
||||||
|
|
||||||
pub content: Content,
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
pub attachments: Option<Vec<File>>,
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
pub edited: Option<DateTime>,
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
pub embeds: Option<Vec<Embed>>,
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
pub mentions: Option<Vec<String>>,
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
pub replies: Option<Vec<String>>,
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
pub masquerade: Option<Masquerade>
|
|
||||||
}
|
|
||||||
|
|
||||||
impl Message {
|
|
||||||
pub fn create(
|
|
||||||
author: String,
|
|
||||||
channel: String,
|
|
||||||
content: Content,
|
|
||||||
mentions: Option<Vec<String>>,
|
|
||||||
replies: Option<Vec<String>>,
|
|
||||||
masquerade: Option<Masquerade>,
|
|
||||||
) -> Message {
|
|
||||||
Message {
|
|
||||||
id: Ulid::new().to_string(),
|
|
||||||
nonce: None,
|
|
||||||
channel,
|
|
||||||
author,
|
|
||||||
content,
|
|
||||||
attachments: None,
|
|
||||||
edited: None,
|
|
||||||
embeds: None,
|
|
||||||
mentions,
|
|
||||||
replies,
|
|
||||||
masquerade
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pub async fn publish(self, channel: &Channel, process_embeds: bool) -> Result<()> {
|
|
||||||
// Publish message event
|
|
||||||
ClientboundNotification::Message(self.clone())
|
|
||||||
.publish(channel.id().to_string());
|
|
||||||
|
|
||||||
// Commit message to database
|
|
||||||
get_collection("messages")
|
|
||||||
.insert_one(to_bson(&self).unwrap().as_document().unwrap().clone(), None)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "insert_one",
|
|
||||||
with: "message",
|
|
||||||
})?;
|
|
||||||
|
|
||||||
// spawn task_queue ( process embeds )
|
|
||||||
if process_embeds {
|
|
||||||
self.process_embed().await;
|
|
||||||
}
|
|
||||||
|
|
||||||
// spawn task_queue ( update last_message_id )
|
|
||||||
match channel {
|
|
||||||
Channel::DirectMessage { id, .. } =>
|
|
||||||
crate::task_queue::task_last_message_id::queue(id.clone(), self.id.clone(), true).await,
|
|
||||||
Channel::Group { id, .. } | Channel::TextChannel { id, .. } =>
|
|
||||||
crate::task_queue::task_last_message_id::queue(id.clone(), self.id.clone(), false).await,
|
|
||||||
_ => {}
|
|
||||||
}
|
|
||||||
|
|
||||||
// if mentions {
|
|
||||||
// spawn task_queue ( update channel_unreads )
|
|
||||||
// }
|
|
||||||
if let Some(mentions) = &self.mentions {
|
|
||||||
for user in mentions {
|
|
||||||
crate::task_queue::task_ack::queue(
|
|
||||||
channel.id().into(),
|
|
||||||
user.clone(),
|
|
||||||
crate::task_queue::task_ack::AckEvent::AddMention {
|
|
||||||
ids: vec![ self.id.clone() ]
|
|
||||||
}
|
|
||||||
).await;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// if (channel => DM | Group) | mentions {
|
|
||||||
// spawn task_queue ( web push )
|
|
||||||
// }
|
|
||||||
let mut target_ids = vec![];
|
|
||||||
match &channel {
|
|
||||||
Channel::DirectMessage { recipients, .. } | Channel::Group { recipients, .. } => {
|
|
||||||
for recipient in recipients {
|
|
||||||
if !is_online(recipient) {
|
|
||||||
target_ids.push(recipient.clone());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Channel::TextChannel { .. } => {
|
|
||||||
if let Some(mentions) = &self.mentions {
|
|
||||||
target_ids.append(&mut mentions.clone());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
_ => {}
|
|
||||||
}
|
|
||||||
|
|
||||||
if target_ids.len() > 0 {
|
|
||||||
if let Ok(payload) = serde_json::to_string(&PushNotification::new(self, &channel).await) {
|
|
||||||
crate::task_queue::task_web_push::queue(target_ids, payload).await;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Ok(())
|
|
||||||
}
|
|
||||||
|
|
||||||
pub async fn publish_update(self, data: Value) -> Result<()> {
|
|
||||||
let channel = self.channel.clone();
|
|
||||||
ClientboundNotification::MessageUpdate {
|
|
||||||
id: self.id.clone(),
|
|
||||||
channel: self.channel.clone(),
|
|
||||||
data,
|
|
||||||
}
|
|
||||||
.publish(channel);
|
|
||||||
|
|
||||||
self.process_embed().await;
|
|
||||||
Ok(())
|
|
||||||
}
|
|
||||||
|
|
||||||
pub async fn process_embed(&self) {
|
|
||||||
if !*USE_JANUARY {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if let Content::Text(text) = &self.content {
|
|
||||||
crate::task_queue::task_process_embeds::queue(self.channel.clone(), self.id.clone(), text.clone()).await;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pub async fn delete(&self) -> Result<()> {
|
|
||||||
if let Some(attachments) = &self.attachments {
|
|
||||||
for attachment in attachments {
|
|
||||||
attachment.delete().await?;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
get_collection("messages")
|
|
||||||
.delete_one(
|
|
||||||
doc! {
|
|
||||||
"_id": &self.id
|
|
||||||
},
|
|
||||||
None,
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "delete_one",
|
|
||||||
with: "message",
|
|
||||||
})?;
|
|
||||||
|
|
||||||
let channel = self.channel.clone();
|
|
||||||
ClientboundNotification::MessageDelete {
|
|
||||||
id: self.id.clone(),
|
|
||||||
channel: self.channel.clone(),
|
|
||||||
}
|
|
||||||
.publish(channel);
|
|
||||||
|
|
||||||
if let Some(attachments) = &self.attachments {
|
|
||||||
let attachment_ids: Vec<String> =
|
|
||||||
attachments.iter().map(|f| f.id.to_string()).collect();
|
|
||||||
get_collection("attachments")
|
|
||||||
.update_many(
|
|
||||||
doc! {
|
|
||||||
"_id": {
|
|
||||||
"$in": attachment_ids
|
|
||||||
}
|
|
||||||
},
|
|
||||||
doc! {
|
|
||||||
"$set": {
|
|
||||||
"deleted": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
None,
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "update_many",
|
|
||||||
with: "attachment",
|
|
||||||
})?;
|
|
||||||
}
|
|
||||||
|
|
||||||
Ok(())
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn add_associated_user_ids(&self, ids: &mut HashSet<String>) {
|
|
||||||
ids.insert(self.author.clone());
|
|
||||||
|
|
||||||
if let Content::SystemMessage(sys) = &self.content {
|
|
||||||
match sys {
|
|
||||||
SystemMessage::Text { .. } => {},
|
|
||||||
SystemMessage::UserAdded { id, by } => { ids.insert(id.clone()); ids.insert(by.clone()); },
|
|
||||||
SystemMessage::UserRemove { id, by } => { ids.insert(id.clone()); ids.insert(by.clone()); },
|
|
||||||
SystemMessage::UserJoined { id } => { ids.insert(id.clone()); },
|
|
||||||
SystemMessage::UserLeft { id } => { ids.insert(id.clone()); },
|
|
||||||
SystemMessage::UserKicked { id } => { ids.insert(id.clone()); },
|
|
||||||
SystemMessage::UserBanned { id } => { ids.insert(id.clone()); },
|
|
||||||
SystemMessage::ChannelRenamed { by, .. } => { ids.insert(by.clone()); },
|
|
||||||
SystemMessage::ChannelDescriptionChanged { by } => { ids.insert(by.clone()); },
|
|
||||||
SystemMessage::ChannelIconChanged { by } => { ids.insert(by.clone()); }
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,122 +0,0 @@
|
|||||||
use mongodb::bson::{doc, from_document};
|
|
||||||
use serde::{Deserialize, Serialize};
|
|
||||||
|
|
||||||
use crate::database::*;
|
|
||||||
use crate::util::result::{Error, Result};
|
|
||||||
use crate::util::variables::AUTUMN_URL;
|
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize, Debug, Clone)]
|
|
||||||
#[serde(tag = "type")]
|
|
||||||
enum Metadata {
|
|
||||||
File,
|
|
||||||
Text,
|
|
||||||
Image { width: isize, height: isize },
|
|
||||||
Video { width: isize, height: isize },
|
|
||||||
Audio,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize, Debug, Clone)]
|
|
||||||
pub struct File {
|
|
||||||
#[serde(rename = "_id")]
|
|
||||||
pub id: String,
|
|
||||||
tag: String,
|
|
||||||
filename: String,
|
|
||||||
metadata: Metadata,
|
|
||||||
content_type: String,
|
|
||||||
size: isize,
|
|
||||||
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
deleted: Option<bool>,
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
reported: Option<bool>,
|
|
||||||
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
message_id: Option<String>,
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
user_id: Option<String>,
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
server_id: Option<String>,
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
object_id: Option<String>,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl File {
|
|
||||||
pub async fn find_and_use(
|
|
||||||
attachment_id: &str,
|
|
||||||
tag: &str,
|
|
||||||
parent_type: &str,
|
|
||||||
parent_id: &str,
|
|
||||||
) -> Result<File> {
|
|
||||||
let attachments = get_collection("attachments");
|
|
||||||
let key = format!("{}_id", parent_type);
|
|
||||||
if let Some(doc) = attachments
|
|
||||||
.find_one(
|
|
||||||
doc! {
|
|
||||||
"_id": attachment_id,
|
|
||||||
"tag": &tag,
|
|
||||||
key.clone(): {
|
|
||||||
"$exists": false
|
|
||||||
}
|
|
||||||
},
|
|
||||||
None,
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "find_one",
|
|
||||||
with: "attachment",
|
|
||||||
})?
|
|
||||||
{
|
|
||||||
let attachment = from_document::<File>(doc).map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "from_document",
|
|
||||||
with: "attachment",
|
|
||||||
})?;
|
|
||||||
|
|
||||||
attachments
|
|
||||||
.update_one(
|
|
||||||
doc! {
|
|
||||||
"_id": &attachment.id
|
|
||||||
},
|
|
||||||
doc! {
|
|
||||||
"$set": {
|
|
||||||
key: &parent_id
|
|
||||||
}
|
|
||||||
},
|
|
||||||
None,
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "update_one",
|
|
||||||
with: "attachment",
|
|
||||||
})?;
|
|
||||||
|
|
||||||
Ok(attachment)
|
|
||||||
} else {
|
|
||||||
Err(Error::UnknownAttachment)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pub async fn delete(&self) -> Result<()> {
|
|
||||||
get_collection("attachments")
|
|
||||||
.update_one(
|
|
||||||
doc! {
|
|
||||||
"_id": &self.id
|
|
||||||
},
|
|
||||||
doc! {
|
|
||||||
"$set": {
|
|
||||||
"deleted": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
None,
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map(|_| ())
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "update_one",
|
|
||||||
with: "attachment",
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn get_autumn_url(&self) -> String {
|
|
||||||
format!("{}/{}/{}", AUTUMN_URL.as_str(), self.tag, self.id)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,200 +0,0 @@
|
|||||||
use crate::util::{
|
|
||||||
result::{Error, Result},
|
|
||||||
variables::JANUARY_URL,
|
|
||||||
variables::MAX_EMBED_COUNT,
|
|
||||||
};
|
|
||||||
use crate::database::entities::microservice::autumn::File;
|
|
||||||
use linkify::{LinkFinder, LinkKind};
|
|
||||||
use regex::Regex;
|
|
||||||
use serde::{Deserialize, Serialize};
|
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize, Debug, Clone)]
|
|
||||||
pub enum ImageSize {
|
|
||||||
Large,
|
|
||||||
Preview,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize, Debug, Clone)]
|
|
||||||
pub struct Image {
|
|
||||||
pub url: String,
|
|
||||||
pub width: isize,
|
|
||||||
pub height: isize,
|
|
||||||
pub size: ImageSize,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize, Debug, Clone)]
|
|
||||||
pub struct Video {
|
|
||||||
pub url: String,
|
|
||||||
pub width: isize,
|
|
||||||
pub height: isize,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize, Debug, Clone)]
|
|
||||||
pub enum TwitchType {
|
|
||||||
Channel,
|
|
||||||
Video,
|
|
||||||
Clip,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize, Debug, Clone)]
|
|
||||||
pub enum BandcampType {
|
|
||||||
Album,
|
|
||||||
Track,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize, Debug, Clone)]
|
|
||||||
#[serde(tag = "type")]
|
|
||||||
pub enum Special {
|
|
||||||
None,
|
|
||||||
YouTube {
|
|
||||||
id: String,
|
|
||||||
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
timestamp: Option<String>,
|
|
||||||
},
|
|
||||||
Twitch {
|
|
||||||
content_type: TwitchType,
|
|
||||||
id: String,
|
|
||||||
},
|
|
||||||
Spotify {
|
|
||||||
content_type: String,
|
|
||||||
id: String,
|
|
||||||
},
|
|
||||||
Soundcloud,
|
|
||||||
Bandcamp {
|
|
||||||
content_type: BandcampType,
|
|
||||||
id: String,
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize, Debug, Clone)]
|
|
||||||
pub struct Metadata {
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
url: Option<String>,
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
special: Option<Special>,
|
|
||||||
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
title: Option<String>,
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
description: Option<String>,
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
image: Option<Image>,
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
video: Option<Video>,
|
|
||||||
|
|
||||||
// #[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
// opengraph_type: Option<String>,
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
site_name: Option<String>,
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
icon_url: Option<String>,
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
colour: Option<String>,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize, Debug, Clone)]
|
|
||||||
pub struct Text {
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
pub icon_url: Option<String>,
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
pub url: Option<String>,
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
pub title: Option<String>,
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
pub description: Option<String>,
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
pub media: Option<File>,
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
pub colour: Option<String>,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize, Debug, Clone)]
|
|
||||||
#[serde(tag = "type")]
|
|
||||||
pub enum Embed {
|
|
||||||
Website(Metadata),
|
|
||||||
Image(Image),
|
|
||||||
Text(Text),
|
|
||||||
None,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl Embed {
|
|
||||||
pub async fn generate(content: String) -> Result<Vec<Embed>> {
|
|
||||||
lazy_static! {
|
|
||||||
static ref RE_CODE: Regex = Regex::new("```(?:.|\n)+?```|`(?:.|\n)+?`").unwrap();
|
|
||||||
static ref RE_IGNORED: Regex = Regex::new("(<http.+>)").unwrap();
|
|
||||||
}
|
|
||||||
|
|
||||||
// Ignore code blocks.
|
|
||||||
let content = RE_CODE.replace_all(&content, "");
|
|
||||||
|
|
||||||
// Ignore all content between angle brackets starting with http.
|
|
||||||
let content = RE_IGNORED.replace_all(&content, "");
|
|
||||||
|
|
||||||
let content = content
|
|
||||||
// Ignore quoted lines.
|
|
||||||
.split("\n")
|
|
||||||
.map(|v| {
|
|
||||||
if let Some(c) = v.chars().next() {
|
|
||||||
if c == '>' {
|
|
||||||
return "";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
v
|
|
||||||
})
|
|
||||||
.collect::<Vec<&str>>()
|
|
||||||
.join("\n");
|
|
||||||
|
|
||||||
let mut finder = LinkFinder::new();
|
|
||||||
finder.kinds(&[LinkKind::Url]);
|
|
||||||
let links: Vec<_> = finder.links(&content).take(*MAX_EMBED_COUNT).collect();
|
|
||||||
|
|
||||||
if links.len() == 0 {
|
|
||||||
return Err(Error::LabelMe);
|
|
||||||
}
|
|
||||||
|
|
||||||
let mut embeds: Vec<Embed> = Vec::new();
|
|
||||||
|
|
||||||
let mut link_index = 0;
|
|
||||||
|
|
||||||
// ! FIXME: batch request to january?
|
|
||||||
while link_index < links.len() {
|
|
||||||
let link = &links[link_index];
|
|
||||||
|
|
||||||
// Check if we already processed this link.
|
|
||||||
if link_index != 0 && links.iter().take(link_index).any(|x| x.as_str() == link.as_str()) {
|
|
||||||
link_index = link_index + 1;
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
let client = reqwest::Client::new();
|
|
||||||
let result = client
|
|
||||||
.get(&format!("{}/embed", *JANUARY_URL))
|
|
||||||
.query(&[("url", link.as_str())])
|
|
||||||
.send()
|
|
||||||
.await;
|
|
||||||
|
|
||||||
if result.is_err() {
|
|
||||||
link_index = link_index + 1;
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
let response = result.unwrap();
|
|
||||||
if response.status().is_success() {
|
|
||||||
let res: Embed = response.json().await.map_err(|_| Error::InvalidOperation)?;
|
|
||||||
|
|
||||||
embeds.push(res);
|
|
||||||
}
|
|
||||||
|
|
||||||
link_index = link_index + 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Prevent database update when no embeds are found.
|
|
||||||
if embeds.len() > 0 {
|
|
||||||
Ok(embeds)
|
|
||||||
} else {
|
|
||||||
Err(Error::LabelMe)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
pub mod autumn;
|
|
||||||
pub mod january;
|
|
||||||
@@ -1,20 +0,0 @@
|
|||||||
mod channel;
|
|
||||||
mod invites;
|
|
||||||
mod message;
|
|
||||||
mod microservice;
|
|
||||||
mod server;
|
|
||||||
mod sync;
|
|
||||||
mod user;
|
|
||||||
mod bots;
|
|
||||||
|
|
||||||
use microservice::*;
|
|
||||||
|
|
||||||
pub use autumn::*;
|
|
||||||
pub use channel::*;
|
|
||||||
pub use invites::*;
|
|
||||||
pub use january::*;
|
|
||||||
pub use message::*;
|
|
||||||
pub use server::*;
|
|
||||||
pub use sync::*;
|
|
||||||
pub use user::*;
|
|
||||||
pub use bots::*;
|
|
||||||
@@ -1,470 +0,0 @@
|
|||||||
use std::collections::HashMap;
|
|
||||||
|
|
||||||
use crate::database::*;
|
|
||||||
use crate::notifications::events::ClientboundNotification;
|
|
||||||
use crate::util::result::{Error, Result};
|
|
||||||
use futures::StreamExt;
|
|
||||||
use mongodb::bson::{Bson, doc};
|
|
||||||
use mongodb::bson::from_document;
|
|
||||||
use mongodb::bson::to_document;
|
|
||||||
use mongodb::bson::Document;
|
|
||||||
use rocket::serde::json::Value;
|
|
||||||
use serde::{Deserialize, Serialize};
|
|
||||||
use ulid::Ulid;
|
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize, Debug, Clone)]
|
|
||||||
pub struct MemberCompositeKey {
|
|
||||||
pub server: String,
|
|
||||||
pub user: String,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize, Debug, Clone)]
|
|
||||||
pub struct Member {
|
|
||||||
#[serde(rename = "_id")]
|
|
||||||
pub id: MemberCompositeKey,
|
|
||||||
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
pub nickname: Option<String>,
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
pub avatar: Option<File>,
|
|
||||||
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
pub roles: Option<Vec<String>>
|
|
||||||
}
|
|
||||||
|
|
||||||
pub type PermissionTuple = (
|
|
||||||
i32, // server permission
|
|
||||||
i32 // channel permission
|
|
||||||
);
|
|
||||||
|
|
||||||
pub fn if_false(t: &bool) -> bool {
|
|
||||||
!t
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize, Debug, Clone)]
|
|
||||||
pub struct Role {
|
|
||||||
pub name: String,
|
|
||||||
pub permissions: PermissionTuple,
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
pub colour: Option<String>,
|
|
||||||
#[serde(skip_serializing_if = "if_false", default)]
|
|
||||||
pub hoist: bool,
|
|
||||||
#[serde(default)]
|
|
||||||
pub rank: i64,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize, Debug, Clone)]
|
|
||||||
pub struct Category {
|
|
||||||
pub id: String,
|
|
||||||
pub title: String,
|
|
||||||
pub channels: Vec<String>
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize, Debug, Clone)]
|
|
||||||
pub struct Ban {
|
|
||||||
#[serde(rename = "_id")]
|
|
||||||
pub id: MemberCompositeKey,
|
|
||||||
pub reason: Option<String>,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize, Debug, Clone)]
|
|
||||||
pub struct SystemMessageChannels {
|
|
||||||
pub user_joined: Option<String>,
|
|
||||||
pub user_left: Option<String>,
|
|
||||||
pub user_kicked: Option<String>,
|
|
||||||
pub user_banned: Option<String>,
|
|
||||||
}
|
|
||||||
|
|
||||||
pub enum RemoveMember {
|
|
||||||
Leave,
|
|
||||||
Kick,
|
|
||||||
Ban,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize, Debug, Clone)]
|
|
||||||
pub struct Server {
|
|
||||||
#[serde(rename = "_id")]
|
|
||||||
pub id: String,
|
|
||||||
pub owner: String,
|
|
||||||
|
|
||||||
pub name: String,
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
pub description: Option<String>,
|
|
||||||
|
|
||||||
pub channels: Vec<String>,
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
pub categories: Option<Vec<Category>>,
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
pub system_messages: Option<SystemMessageChannels>,
|
|
||||||
|
|
||||||
#[serde(default = "HashMap::new", skip_serializing_if = "HashMap::is_empty")]
|
|
||||||
pub roles: HashMap<String, Role>,
|
|
||||||
pub default_permissions: PermissionTuple,
|
|
||||||
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
pub icon: Option<File>,
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
pub banner: Option<File>,
|
|
||||||
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
pub flags: Option<i32>,
|
|
||||||
|
|
||||||
#[serde(skip_serializing_if = "if_false", default)]
|
|
||||||
pub nsfw: bool,
|
|
||||||
#[serde(skip_serializing_if = "if_false", default)]
|
|
||||||
pub analytics: bool,
|
|
||||||
#[serde(skip_serializing_if = "if_false", default)]
|
|
||||||
pub discoverable: bool
|
|
||||||
}
|
|
||||||
|
|
||||||
impl Server {
|
|
||||||
pub async fn create(self) -> Result<()> {
|
|
||||||
get_collection("servers")
|
|
||||||
.insert_one(
|
|
||||||
to_document(&self).map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "to_bson",
|
|
||||||
with: "channel",
|
|
||||||
})?,
|
|
||||||
None,
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "insert_one",
|
|
||||||
with: "server",
|
|
||||||
})?;
|
|
||||||
|
|
||||||
Ok(())
|
|
||||||
}
|
|
||||||
|
|
||||||
pub async fn publish_update(&self, data: Value) -> Result<()> {
|
|
||||||
ClientboundNotification::ServerUpdate {
|
|
||||||
id: self.id.clone(),
|
|
||||||
data,
|
|
||||||
clear: None,
|
|
||||||
}
|
|
||||||
.publish(self.id.clone());
|
|
||||||
|
|
||||||
Ok(())
|
|
||||||
}
|
|
||||||
|
|
||||||
pub async fn delete(&self) -> Result<()> {
|
|
||||||
// Check if there are any attachments we need to delete.
|
|
||||||
Channel::delete_messages(Bson::Document(doc! { "$in": &self.channels })).await?;
|
|
||||||
|
|
||||||
// Delete all channels.
|
|
||||||
get_collection("channels")
|
|
||||||
.delete_many(
|
|
||||||
doc! {
|
|
||||||
"server": &self.id
|
|
||||||
},
|
|
||||||
None,
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "delete_many",
|
|
||||||
with: "channels",
|
|
||||||
})?;
|
|
||||||
|
|
||||||
// Delete any associated objects, e.g. unreads and invites.
|
|
||||||
Channel::delete_associated_objects(Bson::Document(doc! { "$in": &self.channels })).await?;
|
|
||||||
|
|
||||||
// Delete members and bans.
|
|
||||||
for with in &["server_members", "server_bans"] {
|
|
||||||
get_collection(with)
|
|
||||||
.delete_many(
|
|
||||||
doc! {
|
|
||||||
"_id.server": &self.id
|
|
||||||
},
|
|
||||||
None,
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "delete_many",
|
|
||||||
with,
|
|
||||||
})?;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Delete server icon / banner.
|
|
||||||
if let Some(attachment) = &self.icon {
|
|
||||||
attachment.delete().await?;
|
|
||||||
}
|
|
||||||
|
|
||||||
if let Some(attachment) = &self.banner {
|
|
||||||
attachment.delete().await?;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Delete the server
|
|
||||||
get_collection("servers")
|
|
||||||
.delete_one(
|
|
||||||
doc! {
|
|
||||||
"_id": &self.id
|
|
||||||
},
|
|
||||||
None,
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "delete_one",
|
|
||||||
with: "server",
|
|
||||||
})?;
|
|
||||||
|
|
||||||
ClientboundNotification::ServerDelete {
|
|
||||||
id: self.id.clone(),
|
|
||||||
}
|
|
||||||
.publish(self.id.clone());
|
|
||||||
|
|
||||||
Ok(())
|
|
||||||
}
|
|
||||||
|
|
||||||
pub async fn fetch_members(id: &str) -> Result<Vec<Member>> {
|
|
||||||
Ok(get_collection("server_members")
|
|
||||||
.find(
|
|
||||||
doc! {
|
|
||||||
"_id.server": id
|
|
||||||
},
|
|
||||||
None,
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "find",
|
|
||||||
with: "server_members",
|
|
||||||
})?
|
|
||||||
.filter_map(async move |s| s.ok())
|
|
||||||
.collect::<Vec<Document>>()
|
|
||||||
.await
|
|
||||||
.into_iter()
|
|
||||||
.filter_map(|x| from_document(x).ok())
|
|
||||||
.collect::<Vec<Member>>())
|
|
||||||
}
|
|
||||||
|
|
||||||
pub async fn fetch_members_with_ids(id: &str, ids: &Vec<String>) -> Result<Vec<Member>> {
|
|
||||||
Ok(get_collection("server_members")
|
|
||||||
.find(
|
|
||||||
doc! {
|
|
||||||
"_id.server": id,
|
|
||||||
"_id.user": {
|
|
||||||
"$in": ids
|
|
||||||
}
|
|
||||||
},
|
|
||||||
None,
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "find",
|
|
||||||
with: "server_members",
|
|
||||||
})?
|
|
||||||
.filter_map(async move |s| s.ok())
|
|
||||||
.collect::<Vec<Document>>()
|
|
||||||
.await
|
|
||||||
.into_iter()
|
|
||||||
.filter_map(|x| from_document(x).ok())
|
|
||||||
.collect::<Vec<Member>>())
|
|
||||||
}
|
|
||||||
|
|
||||||
pub async fn fetch_member_ids(id: &str) -> Result<Vec<String>> {
|
|
||||||
Ok(get_collection("server_members")
|
|
||||||
.find(
|
|
||||||
doc! {
|
|
||||||
"_id.server": id
|
|
||||||
},
|
|
||||||
None,
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "find",
|
|
||||||
with: "server_members",
|
|
||||||
})?
|
|
||||||
.filter_map(async move |s| s.ok())
|
|
||||||
.collect::<Vec<Document>>()
|
|
||||||
.await
|
|
||||||
.into_iter()
|
|
||||||
.filter_map(|x| {
|
|
||||||
x.get_document("_id")
|
|
||||||
.ok()
|
|
||||||
.map(|i| i.get_str("user").ok().map(|x| x.to_string()))
|
|
||||||
})
|
|
||||||
.flatten()
|
|
||||||
.collect::<Vec<String>>())
|
|
||||||
}
|
|
||||||
|
|
||||||
pub async fn mark_as_read(&self, id: &str) -> Result<()> {
|
|
||||||
let current_time = Ulid::new().to_string();
|
|
||||||
let unreads = get_collection("channel_unreads");
|
|
||||||
|
|
||||||
unreads.delete_many(
|
|
||||||
doc! {
|
|
||||||
"_id.channel": {
|
|
||||||
"$in": &self.channels
|
|
||||||
},
|
|
||||||
"_id.user": &id
|
|
||||||
},
|
|
||||||
None
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "delete_many",
|
|
||||||
with: "channel_unreads",
|
|
||||||
})?;
|
|
||||||
|
|
||||||
unreads.insert_many(
|
|
||||||
self.channels
|
|
||||||
.iter()
|
|
||||||
.map(|channel| doc! {
|
|
||||||
"_id": {
|
|
||||||
"channel": channel,
|
|
||||||
"user": &id
|
|
||||||
},
|
|
||||||
"last_id": ¤t_time
|
|
||||||
})
|
|
||||||
.collect::<Vec<Document>>(),
|
|
||||||
None
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "update_many",
|
|
||||||
with: "channel_unreads",
|
|
||||||
})
|
|
||||||
.map(|_| ())
|
|
||||||
}
|
|
||||||
|
|
||||||
pub async fn join_member(&self, id: &str) -> Result<()> {
|
|
||||||
// Check if user is banned.
|
|
||||||
if get_collection("server_bans")
|
|
||||||
.find_one(
|
|
||||||
doc! {
|
|
||||||
"_id.server": &self.id,
|
|
||||||
"_id.user": &id
|
|
||||||
},
|
|
||||||
None,
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "find_one",
|
|
||||||
with: "server_bans",
|
|
||||||
})?
|
|
||||||
.is_some()
|
|
||||||
{
|
|
||||||
return Err(Error::Banned);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Add user to server.
|
|
||||||
get_collection("server_members")
|
|
||||||
.insert_one(
|
|
||||||
doc! {
|
|
||||||
"_id": {
|
|
||||||
"server": &self.id,
|
|
||||||
"user": &id
|
|
||||||
}
|
|
||||||
},
|
|
||||||
None,
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "insert_one",
|
|
||||||
with: "server_members",
|
|
||||||
})?;
|
|
||||||
|
|
||||||
// Announce that user joined server.
|
|
||||||
ClientboundNotification::ServerMemberJoin {
|
|
||||||
id: self.id.clone(),
|
|
||||||
user: id.to_string(),
|
|
||||||
}
|
|
||||||
.publish(self.id.clone());
|
|
||||||
|
|
||||||
// Broadcast join message.
|
|
||||||
if let Some(channels) = &self.system_messages {
|
|
||||||
if let Some(cid) = &channels.user_joined {
|
|
||||||
let channel = Ref::from_unchecked(cid.clone()).fetch_channel().await?;
|
|
||||||
Content::SystemMessage(SystemMessage::UserJoined { id: id.to_string() })
|
|
||||||
.send_as_system(&channel)
|
|
||||||
.await?;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Mark entire server as read.
|
|
||||||
self.mark_as_read(&id).await?;
|
|
||||||
|
|
||||||
Ok(())
|
|
||||||
}
|
|
||||||
|
|
||||||
pub async fn remove_member(&self, id: &str, removal: RemoveMember) -> Result<()> {
|
|
||||||
let result = get_collection("server_members")
|
|
||||||
.delete_one(
|
|
||||||
doc! {
|
|
||||||
"_id": {
|
|
||||||
"server": &self.id,
|
|
||||||
"user": &id
|
|
||||||
}
|
|
||||||
},
|
|
||||||
None,
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "delete_one",
|
|
||||||
with: "server_members",
|
|
||||||
})?;
|
|
||||||
|
|
||||||
if result.deleted_count > 0 {
|
|
||||||
ClientboundNotification::ServerMemberLeave {
|
|
||||||
id: self.id.clone(),
|
|
||||||
user: id.to_string(),
|
|
||||||
}
|
|
||||||
.publish(self.id.clone());
|
|
||||||
|
|
||||||
if let Some(channels) = &self.system_messages {
|
|
||||||
let message = match removal {
|
|
||||||
RemoveMember::Leave => {
|
|
||||||
if let Some(cid) = &channels.user_left {
|
|
||||||
Some((cid.clone(), SystemMessage::UserLeft { id: id.to_string() }))
|
|
||||||
} else {
|
|
||||||
None
|
|
||||||
}
|
|
||||||
}
|
|
||||||
RemoveMember::Kick => {
|
|
||||||
if let Some(cid) = &channels.user_kicked {
|
|
||||||
Some((
|
|
||||||
cid.clone(),
|
|
||||||
SystemMessage::UserKicked { id: id.to_string() },
|
|
||||||
))
|
|
||||||
} else {
|
|
||||||
None
|
|
||||||
}
|
|
||||||
}
|
|
||||||
RemoveMember::Ban => {
|
|
||||||
if let Some(cid) = &channels.user_banned {
|
|
||||||
Some((
|
|
||||||
cid.clone(),
|
|
||||||
SystemMessage::UserBanned { id: id.to_string() },
|
|
||||||
))
|
|
||||||
} else {
|
|
||||||
None
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
if let Some((cid, message)) = message {
|
|
||||||
let channel = Ref::from_unchecked(cid).fetch_channel().await?;
|
|
||||||
Content::SystemMessage(message)
|
|
||||||
.send_as_system(&channel)
|
|
||||||
.await?;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Ok(())
|
|
||||||
}
|
|
||||||
|
|
||||||
pub async fn get_member_count(id: &str) -> Result<i64> {
|
|
||||||
Ok(get_collection("server_members")
|
|
||||||
.count_documents(
|
|
||||||
doc! {
|
|
||||||
"_id.server": id
|
|
||||||
},
|
|
||||||
None,
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "count_documents",
|
|
||||||
with: "server_members",
|
|
||||||
})?)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
use serde::{Deserialize, Serialize};
|
|
||||||
use std::collections::HashMap;
|
|
||||||
|
|
||||||
pub type UserSettings = HashMap<String, (i64, String)>;
|
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize, Debug, Clone)]
|
|
||||||
pub struct ChannelCompositeKey {
|
|
||||||
pub channel: String,
|
|
||||||
pub user: String,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize, Debug, Clone)]
|
|
||||||
pub struct ChannelUnread {
|
|
||||||
#[serde(rename = "_id")]
|
|
||||||
pub id: ChannelCompositeKey,
|
|
||||||
|
|
||||||
pub last_id: Option<String>,
|
|
||||||
pub mentions: Option<Vec<String>>,
|
|
||||||
}
|
|
||||||
@@ -1,337 +0,0 @@
|
|||||||
use futures::StreamExt;
|
|
||||||
use mongodb::bson::Document;
|
|
||||||
use mongodb::options::{Collation, FindOneOptions};
|
|
||||||
use mongodb::{
|
|
||||||
bson::{doc, from_document},
|
|
||||||
options::FindOptions,
|
|
||||||
};
|
|
||||||
use num_enum::TryFromPrimitive;
|
|
||||||
use serde::{Deserialize, Serialize};
|
|
||||||
use std::ops;
|
|
||||||
use ulid::Ulid;
|
|
||||||
use validator::Validate;
|
|
||||||
|
|
||||||
use crate::database::permissions::user::UserPermissions;
|
|
||||||
use crate::database::*;
|
|
||||||
use crate::notifications::websocket::is_online;
|
|
||||||
use crate::util::result::{Error, Result};
|
|
||||||
use crate::util::variables::EARLY_ADOPTER_BADGE;
|
|
||||||
use crate::util::variables::MAX_SERVER_COUNT;
|
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq)]
|
|
||||||
pub enum RelationshipStatus {
|
|
||||||
None,
|
|
||||||
User,
|
|
||||||
Friend,
|
|
||||||
Outgoing,
|
|
||||||
Incoming,
|
|
||||||
Blocked,
|
|
||||||
BlockedOther,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize, Debug, Clone)]
|
|
||||||
pub struct Relationship {
|
|
||||||
#[serde(rename = "_id")]
|
|
||||||
pub id: String,
|
|
||||||
pub status: RelationshipStatus,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq)]
|
|
||||||
pub enum Presence {
|
|
||||||
Online,
|
|
||||||
Idle,
|
|
||||||
Busy,
|
|
||||||
Invisible,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Validate, Serialize, Deserialize, Debug, Clone)]
|
|
||||||
pub struct UserStatus {
|
|
||||||
#[validate(length(min = 1, max = 128))]
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
pub text: Option<String>,
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
pub presence: Option<Presence>,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize, Debug, Clone)]
|
|
||||||
pub struct UserProfile {
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
pub content: Option<String>,
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
pub background: Option<File>,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Debug, PartialEq, Eq, TryFromPrimitive, Copy, Clone)]
|
|
||||||
#[repr(i32)]
|
|
||||||
pub enum Badges {
|
|
||||||
Developer = 1,
|
|
||||||
Translator = 2,
|
|
||||||
Supporter = 4,
|
|
||||||
ResponsibleDisclosure = 8,
|
|
||||||
Founder = 16,
|
|
||||||
PlatformModeration = 32,
|
|
||||||
ActiveSupporter = 64,
|
|
||||||
Paw = 128,
|
|
||||||
EarlyAdopter = 256,
|
|
||||||
ReservedRelevantJokeBadge1 = 512
|
|
||||||
}
|
|
||||||
|
|
||||||
impl_op_ex_commutative!(+ |a: &i32, b: &Badges| -> i32 { *a | *b as i32 });
|
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize, Debug, Clone)]
|
|
||||||
pub struct BotInformation {
|
|
||||||
owner: String
|
|
||||||
}
|
|
||||||
|
|
||||||
// When changing this struct, update notifications/payload.rs#113
|
|
||||||
#[derive(Serialize, Deserialize, Debug, Clone)]
|
|
||||||
pub struct User {
|
|
||||||
#[serde(rename = "_id")]
|
|
||||||
pub id: String,
|
|
||||||
pub username: String,
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
pub avatar: Option<File>,
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
pub relations: Option<Vec<Relationship>>,
|
|
||||||
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
pub badges: Option<i32>,
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
pub status: Option<UserStatus>,
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
pub profile: Option<UserProfile>,
|
|
||||||
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
pub flags: Option<i32>,
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
pub bot: Option<BotInformation>,
|
|
||||||
|
|
||||||
// ? This should never be pushed to the collection.
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
pub relationship: Option<RelationshipStatus>,
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
pub online: Option<bool>,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl User {
|
|
||||||
/// Mutate the user object to include relationship as seen by user.
|
|
||||||
pub fn from(mut self, user: &User) -> User {
|
|
||||||
self.relationship = Some(RelationshipStatus::None);
|
|
||||||
|
|
||||||
if self.id == user.id {
|
|
||||||
self.relationship = Some(RelationshipStatus::User);
|
|
||||||
return self;
|
|
||||||
}
|
|
||||||
|
|
||||||
self.relations = None;
|
|
||||||
if let Some(relations) = &user.relations {
|
|
||||||
if let Some(relationship) = relations.iter().find(|x| self.id == x.id) {
|
|
||||||
self.relationship = Some(relationship.status.clone());
|
|
||||||
return self;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
self
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Apply any relevant badges.
|
|
||||||
pub fn apply_badges(mut self) -> User {
|
|
||||||
let mut badges = self.badges.unwrap_or_else(|| 0);
|
|
||||||
if let Ok(id) = Ulid::from_string(&self.id) {
|
|
||||||
if id.datetime().timestamp_millis() < *EARLY_ADOPTER_BADGE {
|
|
||||||
badges = badges + Badges::EarlyAdopter;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
self.badges = Some(badges);
|
|
||||||
self
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Mutate the user object to appear as seen by user.
|
|
||||||
pub fn with(self, permissions: UserPermissions<[u32; 1]>) -> User {
|
|
||||||
let mut user = self.apply_badges();
|
|
||||||
|
|
||||||
if permissions.get_view_profile() {
|
|
||||||
user.online = Some(is_online(&user.id));
|
|
||||||
} else {
|
|
||||||
user.status = None;
|
|
||||||
}
|
|
||||||
|
|
||||||
// If the user's status is `Presence::Invisible`, return it as `Presence::Offline`
|
|
||||||
if let Some(status) = &user.status {
|
|
||||||
if let Some(presence) = &status.presence {
|
|
||||||
if presence == &Presence::Invisible {
|
|
||||||
user.status = None;
|
|
||||||
user.online = Some(false);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
user.profile = None;
|
|
||||||
user
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Mutate the user object to appear as seen by user.
|
|
||||||
/// Also overrides the relationship status.
|
|
||||||
pub async fn from_override(
|
|
||||||
mut self,
|
|
||||||
user: &User,
|
|
||||||
relationship: RelationshipStatus,
|
|
||||||
) -> Result<User> {
|
|
||||||
let permissions = PermissionCalculator::new(&user)
|
|
||||||
.with_relationship(&relationship)
|
|
||||||
.for_user(&self.id)
|
|
||||||
.await?;
|
|
||||||
|
|
||||||
self.relations = None;
|
|
||||||
self.relationship = Some(relationship);
|
|
||||||
Ok(self.with(permissions))
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Utility function for checking claimed usernames.
|
|
||||||
pub async fn is_username_taken(username: &str) -> Result<bool> {
|
|
||||||
if username.to_lowercase() == "revolt" || username.to_lowercase() == "admin" || username.to_lowercase() == "system" {
|
|
||||||
return Ok(true);
|
|
||||||
}
|
|
||||||
|
|
||||||
if get_collection("users")
|
|
||||||
.find_one(
|
|
||||||
doc! {
|
|
||||||
"username": username
|
|
||||||
},
|
|
||||||
FindOneOptions::builder()
|
|
||||||
.collation(Collation::builder().locale("en").strength(2).build())
|
|
||||||
.build(),
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "find_one",
|
|
||||||
with: "user",
|
|
||||||
})?
|
|
||||||
.is_some()
|
|
||||||
{
|
|
||||||
Ok(true)
|
|
||||||
} else {
|
|
||||||
Ok(false)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Utility function for fetching multiple users from the perspective of one.
|
|
||||||
/// Assumes user has a mutual connection with others.
|
|
||||||
pub async fn fetch_multiple_users(&self, user_ids: &Vec<String>) -> Result<Vec<User>> {
|
|
||||||
let mut users = vec![];
|
|
||||||
let mut cursor = get_collection("users")
|
|
||||||
.find(
|
|
||||||
doc! {
|
|
||||||
"_id": {
|
|
||||||
"$in": user_ids
|
|
||||||
}
|
|
||||||
},
|
|
||||||
FindOptions::builder()
|
|
||||||
.projection(
|
|
||||||
doc! { "_id": 1, "username": 1, "avatar": 1, "badges": 1, "status": 1, "flags": 1, "bot": 1 },
|
|
||||||
)
|
|
||||||
.build(),
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "find",
|
|
||||||
with: "users",
|
|
||||||
})?;
|
|
||||||
|
|
||||||
while let Some(result) = cursor.next().await {
|
|
||||||
if let Ok(doc) = result {
|
|
||||||
let other: User = from_document(doc).map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "from_document",
|
|
||||||
with: "user",
|
|
||||||
})?;
|
|
||||||
|
|
||||||
let permissions = PermissionCalculator::new(&self)
|
|
||||||
.with_mutual_connection()
|
|
||||||
.with_user(&other)
|
|
||||||
.for_user_given()
|
|
||||||
.await?;
|
|
||||||
|
|
||||||
users.push(other.from(&self).with(permissions));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Ok(users)
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Utility function to get all of a user's memberships.
|
|
||||||
pub async fn fetch_memberships(id: &str) -> Result<Vec<Member>> {
|
|
||||||
Ok(get_collection("server_members")
|
|
||||||
.find(
|
|
||||||
doc! {
|
|
||||||
"_id.user": id
|
|
||||||
},
|
|
||||||
None,
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "find",
|
|
||||||
with: "server_members",
|
|
||||||
})?
|
|
||||||
.filter_map(async move |s| s.ok())
|
|
||||||
.collect::<Vec<Document>>()
|
|
||||||
.await
|
|
||||||
.into_iter()
|
|
||||||
.filter_map(|x| {
|
|
||||||
from_document(x).ok()
|
|
||||||
})
|
|
||||||
.collect::<Vec<Member>>())
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Utility function to get all the server IDs the user is in.
|
|
||||||
pub async fn fetch_server_ids(id: &str) -> Result<Vec<String>> {
|
|
||||||
Ok(get_collection("server_members")
|
|
||||||
.find(
|
|
||||||
doc! {
|
|
||||||
"_id.user": id
|
|
||||||
},
|
|
||||||
None,
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "find",
|
|
||||||
with: "server_members",
|
|
||||||
})?
|
|
||||||
.filter_map(async move |s| s.ok())
|
|
||||||
.collect::<Vec<Document>>()
|
|
||||||
.await
|
|
||||||
.into_iter()
|
|
||||||
.filter_map(|x| {
|
|
||||||
x.get_document("_id")
|
|
||||||
.ok()
|
|
||||||
.map(|i| i.get_str("server").ok().map(|x| x.to_string()))
|
|
||||||
})
|
|
||||||
.flatten()
|
|
||||||
.collect::<Vec<String>>())
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Utility function to fetch unread objects for user.
|
|
||||||
pub async fn fetch_unreads(id: &str) -> Result<Vec<Document>> {
|
|
||||||
Ok(get_collection("channel_unreads")
|
|
||||||
.find(
|
|
||||||
doc! {
|
|
||||||
"_id.user": id
|
|
||||||
},
|
|
||||||
None,
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "find_one",
|
|
||||||
with: "user_settings",
|
|
||||||
})?
|
|
||||||
.filter_map(async move |s| s.ok())
|
|
||||||
.collect::<Vec<Document>>()
|
|
||||||
.await)
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Check if this user can acquire another server.
|
|
||||||
pub async fn can_acquire_server(id: &str) -> Result<bool> {
|
|
||||||
let server_ids = User::fetch_server_ids(&id).await?;
|
|
||||||
Ok(server_ids.len() < *MAX_SERVER_COUNT)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,4 +0,0 @@
|
|||||||
pub mod reference;
|
|
||||||
pub mod user;
|
|
||||||
|
|
||||||
pub use reference::Ref;
|
|
||||||
@@ -1,162 +0,0 @@
|
|||||||
use crate::database::*;
|
|
||||||
use crate::util::result::{Error, Result};
|
|
||||||
|
|
||||||
use mongodb::bson::{doc, from_document};
|
|
||||||
use rocket::request::FromParam;
|
|
||||||
use serde::{de::DeserializeOwned, Deserialize, Serialize};
|
|
||||||
use validator::Validate;
|
|
||||||
|
|
||||||
#[derive(Validate, Serialize, Deserialize)]
|
|
||||||
pub struct Ref {
|
|
||||||
#[validate(length(min = 1, max = 26))]
|
|
||||||
pub id: String,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl Ref {
|
|
||||||
pub fn from_unchecked(id: String) -> Ref {
|
|
||||||
Ref { id }
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn from(id: String) -> Result<Ref> {
|
|
||||||
let r = Ref { id };
|
|
||||||
r.validate()
|
|
||||||
.map_err(|error| Error::FailedValidation { error })?;
|
|
||||||
Ok(r)
|
|
||||||
}
|
|
||||||
|
|
||||||
async fn fetch<T: DeserializeOwned>(&self, collection: &'static str) -> Result<T> {
|
|
||||||
let doc = get_collection(&collection)
|
|
||||||
.find_one(
|
|
||||||
doc! {
|
|
||||||
"_id": &self.id
|
|
||||||
},
|
|
||||||
None,
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "find_one",
|
|
||||||
with: &collection,
|
|
||||||
})?
|
|
||||||
.ok_or_else(|| Error::NotFound)?;
|
|
||||||
|
|
||||||
Ok(from_document::<T>(doc).map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "from_document",
|
|
||||||
with: &collection,
|
|
||||||
})?)
|
|
||||||
}
|
|
||||||
|
|
||||||
pub async fn fetch_user(&self) -> Result<User> {
|
|
||||||
self.fetch("users").await
|
|
||||||
}
|
|
||||||
|
|
||||||
pub async fn fetch_channel(&self) -> Result<Channel> {
|
|
||||||
self.fetch("channels").await
|
|
||||||
}
|
|
||||||
|
|
||||||
pub async fn fetch_server(&self) -> Result<Server> {
|
|
||||||
self.fetch("servers").await
|
|
||||||
}
|
|
||||||
|
|
||||||
pub async fn fetch_invite(&self) -> Result<Invite> {
|
|
||||||
match self.fetch("channel_invites").await {
|
|
||||||
Ok(invite) => Ok(invite),
|
|
||||||
Err(err) => {
|
|
||||||
if let Ok(server) = self.fetch::<Server>("servers").await {
|
|
||||||
if server.discoverable {
|
|
||||||
return Ok(
|
|
||||||
Invite::Server {
|
|
||||||
code: server.id.clone(),
|
|
||||||
server: server.id,
|
|
||||||
creator: server.owner,
|
|
||||||
channel: server.channels[0].clone(),
|
|
||||||
}
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Err(err)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pub async fn fetch_bot(&self) -> Result<Bot> {
|
|
||||||
self.fetch("bots").await
|
|
||||||
}
|
|
||||||
|
|
||||||
pub async fn fetch_member(&self, server: &str) -> Result<Member> {
|
|
||||||
let doc = get_collection("server_members")
|
|
||||||
.find_one(
|
|
||||||
doc! {
|
|
||||||
"_id.user": &self.id,
|
|
||||||
"_id.server": server
|
|
||||||
},
|
|
||||||
None,
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "find_one",
|
|
||||||
with: "server_member",
|
|
||||||
})?
|
|
||||||
.ok_or_else(|| Error::NotFound)?;
|
|
||||||
|
|
||||||
Ok(
|
|
||||||
from_document::<Member>(doc).map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "from_document",
|
|
||||||
with: "server_member",
|
|
||||||
})?,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
pub async fn fetch_ban(&self, server: &str) -> Result<Ban> {
|
|
||||||
let doc = get_collection("server_bans")
|
|
||||||
.find_one(
|
|
||||||
doc! {
|
|
||||||
"_id.user": &self.id,
|
|
||||||
"_id.server": server
|
|
||||||
},
|
|
||||||
None,
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "find_one",
|
|
||||||
with: "server_ban",
|
|
||||||
})?
|
|
||||||
.ok_or_else(|| Error::NotFound)?;
|
|
||||||
|
|
||||||
Ok(from_document::<Ban>(doc).map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "from_document",
|
|
||||||
with: "server_ban",
|
|
||||||
})?)
|
|
||||||
}
|
|
||||||
|
|
||||||
pub async fn fetch_message(&self, channel: &Channel) -> Result<Message> {
|
|
||||||
let message: Message = self.fetch("messages").await?;
|
|
||||||
if &message.channel != channel.id() {
|
|
||||||
Err(Error::InvalidOperation)
|
|
||||||
} else {
|
|
||||||
Ok(message)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl User {
|
|
||||||
pub fn as_ref(&self) -> Ref {
|
|
||||||
Ref {
|
|
||||||
id: self.id.to_string(),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl<'r> FromParam<'r> for Ref {
|
|
||||||
type Error = &'r str;
|
|
||||||
|
|
||||||
fn from_param(param: &'r str) -> Result<Self, Self::Error> {
|
|
||||||
if let Ok(result) = Ref::from(param.to_string()) {
|
|
||||||
if result.validate().is_ok() {
|
|
||||||
return Ok(result);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Err(param)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,81 +0,0 @@
|
|||||||
use crate::database::*;
|
|
||||||
|
|
||||||
use mongodb::bson::{doc, from_document};
|
|
||||||
use rauth::entities::Session;
|
|
||||||
use rocket::http::Status;
|
|
||||||
use rocket::request::{self, FromRequest, Outcome, Request};
|
|
||||||
|
|
||||||
#[rocket::async_trait]
|
|
||||||
impl<'r> FromRequest<'r> for User {
|
|
||||||
type Error = rauth::util::Error;
|
|
||||||
|
|
||||||
async fn from_request(request: &'r Request<'_>) -> request::Outcome<Self, Self::Error> {
|
|
||||||
let user: &Option<User> = request.local_cache_async(async {
|
|
||||||
let header_bot_token = request
|
|
||||||
.headers()
|
|
||||||
.get("x-bot-token")
|
|
||||||
.next()
|
|
||||||
.map(|x| x.to_string());
|
|
||||||
|
|
||||||
if let Some(bot_token) = header_bot_token {
|
|
||||||
if let Ok(result) = get_collection("bots")
|
|
||||||
.find_one(
|
|
||||||
doc! {
|
|
||||||
"token": bot_token
|
|
||||||
},
|
|
||||||
None,
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
{
|
|
||||||
if let Some(doc) = result {
|
|
||||||
let id = doc.get_str("_id").unwrap();
|
|
||||||
if let Ok(result) = get_collection("users")
|
|
||||||
.find_one(
|
|
||||||
doc! {
|
|
||||||
"_id": &id
|
|
||||||
},
|
|
||||||
None,
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
{
|
|
||||||
if let Some(doc) = result {
|
|
||||||
if let Ok(user) = from_document(doc) {
|
|
||||||
return Some(user)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
if let Outcome::Success(session) = request.guard::<Session>().await {
|
|
||||||
if let Ok(result) = get_collection("users")
|
|
||||||
.find_one(
|
|
||||||
doc! {
|
|
||||||
"_id": &session.user_id
|
|
||||||
},
|
|
||||||
None,
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
{
|
|
||||||
if let Some(doc) = result {
|
|
||||||
if let Ok(user) = from_document(doc) {
|
|
||||||
return Some(user)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
None
|
|
||||||
}).await;
|
|
||||||
|
|
||||||
if let Some(user) = user {
|
|
||||||
Outcome::Success(user.clone())
|
|
||||||
} else {
|
|
||||||
Outcome::Failure((
|
|
||||||
Status::Forbidden,
|
|
||||||
rauth::util::Error::InvalidSession,
|
|
||||||
))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,188 +0,0 @@
|
|||||||
use super::super::get_db;
|
|
||||||
use super::scripts::LATEST_REVISION;
|
|
||||||
|
|
||||||
use log::info;
|
|
||||||
use mongodb::bson::doc;
|
|
||||||
use mongodb::options::CreateCollectionOptions;
|
|
||||||
|
|
||||||
pub async fn create_database() {
|
|
||||||
info!("Creating database.");
|
|
||||||
let db = get_db();
|
|
||||||
|
|
||||||
db.create_collection("accounts", None)
|
|
||||||
.await
|
|
||||||
.expect("Failed to create accounts collection.");
|
|
||||||
|
|
||||||
db.create_collection("users", None)
|
|
||||||
.await
|
|
||||||
.expect("Failed to create users collection.");
|
|
||||||
|
|
||||||
db.create_collection("channels", None)
|
|
||||||
.await
|
|
||||||
.expect("Failed to create channels collection.");
|
|
||||||
|
|
||||||
db.create_collection("messages", None)
|
|
||||||
.await
|
|
||||||
.expect("Failed to create messages collection.");
|
|
||||||
|
|
||||||
db.create_collection("servers", None)
|
|
||||||
.await
|
|
||||||
.expect("Failed to create servers collection.");
|
|
||||||
|
|
||||||
db.create_collection("server_members", None)
|
|
||||||
.await
|
|
||||||
.expect("Failed to create server_members collection.");
|
|
||||||
|
|
||||||
db.create_collection("server_bans", None)
|
|
||||||
.await
|
|
||||||
.expect("Failed to create server_bans collection.");
|
|
||||||
|
|
||||||
db.create_collection("channel_invites", None)
|
|
||||||
.await
|
|
||||||
.expect("Failed to create channel_invites collection.");
|
|
||||||
|
|
||||||
db.create_collection("channel_unreads", None)
|
|
||||||
.await
|
|
||||||
.expect("Failed to create channel_unreads collection.");
|
|
||||||
|
|
||||||
db.create_collection("migrations", None)
|
|
||||||
.await
|
|
||||||
.expect("Failed to create migrations collection.");
|
|
||||||
|
|
||||||
db.create_collection("attachments", None)
|
|
||||||
.await
|
|
||||||
.expect("Failed to create attachments collection.");
|
|
||||||
|
|
||||||
db.create_collection("user_settings", None)
|
|
||||||
.await
|
|
||||||
.expect("Failed to create user_settings collection.");
|
|
||||||
|
|
||||||
db.create_collection("bots", None)
|
|
||||||
.await
|
|
||||||
.expect("Failed to create bots collection.");
|
|
||||||
|
|
||||||
db.create_collection(
|
|
||||||
"pubsub",
|
|
||||||
CreateCollectionOptions::builder()
|
|
||||||
.capped(true)
|
|
||||||
.size(1_000_000)
|
|
||||||
.build(),
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.expect("Failed to create pubsub collection.");
|
|
||||||
|
|
||||||
db.run_command(
|
|
||||||
doc! {
|
|
||||||
"createIndexes": "users",
|
|
||||||
"indexes": [
|
|
||||||
{
|
|
||||||
"key": {
|
|
||||||
"username": 1
|
|
||||||
},
|
|
||||||
"name": "username",
|
|
||||||
"unique": true,
|
|
||||||
"collation": {
|
|
||||||
"locale": "en",
|
|
||||||
"strength": 2
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
None,
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.expect("Failed to create username index.");
|
|
||||||
|
|
||||||
db.run_command(
|
|
||||||
doc! {
|
|
||||||
"createIndexes": "messages",
|
|
||||||
"indexes": [
|
|
||||||
{
|
|
||||||
"key": {
|
|
||||||
"content": "text"
|
|
||||||
},
|
|
||||||
"name": "content"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"key": {
|
|
||||||
"channel": 1
|
|
||||||
},
|
|
||||||
"name": "channel"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"key": {
|
|
||||||
"channel": 1,
|
|
||||||
"_id": 1
|
|
||||||
},
|
|
||||||
"name": "channel_id_compound"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
None,
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.expect("Failed to create message index.");
|
|
||||||
|
|
||||||
get_db()
|
|
||||||
.run_command(
|
|
||||||
doc! {
|
|
||||||
"createIndexes": "channel_unreads",
|
|
||||||
"indexes": [
|
|
||||||
{
|
|
||||||
"key": {
|
|
||||||
"_id.channel": 1,
|
|
||||||
"_id.user": 1,
|
|
||||||
},
|
|
||||||
"name": "compound_id"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"key": {
|
|
||||||
"_id.user": 1,
|
|
||||||
},
|
|
||||||
"name": "user_id"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
None,
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.expect("Failed to create channel_unreads index.");
|
|
||||||
|
|
||||||
get_db()
|
|
||||||
.run_command(
|
|
||||||
doc! {
|
|
||||||
"createIndexes": "server_members",
|
|
||||||
"indexes": [
|
|
||||||
{
|
|
||||||
"key": {
|
|
||||||
"_id.server": 1,
|
|
||||||
"_id.user": 1,
|
|
||||||
},
|
|
||||||
"name": "compound_id"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"key": {
|
|
||||||
"_id.user": 1,
|
|
||||||
},
|
|
||||||
"name": "user_id"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
None,
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.expect("Failed to create server_members index.");
|
|
||||||
|
|
||||||
db.collection("migrations")
|
|
||||||
.insert_one(
|
|
||||||
doc! {
|
|
||||||
"_id": 0,
|
|
||||||
"revision": LATEST_REVISION
|
|
||||||
},
|
|
||||||
None,
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.expect("Failed to save migration info.");
|
|
||||||
|
|
||||||
info!("Created database.");
|
|
||||||
}
|
|
||||||
@@ -1,22 +0,0 @@
|
|||||||
use super::get_connection;
|
|
||||||
|
|
||||||
pub mod init;
|
|
||||||
pub mod scripts;
|
|
||||||
|
|
||||||
pub async fn run_migrations() {
|
|
||||||
let client = get_connection();
|
|
||||||
|
|
||||||
let list = client
|
|
||||||
.list_database_names(None, None)
|
|
||||||
.await
|
|
||||||
.expect("Failed to fetch database names.");
|
|
||||||
|
|
||||||
if list.iter().position(|x| x == "revolt").is_none() {
|
|
||||||
init::create_database().await;
|
|
||||||
} else {
|
|
||||||
scripts::migrate_database().await;
|
|
||||||
}
|
|
||||||
|
|
||||||
// panic!("https://pbs.twimg.com/media/EDTpB5JWwAUvyxd.jpg");
|
|
||||||
rauth::entities::sync_models(&super::get_db()).await;
|
|
||||||
}
|
|
||||||
@@ -1,474 +0,0 @@
|
|||||||
use crate::database::{permissions, get_collection, get_db, PermissionTuple};
|
|
||||||
|
|
||||||
use futures::StreamExt;
|
|
||||||
use log::info;
|
|
||||||
use mongodb::{bson::{Document, doc, from_bson, from_document, to_document}, options::FindOptions};
|
|
||||||
use serde::{Deserialize, Serialize};
|
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize)]
|
|
||||||
struct MigrationInfo {
|
|
||||||
_id: i32,
|
|
||||||
revision: i32,
|
|
||||||
}
|
|
||||||
|
|
||||||
pub const LATEST_REVISION: i32 = 13;
|
|
||||||
|
|
||||||
pub async fn migrate_database() {
|
|
||||||
let migrations = get_collection("migrations");
|
|
||||||
let data = migrations
|
|
||||||
.find_one(None, None)
|
|
||||||
.await
|
|
||||||
.expect("Failed to fetch migration data.");
|
|
||||||
|
|
||||||
if let Some(doc) = data {
|
|
||||||
let info: MigrationInfo =
|
|
||||||
from_document(doc).expect("Failed to read migration information.");
|
|
||||||
|
|
||||||
let revision = run_migrations(info.revision).await;
|
|
||||||
|
|
||||||
migrations
|
|
||||||
.update_one(
|
|
||||||
doc! {
|
|
||||||
"_id": info._id
|
|
||||||
},
|
|
||||||
doc! {
|
|
||||||
"$set": {
|
|
||||||
"revision": revision
|
|
||||||
}
|
|
||||||
},
|
|
||||||
None,
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.expect("Failed to commit migration information.");
|
|
||||||
|
|
||||||
info!("Migration complete. Currently at revision {}.", revision);
|
|
||||||
} else {
|
|
||||||
panic!("Database was configured incorrectly, possibly because initalization failed.")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pub async fn run_migrations(revision: i32) -> i32 {
|
|
||||||
info!("Starting database migration.");
|
|
||||||
|
|
||||||
if revision <= 0 {
|
|
||||||
info!("Running migration [revision 0]: Test migration system.");
|
|
||||||
}
|
|
||||||
|
|
||||||
if revision <= 1 {
|
|
||||||
info!("Running migration [revision 1 / 2021-04-24]: Migrate to Autumn v1.0.0.");
|
|
||||||
|
|
||||||
let messages = get_collection("messages");
|
|
||||||
let attachments = get_collection("attachments");
|
|
||||||
|
|
||||||
messages
|
|
||||||
.update_many(
|
|
||||||
doc! { "attachment": { "$exists": 1 } },
|
|
||||||
doc! { "$set": { "attachment.tag": "attachments", "attachment.size": 0 } },
|
|
||||||
None,
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.expect("Failed to update messages.");
|
|
||||||
|
|
||||||
attachments
|
|
||||||
.update_many(
|
|
||||||
doc! {},
|
|
||||||
doc! { "$set": { "tag": "attachments", "size": 0 } },
|
|
||||||
None,
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.expect("Failed to update attachments.");
|
|
||||||
}
|
|
||||||
|
|
||||||
if revision <= 2 {
|
|
||||||
info!("Running migration [revision 2 / 2021-05-08]: Add servers collection.");
|
|
||||||
|
|
||||||
get_db()
|
|
||||||
.create_collection("servers", None)
|
|
||||||
.await
|
|
||||||
.expect("Failed to create servers collection.");
|
|
||||||
}
|
|
||||||
|
|
||||||
if revision <= 3 {
|
|
||||||
info!("Running migration [revision 3 / 2021-05-25]: Support multiple file uploads, add channel_unreads and user_settings.");
|
|
||||||
|
|
||||||
let messages = get_collection("messages");
|
|
||||||
let mut cursor = messages
|
|
||||||
.find(
|
|
||||||
doc! {
|
|
||||||
"attachment": {
|
|
||||||
"$exists": 1
|
|
||||||
}
|
|
||||||
},
|
|
||||||
FindOptions::builder()
|
|
||||||
.projection(doc! {
|
|
||||||
"_id": 1,
|
|
||||||
"attachments": [ "$attachment" ]
|
|
||||||
})
|
|
||||||
.build(),
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.expect("Failed to fetch messages.");
|
|
||||||
|
|
||||||
while let Some(result) = cursor.next().await {
|
|
||||||
let doc = result.unwrap();
|
|
||||||
let id = doc.get_str("_id").unwrap();
|
|
||||||
let attachments = doc.get_array("attachments").unwrap();
|
|
||||||
|
|
||||||
messages
|
|
||||||
.update_one(
|
|
||||||
doc! { "_id": id },
|
|
||||||
doc! { "$unset": { "attachment": 1 }, "$set": { "attachments": attachments } },
|
|
||||||
None,
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.unwrap();
|
|
||||||
}
|
|
||||||
|
|
||||||
get_db()
|
|
||||||
.create_collection("channel_unreads", None)
|
|
||||||
.await
|
|
||||||
.expect("Failed to create channel_unreads collection.");
|
|
||||||
|
|
||||||
get_db()
|
|
||||||
.create_collection("user_settings", None)
|
|
||||||
.await
|
|
||||||
.expect("Failed to create user_settings collection.");
|
|
||||||
}
|
|
||||||
|
|
||||||
if revision <= 4 {
|
|
||||||
info!("Running migration [revision 4 / 2021-06-01]: Add more server collections.");
|
|
||||||
|
|
||||||
get_db()
|
|
||||||
.create_collection("server_members", None)
|
|
||||||
.await
|
|
||||||
.expect("Failed to create server_members collection.");
|
|
||||||
|
|
||||||
get_db()
|
|
||||||
.create_collection("server_bans", None)
|
|
||||||
.await
|
|
||||||
.expect("Failed to create server_bans collection.");
|
|
||||||
|
|
||||||
get_db()
|
|
||||||
.create_collection("channel_invites", None)
|
|
||||||
.await
|
|
||||||
.expect("Failed to create channel_invites collection.");
|
|
||||||
}
|
|
||||||
|
|
||||||
if revision <= 5 {
|
|
||||||
info!("Running migration [revision 5 / 2021-06-26]: Add permissions.");
|
|
||||||
|
|
||||||
#[derive(Serialize)]
|
|
||||||
struct Server {
|
|
||||||
pub default_permissions: PermissionTuple,
|
|
||||||
}
|
|
||||||
|
|
||||||
let server = Server {
|
|
||||||
default_permissions: (
|
|
||||||
*permissions::server::DEFAULT_PERMISSION as i32,
|
|
||||||
*permissions::channel::DEFAULT_PERMISSION_SERVER as i32
|
|
||||||
)
|
|
||||||
};
|
|
||||||
|
|
||||||
get_collection("servers")
|
|
||||||
.update_many(
|
|
||||||
doc! { },
|
|
||||||
doc! {
|
|
||||||
"$set": to_document(&server).unwrap()
|
|
||||||
},
|
|
||||||
None
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.expect("Failed to migrate servers.");
|
|
||||||
}
|
|
||||||
|
|
||||||
if revision <= 6 {
|
|
||||||
info!("Running migration [revision 6 / 2021-07-09]: Add message text index.");
|
|
||||||
|
|
||||||
get_db()
|
|
||||||
.run_command(
|
|
||||||
doc! {
|
|
||||||
"createIndexes": "messages",
|
|
||||||
"indexes": [
|
|
||||||
{
|
|
||||||
"key": {
|
|
||||||
"content": "text"
|
|
||||||
},
|
|
||||||
"name": "content"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
None,
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.expect("Failed to create message index.");
|
|
||||||
}
|
|
||||||
|
|
||||||
if revision <= 7 {
|
|
||||||
info!("Running migration [revision 7 / 2021-08-11]: Add message text index.");
|
|
||||||
|
|
||||||
get_db()
|
|
||||||
.create_collection("bots", None)
|
|
||||||
.await
|
|
||||||
.expect("Failed to create bots collection.");
|
|
||||||
}
|
|
||||||
|
|
||||||
if revision <= 8 {
|
|
||||||
info!("Running migration [revision 8 / 2021-09-10]: Update to rAuth version 1.");
|
|
||||||
|
|
||||||
get_db()
|
|
||||||
.run_command(
|
|
||||||
doc! {
|
|
||||||
"dropIndexes": "accounts",
|
|
||||||
"index": ["email", "email_normalised"]
|
|
||||||
},
|
|
||||||
None,
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.expect("Failed to delete legacy account indexes.");
|
|
||||||
|
|
||||||
let col = get_collection("sessions");
|
|
||||||
let mut cursor = get_collection("accounts")
|
|
||||||
.find(doc! { }, None)
|
|
||||||
.await
|
|
||||||
.unwrap();
|
|
||||||
|
|
||||||
while let Some(doc) = cursor.next().await {
|
|
||||||
if let Ok(account) = doc {
|
|
||||||
let id = account.get_str("_id").unwrap();
|
|
||||||
if let Some(sessions) = account.get("sessions") {
|
|
||||||
#[derive(Deserialize)]
|
|
||||||
struct Session {
|
|
||||||
id: String,
|
|
||||||
token: String,
|
|
||||||
friendly_name: String,
|
|
||||||
subscription: Option<Document>,
|
|
||||||
}
|
|
||||||
|
|
||||||
let sessions = from_bson::<Vec<Session>>(sessions.clone()).unwrap();
|
|
||||||
for session in sessions {
|
|
||||||
info!("Converting session {} to new format.", &session.id);
|
|
||||||
|
|
||||||
let mut doc = doc! {
|
|
||||||
"_id": session.id,
|
|
||||||
"token": session.token,
|
|
||||||
"user_id": id.clone(),
|
|
||||||
"name": session.friendly_name,
|
|
||||||
};
|
|
||||||
|
|
||||||
if let Some(sub) = session.subscription {
|
|
||||||
doc.insert("subscription", sub);
|
|
||||||
}
|
|
||||||
|
|
||||||
col.insert_one(doc, None).await.ok();
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
info!("Account doesn't have any sessions!");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
get_collection("accounts")
|
|
||||||
.update_many(
|
|
||||||
doc! { },
|
|
||||||
doc! {
|
|
||||||
"$unset": {
|
|
||||||
"sessions": 1,
|
|
||||||
},
|
|
||||||
"$set": {
|
|
||||||
"mfa": {
|
|
||||||
"recovery_codes": []
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
None
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.unwrap();
|
|
||||||
}
|
|
||||||
|
|
||||||
if revision <= 9 {
|
|
||||||
info!("Running migration [revision 9 / 2021-09-14]: Switch from last_message to last_message_id.");
|
|
||||||
|
|
||||||
let mut cursor = get_collection("channels")
|
|
||||||
.find(doc! { }, None)
|
|
||||||
.await
|
|
||||||
.unwrap();
|
|
||||||
|
|
||||||
while let Some(doc) = cursor.next().await {
|
|
||||||
if let Ok(channel) = doc {
|
|
||||||
let channel_id = channel.get_str("_id").unwrap();
|
|
||||||
if let Some(last_message) = channel.get("last_message") {
|
|
||||||
#[derive(Serialize, Deserialize, Debug, Clone)]
|
|
||||||
pub struct Obj {
|
|
||||||
#[serde(rename = "_id")]
|
|
||||||
id: String,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize, Debug, Clone)]
|
|
||||||
#[serde(untagged)]
|
|
||||||
pub enum LastMessage {
|
|
||||||
Obj(Obj),
|
|
||||||
Id(String)
|
|
||||||
}
|
|
||||||
|
|
||||||
let lm = from_bson::<LastMessage>(last_message.clone()).unwrap();
|
|
||||||
let id = match lm {
|
|
||||||
LastMessage::Obj(Obj { id }) => id,
|
|
||||||
LastMessage::Id(id) => id
|
|
||||||
};
|
|
||||||
|
|
||||||
info!("Converting session {} to new format.", &channel_id);
|
|
||||||
get_collection("channels")
|
|
||||||
.update_one(
|
|
||||||
doc! {
|
|
||||||
"_id": channel_id
|
|
||||||
},
|
|
||||||
doc! {
|
|
||||||
"$set": {
|
|
||||||
"last_message_id": id
|
|
||||||
},
|
|
||||||
"$unset": {
|
|
||||||
"last_message": 1,
|
|
||||||
}
|
|
||||||
},
|
|
||||||
None
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.unwrap();
|
|
||||||
} else {
|
|
||||||
info!("{} has no last_message.", &channel_id);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if revision <= 10 {
|
|
||||||
info!("Running migration [revision 10 / 2021-11-01]: Remove nonce values on channels and servers.");
|
|
||||||
|
|
||||||
get_collection("servers")
|
|
||||||
.update_many(
|
|
||||||
doc! {},
|
|
||||||
doc! {
|
|
||||||
"$unset": {
|
|
||||||
"nonce": 1,
|
|
||||||
}
|
|
||||||
},
|
|
||||||
None
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.unwrap();
|
|
||||||
|
|
||||||
get_collection("channels")
|
|
||||||
.update_many(
|
|
||||||
doc! {},
|
|
||||||
doc! {
|
|
||||||
"$unset": {
|
|
||||||
"nonce": 1,
|
|
||||||
}
|
|
||||||
},
|
|
||||||
None
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.unwrap();
|
|
||||||
}
|
|
||||||
|
|
||||||
if revision <= 11 {
|
|
||||||
info!("Running migration [revision 11 / 2021-11-14]: Add indexes to database.");
|
|
||||||
|
|
||||||
get_db()
|
|
||||||
.run_command(
|
|
||||||
doc! {
|
|
||||||
"createIndexes": "messages",
|
|
||||||
"indexes": [
|
|
||||||
{
|
|
||||||
"key": {
|
|
||||||
"channel": 1
|
|
||||||
},
|
|
||||||
"name": "channel"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
None,
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.expect("Failed to create message index.");
|
|
||||||
|
|
||||||
get_db()
|
|
||||||
.run_command(
|
|
||||||
doc! {
|
|
||||||
"createIndexes": "channel_unreads",
|
|
||||||
"indexes": [
|
|
||||||
{
|
|
||||||
"key": {
|
|
||||||
"_id.channel": 1,
|
|
||||||
"_id.user": 1,
|
|
||||||
},
|
|
||||||
"name": "compound_id"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"key": {
|
|
||||||
"_id.user": 1,
|
|
||||||
},
|
|
||||||
"name": "user_id"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
None,
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.expect("Failed to create channel_unreads index.");
|
|
||||||
|
|
||||||
get_db()
|
|
||||||
.run_command(
|
|
||||||
doc! {
|
|
||||||
"createIndexes": "server_members",
|
|
||||||
"indexes": [
|
|
||||||
{
|
|
||||||
"key": {
|
|
||||||
"_id.server": 1,
|
|
||||||
"_id.user": 1,
|
|
||||||
},
|
|
||||||
"name": "compound_id"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"key": {
|
|
||||||
"_id.user": 1,
|
|
||||||
},
|
|
||||||
"name": "user_id"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
None,
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.expect("Failed to create server_members index.");
|
|
||||||
}
|
|
||||||
|
|
||||||
if revision <= 12 {
|
|
||||||
info!("Running migration [revision 12 / 2021-11-21]: Add indexes to database.");
|
|
||||||
|
|
||||||
get_db()
|
|
||||||
.run_command(
|
|
||||||
doc! {
|
|
||||||
"createIndexes": "messages",
|
|
||||||
"indexes": [
|
|
||||||
{
|
|
||||||
"key": {
|
|
||||||
"channel": 1,
|
|
||||||
"_id": 1
|
|
||||||
},
|
|
||||||
"name": "channel_id_compound"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
None,
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.expect("Failed to create message index.");
|
|
||||||
}
|
|
||||||
|
|
||||||
// Need to migrate fields on attachments, change `user_id`, `object_id`, etc to `parent`.
|
|
||||||
|
|
||||||
// Reminder to update LATEST_REVISION when adding new migrations.
|
|
||||||
LATEST_REVISION
|
|
||||||
}
|
|
||||||
@@ -1,36 +0,0 @@
|
|||||||
use crate::util::variables::MONGO_URI;
|
|
||||||
|
|
||||||
use mongodb::{Client, Collection, Database};
|
|
||||||
use once_cell::sync::OnceCell;
|
|
||||||
|
|
||||||
static DBCONN: OnceCell<Client> = OnceCell::new();
|
|
||||||
|
|
||||||
pub async fn connect() {
|
|
||||||
let client = Client::with_uri_str(&MONGO_URI)
|
|
||||||
.await
|
|
||||||
.expect("Failed to init db connection.");
|
|
||||||
|
|
||||||
DBCONN.set(client).unwrap();
|
|
||||||
migrations::run_migrations().await;
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn get_connection() -> &'static Client {
|
|
||||||
DBCONN.get().unwrap()
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn get_db() -> Database {
|
|
||||||
get_connection().database("revolt")
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn get_collection(collection: &str) -> Collection {
|
|
||||||
get_db().collection(collection)
|
|
||||||
}
|
|
||||||
|
|
||||||
pub mod entities;
|
|
||||||
pub mod guards;
|
|
||||||
pub mod migrations;
|
|
||||||
pub mod permissions;
|
|
||||||
|
|
||||||
pub use entities::*;
|
|
||||||
pub use guards::*;
|
|
||||||
pub use permissions::*;
|
|
||||||
@@ -1,159 +0,0 @@
|
|||||||
use crate::database::*;
|
|
||||||
use crate::util::result::{Error, Result};
|
|
||||||
|
|
||||||
use super::PermissionCalculator;
|
|
||||||
|
|
||||||
use num_enum::TryFromPrimitive;
|
|
||||||
use std::ops;
|
|
||||||
|
|
||||||
#[derive(Debug, PartialEq, Eq, TryFromPrimitive, Copy, Clone)]
|
|
||||||
#[repr(u32)]
|
|
||||||
pub enum ChannelPermission {
|
|
||||||
View = 0b00000000000000000000000000000001, // 1
|
|
||||||
SendMessage = 0b00000000000000000000000000000010, // 2
|
|
||||||
ManageMessages = 0b00000000000000000000000000000100, // 4
|
|
||||||
ManageChannel = 0b00000000000000000000000000001000, // 8
|
|
||||||
VoiceCall = 0b00000000000000000000000000010000, // 16
|
|
||||||
InviteOthers = 0b00000000000000000000000000100000, // 32
|
|
||||||
EmbedLinks = 0b00000000000000000000000001000000, // 64
|
|
||||||
UploadFiles = 0b00000000000000000000000010000000, // 128
|
|
||||||
Masquerade = 0b00000000000000000000000100000000, // 256
|
|
||||||
}
|
|
||||||
|
|
||||||
lazy_static! {
|
|
||||||
pub static ref DEFAULT_PERMISSION_DM: u32 =
|
|
||||||
ChannelPermission::View
|
|
||||||
+ ChannelPermission::SendMessage
|
|
||||||
+ ChannelPermission::ManageChannel
|
|
||||||
+ ChannelPermission::VoiceCall
|
|
||||||
+ ChannelPermission::InviteOthers
|
|
||||||
+ ChannelPermission::EmbedLinks
|
|
||||||
+ ChannelPermission::UploadFiles
|
|
||||||
+ ChannelPermission::Masquerade;
|
|
||||||
|
|
||||||
pub static ref DEFAULT_PERMISSION_SERVER: u32 =
|
|
||||||
ChannelPermission::View
|
|
||||||
+ ChannelPermission::SendMessage
|
|
||||||
+ ChannelPermission::VoiceCall
|
|
||||||
+ ChannelPermission::InviteOthers
|
|
||||||
+ ChannelPermission::EmbedLinks
|
|
||||||
+ ChannelPermission::UploadFiles;
|
|
||||||
}
|
|
||||||
|
|
||||||
impl_op_ex!(+ |a: &ChannelPermission, b: &ChannelPermission| -> u32 { *a as u32 | *b as u32 });
|
|
||||||
impl_op_ex_commutative!(+ |a: &u32, b: &ChannelPermission| -> u32 { *a | *b as u32 });
|
|
||||||
|
|
||||||
bitfield! {
|
|
||||||
pub struct ChannelPermissions(MSB0 [u32]);
|
|
||||||
u32;
|
|
||||||
pub get_view, _: 31;
|
|
||||||
pub get_send_message, _: 30;
|
|
||||||
pub get_manage_messages, _: 29;
|
|
||||||
pub get_manage_channel, _: 28;
|
|
||||||
pub get_voice_call, _: 27;
|
|
||||||
pub get_invite_others, _: 26;
|
|
||||||
pub get_embed_links, _: 25;
|
|
||||||
pub get_upload_files, _: 24;
|
|
||||||
pub get_masquerade, _: 23;
|
|
||||||
}
|
|
||||||
|
|
||||||
impl<'a> PermissionCalculator<'a> {
|
|
||||||
pub async fn calculate_channel(self) -> Result<u32> {
|
|
||||||
let channel = if let Some(channel) = self.channel {
|
|
||||||
channel
|
|
||||||
} else {
|
|
||||||
unreachable!()
|
|
||||||
};
|
|
||||||
|
|
||||||
match channel {
|
|
||||||
Channel::SavedMessages { user: owner, .. } => {
|
|
||||||
if &self.perspective.id == owner {
|
|
||||||
Ok(u32::MAX)
|
|
||||||
} else {
|
|
||||||
Ok(0)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Channel::DirectMessage { recipients, .. } => {
|
|
||||||
if recipients
|
|
||||||
.iter()
|
|
||||||
.find(|x| *x == &self.perspective.id)
|
|
||||||
.is_some()
|
|
||||||
{
|
|
||||||
if let Some(recipient) = recipients.iter().find(|x| *x != &self.perspective.id)
|
|
||||||
{
|
|
||||||
let perms = self.for_user(recipient).await?;
|
|
||||||
|
|
||||||
if perms.get_send_message() {
|
|
||||||
return Ok(*DEFAULT_PERMISSION_DM);
|
|
||||||
}
|
|
||||||
|
|
||||||
return Ok(ChannelPermission::View as u32);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Ok(0)
|
|
||||||
}
|
|
||||||
Channel::Group { recipients, permissions, owner, .. } => {
|
|
||||||
if &self.perspective.id == owner {
|
|
||||||
return Ok(*DEFAULT_PERMISSION_DM)
|
|
||||||
}
|
|
||||||
|
|
||||||
if recipients
|
|
||||||
.iter()
|
|
||||||
.find(|x| *x == &self.perspective.id)
|
|
||||||
.is_some()
|
|
||||||
{
|
|
||||||
if let Some(permissions) = permissions {
|
|
||||||
Ok(permissions.clone() as u32)
|
|
||||||
} else {
|
|
||||||
Ok(*DEFAULT_PERMISSION_DM)
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
Ok(0)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Channel::TextChannel { server, default_permissions, role_permissions, .. }
|
|
||||||
| Channel::VoiceChannel { server, default_permissions, role_permissions, .. } => {
|
|
||||||
let server = Ref::from_unchecked(server.clone()).fetch_server().await?;
|
|
||||||
|
|
||||||
if self.perspective.id == server.owner {
|
|
||||||
Ok(u32::MAX)
|
|
||||||
} else {
|
|
||||||
match Ref::from_unchecked(self.perspective.id.clone()).fetch_member(&server.id).await {
|
|
||||||
Ok(member) => {
|
|
||||||
let mut perm = if let Some(permission) = default_permissions {
|
|
||||||
*permission as u32
|
|
||||||
} else {
|
|
||||||
server.default_permissions.1 as u32
|
|
||||||
};
|
|
||||||
|
|
||||||
if let Some(roles) = member.roles {
|
|
||||||
for role in roles {
|
|
||||||
if let Some(permission) = role_permissions.get(&role) {
|
|
||||||
perm |= *permission as u32;
|
|
||||||
}
|
|
||||||
|
|
||||||
if let Some(server_role) = server.roles.get(&role) {
|
|
||||||
perm |= server_role.permissions.1 as u32;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Ok(perm)
|
|
||||||
}
|
|
||||||
Err(error) => {
|
|
||||||
match &error {
|
|
||||||
Error::NotFound => Ok(0),
|
|
||||||
_ => Err(error)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pub async fn for_channel(self) -> Result<ChannelPermissions<[u32; 1]>> {
|
|
||||||
Ok(ChannelPermissions([self.calculate_channel().await?]))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,77 +0,0 @@
|
|||||||
pub use crate::database::*;
|
|
||||||
|
|
||||||
pub mod channel;
|
|
||||||
pub mod server;
|
|
||||||
pub mod user;
|
|
||||||
|
|
||||||
pub use user::get_relationship;
|
|
||||||
|
|
||||||
pub struct PermissionCalculator<'a> {
|
|
||||||
perspective: &'a User,
|
|
||||||
|
|
||||||
user: Option<&'a User>,
|
|
||||||
relationship: Option<&'a RelationshipStatus>,
|
|
||||||
channel: Option<&'a Channel>,
|
|
||||||
server: Option<&'a Server>,
|
|
||||||
// member: Option<&'a Member>,
|
|
||||||
|
|
||||||
has_mutual_connection: bool,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl<'a> PermissionCalculator<'a> {
|
|
||||||
pub fn new(perspective: &'a User) -> PermissionCalculator {
|
|
||||||
PermissionCalculator {
|
|
||||||
perspective,
|
|
||||||
|
|
||||||
user: None,
|
|
||||||
relationship: None,
|
|
||||||
channel: None,
|
|
||||||
server: None,
|
|
||||||
// member: None,
|
|
||||||
|
|
||||||
has_mutual_connection: false,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn with_user(self, user: &'a User) -> PermissionCalculator {
|
|
||||||
PermissionCalculator {
|
|
||||||
user: Some(&user),
|
|
||||||
..self
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn with_relationship(self, relationship: &'a RelationshipStatus) -> PermissionCalculator {
|
|
||||||
PermissionCalculator {
|
|
||||||
relationship: Some(&relationship),
|
|
||||||
..self
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn with_channel(self, channel: &'a Channel) -> PermissionCalculator {
|
|
||||||
PermissionCalculator {
|
|
||||||
channel: Some(&channel),
|
|
||||||
..self
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn with_server(self, server: &'a Server) -> PermissionCalculator {
|
|
||||||
PermissionCalculator {
|
|
||||||
server: Some(&server),
|
|
||||||
..self
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* pub fn with_member(self, member: &'a Member) -> PermissionCalculator {
|
|
||||||
PermissionCalculator {
|
|
||||||
member: Some(&member),
|
|
||||||
..self
|
|
||||||
}
|
|
||||||
} */
|
|
||||||
|
|
||||||
pub fn with_mutual_connection(self) -> PermissionCalculator<'a> {
|
|
||||||
PermissionCalculator {
|
|
||||||
has_mutual_connection: true,
|
|
||||||
..self
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,89 +0,0 @@
|
|||||||
use crate::util::result::{Error, Result};
|
|
||||||
|
|
||||||
use super::PermissionCalculator;
|
|
||||||
use super::Ref;
|
|
||||||
|
|
||||||
use num_enum::TryFromPrimitive;
|
|
||||||
use std::ops;
|
|
||||||
|
|
||||||
#[derive(Debug, PartialEq, Eq, TryFromPrimitive, Copy, Clone)]
|
|
||||||
#[repr(u32)]
|
|
||||||
pub enum ServerPermission {
|
|
||||||
View = 0b00000000000000000000000000000001, // 1
|
|
||||||
ManageRoles = 0b00000000000000000000000000000010, // 2
|
|
||||||
ManageChannels = 0b00000000000000000000000000000100, // 4
|
|
||||||
ManageServer = 0b00000000000000000000000000001000, // 8
|
|
||||||
KickMembers = 0b00000000000000000000000000010000, // 16
|
|
||||||
BanMembers = 0b00000000000000000000000000100000, // 32
|
|
||||||
// 6 bits of space
|
|
||||||
ChangeNickname = 0b00000000000000000001000000000000, // 4096
|
|
||||||
ManageNicknames = 0b00000000000000000010000000000000, // 8192
|
|
||||||
ChangeAvatar = 0b00000000000000000100000000000000, // 16382
|
|
||||||
RemoveAvatars = 0b00000000000000001000000000000000, // 32768
|
|
||||||
// 16 bits of space
|
|
||||||
}
|
|
||||||
|
|
||||||
lazy_static! {
|
|
||||||
pub static ref DEFAULT_PERMISSION: u32 =
|
|
||||||
ServerPermission::View
|
|
||||||
+ ServerPermission::ChangeNickname
|
|
||||||
+ ServerPermission::ChangeAvatar;
|
|
||||||
}
|
|
||||||
|
|
||||||
impl_op_ex!(+ |a: &ServerPermission, b: &ServerPermission| -> u32 { *a as u32 | *b as u32 });
|
|
||||||
impl_op_ex_commutative!(+ |a: &u32, b: &ServerPermission| -> u32 { *a | *b as u32 });
|
|
||||||
|
|
||||||
bitfield! {
|
|
||||||
pub struct ServerPermissions(MSB0 [u32]);
|
|
||||||
u32;
|
|
||||||
pub get_view, _: 31;
|
|
||||||
pub get_manage_roles, _: 30;
|
|
||||||
pub get_manage_channels, _: 29;
|
|
||||||
pub get_manage_server, _: 28;
|
|
||||||
pub get_kick_members, _: 27;
|
|
||||||
pub get_ban_members, _: 26;
|
|
||||||
|
|
||||||
pub get_change_nickname, _: 19;
|
|
||||||
pub get_manage_nicknames, _: 18;
|
|
||||||
pub get_change_avatar, _: 17;
|
|
||||||
pub get_remove_avatars, _: 16;
|
|
||||||
}
|
|
||||||
|
|
||||||
impl<'a> PermissionCalculator<'a> {
|
|
||||||
pub async fn calculate_server(self) -> Result<u32> {
|
|
||||||
let server = if let Some(server) = self.server {
|
|
||||||
server
|
|
||||||
} else {
|
|
||||||
unreachable!()
|
|
||||||
};
|
|
||||||
|
|
||||||
if self.perspective.id == server.owner {
|
|
||||||
Ok(u32::MAX)
|
|
||||||
} else {
|
|
||||||
match Ref::from_unchecked(self.perspective.id.clone()).fetch_member(&server.id).await {
|
|
||||||
Ok(member) => {
|
|
||||||
let mut perm = server.default_permissions.0 as u32;
|
|
||||||
if let Some(roles) = member.roles {
|
|
||||||
for role in roles {
|
|
||||||
if let Some(server_role) = server.roles.get(&role) {
|
|
||||||
perm |= server_role.permissions.0 as u32;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Ok(perm)
|
|
||||||
}
|
|
||||||
Err(error) => {
|
|
||||||
match &error {
|
|
||||||
Error::NotFound => Ok(0),
|
|
||||||
_ => Err(error)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pub async fn for_server(self) -> Result<ServerPermissions<[u32; 1]>> {
|
|
||||||
Ok(ServerPermissions([self.calculate_server().await?]))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,131 +0,0 @@
|
|||||||
use crate::database::*;
|
|
||||||
use crate::util::result::{Error, Result};
|
|
||||||
|
|
||||||
use super::PermissionCalculator;
|
|
||||||
|
|
||||||
use mongodb::bson::doc;
|
|
||||||
use num_enum::TryFromPrimitive;
|
|
||||||
use std::ops;
|
|
||||||
|
|
||||||
#[derive(Debug, PartialEq, Eq, TryFromPrimitive, Copy, Clone)]
|
|
||||||
#[repr(u32)]
|
|
||||||
pub enum UserPermission {
|
|
||||||
Access = 0b00000000000000000000000000000001, // 1
|
|
||||||
ViewProfile = 0b00000000000000000000000000000010, // 2
|
|
||||||
SendMessage = 0b00000000000000000000000000000100, // 4
|
|
||||||
Invite = 0b00000000000000000000000000001000, // 8
|
|
||||||
}
|
|
||||||
|
|
||||||
bitfield! {
|
|
||||||
pub struct UserPermissions(MSB0 [u32]);
|
|
||||||
u32;
|
|
||||||
pub get_access, _: 31;
|
|
||||||
pub get_view_profile, _: 30;
|
|
||||||
pub get_send_message, _: 29;
|
|
||||||
pub get_invite, _: 28;
|
|
||||||
}
|
|
||||||
|
|
||||||
impl_op_ex!(+ |a: &UserPermission, b: &UserPermission| -> u32 { *a as u32 | *b as u32 });
|
|
||||||
impl_op_ex_commutative!(+ |a: &u32, b: &UserPermission| -> u32 { *a | *b as u32 });
|
|
||||||
|
|
||||||
pub fn get_relationship(a: &User, b: &str) -> RelationshipStatus {
|
|
||||||
if a.id == b {
|
|
||||||
return RelationshipStatus::User;
|
|
||||||
}
|
|
||||||
|
|
||||||
if let Some(relations) = &a.relations {
|
|
||||||
if let Some(relationship) = relations.iter().find(|x| x.id == b) {
|
|
||||||
return relationship.status.clone();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
RelationshipStatus::None
|
|
||||||
}
|
|
||||||
|
|
||||||
impl<'a> PermissionCalculator<'a> {
|
|
||||||
pub async fn calculate_user(self, target: &str) -> Result<u32> {
|
|
||||||
if &self.perspective.id == target {
|
|
||||||
return Ok(u32::MAX);
|
|
||||||
}
|
|
||||||
|
|
||||||
let mut permissions: u32 = 0;
|
|
||||||
match self
|
|
||||||
.relationship
|
|
||||||
.clone()
|
|
||||||
.map(|v| v.to_owned())
|
|
||||||
.unwrap_or_else(|| get_relationship(&self.perspective, &target))
|
|
||||||
{
|
|
||||||
RelationshipStatus::Friend | RelationshipStatus::User => return Ok(u32::MAX),
|
|
||||||
RelationshipStatus::Blocked | RelationshipStatus::BlockedOther => {
|
|
||||||
return Ok(UserPermission::Access as u32)
|
|
||||||
}
|
|
||||||
RelationshipStatus::Incoming | RelationshipStatus::Outgoing => {
|
|
||||||
permissions = UserPermission::Access as u32;
|
|
||||||
// ! INFO: if we add boolean switch for permission to
|
|
||||||
// ! message people who have mutual, we need to get
|
|
||||||
// ! rid of this return statement.
|
|
||||||
// return Ok(permissions);
|
|
||||||
}
|
|
||||||
_ => {}
|
|
||||||
}
|
|
||||||
|
|
||||||
let check_server_overlap = async || {
|
|
||||||
let server_ids = User::fetch_server_ids(&self.perspective.id).await?;
|
|
||||||
|
|
||||||
Ok(
|
|
||||||
get_collection("server_members")
|
|
||||||
.find_one(
|
|
||||||
doc! {
|
|
||||||
"_id.user": &target,
|
|
||||||
"_id.server": {
|
|
||||||
"$in": server_ids
|
|
||||||
}
|
|
||||||
},
|
|
||||||
None
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "find_one",
|
|
||||||
with: "server_members",
|
|
||||||
})?
|
|
||||||
.is_some()
|
|
||||||
)
|
|
||||||
};
|
|
||||||
|
|
||||||
if self.has_mutual_connection
|
|
||||||
|| check_server_overlap().await?
|
|
||||||
|| get_collection("channels")
|
|
||||||
.find_one(
|
|
||||||
doc! {
|
|
||||||
"channel_type": {
|
|
||||||
"$in": ["Group", "DirectMessage"]
|
|
||||||
},
|
|
||||||
"recipients": {
|
|
||||||
"$all": [ &self.perspective.id, target ]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
None,
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "find_one",
|
|
||||||
with: "channels",
|
|
||||||
})?
|
|
||||||
.is_some()
|
|
||||||
{
|
|
||||||
// ! FIXME: add privacy settings
|
|
||||||
return Ok(UserPermission::Access + UserPermission::ViewProfile);
|
|
||||||
}
|
|
||||||
|
|
||||||
Ok(permissions)
|
|
||||||
}
|
|
||||||
|
|
||||||
pub async fn for_user(self, target: &str) -> Result<UserPermissions<[u32; 1]>> {
|
|
||||||
Ok(UserPermissions([self.calculate_user(&target).await?]))
|
|
||||||
}
|
|
||||||
|
|
||||||
pub async fn for_user_given(self) -> Result<UserPermissions<[u32; 1]>> {
|
|
||||||
let id = &self.user.unwrap().id;
|
|
||||||
Ok(UserPermissions([self.calculate_user(&id).await?]))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
40
src/main.rs
40
src/main.rs
@@ -14,13 +14,13 @@ extern crate impl_ops;
|
|||||||
extern crate bitfield;
|
extern crate bitfield;
|
||||||
extern crate ctrlc;
|
extern crate ctrlc;
|
||||||
|
|
||||||
pub mod database;
|
//pub mod database;
|
||||||
pub mod notifications;
|
//pub mod notifications;
|
||||||
pub mod routes;
|
pub mod routes;
|
||||||
pub mod redis;
|
//pub mod redis;
|
||||||
pub mod util;
|
pub mod util;
|
||||||
pub mod version;
|
pub mod version;
|
||||||
pub mod task_queue;
|
//pub mod task_queue;
|
||||||
|
|
||||||
use async_std::task;
|
use async_std::task;
|
||||||
use futures::join;
|
use futures::join;
|
||||||
@@ -31,11 +31,11 @@ use rauth::{
|
|||||||
};
|
};
|
||||||
use std::str::FromStr;
|
use std::str::FromStr;
|
||||||
use rocket_cors::AllowedOrigins;
|
use rocket_cors::AllowedOrigins;
|
||||||
use util::variables::{
|
/*use util::variables::{
|
||||||
APP_URL, HCAPTCHA_KEY, INVITE_ONLY, SMTP_FROM, SMTP_HOST, SMTP_PASSWORD, SMTP_USERNAME,
|
APP_URL, HCAPTCHA_KEY, INVITE_ONLY, SMTP_FROM, SMTP_HOST, SMTP_PASSWORD, SMTP_USERNAME,
|
||||||
USE_EMAIL, USE_HCAPTCHA,
|
USE_EMAIL, USE_HCAPTCHA,
|
||||||
};
|
};
|
||||||
use crate::util::ratelimit::RatelimitState;
|
use crate::util::ratelimit::RatelimitState;*/
|
||||||
|
|
||||||
#[async_std::main]
|
#[async_std::main]
|
||||||
async fn main() {
|
async fn main() {
|
||||||
@@ -47,11 +47,11 @@ async fn main() {
|
|||||||
crate::version::VERSION
|
crate::version::VERSION
|
||||||
);
|
);
|
||||||
|
|
||||||
util::variables::preflight_checks();
|
/*util::variables::preflight_checks();
|
||||||
database::connect().await;
|
database::connect().await;
|
||||||
redis::connect().await;
|
redis::connect().await;
|
||||||
notifications::hive::init_hive().await;
|
notifications::hive::init_hive().await;
|
||||||
task_queue::start_queues().await;
|
task_queue::start_queues().await;*/
|
||||||
|
|
||||||
ctrlc::set_handler(move || {
|
ctrlc::set_handler(move || {
|
||||||
// Force ungraceful exit to avoid hang.
|
// Force ungraceful exit to avoid hang.
|
||||||
@@ -60,12 +60,12 @@ async fn main() {
|
|||||||
.expect("Error setting Ctrl-C handler");
|
.expect("Error setting Ctrl-C handler");
|
||||||
|
|
||||||
let web_task = task::spawn(launch_web());
|
let web_task = task::spawn(launch_web());
|
||||||
let hive_task = task::spawn_local(notifications::hive::listen());
|
//let hive_task = task::spawn_local(notifications::hive::listen());
|
||||||
|
|
||||||
join!(
|
join!(
|
||||||
web_task,
|
web_task,
|
||||||
hive_task,
|
//hive_task,
|
||||||
notifications::websocket::launch_server()
|
//notifications::websocket::launch_server()
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -84,7 +84,7 @@ async fn launch_web() {
|
|||||||
.expect("Failed to create CORS.");
|
.expect("Failed to create CORS.");
|
||||||
|
|
||||||
let mut config = Config {
|
let mut config = Config {
|
||||||
email_verification: if *USE_EMAIL {
|
email_verification: /*if *USE_EMAIL {
|
||||||
EmailVerification::Enabled {
|
EmailVerification::Enabled {
|
||||||
smtp: SMTPSettings {
|
smtp: SMTPSettings {
|
||||||
from: (*SMTP_FROM).to_string(),
|
from: (*SMTP_FROM).to_string(),
|
||||||
@@ -114,11 +114,11 @@ async fn launch_web() {
|
|||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
EmailVerification::Disabled
|
EmailVerification::Disabled
|
||||||
},
|
},*/ EmailVerification::Disabled,
|
||||||
..Default::default()
|
..Default::default()
|
||||||
};
|
};
|
||||||
|
|
||||||
if *INVITE_ONLY {
|
/*if *INVITE_ONLY {
|
||||||
config.invite_only = true;
|
config.invite_only = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -126,17 +126,17 @@ async fn launch_web() {
|
|||||||
config.captcha = Captcha::HCaptcha {
|
config.captcha = Captcha::HCaptcha {
|
||||||
secret: HCAPTCHA_KEY.clone(),
|
secret: HCAPTCHA_KEY.clone(),
|
||||||
};
|
};
|
||||||
}
|
}*/
|
||||||
|
|
||||||
let auth = Auth::new(database::get_db(), config);
|
//let auth = Auth::new(database::get_db(), config);
|
||||||
let rocket = rocket::build();
|
let rocket = rocket::build();
|
||||||
routes::mount(rocket)
|
routes::mount(rocket)
|
||||||
.mount("/", rocket_cors::catch_all_options_routes())
|
.mount("/", rocket_cors::catch_all_options_routes())
|
||||||
.mount("/auth/account", rauth::web::account::routes())
|
//.mount("/auth/account", rauth::web::account::routes())
|
||||||
.mount("/auth/session", rauth::web::session::routes())
|
//.mount("/auth/session", rauth::web::session::routes())
|
||||||
.manage(auth)
|
//.manage(auth)
|
||||||
.manage(cors.clone())
|
.manage(cors.clone())
|
||||||
.manage(RatelimitState::new())
|
//.manage(RatelimitState::new())
|
||||||
.attach(cors)
|
.attach(cors)
|
||||||
.launch()
|
.launch()
|
||||||
.await
|
.await
|
||||||
|
|||||||
@@ -1,281 +0,0 @@
|
|||||||
use hive_pubsub::PubSub;
|
|
||||||
use mongodb::bson::doc;
|
|
||||||
use rocket::serde::json::Value;
|
|
||||||
use serde::{Deserialize, Serialize};
|
|
||||||
|
|
||||||
use super::hive::{get_hive, subscribe_if_exists};
|
|
||||||
use crate::{database::*, util::result::Result};
|
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize, Debug, Clone)]
|
|
||||||
#[serde(tag = "error")]
|
|
||||||
pub enum WebSocketError {
|
|
||||||
LabelMe,
|
|
||||||
InternalError { at: String },
|
|
||||||
InvalidSession,
|
|
||||||
OnboardingNotFinished,
|
|
||||||
AlreadyAuthenticated,
|
|
||||||
MalformedData { msg: String },
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Deserialize, Debug)]
|
|
||||||
pub struct Auth {
|
|
||||||
pub token: String,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize, Debug, Clone)]
|
|
||||||
#[serde(untagged)]
|
|
||||||
pub enum Ping {
|
|
||||||
Binary(Vec<u8>),
|
|
||||||
Number(usize)
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Deserialize, Debug)]
|
|
||||||
#[serde(tag = "type")]
|
|
||||||
pub enum ServerboundNotification {
|
|
||||||
Authenticate(Auth),
|
|
||||||
BeginTyping { channel: String },
|
|
||||||
EndTyping { channel: String },
|
|
||||||
Ping { data: Ping, responded: Option<()> },
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize, Debug, Clone)]
|
|
||||||
pub enum RemoveUserField {
|
|
||||||
ProfileContent,
|
|
||||||
ProfileBackground,
|
|
||||||
StatusText,
|
|
||||||
Avatar,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize, Debug, Clone)]
|
|
||||||
pub enum RemoveChannelField {
|
|
||||||
Icon,
|
|
||||||
Description,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize, Debug, Clone)]
|
|
||||||
pub enum RemoveServerField {
|
|
||||||
Icon,
|
|
||||||
Banner,
|
|
||||||
Description,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize, Debug, Clone)]
|
|
||||||
pub enum RemoveRoleField {
|
|
||||||
Colour,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize, Debug, Clone)]
|
|
||||||
pub enum RemoveMemberField {
|
|
||||||
Nickname,
|
|
||||||
Avatar,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize, Debug, Clone)]
|
|
||||||
pub enum RemoveBotField {
|
|
||||||
InteractionsURL,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize, Debug, Clone)]
|
|
||||||
#[serde(tag = "type")]
|
|
||||||
pub enum ClientboundNotification {
|
|
||||||
Error(WebSocketError),
|
|
||||||
Authenticated,
|
|
||||||
Ready {
|
|
||||||
users: Vec<User>,
|
|
||||||
servers: Vec<Server>,
|
|
||||||
channels: Vec<Channel>,
|
|
||||||
members: Vec<Member>,
|
|
||||||
},
|
|
||||||
Pong { data: Ping },
|
|
||||||
|
|
||||||
Message(Message),
|
|
||||||
MessageUpdate {
|
|
||||||
id: String,
|
|
||||||
channel: String,
|
|
||||||
data: Value,
|
|
||||||
},
|
|
||||||
MessageDelete {
|
|
||||||
id: String,
|
|
||||||
channel: String,
|
|
||||||
},
|
|
||||||
|
|
||||||
ChannelCreate(Channel),
|
|
||||||
ChannelUpdate {
|
|
||||||
id: String,
|
|
||||||
data: Value,
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
clear: Option<RemoveChannelField>,
|
|
||||||
},
|
|
||||||
ChannelDelete {
|
|
||||||
id: String,
|
|
||||||
},
|
|
||||||
ChannelGroupJoin {
|
|
||||||
id: String,
|
|
||||||
user: String,
|
|
||||||
},
|
|
||||||
ChannelGroupLeave {
|
|
||||||
id: String,
|
|
||||||
user: String,
|
|
||||||
},
|
|
||||||
ChannelStartTyping {
|
|
||||||
id: String,
|
|
||||||
user: String,
|
|
||||||
},
|
|
||||||
ChannelStopTyping {
|
|
||||||
id: String,
|
|
||||||
user: String,
|
|
||||||
},
|
|
||||||
ChannelAck {
|
|
||||||
id: String,
|
|
||||||
user: String,
|
|
||||||
message_id: String,
|
|
||||||
},
|
|
||||||
|
|
||||||
ServerUpdate {
|
|
||||||
id: String,
|
|
||||||
data: Value,
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
clear: Option<RemoveServerField>,
|
|
||||||
},
|
|
||||||
ServerDelete {
|
|
||||||
id: String,
|
|
||||||
},
|
|
||||||
ServerMemberUpdate {
|
|
||||||
id: MemberCompositeKey,
|
|
||||||
data: Value,
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
clear: Option<RemoveMemberField>,
|
|
||||||
},
|
|
||||||
ServerMemberJoin {
|
|
||||||
id: String,
|
|
||||||
user: String,
|
|
||||||
},
|
|
||||||
ServerMemberLeave {
|
|
||||||
id: String,
|
|
||||||
user: String,
|
|
||||||
},
|
|
||||||
ServerRoleUpdate {
|
|
||||||
id: String,
|
|
||||||
role_id: String,
|
|
||||||
data: Value,
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
clear: Option<RemoveRoleField>,
|
|
||||||
},
|
|
||||||
ServerRoleDelete {
|
|
||||||
id: String,
|
|
||||||
role_id: String,
|
|
||||||
},
|
|
||||||
|
|
||||||
UserUpdate {
|
|
||||||
id: String,
|
|
||||||
data: Value,
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
clear: Option<RemoveUserField>,
|
|
||||||
},
|
|
||||||
UserRelationship {
|
|
||||||
id: String,
|
|
||||||
user: User,
|
|
||||||
status: RelationshipStatus,
|
|
||||||
},
|
|
||||||
UserSettingsUpdate {
|
|
||||||
id: String,
|
|
||||||
update: Value,
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
impl ClientboundNotification {
|
|
||||||
pub fn publish(self, topic: String) {
|
|
||||||
async_std::task::spawn(async move {
|
|
||||||
prehandle_hook(&self).await.ok(); // ! FIXME: this should be moved to pubsub
|
|
||||||
hive_pubsub::backend::redis::publish(get_hive(), topic, self)
|
|
||||||
.await
|
|
||||||
.ok();
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn publish_as_user(self, user: String) {
|
|
||||||
self.clone().publish(user.clone());
|
|
||||||
|
|
||||||
async_std::task::spawn(async move {
|
|
||||||
if let Ok(server_ids) = User::fetch_server_ids(&user).await {
|
|
||||||
for server in server_ids {
|
|
||||||
self.clone().publish(server.clone());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pub async fn prehandle_hook(notification: &ClientboundNotification) -> Result<()> {
|
|
||||||
match ¬ification {
|
|
||||||
ClientboundNotification::ChannelGroupJoin { id, user } => {
|
|
||||||
subscribe_if_exists(user.clone(), id.clone()).ok();
|
|
||||||
}
|
|
||||||
ClientboundNotification::ChannelCreate(channel) => {
|
|
||||||
let channel_id = channel.id();
|
|
||||||
match &channel {
|
|
||||||
Channel::SavedMessages { user, .. } => {
|
|
||||||
subscribe_if_exists(user.clone(), channel_id.to_string()).ok();
|
|
||||||
}
|
|
||||||
Channel::DirectMessage { recipients, .. } | Channel::Group { recipients, .. } => {
|
|
||||||
for recipient in recipients {
|
|
||||||
subscribe_if_exists(recipient.clone(), channel_id.to_string()).ok();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Channel::TextChannel { server, .. } | Channel::VoiceChannel { server, .. } => {
|
|
||||||
// ! FIXME: write a better algorithm?
|
|
||||||
let members = Server::fetch_member_ids(server).await?;
|
|
||||||
for member in members {
|
|
||||||
subscribe_if_exists(member.clone(), channel_id.to_string()).ok();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
ClientboundNotification::ServerMemberJoin { id, user } => {
|
|
||||||
let server = Ref::from_unchecked(id.clone()).fetch_server().await?;
|
|
||||||
|
|
||||||
subscribe_if_exists(user.clone(), id.clone()).ok();
|
|
||||||
|
|
||||||
for channel in server.channels {
|
|
||||||
subscribe_if_exists(user.clone(), channel).ok();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
ClientboundNotification::UserRelationship { id, user, status } => {
|
|
||||||
if status != &RelationshipStatus::None {
|
|
||||||
subscribe_if_exists(id.clone(), user.id.clone()).ok();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
_ => {}
|
|
||||||
}
|
|
||||||
|
|
||||||
Ok(())
|
|
||||||
}
|
|
||||||
|
|
||||||
pub async fn posthandle_hook(notification: &ClientboundNotification) {
|
|
||||||
match ¬ification {
|
|
||||||
ClientboundNotification::ChannelDelete { id } => {
|
|
||||||
get_hive().hive.drop_topic(&id).ok();
|
|
||||||
}
|
|
||||||
ClientboundNotification::ChannelGroupLeave { id, user } => {
|
|
||||||
get_hive().hive.unsubscribe(user, id).ok();
|
|
||||||
}
|
|
||||||
ClientboundNotification::ServerDelete { id } => {
|
|
||||||
get_hive().hive.drop_topic(&id).ok();
|
|
||||||
}
|
|
||||||
ClientboundNotification::ServerMemberLeave { id, user } => {
|
|
||||||
get_hive().hive.unsubscribe(user, id).ok();
|
|
||||||
|
|
||||||
if let Ok(server) = Ref::from_unchecked(id.clone()).fetch_server().await {
|
|
||||||
for channel in server.channels {
|
|
||||||
get_hive().hive.unsubscribe(user, &channel).ok();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
ClientboundNotification::UserRelationship { id, user, status } => {
|
|
||||||
if status == &RelationshipStatus::None {
|
|
||||||
get_hive().hive.unsubscribe(id, &user.id).ok();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
_ => {}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,73 +0,0 @@
|
|||||||
use std::sync::{Arc, Mutex};
|
|
||||||
|
|
||||||
use super::{events::ClientboundNotification, websocket};
|
|
||||||
use crate::redis::get_pool;
|
|
||||||
use crate::util::variables::REDIS_URI;
|
|
||||||
|
|
||||||
use futures::FutureExt;
|
|
||||||
use hive_pubsub::backend::redis::RedisPubSub;
|
|
||||||
use hive_pubsub::PubSub;
|
|
||||||
use log::{debug, error};
|
|
||||||
use once_cell::sync::OnceCell;
|
|
||||||
use serde_json::to_string;
|
|
||||||
|
|
||||||
type Hive<'a> = RedisPubSub<'a, String, String, ClientboundNotification>;
|
|
||||||
static HIVE: OnceCell<Hive<'static>> = OnceCell::new();
|
|
||||||
|
|
||||||
pub async fn init_hive() {
|
|
||||||
let pubsub_con = redis::Client::open(REDIS_URI.to_string()).unwrap().get_async_connection().await.unwrap().into_pubsub();
|
|
||||||
|
|
||||||
let hive = RedisPubSub::new(
|
|
||||||
|ids, notification: ClientboundNotification| {
|
|
||||||
let notif = notification.clone();
|
|
||||||
async_std::task::spawn(async move {
|
|
||||||
super::events::posthandle_hook(¬if).await;
|
|
||||||
});
|
|
||||||
|
|
||||||
if let Ok(data) = to_string(¬ification) {
|
|
||||||
debug!("Pushing out notification. {}", data);
|
|
||||||
websocket::publish(ids, notification);
|
|
||||||
} else {
|
|
||||||
error!("Failed to serialise notification.");
|
|
||||||
}
|
|
||||||
},
|
|
||||||
get_pool(),
|
|
||||||
Arc::new(Mutex::new(pubsub_con))
|
|
||||||
);
|
|
||||||
|
|
||||||
if HIVE.set(hive).is_err() {
|
|
||||||
panic!("Failed to set global pubsub instance.");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pub async fn listen() {
|
|
||||||
HIVE.get()
|
|
||||||
.unwrap()
|
|
||||||
.clone()
|
|
||||||
.listen()
|
|
||||||
.fuse()
|
|
||||||
.await
|
|
||||||
.expect("Hive hit an error");
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn subscribe_multiple(user: String, topics: Vec<String>) -> Result<(), String> {
|
|
||||||
let hive = HIVE.get().unwrap();
|
|
||||||
for topic in topics {
|
|
||||||
hive.subscribe(user.clone(), topic)?;
|
|
||||||
}
|
|
||||||
|
|
||||||
Ok(())
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn subscribe_if_exists(user: String, topic: String) -> Result<(), String> {
|
|
||||||
let hive = HIVE.get().unwrap();
|
|
||||||
if hive.hive.map.lock().unwrap().get_left(&user).is_some() {
|
|
||||||
hive.subscribe(user, topic)?;
|
|
||||||
}
|
|
||||||
|
|
||||||
Ok(())
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn get_hive() -> &'static Hive<'static> {
|
|
||||||
HIVE.get().unwrap()
|
|
||||||
}
|
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
pub mod events;
|
|
||||||
pub mod hive;
|
|
||||||
pub mod payload;
|
|
||||||
pub mod subscriptions;
|
|
||||||
pub mod websocket;
|
|
||||||
@@ -1,124 +0,0 @@
|
|||||||
use std::collections::HashSet;
|
|
||||||
|
|
||||||
use crate::{database::*, notifications::events::ClientboundNotification};
|
|
||||||
use crate::{
|
|
||||||
database::{entities::User, get_collection},
|
|
||||||
util::result::{Error, Result},
|
|
||||||
};
|
|
||||||
use futures::StreamExt;
|
|
||||||
use mongodb::bson::{doc, from_document};
|
|
||||||
|
|
||||||
pub async fn generate_ready(mut user: User) -> Result<ClientboundNotification> {
|
|
||||||
let mut user_ids: HashSet<String> = HashSet::new();
|
|
||||||
|
|
||||||
if let Some(relationships) = &user.relations {
|
|
||||||
user_ids.extend(
|
|
||||||
relationships
|
|
||||||
.iter()
|
|
||||||
.map(|relationship| relationship.id.clone()),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
let members = User::fetch_memberships(&user.id).await?;
|
|
||||||
let server_ids: Vec<String> = members.iter()
|
|
||||||
.map(|x| x.id.server.clone())
|
|
||||||
.collect();
|
|
||||||
|
|
||||||
let mut cursor = get_collection("servers")
|
|
||||||
.find(
|
|
||||||
doc! {
|
|
||||||
"_id": {
|
|
||||||
"$in": server_ids
|
|
||||||
}
|
|
||||||
},
|
|
||||||
None,
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "find",
|
|
||||||
with: "servers",
|
|
||||||
})?;
|
|
||||||
|
|
||||||
let mut servers = vec![];
|
|
||||||
let mut channel_ids = vec![];
|
|
||||||
while let Some(result) = cursor.next().await {
|
|
||||||
if let Ok(doc) = result {
|
|
||||||
let server: Server = from_document(doc).map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "from_document",
|
|
||||||
with: "server",
|
|
||||||
})?;
|
|
||||||
|
|
||||||
channel_ids.extend(server.channels.iter().cloned());
|
|
||||||
servers.push(server);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
let mut cursor = get_collection("channels")
|
|
||||||
.find(
|
|
||||||
doc! {
|
|
||||||
"$or": [
|
|
||||||
{
|
|
||||||
"_id": {
|
|
||||||
"$in": channel_ids
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"channel_type": "SavedMessages",
|
|
||||||
"user": &user.id
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"channel_type": "DirectMessage",
|
|
||||||
"recipients": &user.id
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"channel_type": "Group",
|
|
||||||
"recipients": &user.id
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
None,
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "find",
|
|
||||||
with: "channels",
|
|
||||||
})?;
|
|
||||||
|
|
||||||
let mut channels = vec![];
|
|
||||||
while let Some(result) = cursor.next().await {
|
|
||||||
if let Ok(doc) = result {
|
|
||||||
let channel = from_document(doc).map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "from_document",
|
|
||||||
with: "channel",
|
|
||||||
})?;
|
|
||||||
|
|
||||||
if let Channel::Group { recipients, .. } = &channel {
|
|
||||||
user_ids.extend(recipients.iter().cloned());
|
|
||||||
} else if let Channel::DirectMessage { recipients, .. } = &channel {
|
|
||||||
user_ids.extend(recipients.iter().cloned());
|
|
||||||
}
|
|
||||||
|
|
||||||
channels.push(channel);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
user_ids.remove(&user.id);
|
|
||||||
let mut users = if user_ids.len() > 0 {
|
|
||||||
user.fetch_multiple_users(&user_ids.into_iter().collect::<Vec<String>>())
|
|
||||||
.await?
|
|
||||||
} else {
|
|
||||||
vec![]
|
|
||||||
};
|
|
||||||
|
|
||||||
user.relationship = Some(RelationshipStatus::User);
|
|
||||||
user.online = Some(true);
|
|
||||||
|
|
||||||
users.push(user.apply_badges());
|
|
||||||
|
|
||||||
Ok(ClientboundNotification::Ready {
|
|
||||||
users,
|
|
||||||
servers,
|
|
||||||
channels,
|
|
||||||
members
|
|
||||||
})
|
|
||||||
}
|
|
||||||
@@ -1,87 +0,0 @@
|
|||||||
use crate::database::*;
|
|
||||||
|
|
||||||
use super::hive::get_hive;
|
|
||||||
use futures::StreamExt;
|
|
||||||
use hive_pubsub::PubSub;
|
|
||||||
use mongodb::bson::doc;
|
|
||||||
use mongodb::bson::Document;
|
|
||||||
use mongodb::options::FindOptions;
|
|
||||||
|
|
||||||
pub async fn generate_subscriptions(user: &User) -> Result<(), String> {
|
|
||||||
let hive = get_hive();
|
|
||||||
hive.subscribe(user.id.clone(), user.id.clone())?;
|
|
||||||
|
|
||||||
if let Some(relations) = &user.relations {
|
|
||||||
for relation in relations {
|
|
||||||
hive.subscribe(user.id.clone(), relation.id.clone())?;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
let server_ids = User::fetch_server_ids(&user.id)
|
|
||||||
.await
|
|
||||||
.map_err(|_| "Failed to fetch memberships.".to_string())?;
|
|
||||||
|
|
||||||
let channel_ids = get_collection("servers")
|
|
||||||
.find(
|
|
||||||
doc! {
|
|
||||||
"_id": {
|
|
||||||
"$in": &server_ids
|
|
||||||
}
|
|
||||||
},
|
|
||||||
None,
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| "Failed to fetch servers.".to_string())?
|
|
||||||
.filter_map(async move |s| s.ok())
|
|
||||||
.collect::<Vec<Document>>()
|
|
||||||
.await
|
|
||||||
.into_iter()
|
|
||||||
.filter_map(|x| {
|
|
||||||
x.get_array("channels").ok().map(|v| {
|
|
||||||
v.into_iter()
|
|
||||||
.filter_map(|x| x.as_str().map(|x| x.to_string()))
|
|
||||||
.collect::<Vec<String>>()
|
|
||||||
})
|
|
||||||
})
|
|
||||||
.flatten()
|
|
||||||
.collect::<Vec<String>>();
|
|
||||||
|
|
||||||
for id in server_ids {
|
|
||||||
hive.subscribe(user.id.clone(), id)?;
|
|
||||||
}
|
|
||||||
|
|
||||||
for id in channel_ids {
|
|
||||||
hive.subscribe(user.id.clone(), id)?;
|
|
||||||
}
|
|
||||||
|
|
||||||
let mut cursor = get_collection("channels")
|
|
||||||
.find(
|
|
||||||
doc! {
|
|
||||||
"$or": [
|
|
||||||
{
|
|
||||||
"channel_type": "SavedMessages",
|
|
||||||
"user": &user.id
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"channel_type": "DirectMessage",
|
|
||||||
"recipients": &user.id
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"channel_type": "Group",
|
|
||||||
"recipients": &user.id
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
FindOptions::builder().projection(doc! { "_id": 1 }).build(),
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| "Failed to fetch channels.".to_string())?;
|
|
||||||
|
|
||||||
while let Some(result) = cursor.next().await {
|
|
||||||
if let Ok(doc) = result {
|
|
||||||
hive.subscribe(user.id.clone(), doc.get_str("_id").unwrap().to_string())?;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Ok(())
|
|
||||||
}
|
|
||||||
@@ -1,393 +0,0 @@
|
|||||||
use crate::database::*;
|
|
||||||
use crate::notifications::events::Ping;
|
|
||||||
use crate::util::variables::WS_HOST;
|
|
||||||
|
|
||||||
use super::subscriptions;
|
|
||||||
|
|
||||||
use async_std::net::{TcpListener, TcpStream};
|
|
||||||
use async_std::task;
|
|
||||||
use async_tungstenite::tungstenite::{handshake::server, Message};
|
|
||||||
use futures::channel::{
|
|
||||||
mpsc::{unbounded, UnboundedSender},
|
|
||||||
oneshot,
|
|
||||||
};
|
|
||||||
use futures::stream::TryStreamExt;
|
|
||||||
use futures::{pin_mut, prelude::*};
|
|
||||||
use hive_pubsub::PubSub;
|
|
||||||
use log::{debug, info};
|
|
||||||
use many_to_many::ManyToMany;
|
|
||||||
use mongodb::bson::doc;
|
|
||||||
use rauth::entities::{Model, Session};
|
|
||||||
use rmp_serde;
|
|
||||||
use std::collections::HashMap;
|
|
||||||
use std::net::SocketAddr;
|
|
||||||
use std::sync::{Arc, Mutex, RwLock};
|
|
||||||
use url::Url;
|
|
||||||
|
|
||||||
use super::{
|
|
||||||
events::{ClientboundNotification, ServerboundNotification, WebSocketError},
|
|
||||||
hive::get_hive,
|
|
||||||
};
|
|
||||||
|
|
||||||
type Tx = UnboundedSender<Message>;
|
|
||||||
type PeerMap = Arc<Mutex<HashMap<SocketAddr, (Tx, MSGFormat)>>>;
|
|
||||||
|
|
||||||
lazy_static! {
|
|
||||||
static ref CONNECTIONS: PeerMap = Arc::new(Mutex::new(HashMap::new()));
|
|
||||||
static ref USERS: Arc<RwLock<ManyToMany<String, SocketAddr>>> =
|
|
||||||
Arc::new(RwLock::new(ManyToMany::new()));
|
|
||||||
}
|
|
||||||
|
|
||||||
pub async fn launch_server() {
|
|
||||||
let try_socket = TcpListener::bind(WS_HOST.to_string()).await;
|
|
||||||
let listener = try_socket.expect("Failed to bind");
|
|
||||||
info!("Listening on: {}", *WS_HOST);
|
|
||||||
|
|
||||||
while let Ok((stream, _)) = listener.accept().await {
|
|
||||||
task::spawn(accept(stream));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Debug, Clone)]
|
|
||||||
enum MSGFormat {
|
|
||||||
JSON,
|
|
||||||
MSGPACK,
|
|
||||||
}
|
|
||||||
|
|
||||||
struct HeaderCallback {
|
|
||||||
sender: oneshot::Sender<MSGFormat>,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl server::Callback for HeaderCallback {
|
|
||||||
fn on_request(
|
|
||||||
self,
|
|
||||||
request: &server::Request,
|
|
||||||
response: server::Response,
|
|
||||||
) -> Result<server::Response, server::ErrorResponse> {
|
|
||||||
// we dont get some of the data sometimes so im generating a fake url with the only data we actually need
|
|
||||||
let url = format!(
|
|
||||||
"ws://example.com?{}",
|
|
||||||
request.uri().query().unwrap_or("?format=json")
|
|
||||||
);
|
|
||||||
let mut query: HashMap<_, _> = url
|
|
||||||
.parse::<Url>()
|
|
||||||
.unwrap()
|
|
||||||
.query_pairs()
|
|
||||||
.into_owned()
|
|
||||||
.collect(); // should be safe to use unwrap here as we just made the url ourself
|
|
||||||
let format_query: Option<String> = query.remove("format");
|
|
||||||
|
|
||||||
let format = match format_query.as_deref().unwrap_or("json") {
|
|
||||||
"msgpack" => MSGFormat::MSGPACK,
|
|
||||||
"json" => MSGFormat::JSON,
|
|
||||||
_ => MSGFormat::JSON, // Fallback to JSON.
|
|
||||||
};
|
|
||||||
|
|
||||||
if self.sender.send(format).is_ok() {
|
|
||||||
Ok(response)
|
|
||||||
} else {
|
|
||||||
Err(server::ErrorResponse::new(None))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
async fn accept(stream: TcpStream) {
|
|
||||||
let addr = stream
|
|
||||||
.peer_addr()
|
|
||||||
.expect("Connected streams should have a peer address.");
|
|
||||||
let (sender, receiver) = oneshot::channel::<MSGFormat>();
|
|
||||||
|
|
||||||
let ws_stream =
|
|
||||||
async_tungstenite::accept_hdr_async_with_config(stream, HeaderCallback { sender }, None)
|
|
||||||
.await
|
|
||||||
.expect("Error during websocket handshake.");
|
|
||||||
|
|
||||||
let msg_format = receiver.await.unwrap(); // TODO: not use unwrap
|
|
||||||
|
|
||||||
info!("User established WebSocket connection from {}.", &addr);
|
|
||||||
|
|
||||||
let (write, read) = ws_stream.split();
|
|
||||||
let (tx, rx) = unbounded();
|
|
||||||
CONNECTIONS.lock().unwrap().insert(addr, (tx.clone(), msg_format.clone()));
|
|
||||||
|
|
||||||
let send = |notification: ClientboundNotification| {
|
|
||||||
let res = match msg_format {
|
|
||||||
MSGFormat::JSON => match serde_json::to_string(¬ification) {
|
|
||||||
Ok(s) => Message::Text(s),
|
|
||||||
Err(_) => return
|
|
||||||
}
|
|
||||||
MSGFormat::MSGPACK => match rmp_serde::to_vec_named(¬ification) {
|
|
||||||
Ok(v) => Message::Binary(v),
|
|
||||||
Err(_) => return,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
if let Err(_) = tx.unbounded_send(res) {
|
|
||||||
debug!("Failed unbounded_send to websocket stream.");
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
let user_id: Arc<Mutex<Option<String>>> = Arc::new(Mutex::new(None));
|
|
||||||
let mutex_generator = || user_id.clone();
|
|
||||||
let fwd = rx.map(Ok).forward(write);
|
|
||||||
let incoming = read.try_for_each(async move |msg| {
|
|
||||||
let mutex = mutex_generator();
|
|
||||||
|
|
||||||
let maybe_decoded = match msg {
|
|
||||||
Message::Text(text) => {
|
|
||||||
serde_json::from_str::<ServerboundNotification>(&text).map_err(|e| e.to_string())
|
|
||||||
}
|
|
||||||
Message::Binary(vec) => {
|
|
||||||
rmp_serde::decode::from_read::<&[u8], ServerboundNotification>(vec.as_slice())
|
|
||||||
.map_err(|e| e.to_string())
|
|
||||||
}
|
|
||||||
Message::Ping(vec) => Ok(ServerboundNotification::Ping { data: Ping::Binary(vec), responded: Some(()) }),
|
|
||||||
_ => return Ok(()),
|
|
||||||
};
|
|
||||||
|
|
||||||
let notification = match maybe_decoded {
|
|
||||||
Err(why) => {
|
|
||||||
send(ClientboundNotification::Error(
|
|
||||||
WebSocketError::MalformedData {
|
|
||||||
msg: why.to_string(),
|
|
||||||
},
|
|
||||||
));
|
|
||||||
return Ok(());
|
|
||||||
}
|
|
||||||
Ok(n) => n,
|
|
||||||
};
|
|
||||||
|
|
||||||
match notification {
|
|
||||||
ServerboundNotification::Authenticate(auth) => {
|
|
||||||
{
|
|
||||||
if mutex.lock().unwrap().is_some() {
|
|
||||||
send(ClientboundNotification::Error(
|
|
||||||
WebSocketError::AlreadyAuthenticated,
|
|
||||||
));
|
|
||||||
|
|
||||||
return Ok(());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
let id = if let Ok(Some(session)) =
|
|
||||||
Session::find_one(&get_db(), doc! { "token": &auth.token }, None).await
|
|
||||||
{
|
|
||||||
Some(session.user_id)
|
|
||||||
} else if let Ok(Some(bot)) = get_collection("bots")
|
|
||||||
.find_one(doc! { "token": auth.token }, None)
|
|
||||||
.await
|
|
||||||
{
|
|
||||||
Some(bot.get_str("_id").unwrap().to_string())
|
|
||||||
} else {
|
|
||||||
None
|
|
||||||
};
|
|
||||||
|
|
||||||
if let Some(id) = id {
|
|
||||||
if let Ok(user) = (Ref { id: id.clone() }).fetch_user().await {
|
|
||||||
let is_invisible = if let Some(status) = &user.status {
|
|
||||||
if let Some(presence) = &status.presence {
|
|
||||||
presence == &Presence::Invisible
|
|
||||||
} else {
|
|
||||||
false
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
false
|
|
||||||
};
|
|
||||||
|
|
||||||
let was_online = is_online(&id);
|
|
||||||
|
|
||||||
{
|
|
||||||
match USERS.write() {
|
|
||||||
Ok(mut map) => {
|
|
||||||
map.insert(id.clone(), addr);
|
|
||||||
}
|
|
||||||
Err(_) => {
|
|
||||||
send(ClientboundNotification::Error(
|
|
||||||
WebSocketError::InternalError {
|
|
||||||
at: "Writing users map.".to_string(),
|
|
||||||
},
|
|
||||||
));
|
|
||||||
|
|
||||||
return Ok(());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
*mutex.lock().unwrap() = Some(id.clone());
|
|
||||||
|
|
||||||
if let Err(_) = subscriptions::generate_subscriptions(&user).await {
|
|
||||||
send(ClientboundNotification::Error(
|
|
||||||
WebSocketError::InternalError {
|
|
||||||
at: "Generating subscriptions.".to_string(),
|
|
||||||
},
|
|
||||||
));
|
|
||||||
|
|
||||||
return Ok(());
|
|
||||||
}
|
|
||||||
|
|
||||||
send(ClientboundNotification::Authenticated);
|
|
||||||
|
|
||||||
match super::payload::generate_ready(user).await {
|
|
||||||
Ok(payload) => {
|
|
||||||
send(payload);
|
|
||||||
|
|
||||||
if !was_online && !is_invisible {
|
|
||||||
ClientboundNotification::UserUpdate {
|
|
||||||
id: id.clone(),
|
|
||||||
data: json!({
|
|
||||||
"online": true
|
|
||||||
}),
|
|
||||||
clear: None,
|
|
||||||
}
|
|
||||||
.publish_as_user(id);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Err(_) => {
|
|
||||||
send(ClientboundNotification::Error(
|
|
||||||
WebSocketError::InternalError {
|
|
||||||
at: "Generating payload.".to_string(),
|
|
||||||
},
|
|
||||||
));
|
|
||||||
|
|
||||||
return Ok(());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
send(ClientboundNotification::Error(
|
|
||||||
WebSocketError::OnboardingNotFinished,
|
|
||||||
));
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
send(ClientboundNotification::Error(
|
|
||||||
WebSocketError::InvalidSession,
|
|
||||||
));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
// ! TEMP: verify user part of channel
|
|
||||||
// ! Could just run permission check here.
|
|
||||||
ServerboundNotification::BeginTyping { channel } => {
|
|
||||||
if mutex.lock().unwrap().is_some() {
|
|
||||||
let user = {
|
|
||||||
let mutex = mutex.lock().unwrap();
|
|
||||||
mutex.as_ref().unwrap().clone()
|
|
||||||
};
|
|
||||||
|
|
||||||
ClientboundNotification::ChannelStartTyping {
|
|
||||||
id: channel.clone(),
|
|
||||||
user,
|
|
||||||
}
|
|
||||||
.publish(channel);
|
|
||||||
} else {
|
|
||||||
send(ClientboundNotification::Error(
|
|
||||||
WebSocketError::AlreadyAuthenticated,
|
|
||||||
));
|
|
||||||
|
|
||||||
return Ok(());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
ServerboundNotification::EndTyping { channel } => {
|
|
||||||
if mutex.lock().unwrap().is_some() {
|
|
||||||
let user = {
|
|
||||||
let mutex = mutex.lock().unwrap();
|
|
||||||
mutex.as_ref().unwrap().clone()
|
|
||||||
};
|
|
||||||
|
|
||||||
ClientboundNotification::ChannelStopTyping {
|
|
||||||
id: channel.clone(),
|
|
||||||
user,
|
|
||||||
}
|
|
||||||
.publish(channel);
|
|
||||||
} else {
|
|
||||||
send(ClientboundNotification::Error(
|
|
||||||
WebSocketError::AlreadyAuthenticated,
|
|
||||||
));
|
|
||||||
|
|
||||||
return Ok(());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
ServerboundNotification::Ping { data, responded } => {
|
|
||||||
debug!("Ping received from connection {}. Payload: {:?}", &addr, data);
|
|
||||||
|
|
||||||
if responded.is_none() {
|
|
||||||
send(ClientboundNotification::Pong { data });
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Ok(())
|
|
||||||
});
|
|
||||||
|
|
||||||
pin_mut!(fwd, incoming);
|
|
||||||
future::select(fwd, incoming).await;
|
|
||||||
|
|
||||||
info!("User {} disconnected.", &addr);
|
|
||||||
CONNECTIONS.lock().unwrap().remove(&addr);
|
|
||||||
|
|
||||||
let mut offline = None;
|
|
||||||
{
|
|
||||||
let user_id = user_id.lock().unwrap();
|
|
||||||
if let Some(user_id) = user_id.as_ref() {
|
|
||||||
let mut users = USERS.write().unwrap();
|
|
||||||
users.remove(&user_id, &addr);
|
|
||||||
if users.get_left(&user_id).is_none() {
|
|
||||||
get_hive().drop_client(&user_id).unwrap();
|
|
||||||
offline = Some(user_id.clone());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if let Some(id) = offline {
|
|
||||||
ClientboundNotification::UserUpdate {
|
|
||||||
id: id.clone(),
|
|
||||||
data: json!({
|
|
||||||
"online": false
|
|
||||||
}),
|
|
||||||
clear: None,
|
|
||||||
}
|
|
||||||
.publish_as_user(id);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn publish(ids: Vec<String>, notification: ClientboundNotification) {
|
|
||||||
let mut targets = vec![];
|
|
||||||
{
|
|
||||||
let users = USERS.read().unwrap();
|
|
||||||
for id in ids {
|
|
||||||
// Block certain notifications from reaching users that aren't meant to see them.
|
|
||||||
match ¬ification {
|
|
||||||
ClientboundNotification::UserRelationship { id: user_id, .. }
|
|
||||||
| ClientboundNotification::UserSettingsUpdate { id: user_id, .. }
|
|
||||||
| ClientboundNotification::ChannelAck { user: user_id, .. } => {
|
|
||||||
if &id != user_id {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
_ => {}
|
|
||||||
}
|
|
||||||
|
|
||||||
if let Some(mut arr) = users.get_left(&id) {
|
|
||||||
targets.append(&mut arr);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
let json_msg = Message::Text(serde_json::to_string(¬ification).unwrap());
|
|
||||||
let msgpack_msg = Message::Binary(rmp_serde::to_vec_named(¬ification).unwrap());
|
|
||||||
|
|
||||||
let connections = CONNECTIONS.lock().unwrap();
|
|
||||||
for target in targets {
|
|
||||||
if let Some((conn, msg_format)) = connections.get(&target) {
|
|
||||||
let msg = match msg_format {
|
|
||||||
MSGFormat::JSON => json_msg.clone(),
|
|
||||||
MSGFormat::MSGPACK => msgpack_msg.clone()
|
|
||||||
};
|
|
||||||
|
|
||||||
if let Err(_) = conn.unbounded_send(msg) {
|
|
||||||
debug!("Failed unbounded_send.");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn is_online(user: &String) -> bool {
|
|
||||||
USERS.read().unwrap().get_left(&user).is_some()
|
|
||||||
}
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
use crate::util::variables::REDIS_URI;
|
|
||||||
|
|
||||||
use mobc::Pool;
|
|
||||||
use mobc_redis::RedisConnectionManager;
|
|
||||||
use once_cell::sync::OnceCell;
|
|
||||||
|
|
||||||
static REDISPOOL: OnceCell<Pool<RedisConnectionManager>> = OnceCell::new();
|
|
||||||
|
|
||||||
pub async fn connect() {
|
|
||||||
let client = mobc_redis::redis::Client::open(REDIS_URI.to_string()).unwrap();
|
|
||||||
let manager = mobc_redis::RedisConnectionManager::new(client);
|
|
||||||
let pool = mobc::Pool::builder().max_open(100).build(manager);
|
|
||||||
REDISPOOL.set(pool).ok().unwrap();
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn get_pool() -> &'static Pool<RedisConnectionManager> {
|
|
||||||
REDISPOOL.get().unwrap()
|
|
||||||
}
|
|
||||||
@@ -1,13 +1,9 @@
|
|||||||
use crate::database::*;
|
|
||||||
use crate::util::result::{Error, Result};
|
|
||||||
use crate::util::variables::MAX_BOT_COUNT;
|
|
||||||
use crate::util::regex::RE_USERNAME;
|
use crate::util::regex::RE_USERNAME;
|
||||||
|
|
||||||
use mongodb::bson::{doc, to_document};
|
use revolt_quark::Result;
|
||||||
|
|
||||||
use rocket::serde::json::{Json, Value};
|
use rocket::serde::json::{Json, Value};
|
||||||
use serde::{Deserialize, Serialize};
|
use serde::{Deserialize, Serialize};
|
||||||
use ulid::Ulid;
|
|
||||||
use nanoid::nanoid;
|
|
||||||
use validator::Validate;
|
use validator::Validate;
|
||||||
|
|
||||||
#[derive(Validate, Serialize, Deserialize)]
|
#[derive(Validate, Serialize, Deserialize)]
|
||||||
@@ -17,73 +13,6 @@ pub struct Data {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#[post("/create", data = "<info>")]
|
#[post("/create", data = "<info>")]
|
||||||
pub async fn create_bot(user: User, info: Json<Data>) -> Result<Value> {
|
pub async fn create_bot(/* user: User ,*/ info: Json<Data>) -> Result<Value> {
|
||||||
if user.bot.is_some() {
|
todo!()
|
||||||
return Err(Error::IsBot)
|
|
||||||
}
|
|
||||||
|
|
||||||
let info = info.into_inner();
|
|
||||||
info.validate()
|
|
||||||
.map_err(|error| Error::FailedValidation { error })?;
|
|
||||||
|
|
||||||
if get_collection("bots")
|
|
||||||
.count_documents(
|
|
||||||
doc! {
|
|
||||||
"owner": &user.id
|
|
||||||
},
|
|
||||||
None,
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "count_documents",
|
|
||||||
with: "bots",
|
|
||||||
})? as usize >= *MAX_BOT_COUNT {
|
|
||||||
return Err(Error::ReachedMaximumBots)
|
|
||||||
}
|
|
||||||
|
|
||||||
let id = Ulid::new().to_string();
|
|
||||||
let token = nanoid!(64);
|
|
||||||
let bot = Bot {
|
|
||||||
id: id.clone(),
|
|
||||||
owner: user.id.clone(),
|
|
||||||
token,
|
|
||||||
public: false,
|
|
||||||
analytics: false,
|
|
||||||
discoverable: false,
|
|
||||||
interactions_url: None
|
|
||||||
};
|
|
||||||
|
|
||||||
if User::is_username_taken(&info.name).await? {
|
|
||||||
return Err(Error::UsernameTaken);
|
|
||||||
}
|
|
||||||
|
|
||||||
get_collection("users")
|
|
||||||
.insert_one(
|
|
||||||
doc! {
|
|
||||||
"_id": &id,
|
|
||||||
"username": &info.name,
|
|
||||||
"bot": {
|
|
||||||
"owner": &user.id
|
|
||||||
}
|
|
||||||
},
|
|
||||||
None,
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "insert_one",
|
|
||||||
with: "user",
|
|
||||||
})?;
|
|
||||||
|
|
||||||
get_collection("bots")
|
|
||||||
.insert_one(
|
|
||||||
to_document(&bot).map_err(|_| Error::DatabaseError { with: "bot", operation: "to_document" })?,
|
|
||||||
None,
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "insert_one",
|
|
||||||
with: "user",
|
|
||||||
})?;
|
|
||||||
|
|
||||||
Ok(json!(bot))
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,67 +1,7 @@
|
|||||||
use crate::database::*;
|
use revolt_quark::Result;
|
||||||
use crate::notifications::events::ClientboundNotification;
|
use rauth::util::EmptyResponse;
|
||||||
use crate::util::result::{Error, EmptyResponse, Result};
|
|
||||||
|
|
||||||
use mongodb::bson::doc;
|
|
||||||
|
|
||||||
#[delete("/<target>")]
|
#[delete("/<target>")]
|
||||||
pub async fn delete_bot(user: User, target: Ref) -> Result<EmptyResponse> {
|
pub async fn delete_bot(/*user: UserRef, target: Ref*/ target: String) -> Result<EmptyResponse> {
|
||||||
if user.bot.is_some() {
|
todo!()
|
||||||
return Err(Error::IsBot)
|
|
||||||
}
|
|
||||||
|
|
||||||
let bot = target.fetch_bot().await?;
|
|
||||||
if bot.owner != user.id {
|
|
||||||
return Err(Error::MissingPermission);
|
|
||||||
}
|
|
||||||
|
|
||||||
let username = format!("Deleted User {}", &bot.id);
|
|
||||||
get_collection("users")
|
|
||||||
.update_one(
|
|
||||||
doc! {
|
|
||||||
"_id": &bot.id
|
|
||||||
},
|
|
||||||
doc! {
|
|
||||||
"$set": {
|
|
||||||
"username": &username,
|
|
||||||
"flags": 2
|
|
||||||
},
|
|
||||||
"$unset": {
|
|
||||||
"avatar": 1,
|
|
||||||
"status": 1,
|
|
||||||
"profile": 1
|
|
||||||
}
|
|
||||||
},
|
|
||||||
None
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
with: "user",
|
|
||||||
operation: "update_one"
|
|
||||||
})?;
|
|
||||||
|
|
||||||
ClientboundNotification::UserUpdate {
|
|
||||||
id: target.id.clone(),
|
|
||||||
data: json!({
|
|
||||||
"username": username,
|
|
||||||
"flags": 2
|
|
||||||
}),
|
|
||||||
clear: None,
|
|
||||||
}
|
|
||||||
.publish_as_user(target.id.clone());
|
|
||||||
|
|
||||||
get_collection("bots")
|
|
||||||
.delete_one(
|
|
||||||
doc! {
|
|
||||||
"_id": &bot.id
|
|
||||||
},
|
|
||||||
None
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
with: "bot",
|
|
||||||
operation: "delete_one"
|
|
||||||
})?;
|
|
||||||
|
|
||||||
Ok(EmptyResponse {})
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,8 +1,7 @@
|
|||||||
use crate::notifications::events::ClientboundNotification;
|
|
||||||
use crate::util::result::{Error, Result, EmptyResponse};
|
|
||||||
use crate::{database::*, notifications::events::RemoveBotField};
|
|
||||||
use crate::util::regex::RE_USERNAME;
|
use crate::util::regex::RE_USERNAME;
|
||||||
|
|
||||||
|
use revolt_quark::{Result, models::bot::FieldsBot, EmptyResponse};
|
||||||
|
|
||||||
use mongodb::bson::doc;
|
use mongodb::bson::doc;
|
||||||
use rocket::serde::json::Json;
|
use rocket::serde::json::Json;
|
||||||
use serde::{Deserialize, Serialize};
|
use serde::{Deserialize, Serialize};
|
||||||
@@ -16,105 +15,10 @@ pub struct Data {
|
|||||||
public: Option<bool>,
|
public: Option<bool>,
|
||||||
analytics: Option<bool>,
|
analytics: Option<bool>,
|
||||||
interactions_url: Option<String>,
|
interactions_url: Option<String>,
|
||||||
remove: Option<RemoveBotField>,
|
remove: Option<FieldsBot>,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[patch("/<target>", data = "<data>")]
|
#[patch("/<target>", data = "<data>")]
|
||||||
pub async fn edit_bot(user: User, target: Ref, data: Json<Data>) -> Result<EmptyResponse> {
|
pub async fn edit_bot(/*user: UserRef, target: Ref,*/ target: String, data: Json<Data>) -> Result<EmptyResponse> {
|
||||||
if user.bot.is_some() {
|
todo!()
|
||||||
return Err(Error::IsBot)
|
|
||||||
}
|
|
||||||
|
|
||||||
let data = data.into_inner();
|
|
||||||
data.validate()
|
|
||||||
.map_err(|error| Error::FailedValidation { error })?;
|
|
||||||
|
|
||||||
if data.name.is_none()
|
|
||||||
&& data.public.is_none()
|
|
||||||
&& data.analytics.is_none()
|
|
||||||
&& data.interactions_url.is_none()
|
|
||||||
&& data.remove.is_none()
|
|
||||||
{
|
|
||||||
return Ok(EmptyResponse {});
|
|
||||||
}
|
|
||||||
|
|
||||||
let bot = target.fetch_bot().await?;
|
|
||||||
if bot.owner != user.id {
|
|
||||||
return Err(Error::MissingPermission);
|
|
||||||
}
|
|
||||||
|
|
||||||
if let Some(name) = &data.name {
|
|
||||||
if User::is_username_taken(&name).await? {
|
|
||||||
return Err(Error::UsernameTaken);
|
|
||||||
}
|
|
||||||
|
|
||||||
get_collection("users")
|
|
||||||
.update_one(
|
|
||||||
doc! { "_id": &target.id },
|
|
||||||
doc! {
|
|
||||||
"$set": {
|
|
||||||
"username": name
|
|
||||||
}
|
|
||||||
},
|
|
||||||
None
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "update_one",
|
|
||||||
with: "user",
|
|
||||||
})?;
|
|
||||||
|
|
||||||
ClientboundNotification::UserUpdate {
|
|
||||||
id: target.id.clone(),
|
|
||||||
data: json!({
|
|
||||||
"username": name
|
|
||||||
}),
|
|
||||||
clear: None,
|
|
||||||
}
|
|
||||||
.publish_as_user(target.id.clone());
|
|
||||||
}
|
|
||||||
|
|
||||||
let mut set = doc! {};
|
|
||||||
let mut unset = doc! {};
|
|
||||||
|
|
||||||
if let Some(remove) = &data.remove {
|
|
||||||
match remove {
|
|
||||||
RemoveBotField::InteractionsURL => {
|
|
||||||
unset.insert("interactions_url", 1);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if let Some(public) = &data.public {
|
|
||||||
set.insert("public", public);
|
|
||||||
}
|
|
||||||
|
|
||||||
if let Some(analytics) = &data.analytics {
|
|
||||||
set.insert("analytics", analytics);
|
|
||||||
}
|
|
||||||
|
|
||||||
if let Some(interactions_url) = &data.interactions_url {
|
|
||||||
set.insert("interactions_url", interactions_url);
|
|
||||||
}
|
|
||||||
|
|
||||||
let mut operations = doc! {};
|
|
||||||
if set.len() > 0 {
|
|
||||||
operations.insert("$set", &set);
|
|
||||||
}
|
|
||||||
|
|
||||||
if unset.len() > 0 {
|
|
||||||
operations.insert("$unset", unset);
|
|
||||||
}
|
|
||||||
|
|
||||||
if operations.len() > 0 {
|
|
||||||
get_collection("bots")
|
|
||||||
.update_one(doc! { "_id": &target.id }, operations, None)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "update_one",
|
|
||||||
with: "bot",
|
|
||||||
})?;
|
|
||||||
}
|
|
||||||
|
|
||||||
Ok(EmptyResponse {})
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,26 +1,8 @@
|
|||||||
use crate::database::*;
|
use revolt_quark::Result;
|
||||||
use crate::util::result::{Error, Result};
|
|
||||||
|
|
||||||
use serde_json::Value;
|
use serde_json::Value;
|
||||||
|
|
||||||
#[get("/<target>")]
|
#[get("/<target>")]
|
||||||
pub async fn fetch_bot(user: User, target: Ref) -> Result<Value> {
|
pub async fn fetch_bot(/*user: UserRef, target: Ref*/ target: String) -> Result<Value> {
|
||||||
if user.bot.is_some() {
|
todo!()
|
||||||
return Err(Error::IsBot)
|
|
||||||
}
|
|
||||||
|
|
||||||
let bot = target.fetch_bot().await?;
|
|
||||||
|
|
||||||
if !bot.public {
|
|
||||||
if bot.owner != user.id {
|
|
||||||
return Err(Error::BotIsPrivate);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
let user = Ref::from_unchecked(bot.id.clone()).fetch_user().await?;
|
|
||||||
|
|
||||||
Ok(json!({
|
|
||||||
"bot": bot,
|
|
||||||
"user": user
|
|
||||||
}))
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,56 +1,8 @@
|
|||||||
use crate::database::*;
|
use revolt_quark::Result;
|
||||||
use crate::util::result::{Error, Result};
|
|
||||||
|
|
||||||
use futures::StreamExt;
|
|
||||||
use mongodb::bson::{Document, doc, from_document};
|
|
||||||
use serde_json::Value;
|
use serde_json::Value;
|
||||||
|
|
||||||
#[get("/@me")]
|
#[get("/@me")]
|
||||||
pub async fn fetch_owned_bots(user: User) -> Result<Value> {
|
pub async fn fetch_owned_bots(/*user: UserRef*/) -> Result<Value> {
|
||||||
if user.bot.is_some() {
|
todo!()
|
||||||
return Err(Error::IsBot)
|
|
||||||
}
|
|
||||||
|
|
||||||
let bots = get_collection("bots")
|
|
||||||
.find(
|
|
||||||
doc! {
|
|
||||||
"owner": &user.id
|
|
||||||
},
|
|
||||||
None
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
with: "bots",
|
|
||||||
operation: "find"
|
|
||||||
})?
|
|
||||||
.filter_map(async move |s| s.ok())
|
|
||||||
.collect::<Vec<Document>>()
|
|
||||||
.await
|
|
||||||
.into_iter()
|
|
||||||
.filter_map(|x| from_document(x).ok())
|
|
||||||
.collect::<Vec<Bot>>();
|
|
||||||
|
|
||||||
let users = get_collection("users")
|
|
||||||
.find(
|
|
||||||
doc! {
|
|
||||||
"bot.owner": &user.id
|
|
||||||
},
|
|
||||||
None
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
with: "users",
|
|
||||||
operation: "find"
|
|
||||||
})?
|
|
||||||
.filter_map(async move |s| s.ok())
|
|
||||||
.collect::<Vec<Document>>()
|
|
||||||
.await
|
|
||||||
.into_iter()
|
|
||||||
.filter_map(|x| from_document(x).ok())
|
|
||||||
.collect::<Vec<User>>();
|
|
||||||
|
|
||||||
Ok(json!({
|
|
||||||
"bots": bots,
|
|
||||||
"users": users
|
|
||||||
}))
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,28 +1,8 @@
|
|||||||
use crate::database::*;
|
use revolt_quark::Result;
|
||||||
use crate::util::result::{Error, Result};
|
|
||||||
|
|
||||||
use serde_json::Value;
|
use serde_json::Value;
|
||||||
|
|
||||||
#[get("/<target>/invite")]
|
#[get("/<target>/invite")]
|
||||||
pub async fn fetch_public_bot(user: User, target: Ref) -> Result<Value> {
|
pub async fn fetch_public_bot(/*user: UserRef, target: Ref*/ target: String) -> Result<Value> {
|
||||||
if user.bot.is_some() {
|
todo!()
|
||||||
return Err(Error::IsBot)
|
|
||||||
}
|
|
||||||
|
|
||||||
let bot = target.fetch_bot().await?;
|
|
||||||
|
|
||||||
if !bot.public {
|
|
||||||
if bot.owner != user.id {
|
|
||||||
return Err(Error::BotIsPrivate);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
let user = Ref::from_unchecked(bot.id.clone()).fetch_user().await?;
|
|
||||||
|
|
||||||
Ok(json!({
|
|
||||||
"_id": bot.id,
|
|
||||||
"username": user.username,
|
|
||||||
"avatar": user.avatar,
|
|
||||||
"description": user.profile.map(|p| p.content)
|
|
||||||
}))
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
use crate::database::*;
|
use revolt_quark::{EmptyResponse, Result};
|
||||||
use crate::util::result::{Error, Result, EmptyResponse};
|
|
||||||
|
|
||||||
use rocket::serde::json::Json;
|
use rocket::serde::json::Json;
|
||||||
use serde::Deserialize;
|
use serde::Deserialize;
|
||||||
@@ -22,49 +21,6 @@ pub enum Destination {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#[post("/<target>/invite", data = "<dest>")]
|
#[post("/<target>/invite", data = "<dest>")]
|
||||||
pub async fn invite_bot(user: User, target: Ref, dest: Json<Destination>) -> Result<EmptyResponse> {
|
pub async fn invite_bot(/*user: UserRef, target: Ref,*/ target: String, dest: Json<Destination>) -> Result<EmptyResponse> {
|
||||||
if user.bot.is_some() {
|
todo!()
|
||||||
return Err(Error::IsBot)
|
|
||||||
}
|
|
||||||
|
|
||||||
let bot = target.fetch_bot().await?;
|
|
||||||
|
|
||||||
if !bot.public {
|
|
||||||
if bot.owner != user.id {
|
|
||||||
return Err(Error::BotIsPrivate);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
match dest.into_inner() {
|
|
||||||
Destination::Server(ServerId { server }) => {
|
|
||||||
let server = Ref::from(server)?.fetch_server().await?;
|
|
||||||
|
|
||||||
let perm = permissions::PermissionCalculator::new(&user)
|
|
||||||
.with_server(&server)
|
|
||||||
.for_server()
|
|
||||||
.await?;
|
|
||||||
|
|
||||||
if !perm.get_manage_server() {
|
|
||||||
Err(Error::MissingPermission)?
|
|
||||||
}
|
|
||||||
|
|
||||||
server.join_member(&bot.id).await?;
|
|
||||||
Ok(EmptyResponse {})
|
|
||||||
}
|
|
||||||
Destination::Group(GroupId { group }) => {
|
|
||||||
let channel = Ref::from(group)?.fetch_channel().await?;
|
|
||||||
|
|
||||||
let perm = permissions::PermissionCalculator::new(&user)
|
|
||||||
.with_channel(&channel)
|
|
||||||
.for_channel()
|
|
||||||
.await?;
|
|
||||||
|
|
||||||
if !perm.get_invite_others() {
|
|
||||||
Err(Error::MissingPermission)?
|
|
||||||
}
|
|
||||||
|
|
||||||
channel.add_to_group(bot.id, user.id).await?;
|
|
||||||
Ok(EmptyResponse {})
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,38 +1,6 @@
|
|||||||
use crate::database::*;
|
use revolt_quark::{EmptyResponse, Result};
|
||||||
use crate::notifications::events::ClientboundNotification;
|
|
||||||
use crate::util::result::{Error, Result, EmptyResponse};
|
|
||||||
|
|
||||||
#[put("/<target>/ack/<message>")]
|
#[put("/<target>/ack/<message>")]
|
||||||
pub async fn req(user: User, target: Ref, message: Ref) -> Result<EmptyResponse> {
|
pub async fn req(/*user: UserRef, target: Ref, message: Ref*/ target: String, message: String) -> Result<EmptyResponse> {
|
||||||
if user.bot.is_some() {
|
todo!()
|
||||||
return Err(Error::IsBot)
|
|
||||||
}
|
|
||||||
|
|
||||||
let target = target.fetch_channel().await?;
|
|
||||||
|
|
||||||
let perm = permissions::PermissionCalculator::new(&user)
|
|
||||||
.with_channel(&target)
|
|
||||||
.for_channel()
|
|
||||||
.await?;
|
|
||||||
|
|
||||||
if !perm.get_view() {
|
|
||||||
Err(Error::MissingPermission)?
|
|
||||||
}
|
|
||||||
|
|
||||||
crate::task_queue::task_ack::queue(
|
|
||||||
target.id().into(),
|
|
||||||
user.id.clone(),
|
|
||||||
crate::task_queue::task_ack::AckEvent::AckMessage {
|
|
||||||
id: message.id.clone()
|
|
||||||
}
|
|
||||||
).await;
|
|
||||||
|
|
||||||
ClientboundNotification::ChannelAck {
|
|
||||||
id: target.id().into(),
|
|
||||||
user: user.id.clone(),
|
|
||||||
message_id: message.id,
|
|
||||||
}
|
|
||||||
.publish(user.id);
|
|
||||||
|
|
||||||
Ok(EmptyResponse {})
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,119 +1,8 @@
|
|||||||
use crate::util::result::{Error, Result, EmptyResponse};
|
use revolt_quark::{EmptyResponse, Result};
|
||||||
use crate::{database::*, notifications::events::ClientboundNotification};
|
|
||||||
|
|
||||||
use mongodb::bson::doc;
|
use mongodb::bson::doc;
|
||||||
|
|
||||||
#[delete("/<target>")]
|
#[delete("/<target>")]
|
||||||
pub async fn req(user: User, target: Ref) -> Result<EmptyResponse> {
|
pub async fn req(/*user: UserRef, target: Ref*/ target: String) -> Result<EmptyResponse> {
|
||||||
let target = target.fetch_channel().await?;
|
todo!()
|
||||||
|
|
||||||
let perm = permissions::PermissionCalculator::new(&user)
|
|
||||||
.with_channel(&target)
|
|
||||||
.for_channel()
|
|
||||||
.await?;
|
|
||||||
|
|
||||||
if !perm.get_view() {
|
|
||||||
Err(Error::MissingPermission)?
|
|
||||||
}
|
|
||||||
|
|
||||||
match &target {
|
|
||||||
Channel::SavedMessages { .. } => Err(Error::NoEffect),
|
|
||||||
Channel::DirectMessage { .. } => {
|
|
||||||
get_collection("channels")
|
|
||||||
.update_one(
|
|
||||||
doc! {
|
|
||||||
"_id": target.id()
|
|
||||||
},
|
|
||||||
doc! {
|
|
||||||
"$set": {
|
|
||||||
"active": false
|
|
||||||
}
|
|
||||||
},
|
|
||||||
None,
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "update_one",
|
|
||||||
with: "channel",
|
|
||||||
})?;
|
|
||||||
|
|
||||||
Ok(EmptyResponse {})
|
|
||||||
}
|
|
||||||
Channel::Group {
|
|
||||||
id,
|
|
||||||
owner,
|
|
||||||
recipients,
|
|
||||||
..
|
|
||||||
} => {
|
|
||||||
if &user.id == owner {
|
|
||||||
if let Some(new_owner) = recipients.iter().find(|x| *x != &user.id) {
|
|
||||||
get_collection("channels")
|
|
||||||
.update_one(
|
|
||||||
doc! {
|
|
||||||
"_id": &id
|
|
||||||
},
|
|
||||||
doc! {
|
|
||||||
"$set": {
|
|
||||||
"owner": new_owner
|
|
||||||
},
|
|
||||||
"$pull": {
|
|
||||||
"recipients": &user.id
|
|
||||||
}
|
|
||||||
},
|
|
||||||
None,
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "update_one",
|
|
||||||
with: "channel",
|
|
||||||
})?;
|
|
||||||
|
|
||||||
target.publish_update(json!({ "owner": new_owner })).await?;
|
|
||||||
} else {
|
|
||||||
target.delete().await?;
|
|
||||||
return Ok(EmptyResponse {});
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
get_collection("channels")
|
|
||||||
.update_one(
|
|
||||||
doc! {
|
|
||||||
"_id": &id
|
|
||||||
},
|
|
||||||
doc! {
|
|
||||||
"$pull": {
|
|
||||||
"recipients": &user.id
|
|
||||||
}
|
|
||||||
},
|
|
||||||
None,
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "update_one",
|
|
||||||
with: "channel",
|
|
||||||
})?;
|
|
||||||
}
|
|
||||||
|
|
||||||
ClientboundNotification::ChannelGroupLeave {
|
|
||||||
id: id.clone(),
|
|
||||||
user: user.id.clone(),
|
|
||||||
}
|
|
||||||
.publish(id.clone());
|
|
||||||
|
|
||||||
Content::SystemMessage(SystemMessage::UserLeft { id: user.id })
|
|
||||||
.send_as_system(&target)
|
|
||||||
.await
|
|
||||||
.ok();
|
|
||||||
|
|
||||||
Ok(EmptyResponse {})
|
|
||||||
}
|
|
||||||
Channel::TextChannel { .. } |
|
|
||||||
Channel::VoiceChannel { .. } => {
|
|
||||||
if perm.get_manage_channel() {
|
|
||||||
target.delete().await?;
|
|
||||||
Ok(EmptyResponse {})
|
|
||||||
} else {
|
|
||||||
Err(Error::MissingPermission)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,8 +1,6 @@
|
|||||||
use crate::notifications::events::ClientboundNotification;
|
use revolt_quark::{EmptyResponse, Result, models::channel::FieldsChannel};
|
||||||
use crate::util::result::{Error, Result, EmptyResponse};
|
|
||||||
use crate::{database::*, notifications::events::RemoveChannelField};
|
|
||||||
|
|
||||||
use mongodb::bson::{doc, to_document};
|
use mongodb::bson::doc;
|
||||||
use rocket::serde::json::Json;
|
use rocket::serde::json::Json;
|
||||||
use serde::{Deserialize, Serialize};
|
use serde::{Deserialize, Serialize};
|
||||||
use validator::Validate;
|
use validator::Validate;
|
||||||
@@ -17,144 +15,12 @@ pub struct Data {
|
|||||||
description: Option<String>,
|
description: Option<String>,
|
||||||
#[validate(length(min = 1, max = 128))]
|
#[validate(length(min = 1, max = 128))]
|
||||||
icon: Option<String>,
|
icon: Option<String>,
|
||||||
remove: Option<RemoveChannelField>,
|
remove: Option<FieldsChannel>,
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
#[serde(skip_serializing_if = "Option::is_none")]
|
||||||
nsfw: Option<bool>
|
nsfw: Option<bool>
|
||||||
}
|
}
|
||||||
|
|
||||||
#[patch("/<target>", data = "<data>")]
|
#[patch("/<target>", data = "<data>")]
|
||||||
pub async fn req(user: User, target: Ref, data: Json<Data>) -> Result<EmptyResponse> {
|
pub async fn req(/*user: UserRef, target: Ref,*/ target: String, data: Json<Data>) -> Result<EmptyResponse> {
|
||||||
let data = data.into_inner();
|
todo!()
|
||||||
data.validate()
|
|
||||||
.map_err(|error| Error::FailedValidation { error })?;
|
|
||||||
|
|
||||||
if data.name.is_none()
|
|
||||||
&& data.description.is_none()
|
|
||||||
&& data.icon.is_none()
|
|
||||||
&& data.remove.is_none()
|
|
||||||
&& data.nsfw.is_none()
|
|
||||||
{
|
|
||||||
return Ok(EmptyResponse {});
|
|
||||||
}
|
|
||||||
|
|
||||||
let target = target.fetch_channel().await?;
|
|
||||||
let perm = permissions::PermissionCalculator::new(&user)
|
|
||||||
.with_channel(&target)
|
|
||||||
.for_channel()
|
|
||||||
.await?;
|
|
||||||
|
|
||||||
if !perm.get_manage_channel() {
|
|
||||||
Err(Error::MissingPermission)?
|
|
||||||
}
|
|
||||||
|
|
||||||
match &target {
|
|
||||||
Channel::Group { id, icon, .. }
|
|
||||||
| Channel::TextChannel { id, icon, .. }
|
|
||||||
| Channel::VoiceChannel { id, icon, .. } => {
|
|
||||||
let mut set = doc! {};
|
|
||||||
let mut unset = doc! {};
|
|
||||||
|
|
||||||
let mut remove_icon = false;
|
|
||||||
if let Some(remove) = &data.remove {
|
|
||||||
match remove {
|
|
||||||
RemoveChannelField::Icon => {
|
|
||||||
unset.insert("icon", 1);
|
|
||||||
remove_icon = true;
|
|
||||||
}
|
|
||||||
RemoveChannelField::Description => {
|
|
||||||
unset.insert("description", 1);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if let Some(name) = &data.name {
|
|
||||||
set.insert("name", name);
|
|
||||||
}
|
|
||||||
|
|
||||||
if let Some(description) = &data.description {
|
|
||||||
set.insert("description", description);
|
|
||||||
}
|
|
||||||
|
|
||||||
if let Some(attachment_id) = &data.icon {
|
|
||||||
let attachment =
|
|
||||||
File::find_and_use(&attachment_id, "icons", "object", target.id()).await?;
|
|
||||||
set.insert(
|
|
||||||
"icon",
|
|
||||||
to_document(&attachment).map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "to_document",
|
|
||||||
with: "attachment",
|
|
||||||
})?,
|
|
||||||
);
|
|
||||||
|
|
||||||
remove_icon = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
if let Some(nsfw) = &data.nsfw {
|
|
||||||
set.insert("nsfw", nsfw);
|
|
||||||
}
|
|
||||||
|
|
||||||
let mut operations = doc! {};
|
|
||||||
if set.len() > 0 {
|
|
||||||
operations.insert("$set", &set);
|
|
||||||
}
|
|
||||||
|
|
||||||
if unset.len() > 0 {
|
|
||||||
operations.insert("$unset", unset);
|
|
||||||
}
|
|
||||||
|
|
||||||
if operations.len() > 0 {
|
|
||||||
get_collection("channels")
|
|
||||||
.update_one(doc! { "_id": &id }, operations, None)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "update_one",
|
|
||||||
with: "channel",
|
|
||||||
})?;
|
|
||||||
}
|
|
||||||
|
|
||||||
ClientboundNotification::ChannelUpdate {
|
|
||||||
id: id.clone(),
|
|
||||||
data: json!(set),
|
|
||||||
clear: data.remove,
|
|
||||||
}
|
|
||||||
.publish(id.clone());
|
|
||||||
|
|
||||||
if let Channel::Group { .. } = &target {
|
|
||||||
if let Some(name) = data.name {
|
|
||||||
Content::SystemMessage(SystemMessage::ChannelRenamed {
|
|
||||||
name,
|
|
||||||
by: user.id.clone(),
|
|
||||||
})
|
|
||||||
.send_as_system(&target)
|
|
||||||
.await
|
|
||||||
.ok();
|
|
||||||
}
|
|
||||||
|
|
||||||
if let Some(_) = data.description {
|
|
||||||
Content::SystemMessage(SystemMessage::ChannelDescriptionChanged {
|
|
||||||
by: user.id.clone(),
|
|
||||||
})
|
|
||||||
.send_as_system(&target)
|
|
||||||
.await
|
|
||||||
.ok();
|
|
||||||
}
|
|
||||||
|
|
||||||
if let Some(_) = data.icon {
|
|
||||||
Content::SystemMessage(SystemMessage::ChannelIconChanged { by: user.id })
|
|
||||||
.send_as_system(&target)
|
|
||||||
.await
|
|
||||||
.ok();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if remove_icon {
|
|
||||||
if let Some(old_icon) = icon {
|
|
||||||
old_icon.delete().await?;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Ok(EmptyResponse {})
|
|
||||||
}
|
|
||||||
_ => Err(Error::InvalidOperation),
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,20 +1,8 @@
|
|||||||
use crate::database::*;
|
use revolt_quark::Result;
|
||||||
use crate::util::result::{Error, Result};
|
|
||||||
|
|
||||||
use rocket::serde::json::Value;
|
use rocket::serde::json::Value;
|
||||||
|
|
||||||
#[get("/<target>")]
|
#[get("/<target>")]
|
||||||
pub async fn req(user: User, target: Ref) -> Result<Value> {
|
pub async fn req(/*user: UserRef, target: Ref*/ target: String) -> Result<Value> {
|
||||||
let target = target.fetch_channel().await?;
|
todo!()
|
||||||
|
|
||||||
let perm = permissions::PermissionCalculator::new(&user)
|
|
||||||
.with_channel(&target)
|
|
||||||
.for_channel()
|
|
||||||
.await?;
|
|
||||||
|
|
||||||
if !perm.get_view() {
|
|
||||||
Err(Error::MissingPermission)?
|
|
||||||
}
|
|
||||||
|
|
||||||
Ok(json!(target))
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,24 +1,8 @@
|
|||||||
use crate::util::result::{Error, Result, EmptyResponse};
|
use revolt_quark::{EmptyResponse, Result};
|
||||||
use crate::database::*;
|
|
||||||
|
|
||||||
use mongodb::bson::doc;
|
use mongodb::bson::doc;
|
||||||
|
|
||||||
#[put("/<target>/recipients/<member>")]
|
#[put("/<target>/recipients/<member>")]
|
||||||
pub async fn req(user: User, target: Ref, member: Ref) -> Result<EmptyResponse> {
|
pub async fn req(/*user: UserRef, target: Ref, member: Ref*/ target: String, member: String) -> Result<EmptyResponse> {
|
||||||
if get_relationship(&user, &member.id) != RelationshipStatus::Friend {
|
todo!()
|
||||||
Err(Error::NotFriends)?
|
|
||||||
}
|
|
||||||
|
|
||||||
let channel = target.fetch_channel().await?;
|
|
||||||
let perm = permissions::PermissionCalculator::new(&user)
|
|
||||||
.with_channel(&channel)
|
|
||||||
.for_channel()
|
|
||||||
.await?;
|
|
||||||
|
|
||||||
if !perm.get_invite_others() {
|
|
||||||
Err(Error::MissingPermission)?
|
|
||||||
}
|
|
||||||
|
|
||||||
channel.add_to_group(member.id, user.id).await?;
|
|
||||||
Ok(EmptyResponse {})
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,14 +1,8 @@
|
|||||||
use crate::database::*;
|
use revolt_quark::Result;
|
||||||
use crate::util::idempotency::IdempotencyKey;
|
|
||||||
use crate::util::result::{Error, Result};
|
|
||||||
use crate::util::variables::MAX_GROUP_SIZE;
|
|
||||||
|
|
||||||
use mongodb::bson::doc;
|
use mongodb::bson::doc;
|
||||||
use rocket::serde::json::{Json, Value};
|
use rocket::serde::json::{Json, Value};
|
||||||
use serde::{Deserialize, Serialize};
|
use serde::{Deserialize, Serialize};
|
||||||
use std::collections::HashSet;
|
|
||||||
use std::iter::FromIterator;
|
|
||||||
use ulid::Ulid;
|
|
||||||
use validator::Validate;
|
use validator::Validate;
|
||||||
|
|
||||||
#[derive(Validate, Serialize, Deserialize)]
|
#[derive(Validate, Serialize, Deserialize)]
|
||||||
@@ -23,47 +17,6 @@ pub struct Data {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#[post("/create", data = "<info>")]
|
#[post("/create", data = "<info>")]
|
||||||
pub async fn req(_idempotency: IdempotencyKey, user: User, info: Json<Data>) -> Result<Value> {
|
pub async fn req(/*_idempotency: IdempotencyKey, user: User,*/ info: Json<Data>) -> Result<Value> {
|
||||||
if user.bot.is_some() {
|
todo!();
|
||||||
return Err(Error::IsBot)
|
|
||||||
}
|
|
||||||
|
|
||||||
let info = info.into_inner();
|
|
||||||
info.validate()
|
|
||||||
.map_err(|error| Error::FailedValidation { error })?;
|
|
||||||
|
|
||||||
let mut set: HashSet<String> = HashSet::from_iter(info.users.iter().cloned());
|
|
||||||
set.insert(user.id.clone());
|
|
||||||
|
|
||||||
if set.len() > *MAX_GROUP_SIZE {
|
|
||||||
Err(Error::GroupTooLarge {
|
|
||||||
max: *MAX_GROUP_SIZE,
|
|
||||||
})?
|
|
||||||
}
|
|
||||||
|
|
||||||
for target in &set {
|
|
||||||
match get_relationship(&user, target) {
|
|
||||||
RelationshipStatus::Friend | RelationshipStatus::User => {}
|
|
||||||
_ => {
|
|
||||||
return Err(Error::NotFriends);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
let id = Ulid::new().to_string();
|
|
||||||
let channel = Channel::Group {
|
|
||||||
id,
|
|
||||||
name: info.name,
|
|
||||||
description: info.description,
|
|
||||||
owner: user.id,
|
|
||||||
recipients: set.into_iter().collect::<Vec<String>>(),
|
|
||||||
icon: None,
|
|
||||||
last_message_id: None,
|
|
||||||
permissions: None,
|
|
||||||
nsfw: info.nsfw.unwrap_or_default()
|
|
||||||
};
|
|
||||||
|
|
||||||
channel.clone().publish().await?;
|
|
||||||
|
|
||||||
Ok(json!(channel))
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,66 +1,8 @@
|
|||||||
use crate::util::result::{Error, Result, EmptyResponse};
|
use revolt_quark::{EmptyResponse, Result};
|
||||||
use crate::{database::*, notifications::events::ClientboundNotification};
|
|
||||||
|
|
||||||
use mongodb::bson::doc;
|
use mongodb::bson::doc;
|
||||||
|
|
||||||
#[delete("/<target>/recipients/<member>")]
|
#[delete("/<target>/recipients/<member>")]
|
||||||
pub async fn req(user: User, target: Ref, member: Ref) -> Result<EmptyResponse> {
|
pub async fn req(/*user: UserRef, target: Ref, member: Ref*/ target: String, member: String) -> Result<EmptyResponse> {
|
||||||
if &user.id == &member.id {
|
todo!()
|
||||||
Err(Error::CannotRemoveYourself)?
|
|
||||||
}
|
|
||||||
|
|
||||||
let channel = target.fetch_channel().await?;
|
|
||||||
|
|
||||||
if let Channel::Group {
|
|
||||||
id,
|
|
||||||
owner,
|
|
||||||
recipients,
|
|
||||||
..
|
|
||||||
} = &channel
|
|
||||||
{
|
|
||||||
if &user.id != owner {
|
|
||||||
// figure out if we want to use perm system here
|
|
||||||
Err(Error::MissingPermission)?
|
|
||||||
}
|
|
||||||
|
|
||||||
if recipients.iter().find(|x| *x == &member.id).is_none() {
|
|
||||||
Err(Error::NotInGroup)?
|
|
||||||
}
|
|
||||||
|
|
||||||
get_collection("channels")
|
|
||||||
.update_one(
|
|
||||||
doc! {
|
|
||||||
"_id": &id
|
|
||||||
},
|
|
||||||
doc! {
|
|
||||||
"$pull": {
|
|
||||||
"recipients": &member.id
|
|
||||||
}
|
|
||||||
},
|
|
||||||
None,
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "update_one",
|
|
||||||
with: "channel",
|
|
||||||
})?;
|
|
||||||
|
|
||||||
ClientboundNotification::ChannelGroupLeave {
|
|
||||||
id: id.clone(),
|
|
||||||
user: member.id.clone(),
|
|
||||||
}
|
|
||||||
.publish(id.clone());
|
|
||||||
|
|
||||||
Content::SystemMessage(SystemMessage::UserRemove {
|
|
||||||
id: member.id,
|
|
||||||
by: user.id,
|
|
||||||
})
|
|
||||||
.send_as_system(&channel)
|
|
||||||
.await
|
|
||||||
.ok();
|
|
||||||
|
|
||||||
Ok(EmptyResponse {})
|
|
||||||
} else {
|
|
||||||
Err(Error::InvalidOperation)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,8 +1,6 @@
|
|||||||
use crate::database::*;
|
use revolt_quark::Result;
|
||||||
use crate::util::result::{Error, Result};
|
|
||||||
|
|
||||||
use mongodb::bson::doc;
|
use mongodb::bson::doc;
|
||||||
use nanoid::nanoid;
|
|
||||||
use rocket::serde::json::Value;
|
use rocket::serde::json::Value;
|
||||||
|
|
||||||
lazy_static! {
|
lazy_static! {
|
||||||
@@ -14,35 +12,6 @@ lazy_static! {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#[post("/<target>/invites")]
|
#[post("/<target>/invites")]
|
||||||
pub async fn req(user: User, target: Ref) -> Result<Value> {
|
pub async fn req(/*user: UserRef, target: Ref*/ target: String) -> Result<Value> {
|
||||||
let target = target.fetch_channel().await?;
|
todo!()
|
||||||
let perm = permissions::PermissionCalculator::new(&user)
|
|
||||||
.with_channel(&target)
|
|
||||||
.for_channel()
|
|
||||||
.await?;
|
|
||||||
|
|
||||||
if !perm.get_invite_others() {
|
|
||||||
return Err(Error::MissingPermission);
|
|
||||||
}
|
|
||||||
|
|
||||||
let code = nanoid!(8, &*ALPHABET);
|
|
||||||
match &target {
|
|
||||||
Channel::Group { .. } => {
|
|
||||||
unimplemented!()
|
|
||||||
}
|
|
||||||
Channel::TextChannel { id, server, .. }
|
|
||||||
| Channel::VoiceChannel { id, server, .. } => {
|
|
||||||
Invite::Server {
|
|
||||||
code: code.clone(),
|
|
||||||
creator: user.id,
|
|
||||||
server: server.clone(),
|
|
||||||
channel: id.clone(),
|
|
||||||
}
|
|
||||||
.save()
|
|
||||||
.await?;
|
|
||||||
|
|
||||||
Ok(json!({ "code": code }))
|
|
||||||
}
|
|
||||||
_ => Err(Error::InvalidOperation),
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,23 +1,8 @@
|
|||||||
use crate::database::*;
|
use revolt_quark::Result;
|
||||||
use crate::util::result::{Error, Result};
|
|
||||||
|
|
||||||
use rocket::serde::json::Value;
|
use rocket::serde::json::Value;
|
||||||
|
|
||||||
#[get("/<target>/members")]
|
#[get("/<target>/members")]
|
||||||
pub async fn req(user: User, target: Ref) -> Result<Value> {
|
pub async fn req(/*user: UserRef, target: Ref*/ target: String) -> Result<Value> {
|
||||||
let target = target.fetch_channel().await?;
|
todo!()
|
||||||
|
|
||||||
let perm = permissions::PermissionCalculator::new(&user)
|
|
||||||
.with_channel(&target)
|
|
||||||
.for_channel()
|
|
||||||
.await?;
|
|
||||||
if !perm.get_view() {
|
|
||||||
Err(Error::MissingPermission)?
|
|
||||||
}
|
|
||||||
|
|
||||||
if let Channel::Group { recipients, .. } = target {
|
|
||||||
Ok(json!(user.fetch_multiple_users(&recipients).await?))
|
|
||||||
} else {
|
|
||||||
Err(Error::InvalidOperation)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,29 +1,8 @@
|
|||||||
use crate::database::*;
|
use revolt_quark::{EmptyResponse, Result};
|
||||||
use crate::util::result::{Error, Result, EmptyResponse};
|
|
||||||
|
|
||||||
use mongodb::bson::doc;
|
use mongodb::bson::doc;
|
||||||
|
|
||||||
#[delete("/<target>/messages/<msg>")]
|
#[delete("/<target>/messages/<msg>")]
|
||||||
pub async fn req(user: User, target: Ref, msg: Ref) -> Result<EmptyResponse> {
|
pub async fn req(/*user: UserRef, target: Ref, msg: Ref*/ target: String, msg: String) -> Result<EmptyResponse> {
|
||||||
let channel = target.fetch_channel().await?;
|
todo!()
|
||||||
channel.has_messaging()?;
|
|
||||||
|
|
||||||
let perm = permissions::PermissionCalculator::new(&user)
|
|
||||||
.with_channel(&channel)
|
|
||||||
.for_channel()
|
|
||||||
.await?;
|
|
||||||
if !perm.get_view() {
|
|
||||||
Err(Error::MissingPermission)?
|
|
||||||
}
|
|
||||||
|
|
||||||
let message = msg.fetch_message(&channel).await?;
|
|
||||||
if message.author != user.id && !perm.get_manage_messages() {
|
|
||||||
match channel {
|
|
||||||
Channel::SavedMessages { .. } => unreachable!(),
|
|
||||||
_ => Err(Error::CannotEditMessage)?,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
message.delete().await?;
|
|
||||||
Ok(EmptyResponse {})
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,4 @@
|
|||||||
use crate::database::*;
|
use revolt_quark::{EmptyResponse, Result};
|
||||||
use crate::util::result::{Error, Result, EmptyResponse};
|
|
||||||
use crate::routes::channels::message_send::SendableEmbed;
|
|
||||||
|
|
||||||
use chrono::Utc;
|
use chrono::Utc;
|
||||||
use mongodb::bson::{Bson, Document, doc, to_document};
|
use mongodb::bson::{Bson, Document, doc, to_document};
|
||||||
@@ -12,95 +10,11 @@ use validator::Validate;
|
|||||||
pub struct Data {
|
pub struct Data {
|
||||||
#[validate(length(min = 1, max = 2000))]
|
#[validate(length(min = 1, max = 2000))]
|
||||||
content: Option<String>,
|
content: Option<String>,
|
||||||
#[validate(length(min = 0, max = 10))]
|
// #[validate(length(min = 0, max = 10))]
|
||||||
embeds: Option<Vec<SendableEmbed>>
|
// embeds: Option<Vec<SendableEmbed>>
|
||||||
}
|
}
|
||||||
|
|
||||||
#[patch("/<target>/messages/<msg>", data = "<edit>")]
|
#[patch("/<target>/messages/<msg>", data = "<edit>")]
|
||||||
pub async fn req(user: User, target: Ref, msg: Ref, edit: Json<Data>) -> Result<EmptyResponse> {
|
pub async fn req(/*user: UserRef, target: Ref, msg: Ref,*/ target: String, msg: String, edit: Json<Data>) -> Result<EmptyResponse> {
|
||||||
edit.validate()
|
todo!()
|
||||||
.map_err(|error| Error::FailedValidation { error })?;
|
|
||||||
|
|
||||||
let channel = target.fetch_channel().await?;
|
|
||||||
channel.has_messaging()?;
|
|
||||||
|
|
||||||
let perm = permissions::PermissionCalculator::new(&user)
|
|
||||||
.with_channel(&channel)
|
|
||||||
.for_channel()
|
|
||||||
.await?;
|
|
||||||
if !perm.get_view() {
|
|
||||||
Err(Error::MissingPermission)?
|
|
||||||
}
|
|
||||||
|
|
||||||
let mut message = msg.fetch_message(&channel).await?;
|
|
||||||
if message.author != user.id {
|
|
||||||
Err(Error::CannotEditMessage)?
|
|
||||||
}
|
|
||||||
|
|
||||||
let edited = Utc::now();
|
|
||||||
let mut set = doc! { "edited": Bson::DateTime(edited) };
|
|
||||||
let mut unset = doc! {};
|
|
||||||
let mut update = json!({ "edited": Bson::DateTime(edited) });
|
|
||||||
|
|
||||||
if let Some(new_content) = &edit.content {
|
|
||||||
set.insert("content", new_content.clone());
|
|
||||||
update.as_object_mut().unwrap().insert("content".to_string(), json!(new_content.clone()));
|
|
||||||
message.content = Content::Text(new_content.clone());
|
|
||||||
}
|
|
||||||
|
|
||||||
let mut new_embeds: Vec<Embed> = vec![];
|
|
||||||
|
|
||||||
if let Some(embeds) = &message.embeds {
|
|
||||||
for embed in embeds {
|
|
||||||
match embed {
|
|
||||||
Embed::Text(embed) => new_embeds.push(Embed::Text(embed.clone())),
|
|
||||||
_ => {}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if let Some(edited_embeds) = &edit.embeds {
|
|
||||||
new_embeds.clear();
|
|
||||||
|
|
||||||
for embed in edited_embeds {
|
|
||||||
new_embeds.push(embed.clone().into_embed(message.id.clone()).await?);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if new_embeds.len() > 0 {
|
|
||||||
let embed_docs: Vec<Document> = new_embeds
|
|
||||||
.clone()
|
|
||||||
.into_iter()
|
|
||||||
.map(|embed| to_document(&embed).unwrap())
|
|
||||||
.collect();
|
|
||||||
|
|
||||||
let obj = update.as_object_mut().unwrap();
|
|
||||||
obj.insert("embeds".to_string(), json!(embed_docs));
|
|
||||||
set.insert("embeds", embed_docs);
|
|
||||||
message.embeds = Some(new_embeds)
|
|
||||||
} else if edit.embeds.is_some() {
|
|
||||||
let obj = update.as_object_mut().unwrap();
|
|
||||||
obj.insert("embeds".to_string(), json!([]));
|
|
||||||
unset.insert("embeds", 1 as u32);
|
|
||||||
}
|
|
||||||
|
|
||||||
get_collection("messages")
|
|
||||||
.update_one(
|
|
||||||
doc! {
|
|
||||||
"_id": &message.id
|
|
||||||
},
|
|
||||||
doc! {
|
|
||||||
"$set": set,
|
|
||||||
"$unset": unset
|
|
||||||
},
|
|
||||||
None,
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "update_one",
|
|
||||||
with: "message",
|
|
||||||
})?;
|
|
||||||
|
|
||||||
message.publish_update(update).await?;
|
|
||||||
Ok(EmptyResponse {})
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,21 +1,8 @@
|
|||||||
use crate::database::*;
|
use revolt_quark::Result;
|
||||||
use crate::util::result::{Error, Result};
|
|
||||||
|
|
||||||
use rocket::serde::json::Value;
|
use rocket::serde::json::Value;
|
||||||
|
|
||||||
#[get("/<target>/messages/<msg>")]
|
#[get("/<target>/messages/<msg>")]
|
||||||
pub async fn req(user: User, target: Ref, msg: Ref) -> Result<Value> {
|
pub async fn req(/*user: UserRef, target: Ref, msg: Ref*/ target: String, msg: String) -> Result<Value> {
|
||||||
let channel = target.fetch_channel().await?;
|
todo!()
|
||||||
channel.has_messaging()?;
|
|
||||||
|
|
||||||
let perm = permissions::PermissionCalculator::new(&user)
|
|
||||||
.with_channel(&channel)
|
|
||||||
.for_channel()
|
|
||||||
.await?;
|
|
||||||
if !perm.get_view() {
|
|
||||||
Err(Error::MissingPermission)?
|
|
||||||
}
|
|
||||||
|
|
||||||
let message = msg.fetch_message(&channel).await?;
|
|
||||||
Ok(json!(message))
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
use std::collections::HashSet;
|
use std::collections::HashSet;
|
||||||
|
|
||||||
use crate::database::*;
|
use revolt_quark::{Error, Result};
|
||||||
use crate::util::result::{Error, Result};
|
|
||||||
|
|
||||||
use futures::{StreamExt, try_join};
|
use futures::{StreamExt, try_join};
|
||||||
use mongodb::{
|
use mongodb::{
|
||||||
@@ -36,151 +35,6 @@ pub struct Options {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#[get("/<target>/messages?<options..>")]
|
#[get("/<target>/messages?<options..>")]
|
||||||
pub async fn req(user: User, target: Ref, options: Options) -> Result<Value> {
|
pub async fn req(/*user: UserRef, target: Ref,*/ target: String, options: Options) -> Result<Value> {
|
||||||
options
|
todo!()
|
||||||
.validate()
|
|
||||||
.map_err(|error| Error::FailedValidation { error })?;
|
|
||||||
|
|
||||||
let target = target.fetch_channel().await?;
|
|
||||||
target.has_messaging()?;
|
|
||||||
|
|
||||||
let perm = permissions::PermissionCalculator::new(&user)
|
|
||||||
.with_channel(&target)
|
|
||||||
.for_channel()
|
|
||||||
.await?;
|
|
||||||
if !perm.get_view() {
|
|
||||||
Err(Error::MissingPermission)?
|
|
||||||
}
|
|
||||||
|
|
||||||
let mut messages = vec![];
|
|
||||||
|
|
||||||
let collection = get_collection("messages");
|
|
||||||
let limit = options.limit.unwrap_or(50);
|
|
||||||
let channel = target.id();
|
|
||||||
if let Some(nearby) = &options.nearby {
|
|
||||||
let mut cursors = try_join!(
|
|
||||||
collection.find(
|
|
||||||
doc! {
|
|
||||||
"channel": channel,
|
|
||||||
"_id": {
|
|
||||||
"$gte": &nearby
|
|
||||||
}
|
|
||||||
},
|
|
||||||
FindOptions::builder()
|
|
||||||
.limit(limit / 2 + 1)
|
|
||||||
.sort(doc! {
|
|
||||||
"_id": 1
|
|
||||||
})
|
|
||||||
.build(),
|
|
||||||
),
|
|
||||||
collection.find(
|
|
||||||
doc! {
|
|
||||||
"channel": channel,
|
|
||||||
"_id": {
|
|
||||||
"$lt": &nearby
|
|
||||||
}
|
|
||||||
},
|
|
||||||
FindOptions::builder()
|
|
||||||
.limit(limit / 2)
|
|
||||||
.sort(doc! {
|
|
||||||
"_id": -1
|
|
||||||
})
|
|
||||||
.build(),
|
|
||||||
)
|
|
||||||
)
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "find",
|
|
||||||
with: "messages",
|
|
||||||
})?;
|
|
||||||
|
|
||||||
while let Some(result) = cursors.0.next().await {
|
|
||||||
if let Ok(doc) = result {
|
|
||||||
messages.push(
|
|
||||||
from_document::<Message>(doc).map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "from_document",
|
|
||||||
with: "message",
|
|
||||||
})?,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
while let Some(result) = cursors.1.next().await {
|
|
||||||
if let Ok(doc) = result {
|
|
||||||
messages.push(
|
|
||||||
from_document::<Message>(doc).map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "from_document",
|
|
||||||
with: "message",
|
|
||||||
})?,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
let mut query = doc! { "channel": target.id() };
|
|
||||||
if let Some(before) = &options.before {
|
|
||||||
query.insert("_id", doc! { "$lt": before });
|
|
||||||
}
|
|
||||||
|
|
||||||
if let Some(after) = &options.after {
|
|
||||||
query.insert("_id", doc! { "$gt": after });
|
|
||||||
}
|
|
||||||
|
|
||||||
let sort: i32 = if let Sort::Latest = options.sort.as_ref().unwrap_or_else(|| &Sort::Latest) {
|
|
||||||
-1
|
|
||||||
} else {
|
|
||||||
1
|
|
||||||
};
|
|
||||||
|
|
||||||
let mut cursor = collection
|
|
||||||
.find(
|
|
||||||
query,
|
|
||||||
FindOptions::builder()
|
|
||||||
.limit(limit)
|
|
||||||
.sort(doc! {
|
|
||||||
"_id": sort
|
|
||||||
})
|
|
||||||
.build(),
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "find",
|
|
||||||
with: "messages",
|
|
||||||
})?;
|
|
||||||
|
|
||||||
while let Some(result) = cursor.next().await {
|
|
||||||
if let Ok(doc) = result {
|
|
||||||
messages.push(
|
|
||||||
from_document::<Message>(doc).map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "from_document",
|
|
||||||
with: "message",
|
|
||||||
})?,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if options.include_users.unwrap_or_else(|| false) {
|
|
||||||
let mut ids = HashSet::new();
|
|
||||||
for message in &messages {
|
|
||||||
message.add_associated_user_ids(&mut ids);
|
|
||||||
}
|
|
||||||
|
|
||||||
ids.remove(&user.id);
|
|
||||||
let user_ids = ids.into_iter().collect();
|
|
||||||
let users = user.fetch_multiple_users(&user_ids).await?;
|
|
||||||
|
|
||||||
if let Channel::TextChannel { server, .. } = target {
|
|
||||||
Ok(json!({
|
|
||||||
"messages": messages,
|
|
||||||
"users": users,
|
|
||||||
"members": Server::fetch_members_with_ids(&server, &user_ids).await?
|
|
||||||
}))
|
|
||||||
} else {
|
|
||||||
Ok(json!({
|
|
||||||
"messages": messages,
|
|
||||||
"users": users,
|
|
||||||
}))
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
Ok(json!(messages))
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
use crate::database::*;
|
use revolt_quark::{Error, Result};
|
||||||
use crate::util::result::{Error, Result};
|
|
||||||
|
|
||||||
use futures::StreamExt;
|
use futures::StreamExt;
|
||||||
use mongodb::bson::{doc, from_document};
|
use mongodb::bson::{doc, from_document};
|
||||||
@@ -12,63 +11,6 @@ pub struct Options {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#[post("/<target>/messages/stale", data = "<data>")]
|
#[post("/<target>/messages/stale", data = "<data>")]
|
||||||
pub async fn req(user: User, target: Ref, data: Json<Options>) -> Result<Value> {
|
pub async fn req(/*user: UserRef, target: Ref,*/ target: String, data: Json<Options>) -> Result<Value> {
|
||||||
if data.ids.len() > 150 {
|
todo!()
|
||||||
return Err(Error::TooManyIds);
|
|
||||||
}
|
|
||||||
|
|
||||||
let target = target.fetch_channel().await?;
|
|
||||||
target.has_messaging()?;
|
|
||||||
|
|
||||||
let perm = permissions::PermissionCalculator::new(&user)
|
|
||||||
.with_channel(&target)
|
|
||||||
.for_channel()
|
|
||||||
.await?;
|
|
||||||
if !perm.get_view() {
|
|
||||||
Err(Error::MissingPermission)?
|
|
||||||
}
|
|
||||||
|
|
||||||
let mut cursor = get_collection("messages")
|
|
||||||
.find(
|
|
||||||
doc! {
|
|
||||||
"_id": {
|
|
||||||
"$in": &data.ids
|
|
||||||
},
|
|
||||||
"channel": target.id()
|
|
||||||
},
|
|
||||||
None,
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "find",
|
|
||||||
with: "messages",
|
|
||||||
})?;
|
|
||||||
|
|
||||||
let mut updated = vec![];
|
|
||||||
let mut found_ids = vec![];
|
|
||||||
while let Some(result) = cursor.next().await {
|
|
||||||
if let Ok(doc) = result {
|
|
||||||
let msg = from_document::<Message>(doc).map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "from_document",
|
|
||||||
with: "message",
|
|
||||||
})?;
|
|
||||||
|
|
||||||
found_ids.push(msg.id.clone());
|
|
||||||
if msg.edited.is_some() {
|
|
||||||
updated.push(msg);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
let mut deleted = vec![];
|
|
||||||
for id in &data.ids {
|
|
||||||
if found_ids.iter().find(|x| *x == id).is_none() {
|
|
||||||
deleted.push(id);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Ok(json!({
|
|
||||||
"updated": updated,
|
|
||||||
"deleted": deleted
|
|
||||||
}))
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,7 +1,4 @@
|
|||||||
use std::collections::HashSet;
|
use revolt_quark::Result;
|
||||||
|
|
||||||
use crate::database::*;
|
|
||||||
use crate::util::result::{Error, Result};
|
|
||||||
|
|
||||||
use futures::StreamExt;
|
use futures::StreamExt;
|
||||||
use mongodb::{
|
use mongodb::{
|
||||||
@@ -42,121 +39,6 @@ pub struct Options {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#[post("/<target>/search", data = "<options>")]
|
#[post("/<target>/search", data = "<options>")]
|
||||||
pub async fn req(user: User, target: Ref, options: Json<Options>) -> Result<Value> {
|
pub async fn req(/*user: UserRef, target: Ref,*/ target: String, options: Json<Options>) -> Result<Value> {
|
||||||
options
|
todo!()
|
||||||
.validate()
|
|
||||||
.map_err(|error| Error::FailedValidation { error })?;
|
|
||||||
|
|
||||||
let target = target.fetch_channel().await?;
|
|
||||||
target.has_messaging()?;
|
|
||||||
|
|
||||||
let perm = permissions::PermissionCalculator::new(&user)
|
|
||||||
.with_channel(&target)
|
|
||||||
.for_channel()
|
|
||||||
.await?;
|
|
||||||
if !perm.get_view() {
|
|
||||||
Err(Error::MissingPermission)?
|
|
||||||
}
|
|
||||||
|
|
||||||
let mut messages = vec![];
|
|
||||||
let limit = options.limit.unwrap_or(50);
|
|
||||||
|
|
||||||
let mut filter = doc! {
|
|
||||||
"channel": target.id(),
|
|
||||||
"$text": {
|
|
||||||
"$search": &options.query
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
if let Some(doc) = match (&options.before, &options.after) {
|
|
||||||
(Some(before), Some(after)) => Some(doc! {
|
|
||||||
"lt": before,
|
|
||||||
"gt": after
|
|
||||||
}),
|
|
||||||
(Some(before), _) => Some(doc! {
|
|
||||||
"lt": before
|
|
||||||
}),
|
|
||||||
(_, Some(after)) => Some(doc! {
|
|
||||||
"gt": after
|
|
||||||
}),
|
|
||||||
_ => None
|
|
||||||
} {
|
|
||||||
filter.insert("_id", doc);
|
|
||||||
}
|
|
||||||
|
|
||||||
let mut cursor = get_collection("messages")
|
|
||||||
.find(
|
|
||||||
filter,
|
|
||||||
FindOptions::builder()
|
|
||||||
.projection(
|
|
||||||
if let Sort::Relevance = &options.sort {
|
|
||||||
doc! {
|
|
||||||
"score": {
|
|
||||||
"$meta": "textScore"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
doc! {}
|
|
||||||
}
|
|
||||||
)
|
|
||||||
.limit(limit)
|
|
||||||
.sort(
|
|
||||||
match &options.sort {
|
|
||||||
Sort::Relevance => doc! {
|
|
||||||
"score": {
|
|
||||||
"$meta": "textScore"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
Sort::Latest => doc! {
|
|
||||||
"_id": -1 as i32
|
|
||||||
},
|
|
||||||
Sort::Oldest => doc! {
|
|
||||||
"_id": 1 as i32
|
|
||||||
}
|
|
||||||
}
|
|
||||||
)
|
|
||||||
.build(),
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "find",
|
|
||||||
with: "messages",
|
|
||||||
})?;
|
|
||||||
|
|
||||||
while let Some(result) = cursor.next().await {
|
|
||||||
if let Ok(doc) = result {
|
|
||||||
messages.push(
|
|
||||||
from_document::<Message>(doc).map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "from_document",
|
|
||||||
with: "message",
|
|
||||||
})?,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if options.include_users.unwrap_or_else(|| false) {
|
|
||||||
let mut ids = HashSet::new();
|
|
||||||
for message in &messages {
|
|
||||||
message.add_associated_user_ids(&mut ids);
|
|
||||||
}
|
|
||||||
|
|
||||||
ids.remove(&user.id);
|
|
||||||
let user_ids = ids.into_iter().collect();
|
|
||||||
let users = user.fetch_multiple_users(&user_ids).await?;
|
|
||||||
|
|
||||||
if let Channel::TextChannel { server, .. } = target {
|
|
||||||
Ok(json!({
|
|
||||||
"messages": messages,
|
|
||||||
"users": users,
|
|
||||||
"members": Server::fetch_members_with_ids(&server, &user_ids).await?
|
|
||||||
}))
|
|
||||||
} else {
|
|
||||||
Ok(json!({
|
|
||||||
"messages": messages,
|
|
||||||
"users": users,
|
|
||||||
}))
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
Ok(json!(messages))
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,15 +1,9 @@
|
|||||||
use std::collections::HashSet;
|
use revolt_quark::{Result, models::message::Masquerade};
|
||||||
|
|
||||||
use crate::database::*;
|
|
||||||
use crate::util::idempotency::IdempotencyKey;
|
|
||||||
use crate::util::ratelimit::{Ratelimiter, RatelimitResponse};
|
|
||||||
use crate::util::result::{Error, Result};
|
|
||||||
|
|
||||||
use mongodb::bson::doc;
|
use mongodb::bson::doc;
|
||||||
use regex::Regex;
|
use regex::Regex;
|
||||||
use rocket::serde::json::{Json, Value};
|
use rocket::serde::json::{Json, Value};
|
||||||
use serde::{Deserialize, Serialize};
|
use serde::{Deserialize, Serialize};
|
||||||
use ulid::Ulid;
|
|
||||||
use validator::Validate;
|
use validator::Validate;
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize)]
|
#[derive(Serialize, Deserialize)]
|
||||||
@@ -29,24 +23,6 @@ pub struct SendableEmbed {
|
|||||||
media: Option<String>,
|
media: Option<String>,
|
||||||
colour: Option<String>,
|
colour: Option<String>,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl SendableEmbed {
|
|
||||||
pub async fn into_embed(self, message_id: String) -> Result<Embed> {
|
|
||||||
let media = if let Some(id) = self.media {
|
|
||||||
Some(File::find_and_use(&id, "attachments", "message", &message_id).await?)
|
|
||||||
} else { None };
|
|
||||||
|
|
||||||
Ok(Embed::Text(Text {
|
|
||||||
icon_url: self.icon_url,
|
|
||||||
url: self.url,
|
|
||||||
title: self.title,
|
|
||||||
description: self.description,
|
|
||||||
media,
|
|
||||||
colour: self.colour
|
|
||||||
}))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Validate, Serialize, Deserialize)]
|
#[derive(Validate, Serialize, Deserialize)]
|
||||||
pub struct Data {
|
pub struct Data {
|
||||||
#[validate(length(min = 0, max = 2000))]
|
#[validate(length(min = 0, max = 2000))]
|
||||||
@@ -55,7 +31,7 @@ pub struct Data {
|
|||||||
attachments: Option<Vec<String>>,
|
attachments: Option<Vec<String>>,
|
||||||
nonce: Option<String>,
|
nonce: Option<String>,
|
||||||
replies: Option<Vec<Reply>>,
|
replies: Option<Vec<Reply>>,
|
||||||
#[validate]
|
//#[validate]
|
||||||
masquerade: Option<Masquerade>,
|
masquerade: Option<Masquerade>,
|
||||||
#[validate(length(min = 1, max = 10))]
|
#[validate(length(min = 1, max = 10))]
|
||||||
embeds: Option<Vec<SendableEmbed>>
|
embeds: Option<Vec<SendableEmbed>>
|
||||||
@@ -67,115 +43,6 @@ lazy_static! {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#[post("/<target>/messages", data = "<message>")]
|
#[post("/<target>/messages", data = "<message>")]
|
||||||
pub async fn message_send(user: User, _r: Ratelimiter, mut idempotency: IdempotencyKey, target: Ref, message: Json<Data>) -> Result<RatelimitResponse<Value>> {
|
pub async fn message_send(/*user: UserRef, _r: Ratelimiter, mut idempotency: IdempotencyKey, target: Ref,*/ target: String, message: Json<Data>) -> /*Result<RatelimitResponse<Value>>*/ Result<Value> {
|
||||||
let message = message.into_inner();
|
todo!()
|
||||||
idempotency.consume_nonce(message.nonce.clone());
|
|
||||||
|
|
||||||
message
|
|
||||||
.validate()
|
|
||||||
.map_err(|error| Error::FailedValidation { error })?;
|
|
||||||
|
|
||||||
if message.content.len() == 0
|
|
||||||
&& (message.attachments.is_none() || message.attachments.as_ref().unwrap().len() == 0)
|
|
||||||
{
|
|
||||||
return Err(Error::EmptyMessage);
|
|
||||||
}
|
|
||||||
|
|
||||||
let target = target.fetch_channel().await?;
|
|
||||||
target.has_messaging()?;
|
|
||||||
|
|
||||||
let perm = permissions::PermissionCalculator::new(&user)
|
|
||||||
.with_channel(&target)
|
|
||||||
.for_channel()
|
|
||||||
.await?;
|
|
||||||
|
|
||||||
if !perm.get_send_message() {
|
|
||||||
return Err(Error::MissingPermission)
|
|
||||||
}
|
|
||||||
|
|
||||||
let mut mentions = HashSet::new();
|
|
||||||
for capture in RE_MENTION.captures_iter(&message.content) {
|
|
||||||
if let Some(mention) = capture.get(1) {
|
|
||||||
mentions.insert(mention.as_str().to_string());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if let Some(_) = &message.masquerade {
|
|
||||||
if !perm.get_masquerade() {
|
|
||||||
return Err(Error::MissingPermission)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
let mut replies = HashSet::new();
|
|
||||||
if let Some(entries) = message.replies {
|
|
||||||
// ! FIXME: move this to app config
|
|
||||||
if entries.len() > 5 {
|
|
||||||
return Err(Error::TooManyReplies)
|
|
||||||
}
|
|
||||||
|
|
||||||
for Reply { id, mention } in entries {
|
|
||||||
let message = Ref::from_unchecked(id)
|
|
||||||
.fetch_message(&target)
|
|
||||||
.await?;
|
|
||||||
|
|
||||||
replies.insert(message.id);
|
|
||||||
|
|
||||||
if mention {
|
|
||||||
mentions.insert(message.author);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
let id = Ulid::new().to_string();
|
|
||||||
let mut attachments = vec![];
|
|
||||||
|
|
||||||
if let Some(ids) = &message.attachments {
|
|
||||||
if ids.len() > 0 && !perm.get_upload_files() {
|
|
||||||
return Err(Error::MissingPermission)
|
|
||||||
}
|
|
||||||
|
|
||||||
// ! FIXME: move this to app config
|
|
||||||
if ids.len() > 5 {
|
|
||||||
return Err(Error::TooManyAttachments)
|
|
||||||
}
|
|
||||||
|
|
||||||
for attachment_id in ids {
|
|
||||||
attachments
|
|
||||||
.push(File::find_and_use(attachment_id, "attachments", "message", &id).await?);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
let mut embeds = vec![];
|
|
||||||
|
|
||||||
if let Some(sendable_embeds) = message.embeds {
|
|
||||||
for sendable_embed in sendable_embeds {
|
|
||||||
embeds.push(sendable_embed.into_embed(id.clone()).await?)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
let msg = Message {
|
|
||||||
id,
|
|
||||||
channel: target.id().to_string(),
|
|
||||||
author: user.id,
|
|
||||||
|
|
||||||
content: Content::Text(message.content.clone()),
|
|
||||||
nonce: Some(idempotency.key),
|
|
||||||
edited: None,
|
|
||||||
embeds: if embeds.len() > 0 { Some(embeds) } else { None },
|
|
||||||
attachments: if attachments.len() > 0 { Some(attachments) } else { None },
|
|
||||||
mentions: if mentions.len() > 0 {
|
|
||||||
Some(mentions.into_iter().collect::<Vec<String>>())
|
|
||||||
} else {
|
|
||||||
None
|
|
||||||
},
|
|
||||||
replies: if replies.len() > 0 {
|
|
||||||
Some(replies.into_iter().collect::<Vec<String>>())
|
|
||||||
} else {
|
|
||||||
None
|
|
||||||
},
|
|
||||||
masquerade: message.masquerade
|
|
||||||
};
|
|
||||||
|
|
||||||
msg.clone().publish(&target, perm.get_embed_links()).await?;
|
|
||||||
Ok(RatelimitResponse(json!(msg)))
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,9 +3,7 @@ use rocket::serde::json::Json;
|
|||||||
use serde::{Serialize, Deserialize};
|
use serde::{Serialize, Deserialize};
|
||||||
use validator::Contains;
|
use validator::Contains;
|
||||||
|
|
||||||
use crate::database::*;
|
use revolt_quark::{EmptyResponse, Result};
|
||||||
use crate::util::result::{Error, Result, EmptyResponse};
|
|
||||||
use crate::notifications::events::ClientboundNotification;
|
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize)]
|
#[derive(Serialize, Deserialize)]
|
||||||
pub struct Data {
|
pub struct Data {
|
||||||
@@ -13,56 +11,6 @@ pub struct Data {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#[put("/<target>/permissions/<role>", data = "<data>", rank = 2)]
|
#[put("/<target>/permissions/<role>", data = "<data>", rank = 2)]
|
||||||
pub async fn req(user: User, target: Ref, role: String, data: Json<Data>) -> Result<EmptyResponse> {
|
pub async fn req(/*user: UserRef, target: Ref,*/ target: String, role: String, data: Json<Data>) -> Result<EmptyResponse> {
|
||||||
let target = target.fetch_channel().await?;
|
todo!()
|
||||||
|
|
||||||
match target {
|
|
||||||
Channel::TextChannel { id, server, mut role_permissions, .. }
|
|
||||||
| Channel::VoiceChannel { id, server, mut role_permissions, .. } => {
|
|
||||||
let target = Ref::from_unchecked(server).fetch_server().await?;
|
|
||||||
let perm = permissions::PermissionCalculator::new(&user)
|
|
||||||
.with_server(&target)
|
|
||||||
.for_server()
|
|
||||||
.await?;
|
|
||||||
|
|
||||||
if !perm.get_manage_roles() {
|
|
||||||
return Err(Error::MissingPermission);
|
|
||||||
}
|
|
||||||
|
|
||||||
if !target.roles.has_element(&role) {
|
|
||||||
return Err(Error::NotFound);
|
|
||||||
}
|
|
||||||
|
|
||||||
let permissions: u32 = data.permissions;
|
|
||||||
|
|
||||||
get_collection("channels")
|
|
||||||
.update_one(
|
|
||||||
doc! { "_id": &id },
|
|
||||||
doc! {
|
|
||||||
"$set": {
|
|
||||||
"role_permissions.".to_owned() + &role: permissions as i32
|
|
||||||
}
|
|
||||||
},
|
|
||||||
None
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "update_one",
|
|
||||||
with: "channel"
|
|
||||||
})?;
|
|
||||||
|
|
||||||
role_permissions.insert(role, permissions as i32);
|
|
||||||
ClientboundNotification::ChannelUpdate {
|
|
||||||
id: id.clone(),
|
|
||||||
data: json!({
|
|
||||||
"role_permissions": role_permissions
|
|
||||||
}),
|
|
||||||
clear: None
|
|
||||||
}
|
|
||||||
.publish(id);
|
|
||||||
|
|
||||||
Ok(EmptyResponse {})
|
|
||||||
}
|
|
||||||
_ => Err(Error::InvalidOperation)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,10 +2,7 @@ use mongodb::bson::doc;
|
|||||||
use rocket::serde::json::Json;
|
use rocket::serde::json::Json;
|
||||||
use serde::{Serialize, Deserialize};
|
use serde::{Serialize, Deserialize};
|
||||||
|
|
||||||
use crate::database::*;
|
use revolt_quark::{EmptyResponse, Result};
|
||||||
use crate::database::permissions::channel::{ ChannelPermission, DEFAULT_PERMISSION_DM };
|
|
||||||
use crate::notifications::events::ClientboundNotification;
|
|
||||||
use crate::util::result::{Error, Result, EmptyResponse};
|
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize)]
|
#[derive(Serialize, Deserialize)]
|
||||||
pub struct Data {
|
pub struct Data {
|
||||||
@@ -13,85 +10,6 @@ pub struct Data {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#[put("/<target>/permissions/default", data = "<data>", rank = 1)]
|
#[put("/<target>/permissions/default", data = "<data>", rank = 1)]
|
||||||
pub async fn req(user: User, target: Ref, data: Json<Data>) -> Result<EmptyResponse> {
|
pub async fn req(/*user: UserRef, target: Ref,*/ target: String, data: Json<Data>) -> Result<EmptyResponse> {
|
||||||
let target = target.fetch_channel().await?;
|
todo!()
|
||||||
|
|
||||||
match target {
|
|
||||||
Channel::Group { id, owner, .. } => {
|
|
||||||
if user.id == owner {
|
|
||||||
let permissions: u32 = ChannelPermission::View as u32 | (data.permissions & *DEFAULT_PERMISSION_DM);
|
|
||||||
|
|
||||||
get_collection("channels")
|
|
||||||
.update_one(
|
|
||||||
doc! { "_id": &id },
|
|
||||||
doc! {
|
|
||||||
"$set": {
|
|
||||||
"permissions": permissions as i32
|
|
||||||
}
|
|
||||||
},
|
|
||||||
None
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "update_one",
|
|
||||||
with: "channel"
|
|
||||||
})?;
|
|
||||||
|
|
||||||
ClientboundNotification::ChannelUpdate {
|
|
||||||
id: id.clone(),
|
|
||||||
data: json!({
|
|
||||||
"permissions": permissions as i32
|
|
||||||
}),
|
|
||||||
clear: None
|
|
||||||
}
|
|
||||||
.publish(id);
|
|
||||||
|
|
||||||
Ok(EmptyResponse {})
|
|
||||||
} else {
|
|
||||||
Err(Error::MissingPermission)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Channel::TextChannel { id, server, .. }
|
|
||||||
| Channel::VoiceChannel { id, server, .. } => {
|
|
||||||
let target = Ref::from_unchecked(server).fetch_server().await?;
|
|
||||||
let perm = permissions::PermissionCalculator::new(&user)
|
|
||||||
.with_server(&target)
|
|
||||||
.for_server()
|
|
||||||
.await?;
|
|
||||||
|
|
||||||
if !perm.get_manage_roles() {
|
|
||||||
return Err(Error::MissingPermission);
|
|
||||||
}
|
|
||||||
|
|
||||||
let permissions: u32 = data.permissions;
|
|
||||||
|
|
||||||
get_collection("channels")
|
|
||||||
.update_one(
|
|
||||||
doc! { "_id": &id },
|
|
||||||
doc! {
|
|
||||||
"$set": {
|
|
||||||
"default_permissions": permissions as i32
|
|
||||||
}
|
|
||||||
},
|
|
||||||
None
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "update_one",
|
|
||||||
with: "channel"
|
|
||||||
})?;
|
|
||||||
|
|
||||||
ClientboundNotification::ChannelUpdate {
|
|
||||||
id: id.clone(),
|
|
||||||
data: json!({
|
|
||||||
"default_permissions": permissions as i32
|
|
||||||
}),
|
|
||||||
clear: None
|
|
||||||
}
|
|
||||||
.publish(id);
|
|
||||||
|
|
||||||
Ok(EmptyResponse {})
|
|
||||||
}
|
|
||||||
_ => Err(Error::InvalidOperation)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,4 @@
|
|||||||
use crate::database::*;
|
use revolt_quark::{Error, Result};
|
||||||
use crate::util::result::{Error, Result};
|
|
||||||
use crate::util::variables::{USE_VOSO, VOSO_MANAGE_TOKEN, VOSO_URL};
|
|
||||||
|
|
||||||
use rocket::serde::json::Value;
|
use rocket::serde::json::Value;
|
||||||
use serde::{Deserialize, Serialize};
|
use serde::{Deserialize, Serialize};
|
||||||
@@ -11,81 +9,6 @@ struct CreateUserResponse {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#[post("/<target>/join_call")]
|
#[post("/<target>/join_call")]
|
||||||
pub async fn req(user: User, target: Ref) -> Result<Value> {
|
pub async fn req(/*user: UserRef, target: Ref,*/ target: String) -> Result<Value> {
|
||||||
if !*USE_VOSO {
|
todo!()
|
||||||
return Err(Error::VosoUnavailable);
|
|
||||||
}
|
|
||||||
|
|
||||||
let target = target.fetch_channel().await?;
|
|
||||||
match target {
|
|
||||||
Channel::SavedMessages { .. } | Channel::TextChannel { .. } => {
|
|
||||||
return Err(Error::CannotJoinCall)
|
|
||||||
}
|
|
||||||
_ => {}
|
|
||||||
}
|
|
||||||
|
|
||||||
let perm = permissions::PermissionCalculator::new(&user)
|
|
||||||
.with_channel(&target)
|
|
||||||
.for_channel()
|
|
||||||
.await?;
|
|
||||||
|
|
||||||
if !perm.get_voice_call() {
|
|
||||||
return Err(Error::MissingPermission);
|
|
||||||
}
|
|
||||||
|
|
||||||
// To join a call:
|
|
||||||
// - Check if the room exists.
|
|
||||||
// - If not, create it.
|
|
||||||
let client = reqwest::Client::new();
|
|
||||||
let result = client
|
|
||||||
.get(&format!("{}/room/{}", *VOSO_URL, target.id()))
|
|
||||||
.header(
|
|
||||||
reqwest::header::AUTHORIZATION,
|
|
||||||
VOSO_MANAGE_TOKEN.to_string(),
|
|
||||||
)
|
|
||||||
.send()
|
|
||||||
.await;
|
|
||||||
|
|
||||||
match result {
|
|
||||||
Err(_) => return Err(Error::VosoUnavailable),
|
|
||||||
Ok(result) => match result.status() {
|
|
||||||
reqwest::StatusCode::OK => (),
|
|
||||||
reqwest::StatusCode::NOT_FOUND => {
|
|
||||||
if let Err(_) = client
|
|
||||||
.post(&format!("{}/room/{}", *VOSO_URL, target.id()))
|
|
||||||
.header(
|
|
||||||
reqwest::header::AUTHORIZATION,
|
|
||||||
VOSO_MANAGE_TOKEN.to_string(),
|
|
||||||
)
|
|
||||||
.send()
|
|
||||||
.await
|
|
||||||
{
|
|
||||||
return Err(Error::VosoUnavailable);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
_ => return Err(Error::VosoUnavailable),
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
// Then create a user for the room.
|
|
||||||
if let Ok(response) = client
|
|
||||||
.post(&format!(
|
|
||||||
"{}/room/{}/user/{}",
|
|
||||||
*VOSO_URL,
|
|
||||||
target.id(),
|
|
||||||
user.id
|
|
||||||
))
|
|
||||||
.header(
|
|
||||||
reqwest::header::AUTHORIZATION,
|
|
||||||
VOSO_MANAGE_TOKEN.to_string(),
|
|
||||||
)
|
|
||||||
.send()
|
|
||||||
.await
|
|
||||||
{
|
|
||||||
let res: CreateUserResponse = response.json().await.map_err(|_| Error::InvalidOperation)?;
|
|
||||||
|
|
||||||
Ok(json!(res))
|
|
||||||
} else {
|
|
||||||
Err(Error::VosoUnavailable)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,30 +1,6 @@
|
|||||||
use crate::database::*;
|
use revolt_quark::{EmptyResponse, Result};
|
||||||
use crate::util::result::{Error, Result, EmptyResponse};
|
|
||||||
|
|
||||||
#[delete("/<target>")]
|
#[delete("/<target>")]
|
||||||
pub async fn req(user: User, target: Ref) -> Result<EmptyResponse> {
|
pub async fn req(/*user: UserRef, target: Ref*/ target: String) -> Result<EmptyResponse> {
|
||||||
let target = target.fetch_invite().await?;
|
todo!()
|
||||||
|
|
||||||
if target.creator() == &user.id {
|
|
||||||
target.delete().await?;
|
|
||||||
} else {
|
|
||||||
match &target {
|
|
||||||
Invite::Server { server, .. } => {
|
|
||||||
let server = Ref::from_unchecked(server.clone()).fetch_server().await?;
|
|
||||||
let perm = permissions::PermissionCalculator::new(&user)
|
|
||||||
.with_server(&server)
|
|
||||||
.for_server()
|
|
||||||
.await?;
|
|
||||||
|
|
||||||
if !perm.get_manage_server() {
|
|
||||||
return Err(Error::MissingPermission);
|
|
||||||
}
|
|
||||||
|
|
||||||
target.delete().await?;
|
|
||||||
}
|
|
||||||
_ => unreachable!(),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Ok(EmptyResponse {})
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
use crate::database::*;
|
use revolt_quark::Result;
|
||||||
use crate::util::result::Result;
|
use revolt_quark::models::File;
|
||||||
|
|
||||||
use rocket::serde::json::Value;
|
use rocket::serde::json::Value;
|
||||||
use serde::Serialize;
|
use serde::Serialize;
|
||||||
@@ -26,37 +26,6 @@ pub enum InviteResponse {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#[get("/<target>")]
|
#[get("/<target>")]
|
||||||
pub async fn req(target: Ref) -> Result<Value> {
|
pub async fn req(/*target: Ref*/ target: String) -> Result<Value> {
|
||||||
let target = target.fetch_invite().await?;
|
todo!()
|
||||||
|
|
||||||
match target {
|
|
||||||
Invite::Server {
|
|
||||||
channel, creator, ..
|
|
||||||
} => {
|
|
||||||
let channel = Ref::from_unchecked(channel).fetch_channel().await?;
|
|
||||||
let creator = Ref::from_unchecked(creator).fetch_user().await?;
|
|
||||||
|
|
||||||
match channel {
|
|
||||||
Channel::TextChannel { id, server, name, description, .. }
|
|
||||||
| Channel::VoiceChannel { id, server, name, description, .. } => {
|
|
||||||
let server = Ref::from_unchecked(server).fetch_server().await?;
|
|
||||||
|
|
||||||
Ok(json!(InviteResponse::Server {
|
|
||||||
member_count: Server::get_member_count(&server.id).await?,
|
|
||||||
server_id: server.id,
|
|
||||||
server_name: server.name,
|
|
||||||
server_icon: server.icon,
|
|
||||||
server_banner: server.banner,
|
|
||||||
channel_id: id,
|
|
||||||
channel_name: name,
|
|
||||||
channel_description: description,
|
|
||||||
user_name: creator.username,
|
|
||||||
user_avatar: creator.avatar
|
|
||||||
}))
|
|
||||||
}
|
|
||||||
_ => unreachable!()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
_ => unreachable!(),
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,42 +1,8 @@
|
|||||||
use crate::database::*;
|
use revolt_quark::{Error, Result};
|
||||||
use crate::util::result::{Error, Result};
|
|
||||||
use crate::util::variables::MAX_SERVER_COUNT;
|
|
||||||
|
|
||||||
use rocket::serde::json::Value;
|
use rocket::serde::json::Value;
|
||||||
|
|
||||||
#[post("/<target>")]
|
#[post("/<target>")]
|
||||||
pub async fn req(user: User, target: Ref) -> Result<Value> {
|
pub async fn req(/*user: UserRef, target: Ref*/ target: String) -> Result<Value> {
|
||||||
if user.bot.is_some() {
|
todo!()
|
||||||
return Err(Error::IsBot)
|
|
||||||
}
|
|
||||||
|
|
||||||
if !User::can_acquire_server(&user.id).await? {
|
|
||||||
Err(Error::TooManyServers {
|
|
||||||
max: *MAX_SERVER_COUNT,
|
|
||||||
})?
|
|
||||||
}
|
|
||||||
|
|
||||||
let target = target.fetch_invite().await?;
|
|
||||||
|
|
||||||
match target {
|
|
||||||
Invite::Server { channel, .. } => {
|
|
||||||
let channel = Ref::from_unchecked(channel).fetch_channel().await?;
|
|
||||||
let server = match &channel {
|
|
||||||
Channel::TextChannel { server, .. }
|
|
||||||
| Channel::VoiceChannel { server, .. } => {
|
|
||||||
Ref::from_unchecked(server.clone()).fetch_server().await?
|
|
||||||
}
|
|
||||||
_ => unreachable!()
|
|
||||||
};
|
|
||||||
|
|
||||||
server.join_member(&user.id).await?;
|
|
||||||
|
|
||||||
Ok(json!({
|
|
||||||
"type": "Server",
|
|
||||||
"channel": channel,
|
|
||||||
"server": server
|
|
||||||
}))
|
|
||||||
}
|
|
||||||
_ => unreachable!(),
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
use crate::database::*;
|
use revolt_quark::{EmptyResponse, Result};
|
||||||
use crate::util::result::{Error, Result, EmptyResponse};
|
|
||||||
use crate::util::regex::RE_USERNAME;
|
use crate::util::regex::RE_USERNAME;
|
||||||
|
|
||||||
use mongodb::bson::doc;
|
use mongodb::bson::doc;
|
||||||
@@ -15,31 +14,6 @@ pub struct Data {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#[post("/complete", data = "<data>")]
|
#[post("/complete", data = "<data>")]
|
||||||
pub async fn req(session: Session, user: Option<User>, data: Json<Data>) -> Result<EmptyResponse> {
|
pub async fn req(/*session: Session, user: Option<User>,*/ data: Json<Data>) -> Result<EmptyResponse> {
|
||||||
if user.is_some() {
|
todo!()
|
||||||
Err(Error::AlreadyOnboarded)?
|
|
||||||
}
|
|
||||||
|
|
||||||
data.validate()
|
|
||||||
.map_err(|error| Error::FailedValidation { error })?;
|
|
||||||
|
|
||||||
if User::is_username_taken(&data.username).await? {
|
|
||||||
return Err(Error::UsernameTaken);
|
|
||||||
}
|
|
||||||
|
|
||||||
get_collection("users")
|
|
||||||
.insert_one(
|
|
||||||
doc! {
|
|
||||||
"_id": session.user_id,
|
|
||||||
"username": &data.username
|
|
||||||
},
|
|
||||||
None,
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "insert_one",
|
|
||||||
with: "user",
|
|
||||||
})?;
|
|
||||||
|
|
||||||
Ok(EmptyResponse {})
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,11 +1,7 @@
|
|||||||
use crate::database::*;
|
|
||||||
|
|
||||||
use rauth::entities::Session;
|
use rauth::entities::Session;
|
||||||
use rocket::serde::json::Value;
|
use rocket::serde::json::Value;
|
||||||
|
|
||||||
#[get("/hello")]
|
#[get("/hello")]
|
||||||
pub async fn req(_session: Session, user: Option<User>) -> Value {
|
pub async fn req(/*_session: Session, user: Option<User>*/) -> Value {
|
||||||
json!({
|
todo!()
|
||||||
"onboarding": user.is_none()
|
|
||||||
})
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,19 +1,10 @@
|
|||||||
use crate::database::*;
|
use revolt_quark::{EmptyResponse, Result};
|
||||||
use crate::util::result::{EmptyResponse, Error, Result};
|
|
||||||
|
|
||||||
use mongodb::bson::doc;
|
use mongodb::bson::doc;
|
||||||
use rauth::entities::{Model, Session, WebPushSubscription};
|
use rauth::entities::{Model, Session, WebPushSubscription};
|
||||||
use rocket::serde::json::Json;
|
use rocket::serde::json::Json;
|
||||||
|
|
||||||
#[post("/subscribe", data = "<data>")]
|
#[post("/subscribe"/*, data = "<data>"*/)]
|
||||||
pub async fn req(mut session: Session, data: Json<WebPushSubscription>) -> Result<EmptyResponse> {
|
pub async fn req(/*mut session: Session, data: Json<WebPushSubscription>*/) -> Result<EmptyResponse> {
|
||||||
session.subscription = Some(data.into_inner());
|
todo!()
|
||||||
session
|
|
||||||
.save(&get_db(), None)
|
|
||||||
.await
|
|
||||||
.map(|_| EmptyResponse)
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "save",
|
|
||||||
with: "session",
|
|
||||||
})
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,18 +1,9 @@
|
|||||||
use crate::database::*;
|
use revolt_quark::{EmptyResponse, Result};
|
||||||
use crate::util::result::{EmptyResponse, Error, Result};
|
|
||||||
|
|
||||||
use mongodb::bson::doc;
|
use mongodb::bson::doc;
|
||||||
use rauth::entities::{Model, Session};
|
use rauth::entities::{Model, Session};
|
||||||
|
|
||||||
#[post("/unsubscribe")]
|
#[post("/unsubscribe")]
|
||||||
pub async fn req(mut session: Session) -> Result<EmptyResponse> {
|
pub async fn req(/*mut session: Session*/) -> Result<EmptyResponse> {
|
||||||
session.subscription = None;
|
todo!()
|
||||||
session
|
|
||||||
.save(&get_db(), None)
|
|
||||||
.await
|
|
||||||
.map(|_| EmptyResponse)
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "save",
|
|
||||||
with: "session",
|
|
||||||
})
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,14 +1,15 @@
|
|||||||
use crate::util::{ratelimit::Ratelimiter, variables::{
|
/*use crate::util::{ratelimit::Ratelimiter, variables::{
|
||||||
APP_URL, AUTUMN_URL, EXTERNAL_WS_URL, HCAPTCHA_SITEKEY, INVITE_ONLY, JANUARY_URL, USE_AUTUMN,
|
APP_URL, AUTUMN_URL, EXTERNAL_WS_URL, HCAPTCHA_SITEKEY, INVITE_ONLY, JANUARY_URL, USE_AUTUMN,
|
||||||
USE_EMAIL, USE_HCAPTCHA, USE_JANUARY, USE_VOSO, VAPID_PUBLIC_KEY, VOSO_URL, VOSO_WS_HOST,
|
USE_EMAIL, USE_HCAPTCHA, USE_JANUARY, USE_VOSO, VAPID_PUBLIC_KEY, VOSO_URL, VOSO_WS_HOST,
|
||||||
}};
|
}};*/
|
||||||
|
|
||||||
use mongodb::bson::doc;
|
use mongodb::bson::doc;
|
||||||
use rocket::{http::Status, serde::json::Value};
|
use rocket::{http::Status, serde::json::Value};
|
||||||
|
|
||||||
#[get("/")]
|
#[get("/")]
|
||||||
pub async fn root() -> Value {
|
pub async fn root() -> Value {
|
||||||
json!({
|
todo!();
|
||||||
|
/*json!({
|
||||||
"revolt": crate::version::VERSION,
|
"revolt": crate::version::VERSION,
|
||||||
"features": {
|
"features": {
|
||||||
"captcha": {
|
"captcha": {
|
||||||
@@ -34,10 +35,10 @@ pub async fn root() -> Value {
|
|||||||
"ws": *EXTERNAL_WS_URL,
|
"ws": *EXTERNAL_WS_URL,
|
||||||
"app": *APP_URL,
|
"app": *APP_URL,
|
||||||
"vapid": *VAPID_PUBLIC_KEY
|
"vapid": *VAPID_PUBLIC_KEY
|
||||||
})
|
})*/
|
||||||
}
|
}
|
||||||
|
|
||||||
#[get("/ping")]
|
#[get("/ping")]
|
||||||
pub async fn ping(_limitguard: Ratelimiter) -> Status {
|
pub async fn ping(/*_limitguard: Ratelimiter*/) -> Status {
|
||||||
Status::Ok
|
Status::Ok
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
use crate::database::*;
|
use revolt_quark::{EmptyResponse, Result};
|
||||||
use crate::util::result::{Error, Result, EmptyResponse};
|
|
||||||
|
|
||||||
use mongodb::bson::doc;
|
use mongodb::bson::doc;
|
||||||
use rocket::serde::json::Json;
|
use rocket::serde::json::Json;
|
||||||
@@ -13,50 +12,6 @@ pub struct Data {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#[put("/<server>/bans/<target>", data = "<data>")]
|
#[put("/<server>/bans/<target>", data = "<data>")]
|
||||||
pub async fn req(user: User, server: Ref, target: Ref, data: Json<Data>) -> Result<EmptyResponse> {
|
pub async fn req(/*user: UserRef, server: Ref, target: Ref,*/ server: String, target: String, data: Json<Data>) -> Result<EmptyResponse> {
|
||||||
let data = data.into_inner();
|
todo!()
|
||||||
data.validate()
|
|
||||||
.map_err(|error| Error::FailedValidation { error })?;
|
|
||||||
|
|
||||||
let server = server.fetch_server().await?;
|
|
||||||
|
|
||||||
let perm = permissions::PermissionCalculator::new(&user)
|
|
||||||
.with_server(&server)
|
|
||||||
.for_server()
|
|
||||||
.await?;
|
|
||||||
|
|
||||||
if !perm.get_ban_members() {
|
|
||||||
Err(Error::MissingPermission)?
|
|
||||||
}
|
|
||||||
|
|
||||||
let target = target.fetch_user().await?;
|
|
||||||
if target.id == user.id {
|
|
||||||
return Err(Error::InvalidOperation);
|
|
||||||
}
|
|
||||||
|
|
||||||
if target.id == server.owner {
|
|
||||||
return Err(Error::MissingPermission);
|
|
||||||
}
|
|
||||||
|
|
||||||
let mut document = doc! {
|
|
||||||
"_id": {
|
|
||||||
"server": &server.id,
|
|
||||||
"user": &target.id
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
if let Some(reason) = data.reason {
|
|
||||||
document.insert("reason", reason);
|
|
||||||
}
|
|
||||||
|
|
||||||
get_collection("server_bans")
|
|
||||||
.insert_one(document, None)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "insert_one",
|
|
||||||
with: "server_ban",
|
|
||||||
})?;
|
|
||||||
|
|
||||||
server.remove_member(&target.id, RemoveMember::Ban).await?;
|
|
||||||
Ok(EmptyResponse {})
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
use crate::database::*;
|
use revolt_quark::{Error, Result};
|
||||||
use crate::util::result::{Error, Result};
|
use revolt_quark::models::File;
|
||||||
|
|
||||||
use futures::StreamExt;
|
use futures::StreamExt;
|
||||||
use mongodb::options::FindOptions;
|
use mongodb::options::FindOptions;
|
||||||
@@ -15,73 +15,6 @@ struct BannedUser {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#[get("/<target>/bans")]
|
#[get("/<target>/bans")]
|
||||||
pub async fn req(user: User, target: Ref) -> Result<Value> {
|
pub async fn req(/*user: UserRef, target: Ref*/ target: String) -> Result<Value> {
|
||||||
let target = target.fetch_server().await?;
|
todo!()
|
||||||
|
|
||||||
let perm = permissions::PermissionCalculator::new(&user)
|
|
||||||
.with_server(&target)
|
|
||||||
.for_server()
|
|
||||||
.await?;
|
|
||||||
|
|
||||||
if !perm.get_ban_members() {
|
|
||||||
return Err(Error::MissingPermission);
|
|
||||||
}
|
|
||||||
|
|
||||||
let mut cursor = get_collection("server_bans")
|
|
||||||
.find(
|
|
||||||
doc! {
|
|
||||||
"_id.server": target.id
|
|
||||||
},
|
|
||||||
None,
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "find",
|
|
||||||
with: "server_bans",
|
|
||||||
})?;
|
|
||||||
|
|
||||||
let mut bans = vec![];
|
|
||||||
let mut user_ids = vec![];
|
|
||||||
while let Some(result) = cursor.next().await {
|
|
||||||
if let Ok(doc) = result {
|
|
||||||
if let Ok(ban) = from_document::<Ban>(doc) {
|
|
||||||
user_ids.push(ban.id.user.clone());
|
|
||||||
bans.push(ban);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
let mut cursor = get_collection("users")
|
|
||||||
.find(
|
|
||||||
doc! {
|
|
||||||
"_id": {
|
|
||||||
"$in": user_ids
|
|
||||||
}
|
|
||||||
},
|
|
||||||
FindOptions::builder()
|
|
||||||
.projection(doc! {
|
|
||||||
"username": 1,
|
|
||||||
"avatar": 1
|
|
||||||
})
|
|
||||||
.build(),
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "find",
|
|
||||||
with: "users",
|
|
||||||
})?;
|
|
||||||
|
|
||||||
let mut users = vec![];
|
|
||||||
while let Some(result) = cursor.next().await {
|
|
||||||
if let Ok(doc) = result {
|
|
||||||
if let Ok(user) = from_document::<BannedUser>(doc) {
|
|
||||||
users.push(user);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Ok(json!({
|
|
||||||
"users": users,
|
|
||||||
"bans": bans
|
|
||||||
}))
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,43 +1,8 @@
|
|||||||
use crate::database::*;
|
use revolt_quark::{EmptyResponse, Result};
|
||||||
use crate::util::result::{Error, Result, EmptyResponse};
|
|
||||||
|
|
||||||
use mongodb::bson::doc;
|
use mongodb::bson::doc;
|
||||||
|
|
||||||
#[delete("/<server>/bans/<target>")]
|
#[delete("/<server>/bans/<target>")]
|
||||||
pub async fn req(user: User, server: Ref, target: Ref) -> Result<EmptyResponse> {
|
pub async fn req(/*user: UserRef, server: Ref, target: Ref*/ server: String, target: String) -> Result<EmptyResponse> {
|
||||||
let server = server.fetch_server().await?;
|
todo!()
|
||||||
|
|
||||||
let perm = permissions::PermissionCalculator::new(&user)
|
|
||||||
.with_server(&server)
|
|
||||||
.for_server()
|
|
||||||
.await?;
|
|
||||||
|
|
||||||
if !perm.get_ban_members() {
|
|
||||||
Err(Error::MissingPermission)?
|
|
||||||
}
|
|
||||||
|
|
||||||
if target.id == user.id {
|
|
||||||
return Err(Error::InvalidOperation);
|
|
||||||
}
|
|
||||||
|
|
||||||
if target.id == server.owner {
|
|
||||||
return Err(Error::MissingPermission);
|
|
||||||
}
|
|
||||||
|
|
||||||
let target = target.fetch_ban(&server.id).await?;
|
|
||||||
get_collection("server_bans")
|
|
||||||
.delete_one(
|
|
||||||
doc! {
|
|
||||||
"_id.server": &server.id,
|
|
||||||
"_id.user": &target.id.user
|
|
||||||
},
|
|
||||||
None,
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "delete_one",
|
|
||||||
with: "server_ban",
|
|
||||||
})?;
|
|
||||||
|
|
||||||
Ok(EmptyResponse {})
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,8 +1,6 @@
|
|||||||
use std::collections::HashMap;
|
use std::collections::HashMap;
|
||||||
|
|
||||||
use crate::database::*;
|
use revolt_quark::{Error, Result};
|
||||||
use crate::util::idempotency::IdempotencyKey;
|
|
||||||
use crate::util::result::{Error, Result};
|
|
||||||
|
|
||||||
use mongodb::bson::doc;
|
use mongodb::bson::doc;
|
||||||
use rocket::serde::json::{Json, Value};
|
use rocket::serde::json::{Json, Value};
|
||||||
@@ -35,70 +33,6 @@ pub struct Data {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#[post("/<target>/channels", data = "<info>")]
|
#[post("/<target>/channels", data = "<info>")]
|
||||||
pub async fn req(_idempotency: IdempotencyKey, user: User, target: Ref, info: Json<Data>) -> Result<Value> {
|
pub async fn req(/*_idempotency: IdempotencyKey, user: User, target: Ref,*/ target: String, info: Json<Data>) -> Result<Value> {
|
||||||
let info = info.into_inner();
|
todo!()
|
||||||
info.validate()
|
|
||||||
.map_err(|error| Error::FailedValidation { error })?;
|
|
||||||
|
|
||||||
let target = target.fetch_server().await?;
|
|
||||||
let perm = permissions::PermissionCalculator::new(&user)
|
|
||||||
.with_server(&target)
|
|
||||||
.for_server()
|
|
||||||
.await?;
|
|
||||||
|
|
||||||
if !perm.get_manage_channels() {
|
|
||||||
Err(Error::MissingPermission)?
|
|
||||||
}
|
|
||||||
|
|
||||||
let id = Ulid::new().to_string();
|
|
||||||
let channel = match info.channel_type {
|
|
||||||
ChannelType::Text => Channel::TextChannel {
|
|
||||||
id: id.clone(),
|
|
||||||
server: target.id.clone(),
|
|
||||||
|
|
||||||
name: info.name,
|
|
||||||
description: info.description,
|
|
||||||
icon: None,
|
|
||||||
last_message_id: None,
|
|
||||||
|
|
||||||
default_permissions: None,
|
|
||||||
role_permissions: HashMap::new(),
|
|
||||||
|
|
||||||
nsfw: info.nsfw.unwrap_or_default(),
|
|
||||||
},
|
|
||||||
ChannelType::Voice => Channel::VoiceChannel {
|
|
||||||
id: id.clone(),
|
|
||||||
server: target.id.clone(),
|
|
||||||
|
|
||||||
name: info.name,
|
|
||||||
description: info.description,
|
|
||||||
icon: None,
|
|
||||||
|
|
||||||
default_permissions: None,
|
|
||||||
role_permissions: HashMap::new(),
|
|
||||||
|
|
||||||
nsfw: info.nsfw.unwrap_or_default()
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
channel.clone().publish().await?;
|
|
||||||
get_collection("servers")
|
|
||||||
.update_one(
|
|
||||||
doc! {
|
|
||||||
"_id": target.id
|
|
||||||
},
|
|
||||||
doc! {
|
|
||||||
"$addToSet": {
|
|
||||||
"channels": id
|
|
||||||
}
|
|
||||||
},
|
|
||||||
None,
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "update_one",
|
|
||||||
with: "server",
|
|
||||||
})?;
|
|
||||||
|
|
||||||
Ok(json!(channel))
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
use crate::database::*;
|
use revolt_quark::{Error, Result};
|
||||||
use crate::util::result::{Error, Result};
|
|
||||||
|
|
||||||
use futures::StreamExt;
|
use futures::StreamExt;
|
||||||
use mongodb::bson::{doc, from_document};
|
use mongodb::bson::{doc, from_document};
|
||||||
@@ -15,39 +14,6 @@ pub struct ServerInvite {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#[get("/<target>/invites")]
|
#[get("/<target>/invites")]
|
||||||
pub async fn req(user: User, target: Ref) -> Result<Value> {
|
pub async fn req(/*user: UserRef, target: Ref*/ target: String) -> Result<Value> {
|
||||||
let target = target.fetch_server().await?;
|
todo!()
|
||||||
|
|
||||||
let perm = permissions::PermissionCalculator::new(&user)
|
|
||||||
.with_server(&target)
|
|
||||||
.for_server()
|
|
||||||
.await?;
|
|
||||||
|
|
||||||
if !perm.get_manage_server() {
|
|
||||||
Err(Error::MissingPermission)?
|
|
||||||
}
|
|
||||||
|
|
||||||
let mut cursor = get_collection("channel_invites")
|
|
||||||
.find(
|
|
||||||
doc! {
|
|
||||||
"server": target.id
|
|
||||||
},
|
|
||||||
None,
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "find",
|
|
||||||
with: "channel_invites",
|
|
||||||
})?;
|
|
||||||
|
|
||||||
let mut invites = vec![];
|
|
||||||
while let Some(result) = cursor.next().await {
|
|
||||||
if let Ok(doc) = result {
|
|
||||||
if let Ok(invite) = from_document::<Invite>(doc) {
|
|
||||||
invites.push(invite);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Ok(json!(invites))
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,10 +1,5 @@
|
|||||||
use std::collections::HashSet;
|
use revolt_quark::{EmptyResponse, Result, models::server_member::FieldsMember};
|
||||||
|
|
||||||
use crate::notifications::events::ClientboundNotification;
|
|
||||||
use crate::util::result::{Error, Result, EmptyResponse};
|
|
||||||
use crate::{database::*, notifications::events::RemoveMemberField};
|
|
||||||
|
|
||||||
use mongodb::bson::{doc, to_document};
|
|
||||||
use rocket::serde::json::Json;
|
use rocket::serde::json::Json;
|
||||||
use serde::{Deserialize, Serialize};
|
use serde::{Deserialize, Serialize};
|
||||||
use validator::Validate;
|
use validator::Validate;
|
||||||
@@ -15,144 +10,10 @@ pub struct Data {
|
|||||||
nickname: Option<String>,
|
nickname: Option<String>,
|
||||||
avatar: Option<String>,
|
avatar: Option<String>,
|
||||||
roles: Option<Vec<String>>,
|
roles: Option<Vec<String>>,
|
||||||
remove: Option<RemoveMemberField>,
|
remove: Option<FieldsMember>,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[patch("/<server>/members/<target>", data = "<data>")]
|
#[patch("/<server>/members/<target>", data = "<data>")]
|
||||||
pub async fn req(user: User, server: Ref, target: String, data: Json<Data>) -> Result<EmptyResponse> {
|
pub async fn req(/*user: UserRef, server: Ref,*/ server: String, target: String, data: Json<Data>) -> Result<EmptyResponse> {
|
||||||
let data = data.into_inner();
|
todo!()
|
||||||
data.validate()
|
|
||||||
.map_err(|error| Error::FailedValidation { error })?;
|
|
||||||
|
|
||||||
if data.nickname.is_none() && data.avatar.is_none() && data.roles.is_none() && data.remove.is_none() {
|
|
||||||
return Ok(EmptyResponse {});
|
|
||||||
}
|
|
||||||
|
|
||||||
let server = server.fetch_server().await?;
|
|
||||||
let target = Ref::from(target)?.fetch_member(&server.id).await?;
|
|
||||||
|
|
||||||
let perm = permissions::PermissionCalculator::new(&user)
|
|
||||||
.with_server(&server)
|
|
||||||
.for_server()
|
|
||||||
.await?;
|
|
||||||
|
|
||||||
if data.roles.is_some() && !perm.get_manage_roles() {
|
|
||||||
return Err(Error::MissingPermission);
|
|
||||||
}
|
|
||||||
|
|
||||||
if target.id.user == user.id {
|
|
||||||
if (data.nickname.is_some() && !perm.get_change_nickname())
|
|
||||||
|| (data.avatar.is_some() && !perm.get_change_avatar())
|
|
||||||
{
|
|
||||||
return Err(Error::MissingPermission);
|
|
||||||
}
|
|
||||||
|
|
||||||
if let Some(remove) = &data.remove {
|
|
||||||
if match remove {
|
|
||||||
RemoveMemberField::Avatar => !perm.get_change_avatar(),
|
|
||||||
RemoveMemberField::Nickname => !perm.get_change_nickname(),
|
|
||||||
} {
|
|
||||||
return Err(Error::MissingPermission);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
if data.avatar.is_some() || (data.nickname.is_some() && !perm.get_manage_nicknames()) {
|
|
||||||
return Err(Error::MissingPermission);
|
|
||||||
}
|
|
||||||
|
|
||||||
if let Some(remove) = &data.remove {
|
|
||||||
if match remove {
|
|
||||||
RemoveMemberField::Avatar => !perm.get_remove_avatars(),
|
|
||||||
RemoveMemberField::Nickname => !perm.get_manage_nicknames(),
|
|
||||||
} {
|
|
||||||
return Err(Error::MissingPermission);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
let mut set = doc! {};
|
|
||||||
let mut unset = doc! {};
|
|
||||||
|
|
||||||
let mut remove_avatar = false;
|
|
||||||
if let Some(remove) = &data.remove {
|
|
||||||
match remove {
|
|
||||||
RemoveMemberField::Avatar => {
|
|
||||||
unset.insert("avatar", 1);
|
|
||||||
remove_avatar = true;
|
|
||||||
}
|
|
||||||
RemoveMemberField::Nickname => {
|
|
||||||
unset.insert("nickname", 1);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if let Some(name) = &data.nickname {
|
|
||||||
set.insert("nickname", name);
|
|
||||||
}
|
|
||||||
|
|
||||||
if let Some(attachment_id) = &data.avatar {
|
|
||||||
let attachment =
|
|
||||||
File::find_and_use(&attachment_id, "avatars", "user", &target.id.user).await?;
|
|
||||||
set.insert(
|
|
||||||
"avatar",
|
|
||||||
to_document(&attachment).map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "to_document",
|
|
||||||
with: "attachment",
|
|
||||||
})?,
|
|
||||||
);
|
|
||||||
|
|
||||||
remove_avatar = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
if let Some(role_ids) = &data.roles {
|
|
||||||
let mut ids = HashSet::new();
|
|
||||||
|
|
||||||
for role in role_ids {
|
|
||||||
if server.roles.contains_key(role) {
|
|
||||||
ids.insert(role.clone());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
set.insert("roles", ids.into_iter().collect::<Vec<String>>());
|
|
||||||
}
|
|
||||||
|
|
||||||
let mut operations = doc! {};
|
|
||||||
if set.len() > 0 {
|
|
||||||
operations.insert("$set", &set);
|
|
||||||
}
|
|
||||||
|
|
||||||
if unset.len() > 0 {
|
|
||||||
operations.insert("$unset", unset);
|
|
||||||
}
|
|
||||||
|
|
||||||
if operations.len() > 0 {
|
|
||||||
get_collection("server_members")
|
|
||||||
.update_one(
|
|
||||||
doc! { "_id.server": &server.id, "_id.user": &target.id.user },
|
|
||||||
operations,
|
|
||||||
None,
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "update_one",
|
|
||||||
with: "server_member",
|
|
||||||
})?;
|
|
||||||
}
|
|
||||||
|
|
||||||
ClientboundNotification::ServerMemberUpdate {
|
|
||||||
id: target.id.clone(),
|
|
||||||
data: json!(set),
|
|
||||||
clear: data.remove,
|
|
||||||
}
|
|
||||||
.publish(server.id.clone());
|
|
||||||
|
|
||||||
let Member { avatar, .. } = target;
|
|
||||||
|
|
||||||
if remove_avatar {
|
|
||||||
if let Some(old_avatar) = avatar {
|
|
||||||
old_avatar.delete().await?;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Ok(EmptyResponse {})
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,21 +1,9 @@
|
|||||||
use crate::database::*;
|
use revolt_quark::{Error, Result};
|
||||||
use crate::util::result::{Error, Result};
|
|
||||||
|
|
||||||
use mongodb::bson::doc;
|
use mongodb::bson::doc;
|
||||||
use rocket::serde::json::Value;
|
use rocket::serde::json::Value;
|
||||||
|
|
||||||
#[get("/<target>/members/<member>")]
|
#[get("/<target>/members/<member>")]
|
||||||
pub async fn req(user: User, target: Ref, member: String) -> Result<Value> {
|
pub async fn req(/*user: UserRef, target: Ref,*/ target: String, member: String) -> Result<Value> {
|
||||||
let target = target.fetch_server().await?;
|
todo!()
|
||||||
|
|
||||||
let perm = permissions::PermissionCalculator::new(&user)
|
|
||||||
.with_server(&target)
|
|
||||||
.for_server()
|
|
||||||
.await?;
|
|
||||||
|
|
||||||
if !perm.get_view() {
|
|
||||||
Err(Error::MissingPermission)?
|
|
||||||
}
|
|
||||||
|
|
||||||
Ok(json!(Ref::from(member)?.fetch_member(&target.id).await?))
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,51 +1,9 @@
|
|||||||
use crate::database::*;
|
use revolt_quark::{Error, Result};
|
||||||
use crate::util::result::{Error, Result};
|
|
||||||
|
|
||||||
use futures::StreamExt;
|
|
||||||
use mongodb::bson::{doc, from_document, Document};
|
use mongodb::bson::{doc, from_document, Document};
|
||||||
use rocket::serde::json::Value;
|
use rocket::serde::json::Value;
|
||||||
|
|
||||||
// ! FIXME: this is a temporary route while permissions are being worked on.
|
|
||||||
|
|
||||||
#[get("/<target>/members")]
|
#[get("/<target>/members")]
|
||||||
pub async fn req(user: User, target: Ref) -> Result<Value> {
|
pub async fn req(/*user: UserRef, target: Ref*/ target: String) -> Result<Value> {
|
||||||
let target = target.fetch_server().await?;
|
todo!()
|
||||||
|
|
||||||
let perm = permissions::PermissionCalculator::new(&user)
|
|
||||||
.with_server(&target)
|
|
||||||
.for_server()
|
|
||||||
.await?;
|
|
||||||
|
|
||||||
if !perm.get_view() {
|
|
||||||
Err(Error::MissingPermission)?
|
|
||||||
}
|
|
||||||
|
|
||||||
let members = get_collection("server_members")
|
|
||||||
.find(
|
|
||||||
doc! {
|
|
||||||
"_id.server": target.id
|
|
||||||
},
|
|
||||||
None,
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "find",
|
|
||||||
with: "server_members",
|
|
||||||
})?
|
|
||||||
.filter_map(async move |s| s.ok())
|
|
||||||
.collect::<Vec<Document>>()
|
|
||||||
.await
|
|
||||||
.into_iter()
|
|
||||||
.filter_map(|x| from_document(x).ok())
|
|
||||||
.collect::<Vec<Member>>();
|
|
||||||
|
|
||||||
let member_ids = members
|
|
||||||
.iter()
|
|
||||||
.map(|m| m.id.user.clone())
|
|
||||||
.collect::<Vec<String>>();
|
|
||||||
|
|
||||||
Ok(json!({
|
|
||||||
"members": members,
|
|
||||||
"users": user.fetch_multiple_users(&member_ids).await?
|
|
||||||
}))
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,33 +1,8 @@
|
|||||||
use crate::database::*;
|
use revolt_quark::{EmptyResponse, Result};
|
||||||
use crate::util::result::{Error, Result, EmptyResponse};
|
|
||||||
|
|
||||||
use mongodb::bson::doc;
|
use mongodb::bson::doc;
|
||||||
|
|
||||||
#[delete("/<target>/members/<member>")]
|
#[delete("/<target>/members/<member>")]
|
||||||
pub async fn req(user: User, target: Ref, member: String) -> Result<EmptyResponse> {
|
pub async fn req(/*user: UserRef, target: Ref,*/ target: String, member: String) -> Result<EmptyResponse> {
|
||||||
let target = target.fetch_server().await?;
|
todo!()
|
||||||
|
|
||||||
let perm = permissions::PermissionCalculator::new(&user)
|
|
||||||
.with_server(&target)
|
|
||||||
.for_server()
|
|
||||||
.await?;
|
|
||||||
|
|
||||||
if !perm.get_kick_members() {
|
|
||||||
return Err(Error::MissingPermission);
|
|
||||||
}
|
|
||||||
|
|
||||||
let member = Ref::from(member)?.fetch_member(&target.id).await?;
|
|
||||||
if member.id.user == user.id {
|
|
||||||
return Err(Error::InvalidOperation);
|
|
||||||
}
|
|
||||||
|
|
||||||
if member.id.user == target.owner {
|
|
||||||
return Err(Error::MissingPermission);
|
|
||||||
}
|
|
||||||
|
|
||||||
target
|
|
||||||
.remove_member(&member.id.user, RemoveMember::Kick)
|
|
||||||
.await?;
|
|
||||||
|
|
||||||
Ok(EmptyResponse {})
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,9 +2,7 @@ use mongodb::bson::doc;
|
|||||||
use rocket::serde::json::Json;
|
use rocket::serde::json::Json;
|
||||||
use serde::{Serialize, Deserialize};
|
use serde::{Serialize, Deserialize};
|
||||||
|
|
||||||
use crate::database::*;
|
use revolt_quark::{EmptyResponse, Result};
|
||||||
use crate::notifications::events::ClientboundNotification;
|
|
||||||
use crate::util::result::{Error, Result, EmptyResponse};
|
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize)]
|
#[derive(Serialize, Deserialize)]
|
||||||
pub struct Values {
|
pub struct Values {
|
||||||
@@ -18,56 +16,6 @@ pub struct Data {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#[put("/<target>/permissions/<role_id>", data = "<data>", rank = 2)]
|
#[put("/<target>/permissions/<role_id>", data = "<data>", rank = 2)]
|
||||||
pub async fn req(user: User, target: Ref, role_id: String, data: Json<Data>) -> Result<EmptyResponse> {
|
pub async fn req(/*user: UserRef, target: Ref,*/ target: String, role_id: String, data: Json<Data>) -> Result<EmptyResponse> {
|
||||||
let target = target.fetch_server().await?;
|
todo!()
|
||||||
|
|
||||||
let perm = permissions::PermissionCalculator::new(&user)
|
|
||||||
.with_server(&target)
|
|
||||||
.for_server()
|
|
||||||
.await?;
|
|
||||||
|
|
||||||
if !perm.get_manage_roles() {
|
|
||||||
return Err(Error::MissingPermission);
|
|
||||||
}
|
|
||||||
|
|
||||||
if !target.roles.contains_key(&role_id) {
|
|
||||||
return Err(Error::NotFound);
|
|
||||||
}
|
|
||||||
|
|
||||||
let server_permissions: u32 = data.permissions.server;
|
|
||||||
let channel_permissions: u32 = data.permissions.channel;
|
|
||||||
|
|
||||||
get_collection("servers")
|
|
||||||
.update_one(
|
|
||||||
doc! { "_id": &target.id },
|
|
||||||
doc! {
|
|
||||||
"$set": {
|
|
||||||
"roles.".to_owned() + &role_id + &".permissions": [
|
|
||||||
server_permissions as i32,
|
|
||||||
channel_permissions as i32
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
None
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "update_one",
|
|
||||||
with: "server"
|
|
||||||
})?;
|
|
||||||
|
|
||||||
ClientboundNotification::ServerRoleUpdate {
|
|
||||||
id: target.id.clone(),
|
|
||||||
role_id,
|
|
||||||
data: json!({
|
|
||||||
"permissions": [
|
|
||||||
server_permissions as i32,
|
|
||||||
channel_permissions as i32
|
|
||||||
]
|
|
||||||
}),
|
|
||||||
clear: None
|
|
||||||
}
|
|
||||||
.publish(target.id);
|
|
||||||
|
|
||||||
Ok(EmptyResponse)
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,9 +2,7 @@ use mongodb::bson::doc;
|
|||||||
use rocket::serde::json::Json;
|
use rocket::serde::json::Json;
|
||||||
use serde::{Serialize, Deserialize};
|
use serde::{Serialize, Deserialize};
|
||||||
|
|
||||||
use crate::database::*;
|
use revolt_quark::{EmptyResponse, Result};
|
||||||
use crate::notifications::events::ClientboundNotification;
|
|
||||||
use crate::util::result::{Error, Result, EmptyResponse};
|
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize)]
|
#[derive(Serialize, Deserialize)]
|
||||||
pub struct Values {
|
pub struct Values {
|
||||||
@@ -18,51 +16,6 @@ pub struct Data {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#[put("/<target>/permissions/default", data = "<data>", rank = 1)]
|
#[put("/<target>/permissions/default", data = "<data>", rank = 1)]
|
||||||
pub async fn req(user: User, target: Ref, data: Json<Data>) -> Result<EmptyResponse> {
|
pub async fn req(/*user: UserRef, target: Ref,*/ target: String, data: Json<Data>) -> Result<EmptyResponse> {
|
||||||
let target = target.fetch_server().await?;
|
todo!()
|
||||||
|
|
||||||
let perm = permissions::PermissionCalculator::new(&user)
|
|
||||||
.with_server(&target)
|
|
||||||
.for_server()
|
|
||||||
.await?;
|
|
||||||
|
|
||||||
if !perm.get_manage_roles() {
|
|
||||||
return Err(Error::MissingPermission);
|
|
||||||
}
|
|
||||||
|
|
||||||
let server_permissions: u32 = data.permissions.server;
|
|
||||||
let channel_permissions: u32 = data.permissions.channel;
|
|
||||||
|
|
||||||
get_collection("servers")
|
|
||||||
.update_one(
|
|
||||||
doc! { "_id": &target.id },
|
|
||||||
doc! {
|
|
||||||
"$set": {
|
|
||||||
"default_permissions": [
|
|
||||||
server_permissions as i32,
|
|
||||||
channel_permissions as i32
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
None
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "update_one",
|
|
||||||
with: "server"
|
|
||||||
})?;
|
|
||||||
|
|
||||||
ClientboundNotification::ServerUpdate {
|
|
||||||
id: target.id.clone(),
|
|
||||||
data: json!({
|
|
||||||
"default_permissions": [
|
|
||||||
server_permissions as i32,
|
|
||||||
channel_permissions as i32
|
|
||||||
]
|
|
||||||
}),
|
|
||||||
clear: None
|
|
||||||
}
|
|
||||||
.publish(target.id);
|
|
||||||
|
|
||||||
Ok(EmptyResponse {})
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,4 @@
|
|||||||
use crate::database::*;
|
use revolt_quark::{Error, Result};
|
||||||
use crate::notifications::events::ClientboundNotification;
|
|
||||||
use crate::util::result::{Error, Result};
|
|
||||||
|
|
||||||
use ulid::Ulid;
|
use ulid::Ulid;
|
||||||
use mongodb::bson::doc;
|
use mongodb::bson::doc;
|
||||||
@@ -15,62 +13,6 @@ pub struct Data {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#[post("/<target>/roles", data = "<data>")]
|
#[post("/<target>/roles", data = "<data>")]
|
||||||
pub async fn req(user: User, target: Ref, data: Json<Data>) -> Result<Value> {
|
pub async fn req(/*user: UserRef, target: Ref,*/ target: String, data: Json<Data>) -> Result<Value> {
|
||||||
let data = data.into_inner();
|
todo!()
|
||||||
data.validate()
|
|
||||||
.map_err(|error| Error::FailedValidation { error })?;
|
|
||||||
|
|
||||||
let target = target.fetch_server().await?;
|
|
||||||
|
|
||||||
let perm = permissions::PermissionCalculator::new(&user)
|
|
||||||
.with_server(&target)
|
|
||||||
.for_server()
|
|
||||||
.await?;
|
|
||||||
|
|
||||||
if !perm.get_manage_roles() {
|
|
||||||
Err(Error::MissingPermission)?
|
|
||||||
}
|
|
||||||
|
|
||||||
let id = Ulid::new().to_string();
|
|
||||||
let perm_tuple = (
|
|
||||||
*permissions::server::DEFAULT_PERMISSION as i32,
|
|
||||||
*permissions::channel::DEFAULT_PERMISSION_SERVER as i32
|
|
||||||
);
|
|
||||||
|
|
||||||
get_collection("servers")
|
|
||||||
.update_one(
|
|
||||||
doc! {
|
|
||||||
"_id": &target.id
|
|
||||||
},
|
|
||||||
doc! {
|
|
||||||
"$set": {
|
|
||||||
"roles.".to_owned() + &id: {
|
|
||||||
"name": &data.name,
|
|
||||||
"permissions": [
|
|
||||||
&perm_tuple.0,
|
|
||||||
&perm_tuple.1
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
None
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "update_one",
|
|
||||||
with: "servers"
|
|
||||||
})?;
|
|
||||||
|
|
||||||
ClientboundNotification::ServerRoleUpdate {
|
|
||||||
id: target.id.clone(),
|
|
||||||
role_id: id.clone(),
|
|
||||||
data: json!({
|
|
||||||
"name": data.name,
|
|
||||||
"permissions": &perm_tuple
|
|
||||||
}),
|
|
||||||
clear: None
|
|
||||||
}
|
|
||||||
.publish(target.id);
|
|
||||||
|
|
||||||
Ok(json!({ "id": id, "permissions": perm_tuple }))
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,81 +1,6 @@
|
|||||||
use crate::database::*;
|
use revolt_quark::{EmptyResponse, Result};
|
||||||
use crate::notifications::events::ClientboundNotification;
|
|
||||||
use crate::util::result::{Error, Result, EmptyResponse};
|
|
||||||
|
|
||||||
use mongodb::bson::doc;
|
|
||||||
|
|
||||||
#[delete("/<target>/roles/<role_id>")]
|
#[delete("/<target>/roles/<role_id>")]
|
||||||
pub async fn req(user: User, target: Ref, role_id: String) -> Result<EmptyResponse> {
|
pub async fn req(/*user: UserRef, target: Ref,*/ target: String, role_id: String) -> Result<EmptyResponse> {
|
||||||
let target = target.fetch_server().await?;
|
todo!()
|
||||||
|
|
||||||
let perm = permissions::PermissionCalculator::new(&user)
|
|
||||||
.with_server(&target)
|
|
||||||
.for_server()
|
|
||||||
.await?;
|
|
||||||
|
|
||||||
if !perm.get_manage_roles() {
|
|
||||||
Err(Error::MissingPermission)?
|
|
||||||
}
|
|
||||||
|
|
||||||
get_collection("servers")
|
|
||||||
.update_one(
|
|
||||||
doc! {
|
|
||||||
"_id": &target.id
|
|
||||||
},
|
|
||||||
doc! {
|
|
||||||
"$unset": {
|
|
||||||
"roles.".to_owned() + &role_id: 1
|
|
||||||
}
|
|
||||||
},
|
|
||||||
None
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "update_one",
|
|
||||||
with: "servers"
|
|
||||||
})?;
|
|
||||||
|
|
||||||
get_collection("channels")
|
|
||||||
.update_one(
|
|
||||||
doc! {
|
|
||||||
"server": &target.id
|
|
||||||
},
|
|
||||||
doc! {
|
|
||||||
"$unset": {
|
|
||||||
"role_permissions.".to_owned() + &role_id: 1
|
|
||||||
}
|
|
||||||
},
|
|
||||||
None
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "update_one",
|
|
||||||
with: "channels"
|
|
||||||
})?;
|
|
||||||
|
|
||||||
get_collection("server_members")
|
|
||||||
.update_many(
|
|
||||||
doc! {
|
|
||||||
"_id.server": &target.id
|
|
||||||
},
|
|
||||||
doc! {
|
|
||||||
"$pull": {
|
|
||||||
"roles": &role_id
|
|
||||||
}
|
|
||||||
},
|
|
||||||
None
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "update_many",
|
|
||||||
with: "server_members"
|
|
||||||
})?;
|
|
||||||
|
|
||||||
ClientboundNotification::ServerRoleDelete {
|
|
||||||
id: target.id.clone(),
|
|
||||||
role_id
|
|
||||||
}
|
|
||||||
.publish(target.id);
|
|
||||||
|
|
||||||
Ok(EmptyResponse {})
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,4 @@
|
|||||||
use crate::notifications::events::ClientboundNotification;
|
use revolt_quark::{EmptyResponse, Result};
|
||||||
use crate::util::result::{Error, Result, EmptyResponse};
|
|
||||||
use crate::{database::*, notifications::events::RemoveRoleField};
|
|
||||||
|
|
||||||
use mongodb::bson::doc;
|
use mongodb::bson::doc;
|
||||||
use rocket::serde::json::Json;
|
use rocket::serde::json::Json;
|
||||||
@@ -15,96 +13,10 @@ pub struct Data {
|
|||||||
colour: Option<String>,
|
colour: Option<String>,
|
||||||
hoist: Option<bool>,
|
hoist: Option<bool>,
|
||||||
rank: Option<i64>,
|
rank: Option<i64>,
|
||||||
remove: Option<RemoveRoleField>,
|
// remove: Option<FieldsRole>,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[patch("/<target>/roles/<role_id>", data = "<data>")]
|
#[patch("/<target>/roles/<role_id>", data = "<data>")]
|
||||||
pub async fn req(user: User, target: Ref, role_id: String, data: Json<Data>) -> Result<EmptyResponse> {
|
pub async fn req(/*user: UserRef, target: Ref,*/ target: String, role_id: String, data: Json<Data>) -> Result<EmptyResponse> {
|
||||||
let data = data.into_inner();
|
todo!()
|
||||||
data.validate()
|
|
||||||
.map_err(|error| Error::FailedValidation { error })?;
|
|
||||||
|
|
||||||
if data.name.is_none() && data.colour.is_none() && data.hoist.is_none() && data.rank.is_none() && data.remove.is_none()
|
|
||||||
{
|
|
||||||
return Ok(EmptyResponse {});
|
|
||||||
}
|
|
||||||
|
|
||||||
let target = target.fetch_server().await?;
|
|
||||||
let perm = permissions::PermissionCalculator::new(&user)
|
|
||||||
.with_server(&target)
|
|
||||||
.for_server()
|
|
||||||
.await?;
|
|
||||||
|
|
||||||
if !perm.get_manage_roles() {
|
|
||||||
return Err(Error::MissingPermission)
|
|
||||||
}
|
|
||||||
|
|
||||||
if !target.roles.contains_key(&role_id) {
|
|
||||||
return Err(Error::InvalidRole)
|
|
||||||
}
|
|
||||||
|
|
||||||
let mut set = doc! {};
|
|
||||||
let mut unset = doc! {};
|
|
||||||
|
|
||||||
// ! FIXME: we should probably just require clients to support basic MQL incl. $set / $unset
|
|
||||||
let mut set_update = doc! {};
|
|
||||||
|
|
||||||
let role_key = "roles.".to_owned() + &role_id;
|
|
||||||
|
|
||||||
if let Some(remove) = &data.remove {
|
|
||||||
match remove {
|
|
||||||
RemoveRoleField::Colour => {
|
|
||||||
unset.insert(role_key.clone() + ".colour", 1);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if let Some(name) = &data.name {
|
|
||||||
set.insert(role_key.clone() + ".name", name);
|
|
||||||
set_update.insert("name", name);
|
|
||||||
}
|
|
||||||
|
|
||||||
if let Some(colour) = &data.colour {
|
|
||||||
set.insert(role_key.clone() + ".colour", colour);
|
|
||||||
set_update.insert("colour", colour);
|
|
||||||
}
|
|
||||||
|
|
||||||
if let Some(hoist) = &data.hoist {
|
|
||||||
set.insert(role_key.clone() + ".hoist", hoist);
|
|
||||||
set_update.insert("hoist", hoist);
|
|
||||||
}
|
|
||||||
|
|
||||||
if let Some(rank) = &data.rank {
|
|
||||||
set.insert(role_key.clone() + ".rank", rank);
|
|
||||||
set_update.insert("rank", rank);
|
|
||||||
}
|
|
||||||
|
|
||||||
let mut operations = doc! {};
|
|
||||||
if set.len() > 0 {
|
|
||||||
operations.insert("$set", &set);
|
|
||||||
}
|
|
||||||
|
|
||||||
if unset.len() > 0 {
|
|
||||||
operations.insert("$unset", unset);
|
|
||||||
}
|
|
||||||
|
|
||||||
if operations.len() > 0 {
|
|
||||||
get_collection("servers")
|
|
||||||
.update_one(doc! { "_id": &target.id }, operations, None)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "update_one",
|
|
||||||
with: "server",
|
|
||||||
})?;
|
|
||||||
}
|
|
||||||
|
|
||||||
ClientboundNotification::ServerRoleUpdate {
|
|
||||||
id: target.id.clone(),
|
|
||||||
role_id,
|
|
||||||
data: json!(set_update),
|
|
||||||
clear: data.remove,
|
|
||||||
}
|
|
||||||
.publish(target.id.clone());
|
|
||||||
|
|
||||||
Ok(EmptyResponse {})
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,23 +1,6 @@
|
|||||||
use crate::database::*;
|
use revolt_quark::{EmptyResponse, Result};
|
||||||
use crate::util::result::{Error, Result, EmptyResponse};
|
|
||||||
|
|
||||||
#[put("/<target>/ack")]
|
#[put("/<target>/ack")]
|
||||||
pub async fn req(user: User, target: Ref) -> Result<EmptyResponse> {
|
pub async fn req(/*user: UserRef, target: Ref*/ target: String) -> Result<EmptyResponse> {
|
||||||
if user.bot.is_some() {
|
todo!()
|
||||||
return Err(Error::IsBot)
|
|
||||||
}
|
|
||||||
|
|
||||||
let target = target.fetch_server().await?;
|
|
||||||
|
|
||||||
let perm = permissions::PermissionCalculator::new(&user)
|
|
||||||
.with_server(&target)
|
|
||||||
.for_server()
|
|
||||||
.await?;
|
|
||||||
|
|
||||||
if !perm.get_view() {
|
|
||||||
Err(Error::MissingPermission)?
|
|
||||||
}
|
|
||||||
|
|
||||||
target.mark_as_read(&user.id).await?;
|
|
||||||
Ok(EmptyResponse {})
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,9 +1,6 @@
|
|||||||
use std::collections::HashMap;
|
use std::collections::HashMap;
|
||||||
|
|
||||||
use crate::database::*;
|
use revolt_quark::{EmptyResponse, Result};
|
||||||
use crate::util::idempotency::IdempotencyKey;
|
|
||||||
use crate::util::result::{Error, Result};
|
|
||||||
use crate::util::variables::MAX_SERVER_COUNT;
|
|
||||||
|
|
||||||
use mongodb::bson::doc;
|
use mongodb::bson::doc;
|
||||||
use rocket::serde::json::{Json, Value};
|
use rocket::serde::json::{Json, Value};
|
||||||
@@ -22,73 +19,6 @@ pub struct Data {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#[post("/create", data = "<info>")]
|
#[post("/create", data = "<info>")]
|
||||||
pub async fn req(_idempotency: IdempotencyKey, user: User, info: Json<Data>) -> Result<Value> {
|
pub async fn req(/*_idempotency: IdempotencyKey, user: User,*/ info: Json<Data>) -> Result<Value> {
|
||||||
if user.bot.is_some() {
|
todo!()
|
||||||
return Err(Error::IsBot)
|
|
||||||
}
|
|
||||||
|
|
||||||
if !User::can_acquire_server(&user.id).await? {
|
|
||||||
Err(Error::TooManyServers {
|
|
||||||
max: *MAX_SERVER_COUNT,
|
|
||||||
})?
|
|
||||||
}
|
|
||||||
|
|
||||||
let info = info.into_inner();
|
|
||||||
info.validate()
|
|
||||||
.map_err(|error| Error::FailedValidation { error })?;
|
|
||||||
|
|
||||||
let id = Ulid::new().to_string();
|
|
||||||
let cid = Ulid::new().to_string();
|
|
||||||
|
|
||||||
let server = Server {
|
|
||||||
id: id.clone(),
|
|
||||||
owner: user.id.clone(),
|
|
||||||
|
|
||||||
name: info.name,
|
|
||||||
description: info.description,
|
|
||||||
|
|
||||||
channels: vec![cid.clone()],
|
|
||||||
categories: None,
|
|
||||||
system_messages: Some(SystemMessageChannels {
|
|
||||||
user_joined: Some(cid.clone()),
|
|
||||||
user_left: Some(cid.clone()),
|
|
||||||
user_kicked: Some(cid.clone()),
|
|
||||||
user_banned: Some(cid.clone()),
|
|
||||||
}),
|
|
||||||
|
|
||||||
roles: HashMap::new(),
|
|
||||||
default_permissions: (
|
|
||||||
*permissions::server::DEFAULT_PERMISSION as i32,
|
|
||||||
*permissions::channel::DEFAULT_PERMISSION_SERVER as i32
|
|
||||||
),
|
|
||||||
|
|
||||||
icon: None,
|
|
||||||
banner: None,
|
|
||||||
|
|
||||||
flags: None,
|
|
||||||
nsfw: info.nsfw.unwrap_or_default(),
|
|
||||||
analytics: false,
|
|
||||||
discoverable: false,
|
|
||||||
};
|
|
||||||
|
|
||||||
Channel::TextChannel {
|
|
||||||
id: cid,
|
|
||||||
server: id,
|
|
||||||
name: "general".to_string(),
|
|
||||||
description: None,
|
|
||||||
|
|
||||||
icon: None,
|
|
||||||
last_message_id: None,
|
|
||||||
|
|
||||||
default_permissions: None,
|
|
||||||
role_permissions: HashMap::new(),
|
|
||||||
nsfw: false
|
|
||||||
}
|
|
||||||
.publish()
|
|
||||||
.await?;
|
|
||||||
|
|
||||||
server.clone().create().await?;
|
|
||||||
server.join_member(&user.id).await?;
|
|
||||||
|
|
||||||
Ok(json!(server))
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,25 +1,8 @@
|
|||||||
use crate::database::*;
|
use revolt_quark::{EmptyResponse, Result};
|
||||||
use crate::util::result::{Error, Result, EmptyResponse};
|
|
||||||
|
|
||||||
use mongodb::bson::doc;
|
use mongodb::bson::doc;
|
||||||
|
|
||||||
#[delete("/<target>")]
|
#[delete("/<target>")]
|
||||||
pub async fn req(user: User, target: Ref) -> Result<EmptyResponse> {
|
pub async fn req(/*user: UserRef, target: Ref*/ target: String) -> Result<EmptyResponse> {
|
||||||
let target = target.fetch_server().await?;
|
todo!()
|
||||||
let perm = permissions::PermissionCalculator::new(&user)
|
|
||||||
.with_server(&target)
|
|
||||||
.for_server()
|
|
||||||
.await?;
|
|
||||||
|
|
||||||
if !perm.get_view() {
|
|
||||||
return Err(Error::MissingPermission);
|
|
||||||
}
|
|
||||||
|
|
||||||
if user.id == target.owner {
|
|
||||||
target.delete().await?;
|
|
||||||
} else {
|
|
||||||
target.remove_member(&user.id, RemoveMember::Leave).await?;
|
|
||||||
}
|
|
||||||
|
|
||||||
Ok(EmptyResponse {})
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,8 +1,5 @@
|
|||||||
use crate::notifications::events::ClientboundNotification;
|
use revolt_quark::{EmptyResponse, Result, models::server::{FieldsServer, SystemMessageChannels, Category}};
|
||||||
use crate::util::result::{Error, Result, EmptyResponse};
|
|
||||||
use crate::{database::*, notifications::events::RemoveServerField};
|
|
||||||
|
|
||||||
use mongodb::bson::{doc, to_bson, to_document};
|
|
||||||
use rocket::serde::json::Json;
|
use rocket::serde::json::Json;
|
||||||
use serde::{Deserialize, Serialize};
|
use serde::{Deserialize, Serialize};
|
||||||
use validator::Validate;
|
use validator::Validate;
|
||||||
@@ -17,143 +14,12 @@ pub struct Data {
|
|||||||
banner: Option<String>,
|
banner: Option<String>,
|
||||||
categories: Option<Vec<Category>>,
|
categories: Option<Vec<Category>>,
|
||||||
system_messages: Option<SystemMessageChannels>,
|
system_messages: Option<SystemMessageChannels>,
|
||||||
remove: Option<RemoveServerField>,
|
remove: Option<FieldsServer>,
|
||||||
nsfw: Option<bool>,
|
nsfw: Option<bool>,
|
||||||
analytics: Option<bool>,
|
analytics: Option<bool>,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[patch("/<target>", data = "<data>")]
|
#[patch("/<target>", data = "<data>")]
|
||||||
pub async fn req(user: User, target: Ref, data: Json<Data>) -> Result<EmptyResponse> {
|
pub async fn req(/*user: UserRef, target: Ref,*/ target: String, data: Json<Data>) -> Result<EmptyResponse> {
|
||||||
let data = data.into_inner();
|
todo!()
|
||||||
data.validate()
|
|
||||||
.map_err(|error| Error::FailedValidation { error })?;
|
|
||||||
|
|
||||||
if data.name.is_none() && data.description.is_none() && data.icon.is_none() && data.banner.is_none() && data.remove.is_none() && data.categories.is_none() && data.system_messages.is_none() && data.nsfw.is_none() && data.analytics.is_none()
|
|
||||||
{
|
|
||||||
return Ok(EmptyResponse {});
|
|
||||||
}
|
|
||||||
|
|
||||||
let target = target.fetch_server().await?;
|
|
||||||
let perm = permissions::PermissionCalculator::new(&user)
|
|
||||||
.with_server(&target)
|
|
||||||
.for_server()
|
|
||||||
.await?;
|
|
||||||
|
|
||||||
if !perm.get_manage_server() {
|
|
||||||
Err(Error::MissingPermission)?
|
|
||||||
}
|
|
||||||
|
|
||||||
let mut set = doc! {};
|
|
||||||
let mut unset = doc! {};
|
|
||||||
|
|
||||||
let mut remove_icon = false;
|
|
||||||
let mut remove_banner = false;
|
|
||||||
if let Some(remove) = &data.remove {
|
|
||||||
match remove {
|
|
||||||
RemoveServerField::Icon => {
|
|
||||||
unset.insert("icon", 1);
|
|
||||||
remove_icon = true;
|
|
||||||
}
|
|
||||||
RemoveServerField::Banner => {
|
|
||||||
unset.insert("banner", 1);
|
|
||||||
remove_banner = true;
|
|
||||||
}
|
|
||||||
RemoveServerField::Description => {
|
|
||||||
unset.insert("description", 1);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if let Some(name) = &data.name {
|
|
||||||
set.insert("name", name);
|
|
||||||
}
|
|
||||||
|
|
||||||
if let Some(description) = &data.description {
|
|
||||||
set.insert("description", description);
|
|
||||||
}
|
|
||||||
|
|
||||||
if let Some(attachment_id) = &data.icon {
|
|
||||||
let attachment = File::find_and_use(&attachment_id, "icons", "object", &target.id).await?;
|
|
||||||
set.insert(
|
|
||||||
"icon",
|
|
||||||
to_document(&attachment).map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "to_document",
|
|
||||||
with: "attachment",
|
|
||||||
})?,
|
|
||||||
);
|
|
||||||
|
|
||||||
remove_icon = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
if let Some(attachment_id) = &data.banner {
|
|
||||||
let attachment =
|
|
||||||
File::find_and_use(&attachment_id, "banners", "server", &target.id).await?;
|
|
||||||
set.insert(
|
|
||||||
"banner",
|
|
||||||
to_document(&attachment).map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "to_document",
|
|
||||||
with: "attachment",
|
|
||||||
})?,
|
|
||||||
);
|
|
||||||
|
|
||||||
remove_banner = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
if let Some(categories) = &data.categories {
|
|
||||||
set.insert("categories", to_bson(&categories).map_err(|_| Error::DatabaseError { operation: "to_document", with: "categories" })?);
|
|
||||||
}
|
|
||||||
|
|
||||||
if let Some(system_messages) = &data.system_messages {
|
|
||||||
set.insert("system_messages", to_bson(&system_messages).map_err(|_| Error::DatabaseError { operation: "to_document", with: "system_messages" })?);
|
|
||||||
}
|
|
||||||
|
|
||||||
if let Some(nsfw) = &data.nsfw {
|
|
||||||
set.insert("nsfw", nsfw);
|
|
||||||
}
|
|
||||||
|
|
||||||
if let Some(analytics) = &data.analytics {
|
|
||||||
set.insert("analytics", analytics);
|
|
||||||
}
|
|
||||||
|
|
||||||
let mut operations = doc! {};
|
|
||||||
if set.len() > 0 {
|
|
||||||
operations.insert("$set", &set);
|
|
||||||
}
|
|
||||||
|
|
||||||
if unset.len() > 0 {
|
|
||||||
operations.insert("$unset", unset);
|
|
||||||
}
|
|
||||||
|
|
||||||
if operations.len() > 0 {
|
|
||||||
get_collection("servers")
|
|
||||||
.update_one(doc! { "_id": &target.id }, operations, None)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "update_one",
|
|
||||||
with: "server",
|
|
||||||
})?;
|
|
||||||
}
|
|
||||||
|
|
||||||
ClientboundNotification::ServerUpdate {
|
|
||||||
id: target.id.clone(),
|
|
||||||
data: json!(set),
|
|
||||||
clear: data.remove,
|
|
||||||
}
|
|
||||||
.publish(target.id.clone());
|
|
||||||
|
|
||||||
let Server { icon, banner, .. } = target;
|
|
||||||
|
|
||||||
if remove_icon {
|
|
||||||
if let Some(old_icon) = icon {
|
|
||||||
old_icon.delete().await?;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if remove_banner {
|
|
||||||
if let Some(old_banner) = banner {
|
|
||||||
old_banner.delete().await?;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Ok(EmptyResponse {})
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,20 +1,8 @@
|
|||||||
use crate::database::*;
|
use revolt_quark::{Error, Result};
|
||||||
use crate::util::result::{Error, Result};
|
|
||||||
|
|
||||||
use rocket::serde::json::Value;
|
use rocket::serde::json::Value;
|
||||||
|
|
||||||
#[get("/<target>")]
|
#[get("/<target>")]
|
||||||
pub async fn req(user: User, target: Ref) -> Result<Value> {
|
pub async fn req(/*user: UserRef, target: Ref*/ target: String) -> Result<Value> {
|
||||||
let target = target.fetch_server().await?;
|
todo!()
|
||||||
|
|
||||||
let perm = permissions::PermissionCalculator::new(&user)
|
|
||||||
.with_server(&target)
|
|
||||||
.for_server()
|
|
||||||
.await?;
|
|
||||||
|
|
||||||
if !perm.get_view() {
|
|
||||||
Err(Error::MissingPermission)?
|
|
||||||
}
|
|
||||||
|
|
||||||
Ok(json!(target))
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
use crate::database::*;
|
use revolt_quark::{Error, Result};
|
||||||
use crate::util::result::{Error, Result};
|
|
||||||
|
|
||||||
use mongodb::bson::doc;
|
use mongodb::bson::doc;
|
||||||
use mongodb::options::FindOneOptions;
|
use mongodb::options::FindOneOptions;
|
||||||
@@ -12,35 +11,6 @@ pub struct Options {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#[post("/settings/fetch", data = "<options>")]
|
#[post("/settings/fetch", data = "<options>")]
|
||||||
pub async fn req(user: User, options: Json<Options>) -> Result<Value> {
|
pub async fn req(/*user: UserRef,*/ options: Json<Options>) -> Result<Value> {
|
||||||
if user.bot.is_some() {
|
todo!()
|
||||||
return Err(Error::IsBot);
|
|
||||||
}
|
|
||||||
|
|
||||||
let options = options.into_inner();
|
|
||||||
let mut projection = doc! {
|
|
||||||
"_id": 0,
|
|
||||||
};
|
|
||||||
|
|
||||||
for key in options.keys {
|
|
||||||
projection.insert(key, 1);
|
|
||||||
}
|
|
||||||
|
|
||||||
if let Some(doc) = get_collection("user_settings")
|
|
||||||
.find_one(
|
|
||||||
doc! {
|
|
||||||
"_id": user.id
|
|
||||||
},
|
|
||||||
FindOneOptions::builder().projection(projection).build(),
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "find_one",
|
|
||||||
with: "user_settings",
|
|
||||||
})?
|
|
||||||
{
|
|
||||||
Ok(json!(doc))
|
|
||||||
} else {
|
|
||||||
Ok(json!({}))
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,14 +1,9 @@
|
|||||||
use crate::database::*;
|
use revolt_quark::{Error, Result};
|
||||||
use crate::util::result::{Error, Result};
|
|
||||||
|
|
||||||
use mongodb::bson::doc;
|
use mongodb::bson::doc;
|
||||||
use rocket::serde::json::Value;
|
use rocket::serde::json::Value;
|
||||||
|
|
||||||
#[get("/unreads")]
|
#[get("/unreads")]
|
||||||
pub async fn req(user: User) -> Result<Value> {
|
pub async fn req(/*user: UserRef*/) -> Result<Value> {
|
||||||
if user.bot.is_some() {
|
todo!()
|
||||||
return Err(Error::IsBot);
|
|
||||||
}
|
|
||||||
|
|
||||||
Ok(json!(User::fetch_unreads(&user.id).await?))
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,4 @@
|
|||||||
use crate::database::*;
|
use revolt_quark::{EmptyResponse, Result};
|
||||||
use crate::notifications::events::ClientboundNotification;
|
|
||||||
use crate::util::result::{EmptyResponse, Error, Result};
|
|
||||||
|
|
||||||
use chrono::prelude::*;
|
use chrono::prelude::*;
|
||||||
use mongodb::bson::{doc, to_bson};
|
use mongodb::bson::{doc, to_bson};
|
||||||
@@ -18,57 +16,6 @@ pub struct Options {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#[post("/settings/set?<options..>", data = "<data>")]
|
#[post("/settings/set?<options..>", data = "<data>")]
|
||||||
pub async fn req(user: User, data: Json<Data>, options: Options) -> Result<EmptyResponse> {
|
pub async fn req(/*user: UserRef,*/ data: Json<Data>, options: Options) -> Result<EmptyResponse> {
|
||||||
if user.bot.is_some() {
|
todo!()
|
||||||
return Err(Error::IsBot);
|
|
||||||
}
|
|
||||||
|
|
||||||
let data = data.into_inner();
|
|
||||||
let current_time = Utc::now().timestamp_millis();
|
|
||||||
let timestamp = if let Some(timestamp) = options.timestamp {
|
|
||||||
if timestamp > current_time {
|
|
||||||
current_time
|
|
||||||
} else {
|
|
||||||
timestamp
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
current_time
|
|
||||||
};
|
|
||||||
|
|
||||||
let mut set = doc! {};
|
|
||||||
for (key, data) in &data {
|
|
||||||
set.insert(
|
|
||||||
key.clone(),
|
|
||||||
vec![
|
|
||||||
to_bson(×tamp).unwrap(),
|
|
||||||
to_bson(&data.clone()).unwrap(),
|
|
||||||
],
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
if set.len() > 0 {
|
|
||||||
get_collection("user_settings")
|
|
||||||
.update_one(
|
|
||||||
doc! {
|
|
||||||
"_id": &user.id
|
|
||||||
},
|
|
||||||
doc! {
|
|
||||||
"$set": &set
|
|
||||||
},
|
|
||||||
UpdateOptions::builder().upsert(true).build(),
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "update_one",
|
|
||||||
with: "user_settings",
|
|
||||||
})?;
|
|
||||||
}
|
|
||||||
|
|
||||||
ClientboundNotification::UserSettingsUpdate {
|
|
||||||
id: user.id.clone(),
|
|
||||||
update: json!(set),
|
|
||||||
}
|
|
||||||
.publish(user.id);
|
|
||||||
|
|
||||||
Ok(EmptyResponse {})
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,4 @@
|
|||||||
use crate::database::*;
|
use revolt_quark::{Error, Result};
|
||||||
use crate::notifications::events::ClientboundNotification;
|
|
||||||
use crate::util::result::{Error, Result};
|
|
||||||
|
|
||||||
use futures::try_join;
|
use futures::try_join;
|
||||||
use mongodb::bson::doc;
|
use mongodb::bson::doc;
|
||||||
@@ -8,161 +6,6 @@ use mongodb::options::{Collation, FindOneOptions};
|
|||||||
use rocket::serde::json::Value;
|
use rocket::serde::json::Value;
|
||||||
|
|
||||||
#[put("/<username>/friend")]
|
#[put("/<username>/friend")]
|
||||||
pub async fn req(user: User, username: String) -> Result<Value> {
|
pub async fn req(/*user: UserRef,*/ username: String) -> Result<Value> {
|
||||||
if user.bot.is_some() {
|
todo!()
|
||||||
return Err(Error::IsBot)
|
|
||||||
}
|
|
||||||
|
|
||||||
let col = get_collection("users");
|
|
||||||
let doc = col
|
|
||||||
.find_one(
|
|
||||||
doc! {
|
|
||||||
"username": username
|
|
||||||
},
|
|
||||||
FindOneOptions::builder()
|
|
||||||
.collation(Collation::builder().locale("en").strength(2).build())
|
|
||||||
.build(),
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "find_one",
|
|
||||||
with: "user",
|
|
||||||
})?
|
|
||||||
.ok_or_else(|| Error::UnknownUser)?;
|
|
||||||
|
|
||||||
let target_id = doc.get_str("_id").map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "get_str(_id)",
|
|
||||||
with: "user",
|
|
||||||
})?;
|
|
||||||
|
|
||||||
let target_user = Ref::from(target_id.to_string())?.fetch_user().await?;
|
|
||||||
if target_user.bot.is_some() {
|
|
||||||
return Err(Error::IsBot)
|
|
||||||
}
|
|
||||||
|
|
||||||
match get_relationship(&user, &target_id) {
|
|
||||||
RelationshipStatus::User => return Err(Error::NoEffect),
|
|
||||||
RelationshipStatus::Friend => return Err(Error::AlreadyFriends),
|
|
||||||
RelationshipStatus::Outgoing => return Err(Error::AlreadySentRequest),
|
|
||||||
RelationshipStatus::Blocked => return Err(Error::Blocked),
|
|
||||||
RelationshipStatus::BlockedOther => return Err(Error::BlockedByOther),
|
|
||||||
RelationshipStatus::Incoming => {
|
|
||||||
match try_join!(
|
|
||||||
col.update_one(
|
|
||||||
doc! {
|
|
||||||
"_id": &user.id,
|
|
||||||
"relations._id": target_id
|
|
||||||
},
|
|
||||||
doc! {
|
|
||||||
"$set": {
|
|
||||||
"relations.$.status": "Friend"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
None
|
|
||||||
),
|
|
||||||
col.update_one(
|
|
||||||
doc! {
|
|
||||||
"_id": target_id,
|
|
||||||
"relations._id": &user.id
|
|
||||||
},
|
|
||||||
doc! {
|
|
||||||
"$set": {
|
|
||||||
"relations.$.status": "Friend"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
None
|
|
||||||
)
|
|
||||||
) {
|
|
||||||
Ok(_) => {
|
|
||||||
let target_user = target_user
|
|
||||||
.from_override(&user, RelationshipStatus::Friend)
|
|
||||||
.await?;
|
|
||||||
let user = user
|
|
||||||
.from_override(&target_user, RelationshipStatus::Friend)
|
|
||||||
.await?;
|
|
||||||
|
|
||||||
ClientboundNotification::UserRelationship {
|
|
||||||
id: user.id.clone(),
|
|
||||||
user: target_user,
|
|
||||||
status: RelationshipStatus::Friend,
|
|
||||||
}
|
|
||||||
.publish(user.id.clone());
|
|
||||||
|
|
||||||
ClientboundNotification::UserRelationship {
|
|
||||||
id: target_id.to_string(),
|
|
||||||
user,
|
|
||||||
status: RelationshipStatus::Friend,
|
|
||||||
}
|
|
||||||
.publish(target_id.to_string());
|
|
||||||
|
|
||||||
Ok(json!({ "status": "Friend" }))
|
|
||||||
}
|
|
||||||
Err(_) => Err(Error::DatabaseError {
|
|
||||||
operation: "update_one",
|
|
||||||
with: "user",
|
|
||||||
}),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
RelationshipStatus::None => {
|
|
||||||
match try_join!(
|
|
||||||
col.update_one(
|
|
||||||
doc! {
|
|
||||||
"_id": &user.id
|
|
||||||
},
|
|
||||||
doc! {
|
|
||||||
"$push": {
|
|
||||||
"relations": {
|
|
||||||
"_id": target_id,
|
|
||||||
"status": "Outgoing"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
None
|
|
||||||
),
|
|
||||||
col.update_one(
|
|
||||||
doc! {
|
|
||||||
"_id": target_id
|
|
||||||
},
|
|
||||||
doc! {
|
|
||||||
"$push": {
|
|
||||||
"relations": {
|
|
||||||
"_id": &user.id,
|
|
||||||
"status": "Incoming"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
None
|
|
||||||
)
|
|
||||||
) {
|
|
||||||
Ok(_) => {
|
|
||||||
let target_user = target_user
|
|
||||||
.from_override(&user, RelationshipStatus::Outgoing)
|
|
||||||
.await?;
|
|
||||||
let user = user
|
|
||||||
.from_override(&target_user, RelationshipStatus::Incoming)
|
|
||||||
.await?;
|
|
||||||
|
|
||||||
ClientboundNotification::UserRelationship {
|
|
||||||
id: user.id.clone(),
|
|
||||||
user: target_user,
|
|
||||||
status: RelationshipStatus::Outgoing,
|
|
||||||
}
|
|
||||||
.publish(user.id.clone());
|
|
||||||
|
|
||||||
ClientboundNotification::UserRelationship {
|
|
||||||
id: target_id.to_string(),
|
|
||||||
user,
|
|
||||||
status: RelationshipStatus::Incoming,
|
|
||||||
}
|
|
||||||
.publish(target_id.to_string());
|
|
||||||
|
|
||||||
Ok(json!({ "status": "Outgoing" }))
|
|
||||||
}
|
|
||||||
Err(_) => Err(Error::DatabaseError {
|
|
||||||
operation: "update_one",
|
|
||||||
with: "user",
|
|
||||||
}),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,171 +1,10 @@
|
|||||||
use crate::database::*;
|
use revolt_quark::{Error, Result};
|
||||||
use crate::notifications::events::ClientboundNotification;
|
|
||||||
use crate::util::result::{Error, Result};
|
|
||||||
|
|
||||||
use futures::try_join;
|
use futures::try_join;
|
||||||
use mongodb::bson::doc;
|
use mongodb::bson::doc;
|
||||||
use rocket::serde::json::Value;
|
use rocket::serde::json::Value;
|
||||||
|
|
||||||
#[put("/<target>/block")]
|
#[put("/<target>/block")]
|
||||||
pub async fn req(user: User, target: Ref) -> Result<Value> {
|
pub async fn req(/*user: UserRef, target: Ref*/ target: String) -> Result<Value> {
|
||||||
if user.bot.is_some() {
|
todo!()
|
||||||
return Err(Error::IsBot)
|
|
||||||
}
|
|
||||||
|
|
||||||
let col = get_collection("users");
|
|
||||||
let target = target.fetch_user().await?;
|
|
||||||
|
|
||||||
match get_relationship(&user, &target.id) {
|
|
||||||
RelationshipStatus::User | RelationshipStatus::Blocked => Err(Error::NoEffect),
|
|
||||||
RelationshipStatus::BlockedOther => {
|
|
||||||
col.update_one(
|
|
||||||
doc! {
|
|
||||||
"_id": &user.id,
|
|
||||||
"relations._id": &target.id
|
|
||||||
},
|
|
||||||
doc! {
|
|
||||||
"$set": {
|
|
||||||
"relations.$.status": "Blocked"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
None,
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "update_one",
|
|
||||||
with: "user",
|
|
||||||
})?;
|
|
||||||
|
|
||||||
ClientboundNotification::UserRelationship {
|
|
||||||
id: user.id.clone(),
|
|
||||||
user: target,
|
|
||||||
status: RelationshipStatus::Blocked,
|
|
||||||
}
|
|
||||||
.publish(user.id.clone());
|
|
||||||
|
|
||||||
Ok(json!({ "status": "Blocked" }))
|
|
||||||
}
|
|
||||||
RelationshipStatus::None => {
|
|
||||||
match try_join!(
|
|
||||||
col.update_one(
|
|
||||||
doc! {
|
|
||||||
"_id": &user.id
|
|
||||||
},
|
|
||||||
doc! {
|
|
||||||
"$push": {
|
|
||||||
"relations": {
|
|
||||||
"_id": &target.id,
|
|
||||||
"status": "Blocked"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
None
|
|
||||||
),
|
|
||||||
col.update_one(
|
|
||||||
doc! {
|
|
||||||
"_id": &target.id
|
|
||||||
},
|
|
||||||
doc! {
|
|
||||||
"$push": {
|
|
||||||
"relations": {
|
|
||||||
"_id": &user.id,
|
|
||||||
"status": "BlockedOther"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
None
|
|
||||||
)
|
|
||||||
) {
|
|
||||||
Ok(_) => {
|
|
||||||
let target = target
|
|
||||||
.from_override(&user, RelationshipStatus::Blocked)
|
|
||||||
.await?;
|
|
||||||
let user = user
|
|
||||||
.from_override(&target, RelationshipStatus::BlockedOther)
|
|
||||||
.await?;
|
|
||||||
let target_id = target.id.clone();
|
|
||||||
|
|
||||||
ClientboundNotification::UserRelationship {
|
|
||||||
id: user.id.clone(),
|
|
||||||
user: target,
|
|
||||||
status: RelationshipStatus::Blocked,
|
|
||||||
}
|
|
||||||
.publish(user.id.clone());
|
|
||||||
|
|
||||||
ClientboundNotification::UserRelationship {
|
|
||||||
id: target_id.clone(),
|
|
||||||
user,
|
|
||||||
status: RelationshipStatus::BlockedOther,
|
|
||||||
}
|
|
||||||
.publish(target_id);
|
|
||||||
|
|
||||||
Ok(json!({ "status": "Blocked" }))
|
|
||||||
}
|
|
||||||
Err(_) => Err(Error::DatabaseError {
|
|
||||||
operation: "update_one",
|
|
||||||
with: "user",
|
|
||||||
}),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
RelationshipStatus::Friend
|
|
||||||
| RelationshipStatus::Incoming
|
|
||||||
| RelationshipStatus::Outgoing => {
|
|
||||||
match try_join!(
|
|
||||||
col.update_one(
|
|
||||||
doc! {
|
|
||||||
"_id": &user.id,
|
|
||||||
"relations._id": &target.id
|
|
||||||
},
|
|
||||||
doc! {
|
|
||||||
"$set": {
|
|
||||||
"relations.$.status": "Blocked"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
None
|
|
||||||
),
|
|
||||||
col.update_one(
|
|
||||||
doc! {
|
|
||||||
"_id": &target.id,
|
|
||||||
"relations._id": &user.id
|
|
||||||
},
|
|
||||||
doc! {
|
|
||||||
"$set": {
|
|
||||||
"relations.$.status": "BlockedOther"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
None
|
|
||||||
)
|
|
||||||
) {
|
|
||||||
Ok(_) => {
|
|
||||||
let target = target
|
|
||||||
.from_override(&user, RelationshipStatus::Blocked)
|
|
||||||
.await?;
|
|
||||||
let user = user
|
|
||||||
.from_override(&target, RelationshipStatus::BlockedOther)
|
|
||||||
.await?;
|
|
||||||
let target_id = target.id.clone();
|
|
||||||
|
|
||||||
ClientboundNotification::UserRelationship {
|
|
||||||
id: user.id.clone(),
|
|
||||||
user: target,
|
|
||||||
status: RelationshipStatus::Blocked,
|
|
||||||
}
|
|
||||||
.publish(user.id.clone());
|
|
||||||
|
|
||||||
ClientboundNotification::UserRelationship {
|
|
||||||
id: target_id.clone(),
|
|
||||||
user,
|
|
||||||
status: RelationshipStatus::BlockedOther,
|
|
||||||
}
|
|
||||||
.publish(target_id);
|
|
||||||
|
|
||||||
Ok(json!({ "status": "Blocked" }))
|
|
||||||
}
|
|
||||||
Err(_) => Err(Error::DatabaseError {
|
|
||||||
operation: "update_one",
|
|
||||||
with: "user",
|
|
||||||
}),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,4 @@
|
|||||||
use crate::database::*;
|
use revolt_quark::{EmptyResponse, Result};
|
||||||
use crate::notifications::events::ClientboundNotification;
|
|
||||||
use crate::util::result::{Error, Result, EmptyResponse};
|
|
||||||
use crate::util::regex::RE_USERNAME;
|
use crate::util::regex::RE_USERNAME;
|
||||||
use mongodb::bson::doc;
|
use mongodb::bson::doc;
|
||||||
use rauth::entities::Account;
|
use rauth::entities::Account;
|
||||||
@@ -19,45 +17,9 @@ pub struct Data {
|
|||||||
#[patch("/<_ignore_id>/username", data = "<data>")]
|
#[patch("/<_ignore_id>/username", data = "<data>")]
|
||||||
pub async fn req(
|
pub async fn req(
|
||||||
account: Account,
|
account: Account,
|
||||||
user: User,
|
//user: UserRef,
|
||||||
data: Json<Data>,
|
data: Json<Data>,
|
||||||
_ignore_id: String,
|
_ignore_id: String,
|
||||||
) -> Result<EmptyResponse> {
|
) -> Result<EmptyResponse> {
|
||||||
if user.bot.is_some() {
|
todo!()
|
||||||
return Err(Error::IsBot)
|
|
||||||
}
|
|
||||||
|
|
||||||
data.validate()
|
|
||||||
.map_err(|error| Error::FailedValidation { error })?;
|
|
||||||
|
|
||||||
account.verify_password(&data.password)
|
|
||||||
.map_err(|_| Error::InvalidCredentials)?;
|
|
||||||
|
|
||||||
let mut set = doc! {};
|
|
||||||
if let Some(username) = &data.username {
|
|
||||||
if (username.to_lowercase() != user.username.to_lowercase()) && User::is_username_taken(&username).await? {
|
|
||||||
return Err(Error::UsernameTaken);
|
|
||||||
}
|
|
||||||
|
|
||||||
set.insert("username", username.clone());
|
|
||||||
}
|
|
||||||
|
|
||||||
get_collection("users")
|
|
||||||
.update_one(doc! { "_id": &user.id }, doc! { "$set": set }, None)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "update_one",
|
|
||||||
with: "user",
|
|
||||||
})?;
|
|
||||||
|
|
||||||
ClientboundNotification::UserUpdate {
|
|
||||||
id: user.id.clone(),
|
|
||||||
data: json!({
|
|
||||||
"username": data.username
|
|
||||||
}),
|
|
||||||
clear: None,
|
|
||||||
}
|
|
||||||
.publish_as_user(user.id.clone());
|
|
||||||
|
|
||||||
Ok(EmptyResponse {})
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,8 +1,7 @@
|
|||||||
use crate::notifications::events::ClientboundNotification;
|
use revolt_quark::{EmptyResponse, Result, models::user::FieldsUser};
|
||||||
use crate::util::result::{Error, Result, EmptyResponse};
|
|
||||||
use crate::{database::*, notifications::events::RemoveUserField};
|
|
||||||
|
|
||||||
use mongodb::bson::{doc, to_document};
|
use mongodb::bson::{doc, to_document};
|
||||||
|
use revolt_quark::models::user::UserStatus;
|
||||||
use rocket::serde::json::Json;
|
use rocket::serde::json::Json;
|
||||||
use serde::{Deserialize, Serialize};
|
use serde::{Deserialize, Serialize};
|
||||||
use validator::Validate;
|
use validator::Validate;
|
||||||
@@ -19,138 +18,16 @@ pub struct UserProfileData {
|
|||||||
|
|
||||||
#[derive(Validate, Serialize, Deserialize)]
|
#[derive(Validate, Serialize, Deserialize)]
|
||||||
pub struct Data {
|
pub struct Data {
|
||||||
#[validate]
|
// #[validate]
|
||||||
status: Option<UserStatus>,
|
status: Option<UserStatus>,
|
||||||
#[validate]
|
#[validate]
|
||||||
profile: Option<UserProfileData>,
|
profile: Option<UserProfileData>,
|
||||||
#[validate(length(min = 1, max = 128))]
|
#[validate(length(min = 1, max = 128))]
|
||||||
avatar: Option<String>,
|
avatar: Option<String>,
|
||||||
remove: Option<RemoveUserField>,
|
remove: Option<FieldsUser>,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[patch("/<_ignore_id>", data = "<data>")]
|
#[patch("/<_ignore_id>", data = "<data>")]
|
||||||
pub async fn req(user: User, data: Json<Data>, _ignore_id: String) -> Result<EmptyResponse> {
|
pub async fn req(/*user: UserRef,*/ data: Json<Data>, _ignore_id: String) -> Result<EmptyResponse> {
|
||||||
let mut data = data.into_inner();
|
todo!()
|
||||||
|
|
||||||
data.validate()
|
|
||||||
.map_err(|error| Error::FailedValidation { error })?;
|
|
||||||
|
|
||||||
if data.status.is_none()
|
|
||||||
&& data.profile.is_none()
|
|
||||||
&& data.avatar.is_none()
|
|
||||||
&& data.remove.is_none()
|
|
||||||
{
|
|
||||||
return Ok(EmptyResponse {});
|
|
||||||
}
|
|
||||||
|
|
||||||
let mut unset = doc! {};
|
|
||||||
let mut set = doc! {};
|
|
||||||
|
|
||||||
let mut remove_background = false;
|
|
||||||
let mut remove_avatar = false;
|
|
||||||
|
|
||||||
if let Some(remove) = &data.remove {
|
|
||||||
match remove {
|
|
||||||
RemoveUserField::ProfileContent => {
|
|
||||||
unset.insert("profile.content", 1);
|
|
||||||
}
|
|
||||||
RemoveUserField::ProfileBackground => {
|
|
||||||
unset.insert("profile.background", 1);
|
|
||||||
remove_background = true;
|
|
||||||
}
|
|
||||||
RemoveUserField::StatusText => {
|
|
||||||
unset.insert("status.text", 1);
|
|
||||||
}
|
|
||||||
RemoveUserField::Avatar => {
|
|
||||||
unset.insert("avatar", 1);
|
|
||||||
remove_avatar = true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if let Some(status) = &data.status {
|
|
||||||
set.insert(
|
|
||||||
"status",
|
|
||||||
to_document(&status).map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "to_document",
|
|
||||||
with: "status",
|
|
||||||
})?,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
if let Some(profile) = data.profile {
|
|
||||||
if let Some(content) = profile.content {
|
|
||||||
set.insert("profile.content", content);
|
|
||||||
}
|
|
||||||
|
|
||||||
if let Some(attachment_id) = profile.background {
|
|
||||||
let attachment =
|
|
||||||
File::find_and_use(&attachment_id, "backgrounds", "user", &user.id).await?;
|
|
||||||
set.insert(
|
|
||||||
"profile.background",
|
|
||||||
to_document(&attachment).map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "to_document",
|
|
||||||
with: "attachment",
|
|
||||||
})?,
|
|
||||||
);
|
|
||||||
|
|
||||||
remove_background = true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
let avatar = std::mem::replace(&mut data.avatar, None);
|
|
||||||
if let Some(attachment_id) = avatar {
|
|
||||||
let attachment = File::find_and_use(&attachment_id, "avatars", "user", &user.id).await?;
|
|
||||||
set.insert(
|
|
||||||
"avatar",
|
|
||||||
to_document(&attachment).map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "to_document",
|
|
||||||
with: "attachment",
|
|
||||||
})?,
|
|
||||||
);
|
|
||||||
|
|
||||||
remove_avatar = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
let mut operations = doc! {};
|
|
||||||
if set.len() > 0 {
|
|
||||||
operations.insert("$set", &set);
|
|
||||||
}
|
|
||||||
|
|
||||||
if unset.len() > 0 {
|
|
||||||
operations.insert("$unset", unset);
|
|
||||||
}
|
|
||||||
|
|
||||||
if operations.len() > 0 {
|
|
||||||
get_collection("users")
|
|
||||||
.update_one(doc! { "_id": &user.id }, operations, None)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "update_one",
|
|
||||||
with: "user",
|
|
||||||
})?;
|
|
||||||
}
|
|
||||||
|
|
||||||
ClientboundNotification::UserUpdate {
|
|
||||||
id: user.id.clone(),
|
|
||||||
data: json!(set),
|
|
||||||
clear: data.remove,
|
|
||||||
}
|
|
||||||
.publish_as_user(user.id.clone());
|
|
||||||
|
|
||||||
if remove_avatar {
|
|
||||||
if let Some(old_avatar) = user.avatar {
|
|
||||||
old_avatar.delete().await?;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if remove_background {
|
|
||||||
if let Some(profile) = user.profile {
|
|
||||||
if let Some(old_background) = profile.background {
|
|
||||||
old_background.delete().await?;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Ok(EmptyResponse {})
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,40 +1,9 @@
|
|||||||
use crate::database::*;
|
use revolt_quark::{Error, Result};
|
||||||
use crate::util::result::{Error, Result};
|
|
||||||
|
|
||||||
use futures::StreamExt;
|
|
||||||
use mongodb::bson::doc;
|
use mongodb::bson::doc;
|
||||||
use rocket::serde::json::Value;
|
use rocket::serde::json::Value;
|
||||||
|
|
||||||
#[get("/dms")]
|
#[get("/dms")]
|
||||||
pub async fn req(user: User) -> Result<Value> {
|
pub async fn req(/*user: UserRef*/) -> Result<Value> {
|
||||||
let mut cursor = get_collection("channels")
|
todo!()
|
||||||
.find(
|
|
||||||
doc! {
|
|
||||||
"$or": [
|
|
||||||
{
|
|
||||||
"channel_type": "DirectMessage",
|
|
||||||
"active": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"channel_type": "Group"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"recipients": user.id
|
|
||||||
},
|
|
||||||
None,
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::DatabaseError {
|
|
||||||
operation: "find",
|
|
||||||
with: "channels",
|
|
||||||
})?;
|
|
||||||
|
|
||||||
let mut channels = vec![];
|
|
||||||
while let Some(result) = cursor.next().await {
|
|
||||||
if let Ok(doc) = result {
|
|
||||||
channels.push(doc);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Ok(json!(channels))
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,24 +1,9 @@
|
|||||||
use crate::database::*;
|
use revolt_quark::{Error, Result};
|
||||||
use crate::util::result::{Error, Result};
|
|
||||||
|
|
||||||
use mongodb::bson::doc;
|
use mongodb::bson::doc;
|
||||||
use rocket::serde::json::Value;
|
use rocket::serde::json::Value;
|
||||||
|
|
||||||
#[get("/<target>/profile")]
|
#[get("/<target>/profile")]
|
||||||
pub async fn req(user: User, target: Ref) -> Result<Value> {
|
pub async fn req(/*user: UserRef, target: Ref*/ target: String) -> Result<Value> {
|
||||||
let target = target.fetch_user().await?;
|
todo!()
|
||||||
let perm = permissions::PermissionCalculator::new(&user)
|
|
||||||
.with_user(&target)
|
|
||||||
.for_user_given()
|
|
||||||
.await?;
|
|
||||||
|
|
||||||
if !perm.get_view_profile() {
|
|
||||||
Err(Error::MissingPermission)?
|
|
||||||
}
|
|
||||||
|
|
||||||
if target.profile.is_some() {
|
|
||||||
Ok(json!(target.profile))
|
|
||||||
} else {
|
|
||||||
Ok(json!({}))
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,13 +1,8 @@
|
|||||||
use crate::database::*;
|
use revolt_quark::{Error, Result};
|
||||||
use crate::util::result::{Error, Result};
|
|
||||||
|
|
||||||
use rocket::serde::json::Value;
|
use rocket::serde::json::Value;
|
||||||
|
|
||||||
#[get("/<target>/relationship")]
|
#[get("/<target>/relationship")]
|
||||||
pub async fn req(user: User, target: Ref) -> Result<Value> {
|
pub async fn req(/*user: UserRef, target: Ref*/ target: String) -> Result<Value> {
|
||||||
if user.bot.is_some() {
|
todo!()
|
||||||
return Err(Error::IsBot)
|
|
||||||
}
|
|
||||||
|
|
||||||
Ok(json!({ "status": get_relationship(&user, &target.id) }))
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,17 +1,8 @@
|
|||||||
use crate::database::*;
|
use revolt_quark::{Error, Result};
|
||||||
use crate::util::result::{Error, Result};
|
|
||||||
|
|
||||||
use rocket::serde::json::Value;
|
use rocket::serde::json::Value;
|
||||||
|
|
||||||
#[get("/relationships")]
|
#[get("/relationships")]
|
||||||
pub async fn req(user: User) -> Result<Value> {
|
pub async fn req(/*user: UserRef*/) -> Result<Value> {
|
||||||
if user.bot.is_some() {
|
todo!()
|
||||||
return Err(Error::IsBot)
|
|
||||||
}
|
|
||||||
|
|
||||||
Ok(if let Some(vec) = user.relations {
|
|
||||||
json!(vec)
|
|
||||||
} else {
|
|
||||||
json!([])
|
|
||||||
})
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,9 +1,8 @@
|
|||||||
use crate::database::*;
|
use revolt_quark::Result;
|
||||||
use crate::util::result::{Result};
|
|
||||||
|
|
||||||
use rocket::serde::json::Value;
|
use rocket::serde::json::Value;
|
||||||
|
|
||||||
#[get("/@me")]
|
#[get("/@me")]
|
||||||
pub async fn req(user: User) -> Result<Value> {
|
pub async fn req(/*user: UserRef*/) -> Result<Value> {
|
||||||
Ok(json!(user))
|
todo!()
|
||||||
}
|
}
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user