diff --git a/.dockerignore b/.dockerignore index 5054844f..453634df 100644 --- a/.dockerignore +++ b/.dockerignore @@ -11,11 +11,10 @@ docker/ *.iml # Git folder -# .git +.git .gitea .gitlab .github -.forgejo # Dot files .env diff --git a/.editorconfig b/.editorconfig index 91f073bd..2d7438a4 100644 --- a/.editorconfig +++ b/.editorconfig @@ -22,7 +22,3 @@ indent_size = 2 [*.rs] indent_style = tab max_line_length = 98 - -[{.forgejo/**/*.yml,.github/**/*.yml}] -indent_size = 2 -indent_style = space diff --git a/.forgejo/actions/rust-toolchain/action.yml b/.forgejo/actions/rust-toolchain/action.yml deleted file mode 100644 index 71fb96f5..00000000 --- a/.forgejo/actions/rust-toolchain/action.yml +++ /dev/null @@ -1,53 +0,0 @@ -name: rust-toolchain -description: | - Install a Rust toolchain using rustup. - See https://rust-lang.github.io/rustup/concepts/toolchains.html#toolchain-specification - for more information about toolchains. -inputs: - toolchain: - description: | - Rust toolchain name. - See https://rust-lang.github.io/rustup/concepts/toolchains.html#toolchain-specification - required: false - target: - description: Target triple to install for this toolchain - required: false - components: - description: Space-separated list of components to be additionally installed for a new toolchain - required: false -outputs: - rustc_version: - description: The rustc version installed - value: ${{ steps.rustc-version.outputs.version }} - -runs: - using: composite - steps: - - name: Cache rustup toolchains - uses: actions/cache@v3 - with: - path: | - ~/.rustup - !~/.rustup/tmp - !~/.rustup/downloads - # Requires repo to be cloned if toolchain is not specified - key: ${{ runner.os }}-rustup-${{ inputs.toolchain || hashFiles('**/rust-toolchain.toml') }} - - name: Install Rust toolchain - shell: bash - run: | - if ! command -v rustup &> /dev/null ; then - curl --proto '=https' --tlsv1.2 --retry 10 --retry-connrefused -fsSL "https://sh.rustup.rs" | sh -s -- --default-toolchain none -y - echo "${CARGO_HOME:-$HOME/.cargo}/bin" >> $GITHUB_PATH - fi - - shell: bash - run: | - set -x - ${{ inputs.toolchain && format('rustup override set {0}', inputs.toolchain) }} - ${{ inputs.target && format('rustup target add {0}', inputs.target) }} - ${{ inputs.components && format('rustup component add {0}', inputs.components) }} - cargo --version - rustc --version - - id: rustc-version - shell: bash - run: | - echo "version=$(rustc --version)" >> $GITHUB_OUTPUT diff --git a/.forgejo/actions/sccache/action.yml b/.forgejo/actions/sccache/action.yml deleted file mode 100644 index b5e5dcf4..00000000 --- a/.forgejo/actions/sccache/action.yml +++ /dev/null @@ -1,29 +0,0 @@ -name: sccache -description: | - Install sccache for caching builds in GitHub Actions. - -inputs: - token: - description: 'A Github PAT' - required: false - -runs: - using: composite - steps: - - name: Install sccache - uses: https://github.com/mozilla-actions/sccache-action@v0.0.9 - with: - token: ${{ inputs.token }} - - name: Configure sccache - uses: https://github.com/actions/github-script@v7 - with: - script: | - core.exportVariable('ACTIONS_RESULTS_URL', process.env.ACTIONS_RESULTS_URL || ''); - core.exportVariable('ACTIONS_RUNTIME_TOKEN', process.env.ACTIONS_RUNTIME_TOKEN || ''); - - shell: bash - run: | - echo "SCCACHE_GHA_ENABLED=true" >> $GITHUB_ENV - echo "RUSTC_WRAPPER=sccache" >> $GITHUB_ENV - echo "CMAKE_C_COMPILER_LAUNCHER=sccache" >> $GITHUB_ENV - echo "CMAKE_CXX_COMPILER_LAUNCHER=sccache" >> $GITHUB_ENV - echo "CMAKE_CUDA_COMPILER_LAUNCHER=sccache" >> $GITHUB_ENV diff --git a/.forgejo/actions/timelord/action.yml b/.forgejo/actions/timelord/action.yml deleted file mode 100644 index bb9766d5..00000000 --- a/.forgejo/actions/timelord/action.yml +++ /dev/null @@ -1,46 +0,0 @@ -name: timelord -description: | - Use timelord to set file timestamps -inputs: - key: - description: | - The key to use for caching the timelord data. - This should be unique to the repository and the runner. - required: true - default: timelord-v0 - path: - description: | - The path to the directory to be timestamped. - This should be the root of the repository. - required: true - default: . - -runs: - using: composite - steps: - - name: Cache timelord-cli installation - id: cache-timelord-bin - uses: actions/cache@v3 - with: - path: ~/.cargo/bin/timelord - key: timelord-cli-v3.0.1 - - name: Install timelord-cli - uses: https://github.com/cargo-bins/cargo-binstall@main - if: steps.cache-timelord-bin.outputs.cache-hit != 'true' - - run: cargo binstall timelord-cli@3.0.1 - shell: bash - if: steps.cache-timelord-bin.outputs.cache-hit != 'true' - - - name: Load timelord files - uses: actions/cache/restore@v3 - with: - path: /timelord/ - key: ${{ inputs.key }} - - name: Run timelord to set timestamps - shell: bash - run: timelord sync --source-dir ${{ inputs.path }} --cache-dir /timelord/ - - name: Save timelord - uses: actions/cache/save@v3 - with: - path: /timelord/ - key: ${{ inputs.key }} diff --git a/.forgejo/workflows/build-alpine.yml b/.forgejo/workflows/build-alpine.yml deleted file mode 100644 index b1757a60..00000000 --- a/.forgejo/workflows/build-alpine.yml +++ /dev/null @@ -1,49 +0,0 @@ -on: - - workflow-dispatch - - push - -jobs: - build: - runs-on: ubuntu-latest - container: - image: alpine:edge - - steps: - - name: set up dependencies - run: | - apk update - apk upgrade - apk add nodejs git alpine-sdk - - uses: actions/checkout@v4 - name: checkout the alpine dir - with: - sparse-checkout: "alpine/" - - # - uses: actions/checkout@v4 - # name: checkout the rest in the alpine dir - # with: - # path: 'alpine/continuwuity' - - name: set up user - run: adduser -DG abuild ci - - - name: set up keys - run: | - pwd - mkdir ~/.abuild - echo "${{ secrets.abuild_privkey }}" > ~/.abuild/ci@continuwuity.rsa - echo "${{ secrets.abuild_pubkey }}" > ~/.abuild/ci@continuwuity.rsa.pub - echo $HOME - echo 'PACKAGER_PRIVKEY="/root/.abuild/ci@continuwuity.rsa"' > ~/.abuild/abuild.conf - ls ~/.abuild - - - name: go go gadget abuild - run: | - cd alpine - # modify the APKBUILD to use the current branch instead of the release - # note that it seems to require the repo to be public (as you'll get - # a 404 even if the token is provided) - export ARCHIVE_URL="${{ github.server_url }}/${{ github.repository }}/archive/${{ github.ref_name }}.tar.gz" - echo $ARCHIVE_URL - sed -i '/^source=/c\source="'"$ARCHIVE_URL" APKBUILD - abuild -F checksum - abuild -Fr diff --git a/.forgejo/workflows/documentation.yml b/.forgejo/workflows/documentation.yml index 7d95a317..55f25058 100644 --- a/.forgejo/workflows/documentation.yml +++ b/.forgejo/workflows/documentation.yml @@ -57,17 +57,17 @@ jobs: run: npm install --save-dev wrangler@latest - name: Deploy to Cloudflare Pages (Production) - if: github.ref == 'refs/heads/main' && vars.CLOUDFLARE_PROJECT_NAME != '' + if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }} uses: https://github.com/cloudflare/wrangler-action@v3 with: accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} - command: pages deploy ./public --branch="main" --commit-dirty=true --project-name="${{ vars.CLOUDFLARE_PROJECT_NAME }}" + command: pages deploy ./public --branch=main --commit-dirty=true --project-name=${{ vars.CLOUDFLARE_PROJECT_NAME }}" - name: Deploy to Cloudflare Pages (Preview) - if: github.ref != 'refs/heads/main' && vars.CLOUDFLARE_PROJECT_NAME != '' + if: ${{ github.event_name != 'push' || github.ref != 'refs/heads/main' }} uses: https://github.com/cloudflare/wrangler-action@v3 with: accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} - command: pages deploy ./public --branch="${{ github.head_ref || github.ref_name }}" --commit-dirty=true --project-name="${{ vars.CLOUDFLARE_PROJECT_NAME }}" + command: pages deploy ./public --branch=${{ github.head_ref }} --commit-dirty=true --project-name=${{ vars.CLOUDFLARE_PROJECT_NAME }}" diff --git a/.forgejo/workflows/element.yml b/.forgejo/workflows/element.yml deleted file mode 100644 index db771197..00000000 --- a/.forgejo/workflows/element.yml +++ /dev/null @@ -1,127 +0,0 @@ -name: Deploy Element Web - -on: - schedule: - - cron: "0 0 * * *" - workflow_dispatch: - -concurrency: - group: "element-${{ github.ref }}" - cancel-in-progress: true - -jobs: - build-and-deploy: - name: Build and Deploy Element Web - runs-on: ubuntu-latest - - steps: - - name: Setup Node.js - uses: https://code.forgejo.org/actions/setup-node@v4 - with: - node-version: "20" - - - name: Clone, setup, and build Element Web - run: | - echo "Cloning Element Web..." - git clone https://github.com/maunium/element-web - cd element-web - git checkout develop - git pull - - echo "Cloning matrix-js-sdk..." - git clone https://github.com/matrix-org/matrix-js-sdk.git - - echo "Installing Yarn..." - npm install -g yarn - - echo "Installing dependencies..." - yarn install - - echo "Preparing build environment..." - mkdir -p .home - - echo "Cleaning up specific node_modules paths..." - rm -rf node_modules/@types/eslint-scope/ matrix-*-sdk/node_modules/@types/eslint-scope || echo "Cleanup paths not found, continuing." - - echo "Getting matrix-js-sdk commit hash..." - cd matrix-js-sdk - jsver=$(git rev-parse HEAD) - jsver=${jsver:0:12} - cd .. - echo "matrix-js-sdk version hash: $jsver" - - echo "Getting element-web commit hash..." - ver=$(git rev-parse HEAD) - ver=${ver:0:12} - echo "element-web version hash: $ver" - - chmod +x ./build-sh - - export VERSION="$ver-js-$jsver" - echo "Building Element Web version: $VERSION" - ./build-sh - - echo "Checking for build output..." - ls -la webapp/ - - - name: Create config.json - run: | - cat < ./element-web/webapp/config.json - { - "default_server_name": "continuwuity.org", - "default_server_config": { - "m.homeserver": { - "base_url": "https://matrix.continuwuity.org" - } - }, - "default_country_code": "GB", - "default_theme": "dark", - "mobile_guide_toast": false, - "show_labs_settings": true, - "room_directory": [ - "continuwuity.org", - "matrixrooms.info" - ], - "settings_defaults": { - "UIFeature.urlPreviews": true, - "UIFeature.feedback": false, - "UIFeature.voip": false, - "UIFeature.shareQrCode": false, - "UIFeature.shareSocial": false, - "UIFeature.locationSharing": false, - "enableSyntaxHighlightLanguageDetection": true - }, - "features": { - "feature_pinning": true, - "feature_custom_themes": true - } - } - EOF - echo "Created ./element-web/webapp/config.json" - cat ./element-web/webapp/config.json - - - name: Upload Artifact - uses: https://code.forgejo.org/actions/upload-artifact@v3 - with: - name: element-web - path: ./element-web/webapp/ - retention-days: 14 - - - name: Install Wrangler - run: npm install --save-dev wrangler@latest - - - name: Deploy to Cloudflare Pages (Production) - if: github.ref == 'refs/heads/main' && vars.CLOUDFLARE_PROJECT_NAME != '' - uses: https://github.com/cloudflare/wrangler-action@v3 - with: - accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} - apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} - command: pages deploy ./element-web/webapp --branch="main" --commit-dirty=true --project-name="${{ vars.CLOUDFLARE_PROJECT_NAME }}-element" - - - name: Deploy to Cloudflare Pages (Preview) - if: github.ref != 'refs/heads/main' && vars.CLOUDFLARE_PROJECT_NAME != '' - uses: https://github.com/cloudflare/wrangler-action@v3 - with: - accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} - apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} - command: pages deploy ./element-web/webapp --branch="${{ github.head_ref || github.ref_name }}" --commit-dirty=true --project-name="${{ vars.CLOUDFLARE_PROJECT_NAME }}-element" diff --git a/.forgejo/workflows/release-image.yml b/.forgejo/workflows/release-image.yml index ec466c58..2cb6a329 100644 --- a/.forgejo/workflows/release-image.yml +++ b/.forgejo/workflows/release-image.yml @@ -1,24 +1,24 @@ name: Release Docker Image -concurrency: +concurrency: group: "release-image-${{ github.ref }}" on: + pull_request: push: paths-ignore: - - "*.md" - - "**/*.md" - - ".gitlab-ci.yml" - - ".gitignore" - - "renovate.json" - - "debian/**" - - "docker/**" - - "docs/**" + - '.gitlab-ci.yml' + - '.gitignore' + - 'renovate.json' + - 'debian/**' + - 'docker/**' + - 'docs/**' # Allows you to run this workflow manually from the Actions tab workflow_dispatch: env: - BUILTIN_REGISTRY: forgejo.ellis.link - BUILTIN_REGISTRY_ENABLED: "${{ ((vars.BUILTIN_REGISTRY_USER && secrets.BUILTIN_REGISTRY_PASSWORD) || (github.event_name != 'pull_request' || github.event.pull_request.head.repo.fork == false)) && 'true' || 'false' }}" + BUILTIN_REGISTRY: forgejo.ellis.link + BUILTIN_REGISTRY_ENABLED: "${{ ((vars.BUILTIN_REGISTRY_USER && secrets.BUILTIN_REGISTRY_PASSWORD) || (github.event_name != 'pull_request' || github.event.pull_request.head.repo.fork == false)) && 'true' || 'false' }}" + jobs: define-variables: @@ -37,7 +37,7 @@ jobs: script: | const githubRepo = '${{ github.repository }}'.toLowerCase() const repoId = githubRepo.split('/')[1] - + core.setOutput('github_repository', githubRepo) const builtinImage = '${{ env.BUILTIN_REGISTRY }}/' + githubRepo let images = [] @@ -48,7 +48,7 @@ jobs: core.setOutput('images_list', images.join(",")) const platforms = ['linux/amd64', 'linux/arm64'] core.setOutput('build_matrix', JSON.stringify({ - platform: platforms, + platform: platforms, include: platforms.map(platform => { return { platform, slug: platform.replace('/', '-') @@ -65,29 +65,38 @@ jobs: attestations: write id-token: write strategy: - matrix: - { - "include": - [ - { "platform": "linux/amd64", "slug": "linux-amd64" }, - { "platform": "linux/arm64", "slug": "linux-arm64" }, - ], - "platform": ["linux/amd64", "linux/arm64"], - } + matrix: { + "include": [ + { + "platform": "linux/amd64", + "slug": "linux-amd64" + }, + { + "platform": "linux/arm64", + "slug": "linux-arm64" + } + ], + "platform": [ + "linux/amd64", + "linux/arm64" + ] + } steps: - name: Echo strategy run: echo '${{ toJSON(fromJSON(needs.define-variables.outputs.build_matrix)) }}' - name: Echo matrix run: echo '${{ toJSON(matrix) }}' - - name: Checkout repository uses: actions/checkout@v4 with: persist-credentials: false - - name: Install rust - id: rust-toolchain - uses: ./.forgejo/actions/rust-toolchain - + - run: | + if ! command -v rustup &> /dev/null ; then + curl --proto '=https' --tlsv1.2 --retry 10 --retry-connrefused -fsSL "https://sh.rustup.rs" | sh -s -- --default-toolchain none -y + echo "${CARGO_HOME:-$HOME/.cargo}/bin" >> $GITHUB_PATH + fi + - uses: https://github.com/cargo-bins/cargo-binstall@main + - run: cargo binstall timelord-cli@3.0.1 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 - name: Set up QEMU @@ -96,9 +105,9 @@ jobs: - name: Login to builtin registry uses: docker/login-action@v3 with: - registry: ${{ env.BUILTIN_REGISTRY }} - username: ${{ vars.BUILTIN_REGISTRY_USER || github.actor }} - password: ${{ secrets.BUILTIN_REGISTRY_PASSWORD || secrets.GITHUB_TOKEN }} + registry: ${{ env.BUILTIN_REGISTRY }} + username: ${{ vars.BUILTIN_REGISTRY_USER || github.actor }} + password: ${{ secrets.BUILTIN_REGISTRY_PASSWORD || secrets.GITHUB_TOKEN }} # This step uses [docker/metadata-action](https://github.com/docker/metadata-action#about) to extract tags and labels that will be applied to the specified image. The `id` "meta" allows the output of this step to be referenced in a subsequent step. The `images` value provides the base name for the tags and labels. - name: Extract metadata (labels, annotations) for Docker @@ -121,58 +130,18 @@ jobs: echo "COMMIT_SHORT_SHA=$calculatedSha" >> $GITHUB_ENV - name: Get Git commit timestamps run: echo "TIMESTAMP=$(git log -1 --pretty=%ct)" >> $GITHUB_ENV - - - uses: ./.forgejo/actions/timelord + - name: Set up timelord + uses: actions/cache/restore@v3 with: + path: /timelord/ + key: timelord-v0 # Cache is already split per runner + - name: Run timelord to set timestamps + run: timelord sync --source-dir . --cache-dir /timelord/ + - name: Save timelord + uses: actions/cache/save@v3 + with: + path: /timelord/ key: timelord-v0 - path: . - - - name: Cache Rust registry - uses: actions/cache@v3 - with: - path: | - .cargo/git - .cargo/git/checkouts - .cargo/registry - .cargo/registry/src - key: rust-registry-image-${{hashFiles('**/Cargo.lock') }} - - name: Cache cargo target - id: cache-cargo-target - uses: actions/cache@v3 - with: - path: | - cargo-target-${{ matrix.slug }} - key: cargo-target-${{ matrix.slug }}-${{hashFiles('**/Cargo.lock') }}-${{steps.rust-toolchain.outputs.rustc_version}} - - name: Cache apt cache - id: cache-apt - uses: actions/cache@v3 - with: - path: | - var-cache-apt-${{ matrix.slug }} - key: var-cache-apt-${{ matrix.slug }} - - name: Cache apt lib - id: cache-apt-lib - uses: actions/cache@v3 - with: - path: | - var-lib-apt-${{ matrix.slug }} - key: var-lib-apt-${{ matrix.slug }} - - name: inject cache into docker - uses: https://github.com/reproducible-containers/buildkit-cache-dance@v3.1.0 - with: - cache-map: | - { - ".cargo/registry": "/usr/local/cargo/registry", - ".cargo/git/db": "/usr/local/cargo/git/db", - "cargo-target-${{ matrix.slug }}": { - "target": "/app/target", - "id": "cargo-target-${{ matrix.platform }}" - }, - "var-cache-apt-${{ matrix.slug }}": "/var/cache/apt", - "var-lib-apt-${{ matrix.slug }}": "/var/lib/apt" - } - skip-extraction: ${{ steps.cache.outputs.cache-hit }} - - name: Build and push Docker image by digest id: build uses: docker/build-push-action@v6 @@ -180,10 +149,7 @@ jobs: context: . file: "docker/Dockerfile" build-args: | - GIT_COMMIT_HASH=${{ github.sha }}) - GIT_COMMIT_HASH_SHORT=${{ env.COMMIT_SHORT_SHA }}) - GIT_REMOTE_URL=${{github.event.repository.html_url }} - GIT_REMOTE_COMMIT_URL=${{github.event.head_commit.url }} + CONDUWUIT_VERSION_EXTRA=${{ env.COMMIT_SHORT_SHA }} platforms: ${{ matrix.platform }} labels: ${{ steps.meta.outputs.labels }} annotations: ${{ steps.meta.outputs.annotations }} @@ -199,7 +165,7 @@ jobs: run: | mkdir -p /tmp/digests digest="${{ steps.build.outputs.digest }}" - touch "/tmp/digests/${digest#sha256:}" + touch "/tmp/digests/${digest#sha256:}" - name: Upload digest uses: forgejo/upload-artifact@v4 @@ -208,7 +174,7 @@ jobs: path: /tmp/digests/* if-no-files-found: error retention-days: 1 - + merge: runs-on: dind container: ghcr.io/catthehacker/ubuntu:act-latest @@ -224,9 +190,9 @@ jobs: - name: Login to builtin registry uses: docker/login-action@v3 with: - registry: ${{ env.BUILTIN_REGISTRY }} - username: ${{ vars.BUILTIN_REGISTRY_USER || github.actor }} - password: ${{ secrets.BUILTIN_REGISTRY_PASSWORD || secrets.GITHUB_TOKEN }} + registry: ${{ env.BUILTIN_REGISTRY }} + username: ${{ vars.BUILTIN_REGISTRY_USER || github.actor }} + password: ${{ secrets.BUILTIN_REGISTRY_PASSWORD || secrets.GITHUB_TOKEN }} - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 @@ -239,13 +205,13 @@ jobs: type=semver,pattern=v{{version}} type=semver,pattern=v{{major}}.{{minor}},enable=${{ !startsWith(github.ref, 'refs/tags/v0.0.') }} type=semver,pattern=v{{major}},enable=${{ !startsWith(github.ref, 'refs/tags/v0.') }} - type=ref,event=branch,prefix=${{ format('refs/heads/{0}', github.event.repository.default_branch) != github.ref && 'branch-' || '' }} + type=ref,event=branch,prefix=${{ format('refs/heads/{0}', github.event.repository.default_branch) 1= github.ref && 'branch-' || '' }} type=ref,event=pr type=sha,format=long images: ${{needs.define-variables.outputs.images}} # default labels & annotations: https://github.com/docker/metadata-action/blob/master/src/meta.ts#L509 env: - DOCKER_METADATA_ANNOTATIONS_LEVELS: index + DOCKER_METADATA_ANNOTATIONS_LEVELS: index - name: Create manifest list and push working-directory: /tmp/digests diff --git a/.forgejo/workflows/rust-checks.yml b/.forgejo/workflows/rust-checks.yml deleted file mode 100644 index 35ca1ad7..00000000 --- a/.forgejo/workflows/rust-checks.yml +++ /dev/null @@ -1,142 +0,0 @@ -name: Rust Checks - -on: - push: - -jobs: - format: - name: Format - runs-on: ubuntu-latest - - steps: - - name: Checkout repository - uses: actions/checkout@v4 - with: - persist-credentials: false - - - name: Install rust - uses: ./.forgejo/actions/rust-toolchain - with: - toolchain: "nightly" - components: "rustfmt" - - - name: Check formatting - run: | - cargo +nightly fmt --all -- --check - - clippy: - name: Clippy - runs-on: ubuntu-latest - - steps: - - name: Checkout repository - uses: actions/checkout@v4 - with: - persist-credentials: false - - - name: Install rust - uses: ./.forgejo/actions/rust-toolchain - - - uses: https://github.com/actions/create-github-app-token@v2 - id: app-token - with: - app-id: ${{ vars.GH_APP_ID }} - private-key: ${{ secrets.GH_APP_PRIVATE_KEY }} - github-api-url: https://api.github.com - owner: ${{ vars.GH_APP_OWNER }} - repositories: "" - - name: Install sccache - uses: ./.forgejo/actions/sccache - with: - token: ${{ steps.app-token.outputs.token }} - - run: sudo apt-get update - - name: Install system dependencies - uses: https://github.com/awalsh128/cache-apt-pkgs-action@v1 - with: - packages: clang liburing-dev - version: 1 - - name: Cache Rust registry - uses: actions/cache@v3 - with: - path: | - ~/.cargo/git - !~/.cargo/git/checkouts - ~/.cargo/registry - !~/.cargo/registry/src - key: rust-registry-${{hashFiles('**/Cargo.lock') }} - - name: Timelord - uses: ./.forgejo/actions/timelord - with: - key: sccache-v0 - path: . - - name: Clippy - run: | - cargo clippy \ - --workspace \ - --locked \ - --no-deps \ - --profile test \ - -- \ - -D warnings - - - name: Show sccache stats - if: always() - run: sccache --show-stats - - cargo-test: - name: Cargo Test - runs-on: ubuntu-latest - - steps: - - name: Checkout repository - uses: actions/checkout@v4 - with: - persist-credentials: false - - - name: Install rust - uses: ./.forgejo/actions/rust-toolchain - - - uses: https://github.com/actions/create-github-app-token@v2 - id: app-token - with: - app-id: ${{ vars.GH_APP_ID }} - private-key: ${{ secrets.GH_APP_PRIVATE_KEY }} - github-api-url: https://api.github.com - owner: ${{ vars.GH_APP_OWNER }} - repositories: "" - - name: Install sccache - uses: ./.forgejo/actions/sccache - with: - token: ${{ steps.app-token.outputs.token }} - - run: sudo apt-get update - - name: Install system dependencies - uses: https://github.com/awalsh128/cache-apt-pkgs-action@v1 - with: - packages: clang liburing-dev - version: 1 - - name: Cache Rust registry - uses: actions/cache@v3 - with: - path: | - ~/.cargo/git - !~/.cargo/git/checkouts - ~/.cargo/registry - !~/.cargo/registry/src - key: rust-registry-${{hashFiles('**/Cargo.lock') }} - - name: Timelord - uses: ./.forgejo/actions/timelord - with: - key: sccache-v0 - path: . - - name: Cargo Test - run: | - cargo test \ - --workspace \ - --locked \ - --profile test \ - --all-targets \ - --no-fail-fast - - - name: Show sccache stats - if: always() - run: sccache --show-stats diff --git a/.typos.toml b/.typos.toml deleted file mode 100644 index 41c81085..00000000 --- a/.typos.toml +++ /dev/null @@ -1,9 +0,0 @@ -[files] -extend-exclude = ["*.csr"] - -[default.extend-words] -"allocatedp" = "allocatedp" -"conduwuit" = "conduwuit" -"continuwuity" = "continuwuity" -"continuwity" = "continuwuity" -"execuse" = "execuse" diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md index 476e68fb..e77154e7 100644 --- a/CODE_OF_CONDUCT.md +++ b/CODE_OF_CONDUCT.md @@ -1,3 +1,4 @@ + # Contributor Covenant Code of Conduct ## Our Pledge @@ -59,7 +60,8 @@ representative at an online or offline event. ## Enforcement Instances of abusive, harassing, or otherwise unacceptable behavior may be -reported to the community leaders responsible for enforcement over Matrix at [#continuwuity:continuwuity.org](https://matrix.to/#/#continuwuity:continuwuity.org) or email at , and respectively. +reported to the community leaders responsible for enforcement over email at + or over Matrix at @strawberry:puppygock.gay. All complaints will be reviewed and investigated promptly and fairly. All community leaders are obligated to respect the privacy and security of the diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index da426801..fb540011 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,10 +1,10 @@ # Contributing guide -This page is for about contributing to Continuwuity. The +This page is for about contributing to conduwuit. The [development](./development.md) page may be of interest for you as well. If you would like to work on an [issue][issues] that is not assigned, preferably -ask in the Matrix room first at [#continuwuity:continuwuity.org][continuwuity-matrix], +ask in the Matrix room first at [#conduwuit:puppygock.gay][conduwuit-matrix], and comment on it. ### Linting and Formatting @@ -23,9 +23,9 @@ suggestion, allow the lint and mention that in a comment. ### Running CI tests locally -continuwuity's CI for tests, linting, formatting, audit, etc use +conduwuit's CI for tests, linting, formatting, audit, etc use [`engage`][engage]. engage can be installed from nixpkgs or `cargo install -engage`. continuwuity's Nix flake devshell has the nixpkgs engage with `direnv`. +engage`. conduwuit's Nix flake devshell has the nixpkgs engage with `direnv`. Use `engage --help` for more usage details. To test, format, lint, etc that CI would do, install engage, allow the `.envrc` @@ -73,7 +73,7 @@ If you'd like to run Complement locally using Nix, see the ### Writing documentation -Continuwuity's website uses [`mdbook`][mdbook] and deployed via CI using GitHub +conduwuit's website uses [`mdbook`][mdbook] and deployed via CI using GitHub Pages in the [`documentation.yml`][documentation.yml] workflow file with Nix's mdbook in the devshell. All documentation is in the `docs/` directory at the top level. The compiled mdbook website is also uploaded as an artifact. @@ -111,28 +111,33 @@ applies here. ### Creating pull requests -Please try to keep contributions to the Forgejo Instance. While the mirrors of continuwuity -allow for pull/merge requests, there is no guarantee the maintainers will see them in a timely +Please try to keep contributions to the GitHub. While the mirrors of conduwuit +allow for pull/merge requests, there is no guarantee I will see them in a timely manner. Additionally, please mark WIP or unfinished or incomplete PRs as drafts. -This prevents us from having to ping once in a while to double check the status +This prevents me from having to ping once in a while to double check the status of it, especially when the CI completed successfully and everything so it *looks* done. +If you open a pull request on one of the mirrors, it is your responsibility to +inform me about its existence. In the future I may try to solve this with more +repo bots in the conduwuit Matrix room. There is no mailing list or email-patch +support on the sr.ht mirror, but if you'd like to email me a git patch you can +do so at `strawberry@puppygock.gay`. Direct all PRs/MRs to the `main` branch. By sending a pull request or patch, you are agreeing that your changes are allowed to be licenced under the Apache-2.0 licence and all of your conduct is -in line with the Contributor's Covenant, and continuwuity's Code of Conduct. +in line with the Contributor's Covenant, and conduwuit's Code of Conduct. Contribution by users who violate either of these code of conducts will not have their contributions accepted. This includes users who have been banned from -continuwuityMatrix rooms for Code of Conduct violations. +conduwuit Matrix rooms for Code of Conduct violations. -[issues]: https://forgejo.ellis.link/continuwuation/continuwuity/issues -[continuwuity-matrix]: https://matrix.to/#/#continuwuity:continuwuity.org +[issues]: https://github.com/girlbossceo/conduwuit/issues +[conduwuit-matrix]: https://matrix.to/#/#conduwuit:puppygock.gay [complement]: https://github.com/matrix-org/complement/ -[engage.toml]: https://forgejo.ellis.link/continuwuation/continuwuity/src/branch/main/engage.toml +[engage.toml]: https://github.com/girlbossceo/conduwuit/blob/main/engage.toml [engage]: https://charles.page.computer.surgery/engage/ [sytest]: https://github.com/matrix-org/sytest/ [cargo-deb]: https://github.com/kornelski/cargo-deb @@ -141,4 +146,4 @@ continuwuityMatrix rooms for Code of Conduct violations. [cargo-audit]: https://github.com/RustSec/rustsec/tree/main/cargo-audit [direnv]: https://direnv.net/ [mdbook]: https://rust-lang.github.io/mdBook/ -[documentation.yml]: https://forgejo.ellis.link/continuwuation/continuwuity/src/branch/main/.forgejo/workflows/documentation.yml +[documentation.yml]: https://github.com/girlbossceo/conduwuit/blob/main/.github/workflows/documentation.yml diff --git a/Cargo.lock b/Cargo.lock index 160be0c7..d3c39aca 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -55,9 +55,9 @@ checksum = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9" [[package]] name = "anyhow" -version = "1.0.98" +version = "1.0.97" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487" +checksum = "dcfed56ad506cb2c684a14971b8861fdc3baaaae314b9e5f9bb532cbe3ba7a4f" [[package]] name = "arbitrary" @@ -109,48 +109,6 @@ version = "1.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9dbc3a507a82b17ba0d98f6ce8fd6954ea0c8152e98009d36a40d8dcc8ce078a" -[[package]] -name = "askama" -version = "0.14.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f75363874b771be265f4ffe307ca705ef6f3baa19011c149da8674a87f1b75c4" -dependencies = [ - "askama_derive", - "itoa", - "percent-encoding", - "serde", - "serde_json", -] - -[[package]] -name = "askama_derive" -version = "0.14.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "129397200fe83088e8a68407a8e2b1f826cf0086b21ccdb866a722c8bcd3a94f" -dependencies = [ - "askama_parser", - "basic-toml", - "memchr", - "proc-macro2", - "quote", - "rustc-hash 2.1.1", - "serde", - "serde_derive", - "syn", -] - -[[package]] -name = "askama_parser" -version = "0.14.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d6ab5630b3d5eaf232620167977f95eb51f3432fc76852328774afbd242d4358" -dependencies = [ - "memchr", - "serde", - "serde_derive", - "winnow", -] - [[package]] name = "assign" version = "1.1.1" @@ -170,9 +128,9 @@ dependencies = [ [[package]] name = "async-compression" -version = "0.4.23" +version = "0.4.22" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b37fc50485c4f3f736a4fb14199f6d5f5ba008d7f28fe710306c92780f004c07" +checksum = "59a194f9d963d8099596278594b3107448656ba73831c9d8c783e613ce86da64" dependencies = [ "brotli", "flate2", @@ -184,6 +142,17 @@ dependencies = [ "zstd-safe", ] +[[package]] +name = "async-recursion" +version = "1.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + [[package]] name = "async-stream" version = "0.3.6" @@ -273,9 +242,9 @@ dependencies = [ [[package]] name = "aws-lc-sys" -version = "0.28.2" +version = "0.28.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bfa9b6986f250236c27e5a204062434a773a13243d2ffc2955f37bdba4c5c6a1" +checksum = "b9f7720b74ed28ca77f90769a71fd8c637a0137f6fae4ae947e1050229cff57f" dependencies = [ "bindgen 0.69.5", "cc", @@ -415,9 +384,9 @@ dependencies = [ [[package]] name = "backtrace" -version = "0.3.75" +version = "0.3.74" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6806a6321ec58106fea15becdad98371e28d92ccbc7c8f1b3b6dd724fe8f1002" +checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a" dependencies = [ "addr2line", "cfg-if", @@ -446,15 +415,6 @@ version = "1.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "89e25b6adfb930f02d1981565a6e5d9c547ac15a96606256d3b59040e5cd4ca3" -[[package]] -name = "basic-toml" -version = "0.1.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ba62675e8242a4c4e806d12f11d136e626e6c8361d6b829310732241652a178a" -dependencies = [ - "serde", -] - [[package]] name = "bindgen" version = "0.69.5" @@ -549,9 +509,9 @@ dependencies = [ [[package]] name = "brotli" -version = "8.0.1" +version = "7.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9991eea70ea4f293524138648e41ee89b0b2b12ddef3b255effa43c8056e0e0d" +checksum = "cc97b8f16f944bba54f0433f07e30be199b6dc2bd25937444bbad560bcea29bd" dependencies = [ "alloc-no-stdlib", "alloc-stdlib", @@ -560,9 +520,9 @@ dependencies = [ [[package]] name = "brotli-decompressor" -version = "5.0.0" +version = "4.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "874bb8112abecc98cbd6d81ea4fa7e94fb9449648c93cc89aa40c81c24d7de03" +checksum = "74fa05ad7d803d413eb8380983b092cbbaf9a85f151b871360e7b00cd7060b37" dependencies = [ "alloc-no-stdlib", "alloc-stdlib", @@ -574,12 +534,6 @@ version = "0.7.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "56ed6191a7e78c36abdb16ab65341eefd73d64d303fffccdbb00d51e4205967b" -[[package]] -name = "built" -version = "0.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f4ad8f11f288f48ca24471bbd51ac257aaeaaa07adae295591266b792902ae64" - [[package]] name = "bumpalo" version = "3.17.0" @@ -588,9 +542,9 @@ checksum = "1628fb46dfa0b37568d12e5edd512553eccf6a22a78e8bde00bb4aed84d5bdbf" [[package]] name = "bytemuck" -version = "1.23.0" +version = "1.22.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9134a6ef01ce4b366b50689c94f82c14bc72bc5d0386829828a2e2752ef7958c" +checksum = "b6b1fc10dbac614ebc03540c9dbd60e83887fda27794998c6528f1782047d540" [[package]] name = "byteorder" @@ -638,9 +592,9 @@ dependencies = [ [[package]] name = "cc" -version = "1.2.22" +version = "1.2.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "32db95edf998450acc7881c932f94cd9b05c87b4b2599e8bab064753da4acfd1" +checksum = "1fcb57c740ae1daf453ae85f16e37396f672b039e00d9d866e07ddb24e328e3a" dependencies = [ "jobserver", "libc", @@ -689,9 +643,9 @@ dependencies = [ [[package]] name = "chrono" -version = "0.4.41" +version = "0.4.40" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c469d952047f47f91b68d1cba3f10d63c11d73e4636f24f08daf0278abf01c4d" +checksum = "1a7964611d71df112cb1730f2ee67324fcf4d0fc6606acbbe9bfe06df124637c" dependencies = [ "num-traits", ] @@ -709,9 +663,9 @@ dependencies = [ [[package]] name = "clap" -version = "4.5.38" +version = "4.5.35" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ed93b9805f8ba930df42c2590f05453d5ec36cbb85d018868a5b24d31f6ac000" +checksum = "d8aa86934b44c19c50f87cc2790e19f54f7a67aedb64101c2e1a2e5ecfb73944" dependencies = [ "clap_builder", "clap_derive", @@ -719,9 +673,9 @@ dependencies = [ [[package]] name = "clap_builder" -version = "4.5.38" +version = "4.5.35" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "379026ff283facf611b0ea629334361c4211d1b12ee01024eec1591133b04120" +checksum = "2414dbb2dd0695280da6ea9261e327479e9d37b0630f6b53ba2a11c60c679fd9" dependencies = [ "anstyle", "clap_lex", @@ -851,13 +805,6 @@ dependencies = [ "tracing", ] -[[package]] -name = "conduwuit_build_metadata" -version = "0.5.0-rc.5" -dependencies = [ - "built 0.8.0", -] - [[package]] name = "conduwuit_core" version = "0.5.0-rc.5" @@ -872,7 +819,6 @@ dependencies = [ "checked_ops", "chrono", "clap", - "conduwuit_build_metadata", "conduwuit_macros", "const-str", "core_affinity", @@ -958,7 +904,6 @@ dependencies = [ "conduwuit_api", "conduwuit_core", "conduwuit_service", - "conduwuit_web", "const-str", "futures", "http", @@ -992,7 +937,7 @@ dependencies = [ "const-str", "either", "futures", - "hickory-resolver 0.25.2", + "hickory-resolver 0.25.1", "http", "image", "ipaddress", @@ -1016,20 +961,6 @@ dependencies = [ "webpage", ] -[[package]] -name = "conduwuit_web" -version = "0.5.0-rc.5" -dependencies = [ - "askama", - "axum", - "conduwuit_build_metadata", - "conduwuit_service", - "futures", - "rand 0.8.5", - "thiserror 2.0.12", - "tracing", -] - [[package]] name = "console-api" version = "0.8.1" @@ -1315,9 +1246,9 @@ checksum = "817fa642fb0ee7fe42e95783e00e0969927b96091bdd4b9b1af082acd943913b" [[package]] name = "data-encoding" -version = "2.9.0" +version = "2.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2a2330da5de22e8a3cb63252ce2abb30116bf5265e89c0e01bc17015ce30a476" +checksum = "575f75dfd25738df5b91b8e43e14d44bda14637a58fae779fd2b064f8bf3e010" [[package]] name = "date_header" @@ -1436,9 +1367,9 @@ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" [[package]] name = "errno" -version = "0.3.11" +version = "0.3.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "976dd42dc7e85965fe702eb8164f21f450704bdde31faefd6471dba214cb594e" +checksum = "33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d" dependencies = [ "libc", "windows-sys 0.59.0", @@ -1679,7 +1610,7 @@ dependencies = [ "libc", "log", "rustversion", - "windows", + "windows 0.58.0", ] [[package]] @@ -1694,9 +1625,9 @@ dependencies = [ [[package]] name = "getrandom" -version = "0.2.16" +version = "0.2.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592" +checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7" dependencies = [ "cfg-if", "js-sys", @@ -1707,9 +1638,9 @@ dependencies = [ [[package]] name = "getrandom" -version = "0.3.3" +version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4" +checksum = "73fea8450eea4bac3940448fb7ae50d91f034f941199fcd9d909a5a07aa455f0" dependencies = [ "cfg-if", "js-sys", @@ -1743,9 +1674,9 @@ checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2" [[package]] name = "h2" -version = "0.4.10" +version = "0.4.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a9421a676d1b147b16b82c9225157dc629087ef8ec4d5e2960f9437a90dac0a5" +checksum = "5017294ff4bb30944501348f6f8e42e6ad28f42c8bbef7a74029aff064a4e3c2" dependencies = [ "atomic-waker", "bytes", @@ -1753,7 +1684,7 @@ dependencies = [ "futures-core", "futures-sink", "http", - "indexmap 2.9.0", + "indexmap 2.8.0", "slab", "tokio", "tokio-util", @@ -1762,9 +1693,9 @@ dependencies = [ [[package]] name = "half" -version = "2.6.0" +version = "2.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "459196ed295495a68f7d7fe1d84f6c4b7ff0e21fe3017b2f283c6fac3ad803c9" +checksum = "7db2ff139bba50379da6aa0766b52fdcb62cb5b263009b09ed58ba604e14bbd1" dependencies = [ "cfg-if", "crunchy", @@ -1784,9 +1715,9 @@ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" [[package]] name = "hashbrown" -version = "0.15.3" +version = "0.15.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "84b26c544d002229e640969970a2e74021aadf6e2f96372b9c58eff97de08eb3" +checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289" [[package]] name = "hdrhistogram" @@ -1869,12 +1800,14 @@ dependencies = [ [[package]] name = "hickory-proto" -version = "0.25.2" +version = "0.25.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f8a6fe56c0038198998a6f217ca4e7ef3a5e51f46163bd6dd60b5c71ca6c6502" +checksum = "6d844af74f7b799e41c78221be863bade11c430d46042c3b49ca8ae0c6d27287" dependencies = [ + "async-recursion", "async-trait", "cfg-if", + "critical-section", "data-encoding", "enum-as-inner", "futures-channel", @@ -1883,7 +1816,7 @@ dependencies = [ "idna", "ipnet", "once_cell", - "rand 0.9.1", + "rand 0.9.0", "ring", "serde", "thiserror 2.0.12", @@ -1916,18 +1849,18 @@ dependencies = [ [[package]] name = "hickory-resolver" -version = "0.25.2" +version = "0.25.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dc62a9a99b0bfb44d2ab95a7208ac952d31060efc16241c87eaf36406fecf87a" +checksum = "a128410b38d6f931fcc6ca5c107a3b02cabd6c05967841269a4ad65d23c44331" dependencies = [ "cfg-if", "futures-util", - "hickory-proto 0.25.2", + "hickory-proto 0.25.1", "ipconfig", "moka", "once_cell", "parking_lot", - "rand 0.9.1", + "rand 0.9.0", "resolv-conf", "serde", "smallvec", @@ -1956,13 +1889,13 @@ dependencies = [ [[package]] name = "hostname" -version = "0.4.1" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a56f203cd1c76362b69e3863fd987520ac36cf70a8c92627449b2f64a8cf7d65" +checksum = "f9c7c7c8ac16c798734b8a24560c1362120597c40d5e1459f09498f8f6c8f2ba" dependencies = [ "cfg-if", "libc", - "windows-link", + "windows 0.52.0", ] [[package]] @@ -2114,22 +2047,21 @@ dependencies = [ [[package]] name = "icu_collections" -version = "2.0.0" +version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47" +checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526" dependencies = [ "displaydoc", - "potential_utf", "yoke", "zerofrom", "zerovec", ] [[package]] -name = "icu_locale_core" -version = "2.0.0" +name = "icu_locid" +version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a" +checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637" dependencies = [ "displaydoc", "litemap", @@ -2139,10 +2071,30 @@ dependencies = [ ] [[package]] -name = "icu_normalizer" -version = "2.0.0" +name = "icu_locid_transform" +version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979" +checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e" +dependencies = [ + "displaydoc", + "icu_locid", + "icu_locid_transform_data", + "icu_provider", + "tinystr", + "zerovec", +] + +[[package]] +name = "icu_locid_transform_data" +version = "1.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7515e6d781098bf9f7205ab3fc7e9709d34554ae0b21ddbcb5febfa4bc7df11d" + +[[package]] +name = "icu_normalizer" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "19ce3e0da2ec68599d193c93d088142efd7f9c5d6fc9b803774855747dc6a84f" dependencies = [ "displaydoc", "icu_collections", @@ -2150,54 +2102,67 @@ dependencies = [ "icu_properties", "icu_provider", "smallvec", + "utf16_iter", + "utf8_iter", + "write16", "zerovec", ] [[package]] name = "icu_normalizer_data" -version = "2.0.0" +version = "1.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3" +checksum = "c5e8338228bdc8ab83303f16b797e177953730f601a96c25d10cb3ab0daa0cb7" [[package]] name = "icu_properties" -version = "2.0.0" +version = "1.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2549ca8c7241c82f59c80ba2a6f415d931c5b58d24fb8412caa1a1f02c49139a" +checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5" dependencies = [ "displaydoc", "icu_collections", - "icu_locale_core", + "icu_locid_transform", "icu_properties_data", "icu_provider", - "potential_utf", - "zerotrie", + "tinystr", "zerovec", ] [[package]] name = "icu_properties_data" -version = "2.0.0" +version = "1.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8197e866e47b68f8f7d95249e172903bec06004b18b2937f1095d40a0c57de04" +checksum = "85fb8799753b75aee8d2a21d7c14d9f38921b54b3dbda10f5a3c7a7b82dba5e2" [[package]] name = "icu_provider" -version = "2.0.0" +version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af" +checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9" dependencies = [ "displaydoc", - "icu_locale_core", + "icu_locid", + "icu_provider_macros", "stable_deref_trait", "tinystr", "writeable", "yoke", "zerofrom", - "zerotrie", "zerovec", ] +[[package]] +name = "icu_provider_macros" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + [[package]] name = "idna" version = "1.0.3" @@ -2211,9 +2176,9 @@ dependencies = [ [[package]] name = "idna_adapter" -version = "1.2.1" +version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344" +checksum = "daca1df1c957320b2cf139ac61e7bd64fed304c5040df000a745aa1de3b4ef71" dependencies = [ "icu_normalizer", "icu_properties", @@ -2270,12 +2235,12 @@ dependencies = [ [[package]] name = "indexmap" -version = "2.9.0" +version = "2.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e" +checksum = "3954d50fe15b02142bf25d3b8bdadb634ec3948f103d04ffe3031bc8fe9d7058" dependencies = [ "equivalent", - "hashbrown 0.15.3", + "hashbrown 0.15.2", "serde", ] @@ -2373,7 +2338,7 @@ version = "0.1.33" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "38f262f097c174adebe41eb73d66ae9c06b2844fb0da69969647bbddd9b0538a" dependencies = [ - "getrandom 0.3.3", + "getrandom 0.3.2", "libc", ] @@ -2474,9 +2439,9 @@ checksum = "03087c2bad5e1034e8cace5926dec053fb3790248370865f5117a7d0213354c8" [[package]] name = "libc" -version = "0.2.172" +version = "0.2.171" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa" +checksum = "c19937216e9d3aa9956d9bb8dfc0b0c8beb6058fc4f7a4dc4d850edf86a237d6" [[package]] name = "libfuzzer-sys" @@ -2490,12 +2455,12 @@ dependencies = [ [[package]] name = "libloading" -version = "0.8.7" +version = "0.8.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6a793df0d7afeac54f95b471d3af7f0d4fb975699f972341a4b76988d49cdf0c" +checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34" dependencies = [ "cfg-if", - "windows-targets 0.53.0", + "windows-targets 0.52.6", ] [[package]] @@ -2523,9 +2488,9 @@ checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab" [[package]] name = "litemap" -version = "0.8.0" +version = "0.7.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956" +checksum = "23fb14cb19457329c82206317a5663005a4d404783dc74f4252769b0d5f42856" [[package]] name = "lock_api" @@ -2545,9 +2510,9 @@ checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94" [[package]] name = "loole" -version = "0.4.1" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1a3932a13b27d6b2d37efec3e4047017d59a8c9f2283a29bde29151d22f00fe9" +checksum = "a2998397c725c822c6b2ba605fd9eb4c6a7a0810f1629ba3cc232ef4f0308d96" dependencies = [ "futures-core", "futures-sink", @@ -2671,9 +2636,9 @@ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" [[package]] name = "minicbor" -version = "0.26.5" +version = "0.26.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8a309f581ade7597820083bc275075c4c6986e57e53f8d26f88507cfefc8c987" +checksum = "1936e27fffe7d8557c060eb82cb71668608cd1a5fb56b63e66d22ae8d7564321" dependencies = [ "minicbor-derive", ] @@ -2716,9 +2681,9 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" [[package]] name = "miniz_oxide" -version = "0.8.8" +version = "0.8.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3be647b768db090acb35d5ec5db2b0e1f1de11133ca123b9eacf5137868f892a" +checksum = "8e3e04debbb59698c15bacbb6d93584a8c0ca9cc3213cb423d31f760d8843ce5" dependencies = [ "adler2", "simd-adler32", @@ -2938,7 +2903,7 @@ checksum = "1e32339a5dc40459130b3bd269e9892439f55b33e772d2a9d402a789baaf4e8a" dependencies = [ "futures-core", "futures-sink", - "indexmap 2.9.0", + "indexmap 2.8.0", "js-sys", "once_cell", "pin-project-lite", @@ -3208,15 +3173,6 @@ version = "1.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "350e9b48cbc6b0e028b0473b114454c6316e57336ee184ceab6e53f72c178b3e" -[[package]] -name = "potential_utf" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e5a7c30837279ca13e7c867e9e40053bc68740f988cb07f7ca6df43cc734b585" -dependencies = [ - "zerovec", -] - [[package]] name = "powerfmt" version = "0.2.0" @@ -3259,9 +3215,9 @@ dependencies = [ [[package]] name = "proc-macro2" -version = "1.0.95" +version = "1.0.94" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778" +checksum = "a31971752e70b8b2686d7e46ec17fb38dad4051d94024c88df49b667caea9c84" dependencies = [ "unicode-ident", ] @@ -3390,8 +3346,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b820744eb4dc9b57a3398183639c511b5a26d2ed702cedd3febaa1393caa22cc" dependencies = [ "bytes", - "getrandom 0.3.3", - "rand 0.9.1", + "getrandom 0.3.2", + "rand 0.9.0", "ring", "rustc-hash 2.1.1", "rustls", @@ -3445,12 +3401,13 @@ dependencies = [ [[package]] name = "rand" -version = "0.9.1" +version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9fbfd9d094a40bf3ae768db9361049ace4c0e04a4fd6b359518bd7b73a73dd97" +checksum = "3779b94aeb87e8bd4e834cee3650289ee9e0d5677f976ecdb6d219e5f4f6cd94" dependencies = [ "rand_chacha 0.9.0", "rand_core 0.9.3", + "zerocopy", ] [[package]] @@ -3479,7 +3436,7 @@ version = "0.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" dependencies = [ - "getrandom 0.2.16", + "getrandom 0.2.15", ] [[package]] @@ -3488,7 +3445,7 @@ version = "0.9.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38" dependencies = [ - "getrandom 0.3.3", + "getrandom 0.3.2", ] [[package]] @@ -3502,7 +3459,7 @@ dependencies = [ "arrayvec", "av1-grain", "bitstream-io", - "built 0.7.7", + "built", "cfg-if", "interpolate_name", "itertools 0.12.1", @@ -3528,9 +3485,9 @@ dependencies = [ [[package]] name = "ravif" -version = "0.11.12" +version = "0.11.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d6a5f31fcf7500f9401fea858ea4ab5525c99f2322cfcee732c0e6c74208c0c6" +checksum = "2413fd96bd0ea5cdeeb37eaf446a22e6ed7b981d792828721e74ded1980a45c6" dependencies = [ "avif-serialize", "imgref", @@ -3563,9 +3520,9 @@ dependencies = [ [[package]] name = "redox_syscall" -version = "0.5.12" +version = "0.5.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "928fca9cf2aa042393a8325b9ead81d2f0df4cb12e1e24cef072922ccd99c5af" +checksum = "0b8c0c260b63a8219631167be35e6a988e9554dbd323f8bd08439c8ed1302bd1" dependencies = [ "bitflags 2.9.0", ] @@ -3686,7 +3643,7 @@ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7" dependencies = [ "cc", "cfg-if", - "getrandom 0.2.16", + "getrandom 0.2.15", "libc", "untrusted", "windows-sys 0.52.0", @@ -3695,7 +3652,7 @@ dependencies = [ [[package]] name = "ruma" version = "0.10.1" -source = "git+https://forgejo.ellis.link/continuwuation/ruwuma?rev=d6870a7fb7f6cccff63f7fd0ff6c581bad80e983#d6870a7fb7f6cccff63f7fd0ff6c581bad80e983" +source = "git+https://forgejo.ellis.link/continuwuation/ruwuma?rev=b3cb85becae3c1ecabe2c93138312ebb3632b728#b3cb85becae3c1ecabe2c93138312ebb3632b728" dependencies = [ "assign", "js_int", @@ -3715,7 +3672,7 @@ dependencies = [ [[package]] name = "ruma-appservice-api" version = "0.10.0" -source = "git+https://forgejo.ellis.link/continuwuation/ruwuma?rev=d6870a7fb7f6cccff63f7fd0ff6c581bad80e983#d6870a7fb7f6cccff63f7fd0ff6c581bad80e983" +source = "git+https://forgejo.ellis.link/continuwuation/ruwuma?rev=b3cb85becae3c1ecabe2c93138312ebb3632b728#b3cb85becae3c1ecabe2c93138312ebb3632b728" dependencies = [ "js_int", "ruma-common", @@ -3727,7 +3684,7 @@ dependencies = [ [[package]] name = "ruma-client-api" version = "0.18.0" -source = "git+https://forgejo.ellis.link/continuwuation/ruwuma?rev=d6870a7fb7f6cccff63f7fd0ff6c581bad80e983#d6870a7fb7f6cccff63f7fd0ff6c581bad80e983" +source = "git+https://forgejo.ellis.link/continuwuation/ruwuma?rev=b3cb85becae3c1ecabe2c93138312ebb3632b728#b3cb85becae3c1ecabe2c93138312ebb3632b728" dependencies = [ "as_variant", "assign", @@ -3750,15 +3707,15 @@ dependencies = [ [[package]] name = "ruma-common" version = "0.13.0" -source = "git+https://forgejo.ellis.link/continuwuation/ruwuma?rev=d6870a7fb7f6cccff63f7fd0ff6c581bad80e983#d6870a7fb7f6cccff63f7fd0ff6c581bad80e983" +source = "git+https://forgejo.ellis.link/continuwuation/ruwuma?rev=b3cb85becae3c1ecabe2c93138312ebb3632b728#b3cb85becae3c1ecabe2c93138312ebb3632b728" dependencies = [ "as_variant", "base64 0.22.1", "bytes", "form_urlencoded", - "getrandom 0.2.16", + "getrandom 0.2.15", "http", - "indexmap 2.9.0", + "indexmap 2.8.0", "js_int", "konst", "percent-encoding", @@ -3782,10 +3739,10 @@ dependencies = [ [[package]] name = "ruma-events" version = "0.28.1" -source = "git+https://forgejo.ellis.link/continuwuation/ruwuma?rev=d6870a7fb7f6cccff63f7fd0ff6c581bad80e983#d6870a7fb7f6cccff63f7fd0ff6c581bad80e983" +source = "git+https://forgejo.ellis.link/continuwuation/ruwuma?rev=b3cb85becae3c1ecabe2c93138312ebb3632b728#b3cb85becae3c1ecabe2c93138312ebb3632b728" dependencies = [ "as_variant", - "indexmap 2.9.0", + "indexmap 2.8.0", "js_int", "js_option", "percent-encoding", @@ -3807,7 +3764,7 @@ dependencies = [ [[package]] name = "ruma-federation-api" version = "0.9.0" -source = "git+https://forgejo.ellis.link/continuwuation/ruwuma?rev=d6870a7fb7f6cccff63f7fd0ff6c581bad80e983#d6870a7fb7f6cccff63f7fd0ff6c581bad80e983" +source = "git+https://forgejo.ellis.link/continuwuation/ruwuma?rev=b3cb85becae3c1ecabe2c93138312ebb3632b728#b3cb85becae3c1ecabe2c93138312ebb3632b728" dependencies = [ "bytes", "headers", @@ -3829,7 +3786,7 @@ dependencies = [ [[package]] name = "ruma-identifiers-validation" version = "0.9.5" -source = "git+https://forgejo.ellis.link/continuwuation/ruwuma?rev=d6870a7fb7f6cccff63f7fd0ff6c581bad80e983#d6870a7fb7f6cccff63f7fd0ff6c581bad80e983" +source = "git+https://forgejo.ellis.link/continuwuation/ruwuma?rev=b3cb85becae3c1ecabe2c93138312ebb3632b728#b3cb85becae3c1ecabe2c93138312ebb3632b728" dependencies = [ "js_int", "thiserror 2.0.12", @@ -3838,7 +3795,7 @@ dependencies = [ [[package]] name = "ruma-identity-service-api" version = "0.9.0" -source = "git+https://forgejo.ellis.link/continuwuation/ruwuma?rev=d6870a7fb7f6cccff63f7fd0ff6c581bad80e983#d6870a7fb7f6cccff63f7fd0ff6c581bad80e983" +source = "git+https://forgejo.ellis.link/continuwuation/ruwuma?rev=b3cb85becae3c1ecabe2c93138312ebb3632b728#b3cb85becae3c1ecabe2c93138312ebb3632b728" dependencies = [ "js_int", "ruma-common", @@ -3848,7 +3805,7 @@ dependencies = [ [[package]] name = "ruma-macros" version = "0.13.0" -source = "git+https://forgejo.ellis.link/continuwuation/ruwuma?rev=d6870a7fb7f6cccff63f7fd0ff6c581bad80e983#d6870a7fb7f6cccff63f7fd0ff6c581bad80e983" +source = "git+https://forgejo.ellis.link/continuwuation/ruwuma?rev=b3cb85becae3c1ecabe2c93138312ebb3632b728#b3cb85becae3c1ecabe2c93138312ebb3632b728" dependencies = [ "cfg-if", "proc-macro-crate", @@ -3863,7 +3820,7 @@ dependencies = [ [[package]] name = "ruma-push-gateway-api" version = "0.9.0" -source = "git+https://forgejo.ellis.link/continuwuation/ruwuma?rev=d6870a7fb7f6cccff63f7fd0ff6c581bad80e983#d6870a7fb7f6cccff63f7fd0ff6c581bad80e983" +source = "git+https://forgejo.ellis.link/continuwuation/ruwuma?rev=b3cb85becae3c1ecabe2c93138312ebb3632b728#b3cb85becae3c1ecabe2c93138312ebb3632b728" dependencies = [ "js_int", "ruma-common", @@ -3875,7 +3832,7 @@ dependencies = [ [[package]] name = "ruma-signatures" version = "0.15.0" -source = "git+https://forgejo.ellis.link/continuwuation/ruwuma?rev=d6870a7fb7f6cccff63f7fd0ff6c581bad80e983#d6870a7fb7f6cccff63f7fd0ff6c581bad80e983" +source = "git+https://forgejo.ellis.link/continuwuation/ruwuma?rev=b3cb85becae3c1ecabe2c93138312ebb3632b728#b3cb85becae3c1ecabe2c93138312ebb3632b728" dependencies = [ "base64 0.22.1", "ed25519-dalek", @@ -3956,9 +3913,9 @@ dependencies = [ [[package]] name = "rustls" -version = "0.23.27" +version = "0.23.25" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "730944ca083c1c233a75c09f199e973ca499344a2b7ba9e755c457e86fb4a321" +checksum = "822ee9188ac4ec04a2f0531e55d035fb2de73f18b41a63c70c2712503b6fb13c" dependencies = [ "aws-lc-rs", "log", @@ -3993,19 +3950,18 @@ dependencies = [ [[package]] name = "rustls-pki-types" -version = "1.12.0" +version = "1.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "229a4a4c221013e7e1f1a043678c5cc39fe5171437c88fb47151a21e6f5b5c79" +checksum = "917ce264624a4b4db1c364dcc35bfca9ded014d0a958cd47ad3e960e988ea51c" dependencies = [ "web-time 1.1.0", - "zeroize", ] [[package]] name = "rustls-webpki" -version = "0.103.3" +version = "0.103.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e4a72fe2bcf7a6ac6fd7d0b9e5cb68aeb7d4c0a0271730218b3e92d43b4eb435" +checksum = "fef8b8769aaccf73098557a87cd1816b4f9c7c16811c9c77142aa695c16f2c03" dependencies = [ "aws-lc-rs", "ring", @@ -4270,7 +4226,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9d2de91cf02bbc07cde38891769ccd5d4f073d22a40683aa4bc7a95781aaa2c4" dependencies = [ "form_urlencoded", - "indexmap 2.9.0", + "indexmap 2.8.0", "itoa", "ryu", "serde", @@ -4335,7 +4291,7 @@ version = "0.9.34+deprecated" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47" dependencies = [ - "indexmap 2.9.0", + "indexmap 2.8.0", "itoa", "ryu", "serde", @@ -4355,9 +4311,9 @@ dependencies = [ [[package]] name = "sha2" -version = "0.10.9" +version = "0.10.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283" +checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8" dependencies = [ "cfg-if", "cpufeatures", @@ -4402,9 +4358,9 @@ dependencies = [ [[package]] name = "signal-hook-registry" -version = "1.4.5" +version = "1.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9203b8055f63a2a00e2f593bb0510367fe707d7ff1e5c872de2f537b339e5410" +checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1" dependencies = [ "libc", ] @@ -4460,9 +4416,9 @@ dependencies = [ [[package]] name = "smallvec" -version = "1.15.0" +version = "1.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9" +checksum = "7fcf8323ef1faaee30a44a340193b1ac6814fd9b7b4e88e9d4519a3e4abe1cfd" dependencies = [ "serde", ] @@ -4541,9 +4497,9 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" [[package]] name = "syn" -version = "2.0.101" +version = "2.0.100" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8ce2b7fc941b3a24138a0a7cf8e858bfc6a992e7978a068a5c760deb0ed43caf" +checksum = "b09a44accad81e1ba1cd74a32461ba89dee89095ba17b32f5d03683b1b1fc2a0" dependencies = [ "proc-macro2", "quote", @@ -4561,9 +4517,9 @@ dependencies = [ [[package]] name = "synstructure" -version = "0.13.2" +version = "0.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2" +checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971" dependencies = [ "proc-macro2", "quote", @@ -4608,9 +4564,9 @@ dependencies = [ [[package]] name = "termimad" -version = "0.31.3" +version = "0.31.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7301d9c2c4939c97f25376b70d3c13311f8fefdee44092fc361d2a98adc2cbb6" +checksum = "a8e19c6dbf107bec01d0e216bb8219485795b7d75328e4fa5ef2756c1be4f8dc" dependencies = [ "coolor", "crokey", @@ -4618,7 +4574,7 @@ dependencies = [ "lazy-regex", "minimad", "serde", - "thiserror 2.0.12", + "thiserror 1.0.69", "unicode-width 0.1.14", ] @@ -4776,9 +4732,9 @@ dependencies = [ [[package]] name = "tinystr" -version = "0.8.1" +version = "0.7.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b" +checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f" dependencies = [ "displaydoc", "zerovec", @@ -4801,9 +4757,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.45.0" +version = "1.44.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2513ca694ef9ede0fb23fe71a4ee4107cb102b9dc1930f6d0fd77aae068ae165" +checksum = "e6b88822cbe49de4185e3a4cbf8321dd487cf5fe0c5c65695fef6346371e9c48" dependencies = [ "backtrace", "bytes", @@ -4830,9 +4786,9 @@ dependencies = [ [[package]] name = "tokio-metrics" -version = "0.4.2" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7817b32d36c9b94744d7aa3f8fc13526aa0f5112009d7045f3c659413a6e44ac" +checksum = "cb2bb07a8451c4c6fa8b3497ad198510d8b8dffa5df5cfb97a64102a58b113c8" dependencies = [ "futures-util", "pin-project-lite", @@ -4875,9 +4831,9 @@ dependencies = [ [[package]] name = "tokio-util" -version = "0.7.15" +version = "0.7.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "66a539a9ad6d5d281510d5bd368c973d636c02dbf8a67300bfb6b950696ad7df" +checksum = "6b9590b93e6fcc1739458317cccd391ad3955e2bde8913edf6f95f9e65a8f034" dependencies = [ "bytes", "futures-core", @@ -4888,9 +4844,9 @@ dependencies = [ [[package]] name = "toml" -version = "0.8.22" +version = "0.8.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "05ae329d1f08c4d17a59bed7ff5b5a769d062e64a62d34a3261b219e62cd5aae" +checksum = "cd87a5cdd6ffab733b2f74bc4fd7ee5fff6634124999ac278c35fc78c6120148" dependencies = [ "serde", "serde_spanned", @@ -4900,33 +4856,26 @@ dependencies = [ [[package]] name = "toml_datetime" -version = "0.6.9" +version = "0.6.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3da5db5a963e24bc68be8b17b6fa82814bb22ee8660f192bb182771d498f09a3" +checksum = "0dd7358ecb8fc2f8d014bf86f6f638ce72ba252a2c3a2572f2a795f1d23efb41" dependencies = [ "serde", ] [[package]] name = "toml_edit" -version = "0.22.26" +version = "0.22.24" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "310068873db2c5b3e7659d2cc35d21855dbafa50d1ce336397c666e3cb08137e" +checksum = "17b4795ff5edd201c7cd6dca065ae59972ce77d1b80fa0a84d94950ece7d1474" dependencies = [ - "indexmap 2.9.0", + "indexmap 2.8.0", "serde", "serde_spanned", "toml_datetime", - "toml_write", "winnow", ] -[[package]] -name = "toml_write" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bfb942dfe1d8e29a7ee7fcbde5bd2b9a25fb89aa70caea2eba3bee836ff41076" - [[package]] name = "tonic" version = "0.12.3" @@ -4994,9 +4943,9 @@ dependencies = [ [[package]] name = "tower-http" -version = "0.6.4" +version = "0.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0fdb0c213ca27a9f57ab69ddb290fd80d970922355b83ae380b395d3986b8a2e" +checksum = "403fa3b783d4b626a8ad51d766ab03cb6d2dbfc46b1c5d4448395e6628dc9697" dependencies = [ "async-compression", "bitflags 2.9.0", @@ -5238,6 +5187,12 @@ version = "0.7.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" +[[package]] +name = "utf16_iter" +version = "1.0.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246" + [[package]] name = "utf8_iter" version = "1.0.4" @@ -5250,7 +5205,7 @@ version = "1.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "458f7a779bf54acc9f347480ac654f68407d3aab21269a6e3c9f922acd9e2da9" dependencies = [ - "getrandom 0.3.3", + "getrandom 0.3.2", "serde", ] @@ -5487,13 +5442,32 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" +[[package]] +name = "windows" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e48a53791691ab099e5e2ad123536d0fff50652600abaf43bbf952894110d0be" +dependencies = [ + "windows-core 0.52.0", + "windows-targets 0.52.6", +] + [[package]] name = "windows" version = "0.58.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dd04d41d93c4992d421894c18c8b43496aa748dd4c081bac0dc93eb0489272b6" dependencies = [ - "windows-core", + "windows-core 0.58.0", + "windows-targets 0.52.6", +] + +[[package]] +name = "windows-core" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" +dependencies = [ "windows-targets 0.52.6", ] @@ -5800,9 +5774,9 @@ checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486" [[package]] name = "winnow" -version = "0.7.10" +version = "0.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c06928c8748d81b05c9be96aad92e1b6ff01833332f281e8cfca3be4b35fc9ec" +checksum = "0e97b544156e9bebe1a0ffbc03484fc1ffe3100cbce3ffb17eac35f7cdd7ab36" dependencies = [ "memchr", ] @@ -5827,10 +5801,16 @@ dependencies = [ ] [[package]] -name = "writeable" -version = "0.6.1" +name = "write16" +version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb" +checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936" + +[[package]] +name = "writeable" +version = "0.5.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51" [[package]] name = "xml5ever" @@ -5851,9 +5831,9 @@ checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049" [[package]] name = "yoke" -version = "0.8.0" +version = "0.7.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc" +checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40" dependencies = [ "serde", "stable_deref_trait", @@ -5863,9 +5843,9 @@ dependencies = [ [[package]] name = "yoke-derive" -version = "0.8.0" +version = "0.7.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6" +checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154" dependencies = [ "proc-macro2", "quote", @@ -5875,18 +5855,18 @@ dependencies = [ [[package]] name = "zerocopy" -version = "0.8.25" +version = "0.8.24" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a1702d9583232ddb9174e01bb7c15a2ab8fb1bc6f227aa1233858c351a3ba0cb" +checksum = "2586fea28e186957ef732a5f8b3be2da217d65c5969d4b1e17f973ebbe876879" dependencies = [ "zerocopy-derive", ] [[package]] name = "zerocopy-derive" -version = "0.8.25" +version = "0.8.24" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "28a6e20d751156648aa063f3800b706ee209a32c0b4d9f24be3d980b01be55ef" +checksum = "a996a8f63c5c4448cd959ac1bab0aaa3306ccfd060472f85943ee0750f0169be" dependencies = [ "proc-macro2", "quote", @@ -5920,22 +5900,11 @@ version = "1.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde" -[[package]] -name = "zerotrie" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595" -dependencies = [ - "displaydoc", - "yoke", - "zerofrom", -] - [[package]] name = "zerovec" -version = "0.11.2" +version = "0.10.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4a05eb080e015ba39cc9e23bbe5e7fb04d5fb040350f99f34e338d5fdd294428" +checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079" dependencies = [ "yoke", "zerofrom", @@ -5944,9 +5913,9 @@ dependencies = [ [[package]] name = "zerovec-derive" -version = "0.11.1" +version = "0.10.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f" +checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6" dependencies = [ "proc-macro2", "quote", diff --git a/Cargo.toml b/Cargo.toml index 1abff107..c5e70762 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -298,7 +298,7 @@ version = "1.15.0" default-features = false features = ["serde"] -# Used for reading the configuration from continuwuity.toml & environment variables +# Used for reading the configuration from conduwuit.toml & environment variables [workspace.dependencies.figment] version = "0.10.19" default-features = false @@ -350,7 +350,7 @@ version = "0.1.2" [workspace.dependencies.ruma] git = "https://forgejo.ellis.link/continuwuation/ruwuma" #branch = "conduwuit-changes" -rev = "d6870a7fb7f6cccff63f7fd0ff6c581bad80e983" +rev = "b3cb85becae3c1ecabe2c93138312ebb3632b728" features = [ "compat", "rand", @@ -626,17 +626,6 @@ package = "conduwuit_macros" path = "src/macros" default-features = false -[workspace.dependencies.conduwuit-web] -package = "conduwuit_web" -path = "src/web" -default-features = false - - -[workspace.dependencies.conduwuit-build-metadata] -package = "conduwuit_build_metadata" -path = "src/build_metadata" -default-features = false - ############################################################################### # # Release profiles @@ -745,6 +734,7 @@ incremental = true [profile.dev.package.conduwuit_core] inherits = "dev" +incremental = false #rustflags = [ # '--cfg', 'conduwuit_mods', # '-Ztime-passes', @@ -784,6 +774,7 @@ inherits = "dev" [profile.dev.package.'*'] inherits = "dev" debug = 'limited' +incremental = false codegen-units = 1 opt-level = 'z' #rustflags = [ @@ -805,6 +796,7 @@ inherits = "dev" strip = false opt-level = 0 codegen-units = 16 +incremental = false [profile.test.package.'*'] inherits = "dev" @@ -812,6 +804,7 @@ debug = 0 strip = false opt-level = 0 codegen-units = 16 +incremental = false ############################################################################### # @@ -988,6 +981,3 @@ let_underscore_future = { level = "allow", priority = 1 } # rust doesnt understand conduwuit's custom log macros literal_string_with_formatting_args = { level = "allow", priority = 1 } - - -needless_raw_string_hashes = "allow" diff --git a/README.md b/README.md index e3eb807f..bf4f5613 100644 --- a/README.md +++ b/README.md @@ -7,21 +7,16 @@ [continuwuity] is a Matrix homeserver written in Rust. -It's a community continuation of the [conduwuit](https://github.com/girlbossceo/conduwuit) homeserver. +It's a community continuation of the [conduwuit](https://github.com/girlbossceo/conduwuit) homeserver. -[![forgejo.ellis.link](https://img.shields.io/badge/Ellis%20Git-main+packages-green?style=flat&logo=forgejo&labelColor=fff)](https://forgejo.ellis.link/continuwuation/continuwuity) ![](https://forgejo.ellis.link/continuwuation/continuwuity/badges/stars.svg?style=flat) [![](https://forgejo.ellis.link/continuwuation/continuwuity/badges/issues/open.svg?style=flat)](https://forgejo.ellis.link/continuwuation/continuwuity/issues?state=open) [![](https://forgejo.ellis.link/continuwuation/continuwuity/badges/pulls/open.svg?style=flat)](https://forgejo.ellis.link/continuwuation/continuwuity/pulls?state=open) - -[![GitHub](https://img.shields.io/badge/GitHub-mirror-blue?style=flat&logo=github&labelColor=fff&logoColor=24292f)](https://github.com/continuwuity/continuwuity) ![](https://img.shields.io/github/stars/continuwuity/continuwuity?style=flat) - -[![Codeberg](https://img.shields.io/badge/Codeberg-mirror-2185D0?style=flat&logo=codeberg&labelColor=fff)](https://codeberg.org/nexy7574/continuwuity) ![](https://codeberg.org/nexy7574/continuwuity/badges/stars.svg?style=flat) ### Why does this exist? The original conduwuit project has been archived and is no longer maintained. Rather than letting this Rust-based Matrix homeserver disappear, a group of community contributors have forked the project to continue its development, fix outstanding issues, and add new features. -We aim to provide a stable, well-maintained alternative for current conduwuit users and welcome newcomers seeking a lightweight, efficient Matrix homeserver. +We aim to provide a stable, well-maintained alternative for current Conduit users and welcome newcomers seeking a lightweight, efficient Matrix homeserver. ### Who are we? @@ -117,3 +112,4 @@ Join our [Matrix room](https://matrix.to/#/#continuwuity:continuwuity.org) and [ [continuwuity]: https://forgejo.ellis.link/continuwuation/continuwuity + diff --git a/SECURITY.md b/SECURITY.md deleted file mode 100644 index a9aa183e..00000000 --- a/SECURITY.md +++ /dev/null @@ -1,63 +0,0 @@ -# Security Policy for Continuwuity - -This document outlines the security policy for Continuwuity. Our goal is to maintain a secure platform for all users, and we take security matters seriously. - -## Supported Versions - -We provide security updates for the following versions of Continuwuity: - -| Version | Supported | -| -------------- |:----------------:| -| Latest release | ✅ | -| Main branch | ✅ | -| Older releases | ❌ | - -We may backport fixes to the previous release at our discretion, but we don't guarantee this. - -## Reporting a Vulnerability - -### Responsible Disclosure - -We appreciate the efforts of security researchers and the community in identifying and reporting vulnerabilities. To ensure that potential vulnerabilities are addressed properly, please follow these guidelines: - -1. Contact members of the team over E2EE private message. - - [@jade:ellis.link](https://matrix.to/#/@jade:ellis.link) - - [@nex:nexy7574.co.uk](https://matrix.to/#/@nex:nexy7574.co.uk) -2. **Email the security team** directly at [security@continuwuity.org](mailto:security@continuwuity.org). This is not E2EE, so don't include sensitive details. -3. **Do not disclose the vulnerability publicly** until it has been addressed -4. **Provide detailed information** about the vulnerability, including: - - A clear description of the issue - - Steps to reproduce - - Potential impact - - Any possible mitigations - - Version(s) affected, including specific commits if possible - -If you have any doubts about a potential security vulnerability, contact us via private channels first! We'd prefer that you bother us, instead of having a vulnerability disclosed without a fix. - -### What to Expect - -When you report a security vulnerability: - -1. **Acknowledgment**: We will acknowledge receipt of your report. -2. **Assessment**: We will assess the vulnerability and determine its impact on our users -3. **Updates**: We will provide updates on our progress in addressing the vulnerability, and may request you help test mitigations -4. **Resolution**: Once resolved, we will notify you and discuss coordinated disclosure -5. **Credit**: We will recognize your contribution (unless you prefer to remain anonymous) - -## Security Update Process - -When security vulnerabilities are identified: - -1. We will develop and test fixes in a private branch -2. Security updates will be released as soon as possible -3. Release notes will include information about the vulnerabilities, avoiding details that could facilitate exploitation where possible -4. Critical security updates may be backported to the previous stable release - -## Additional Resources - -- [Matrix Security Disclosure Policy](https://matrix.org/security-disclosure-policy/) -- [Continuwuity Documentation](https://continuwuity.org/introduction) - ---- - -This security policy was last updated on May 25, 2025. diff --git a/alpine/APKBUILD b/alpine/APKBUILD deleted file mode 100644 index 3b9653b3..00000000 --- a/alpine/APKBUILD +++ /dev/null @@ -1,70 +0,0 @@ -# Contributor: magmaus3 -# Maintainer: magmaus3 -pkgname=continuwuity - -# abuild doesn't like the format of v0.5.0-rc.5, so i had to change it -# see https://wiki.alpinelinux.org/wiki/Package_policies -pkgver=0.5.0_rc5 -pkgrel=0 -pkgdesc="a continuwuation of a very cool, featureful fork of conduit" -url="https://continuwuity.org/" -arch="all" -license="Apache-2.0" -depends="liburing" - -# cargo version on alpine v3.21 is too old to use the 2024 edition -# i recommend either building everything on edge, or adding -# the edge repo as a tag -makedepends="cargo liburing-dev clang-dev linux-headers" -checkdepends="" -install="$pkgname.pre-install" -subpackages="$pkgname-openrc" -source="https://forgejo.ellis.link/continuwuation/continuwuity/archive/v0.5.0-rc.5.tar.gz -continuwuity.initd -continuwuity.confd -" -_giturl="https://forgejo.ellis.link/continuwuation/continuwuity" -_gitbranch="main" -builddir="$srcdir/continuwuity" -options="net !check" - -#snapshot() { -# # used for building from git -# git clone --depth=1 $_giturl -b $_gitbranch -#} - -prepare() { - default_prepare - cd $srcdir/continuwuity - - # add the default database path to the config (commented out) - cat conduwuit-example.toml \ - | sed '/#database_path/ s:$: "/var/lib/continuwuity":' \ - > "$srcdir"/continuwuity.toml - - cargo fetch --target="$CTARGET" --locked -} - -build() { - cargo build --frozen --release --all-features -} - -check() { - # TODO: make sure the tests work - #cargo test --frozen - return -} - -package() { - cd $srcdir - install -Dm755 continuwuity/target/release/conduwuit "$pkgdir"/usr/bin/continuwuity - install -Dm644 "$srcdir"/continuwuity.toml -t "$pkgdir"/etc/continuwuity - install -Dm755 "$srcdir"/continuwuity.initd "$pkgdir"/etc/init.d/continuwuity - install -Dm644 "$srcdir"/continuwuity.confd "$pkgdir"/etc/conf.d/continuwuity -} - -sha512sums=" -66f6da5e98b6f7bb8c1082500101d5c87b1b79955c139b44c6ef5123919fb05feb0dffc669a3af1bc8d571ddb9f3576660f08dc10a6b19eab6db9e391175436a v0.5.0-rc.5.tar.gz -0482674be24740496d70da256d4121c5a5e3b749f2445d2bbe0e8991f1449de052724f8427da21a6f55574bc53eac9ca1e47e5012b4c13049b2b39044734d80d continuwuity.initd -38e2576278b450d16ba804dd8f4a128f18cd793e6c3ce55aedee1e186905755b31ee23baaa6586b1ab0e25a1f29bf1ea86bfaae4185b0cb1a29203726a199426 continuwuity.confd -" diff --git a/alpine/README.md b/alpine/README.md deleted file mode 100644 index 5f26d772..00000000 --- a/alpine/README.md +++ /dev/null @@ -1,7 +0,0 @@ -# building - -1. [set up your build - environment](https://wiki.alpinelinux.org/wiki/Include:Setup_your_system_and_account_for_building_packages) - -2. run `abuild` (or `abuild -K` if you want to keep the source directory to make - rebuilding faster) diff --git a/alpine/continuwuity.confd b/alpine/continuwuity.confd deleted file mode 100644 index 03d7b0a0..00000000 --- a/alpine/continuwuity.confd +++ /dev/null @@ -1,3 +0,0 @@ -supervisor=supervise-daemon -export CONTINUWUITY_CONFIG=/etc/continuwuity/continuwuity.toml - diff --git a/alpine/continuwuity.initd b/alpine/continuwuity.initd deleted file mode 100644 index 1354f4bd..00000000 --- a/alpine/continuwuity.initd +++ /dev/null @@ -1,19 +0,0 @@ -#!/sbin/openrc-run - -command="/usr/bin/continuwuity" -command_user="continuwuity:continuwuity" -command_args="--config ${CONTINUWUITY_CONFIG=/etc/continuwuity/continuwuity.toml}" -command_background=true -pidfile="/run/$RC_SVCNAME.pid" - -output_log="/var/log/continuwuity.log" -error_log="/var/log/continuwuity.log" - -depend() { - need net -} - -start_pre() { - checkpath -d -m 0755 -o "$command_user" /var/lib/continuwuity - checkpath -f -m 0644 -o "$command_user" "$output_log" -} diff --git a/alpine/continuwuity.pre-install b/alpine/continuwuity.pre-install deleted file mode 100644 index edac789f..00000000 --- a/alpine/continuwuity.pre-install +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/sh -addgroup -S continuwuity 2>/dev/null -adduser -S -D -H -h /var/lib/continuwuity -s /sbin/nologin -G continuwuity -g continuwuity continuwuity 2>/dev/null -exit 0 diff --git a/arch/conduwuit.service b/arch/conduwuit.service index c86e37bd..4f45ddc0 100644 --- a/arch/conduwuit.service +++ b/arch/conduwuit.service @@ -1,11 +1,11 @@ [Unit] - -Description=Continuwuity - Matrix homeserver +Description=conduwuit Matrix homeserver Wants=network-online.target After=network-online.target -Documentation=https://continuwuity.org/ +Documentation=https://conduwuit.puppyirl.gay/ RequiresMountsFor=/var/lib/private/conduwuit Alias=matrix-conduwuit.service + [Service] DynamicUser=yes Type=notify-reload @@ -59,7 +59,7 @@ StateDirectory=conduwuit RuntimeDirectory=conduwuit RuntimeDirectoryMode=0750 -Environment="CONTINUWUITY_CONFIG=/etc/conduwuit/conduwuit.toml" +Environment="CONDUWUIT_CONFIG=/etc/conduwuit/conduwuit.toml" BindPaths=/var/lib/private/conduwuit:/var/lib/matrix-conduit BindPaths=/var/lib/private/conduwuit:/var/lib/private/matrix-conduit diff --git a/conduwuit-example.toml b/conduwuit-example.toml index 1a8be2aa..b6bfd092 100644 --- a/conduwuit-example.toml +++ b/conduwuit-example.toml @@ -1,4 +1,4 @@ -### continuwuity Configuration +### conduwuit Configuration ### ### THIS FILE IS GENERATED. CHANGES/CONTRIBUTIONS IN THE REPO WILL BE ### OVERWRITTEN! @@ -13,7 +13,7 @@ ### that say "YOU NEED TO EDIT THIS". ### ### For more information, see: -### https://continuwuity.org/configuration.html +### https://conduwuit.puppyirl.gay/configuration.html [global] @@ -21,7 +21,7 @@ # suffix for user and room IDs/aliases. # # See the docs for reverse proxying and delegation: -# https://continuwuity.org/deploying/generic.html#setting-up-the-reverse-proxy +# https://conduwuit.puppyirl.gay/deploying/generic.html#setting-up-the-reverse-proxy # # Also see the `[global.well_known]` config section at the very bottom. # @@ -32,11 +32,11 @@ # YOU NEED TO EDIT THIS. THIS CANNOT BE CHANGED AFTER WITHOUT A DATABASE # WIPE. # -# example: "continuwuity.org" +# example: "conduwuit.woof" # #server_name = -# The default address (IPv4 or IPv6) continuwuity will listen on. +# The default address (IPv4 or IPv6) conduwuit will listen on. # # If you are using Docker or a container NAT networking setup, this must # be "0.0.0.0". @@ -46,10 +46,10 @@ # #address = ["127.0.0.1", "::1"] -# The port(s) continuwuity will listen on. +# The port(s) conduwuit will listen on. # # For reverse proxying, see: -# https://continuwuity.org/deploying/generic.html#setting-up-the-reverse-proxy +# https://conduwuit.puppyirl.gay/deploying/generic.html#setting-up-the-reverse-proxy # # If you are using Docker, don't change this, you'll need to map an # external port to this. @@ -58,17 +58,16 @@ # #port = 8008 -# The UNIX socket continuwuity will listen on. +# The UNIX socket conduwuit will listen on. # -# continuwuity cannot listen on both an IP address and a UNIX socket. If +# conduwuit cannot listen on both an IP address and a UNIX socket. If # listening on a UNIX socket, you MUST remove/comment the `address` key. # # Remember to make sure that your reverse proxy has access to this socket -# file, either by adding your reverse proxy to the appropriate user group -# or granting world R/W permissions with `unix_socket_perms` (666 -# minimum). +# file, either by adding your reverse proxy to the 'conduwuit' group or +# granting world R/W permissions with `unix_socket_perms` (666 minimum). # -# example: "/run/continuwuity/continuwuity.sock" +# example: "/run/conduwuit/conduwuit.sock" # #unix_socket_path = @@ -76,23 +75,23 @@ # #unix_socket_perms = 660 -# This is the only directory where continuwuity will save its data, -# including media. Note: this was previously "/var/lib/matrix-conduit". +# This is the only directory where conduwuit will save its data, including +# media. Note: this was previously "/var/lib/matrix-conduit". # # YOU NEED TO EDIT THIS. # -# example: "/var/lib/continuwuity" +# example: "/var/lib/conduwuit" # #database_path = -# continuwuity supports online database backups using RocksDB's Backup -# engine API. To use this, set a database backup path that continuwuity -# can write to. +# conduwuit supports online database backups using RocksDB's Backup engine +# API. To use this, set a database backup path that conduwuit can write +# to. # # For more information, see: -# https://continuwuity.org/maintenance.html#backups +# https://conduwuit.puppyirl.gay/maintenance.html#backups # -# example: "/opt/continuwuity-db-backups" +# example: "/opt/conduwuit-db-backups" # #database_backup_path = @@ -113,14 +112,14 @@ # #new_user_displayname_suffix = "🏳️‍⚧️" -# If enabled, continuwuity will send a simple GET request periodically to +# If enabled, conduwuit will send a simple GET request periodically to # `https://continuwuity.org/.well-known/continuwuity/announcements` for any new # announcements or major updates. This is not an update check endpoint. # -#allow_announcements_check = true +#allow_announcements_check = -# Set this to any float value to multiply continuwuity's in-memory LRU -# caches with such as "auth_chain_cache_capacity". +# Set this to any float value to multiply conduwuit's in-memory LRU caches +# with such as "auth_chain_cache_capacity". # # May be useful if you have significant memory to spare to increase # performance. @@ -132,7 +131,7 @@ # #cache_capacity_modifier = 1.0 -# Set this to any float value in megabytes for continuwuity to tell the +# Set this to any float value in megabytes for conduwuit to tell the # database engine that this much memory is available for database read # caches. # @@ -146,7 +145,7 @@ # #db_cache_capacity_mb = varies by system -# Set this to any float value in megabytes for continuwuity to tell the +# Set this to any float value in megabytes for conduwuit to tell the # database engine that this much memory is available for database write # caches. # @@ -251,9 +250,9 @@ # Enable using *only* TCP for querying your specified nameservers instead # of UDP. # -# If you are running continuwuity in a container environment, this config +# If you are running conduwuit in a container environment, this config # option may need to be enabled. For more details, see: -# https://continuwuity.org/troubleshooting.html#potential-dns-issues-when-using-docker +# https://conduwuit.puppyirl.gay/troubleshooting.html#potential-dns-issues-when-using-docker # #query_over_tcp_only = false @@ -419,9 +418,9 @@ # tokens. Multiple tokens can be added if you separate them with # whitespace # -# continuwuity must be able to access the file, and it must not be empty +# conduwuit must be able to access the file, and it must not be empty # -# example: "/etc/continuwuity/.reg_token" +# example: "/etc/conduwuit/.reg_token" # #registration_token_file = @@ -513,16 +512,16 @@ #allow_room_creation = true # Set to false to disable users from joining or creating room versions -# that aren't officially supported by continuwuity. +# that aren't officially supported by conduwuit. # -# continuwuity officially supports room versions 6 - 11. +# conduwuit officially supports room versions 6 - 11. # -# continuwuity has slightly experimental (though works fine in practice) +# conduwuit has slightly experimental (though works fine in practice) # support for versions 3 - 5. # #allow_unstable_room_versions = true -# Default room version continuwuity will create rooms with. +# Default room version conduwuit will create rooms with. # # Per spec, room version 11 is the default. # @@ -588,7 +587,7 @@ # Servers listed here will be used to gather public keys of other servers # (notary trusted key servers). # -# Currently, continuwuity doesn't support inbound batched key requests, so +# Currently, conduwuit doesn't support inbound batched key requests, so # this list should only contain other Synapse servers. # # example: ["matrix.org", "tchncs.de"] @@ -629,7 +628,7 @@ # #trusted_server_batch_size = 1024 -# Max log level for continuwuity. Allows debug, info, warn, or error. +# Max log level for conduwuit. Allows debug, info, warn, or error. # # See also: # https://docs.rs/tracing-subscriber/latest/tracing_subscriber/filter/struct.EnvFilter.html#directives @@ -650,9 +649,8 @@ # #log_span_events = "none" -# Configures whether CONTINUWUITY_LOG EnvFilter matches values using -# regular expressions. See the tracing_subscriber documentation on -# Directives. +# Configures whether CONDUWUIT_LOG EnvFilter matches values using regular +# expressions. See the tracing_subscriber documentation on Directives. # #log_filter_regex = true @@ -720,7 +718,7 @@ # This takes priority over "turn_secret" first, and falls back to # "turn_secret" if invalid or failed to open. # -# example: "/etc/continuwuity/.turn_secret" +# example: "/etc/conduwuit/.turn_secret" # #turn_secret_file = @@ -728,12 +726,12 @@ # #turn_ttl = 86400 -# List/vector of room IDs or room aliases that continuwuity will make -# newly registered users join. The rooms specified must be rooms that you -# have joined at least once on the server, and must be public. +# List/vector of room IDs or room aliases that conduwuit will make newly +# registered users join. The rooms specified must be rooms that you have +# joined at least once on the server, and must be public. # -# example: ["#continuwuity:continuwuity.org", -# "!main-1:continuwuity.org"] +# example: ["#conduwuit:puppygock.gay", +# "!eoIzvAvVwY23LPDay8:puppygock.gay"] # #auto_join_rooms = [] @@ -756,10 +754,10 @@ # #auto_deactivate_banned_room_attempts = false -# RocksDB log level. This is not the same as continuwuity's log level. -# This is the log level for the RocksDB engine/library which show up in -# your database folder/path as `LOG` files. continuwuity will log RocksDB -# errors as normal through tracing or panics if severe for safety. +# RocksDB log level. This is not the same as conduwuit's log level. This +# is the log level for the RocksDB engine/library which show up in your +# database folder/path as `LOG` files. conduwuit will log RocksDB errors +# as normal through tracing or panics if severe for safety. # #rocksdb_log_level = "error" @@ -779,7 +777,7 @@ # Set this to true to use RocksDB config options that are tailored to HDDs # (slower device storage). # -# It is worth noting that by default, continuwuity will use RocksDB with +# It is worth noting that by default, conduwuit will use RocksDB with # Direct IO enabled. *Generally* speaking this improves performance as it # bypasses buffered I/O (system page cache). However there is a potential # chance that Direct IO may cause issues with database operations if your @@ -787,7 +785,7 @@ # possibly ZFS filesystem. RocksDB generally deals/corrects these issues # but it cannot account for all setups. If you experience any weird # RocksDB issues, try enabling this option as it turns off Direct IO and -# feel free to report in the continuwuity Matrix room if this option fixes +# feel free to report in the conduwuit Matrix room if this option fixes # your DB issues. # # For more information, see: @@ -842,7 +840,7 @@ # as they all differ. See their `kDefaultCompressionLevel`. # # Note when using the default value we may override it with a setting -# tailored specifically for continuwuity. +# tailored specifically conduwuit. # #rocksdb_compression_level = 32767 @@ -858,7 +856,7 @@ # algorithm. # # Note when using the default value we may override it with a setting -# tailored specifically for continuwuity. +# tailored specifically conduwuit. # #rocksdb_bottommost_compression_level = 32767 @@ -898,13 +896,13 @@ # 0 = AbsoluteConsistency # 1 = TolerateCorruptedTailRecords (default) # 2 = PointInTime (use me if trying to recover) -# 3 = SkipAnyCorruptedRecord (you now voided your Continuwuity warranty) +# 3 = SkipAnyCorruptedRecord (you now voided your Conduwuit warranty) # # For more information on these modes, see: # https://github.com/facebook/rocksdb/wiki/WAL-Recovery-Modes # # For more details on recovering a corrupt database, see: -# https://continuwuity.org/troubleshooting.html#database-corruption +# https://conduwuit.puppyirl.gay/troubleshooting.html#database-corruption # #rocksdb_recovery_mode = 1 @@ -944,7 +942,7 @@ # - Disabling repair mode and restarting the server is recommended after # running the repair. # -# See https://continuwuity.org/troubleshooting.html#database-corruption for more details on recovering a corrupt database. +# See https://conduwuit.puppyirl.gay/troubleshooting.html#database-corruption for more details on recovering a corrupt database. # #rocksdb_repair = false @@ -969,9 +967,9 @@ #rocksdb_compaction_ioprio_idle = true # Enables RocksDB compaction. You should never ever have to set this -# option to false. If you for some reason find yourself needing to use -# this option as part of troubleshooting or a bug, please reach out to us -# in the continuwuity Matrix room with information and details. +# option to false. If you for some reason find yourself needing to use this +# option as part of troubleshooting or a bug, please reach out to us in +# the conduwuit Matrix room with information and details. # # Disabling compaction will lead to a significantly bloated and # explosively large database, gradually poor performance, unnecessarily @@ -997,7 +995,7 @@ # purposes such as recovering/recreating your admin room, or inviting # yourself back. # -# See https://continuwuity.org/troubleshooting.html#lost-access-to-admin-room for other ways to get back into your admin room. +# See https://conduwuit.puppyirl.gay/troubleshooting.html#lost-access-to-admin-room for other ways to get back into your admin room. # # Once this password is unset, all sessions will be logged out for # security purposes. @@ -1012,8 +1010,8 @@ # Allow local (your server only) presence updates/requests. # -# Note that presence on continuwuity is very fast unlike Synapse's. If -# using outgoing presence, this MUST be enabled. +# Note that presence on conduwuit is very fast unlike Synapse's. If using +# outgoing presence, this MUST be enabled. # #allow_local_presence = true @@ -1021,7 +1019,7 @@ # # This option receives presence updates from other servers, but does not # send any unless `allow_outgoing_presence` is true. Note that presence on -# continuwuity is very fast unlike Synapse's. +# conduwuit is very fast unlike Synapse's. # #allow_incoming_presence = true @@ -1029,8 +1027,8 @@ # # This option sends presence updates to other servers, but does not # receive any unless `allow_incoming_presence` is true. Note that presence -# on continuwuity is very fast unlike Synapse's. If using outgoing -# presence, you MUST enable `allow_local_presence` as well. +# on conduwuit is very fast unlike Synapse's. If using outgoing presence, +# you MUST enable `allow_local_presence` as well. # #allow_outgoing_presence = true @@ -1083,8 +1081,8 @@ # #typing_client_timeout_max_s = 45 -# Set this to true for continuwuity to compress HTTP response bodies using -# zstd. This option does nothing if continuwuity was not built with +# Set this to true for conduwuit to compress HTTP response bodies using +# zstd. This option does nothing if conduwuit was not built with # `zstd_compression` feature. Please be aware that enabling HTTP # compression may weaken TLS. Most users should not need to enable this. # See https://breachattack.com/ and https://wikipedia.org/wiki/BREACH @@ -1092,8 +1090,8 @@ # #zstd_compression = false -# Set this to true for continuwuity to compress HTTP response bodies using -# gzip. This option does nothing if continuwuity was not built with +# Set this to true for conduwuit to compress HTTP response bodies using +# gzip. This option does nothing if conduwuit was not built with # `gzip_compression` feature. Please be aware that enabling HTTP # compression may weaken TLS. Most users should not need to enable this. # See https://breachattack.com/ and https://wikipedia.org/wiki/BREACH before @@ -1104,8 +1102,8 @@ # #gzip_compression = false -# Set this to true for continuwuity to compress HTTP response bodies using -# brotli. This option does nothing if continuwuity was not built with +# Set this to true for conduwuit to compress HTTP response bodies using +# brotli. This option does nothing if conduwuit was not built with # `brotli_compression` feature. Please be aware that enabling HTTP # compression may weaken TLS. Most users should not need to enable this. # See https://breachattack.com/ and https://wikipedia.org/wiki/BREACH @@ -1167,7 +1165,7 @@ # Otherwise setting this to false reduces filesystem clutter and overhead # for managing these symlinks in the directory. This is now disabled by # default. You may still return to upstream Conduit but you have to run -# continuwuity at least once with this set to true and allow the +# conduwuit at least once with this set to true and allow the # media_startup_check to take place before shutting down to return to # Conduit. # @@ -1184,13 +1182,23 @@ # #prune_missing_media = false +# Vector list of regex patterns of server names that conduwuit will refuse +# to download remote media from. +# +# example: ["badserver\.tld$", "badphrase", "19dollarfortnitecards"] +# +#prevent_media_downloads_from = [] + # List of forbidden server names via regex patterns that we will block # incoming AND outgoing federation with, and block client room joins / # remote user invites. # +# Additionally, it will hide messages from these servers for all users +# on this server. +# # Note that your messages can still make it to forbidden servers through -# backfilling. Events we receive from forbidden servers via backfill -# from servers we *do* federate with will be stored in the database. +# backfilling. Events we receive from forbidden servers via backfill will +# be stored in the database, but will not be sent to the client. # # This check is applied on the room ID, room alias, sender server name, # sender user's server name, inbound federation X-Matrix origin, and @@ -1199,7 +1207,7 @@ # You can set this to ["*"] to block all servers by default, and then # use `allowed_remote_server_names` to allow only specific servers. # -# example: ["badserver\\.tld$", "badphrase", "19dollarfortnitecards"] +# example: ["badserver\.tld$", "badphrase", "19dollarfortnitecards"] # #forbidden_remote_server_names = [] @@ -1208,17 +1216,10 @@ # # This option has no effect if `forbidden_remote_server_names` is empty. # -# example: ["goodserver\\.tld$", "goodphrase"] +# example: ["goodserver\.tld$", "goodphrase"] # #allowed_remote_server_names = [] -# Vector list of regex patterns of server names that continuwuity will -# refuse to download remote media from. -# -# example: ["badserver\.tld$", "badphrase", "19dollarfortnitecards"] -# -#prevent_media_downloads_from = [] - # List of forbidden server names via regex patterns that we will block all # outgoing federated room directory requests for. Useful for preventing # our users from wandering into bad servers or spaces. @@ -1227,31 +1228,8 @@ # #forbidden_remote_room_directory_server_names = [] -# Vector list of regex patterns of server names that continuwuity will not -# send messages to the client from. -# -# Note that there is no way for clients to receive messages once a server -# has become unignored without doing a full sync. This is a protocol -# limitation with the current sync protocols. This means this is somewhat -# of a nuclear option. -# -# example: ["reallybadserver\.tld$", "reallybadphrase", -# "69dollarfortnitecards"] -# -#ignore_messages_from_server_names = [] - -# Send messages from users that the user has ignored to the client. -# -# There is no way for clients to receive messages sent while a user was -# ignored without doing a full sync. This is a protocol limitation with -# the current sync protocols. Disabling this option will move -# responsibility of ignoring messages to the client, which can avoid this -# limitation. -# -#send_messages_from_ignored_users_to_client = false - # Vector list of IPv4 and IPv6 CIDR ranges / subnets *in quotes* that you -# do not want continuwuity to send outbound requests to. Defaults to +# do not want conduwuit to send outbound requests to. Defaults to # RFC1918, unroutable, loopback, multicast, and testnet addresses for # security. # @@ -1401,26 +1379,26 @@ # Allow admins to enter commands in rooms other than "#admins" (admin # room) by prefixing your message with "\!admin" or "\\!admin" followed up -# a normal continuwuity admin command. The reply will be publicly visible -# to the room, originating from the sender. +# a normal conduwuit admin command. The reply will be publicly visible to +# the room, originating from the sender. # # example: \\!admin debug ping puppygock.gay # #admin_escape_commands = true -# Automatically activate the continuwuity admin room console / CLI on -# startup. This option can also be enabled with `--console` continuwuity +# Automatically activate the conduwuit admin room console / CLI on +# startup. This option can also be enabled with `--console` conduwuit # argument. # #admin_console_automatic = false # List of admin commands to execute on startup. # -# This option can also be configured with the `--execute` continuwuity +# This option can also be configured with the `--execute` conduwuit # argument and can take standard shell commands and environment variables # -# For example: `./continuwuity --execute "server admin-notice continuwuity -# has started up at $(date)"` +# For example: `./conduwuit --execute "server admin-notice conduwuit has +# started up at $(date)"` # # example: admin_execute = ["debug ping puppygock.gay", "debug echo hi"]` # @@ -1428,7 +1406,7 @@ # Ignore errors in startup commands. # -# If false, continuwuity will error and fail to start if an admin execute +# If false, conduwuit will error and fail to start if an admin execute # command (`--execute` / `admin_execute`) fails. # #admin_execute_errors_ignore = false @@ -1449,14 +1427,15 @@ # The default room tag to apply on the admin room. # # On some clients like Element, the room tag "m.server_notice" is a -# special pinned room at the very bottom of your room list. The -# continuwuity admin room can be pinned here so you always have an -# easy-to-access shortcut dedicated to your admin room. +# special pinned room at the very bottom of your room list. The conduwuit +# admin room can be pinned here so you always have an easy-to-access +# shortcut dedicated to your admin room. # #admin_room_tag = "m.server_notice" # Sentry.io crash/panic reporting, performance monitoring/metrics, etc. -# This is NOT enabled by default. +# This is NOT enabled by default. conduwuit's default Sentry reporting +# endpoint domain is `o4506996327251968.ingest.us.sentry.io`. # #sentry = false @@ -1464,7 +1443,7 @@ # #sentry_endpoint = "" -# Report your continuwuity server_name in Sentry.io crash reports and +# Report your conduwuit server_name in Sentry.io crash reports and # metrics. # #sentry_send_server_name = false @@ -1501,7 +1480,7 @@ # Enable the tokio-console. This option is only relevant to developers. # # For more information, see: -# https://continuwuity.org/development.html#debugging-with-tokio-console +# https://conduwuit.puppyirl.gay/development.html#debugging-with-tokio-console # #tokio_console = false @@ -1641,29 +1620,19 @@ # #server = -# URL to a support page for the server, which will be served as part of -# the MSC1929 server support endpoint at /.well-known/matrix/support. -# Will be included alongside any contact information +# This item is undocumented. Please contribute documentation for it. # #support_page = -# Role string for server support contacts, to be served as part of the -# MSC1929 server support endpoint at /.well-known/matrix/support. +# This item is undocumented. Please contribute documentation for it. # -#support_role = "m.role.admin" +#support_role = -# Email address for server support contacts, to be served as part of the -# MSC1929 server support endpoint. -# This will be used along with support_mxid if specified. +# This item is undocumented. Please contribute documentation for it. # #support_email = -# Matrix ID for server support contacts, to be served as part of the -# MSC1929 server support endpoint. -# This will be used along with support_email if specified. -# -# If no email or mxid is specified, all of the server's admins will be -# listed. +# This item is undocumented. Please contribute documentation for it. # #support_mxid = diff --git a/debian/README.md b/debian/README.md index 4a8e58d2..800a2e09 100644 --- a/debian/README.md +++ b/debian/README.md @@ -1,4 +1,4 @@ -# Continuwuity for Debian +# conduwuit for Debian Information about downloading and deploying the Debian package. This may also be referenced for other `apt`-based distros such as Ubuntu. @@ -22,7 +22,7 @@ options in `/etc/conduwuit/conduwuit.toml`. ### Running -The package uses the [`conduwuit.service`](../configuration/examples.md#example-systemd-unit-file) systemd unit file to start and stop Continuwuity. The binary is installed at `/usr/sbin/conduwuit`. +The package uses the [`conduwuit.service`](../configuration/examples.md#example-systemd-unit-file) systemd unit file to start and stop conduwuit. The binary is installed at `/usr/sbin/conduwuit`. This package assumes by default that conduwuit will be placed behind a reverse proxy. The default config options apply (listening on `localhost` and TCP port `6167`). Matrix federation requires a valid domain name and TLS, so you will need to set up TLS certificates and renewal for it to work properly if you intend to federate. diff --git a/debian/conduwuit.service b/debian/conduwuit.service index be2f3dae..a079499e 100644 --- a/debian/conduwuit.service +++ b/debian/conduwuit.service @@ -1,10 +1,9 @@ [Unit] - -Description=Continuwuity - Matrix homeserver +Description=conduwuit Matrix homeserver Wants=network-online.target After=network-online.target -Documentation=https://continuwuity.org/ Alias=matrix-conduwuit.service +Documentation=https://conduwuit.puppyirl.gay/ [Service] DynamicUser=yes @@ -12,7 +11,7 @@ User=conduwuit Group=conduwuit Type=notify -Environment="CONTINUWUITY_CONFIG=/etc/conduwuit/conduwuit.toml" +Environment="CONDUWUIT_CONFIG=/etc/conduwuit/conduwuit.toml" ExecStart=/usr/sbin/conduwuit diff --git a/docker/Dockerfile b/docker/Dockerfile index e734fb81..536af632 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -18,14 +18,13 @@ ARG LLVM_VERSION=19 # Line three: for xx-verify RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \ --mount=type=cache,target=/var/lib/apt,sharing=locked \ - apt-get update && apt-get install -y \ +apt-get update && apt-get install -y \ clang-${LLVM_VERSION} lld-${LLVM_VERSION} pkg-config make jq \ curl git \ file # Create symlinks for LLVM tools RUN <> /etc/environment # Configure pkg-config RUN <> /etc/environment echo "PKG_CONFIG=/usr/bin/$(xx-info)-pkg-config" >> /etc/environment echo "PKG_CONFIG_ALLOW_CROSS=true" >> /etc/environment @@ -85,14 +82,12 @@ EOF # Configure cc to use clang version RUN <> /etc/environment echo "CXX=clang++" >> /etc/environment EOF # Cross-language LTO RUN <> /etc/environment echo "CXXFLAGS=-flto" >> /etc/environment # Linker is set to target-compatible clang by xx @@ -103,7 +98,6 @@ EOF ARG TARGET_CPU= RUN <> /etc/environment @@ -117,37 +111,31 @@ RUN mkdir /out FROM toolchain AS builder - -# Get source -COPY . . +# Conduwuit version info +ARG COMMIT_SHA= +ARG CONDUWUIT_VERSION_EXTRA= +ENV CONDUWUIT_VERSION_EXTRA=$CONDUWUIT_VERSION_EXTRA +RUN <> /etc/environment +fi +EOF ARG TARGETPLATFORM # Verify environment configuration +RUN cat /etc/environment RUN xx-cargo --print-target-triple -# Conduwuit version info -ARG GIT_COMMIT_HASH= -ARG GIT_COMMIT_HASH_SHORT= -ARG GIT_REMOTE_URL= -ARG GIT_REMOTE_COMMIT_URL= -ARG CONDUWUIT_VERSION_EXTRA= -ARG CONTINUWUITY_VERSION_EXTRA= -ENV GIT_COMMIT_HASH=$GIT_COMMIT_HASH -ENV GIT_COMMIT_HASH_SHORT=$GIT_COMMIT_HASH_SHORT -ENV GIT_REMOTE_URL=$GIT_REMOTE_URL -ENV GIT_REMOTE_COMMIT_URL=$GIT_REMOTE_COMMIT_URL -ENV CONDUWUIT_VERSION_EXTRA=$CONDUWUIT_VERSION_EXTRA -ENV CONTINUWUITY_VERSION_EXTRA=$CONTINUWUITY_VERSION_EXTRA - +# Get source +COPY . . # Build the binary RUN --mount=type=cache,target=/usr/local/cargo/registry \ --mount=type=cache,target=/usr/local/cargo/git/db \ - --mount=type=cache,target=/app/target,id=cargo-target-${TARGETPLATFORM} \ + --mount=type=cache,target=/app/target \ bash <<'EOF' set -o allexport - set -o xtrace . /etc/environment TARGET_DIR=($(cargo metadata --no-deps --format-version 1 | \ jq -r ".target_directory")) @@ -168,7 +156,6 @@ EOF RUN --mount=type=cache,target=/usr/local/cargo/registry \ --mount=type=cache,target=/usr/local/cargo/git/db \ bash <<'EOF' - set -o xtrace mkdir /out/sbom typeset -A PACKAGES for BINARY in /out/sbin/*; do @@ -187,7 +174,6 @@ EOF # Extract dynamically linked dependencies RUN <.`)" # Change to the address on which Continuwuity is hosted - - "traefik.http.routers.to-continuwuity.tls=true" - - "traefik.http.routers.to-continuwuity.tls.certresolver=letsencrypt" - - "traefik.http.routers.to-continuwuity.middlewares=cors-headers@docker" - - "traefik.http.services.to_continuwuity.loadbalancer.server.port=6167" + - "traefik.http.routers.to-conduwuit.rule=Host(`.`)" # Change to the address on which Continuwuity is hosted + - "traefik.http.routers.to-conduwuit.tls=true" + - "traefik.http.routers.to-conduwuit.tls.certresolver=letsencrypt" + - "traefik.http.routers.to-conduwuit.middlewares=cors-headers@docker" + - "traefik.http.services.to_conduwuit.loadbalancer.server.port=6167" - "traefik.http.middlewares.cors-headers.headers.accessControlAllowOriginList=*" - "traefik.http.middlewares.cors-headers.headers.accessControlAllowHeaders=Origin, X-Requested-With, Content-Type, Accept, Authorization" diff --git a/docs/deploying/docker-compose.with-caddy.yml b/docs/deploying/docker-compose.with-caddy.yml index 3dfc9d85..9ee98428 100644 --- a/docs/deploying/docker-compose.with-caddy.yml +++ b/docs/deploying/docker-compose.with-caddy.yml @@ -25,23 +25,23 @@ services: image: forgejo.ellis.link/continuwuation/continuwuity:latest restart: unless-stopped volumes: - - db:/var/lib/continuwuity + - db:/var/lib/conduwuit - /etc/resolv.conf:/etc/resolv.conf:ro # Use the host's DNS resolver rather than Docker's. - #- ./continuwuity.toml:/etc/continuwuity.toml + #- ./conduwuit.toml:/etc/conduwuit.toml environment: - CONTINUWUITY_SERVER_NAME: example.com # EDIT THIS - CONTINUWUITY_DATABASE_PATH: /var/lib/continuwuity - CONTINUWUITY_PORT: 6167 - CONTINUWUITY_MAX_REQUEST_SIZE: 20000000 # in bytes, ~20 MB - CONTINUWUITY_ALLOW_REGISTRATION: 'true' - CONTINUWUITY_REGISTRATION_TOKEN: 'YOUR_TOKEN' # A registration token is required when registration is allowed. - #CONTINUWUITY_YES_I_AM_VERY_VERY_SURE_I_WANT_AN_OPEN_REGISTRATION_SERVER_PRONE_TO_ABUSE: 'true' - CONTINUWUITY_ALLOW_FEDERATION: 'true' - CONTINUWUITY_ALLOW_CHECK_FOR_UPDATES: 'true' - CONTINUWUITY_TRUSTED_SERVERS: '["matrix.org"]' - #CONTINUWUITY_LOG: warn,state_res=warn - CONTINUWUITY_ADDRESS: 0.0.0.0 - #CONTINUWUITY_CONFIG: '/etc/continuwuity.toml' # Uncomment if you mapped config toml above + CONDUWUIT_SERVER_NAME: example.com # EDIT THIS + CONDUWUIT_DATABASE_PATH: /var/lib/conduwuit + CONDUWUIT_PORT: 6167 + CONDUWUIT_MAX_REQUEST_SIZE: 20000000 # in bytes, ~20 MB + CONDUWUIT_ALLOW_REGISTRATION: 'true' + CONDUWUIT_REGISTRATION_TOKEN: 'YOUR_TOKEN' # A registration token is required when registration is allowed. + #CONDUWUIT_YES_I_AM_VERY_VERY_SURE_I_WANT_AN_OPEN_REGISTRATION_SERVER_PRONE_TO_ABUSE: 'true' + CONDUWUIT_ALLOW_FEDERATION: 'true' + CONDUWUIT_ALLOW_CHECK_FOR_UPDATES: 'true' + CONDUWUIT_TRUSTED_SERVERS: '["matrix.org"]' + #CONDUWUIT_LOG: warn,state_res=warn + CONDUWUIT_ADDRESS: 0.0.0.0 + #CONDUWUIT_CONFIG: '/etc/conduwuit.toml' # Uncomment if you mapped config toml above networks: - caddy labels: diff --git a/docs/deploying/docker-compose.with-traefik.yml b/docs/deploying/docker-compose.with-traefik.yml index 9acc4221..9083b796 100644 --- a/docs/deploying/docker-compose.with-traefik.yml +++ b/docs/deploying/docker-compose.with-traefik.yml @@ -7,38 +7,38 @@ services: image: forgejo.ellis.link/continuwuation/continuwuity:latest restart: unless-stopped volumes: - - db:/var/lib/continuwuity + - db:/var/lib/conduwuit - /etc/resolv.conf:/etc/resolv.conf:ro # Use the host's DNS resolver rather than Docker's. - #- ./continuwuity.toml:/etc/continuwuity.toml + #- ./conduwuit.toml:/etc/conduwuit.toml networks: - proxy environment: - CONTINUWUITY_SERVER_NAME: your.server.name.example # EDIT THIS - CONTINUWUITY_TRUSTED_SERVERS: '["matrix.org"]' - CONTINUWUITY_ALLOW_REGISTRATION: 'false' # After setting a secure registration token, you can enable this - CONTINUWUITY_REGISTRATION_TOKEN: "" # This is a token you can use to register on the server - #CONTINUWUITY_REGISTRATION_TOKEN_FILE: "" # Alternatively you can configure a path to a token file to read - CONTINUWUITY_ADDRESS: 0.0.0.0 - CONTINUWUITY_PORT: 6167 # you need to match this with the traefik load balancer label if you're want to change it - CONTINUWUITY_DATABASE_PATH: /var/lib/continuwuity - #CONTINUWUITY_CONFIG: '/etc/continuwuity.toml' # Uncomment if you mapped config toml above + CONDUWUIT_SERVER_NAME: your.server.name.example # EDIT THIS + CONDUWUIT_TRUSTED_SERVERS: '["matrix.org"]' + CONDUWUIT_ALLOW_REGISTRATION: 'false' # After setting a secure registration token, you can enable this + CONDUWUIT_REGISTRATION_TOKEN: "" # This is a token you can use to register on the server + #CONDUWUIT_REGISTRATION_TOKEN_FILE: "" # Alternatively you can configure a path to a token file to read + CONDUWUIT_ADDRESS: 0.0.0.0 + CONDUWUIT_PORT: 6167 # you need to match this with the traefik load balancer label if you're want to change it + CONDUWUIT_DATABASE_PATH: /var/lib/conduwuit + #CONDUWUIT_CONFIG: '/etc/conduit.toml' # Uncomment if you mapped config toml above ### Uncomment and change values as desired, note that Continuwuity has plenty of config options, so you should check out the example example config too # Available levels are: error, warn, info, debug, trace - more info at: https://docs.rs/env_logger/*/env_logger/#enabling-logging - # CONTINUWUITY_LOG: info # default is: "warn,state_res=warn" - # CONTINUWUITY_ALLOW_ENCRYPTION: 'true' - # CONTINUWUITY_ALLOW_FEDERATION: 'true' - # CONTINUWUITY_ALLOW_CHECK_FOR_UPDATES: 'true' - # CONTINUWUITY_ALLOW_INCOMING_PRESENCE: true - # CONTINUWUITY_ALLOW_OUTGOING_PRESENCE: true - # CONTINUWUITY_ALLOW_LOCAL_PRESENCE: true - # CONTINUWUITY_WORKERS: 10 - # CONTINUWUITY_MAX_REQUEST_SIZE: 20000000 # in bytes, ~20 MB - # CONTINUWUITY_NEW_USER_DISPLAYNAME_SUFFIX = "🏳<200d>⚧" + # CONDUWUIT_LOG: info # default is: "warn,state_res=warn" + # CONDUWUIT_ALLOW_ENCRYPTION: 'true' + # CONDUWUIT_ALLOW_FEDERATION: 'true' + # CONDUWUIT_ALLOW_CHECK_FOR_UPDATES: 'true' + # CONDUWUIT_ALLOW_INCOMING_PRESENCE: true + # CONDUWUIT_ALLOW_OUTGOING_PRESENCE: true + # CONDUWUIT_ALLOW_LOCAL_PRESENCE: true + # CONDUWUIT_WORKERS: 10 + # CONDUWUIT_MAX_REQUEST_SIZE: 20000000 # in bytes, ~20 MB + # CONDUWUIT_NEW_USER_DISPLAYNAME_SUFFIX = "🏳<200d>⚧" - # We need some way to serve the client and server .well-known json. The simplest way is via the CONTINUWUITY_WELL_KNOWN - # variable / config option, there are multiple ways to do this, e.g. in the continuwuity.toml file, and in a separate + # We need some way to serve the client and server .well-known json. The simplest way is via the CONDUWUIT_WELL_KNOWN + # variable / config option, there are multiple ways to do this, e.g. in the conduwuit.toml file, and in a seperate # reverse proxy, but since you do not have a reverse proxy and following this guide, this example is included - CONTINUWUITY_WELL_KNOWN: | + CONDUWUIT_WELL_KNOWN: | { client=https://your.server.name.example, server=your.server.name.example:443 diff --git a/docs/deploying/docker-compose.yml b/docs/deploying/docker-compose.yml index fbb50e35..1a3ab811 100644 --- a/docs/deploying/docker-compose.yml +++ b/docs/deploying/docker-compose.yml @@ -9,22 +9,22 @@ services: ports: - 8448:6167 volumes: - - db:/var/lib/continuwuity - #- ./continuwuity.toml:/etc/continuwuity.toml + - db:/var/lib/conduwuit + #- ./conduwuit.toml:/etc/conduwuit.toml environment: - CONTINUWUITY_SERVER_NAME: your.server.name # EDIT THIS - CONTINUWUITY_DATABASE_PATH: /var/lib/continuwuity - CONTINUWUITY_PORT: 6167 - CONTINUWUITY_MAX_REQUEST_SIZE: 20000000 # in bytes, ~20 MB - CONTINUWUITY_ALLOW_REGISTRATION: 'true' - CONTINUWUITY_REGISTRATION_TOKEN: 'YOUR_TOKEN' # A registration token is required when registration is allowed. - #CONTINUWUITY_YES_I_AM_VERY_VERY_SURE_I_WANT_AN_OPEN_REGISTRATION_SERVER_PRONE_TO_ABUSE: 'true' - CONTINUWUITY_ALLOW_FEDERATION: 'true' - CONTINUWUITY_ALLOW_CHECK_FOR_UPDATES: 'true' - CONTINUWUITY_TRUSTED_SERVERS: '["matrix.org"]' - #CONTINUWUITY_LOG: warn,state_res=warn - CONTINUWUITY_ADDRESS: 0.0.0.0 - #CONTINUWUITY_CONFIG: '/etc/continuwuity.toml' # Uncomment if you mapped config toml above + CONDUWUIT_SERVER_NAME: your.server.name # EDIT THIS + CONDUWUIT_DATABASE_PATH: /var/lib/conduwuit + CONDUWUIT_PORT: 6167 + CONDUWUIT_MAX_REQUEST_SIZE: 20000000 # in bytes, ~20 MB + CONDUWUIT_ALLOW_REGISTRATION: 'true' + CONDUWUIT_REGISTRATION_TOKEN: 'YOUR_TOKEN' # A registration token is required when registration is allowed. + #CONDUWUIT_YES_I_AM_VERY_VERY_SURE_I_WANT_AN_OPEN_REGISTRATION_SERVER_PRONE_TO_ABUSE: 'true' + CONDUWUIT_ALLOW_FEDERATION: 'true' + CONDUWUIT_ALLOW_CHECK_FOR_UPDATES: 'true' + CONDUWUIT_TRUSTED_SERVERS: '["matrix.org"]' + #CONDUWUIT_LOG: warn,state_res=warn + CONDUWUIT_ADDRESS: 0.0.0.0 + #CONDUWUIT_CONFIG: '/etc/conduwuit.toml' # Uncomment if you mapped config toml above # ### Uncomment if you want to use your own Element-Web App. ### Note: You need to provide a config.json for Element and you also need a second diff --git a/docs/deploying/docker.md b/docs/deploying/docker.md index 051ed89b..08a0dc4f 100644 --- a/docs/deploying/docker.md +++ b/docs/deploying/docker.md @@ -30,16 +30,16 @@ When you have the image you can simply run it with ```bash docker run -d -p 8448:6167 \ - -v db:/var/lib/continuwuity/ \ - -e CONTINUWUITY_SERVER_NAME="your.server.name" \ - -e CONTINUWUITY_ALLOW_REGISTRATION=false \ - --name continuwuity $LINK + -v db:/var/lib/conduwuit/ \ + -e CONDUWUIT_SERVER_NAME="your.server.name" \ + -e CONDUWUIT_ALLOW_REGISTRATION=false \ + --name conduwuit $LINK ``` or you can use [docker compose](#docker-compose). The `-d` flag lets the container run in detached mode. You may supply an -optional `continuwuity.toml` config file, the example config can be found +optional `conduwuit.toml` config file, the example config can be found [here](../configuration/examples.md). You can pass in different env vars to change config values on the fly. You can even configure Continuwuity completely by using env vars. For an overview of possible values, please take a look at the diff --git a/docs/deploying/generic.md b/docs/deploying/generic.md index 9128f346..46b9b439 100644 --- a/docs/deploying/generic.md +++ b/docs/deploying/generic.md @@ -115,7 +115,7 @@ ReadWritePaths=/path/to/custom/database/path ## Creating the Continuwuity configuration file Now we need to create the Continuwuity's config file in -`/etc/continuwuity/continuwuity.toml`. The example config can be found at +`/etc/conduwuit/conduwuit.toml`. The example config can be found at [conduwuit-example.toml](../configuration/examples.md). **Please take a moment to read the config. You need to change at least the diff --git a/docs/development/hot_reload.md b/docs/development/hot_reload.md index 194ea3bc..ecfb6396 100644 --- a/docs/development/hot_reload.md +++ b/docs/development/hot_reload.md @@ -190,7 +190,7 @@ The initial implementation PR is available [here][1]. - [Workspace-level metadata (cargo-deb)](https://github.com/kornelski/cargo-deb/issues/68) -[1]: https://forgejo.ellis.link/continuwuation/continuwuity/pulls/387 +[1]: https://github.com/girlbossceo/conduwuit/pull/387 [2]: https://wiki.musl-libc.org/functional-differences-from-glibc.html#Unloading-libraries [3]: https://github.com/rust-lang/rust/issues/28794 [4]: https://github.com/rust-lang/rust/issues/28794#issuecomment-368693049 diff --git a/docs/development/testing.md b/docs/development/testing.md index d28bb874..a577698a 100644 --- a/docs/development/testing.md +++ b/docs/development/testing.md @@ -24,9 +24,8 @@ and run the script. If you're on macOS and need to build an image, run `nix build .#linux-complement`. We have a Complement fork as some tests have needed to be fixed. This can be found -at: +at: -[ci-workflows]: -https://forgejo.ellis.link/continuwuation/continuwuity/actions/?workflow=ci.yml&actor=0&status=1 +[ci-workflows]: https://github.com/girlbossceo/conduwuit/actions/workflows/ci.yml?query=event%3Apush+is%3Asuccess+actor%3Agirlbossceo [complement]: https://github.com/matrix-org/complement [direnv]: https://direnv.net/docs/hook.html diff --git a/docs/maintenance.md b/docs/maintenance.md index 16ec5a4e..b85a1971 100644 --- a/docs/maintenance.md +++ b/docs/maintenance.md @@ -71,7 +71,7 @@ related to WAL tracking. The only safe files that can be deleted are the `LOG` files (all caps). These are the real RocksDB telemetry/log files, however Continuwuity has already -configured to only store up to 3 RocksDB `LOG` files due to generally being +configured to only store up to 3 RocksDB `LOG` files due to generall being useless for average users unless troubleshooting something low-level. If you would like to store nearly none at all, see the `rocksdb_max_log_files` config option. diff --git a/docs/security.md b/docs/security.md deleted file mode 100644 index b4474cf5..00000000 --- a/docs/security.md +++ /dev/null @@ -1 +0,0 @@ -{{#include ../SECURITY.md}} diff --git a/nix/pkgs/complement/default.nix b/nix/pkgs/complement/default.nix index 1295cb03..9b010e14 100644 --- a/nix/pkgs/complement/default.nix +++ b/nix/pkgs/complement/default.nix @@ -75,9 +75,9 @@ dockerTools.buildImage { else []; Env = [ - "CONTINUWUITY_TLS__KEY=${./private_key.key}" - "CONTINUWUITY_TLS__CERTS=${./certificate.crt}" - "CONTINUWUITY_CONFIG=${./config.toml}" + "CONDUWUIT_TLS__KEY=${./private_key.key}" + "CONDUWUIT_TLS__CERTS=${./certificate.crt}" + "CONDUWUIT_CONFIG=${./config.toml}" "RUST_BACKTRACE=full" ]; diff --git a/nix/pkgs/main/default.nix b/nix/pkgs/main/default.nix index f2fffec0..9c8038a7 100644 --- a/nix/pkgs/main/default.nix +++ b/nix/pkgs/main/default.nix @@ -130,8 +130,7 @@ buildDepsOnlyEnv = }); buildPackageEnv = { - GIT_COMMIT_HASH = inputs.self.rev or inputs.self.dirtyRev or ""; - GIT_COMMIT_HASH_SHORT = inputs.self.shortRev or inputs.self.dirtyShortRev or ""; + CONDUWUIT_VERSION_EXTRA = inputs.self.shortRev or inputs.self.dirtyShortRev or ""; } // buildDepsOnlyEnv // { # Only needed in static stdenv because these are transitive dependencies of rocksdb CARGO_BUILD_RUSTFLAGS = buildDepsOnlyEnv.CARGO_BUILD_RUSTFLAGS diff --git a/nix/pkgs/oci-image/default.nix b/nix/pkgs/oci-image/default.nix index 953407ef..1650053d 100644 --- a/nix/pkgs/oci-image/default.nix +++ b/nix/pkgs/oci-image/default.nix @@ -33,13 +33,13 @@ dockerTools.buildLayeredImage { "; "org.opencontainers.image.created" ="@${toString inputs.self.lastModified}"; "org.opencontainers.image.description" = "a very cool Matrix chat homeserver written in Rust"; - "org.opencontainers.image.documentation" = "https://continuwuity.org/"; + "org.opencontainers.image.documentation" = "https://conduwuit.puppyirl.gay/"; "org.opencontainers.image.licenses" = "Apache-2.0"; "org.opencontainers.image.revision" = inputs.self.rev or inputs.self.dirtyRev or ""; - "org.opencontainers.image.source" = "https://forgejo.ellis.link/continuwuation/continuwuity"; + "org.opencontainers.image.source" = "https://github.com/girlbossceo/conduwuit"; "org.opencontainers.image.title" = main.pname; - "org.opencontainers.image.url" = "https://continuwuity.org/"; - "org.opencontainers.image.vendor" = "continuwuation"; + "org.opencontainers.image.url" = "https://conduwuit.puppyirl.gay/"; + "org.opencontainers.image.vendor" = "girlbossceo"; "org.opencontainers.image.version" = main.version; }; }; diff --git a/src/admin/processor.rs b/src/admin/processor.rs index f7b7140f..8282a846 100644 --- a/src/admin/processor.rs +++ b/src/admin/processor.rs @@ -94,7 +94,7 @@ async fn process_command(services: Arc, input: &CommandInput) -> Proce #[allow(clippy::result_large_err)] fn handle_panic(error: &Error, command: &CommandInput) -> ProcessorResult { let link = - "Please submit a [bug report](https://forgejo.ellis.link/continuwuation/continuwuity/issues/new). 🥺"; + "Please submit a [bug report](https://github.com/girlbossceo/conduwuit/issues/new). 🥺"; let msg = format!("Panic occurred while processing command:\n```\n{error:#?}\n```\n{link}"); let content = RoomMessageEventContent::notice_markdown(msg); error!("Panic while processing command: {error:?}"); diff --git a/src/api/client/capabilities.rs b/src/api/client/capabilities.rs index 7362c4f9..470ff6ab 100644 --- a/src/api/client/capabilities.rs +++ b/src/api/client/capabilities.rs @@ -15,7 +15,7 @@ use crate::Ruma; /// # `GET /_matrix/client/v3/capabilities` /// -/// Get information on the supported feature set and other relevant capabilities +/// Get information on the supported feature set and other relevent capabilities /// of this server. pub(crate) async fn get_capabilities_route( State(services): State, diff --git a/src/api/client/membership.rs b/src/api/client/membership.rs index e587d806..2424fd3b 100644 --- a/src/api/client/membership.rs +++ b/src/api/client/membership.rs @@ -1855,10 +1855,7 @@ pub async fn leave_room( // Ask a remote server if we don't have this room and are not knocking on it if dont_have_room.and(not_knocked).await { - if let Err(e) = remote_leave_room(services, user_id, room_id, reason.clone()) - .boxed() - .await - { + if let Err(e) = remote_leave_room(services, user_id, room_id, reason.clone()).boxed().await { warn!(%user_id, "Failed to leave room {room_id} remotely: {e}"); // Don't tell the client about this error } @@ -2162,109 +2159,6 @@ async fn knock_room_by_id_helper( } } - // For knock_restricted rooms, check if the user meets the restricted conditions - // If they do, attempt to join instead of knock - // This is not mentioned in the spec, but should be allowable (we're allowed to - // auto-join invites to knocked rooms) - let join_rule = services.rooms.state_accessor.get_join_rules(room_id).await; - if let JoinRule::KnockRestricted(restricted) = &join_rule { - let restriction_rooms: Vec<_> = restricted - .allow - .iter() - .filter_map(|a| match a { - | AllowRule::RoomMembership(r) => Some(&r.room_id), - | _ => None, - }) - .collect(); - - // Check if the user is in any of the allowed rooms - let mut user_meets_restrictions = false; - for restriction_room_id in &restriction_rooms { - if services - .rooms - .state_cache - .is_joined(sender_user, restriction_room_id) - .await - { - user_meets_restrictions = true; - break; - } - } - - // If the user meets the restrictions, try joining instead - if user_meets_restrictions { - debug_info!( - "{sender_user} meets the restricted criteria in knock_restricted room \ - {room_id}, attempting to join instead of knock" - ); - // For this case, we need to drop the state lock and get a new one in - // join_room_by_id_helper We need to release the lock here and let - // join_room_by_id_helper acquire it again - drop(state_lock); - match join_room_by_id_helper( - services, - sender_user, - room_id, - reason.clone(), - servers, - None, - &None, - ) - .await - { - | Ok(_) => return Ok(knock_room::v3::Response::new(room_id.to_owned())), - | Err(e) => { - debug_warn!( - "Failed to convert knock to join for {sender_user} in {room_id}: {e:?}" - ); - // Get a new state lock for the remaining knock logic - let new_state_lock = services.rooms.state.mutex.lock(room_id).await; - - let server_in_room = services - .rooms - .state_cache - .server_in_room(services.globals.server_name(), room_id) - .await; - - let local_knock = server_in_room - || servers.is_empty() - || (servers.len() == 1 && services.globals.server_is_ours(&servers[0])); - - if local_knock { - knock_room_helper_local( - services, - sender_user, - room_id, - reason, - servers, - new_state_lock, - ) - .boxed() - .await?; - } else { - knock_room_helper_remote( - services, - sender_user, - room_id, - reason, - servers, - new_state_lock, - ) - .boxed() - .await?; - } - - return Ok(knock_room::v3::Response::new(room_id.to_owned())); - }, - } - } - } else if !matches!(join_rule, JoinRule::Knock | JoinRule::KnockRestricted(_)) { - debug_warn!( - "{sender_user} attempted to knock on room {room_id} but its join rule is \ - {join_rule:?}, not knock or knock_restricted" - ); - } - let server_in_room = services .rooms .state_cache @@ -2312,12 +2206,6 @@ async fn knock_room_helper_local( return Err!(Request(Forbidden("This room does not support knocking."))); } - // Verify that this room has a valid knock or knock_restricted join rule - let join_rule = services.rooms.state_accessor.get_join_rules(room_id).await; - if !matches!(join_rule, JoinRule::Knock | JoinRule::KnockRestricted(_)) { - return Err!(Request(Forbidden("This room's join rule does not allow knocking."))); - } - let content = RoomMemberEventContent { displayname: services.users.displayname(sender_user).await.ok(), avatar_url: services.users.avatar_url(sender_user).await.ok(), diff --git a/src/api/client/message.rs b/src/api/client/message.rs index e442850b..08887e18 100644 --- a/src/api/client/message.rs +++ b/src/api/client/message.rs @@ -1,5 +1,3 @@ -use core::panic; - use axum::extract::State; use conduwuit::{ Err, Result, at, @@ -134,6 +132,8 @@ pub(crate) async fn get_message_events_route( .take(limit) .collect() .await; + // let appservice_id = body.appservice_info.map(|appservice| + // appservice.registration.id); let lazy_loading_context = lazy_loading::Context { user_id: sender_user, @@ -143,10 +143,7 @@ pub(crate) async fn get_message_events_route( if let Some(registration) = body.appservice_info.as_ref() { <&DeviceId>::from(registration.registration.id.as_str()) } else { - panic!( - "No device_id provided and no appservice registration found, this \ - should be unreachable" - ); + <&DeviceId>::from("") }, }, room_id, @@ -278,12 +275,10 @@ pub(crate) async fn is_ignored_pdu( let ignored_server = services .moderation - .is_remote_server_ignored(pdu.sender().server_name()); + .is_remote_server_forbidden(pdu.sender().server_name()); if ignored_type - && (ignored_server - || (!services.config.send_messages_from_ignored_users_to_client - && services.users.user_is_ignored(&pdu.sender, user_id).await)) + && (ignored_server || services.users.user_is_ignored(&pdu.sender, user_id).await) { return true; } diff --git a/src/api/client/room/create.rs b/src/api/client/room/create.rs index be3fd23b..f5f61784 100644 --- a/src/api/client/room/create.rs +++ b/src/api/client/room/create.rs @@ -614,31 +614,24 @@ fn custom_room_id_check(services: &Services, custom_room_id: &str) -> Result, _body: Ruma, ) -> Result { - let client_url = match services.config.well_known.client.as_ref() { + let client_url = match services.server.config.well_known.client.as_ref() { | Some(url) => url.to_string(), | None => return Err(Error::BadRequest(ErrorKind::NotFound, "Not found.")), }; @@ -34,63 +33,44 @@ pub(crate) async fn well_known_client( /// # `GET /.well-known/matrix/support` /// /// Server support contact and support page of a homeserver's domain. -/// Implements MSC1929 for server discovery. -/// If no configuration is set, uses admin users as contacts. pub(crate) async fn well_known_support( State(services): State, _body: Ruma, ) -> Result { let support_page = services + .server .config .well_known .support_page .as_ref() .map(ToString::to_string); - let email_address = services.config.well_known.support_email.clone(); - let matrix_id = services.config.well_known.support_mxid.clone(); + let role = services.server.config.well_known.support_role.clone(); - // TODO: support defining multiple contacts in the config + // support page or role must be either defined for this to be valid + if support_page.is_none() && role.is_none() { + return Err(Error::BadRequest(ErrorKind::NotFound, "Not found.")); + } + + let email_address = services.server.config.well_known.support_email.clone(); + let matrix_id = services.server.config.well_known.support_mxid.clone(); + + // if a role is specified, an email address or matrix id is required + if role.is_some() && (email_address.is_none() && matrix_id.is_none()) { + return Err(Error::BadRequest(ErrorKind::NotFound, "Not found.")); + } + + // TOOD: support defining multiple contacts in the config let mut contacts: Vec = vec![]; - let role_value = services - .config - .well_known - .support_role - .clone() - .unwrap_or_else(|| "m.role.admin".to_owned().into()); + if let Some(role) = role { + let contact = Contact { role, email_address, matrix_id }; - // Add configured contact if at least one contact method is specified - if email_address.is_some() || matrix_id.is_some() { - contacts.push(Contact { - role: role_value.clone(), - email_address: email_address.clone(), - matrix_id: matrix_id.clone(), - }); - } - - // Try to add admin users as contacts if no contacts are configured - if contacts.is_empty() { - if let Ok(admin_room) = services.admin.get_admin_room().await { - let admin_users = services.rooms.state_cache.room_members(&admin_room); - let mut stream = admin_users; - - while let Some(user_id) = stream.next().await { - // Skip server user - if *user_id == services.globals.server_user { - break; - } - contacts.push(Contact { - role: role_value.clone(), - email_address: None, - matrix_id: Some(user_id.to_owned()), - }); - } - } + contacts.push(contact); } + // support page or role+contacts must be either defined for this to be valid if contacts.is_empty() && support_page.is_none() { - // No admin room, no configured contacts, and no support page return Err(Error::BadRequest(ErrorKind::NotFound, "Not found.")); } @@ -104,9 +84,9 @@ pub(crate) async fn well_known_support( pub(crate) async fn syncv3_client_server_json( State(services): State, ) -> Result { - let server_url = match services.config.well_known.client.as_ref() { + let server_url = match services.server.config.well_known.client.as_ref() { | Some(url) => url.to_string(), - | None => match services.config.well_known.server.as_ref() { + | None => match services.server.config.well_known.server.as_ref() { | Some(url) => url.to_string(), | None => return Err(Error::BadRequest(ErrorKind::NotFound, "Not found.")), }, diff --git a/src/api/router.rs b/src/api/router.rs index 5416e9e9..3fbef275 100644 --- a/src/api/router.rs +++ b/src/api/router.rs @@ -3,6 +3,7 @@ mod auth; mod handler; mod request; mod response; +pub mod state; use std::str::FromStr; @@ -12,11 +13,10 @@ use axum::{ routing::{any, get, post}, }; use conduwuit::{Server, err}; -pub(super) use conduwuit_service::state::State; use http::{Uri, uri}; use self::handler::RouterExt; -pub(super) use self::{args::Args as Ruma, response::RumaResponse}; +pub(super) use self::{args::Args as Ruma, response::RumaResponse, state::State}; use crate::{client, server}; pub fn build(router: Router, server: &Server) -> Router { diff --git a/src/service/state.rs b/src/api/router/state.rs similarity index 98% rename from src/service/state.rs rename to src/api/router/state.rs index c0884a5c..57eb94ca 100644 --- a/src/service/state.rs +++ b/src/api/router/state.rs @@ -1,6 +1,6 @@ use std::{ops::Deref, sync::Arc}; -use crate::Services; +use conduwuit_service::Services; #[derive(Clone, Copy)] pub struct State { diff --git a/src/api/server/invite.rs b/src/api/server/invite.rs index f53e1a15..d6f925f1 100644 --- a/src/api/server/invite.rs +++ b/src/api/server/invite.rs @@ -4,13 +4,8 @@ use base64::{Engine as _, engine::general_purpose}; use conduwuit::{ Err, Error, PduEvent, Result, err, pdu::gen_event_id, utils, utils::hash::sha256, warn, }; -use ruma::{ - CanonicalJsonValue, OwnedUserId, UserId, - api::{client::error::ErrorKind, federation::membership::create_invite}, - events::room::member::{MembershipState, RoomMemberEventContent}, - serde::JsonObject, -}; - +use ruma::{CanonicalJsonValue, OwnedUserId, UserId, api::{client::error::ErrorKind, federation::membership::create_invite}, events::room::member::{MembershipState, RoomMemberEventContent}, serde::JsonObject, RoomId, OwnedRoomId}; +use ruma::api::OutgoingRequest; use crate::Ruma; /// # `PUT /_matrix/federation/v2/invite/{roomId}/{eventId}` @@ -113,6 +108,22 @@ pub(crate) async fn create_invite_route( invite_state.push(pdu.to_stripped_state_event()); + // Check the invite against any user_may_invite callbacks + // let mut user_may_invite = UserMayInvitePayload { + // inviter: sender.to_owned(), + // invitee: invited_user, + // room_id: body.room_id.clone(), + // }; + for appservice in services.appservice.read().await.values() { + if let Some(callbacks) = &appservice.registration.callbacks { + if callbacks.user_may_invite.is_some() { + // let resp = services.sending.send_appservice_request(appservice.registration.clone(), + // &user_may_invite + // ); + } + } + } + // If we are active in the room, the remote server will notify us about the // join/invite through /send. If we are not in the room, we need to manually // record the invited state for client /sync through update_membership(), and diff --git a/src/build_metadata/Cargo.toml b/src/build_metadata/Cargo.toml deleted file mode 100644 index 62c4dc70..00000000 --- a/src/build_metadata/Cargo.toml +++ /dev/null @@ -1,34 +0,0 @@ -[package] -name = "conduwuit_build_metadata" -categories.workspace = true -description.workspace = true -edition.workspace = true -keywords.workspace = true -license.workspace = true -readme.workspace = true -repository.workspace = true -version.workspace = true - - -build = "build.rs" -# [[bin]] -# path = "main.rs" -# name = "conduwuit_build_metadata" - -[lib] -path = "mod.rs" -crate-type = [ - "rlib", - # "dylib", -] - -[features] - - -[dependencies] - -[build-dependencies] -built = { version = "0.8", features = [] } - -[lints] -workspace = true diff --git a/src/build_metadata/build.rs b/src/build_metadata/build.rs deleted file mode 100644 index bfdf20b1..00000000 --- a/src/build_metadata/build.rs +++ /dev/null @@ -1,93 +0,0 @@ -use std::process::Command; - -fn run_git_command(args: &[&str]) -> Option { - Command::new("git") - .args(args) - .output() - .ok() - .filter(|output| output.status.success()) - .and_then(|output| String::from_utf8(output.stdout).ok()) - .map(|s| s.trim().to_owned()) - .filter(|s| !s.is_empty()) -} -fn get_env(env_var: &str) -> Option { - match std::env::var(env_var) { - | Ok(val) if !val.is_empty() => Some(val), - | _ => None, - } -} -fn main() { - // built gets the default crate from the workspace. Not sure if this is intended - // behavior, but it's what we want. - built::write_built_file().expect("Failed to acquire build-time information"); - - // --- Git Information --- - let mut commit_hash = None; - let mut commit_hash_short = None; - let mut remote_url_web = None; - - // Get full commit hash - if let Some(hash) = - get_env("GIT_COMMIT_HASH").or_else(|| run_git_command(&["rev-parse", "HEAD"])) - { - println!("cargo:rustc-env=GIT_COMMIT_HASH={hash}"); - commit_hash = Some(hash); - } - - // Get short commit hash - if let Some(short_hash) = get_env("GIT_COMMIT_HASH_SHORT") - .or_else(|| run_git_command(&["rev-parse", "--short", "HEAD"])) - { - println!("cargo:rustc-env=GIT_COMMIT_HASH_SHORT={short_hash}"); - commit_hash_short = Some(short_hash); - } - - // Get remote URL and convert to web URL - if let Some(remote_url_raw) = get_env("GIT_REMOTE_URL") - .or_else(|| run_git_command(&["config", "--get", "remote.origin.url"])) - { - println!("cargo:rustc-env=GIT_REMOTE_URL={remote_url_raw}"); - let web_url = if remote_url_raw.starts_with("https://") { - remote_url_raw.trim_end_matches(".git").to_owned() - } else if remote_url_raw.starts_with("git@") { - remote_url_raw - .trim_end_matches(".git") - .replacen(':', "/", 1) - .replacen("git@", "https://", 1) - } else if remote_url_raw.starts_with("ssh://") { - remote_url_raw - .trim_end_matches(".git") - .replacen("git@", "", 1) - .replacen("ssh:", "https:", 1) - } else { - // Assume it's already a web URL or unknown format - remote_url_raw - }; - println!("cargo:rustc-env=GIT_REMOTE_WEB_URL={web_url}"); - remote_url_web = Some(web_url); - } - - // Construct remote commit URL - if let Some(remote_commit_url) = get_env("GIT_REMOTE_COMMIT_URL") { - println!("cargo:rustc-env=GIT_REMOTE_COMMIT_URL={remote_commit_url}"); - } else if let (Some(base_url), Some(hash)) = - (&remote_url_web, commit_hash.as_ref().or(commit_hash_short.as_ref())) - { - let commit_page = format!("{base_url}/commit/{hash}"); - println!("cargo:rustc-env=GIT_REMOTE_COMMIT_URL={commit_page}"); - } - - // --- Rerun Triggers --- - // TODO: The git rerun triggers seem to always run - // Rerun if the git HEAD changes - println!("cargo:rerun-if-changed=.git/HEAD"); - // Rerun if the ref pointed to by HEAD changes (e.g., new commit on branch) - if let Some(ref_path) = run_git_command(&["symbolic-ref", "--quiet", "HEAD"]) { - println!("cargo:rerun-if-changed=.git/{ref_path}"); - } - - println!("cargo:rerun-if-env-changed=GIT_COMMIT_HASH"); - println!("cargo:rerun-if-env-changed=GIT_COMMIT_HASH_SHORT"); - println!("cargo:rerun-if-env-changed=GIT_REMOTE_URL"); - println!("cargo:rerun-if-env-changed=GIT_REMOTE_COMMIT_URL"); -} diff --git a/src/build_metadata/mod.rs b/src/build_metadata/mod.rs deleted file mode 100644 index 86a8a800..00000000 --- a/src/build_metadata/mod.rs +++ /dev/null @@ -1,29 +0,0 @@ -pub mod built { - include!(concat!(env!("OUT_DIR"), "/built.rs")); -} - -pub static GIT_COMMIT_HASH: Option<&str> = option_env!("GIT_COMMIT_HASH"); - -pub static GIT_COMMIT_HASH_SHORT: Option<&str> = option_env!("GIT_COMMIT_HASH_SHORT"); - -// this would be a lot better if Option::or was const. -pub static VERSION_EXTRA: Option<&str> = - if let v @ Some(_) = option_env!("CONTINUWUITY_VERSION_EXTRA") { - v - } else if let v @ Some(_) = option_env!("CONDUWUIT_VERSION_EXTRA") { - v - } else { - option_env!("CONDUIT_VERSION_EXTRA") - }; - -#[must_use] -pub fn version_tag() -> Option<&'static str> { - VERSION_EXTRA - .filter(|s| !s.is_empty()) - .or(GIT_COMMIT_HASH_SHORT) -} - -pub static GIT_REMOTE_WEB_URL: Option<&str> = option_env!("GIT_REMOTE_WEB_URL"); -pub static GIT_REMOTE_COMMIT_URL: Option<&str> = option_env!("GIT_REMOTE_COMMIT_URL"); - -// TODO: Mark dirty builds within the version string diff --git a/src/core/Cargo.toml b/src/core/Cargo.toml index 0c33c590..f42b049b 100644 --- a/src/core/Cargo.toml +++ b/src/core/Cargo.toml @@ -67,7 +67,6 @@ checked_ops.workspace = true chrono.workspace = true clap.workspace = true conduwuit-macros.workspace = true -conduwuit-build-metadata.workspace = true const-str.workspace = true core_affinity.workspace = true ctor.workspace = true diff --git a/src/core/alloc/je.rs b/src/core/alloc/je.rs index e138233e..2424e99c 100644 --- a/src/core/alloc/je.rs +++ b/src/core/alloc/je.rs @@ -274,10 +274,6 @@ pub fn set_dirty_decay>>(arena: I, decay_ms: isize) -> Res } } -pub fn background_thread_enable(enable: bool) -> Result { - set::(&mallctl!("background_thread"), enable.into()).map(is_nonzero!()) -} - #[inline] #[must_use] pub fn is_affine_arena() -> bool { is_percpu_arena() || is_phycpu_arena() } diff --git a/src/core/config/check.rs b/src/core/config/check.rs index ded9533d..f9d51eeb 100644 --- a/src/core/config/check.rs +++ b/src/core/config/check.rs @@ -118,7 +118,7 @@ pub fn check(config: &Config) -> Result { if cfg!(not(debug_assertions)) && config.server_name == "your.server.name" { return Err!(Config( "server_name", - "You must specify a valid server name for production usage of continuwuity." + "You must specify a valid server name for production usage of conduwuit." )); } @@ -290,7 +290,7 @@ fn warn_deprecated(config: &Config) { if was_deprecated { warn!( - "Read continuwuity config documentation at https://continuwuity.org/configuration.html and check your \ + "Read conduwuit config documentation at https://conduwuit.puppyirl.gay/configuration.html and check your \ configuration if any new configuration parameters should be adjusted" ); } diff --git a/src/core/config/mod.rs b/src/core/config/mod.rs index d4a10345..033be40a 100644 --- a/src/core/config/mod.rs +++ b/src/core/config/mod.rs @@ -27,7 +27,7 @@ use self::proxy::ProxyConfig; pub use self::{check::check, manager::Manager}; use crate::{Result, err, error::Error, utils::sys}; -/// All the config options for continuwuity. +/// All the config options for conduwuit. #[allow(clippy::struct_excessive_bools)] #[allow(rustdoc::broken_intra_doc_links, rustdoc::bare_urls)] #[derive(Clone, Debug, Deserialize)] @@ -35,7 +35,7 @@ use crate::{Result, err, error::Error, utils::sys}; filename = "conduwuit-example.toml", section = "global", undocumented = "# This item is undocumented. Please contribute documentation for it.", - header = r#"### continuwuity Configuration + header = r#"### conduwuit Configuration ### ### THIS FILE IS GENERATED. CHANGES/CONTRIBUTIONS IN THE REPO WILL BE ### OVERWRITTEN! @@ -50,7 +50,7 @@ use crate::{Result, err, error::Error, utils::sys}; ### that say "YOU NEED TO EDIT THIS". ### ### For more information, see: -### https://continuwuity.org/configuration.html +### https://conduwuit.puppyirl.gay/configuration.html "#, ignore = "catchall well_known tls blurhashing allow_invalid_tls_certificates_yes_i_know_what_the_fuck_i_am_doing_with_this_and_i_know_this_is_insecure" )] @@ -59,7 +59,7 @@ pub struct Config { /// suffix for user and room IDs/aliases. /// /// See the docs for reverse proxying and delegation: - /// https://continuwuity.org/deploying/generic.html#setting-up-the-reverse-proxy + /// https://conduwuit.puppyirl.gay/deploying/generic.html#setting-up-the-reverse-proxy /// /// Also see the `[global.well_known]` config section at the very bottom. /// @@ -70,10 +70,10 @@ pub struct Config { /// YOU NEED TO EDIT THIS. THIS CANNOT BE CHANGED AFTER WITHOUT A DATABASE /// WIPE. /// - /// example: "continuwuity.org" + /// example: "conduwuit.woof" pub server_name: OwnedServerName, - /// The default address (IPv4 or IPv6) continuwuity will listen on. + /// The default address (IPv4 or IPv6) conduwuit will listen on. /// /// If you are using Docker or a container NAT networking setup, this must /// be "0.0.0.0". @@ -85,10 +85,10 @@ pub struct Config { #[serde(default = "default_address")] address: ListeningAddr, - /// The port(s) continuwuity will listen on. + /// The port(s) conduwuit will listen on. /// /// For reverse proxying, see: - /// https://continuwuity.org/deploying/generic.html#setting-up-the-reverse-proxy + /// https://conduwuit.puppyirl.gay/deploying/generic.html#setting-up-the-reverse-proxy /// /// If you are using Docker, don't change this, you'll need to map an /// external port to this. @@ -103,17 +103,16 @@ pub struct Config { #[serde(default)] pub tls: TlsConfig, - /// The UNIX socket continuwuity will listen on. + /// The UNIX socket conduwuit will listen on. /// - /// continuwuity cannot listen on both an IP address and a UNIX socket. If + /// conduwuit cannot listen on both an IP address and a UNIX socket. If /// listening on a UNIX socket, you MUST remove/comment the `address` key. /// /// Remember to make sure that your reverse proxy has access to this socket - /// file, either by adding your reverse proxy to the appropriate user group - /// or granting world R/W permissions with `unix_socket_perms` (666 - /// minimum). + /// file, either by adding your reverse proxy to the 'conduwuit' group or + /// granting world R/W permissions with `unix_socket_perms` (666 minimum). /// - /// example: "/run/continuwuity/continuwuity.sock" + /// example: "/run/conduwuit/conduwuit.sock" pub unix_socket_path: Option, /// The default permissions (in octal) to create the UNIX socket with. @@ -122,22 +121,22 @@ pub struct Config { #[serde(default = "default_unix_socket_perms")] pub unix_socket_perms: u32, - /// This is the only directory where continuwuity will save its data, - /// including media. Note: this was previously "/var/lib/matrix-conduit". + /// This is the only directory where conduwuit will save its data, including + /// media. Note: this was previously "/var/lib/matrix-conduit". /// /// YOU NEED TO EDIT THIS. /// - /// example: "/var/lib/continuwuity" + /// example: "/var/lib/conduwuit" pub database_path: PathBuf, - /// continuwuity supports online database backups using RocksDB's Backup - /// engine API. To use this, set a database backup path that continuwuity - /// can write to. + /// conduwuit supports online database backups using RocksDB's Backup engine + /// API. To use this, set a database backup path that conduwuit can write + /// to. /// /// For more information, see: - /// https://continuwuity.org/maintenance.html#backups + /// https://conduwuit.puppyirl.gay/maintenance.html#backups /// - /// example: "/opt/continuwuity-db-backups" + /// example: "/opt/conduwuit-db-backups" pub database_backup_path: Option, /// The amount of online RocksDB database backups to keep/retain, if using @@ -161,16 +160,14 @@ pub struct Config { #[serde(default = "default_new_user_displayname_suffix")] pub new_user_displayname_suffix: String, - /// If enabled, continuwuity will send a simple GET request periodically to + /// If enabled, conduwuit will send a simple GET request periodically to /// `https://continuwuity.org/.well-known/continuwuity/announcements` for any new /// announcements or major updates. This is not an update check endpoint. - /// - /// default: true #[serde(alias = "allow_check_for_updates", default = "true_fn")] pub allow_announcements_check: bool, - /// Set this to any float value to multiply continuwuity's in-memory LRU - /// caches with such as "auth_chain_cache_capacity". + /// Set this to any float value to multiply conduwuit's in-memory LRU caches + /// with such as "auth_chain_cache_capacity". /// /// May be useful if you have significant memory to spare to increase /// performance. @@ -187,7 +184,7 @@ pub struct Config { )] pub cache_capacity_modifier: f64, - /// Set this to any float value in megabytes for continuwuity to tell the + /// Set this to any float value in megabytes for conduwuit to tell the /// database engine that this much memory is available for database read /// caches. /// @@ -203,7 +200,7 @@ pub struct Config { #[serde(default = "default_db_cache_capacity_mb")] pub db_cache_capacity_mb: f64, - /// Set this to any float value in megabytes for continuwuity to tell the + /// Set this to any float value in megabytes for conduwuit to tell the /// database engine that this much memory is available for database write /// caches. /// @@ -320,9 +317,9 @@ pub struct Config { /// Enable using *only* TCP for querying your specified nameservers instead /// of UDP. /// - /// If you are running continuwuity in a container environment, this config + /// If you are running conduwuit in a container environment, this config /// option may need to be enabled. For more details, see: - /// https://continuwuity.org/troubleshooting.html#potential-dns-issues-when-using-docker + /// https://conduwuit.puppyirl.gay/troubleshooting.html#potential-dns-issues-when-using-docker #[serde(default)] pub query_over_tcp_only: bool, @@ -535,9 +532,9 @@ pub struct Config { /// tokens. Multiple tokens can be added if you separate them with /// whitespace /// - /// continuwuity must be able to access the file, and it must not be empty + /// conduwuit must be able to access the file, and it must not be empty /// - /// example: "/etc/continuwuity/.reg_token" + /// example: "/etc/conduwuit/.reg_token" pub registration_token_file: Option, /// Controls whether encrypted rooms and events are allowed. @@ -628,16 +625,16 @@ pub struct Config { pub allow_room_creation: bool, /// Set to false to disable users from joining or creating room versions - /// that aren't officially supported by continuwuity. + /// that aren't officially supported by conduwuit. /// - /// continuwuity officially supports room versions 6 - 11. + /// conduwuit officially supports room versions 6 - 11. /// - /// continuwuity has slightly experimental (though works fine in practice) + /// conduwuit has slightly experimental (though works fine in practice) /// support for versions 3 - 5. #[serde(default = "true_fn")] pub allow_unstable_room_versions: bool, - /// Default room version continuwuity will create rooms with. + /// Default room version conduwuit will create rooms with. /// /// Per spec, room version 11 is the default. /// @@ -711,7 +708,7 @@ pub struct Config { /// Servers listed here will be used to gather public keys of other servers /// (notary trusted key servers). /// - /// Currently, continuwuity doesn't support inbound batched key requests, so + /// Currently, conduwuit doesn't support inbound batched key requests, so /// this list should only contain other Synapse servers. /// /// example: ["matrix.org", "tchncs.de"] @@ -756,7 +753,7 @@ pub struct Config { #[serde(default = "default_trusted_server_batch_size")] pub trusted_server_batch_size: usize, - /// Max log level for continuwuity. Allows debug, info, warn, or error. + /// Max log level for conduwuit. Allows debug, info, warn, or error. /// /// See also: /// https://docs.rs/tracing-subscriber/latest/tracing_subscriber/filter/struct.EnvFilter.html#directives @@ -781,9 +778,8 @@ pub struct Config { #[serde(default = "default_log_span_events")] pub log_span_events: String, - /// Configures whether CONTINUWUITY_LOG EnvFilter matches values using - /// regular expressions. See the tracing_subscriber documentation on - /// Directives. + /// Configures whether CONDUWUIT_LOG EnvFilter matches values using regular + /// expressions. See the tracing_subscriber documentation on Directives. /// /// default: true #[serde(default = "true_fn")] @@ -865,7 +861,7 @@ pub struct Config { /// This takes priority over "turn_secret" first, and falls back to /// "turn_secret" if invalid or failed to open. /// - /// example: "/etc/continuwuity/.turn_secret" + /// example: "/etc/conduwuit/.turn_secret" pub turn_secret_file: Option, /// TURN TTL, in seconds. @@ -874,12 +870,12 @@ pub struct Config { #[serde(default = "default_turn_ttl")] pub turn_ttl: u64, - /// List/vector of room IDs or room aliases that continuwuity will make - /// newly registered users join. The rooms specified must be rooms that you - /// have joined at least once on the server, and must be public. + /// List/vector of room IDs or room aliases that conduwuit will make newly + /// registered users join. The rooms specified must be rooms that you have + /// joined at least once on the server, and must be public. /// - /// example: ["#continuwuity:continuwuity.org", - /// "!main-1:continuwuity.org"] + /// example: ["#conduwuit:puppygock.gay", + /// "!eoIzvAvVwY23LPDay8:puppygock.gay"] /// /// default: [] #[serde(default = "Vec::new")] @@ -904,10 +900,10 @@ pub struct Config { #[serde(default)] pub auto_deactivate_banned_room_attempts: bool, - /// RocksDB log level. This is not the same as continuwuity's log level. - /// This is the log level for the RocksDB engine/library which show up in - /// your database folder/path as `LOG` files. continuwuity will log RocksDB - /// errors as normal through tracing or panics if severe for safety. + /// RocksDB log level. This is not the same as conduwuit's log level. This + /// is the log level for the RocksDB engine/library which show up in your + /// database folder/path as `LOG` files. conduwuit will log RocksDB errors + /// as normal through tracing or panics if severe for safety. /// /// default: "error" #[serde(default = "default_rocksdb_log_level")] @@ -932,7 +928,7 @@ pub struct Config { /// Set this to true to use RocksDB config options that are tailored to HDDs /// (slower device storage). /// - /// It is worth noting that by default, continuwuity will use RocksDB with + /// It is worth noting that by default, conduwuit will use RocksDB with /// Direct IO enabled. *Generally* speaking this improves performance as it /// bypasses buffered I/O (system page cache). However there is a potential /// chance that Direct IO may cause issues with database operations if your @@ -940,7 +936,7 @@ pub struct Config { /// possibly ZFS filesystem. RocksDB generally deals/corrects these issues /// but it cannot account for all setups. If you experience any weird /// RocksDB issues, try enabling this option as it turns off Direct IO and - /// feel free to report in the continuwuity Matrix room if this option fixes + /// feel free to report in the conduwuit Matrix room if this option fixes /// your DB issues. /// /// For more information, see: @@ -1001,7 +997,7 @@ pub struct Config { /// as they all differ. See their `kDefaultCompressionLevel`. /// /// Note when using the default value we may override it with a setting - /// tailored specifically for continuwuity. + /// tailored specifically conduwuit. /// /// default: 32767 #[serde(default = "default_rocksdb_compression_level")] @@ -1019,7 +1015,7 @@ pub struct Config { /// algorithm. /// /// Note when using the default value we may override it with a setting - /// tailored specifically for continuwuity. + /// tailored specifically conduwuit. /// /// default: 32767 #[serde(default = "default_rocksdb_bottommost_compression_level")] @@ -1061,13 +1057,13 @@ pub struct Config { /// 0 = AbsoluteConsistency /// 1 = TolerateCorruptedTailRecords (default) /// 2 = PointInTime (use me if trying to recover) - /// 3 = SkipAnyCorruptedRecord (you now voided your Continuwuity warranty) + /// 3 = SkipAnyCorruptedRecord (you now voided your Conduwuit warranty) /// /// For more information on these modes, see: /// https://github.com/facebook/rocksdb/wiki/WAL-Recovery-Modes /// /// For more details on recovering a corrupt database, see: - /// https://continuwuity.org/troubleshooting.html#database-corruption + /// https://conduwuit.puppyirl.gay/troubleshooting.html#database-corruption /// /// default: 1 #[serde(default = "default_rocksdb_recovery_mode")] @@ -1111,7 +1107,7 @@ pub struct Config { /// - Disabling repair mode and restarting the server is recommended after /// running the repair. /// - /// See https://continuwuity.org/troubleshooting.html#database-corruption for more details on recovering a corrupt database. + /// See https://conduwuit.puppyirl.gay/troubleshooting.html#database-corruption for more details on recovering a corrupt database. #[serde(default)] pub rocksdb_repair: bool, @@ -1134,9 +1130,9 @@ pub struct Config { pub rocksdb_compaction_ioprio_idle: bool, /// Enables RocksDB compaction. You should never ever have to set this - /// option to false. If you for some reason find yourself needing to use - /// this option as part of troubleshooting or a bug, please reach out to us - /// in the continuwuity Matrix room with information and details. + /// option to false. If you for some reason find yourself needing to use this + /// option as part of troubleshooting or a bug, please reach out to us in + /// the conduwuit Matrix room with information and details. /// /// Disabling compaction will lead to a significantly bloated and /// explosively large database, gradually poor performance, unnecessarily @@ -1164,7 +1160,7 @@ pub struct Config { /// purposes such as recovering/recreating your admin room, or inviting /// yourself back. /// - /// See https://continuwuity.org/troubleshooting.html#lost-access-to-admin-room for other ways to get back into your admin room. + /// See https://conduwuit.puppyirl.gay/troubleshooting.html#lost-access-to-admin-room for other ways to get back into your admin room. /// /// Once this password is unset, all sessions will be logged out for /// security purposes. @@ -1180,8 +1176,8 @@ pub struct Config { /// Allow local (your server only) presence updates/requests. /// - /// Note that presence on continuwuity is very fast unlike Synapse's. If - /// using outgoing presence, this MUST be enabled. + /// Note that presence on conduwuit is very fast unlike Synapse's. If using + /// outgoing presence, this MUST be enabled. #[serde(default = "true_fn")] pub allow_local_presence: bool, @@ -1189,7 +1185,7 @@ pub struct Config { /// /// This option receives presence updates from other servers, but does not /// send any unless `allow_outgoing_presence` is true. Note that presence on - /// continuwuity is very fast unlike Synapse's. + /// conduwuit is very fast unlike Synapse's. #[serde(default = "true_fn")] pub allow_incoming_presence: bool, @@ -1197,8 +1193,8 @@ pub struct Config { /// /// This option sends presence updates to other servers, but does not /// receive any unless `allow_incoming_presence` is true. Note that presence - /// on continuwuity is very fast unlike Synapse's. If using outgoing - /// presence, you MUST enable `allow_local_presence` as well. + /// on conduwuit is very fast unlike Synapse's. If using outgoing presence, + /// you MUST enable `allow_local_presence` as well. #[serde(default = "true_fn")] pub allow_outgoing_presence: bool, @@ -1261,8 +1257,8 @@ pub struct Config { #[serde(default = "default_typing_client_timeout_max_s")] pub typing_client_timeout_max_s: u64, - /// Set this to true for continuwuity to compress HTTP response bodies using - /// zstd. This option does nothing if continuwuity was not built with + /// Set this to true for conduwuit to compress HTTP response bodies using + /// zstd. This option does nothing if conduwuit was not built with /// `zstd_compression` feature. Please be aware that enabling HTTP /// compression may weaken TLS. Most users should not need to enable this. /// See https://breachattack.com/ and https://wikipedia.org/wiki/BREACH @@ -1270,8 +1266,8 @@ pub struct Config { #[serde(default)] pub zstd_compression: bool, - /// Set this to true for continuwuity to compress HTTP response bodies using - /// gzip. This option does nothing if continuwuity was not built with + /// Set this to true for conduwuit to compress HTTP response bodies using + /// gzip. This option does nothing if conduwuit was not built with /// `gzip_compression` feature. Please be aware that enabling HTTP /// compression may weaken TLS. Most users should not need to enable this. /// See https://breachattack.com/ and https://wikipedia.org/wiki/BREACH before @@ -1282,8 +1278,8 @@ pub struct Config { #[serde(default)] pub gzip_compression: bool, - /// Set this to true for continuwuity to compress HTTP response bodies using - /// brotli. This option does nothing if continuwuity was not built with + /// Set this to true for conduwuit to compress HTTP response bodies using + /// brotli. This option does nothing if conduwuit was not built with /// `brotli_compression` feature. Please be aware that enabling HTTP /// compression may weaken TLS. Most users should not need to enable this. /// See https://breachattack.com/ and https://wikipedia.org/wiki/BREACH @@ -1344,7 +1340,7 @@ pub struct Config { /// Otherwise setting this to false reduces filesystem clutter and overhead /// for managing these symlinks in the directory. This is now disabled by /// default. You may still return to upstream Conduit but you have to run - /// continuwuity at least once with this set to true and allow the + /// conduwuit at least once with this set to true and allow the /// media_startup_check to take place before shutting down to return to /// Conduit. #[serde(default)] @@ -1361,13 +1357,25 @@ pub struct Config { #[serde(default)] pub prune_missing_media: bool, + /// Vector list of regex patterns of server names that conduwuit will refuse + /// to download remote media from. + /// + /// example: ["badserver\.tld$", "badphrase", "19dollarfortnitecards"] + /// + /// default: [] + #[serde(default, with = "serde_regex")] + pub prevent_media_downloads_from: RegexSet, + /// List of forbidden server names via regex patterns that we will block /// incoming AND outgoing federation with, and block client room joins / /// remote user invites. /// + /// Additionally, it will hide messages from these servers for all users + /// on this server. + /// /// Note that your messages can still make it to forbidden servers through - /// backfilling. Events we receive from forbidden servers via backfill - /// from servers we *do* federate with will be stored in the database. + /// backfilling. Events we receive from forbidden servers via backfill will + /// be stored in the database, but will not be sent to the client. /// /// This check is applied on the room ID, room alias, sender server name, /// sender user's server name, inbound federation X-Matrix origin, and @@ -1376,7 +1384,7 @@ pub struct Config { /// You can set this to ["*"] to block all servers by default, and then /// use `allowed_remote_server_names` to allow only specific servers. /// - /// example: ["badserver\\.tld$", "badphrase", "19dollarfortnitecards"] + /// example: ["badserver\.tld$", "badphrase", "19dollarfortnitecards"] /// /// default: [] #[serde(default, with = "serde_regex")] @@ -1387,21 +1395,12 @@ pub struct Config { /// /// This option has no effect if `forbidden_remote_server_names` is empty. /// - /// example: ["goodserver\\.tld$", "goodphrase"] + /// example: ["goodserver\.tld$", "goodphrase"] /// /// default: [] #[serde(default, with = "serde_regex")] pub allowed_remote_server_names: RegexSet, - /// Vector list of regex patterns of server names that continuwuity will - /// refuse to download remote media from. - /// - /// example: ["badserver\.tld$", "badphrase", "19dollarfortnitecards"] - /// - /// default: [] - #[serde(default, with = "serde_regex")] - pub prevent_media_downloads_from: RegexSet, - /// List of forbidden server names via regex patterns that we will block all /// outgoing federated room directory requests for. Useful for preventing /// our users from wandering into bad servers or spaces. @@ -1412,33 +1411,8 @@ pub struct Config { #[serde(default, with = "serde_regex")] pub forbidden_remote_room_directory_server_names: RegexSet, - /// Vector list of regex patterns of server names that continuwuity will not - /// send messages to the client from. - /// - /// Note that there is no way for clients to receive messages once a server - /// has become unignored without doing a full sync. This is a protocol - /// limitation with the current sync protocols. This means this is somewhat - /// of a nuclear option. - /// - /// example: ["reallybadserver\.tld$", "reallybadphrase", - /// "69dollarfortnitecards"] - /// - /// default: [] - #[serde(default, with = "serde_regex")] - pub ignore_messages_from_server_names: RegexSet, - - /// Send messages from users that the user has ignored to the client. - /// - /// There is no way for clients to receive messages sent while a user was - /// ignored without doing a full sync. This is a protocol limitation with - /// the current sync protocols. Disabling this option will move - /// responsibility of ignoring messages to the client, which can avoid this - /// limitation. - #[serde(default)] - pub send_messages_from_ignored_users_to_client: bool, - /// Vector list of IPv4 and IPv6 CIDR ranges / subnets *in quotes* that you - /// do not want continuwuity to send outbound requests to. Defaults to + /// do not want conduwuit to send outbound requests to. Defaults to /// RFC1918, unroutable, loopback, multicast, and testnet addresses for /// security. /// @@ -1606,26 +1580,26 @@ pub struct Config { /// Allow admins to enter commands in rooms other than "#admins" (admin /// room) by prefixing your message with "\!admin" or "\\!admin" followed up - /// a normal continuwuity admin command. The reply will be publicly visible - /// to the room, originating from the sender. + /// a normal conduwuit admin command. The reply will be publicly visible to + /// the room, originating from the sender. /// /// example: \\!admin debug ping puppygock.gay #[serde(default = "true_fn")] pub admin_escape_commands: bool, - /// Automatically activate the continuwuity admin room console / CLI on - /// startup. This option can also be enabled with `--console` continuwuity + /// Automatically activate the conduwuit admin room console / CLI on + /// startup. This option can also be enabled with `--console` conduwuit /// argument. #[serde(default)] pub admin_console_automatic: bool, /// List of admin commands to execute on startup. /// - /// This option can also be configured with the `--execute` continuwuity + /// This option can also be configured with the `--execute` conduwuit /// argument and can take standard shell commands and environment variables /// - /// For example: `./continuwuity --execute "server admin-notice continuwuity - /// has started up at $(date)"` + /// For example: `./conduwuit --execute "server admin-notice conduwuit has + /// started up at $(date)"` /// /// example: admin_execute = ["debug ping puppygock.gay", "debug echo hi"]` /// @@ -1635,7 +1609,7 @@ pub struct Config { /// Ignore errors in startup commands. /// - /// If false, continuwuity will error and fail to start if an admin execute + /// If false, conduwuit will error and fail to start if an admin execute /// command (`--execute` / `admin_execute`) fails. #[serde(default)] pub admin_execute_errors_ignore: bool, @@ -1660,16 +1634,17 @@ pub struct Config { /// The default room tag to apply on the admin room. /// /// On some clients like Element, the room tag "m.server_notice" is a - /// special pinned room at the very bottom of your room list. The - /// continuwuity admin room can be pinned here so you always have an - /// easy-to-access shortcut dedicated to your admin room. + /// special pinned room at the very bottom of your room list. The conduwuit + /// admin room can be pinned here so you always have an easy-to-access + /// shortcut dedicated to your admin room. /// /// default: "m.server_notice" #[serde(default = "default_admin_room_tag")] pub admin_room_tag: String, /// Sentry.io crash/panic reporting, performance monitoring/metrics, etc. - /// This is NOT enabled by default. + /// This is NOT enabled by default. conduwuit's default Sentry reporting + /// endpoint domain is `o4506996327251968.ingest.us.sentry.io`. #[serde(default)] pub sentry: bool, @@ -1680,7 +1655,7 @@ pub struct Config { #[serde(default = "default_sentry_endpoint")] pub sentry_endpoint: Option, - /// Report your continuwuity server_name in Sentry.io crash reports and + /// Report your conduwuit server_name in Sentry.io crash reports and /// metrics. #[serde(default)] pub sentry_send_server_name: bool, @@ -1721,7 +1696,7 @@ pub struct Config { /// Enable the tokio-console. This option is only relevant to developers. /// /// For more information, see: - /// https://continuwuity.org/development.html#debugging-with-tokio-console + /// https://conduwuit.puppyirl.gay/development.html#debugging-with-tokio-console #[serde(default)] pub tokio_console: bool, @@ -1897,28 +1872,12 @@ pub struct WellKnownConfig { /// example: "matrix.example.com:443" pub server: Option, - /// URL to a support page for the server, which will be served as part of - /// the MSC1929 server support endpoint at /.well-known/matrix/support. - /// Will be included alongside any contact information pub support_page: Option, - /// Role string for server support contacts, to be served as part of the - /// MSC1929 server support endpoint at /.well-known/matrix/support. - /// - /// default: "m.role.admin" pub support_role: Option, - /// Email address for server support contacts, to be served as part of the - /// MSC1929 server support endpoint. - /// This will be used along with support_mxid if specified. pub support_email: Option, - /// Matrix ID for server support contacts, to be served as part of the - /// MSC1929 server support endpoint. - /// This will be used along with support_email if specified. - /// - /// If no email or mxid is specified, all of the server's admins will be - /// listed. pub support_mxid: Option, } @@ -1979,11 +1938,7 @@ impl Config { where I: Iterator, { - let envs = [ - Env::var("CONDUIT_CONFIG"), - Env::var("CONDUWUIT_CONFIG"), - Env::var("CONTINUWUITY_CONFIG"), - ]; + let envs = [Env::var("CONDUIT_CONFIG"), Env::var("CONDUWUIT_CONFIG")]; let config = envs .into_iter() @@ -1992,8 +1947,7 @@ impl Config { .chain(paths.map(Toml::file)) .fold(Figment::new(), |config, file| config.merge(file.nested())) .merge(Env::prefixed("CONDUIT_").global().split("__")) - .merge(Env::prefixed("CONDUWUIT_").global().split("__")) - .merge(Env::prefixed("CONTINUWUITY_").global().split("__")); + .merge(Env::prefixed("CONDUWUIT_").global().split("__")); Ok(config) } diff --git a/src/core/info/cargo.rs b/src/core/info/cargo.rs index e70bdcd5..28c6590e 100644 --- a/src/core/info/cargo.rs +++ b/src/core/info/cargo.rs @@ -36,7 +36,7 @@ const MAIN_MANIFEST: &'static str = (); /// For *enabled* features see the info::rustc module instead. static FEATURES: OnceLock> = OnceLock::new(); -/// Processed list of dependencies. This is generated from the data captured in +/// Processed list of dependencies. This is generated from the datas captured in /// the MANIFEST. static DEPENDENCIES: OnceLock = OnceLock::new(); diff --git a/src/core/info/version.rs b/src/core/info/version.rs index c22c8ec8..6abb6e13 100644 --- a/src/core/info/version.rs +++ b/src/core/info/version.rs @@ -26,6 +26,13 @@ pub fn user_agent() -> &'static str { USER_AGENT.get_or_init(init_user_agent) } fn init_user_agent() -> String { format!("{}/{}", name(), version()) } fn init_version() -> String { - conduwuit_build_metadata::version_tag() - .map_or(SEMANTIC.to_owned(), |extra| format!("{SEMANTIC} ({extra})")) + option_env!("CONDUWUIT_VERSION_EXTRA") + .or(option_env!("CONDUIT_VERSION_EXTRA")) + .map_or(SEMANTIC.to_owned(), |extra| { + if extra.is_empty() { + SEMANTIC.to_owned() + } else { + format!("{SEMANTIC} ({extra})") + } + }) } diff --git a/src/core/log/reload.rs b/src/core/log/reload.rs index f72fde47..e6a16c9f 100644 --- a/src/core/log/reload.rs +++ b/src/core/log/reload.rs @@ -16,9 +16,9 @@ use crate::{Result, error}; /// pulling in a version of tracing that's incompatible with the rest of our /// deps. /// -/// To work around this, we define an trait without the S parameter that -/// forwards to the reload::Handle::reload method, and then store the handle as -/// a trait object. +/// To work around this, we define an trait without the S paramter that forwards +/// to the reload::Handle::reload method, and then store the handle as a trait +/// object. /// /// [1]: pub trait ReloadHandle { diff --git a/src/core/matrix/event.rs b/src/core/matrix/event.rs index e4c478cd..29153334 100644 --- a/src/core/matrix/event.rs +++ b/src/core/matrix/event.rs @@ -1,10 +1,18 @@ +use std::{ + borrow::Borrow, + fmt::{Debug, Display}, + hash::Hash, +}; + use ruma::{EventId, MilliSecondsSinceUnixEpoch, RoomId, UserId, events::TimelineEventType}; use serde_json::value::RawValue as RawJsonValue; /// Abstraction of a PDU so users can have their own PDU types. pub trait Event { + type Id: Clone + Debug + Display + Eq + Ord + Hash + Send + Borrow; + /// The `EventId` of this event. - fn event_id(&self) -> &EventId; + fn event_id(&self) -> &Self::Id; /// The `RoomId` of this event. fn room_id(&self) -> &RoomId; @@ -26,18 +34,20 @@ pub trait Event { /// The events before this event. // Requires GATs to avoid boxing (and TAIT for making it convenient). - fn prev_events(&self) -> impl DoubleEndedIterator + Send + '_; + fn prev_events(&self) -> impl DoubleEndedIterator + Send + '_; /// All the authenticating events for this event. // Requires GATs to avoid boxing (and TAIT for making it convenient). - fn auth_events(&self) -> impl DoubleEndedIterator + Send + '_; + fn auth_events(&self) -> impl DoubleEndedIterator + Send + '_; /// If this event is a redaction event this is the event it redacts. - fn redacts(&self) -> Option<&EventId>; + fn redacts(&self) -> Option<&Self::Id>; } impl Event for &T { - fn event_id(&self) -> &EventId { (*self).event_id() } + type Id = T::Id; + + fn event_id(&self) -> &Self::Id { (*self).event_id() } fn room_id(&self) -> &RoomId { (*self).room_id() } @@ -51,13 +61,13 @@ impl Event for &T { fn state_key(&self) -> Option<&str> { (*self).state_key() } - fn prev_events(&self) -> impl DoubleEndedIterator + Send + '_ { + fn prev_events(&self) -> impl DoubleEndedIterator + Send + '_ { (*self).prev_events() } - fn auth_events(&self) -> impl DoubleEndedIterator + Send + '_ { + fn auth_events(&self) -> impl DoubleEndedIterator + Send + '_ { (*self).auth_events() } - fn redacts(&self) -> Option<&EventId> { (*self).redacts() } + fn redacts(&self) -> Option<&Self::Id> { (*self).redacts() } } diff --git a/src/core/matrix/pdu.rs b/src/core/matrix/pdu.rs index 188586bd..7e1ecfa8 100644 --- a/src/core/matrix/pdu.rs +++ b/src/core/matrix/pdu.rs @@ -79,7 +79,9 @@ impl Pdu { } impl Event for Pdu { - fn event_id(&self) -> &EventId { &self.event_id } + type Id = OwnedEventId; + + fn event_id(&self) -> &Self::Id { &self.event_id } fn room_id(&self) -> &RoomId { &self.room_id } @@ -95,15 +97,15 @@ impl Event for Pdu { fn state_key(&self) -> Option<&str> { self.state_key.as_deref() } - fn prev_events(&self) -> impl DoubleEndedIterator + Send + '_ { - self.prev_events.iter().map(AsRef::as_ref) + fn prev_events(&self) -> impl DoubleEndedIterator + Send + '_ { + self.prev_events.iter() } - fn auth_events(&self) -> impl DoubleEndedIterator + Send + '_ { - self.auth_events.iter().map(AsRef::as_ref) + fn auth_events(&self) -> impl DoubleEndedIterator + Send + '_ { + self.auth_events.iter() } - fn redacts(&self) -> Option<&EventId> { self.redacts.as_deref() } + fn redacts(&self) -> Option<&Self::Id> { self.redacts.as_ref() } } /// Prevent derived equality which wouldn't limit itself to event_id diff --git a/src/core/matrix/pdu/strip.rs b/src/core/matrix/pdu/strip.rs index a39e7d35..3683caaa 100644 --- a/src/core/matrix/pdu/strip.rs +++ b/src/core/matrix/pdu/strip.rs @@ -1,8 +1,8 @@ use ruma::{ events::{ - AnyMessageLikeEvent, AnyStateEvent, AnyStrippedStateEvent, AnySyncStateEvent, - AnySyncTimelineEvent, AnyTimelineEvent, StateEvent, room::member::RoomMemberEventContent, - space::child::HierarchySpaceChildEvent, + AnyEphemeralRoomEvent, AnyMessageLikeEvent, AnyStateEvent, AnyStrippedStateEvent, + AnySyncStateEvent, AnySyncTimelineEvent, AnyTimelineEvent, StateEvent, + room::member::RoomMemberEventContent, space::child::HierarchySpaceChildEvent, }, serde::Raw, }; @@ -10,6 +10,41 @@ use serde_json::{json, value::Value as JsonValue}; use crate::implement; +/// This only works for events that are also AnyRoomEvents. +#[must_use] +#[implement(super::Pdu)] +pub fn into_any_event(self) -> Raw { + serde_json::from_value(self.into_any_event_value()).expect("Raw::from_value always works") +} + +/// This only works for events that are also AnyRoomEvents. +#[implement(super::Pdu)] +#[must_use] +#[inline] +pub fn into_any_event_value(self) -> JsonValue { + let (redacts, content) = self.copy_redacts(); + let mut json = json!({ + "content": content, + "type": self.kind, + "event_id": self.event_id, + "sender": self.sender, + "origin_server_ts": self.origin_server_ts, + "room_id": self.room_id, + }); + + if let Some(unsigned) = &self.unsigned { + json["unsigned"] = json!(unsigned); + } + if let Some(state_key) = &self.state_key { + json["state_key"] = json!(state_key); + } + if let Some(redacts) = &redacts { + json["redacts"] = json!(redacts); + } + + json +} + #[implement(super::Pdu)] #[must_use] #[inline] @@ -18,8 +53,7 @@ pub fn into_room_event(self) -> Raw { self.to_room_event() } #[implement(super::Pdu)] #[must_use] pub fn to_room_event(&self) -> Raw { - let value = self.to_room_event_value(); - serde_json::from_value(value).expect("Failed to serialize Event value") + serde_json::from_value(self.to_room_event_value()).expect("Raw::from_value always works") } #[implement(super::Pdu)] @@ -57,8 +91,8 @@ pub fn into_message_like_event(self) -> Raw { self.to_messa #[implement(super::Pdu)] #[must_use] pub fn to_message_like_event(&self) -> Raw { - let value = self.to_message_like_event_value(); - serde_json::from_value(value).expect("Failed to serialize Event value") + serde_json::from_value(self.to_message_like_event_value()) + .expect("Raw::from_value always works") } #[implement(super::Pdu)] @@ -96,8 +130,7 @@ pub fn into_sync_room_event(self) -> Raw { self.to_sync_ro #[implement(super::Pdu)] #[must_use] pub fn to_sync_room_event(&self) -> Raw { - let value = self.to_sync_room_event_value(); - serde_json::from_value(value).expect("Failed to serialize Event value") + serde_json::from_value(self.to_sync_room_event_value()).expect("Raw::from_value always works") } #[implement(super::Pdu)] @@ -129,8 +162,7 @@ pub fn to_sync_room_event_value(&self) -> JsonValue { #[implement(super::Pdu)] #[must_use] pub fn into_state_event(self) -> Raw { - let value = self.into_state_event_value(); - serde_json::from_value(value).expect("Failed to serialize Event value") + serde_json::from_value(self.into_state_event_value()).expect("Raw::from_value always works") } #[implement(super::Pdu)] @@ -157,8 +189,8 @@ pub fn into_state_event_value(self) -> JsonValue { #[implement(super::Pdu)] #[must_use] pub fn into_sync_state_event(self) -> Raw { - let value = self.into_sync_state_event_value(); - serde_json::from_value(value).expect("Failed to serialize Event value") + serde_json::from_value(self.into_sync_state_event_value()) + .expect("Raw::from_value always works") } #[implement(super::Pdu)] @@ -191,8 +223,8 @@ pub fn into_stripped_state_event(self) -> Raw { #[implement(super::Pdu)] #[must_use] pub fn to_stripped_state_event(&self) -> Raw { - let value = self.to_stripped_state_event_value(); - serde_json::from_value(value).expect("Failed to serialize Event value") + serde_json::from_value(self.to_stripped_state_event_value()) + .expect("Raw::from_value always works") } #[implement(super::Pdu)] @@ -210,8 +242,8 @@ pub fn to_stripped_state_event_value(&self) -> JsonValue { #[implement(super::Pdu)] #[must_use] pub fn into_stripped_spacechild_state_event(self) -> Raw { - let value = self.into_stripped_spacechild_state_event_value(); - serde_json::from_value(value).expect("Failed to serialize Event value") + serde_json::from_value(self.into_stripped_spacechild_state_event_value()) + .expect("Raw::from_value always works") } #[implement(super::Pdu)] @@ -230,8 +262,7 @@ pub fn into_stripped_spacechild_state_event_value(self) -> JsonValue { #[implement(super::Pdu)] #[must_use] pub fn into_member_event(self) -> Raw> { - let value = self.into_member_event_value(); - serde_json::from_value(value).expect("Failed to serialize Event value") + serde_json::from_value(self.into_member_event_value()).expect("Raw::from_value always works") } #[implement(super::Pdu)] diff --git a/src/core/matrix/state_res/benches.rs b/src/core/matrix/state_res/benches.rs index 12eeab9d..01218b01 100644 --- a/src/core/matrix/state_res/benches.rs +++ b/src/core/matrix/state_res/benches.rs @@ -52,6 +52,7 @@ fn lexico_topo_sort(c: &mut test::Bencher) { #[cfg(conduwuit_bench)] #[cfg_attr(conduwuit_bench, bench)] fn resolution_shallow_auth_chain(c: &mut test::Bencher) { + let parallel_fetches = 32; let mut store = TestStore(hashmap! {}); // build up the DAG @@ -77,6 +78,7 @@ fn resolution_shallow_auth_chain(c: &mut test::Bencher) { &auth_chain_sets, &fetch, &exists, + parallel_fetches, ) .await { @@ -89,6 +91,7 @@ fn resolution_shallow_auth_chain(c: &mut test::Bencher) { #[cfg(conduwuit_bench)] #[cfg_attr(conduwuit_bench, bench)] fn resolve_deeper_event_set(c: &mut test::Bencher) { + let parallel_fetches = 32; let mut inner = INITIAL_EVENTS(); let ban = BAN_STATE_SET(); @@ -150,6 +153,7 @@ fn resolve_deeper_event_set(c: &mut test::Bencher) { &auth_chain_sets, &fetch, &exists, + parallel_fetches, ) .await { @@ -186,11 +190,7 @@ impl TestStore { } /// Returns a Vec of the related auth events to the given `event`. - fn auth_event_ids( - &self, - room_id: &RoomId, - event_ids: Vec, - ) -> Result> { + fn auth_event_ids(&self, room_id: &RoomId, event_ids: Vec) -> Result> { let mut result = HashSet::new(); let mut stack = event_ids; @@ -216,8 +216,8 @@ impl TestStore { fn auth_chain_diff( &self, room_id: &RoomId, - event_ids: Vec>, - ) -> Result> { + event_ids: Vec>, + ) -> Result> { let mut auth_chain_sets = vec![]; for ids in event_ids { // TODO state store `auth_event_ids` returns self in the event ids list @@ -238,7 +238,7 @@ impl TestStore { Ok(auth_chain_sets .into_iter() .flatten() - .filter(|id| !common.contains(id)) + .filter(|id| !common.contains(id.borrow())) .collect()) } else { Ok(vec![]) @@ -565,7 +565,7 @@ impl EventTypeExt for &TimelineEventType { mod event { use ruma::{ - EventId, MilliSecondsSinceUnixEpoch, OwnedEventId, RoomId, UserId, + MilliSecondsSinceUnixEpoch, OwnedEventId, RoomId, UserId, events::{TimelineEventType, pdu::Pdu}, }; use serde::{Deserialize, Serialize}; @@ -574,7 +574,9 @@ mod event { use super::Event; impl Event for PduEvent { - fn event_id(&self) -> &EventId { &self.event_id } + type Id = OwnedEventId; + + fn event_id(&self) -> &Self::Id { &self.event_id } fn room_id(&self) -> &RoomId { match &self.rest { @@ -630,30 +632,28 @@ mod event { } } - fn prev_events(&self) -> Box + Send + '_> { + fn prev_events(&self) -> Box + Send + '_> { match &self.rest { - | Pdu::RoomV1Pdu(ev) => - Box::new(ev.prev_events.iter().map(|(id, _)| id.as_ref())), - | Pdu::RoomV3Pdu(ev) => Box::new(ev.prev_events.iter().map(AsRef::as_ref)), + | Pdu::RoomV1Pdu(ev) => Box::new(ev.prev_events.iter().map(|(id, _)| id)), + | Pdu::RoomV3Pdu(ev) => Box::new(ev.prev_events.iter()), #[cfg(not(feature = "unstable-exhaustive-types"))] | _ => unreachable!("new PDU version"), } } - fn auth_events(&self) -> Box + Send + '_> { + fn auth_events(&self) -> Box + Send + '_> { match &self.rest { - | Pdu::RoomV1Pdu(ev) => - Box::new(ev.auth_events.iter().map(|(id, _)| id.as_ref())), - | Pdu::RoomV3Pdu(ev) => Box::new(ev.auth_events.iter().map(AsRef::as_ref)), + | Pdu::RoomV1Pdu(ev) => Box::new(ev.auth_events.iter().map(|(id, _)| id)), + | Pdu::RoomV3Pdu(ev) => Box::new(ev.auth_events.iter()), #[cfg(not(feature = "unstable-exhaustive-types"))] | _ => unreachable!("new PDU version"), } } - fn redacts(&self) -> Option<&EventId> { + fn redacts(&self) -> Option<&Self::Id> { match &self.rest { - | Pdu::RoomV1Pdu(ev) => ev.redacts.as_deref(), - | Pdu::RoomV3Pdu(ev) => ev.redacts.as_deref(), + | Pdu::RoomV1Pdu(ev) => ev.redacts.as_ref(), + | Pdu::RoomV3Pdu(ev) => ev.redacts.as_ref(), #[cfg(not(feature = "unstable-exhaustive-types"))] | _ => unreachable!("new PDU version"), } diff --git a/src/core/matrix/state_res/event_auth.rs b/src/core/matrix/state_res/event_auth.rs index 759ab5cb..8c9339ec 100644 --- a/src/core/matrix/state_res/event_auth.rs +++ b/src/core/matrix/state_res/event_auth.rs @@ -38,7 +38,7 @@ struct GetMembership { membership: MembershipState, } -#[derive(Deserialize, Debug)] +#[derive(Deserialize)] struct RoomMemberContentFields { membership: Option>, join_authorised_via_users_server: Option>, @@ -133,7 +133,7 @@ pub fn auth_types_for_event( level = "debug", skip_all, fields( - event_id = incoming_event.event_id().as_str(), + event_id = incoming_event.event_id().borrow().as_str() ) )] pub async fn auth_check( @@ -149,9 +149,9 @@ where Incoming: Event + Send + Sync, { debug!( - event_id = format!("{}", incoming_event.event_id()), - event_type = format!("{}", incoming_event.event_type()), - "auth_check beginning" + "auth_check beginning for {} ({})", + incoming_event.event_id(), + incoming_event.event_type() ); // [synapse] check that all the events are in the same room as `incoming_event` @@ -259,7 +259,7 @@ where // 3. If event does not have m.room.create in auth_events reject if !incoming_event .auth_events() - .any(|id| id == room_create_event.event_id()) + .any(|id| id.borrow() == room_create_event.event_id().borrow()) { warn!("no m.room.create event in auth events"); return Ok(false); @@ -383,15 +383,10 @@ where let sender_membership_event_content: RoomMemberContentFields = from_json_str(sender_member_event.content().get())?; - let Some(membership_state) = sender_membership_event_content.membership else { - warn!( - sender_membership_event_content = format!("{sender_membership_event_content:?}"), - event_id = format!("{}", incoming_event.event_id()), - "Sender membership event content missing membership field" - ); - return Err(Error::InvalidPdu("Missing membership field".to_owned())); - }; - let membership_state = membership_state.deserialize()?; + let membership_state = sender_membership_event_content + .membership + .expect("we should test before that this field exists") + .deserialize()?; if !matches!(membership_state, MembershipState::Join) { warn!("sender's membership is not join"); @@ -638,7 +633,7 @@ fn valid_membership_change( warn!(?target_user_membership_event_id, "Banned user can't join"); false } else if (join_rules == JoinRule::Invite - || room_version.allow_knocking && (join_rules == JoinRule::Knock || matches!(join_rules, JoinRule::KnockRestricted(_)))) + || room_version.allow_knocking && join_rules == JoinRule::Knock) // If the join_rule is invite then allow if membership state is invite or join && (target_user_current_membership == MembershipState::Join || target_user_current_membership == MembershipState::Invite) @@ -1021,11 +1016,11 @@ fn check_redaction( // If the domain of the event_id of the event being redacted is the same as the // domain of the event_id of the m.room.redaction, allow - if redaction_event.event_id().server_name() + if redaction_event.event_id().borrow().server_name() == redaction_event .redacts() .as_ref() - .and_then(|&id| id.server_name()) + .and_then(|&id| id.borrow().server_name()) { debug!("redaction event allowed via room version 1 rules"); return Ok(true); diff --git a/src/core/matrix/state_res/mod.rs b/src/core/matrix/state_res/mod.rs index 651f6130..2ab7cb64 100644 --- a/src/core/matrix/state_res/mod.rs +++ b/src/core/matrix/state_res/mod.rs @@ -20,7 +20,7 @@ use std::{ use futures::{Future, FutureExt, Stream, StreamExt, TryFutureExt, TryStreamExt, future}; use ruma::{ - EventId, Int, MilliSecondsSinceUnixEpoch, OwnedEventId, RoomVersionId, + EventId, Int, MilliSecondsSinceUnixEpoch, RoomVersionId, events::{ StateEventType, TimelineEventType, room::member::{MembershipState, RoomMemberEventContent}, @@ -39,7 +39,9 @@ use crate::{ debug, debug_error, matrix::{event::Event, pdu::StateKey}, trace, - utils::stream::{BroadbandExt, IterStream, ReadyExt, TryBroadbandExt, WidebandExt}, + utils::stream::{ + BroadbandExt, IterStream, ReadyExt, TryBroadbandExt, TryReadyExt, WidebandExt, + }, warn, }; @@ -67,6 +69,9 @@ type Result = crate::Result; /// * `event_fetch` - Any event not found in the `event_map` will defer to this /// closure to find the event. /// +/// * `parallel_fetches` - The number of asynchronous fetch requests in-flight +/// for any given operation. +/// /// ## Invariants /// /// The caller of `resolve` must ensure that all the events are from the same @@ -77,19 +82,21 @@ type Result = crate::Result; pub async fn resolve<'a, E, Sets, SetIter, Hasher, Fetch, FetchFut, Exists, ExistsFut>( room_version: &RoomVersionId, state_sets: Sets, - auth_chain_sets: &'a [HashSet], + auth_chain_sets: &'a [HashSet], event_fetch: &Fetch, event_exists: &Exists, -) -> Result> + parallel_fetches: usize, +) -> Result> where - Fetch: Fn(OwnedEventId) -> FetchFut + Sync, + Fetch: Fn(E::Id) -> FetchFut + Sync, FetchFut: Future> + Send, - Exists: Fn(OwnedEventId) -> ExistsFut + Sync, + Exists: Fn(E::Id) -> ExistsFut + Sync, ExistsFut: Future + Send, Sets: IntoIterator + Send, - SetIter: Iterator> + Clone + Send, + SetIter: Iterator> + Clone + Send, Hasher: BuildHasher + Send + Sync, E: Event + Clone + Send + Sync, + E::Id: Borrow + Send + Sync, for<'b> &'b E: Send, { debug!("State resolution starting"); @@ -140,8 +147,13 @@ where // Sort the control events based on power_level/clock/event_id and // outgoing/incoming edges - let sorted_control_levels = - reverse_topological_power_sort(control_events, &all_conflicted, &event_fetch).await?; + let sorted_control_levels = reverse_topological_power_sort( + control_events, + &all_conflicted, + &event_fetch, + parallel_fetches, + ) + .await?; debug!(count = sorted_control_levels.len(), "power events"); trace!(list = ?sorted_control_levels, "sorted power events"); @@ -150,7 +162,7 @@ where // Sequentially auth check each control event. let resolved_control = iterative_auth_check( &room_version, - sorted_control_levels.iter().stream().map(AsRef::as_ref), + sorted_control_levels.iter().stream(), clean.clone(), &event_fetch, ) @@ -167,7 +179,7 @@ where // that failed auth let events_to_resolve: Vec<_> = all_conflicted .iter() - .filter(|&id| !deduped_power_ev.contains(id)) + .filter(|&id| !deduped_power_ev.contains(id.borrow())) .cloned() .collect(); @@ -187,7 +199,7 @@ where let mut resolved_state = iterative_auth_check( &room_version, - sorted_left_events.iter().stream().map(AsRef::as_ref), + sorted_left_events.iter().stream(), resolved_control, // The control events are added to the final resolved state &event_fetch, ) @@ -280,14 +292,16 @@ where /// earlier (further back in time) origin server timestamp. #[tracing::instrument(level = "debug", skip_all)] async fn reverse_topological_power_sort( - events_to_sort: Vec, - auth_diff: &HashSet, + events_to_sort: Vec, + auth_diff: &HashSet, fetch_event: &F, -) -> Result> + parallel_fetches: usize, +) -> Result> where - F: Fn(OwnedEventId) -> Fut + Sync, + F: Fn(E::Id) -> Fut + Sync, Fut: Future> + Send, E: Event + Send + Sync, + E::Id: Borrow + Send + Sync, { debug!("reverse topological sort of power events"); @@ -297,36 +311,35 @@ where } // This is used in the `key_fn` passed to the lexico_topo_sort fn - let event_to_pl: HashMap<_, _> = graph + let event_to_pl = graph .keys() - .cloned() .stream() - .broad_filter_map(async |event_id| { - let pl = get_power_level_for_sender(&event_id, fetch_event) - .await - .ok()?; - Some((event_id, pl)) + .map(|event_id| { + get_power_level_for_sender(event_id.clone(), fetch_event) + .map(move |res| res.map(|pl| (event_id, pl))) }) - .inspect(|(event_id, pl)| { + .buffer_unordered(parallel_fetches) + .ready_try_fold(HashMap::new(), |mut event_to_pl, (event_id, pl)| { debug!( - event_id = event_id.as_str(), - power_level = i64::from(*pl), + event_id = event_id.borrow().as_str(), + power_level = i64::from(pl), "found the power level of an event's sender", ); + + event_to_pl.insert(event_id.clone(), pl); + Ok(event_to_pl) }) - .collect() .boxed() - .await; + .await?; - let fetcher = async |event_id: OwnedEventId| { + let event_to_pl = &event_to_pl; + let fetcher = |event_id: E::Id| async move { let pl = *event_to_pl - .get(&event_id) + .get(event_id.borrow()) .ok_or_else(|| Error::NotFound(String::new()))?; - let ev = fetch_event(event_id) .await .ok_or_else(|| Error::NotFound(String::new()))?; - Ok((pl, ev.origin_server_ts())) }; @@ -463,17 +476,18 @@ where /// the eventId at the eventId's generation (we walk backwards to `EventId`s /// most recent previous power level event). async fn get_power_level_for_sender( - event_id: &EventId, + event_id: E::Id, fetch_event: &F, ) -> serde_json::Result where - F: Fn(OwnedEventId) -> Fut + Sync, + F: Fn(E::Id) -> Fut + Sync, Fut: Future> + Send, E: Event + Send, + E::Id: Borrow + Send, { debug!("fetch event ({event_id}) senders power level"); - let event = fetch_event(event_id.to_owned()).await; + let event = fetch_event(event_id).await; let auth_events = event.as_ref().map(Event::auth_events); @@ -481,7 +495,7 @@ where .into_iter() .flatten() .stream() - .broadn_filter_map(5, |aid| fetch_event(aid.to_owned())) + .broadn_filter_map(5, |aid| fetch_event(aid.clone())) .ready_find(|aev| is_type_and_key(aev, &TimelineEventType::RoomPowerLevels, "")) .await; @@ -514,13 +528,14 @@ where async fn iterative_auth_check<'a, E, F, Fut, S>( room_version: &RoomVersion, events_to_check: S, - unconflicted_state: StateMap, + unconflicted_state: StateMap, fetch_event: &F, -) -> Result> +) -> Result> where - F: Fn(OwnedEventId) -> Fut + Sync, + F: Fn(E::Id) -> Fut + Sync, Fut: Future> + Send, - S: Stream + Send + 'a, + E::Id: Borrow + Clone + Eq + Ord + Send + Sync + 'a, + S: Stream + Send + 'a, E: Event + Clone + Send + Sync, { debug!("starting iterative auth check"); @@ -528,7 +543,7 @@ where let events_to_check: Vec<_> = events_to_check .map(Result::Ok) .broad_and_then(async |event_id| { - fetch_event(event_id.to_owned()) + fetch_event(event_id.clone()) .await .ok_or_else(|| Error::NotFound(format!("Failed to find {event_id}"))) }) @@ -536,16 +551,16 @@ where .boxed() .await?; - let auth_event_ids: HashSet = events_to_check + let auth_event_ids: HashSet = events_to_check .iter() - .flat_map(|event: &E| event.auth_events().map(ToOwned::to_owned)) + .flat_map(|event: &E| event.auth_events().map(Clone::clone)) .collect(); - let auth_events: HashMap = auth_event_ids + let auth_events: HashMap = auth_event_ids .into_iter() .stream() .broad_filter_map(fetch_event) - .map(|auth_event| (auth_event.event_id().to_owned(), auth_event)) + .map(|auth_event| (auth_event.event_id().clone(), auth_event)) .collect() .boxed() .await; @@ -566,7 +581,7 @@ where let mut auth_state = StateMap::new(); for aid in event.auth_events() { - if let Some(ev) = auth_events.get(aid) { + if let Some(ev) = auth_events.get(aid.borrow()) { //TODO: synapse checks "rejected_reason" which is most likely related to // soft-failing auth_state.insert( @@ -577,7 +592,7 @@ where ev.clone(), ); } else { - warn!(event_id = aid.as_str(), "missing auth event"); + warn!(event_id = aid.borrow().as_str(), "missing auth event"); } } @@ -586,7 +601,7 @@ where .stream() .ready_filter_map(|key| Some((key, resolved_state.get(key)?))) .filter_map(|(key, ev_id)| async move { - if let Some(event) = auth_events.get(ev_id) { + if let Some(event) = auth_events.get(ev_id.borrow()) { Some((key, event.clone())) } else { Some((key, fetch_event(ev_id.clone()).await?)) @@ -618,7 +633,7 @@ where // add event to resolved state map resolved_state.insert( event.event_type().with_state_key(state_key), - event.event_id().to_owned(), + event.event_id().clone(), ); }, | Ok(false) => { @@ -645,14 +660,15 @@ where /// level as a parent) will be marked as depth 1. depth 1 is "older" than depth /// 0. async fn mainline_sort( - to_sort: &[OwnedEventId], - resolved_power_level: Option, + to_sort: &[E::Id], + resolved_power_level: Option, fetch_event: &F, -) -> Result> +) -> Result> where - F: Fn(OwnedEventId) -> Fut + Sync, + F: Fn(E::Id) -> Fut + Sync, Fut: Future> + Send, E: Event + Clone + Send + Sync, + E::Id: Borrow + Clone + Send + Sync, { debug!("mainline sort of events"); @@ -672,7 +688,7 @@ where pl = None; for aid in event.auth_events() { - let ev = fetch_event(aid.to_owned()) + let ev = fetch_event(aid.clone()) .await .ok_or_else(|| Error::NotFound(format!("Failed to find {aid}")))?; @@ -718,25 +734,26 @@ where /// that has an associated mainline depth. async fn get_mainline_depth( mut event: Option, - mainline_map: &HashMap, + mainline_map: &HashMap, fetch_event: &F, ) -> Result where - F: Fn(OwnedEventId) -> Fut + Sync, + F: Fn(E::Id) -> Fut + Sync, Fut: Future> + Send, E: Event + Send + Sync, + E::Id: Borrow + Send + Sync, { while let Some(sort_ev) = event { - debug!(event_id = sort_ev.event_id().as_str(), "mainline"); + debug!(event_id = sort_ev.event_id().borrow().as_str(), "mainline"); let id = sort_ev.event_id(); - if let Some(depth) = mainline_map.get(id) { + if let Some(depth) = mainline_map.get(id.borrow()) { return Ok(*depth); } event = None; for aid in sort_ev.auth_events() { - let aev = fetch_event(aid.to_owned()) + let aev = fetch_event(aid.clone()) .await .ok_or_else(|| Error::NotFound(format!("Failed to find {aid}")))?; @@ -751,14 +768,15 @@ where } async fn add_event_and_auth_chain_to_graph( - graph: &mut HashMap>, - event_id: OwnedEventId, - auth_diff: &HashSet, + graph: &mut HashMap>, + event_id: E::Id, + auth_diff: &HashSet, fetch_event: &F, ) where - F: Fn(OwnedEventId) -> Fut + Sync, + F: Fn(E::Id) -> Fut + Sync, Fut: Future> + Send, E: Event + Send + Sync, + E::Id: Borrow + Clone + Send + Sync, { let mut state = vec![event_id]; while let Some(eid) = state.pop() { @@ -768,27 +786,26 @@ async fn add_event_and_auth_chain_to_graph( // Prefer the store to event as the store filters dedups the events for aid in auth_events { - if auth_diff.contains(aid) { - if !graph.contains_key(aid) { + if auth_diff.contains(aid.borrow()) { + if !graph.contains_key(aid.borrow()) { state.push(aid.to_owned()); } - graph - .get_mut(&eid) - .expect("We just inserted this at the start of the while loop") - .insert(aid.to_owned()); + // We just inserted this at the start of the while loop + graph.get_mut(eid.borrow()).unwrap().insert(aid.to_owned()); } } } } -async fn is_power_event_id(event_id: &EventId, fetch: &F) -> bool +async fn is_power_event_id(event_id: &E::Id, fetch: &F) -> bool where - F: Fn(OwnedEventId) -> Fut + Sync, + F: Fn(E::Id) -> Fut + Sync, Fut: Future> + Send, E: Event + Send, + E::Id: Borrow + Send + Sync, { - match fetch(event_id.to_owned()).await.as_ref() { + match fetch(event_id.clone()).await.as_ref() { | Some(state) => is_power_event(state), | _ => false, } @@ -892,13 +909,13 @@ mod tests { let fetcher = |id| ready(events.get(&id).cloned()); let sorted_power_events = - super::reverse_topological_power_sort(power_events, &auth_chain, &fetcher) + super::reverse_topological_power_sort(power_events, &auth_chain, &fetcher, 1) .await .unwrap(); let resolved_power = super::iterative_auth_check( &RoomVersion::V6, - sorted_power_events.iter().map(AsRef::as_ref).stream(), + sorted_power_events.iter().stream(), HashMap::new(), // unconflicted events &fetcher, ) @@ -1283,7 +1300,7 @@ mod tests { let ev_map = store.0.clone(); let fetcher = |id| ready(ev_map.get(&id).cloned()); - let exists = |id: OwnedEventId| ready(ev_map.get(&*id).is_some()); + let exists = |id: ::Id| ready(ev_map.get(&*id).is_some()); let state_sets = [state_at_bob, state_at_charlie]; let auth_chain: Vec<_> = state_sets @@ -1295,13 +1312,19 @@ mod tests { }) .collect(); - let resolved = - match super::resolve(&RoomVersionId::V2, &state_sets, &auth_chain, &fetcher, &exists) - .await - { - | Ok(state) => state, - | Err(e) => panic!("{e}"), - }; + let resolved = match super::resolve( + &RoomVersionId::V2, + &state_sets, + &auth_chain, + &fetcher, + &exists, + 1, + ) + .await + { + | Ok(state) => state, + | Err(e) => panic!("{e}"), + }; assert_eq!(expected, resolved); } @@ -1406,15 +1429,21 @@ mod tests { }) .collect(); - let fetcher = |id: OwnedEventId| ready(ev_map.get(&id).cloned()); - let exists = |id: OwnedEventId| ready(ev_map.get(&id).is_some()); - let resolved = - match super::resolve(&RoomVersionId::V6, &state_sets, &auth_chain, &fetcher, &exists) - .await - { - | Ok(state) => state, - | Err(e) => panic!("{e}"), - }; + let fetcher = |id: ::Id| ready(ev_map.get(&id).cloned()); + let exists = |id: ::Id| ready(ev_map.get(&id).is_some()); + let resolved = match super::resolve( + &RoomVersionId::V6, + &state_sets, + &auth_chain, + &fetcher, + &exists, + 1, + ) + .await + { + | Ok(state) => state, + | Err(e) => panic!("{e}"), + }; debug!( resolved = ?resolved diff --git a/src/core/matrix/state_res/test_utils.rs b/src/core/matrix/state_res/test_utils.rs index c6945f66..a666748a 100644 --- a/src/core/matrix/state_res/test_utils.rs +++ b/src/core/matrix/state_res/test_utils.rs @@ -133,11 +133,17 @@ pub(crate) async fn do_check( .collect(); let event_map = &event_map; - let fetch = |id: OwnedEventId| ready(event_map.get(&id).cloned()); - let exists = |id: OwnedEventId| ready(event_map.get(&id).is_some()); - let resolved = - super::resolve(&RoomVersionId::V6, state_sets, &auth_chain_sets, &fetch, &exists) - .await; + let fetch = |id: ::Id| ready(event_map.get(&id).cloned()); + let exists = |id: ::Id| ready(event_map.get(&id).is_some()); + let resolved = super::resolve( + &RoomVersionId::V6, + state_sets, + &auth_chain_sets, + &fetch, + &exists, + 1, + ) + .await; match resolved { | Ok(state) => state, @@ -241,8 +247,8 @@ impl TestStore { pub(crate) fn auth_event_ids( &self, room_id: &RoomId, - event_ids: Vec, - ) -> Result> { + event_ids: Vec, + ) -> Result> { let mut result = HashSet::new(); let mut stack = event_ids; @@ -578,7 +584,7 @@ pub(crate) fn INITIAL_EDGES() -> Vec { pub(crate) mod event { use ruma::{ - EventId, MilliSecondsSinceUnixEpoch, OwnedEventId, RoomId, UserId, + MilliSecondsSinceUnixEpoch, OwnedEventId, RoomId, UserId, events::{TimelineEventType, pdu::Pdu}, }; use serde::{Deserialize, Serialize}; @@ -587,7 +593,9 @@ pub(crate) mod event { use crate::Event; impl Event for PduEvent { - fn event_id(&self) -> &EventId { &self.event_id } + type Id = OwnedEventId; + + fn event_id(&self) -> &Self::Id { &self.event_id } fn room_id(&self) -> &RoomId { match &self.rest { @@ -644,31 +652,29 @@ pub(crate) mod event { } #[allow(refining_impl_trait)] - fn prev_events(&self) -> Box + Send + '_> { + fn prev_events(&self) -> Box + Send + '_> { match &self.rest { - | Pdu::RoomV1Pdu(ev) => - Box::new(ev.prev_events.iter().map(|(id, _)| id.as_ref())), - | Pdu::RoomV3Pdu(ev) => Box::new(ev.prev_events.iter().map(AsRef::as_ref)), + | Pdu::RoomV1Pdu(ev) => Box::new(ev.prev_events.iter().map(|(id, _)| id)), + | Pdu::RoomV3Pdu(ev) => Box::new(ev.prev_events.iter()), #[allow(unreachable_patterns)] | _ => unreachable!("new PDU version"), } } #[allow(refining_impl_trait)] - fn auth_events(&self) -> Box + Send + '_> { + fn auth_events(&self) -> Box + Send + '_> { match &self.rest { - | Pdu::RoomV1Pdu(ev) => - Box::new(ev.auth_events.iter().map(|(id, _)| id.as_ref())), - | Pdu::RoomV3Pdu(ev) => Box::new(ev.auth_events.iter().map(AsRef::as_ref)), + | Pdu::RoomV1Pdu(ev) => Box::new(ev.auth_events.iter().map(|(id, _)| id)), + | Pdu::RoomV3Pdu(ev) => Box::new(ev.auth_events.iter()), #[allow(unreachable_patterns)] | _ => unreachable!("new PDU version"), } } - fn redacts(&self) -> Option<&EventId> { + fn redacts(&self) -> Option<&Self::Id> { match &self.rest { - | Pdu::RoomV1Pdu(ev) => ev.redacts.as_deref(), - | Pdu::RoomV3Pdu(ev) => ev.redacts.as_deref(), + | Pdu::RoomV1Pdu(ev) => ev.redacts.as_ref(), + | Pdu::RoomV3Pdu(ev) => ev.redacts.as_ref(), #[allow(unreachable_patterns)] | _ => unreachable!("new PDU version"), } diff --git a/src/core/utils/string/between.rs b/src/core/utils/string/between.rs index 8d3b6979..05c137b4 100644 --- a/src/core/utils/string/between.rs +++ b/src/core/utils/string/between.rs @@ -1,12 +1,12 @@ type Delim<'a> = (&'a str, &'a str); -/// Slice a string between a pair of delimiters. +/// Slice a string between a pair of delimeters. pub trait Between<'a> { - /// Extract a string between the delimiters. If the delimiters were not + /// Extract a string between the delimeters. If the delimeters were not /// found None is returned, otherwise the first extraction is returned. fn between(&self, delim: Delim<'_>) -> Option<&'a str>; - /// Extract a string between the delimiters. If the delimiters were not + /// Extract a string between the delimeters. If the delimeters were not /// found the original string is returned; take note of this behavior, /// if an empty slice is desired for this case use the fallible version and /// unwrap to EMPTY. diff --git a/src/database/engine/cf_opts.rs b/src/database/engine/cf_opts.rs index cbbd1012..7ceec722 100644 --- a/src/database/engine/cf_opts.rs +++ b/src/database/engine/cf_opts.rs @@ -193,7 +193,7 @@ fn get_cache(ctx: &Context, desc: &Descriptor) -> Option { return None; } - // Some cache capacities are overridden by server config in a strange but + // Some cache capacities are overriden by server config in a strange but // legacy-compat way let config = &ctx.server.config; let cap = match desc.name { diff --git a/src/main/Cargo.toml b/src/main/Cargo.toml index 0c5e2b6f..e2fed5d5 100644 --- a/src/main/Cargo.toml +++ b/src/main/Cargo.toml @@ -36,7 +36,6 @@ assets = [ [features] default = [ - "blurhashing", "brotli_compression", "element_hacks", "gzip_compression", diff --git a/src/main/clap.rs b/src/main/clap.rs index 9b63af19..707a1c76 100644 --- a/src/main/clap.rs +++ b/src/main/clap.rs @@ -74,30 +74,17 @@ pub(crate) struct Args { /// with the exception of the last bucket, try increasing this value to e.g. /// 50 or 100. Inversely, decrease to 10 etc if the histogram lacks /// resolution. - #[arg( - long, - hide(true), - env = "CONTINUWUITY_RUNTIME_HISTOGRAM_INTERVAL", - env = "CONDUWUIT_RUNTIME_HISTOGRAM_INTERVAL", - default_value = "25" - )] + #[arg(long, hide(true), env = "CONDUWUIT_RUNTIME_HISTOGRAM_INTERVAL", default_value = "25")] pub(crate) worker_histogram_interval: u64, /// Set the histogram bucket count (tokio_unstable). Default is 20. - #[arg( - long, - hide(true), - env = "CONTINUWUITY_RUNTIME_HISTOGRAM_BUCKETS", - env = "CONDUWUIT_RUNTIME_HISTOGRAM_BUCKETS", - default_value = "20" - )] + #[arg(long, hide(true), env = "CONDUWUIT_RUNTIME_HISTOGRAM_BUCKETS", default_value = "20")] pub(crate) worker_histogram_buckets: usize, /// Toggles worker affinity feature. #[arg( long, hide(true), - env = "CONTINUWUITY_RUNTIME_WORKER_AFFINITY", env = "CONDUWUIT_RUNTIME_WORKER_AFFINITY", action = ArgAction::Set, num_args = 0..=1, @@ -112,7 +99,6 @@ pub(crate) struct Args { #[arg( long, hide(true), - env = "CONTINUWUITY_RUNTIME_GC_ON_PARK", env = "CONDUWUIT_RUNTIME_GC_ON_PARK", action = ArgAction::Set, num_args = 0..=1, diff --git a/src/main/main.rs b/src/main/main.rs index 3416bc68..1a9d3fe4 100644 --- a/src/main/main.rs +++ b/src/main/main.rs @@ -73,7 +73,7 @@ async fn async_main(server: &Arc) -> Result<(), Error> { .lock() .await .take() - .expect("services initialized"), + .expect("services initialied"), ) .await { diff --git a/src/main/restart.rs b/src/main/restart.rs index 631c1e21..b9d1dc94 100644 --- a/src/main/restart.rs +++ b/src/main/restart.rs @@ -13,8 +13,8 @@ pub(super) fn restart() -> ! { // // We can (and do) prevent that panic by checking the result of current_exe() // prior to committing to restart, returning an error to the user without any - // unexpected shutdown. In a nutshell that is the excuse for this unsafety. - // Nevertheless, we still want a way to override the restart presentation (i.e. + // unexpected shutdown. In a nutshell that is the execuse for this unsafety. + // Nevertheless, we still want a way to override the restart preventation (i.e. // admin server restart --force). let exe = unsafe { utils::sys::current_exe().expect("program path must be available") }; let envs = env::vars(); diff --git a/src/main/runtime.rs b/src/main/runtime.rs index e9029012..1c58ea81 100644 --- a/src/main/runtime.rs +++ b/src/main/runtime.rs @@ -98,7 +98,12 @@ pub(super) fn shutdown(server: &Arc, runtime: tokio::runtime::Runtime) { Level::INFO }; - wait_shutdown(server, runtime); + debug!( + timeout = ?SHUTDOWN_TIMEOUT, + "Waiting for runtime..." + ); + + runtime.shutdown_timeout(SHUTDOWN_TIMEOUT); let runtime_metrics = server.server.metrics.runtime_interval().unwrap_or_default(); event!(LEVEL, ?runtime_metrics, "Final runtime metrics"); @@ -106,23 +111,13 @@ pub(super) fn shutdown(server: &Arc, runtime: tokio::runtime::Runtime) { #[cfg(not(tokio_unstable))] #[tracing::instrument(name = "stop", level = "info", skip_all)] -pub(super) fn shutdown(server: &Arc, runtime: tokio::runtime::Runtime) { - wait_shutdown(server, runtime); -} - -fn wait_shutdown(_server: &Arc, runtime: tokio::runtime::Runtime) { +pub(super) fn shutdown(_server: &Arc, runtime: tokio::runtime::Runtime) { debug!( timeout = ?SHUTDOWN_TIMEOUT, "Waiting for runtime..." ); runtime.shutdown_timeout(SHUTDOWN_TIMEOUT); - - // Join any jemalloc threads so they don't appear in use at exit. - #[cfg(all(not(target_env = "msvc"), feature = "jemalloc"))] - conduwuit_core::alloc::je::background_thread_enable(false) - .log_debug_err() - .ok(); } #[tracing::instrument( diff --git a/src/router/Cargo.toml b/src/router/Cargo.toml index 9fcb8d6a..e4ddcb9b 100644 --- a/src/router/Cargo.toml +++ b/src/router/Cargo.toml @@ -103,7 +103,6 @@ conduwuit-admin.workspace = true conduwuit-api.workspace = true conduwuit-core.workspace = true conduwuit-service.workspace = true -conduwuit-web.workspace = true const-str.workspace = true futures.workspace = true http.workspace = true diff --git a/src/router/layers.rs b/src/router/layers.rs index 70f3a660..6920555d 100644 --- a/src/router/layers.rs +++ b/src/router/layers.rs @@ -6,7 +6,8 @@ use axum::{ }; use axum_client_ip::SecureClientIpSource; use conduwuit::{Result, Server, debug, error}; -use conduwuit_service::{Services, state::Guard}; +use conduwuit_api::router::state::Guard; +use conduwuit_service::Services; use http::{ HeaderValue, Method, StatusCode, header::{self, HeaderName}, diff --git a/src/router/router.rs b/src/router/router.rs index fdaf9126..0f95b924 100644 --- a/src/router/router.rs +++ b/src/router/router.rs @@ -1,8 +1,9 @@ use std::sync::Arc; -use axum::{Router, response::IntoResponse}; +use axum::{Router, response::IntoResponse, routing::get}; use conduwuit::Error; -use conduwuit_service::{Services, state, state::Guard}; +use conduwuit_api::router::{state, state::Guard}; +use conduwuit_service::Services; use http::{StatusCode, Uri}; use ruma::api::client::error::ErrorKind; @@ -10,7 +11,7 @@ pub(crate) fn build(services: &Arc) -> (Router, Guard) { let router = Router::::new(); let (state, guard) = state::create(services.clone()); let router = conduwuit_api::router::build(router, &services.server) - .merge(conduwuit_web::build()) + .route("/", get(it_works)) .fallback(not_found) .with_state(state); @@ -20,3 +21,5 @@ pub(crate) fn build(services: &Arc) -> (Router, Guard) { async fn not_found(_uri: Uri) -> impl IntoResponse { Error::Request(ErrorKind::Unrecognized, "Not Found".into(), StatusCode::NOT_FOUND) } + +async fn it_works() -> &'static str { "hewwo from conduwuit woof!" } diff --git a/src/service/admin/create.rs b/src/service/admin/create.rs index 157b4d65..cd0fc5a9 100644 --- a/src/service/admin/create.rs +++ b/src/service/admin/create.rs @@ -165,7 +165,7 @@ pub async fn create_admin_room(services: &Services) -> Result { .timeline .build_and_append_pdu( PduBuilder::state(String::new(), &RoomTopicEventContent { - topic: format!("Manage {} | Run commands prefixed with `!admin` | Run `!admin -h` for help | Documentation: https://continuwuity.org/", services.config.server_name), + topic: format!("Manage {} | Run commands prefixed with `!admin` | Run `!admin -h` for help | Documentation: https://conduwuit.puppyirl.gay/", services.config.server_name), }), server_user, &room_id, diff --git a/src/service/admin/execute.rs b/src/service/admin/execute.rs index e0d724bd..174b28ed 100644 --- a/src/service/admin/execute.rs +++ b/src/service/admin/execute.rs @@ -25,7 +25,7 @@ pub(super) async fn console_auto_stop(&self) { /// Execute admin commands after startup #[implement(super::Service)] pub(super) async fn startup_execute(&self) -> Result { - // List of commands to execute + // List of comamnds to execute let commands = &self.services.server.config.admin_execute; // Determine if we're running in smoketest-mode which will change some behaviors @@ -64,7 +64,7 @@ pub(super) async fn startup_execute(&self) -> Result { /// Execute admin commands after signal #[implement(super::Service)] pub(super) async fn signal_execute(&self) -> Result { - // List of commands to execute + // List of comamnds to execute let commands = self.services.server.config.admin_signal_execute.clone(); // When true, errors are ignored and execution continues. diff --git a/src/service/admin/mod.rs b/src/service/admin/mod.rs index 683f5400..b3466711 100644 --- a/src/service/admin/mod.rs +++ b/src/service/admin/mod.rs @@ -166,7 +166,7 @@ impl Service { .map_err(|e| err!("Failed to enqueue admin command: {e:?}")) } - /// Dispatches a command to the processor on the current task and waits for + /// Dispatches a comamnd to the processor on the current task and waits for /// completion. pub async fn command_in_place( &self, diff --git a/src/service/appservice/namespace_regex.rs b/src/service/appservice/namespace_regex.rs index 76b754ae..fe0fd91f 100644 --- a/src/service/appservice/namespace_regex.rs +++ b/src/service/appservice/namespace_regex.rs @@ -26,7 +26,7 @@ impl NamespaceRegex { false } - /// Checks if this namespace has exclusive rights to a namespace + /// Checks if this namespace has exlusive rights to a namespace #[inline] #[must_use] pub fn is_exclusive_match(&self, heystack: &str) -> bool { diff --git a/src/service/media/remote.rs b/src/service/media/remote.rs index f234fa13..a1e874d8 100644 --- a/src/service/media/remote.rs +++ b/src/service/media/remote.rs @@ -338,7 +338,7 @@ fn handle_federation_error( return fallback(); } - // Reached for 5xx errors. This is where we don't fallback given the likelihood + // Reached for 5xx errors. This is where we don't fallback given the likelyhood // the other endpoint will also be a 5xx and we're wasting time. error } @@ -356,7 +356,7 @@ pub async fn fetch_remote_thumbnail_legacy( self.check_legacy_freeze()?; self.check_fetch_authorized(&mxc)?; - let response = self + let reponse = self .services .sending .send_federation_request(mxc.server_name, media::get_content_thumbnail::v3::Request { @@ -373,17 +373,10 @@ pub async fn fetch_remote_thumbnail_legacy( .await?; let dim = Dim::from_ruma(body.width, body.height, body.method.clone())?; - self.upload_thumbnail( - &mxc, - None, - None, - response.content_type.as_deref(), - &dim, - &response.file, - ) - .await?; + self.upload_thumbnail(&mxc, None, None, reponse.content_type.as_deref(), &dim, &reponse.file) + .await?; - Ok(response) + Ok(reponse) } #[implement(super::Service)] diff --git a/src/service/mod.rs b/src/service/mod.rs index 3d7a3aa9..eb15e5ec 100644 --- a/src/service/mod.rs +++ b/src/service/mod.rs @@ -5,7 +5,6 @@ mod manager; mod migrations; mod service; pub mod services; -pub mod state; pub mod account_data; pub mod admin; diff --git a/src/service/moderation.rs b/src/service/moderation.rs index c3e55a1d..d571de88 100644 --- a/src/service/moderation.rs +++ b/src/service/moderation.rs @@ -1,57 +1,38 @@ use std::sync::Arc; -use conduwuit::{Result, implement}; +use conduwuit::{Result, Server, implement}; use ruma::ServerName; -use crate::{Dep, config}; - pub struct Service { services: Services, } struct Services { - // pub server: Arc, - pub config: Dep, + pub server: Arc, } impl crate::Service for Service { fn build(args: crate::Args<'_>) -> Result> { Ok(Arc::new(Self { - services: Services { - // server: args.server.clone(), - config: args.depend::("config"), - }, + services: Services { server: args.server.clone() }, })) } fn name(&self) -> &str { crate::service::make_name(std::module_path!()) } } -#[implement(Service)] -#[must_use] -pub fn is_remote_server_ignored(&self, server_name: &ServerName) -> bool { - // We must never block federating with ourselves - if server_name == self.services.config.server_name { - return false; - } - - self.services - .config - .ignore_messages_from_server_names - .is_match(server_name.host()) -} - #[implement(Service)] #[must_use] pub fn is_remote_server_forbidden(&self, server_name: &ServerName) -> bool { // We must never block federating with ourselves - if server_name == self.services.config.server_name { + if server_name == self.services.server.config.server_name { return false; } // Check if server is explicitly allowed if self .services + .server .config .allowed_remote_server_names .is_match(server_name.host()) @@ -61,6 +42,7 @@ pub fn is_remote_server_forbidden(&self, server_name: &ServerName) -> bool { // Check if server is explicitly forbidden self.services + .server .config .forbidden_remote_server_names .is_match(server_name.host()) @@ -74,6 +56,7 @@ pub fn is_remote_server_room_directory_forbidden(&self, server_name: &ServerName self.is_remote_server_forbidden(server_name) || self .services + .server .config .forbidden_remote_room_directory_server_names .is_match(server_name.host()) @@ -87,6 +70,7 @@ pub fn is_remote_server_media_downloads_forbidden(&self, server_name: &ServerNam self.is_remote_server_forbidden(server_name) || self .services + .server .config .prevent_media_downloads_from .is_match(server_name.host()) diff --git a/src/service/resolver/actual.rs b/src/service/resolver/actual.rs index d23ef95a..0151c4d7 100644 --- a/src/service/resolver/actual.rs +++ b/src/service/resolver/actual.rs @@ -296,7 +296,7 @@ impl super::Service { expire: CachedOverride::default_expire(), overriding: (hostname != untername) .then_some(hostname.into()) - .inspect(|_| debug_info!("{untername:?} overridden by {hostname:?}")), + .inspect(|_| debug_info!("{untername:?} overriden by {hostname:?}")), }); Ok(()) diff --git a/src/service/rooms/event_handler/resolve_state.rs b/src/service/rooms/event_handler/resolve_state.rs index cd747e04..b3a7a71b 100644 --- a/src/service/rooms/event_handler/resolve_state.rs +++ b/src/service/rooms/event_handler/resolve_state.rs @@ -8,7 +8,7 @@ use conduwuit::{ Error, Result, err, implement, state_res::{self, StateMap}, trace, - utils::stream::{IterStream, ReadyExt, TryWidebandExt, WidebandExt}, + utils::stream::{IterStream, ReadyExt, TryWidebandExt, WidebandExt, automatic_width}, }; use futures::{FutureExt, StreamExt, TryFutureExt, TryStreamExt, future::try_join}; use ruma::{OwnedEventId, RoomId, RoomVersionId}; @@ -112,7 +112,14 @@ where { let event_fetch = |event_id| self.event_fetch(event_id); let event_exists = |event_id| self.event_exists(event_id); - state_res::resolve(room_version, state_sets, auth_chain_sets, &event_fetch, &event_exists) - .map_err(|e| err!(error!("State resolution failed: {e:?}"))) - .await + state_res::resolve( + room_version, + state_sets, + auth_chain_sets, + &event_fetch, + &event_exists, + automatic_width(), + ) + .map_err(|e| err!(error!("State resolution failed: {e:?}"))) + .await } diff --git a/src/service/rooms/spaces/mod.rs b/src/service/rooms/spaces/mod.rs index 53d2b742..ea9756ba 100644 --- a/src/service/rooms/spaces/mod.rs +++ b/src/service/rooms/spaces/mod.rs @@ -399,7 +399,7 @@ async fn get_room_summary( Ok(summary) } -/// With the given identifier, checks if a room is accessible +/// With the given identifier, checks if a room is accessable #[implement(Service)] async fn is_accessible_child<'a, I>( &self, diff --git a/src/service/rooms/timeline/mod.rs b/src/service/rooms/timeline/mod.rs index 4b2f3cb2..947e1c38 100644 --- a/src/service/rooms/timeline/mod.rs +++ b/src/service/rooms/timeline/mod.rs @@ -267,15 +267,15 @@ impl Service { /// /// Returns pdu id #[tracing::instrument(level = "debug", skip_all)] - pub async fn append_pdu<'a, Leaves>( + pub async fn append_pdu<'a, Leafs>( &'a self, pdu: &'a PduEvent, mut pdu_json: CanonicalJsonObject, - leaves: Leaves, + leafs: Leafs, state_lock: &'a RoomMutexGuard, ) -> Result where - Leaves: Iterator + Send + 'a, + Leafs: Iterator + Send + 'a, { // Coalesce database writes for the remainder of this scope. let _cork = self.db.db.cork_and_flush(); @@ -344,7 +344,7 @@ impl Service { self.services .state - .set_forward_extremities(&pdu.room_id, leaves, state_lock) + .set_forward_extremities(&pdu.room_id, leafs, state_lock) .await; let insert_lock = self.mutex_insert.lock(&pdu.room_id).await; @@ -951,17 +951,17 @@ impl Service { /// Append the incoming event setting the state snapshot to the state from /// the server that sent the event. #[tracing::instrument(level = "debug", skip_all)] - pub async fn append_incoming_pdu<'a, Leaves>( + pub async fn append_incoming_pdu<'a, Leafs>( &'a self, pdu: &'a PduEvent, pdu_json: CanonicalJsonObject, - new_room_leaves: Leaves, + new_room_leafs: Leafs, state_ids_compressed: Arc, soft_fail: bool, state_lock: &'a RoomMutexGuard, ) -> Result> where - Leaves: Iterator + Send + 'a, + Leafs: Iterator + Send + 'a, { // We append to state before appending the pdu, so we don't have a moment in // time with the pdu without it's state. This is okay because append_pdu can't @@ -978,14 +978,14 @@ impl Service { self.services .state - .set_forward_extremities(&pdu.room_id, new_room_leaves, state_lock) + .set_forward_extremities(&pdu.room_id, new_room_leafs, state_lock) .await; return Ok(None); } let pdu_id = self - .append_pdu(pdu, pdu_json, new_room_leaves, state_lock) + .append_pdu(pdu, pdu_json, new_room_leafs, state_lock) .await?; Ok(Some(pdu_id)) diff --git a/src/service/users/mod.rs b/src/service/users/mod.rs index 701561a8..1eb289fc 100644 --- a/src/service/users/mod.rs +++ b/src/service/users/mod.rs @@ -577,7 +577,7 @@ impl Service { self.db .userid_usersigningkeyid - .raw_put(user_id, user_signing_key_key); + .put(user_id, user_signing_key_key); } if notify { diff --git a/src/web/Cargo.toml b/src/web/Cargo.toml deleted file mode 100644 index 5c2dbebb..00000000 --- a/src/web/Cargo.toml +++ /dev/null @@ -1,35 +0,0 @@ -[package] -name = "conduwuit_web" -categories.workspace = true -description.workspace = true -edition.workspace = true -keywords.workspace = true -license.workspace = true -readme.workspace = true -repository.workspace = true -version.workspace = true - -[lib] -path = "mod.rs" -crate-type = [ - "rlib", -# "dylib", -] - -[features] - - -[dependencies] -conduwuit-build-metadata.workspace = true -conduwuit-service.workspace = true - -askama = "0.14.0" - -axum.workspace = true -futures.workspace = true -tracing.workspace = true -rand.workspace = true -thiserror.workspace = true - -[lints] -workspace = true diff --git a/src/web/css/index.css b/src/web/css/index.css deleted file mode 100644 index 86cb6d8d..00000000 --- a/src/web/css/index.css +++ /dev/null @@ -1,68 +0,0 @@ -:root { - color-scheme: light; - --font-stack: sans-serif; - - --background-color: #fff; - --text-color: #000; - - --bg: oklch(0.76 0.0854 317.27); - --panel-bg: oklch(0.91 0.042 317.27); - - --name-lightness: 0.45; - - @media (prefers-color-scheme: dark) { - color-scheme: dark; - --text-color: #fff; - --bg: oklch(0.15 0.042 317.27); - --panel-bg: oklch(0.24 0.03 317.27); - - --name-lightness: 0.8; - } - - --c1: oklch(0.44 0.177 353.06); - --c2: oklch(0.59 0.158 150.88); - - --normal-font-size: 1rem; - --small-font-size: 0.8rem; -} - -body { - color: var(--text-color); - font-family: var(--font-stack); - margin: 0; - padding: 0; - display: grid; - place-items: center; - min-height: 100vh; -} - -html { - background-color: var(--bg); - background-image: linear-gradient( - 70deg, - oklch(from var(--bg) l + 0.2 c h), - oklch(from var(--bg) l - 0.2 c h) - ); - font-size: 16px; -} - -.panel { - width: min(clamp(24rem, 12rem + 40vw, 48rem), 100vw); - border-radius: 15px; - background-color: var(--panel-bg); - padding-inline: 1.5rem; - padding-block: 1rem; - box-shadow: 0 0.25em 0.375em hsla(0, 0%, 0%, 0.1); -} - -.project-name { - text-decoration: none; - background: linear-gradient( - 130deg, - oklch(from var(--c1) var(--name-lightness) c h), - oklch(from var(--c2) var(--name-lightness) c h) - ); - background-clip: text; - color: transparent; - filter: brightness(1.2); -} diff --git a/src/web/mod.rs b/src/web/mod.rs deleted file mode 100644 index 9c6a5d83..00000000 --- a/src/web/mod.rs +++ /dev/null @@ -1,73 +0,0 @@ -use askama::Template; -use axum::{ - Router, - extract::State, - http::{StatusCode, header}, - response::{Html, IntoResponse, Response}, - routing::get, -}; -use conduwuit_build_metadata::{GIT_REMOTE_COMMIT_URL, GIT_REMOTE_WEB_URL, version_tag}; -use conduwuit_service::state; - -pub fn build() -> Router { - let router = Router::::new(); - router.route("/", get(index_handler)) -} - -async fn index_handler( - State(services): State, -) -> Result { - #[derive(Debug, Template)] - #[template(path = "index.html.j2")] - struct Tmpl<'a> { - nonce: &'a str, - server_name: &'a str, - } - let nonce = rand::random::().to_string(); - - let template = Tmpl { - nonce: &nonce, - server_name: services.config.server_name.as_str(), - }; - Ok(( - [(header::CONTENT_SECURITY_POLICY, format!("default-src 'none' 'nonce-{nonce}';"))], - Html(template.render()?), - )) -} - -#[derive(Debug, thiserror::Error)] -enum WebError { - #[error("Failed to render template: {0}")] - Render(#[from] askama::Error), -} - -impl IntoResponse for WebError { - fn into_response(self) -> Response { - #[derive(Debug, Template)] - #[template(path = "error.html.j2")] - struct Tmpl<'a> { - nonce: &'a str, - err: WebError, - } - - let nonce = rand::random::().to_string(); - - let status = match &self { - | Self::Render(_) => StatusCode::INTERNAL_SERVER_ERROR, - }; - let tmpl = Tmpl { nonce: &nonce, err: self }; - if let Ok(body) = tmpl.render() { - ( - status, - [( - header::CONTENT_SECURITY_POLICY, - format!("default-src 'none' 'nonce-{nonce}';"), - )], - Html(body), - ) - .into_response() - } else { - (status, "Something went wrong").into_response() - } - } -} diff --git a/src/web/templates/_layout.html.j2 b/src/web/templates/_layout.html.j2 deleted file mode 100644 index d298b68c..00000000 --- a/src/web/templates/_layout.html.j2 +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - {% block title %}Continuwuity{% endblock %} - - - - - - -
{%~ block content %}{% endblock ~%}
- {%~ block footer ~%} -
-

Powered by Continuwuity - {%~ if let Some(version_info) = self::version_tag() ~%} - {%~ if let Some(url) = GIT_REMOTE_COMMIT_URL.or(GIT_REMOTE_WEB_URL) ~%} - ({{ version_info }}) - {%~ else ~%} - ({{ version_info }}) - {%~ endif ~%} - {%~ endif ~%}

-
- {%~ endblock ~%} - - - diff --git a/src/web/templates/error.html.j2 b/src/web/templates/error.html.j2 deleted file mode 100644 index e320d0ed..00000000 --- a/src/web/templates/error.html.j2 +++ /dev/null @@ -1,20 +0,0 @@ -{% extends "_layout.html.j2" %} - -{%- block title -%} -Server Error -{%- endblock -%} - -{%- block content -%} -

- {%- match err -%} - {% else -%} 500: Internal Server Error - {%- endmatch -%} -

- -{%- match err -%} - {% when WebError::Render(err) -%} -
{{ err }}
- {% else -%}

An error occurred

-{%- endmatch -%} - -{%- endblock -%} diff --git a/src/web/templates/index.html.j2 b/src/web/templates/index.html.j2 deleted file mode 100644 index 7f11cb1c..00000000 --- a/src/web/templates/index.html.j2 +++ /dev/null @@ -1,16 +0,0 @@ -{% extends "_layout.html.j2" %} -{%- block content -%} -
-
-

Welcome to Continuwuity!

-

Continuwuity is successfully installed and working.

-

To get started, you can:

- -
- -{%- endblock content -%} diff --git a/theme/css/chrome.css b/theme/css/chrome.css index d6cc2b32..52b35c2c 100644 --- a/theme/css/chrome.css +++ b/theme/css/chrome.css @@ -495,7 +495,7 @@ ul#searchresults span.teaser em { .chapter li { display: flex; - color: var(--sidebar-non-existent); + color: var(--sidebar-non-existant); } .chapter li a { display: block; diff --git a/theme/css/variables.css b/theme/css/variables.css index ca9fd271..e7feed98 100644 --- a/theme/css/variables.css +++ b/theme/css/variables.css @@ -20,7 +20,7 @@ --sidebar-bg: #14191f; --sidebar-fg: #c8c9db; - --sidebar-non-existent: #5c6773; + --sidebar-non-existant: #5c6773; --sidebar-active: #ffb454; --sidebar-spacer: #2d334f; @@ -64,7 +64,7 @@ --sidebar-bg: #292c2f; --sidebar-fg: #a1adb8; - --sidebar-non-existent: #505254; + --sidebar-non-existant: #505254; --sidebar-active: #3473ad; --sidebar-spacer: #393939; @@ -108,7 +108,7 @@ --sidebar-bg: #fafafa; --sidebar-fg: #AE518E; - --sidebar-non-existent: #aaaaaa; + --sidebar-non-existant: #aaaaaa; --sidebar-active: #2F7E86; --sidebar-spacer: #f4f4f4; @@ -152,7 +152,7 @@ --sidebar-bg: #282d3f; --sidebar-fg: #fdcbec; - --sidebar-non-existent: #505274; + --sidebar-non-existant: #505274; --sidebar-active: #5BCEFA; --sidebar-spacer: #2d334f; @@ -196,7 +196,7 @@ --sidebar-bg: #3b2e2a; --sidebar-fg: #c8c9db; - --sidebar-non-existent: #505254; + --sidebar-non-existant: #505254; --sidebar-active: #e69f67; --sidebar-spacer: #45373a; @@ -241,7 +241,7 @@ --sidebar-bg: #292c2f; --sidebar-fg: #a1adb8; - --sidebar-non-existent: #505254; + --sidebar-non-existant: #505254; --sidebar-active: #3473ad; --sidebar-spacer: #393939;