Compare commits

..

2 Commits

Author SHA1 Message Date
missytake
18044c2fef fix ruff 2025-10-13 16:12:20 +02:00
missytake
f5dea1d252 feat: allow setting displayname + selfavatar via CLI 2025-10-13 16:12:18 +02:00
583 changed files with 21435 additions and 30212 deletions

View File

@@ -7,8 +7,6 @@ updates:
commit-message: commit-message:
prefix: "chore(cargo)" prefix: "chore(cargo)"
open-pull-requests-limit: 50 open-pull-requests-limit: 50
cooldown:
default-days: 7
# Keep GitHub Actions up to date. # Keep GitHub Actions up to date.
# <https://docs.github.com/en/code-security/dependabot/working-with-dependabot/keeping-your-actions-up-to-date-with-dependabot> # <https://docs.github.com/en/code-security/dependabot/working-with-dependabot/keeping-your-actions-up-to-date-with-dependabot>
@@ -16,5 +14,3 @@ updates:
directory: "/" directory: "/"
schedule: schedule:
interval: "weekly" interval: "weekly"
cooldown:
default-days: 7

View File

@@ -20,18 +20,17 @@ permissions: {}
env: env:
RUSTFLAGS: -Dwarnings RUSTFLAGS: -Dwarnings
RUST_VERSION: 1.95.0 RUST_VERSION: 1.90.0
# Minimum Supported Rust Version # Minimum Supported Rust Version
MSRV: 1.89.0 MSRV: 1.85.0
jobs: jobs:
lint_rust: lint_rust:
name: Lint Rust name: Lint Rust
runs-on: ubuntu-latest runs-on: ubuntu-latest
timeout-minutes: 60
steps: steps:
- uses: actions/checkout@v6 - uses: actions/checkout@v5
with: with:
show-progress: false show-progress: false
persist-credentials: false persist-credentials: false
@@ -40,9 +39,7 @@ jobs:
- run: rustup override set $RUST_VERSION - run: rustup override set $RUST_VERSION
shell: bash shell: bash
- name: Cache rust cargo artifacts - name: Cache rust cargo artifacts
uses: swatinem/rust-cache@c19371144df3bb44fab255c43d04cbc2ab54d1c4 uses: swatinem/rust-cache@v2
with:
save-if: ${{ github.ref == 'refs/heads/main' }}
- name: Run rustfmt - name: Run rustfmt
run: cargo fmt --all -- --check run: cargo fmt --all -- --check
- name: Run clippy - name: Run clippy
@@ -55,24 +52,22 @@ jobs:
cargo_deny: cargo_deny:
name: cargo deny name: cargo deny
runs-on: ubuntu-latest runs-on: ubuntu-latest
timeout-minutes: 60
steps: steps:
- uses: actions/checkout@v6 - uses: actions/checkout@v5
with: with:
show-progress: false show-progress: false
persist-credentials: false persist-credentials: false
- uses: EmbarkStudios/cargo-deny-action@91bf2b620e09e18d6eb78b92e7861937469acedb - uses: EmbarkStudios/cargo-deny-action@v2
with: with:
arguments: --workspace --all-features --locked arguments: --all-features --workspace
command: check command: check
command-arguments: "-Dwarnings" command-arguments: "-Dwarnings"
provider_database: provider_database:
name: Check provider database name: Check provider database
runs-on: ubuntu-latest runs-on: ubuntu-latest
timeout-minutes: 60
steps: steps:
- uses: actions/checkout@v6 - uses: actions/checkout@v5
with: with:
show-progress: false show-progress: false
persist-credentials: false persist-credentials: false
@@ -84,18 +79,15 @@ jobs:
docs: docs:
name: Rust doc comments name: Rust doc comments
runs-on: ubuntu-latest runs-on: ubuntu-latest
timeout-minutes: 60
env: env:
RUSTDOCFLAGS: -Dwarnings RUSTDOCFLAGS: -Dwarnings
steps: steps:
- uses: actions/checkout@v6 - uses: actions/checkout@v5
with: with:
show-progress: false show-progress: false
persist-credentials: false persist-credentials: false
- name: Cache rust cargo artifacts - name: Cache rust cargo artifacts
uses: swatinem/rust-cache@c19371144df3bb44fab255c43d04cbc2ab54d1c4 uses: swatinem/rust-cache@v2
with:
save-if: ${{ github.ref == 'refs/heads/main' }}
- name: Rustdoc - name: Rustdoc
run: cargo doc --document-private-items --no-deps run: cargo doc --document-private-items --no-deps
@@ -115,7 +107,6 @@ jobs:
- os: ubuntu-latest - os: ubuntu-latest
rust: minimum rust: minimum
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
timeout-minutes: 60
steps: steps:
- run: - run:
echo "RUSTUP_TOOLCHAIN=$MSRV" >> $GITHUB_ENV echo "RUSTUP_TOOLCHAIN=$MSRV" >> $GITHUB_ENV
@@ -126,7 +117,7 @@ jobs:
shell: bash shell: bash
if: matrix.rust == 'latest' if: matrix.rust == 'latest'
- uses: actions/checkout@v6 - uses: actions/checkout@v5
with: with:
show-progress: false show-progress: false
persist-credentials: false persist-credentials: false
@@ -138,12 +129,10 @@ jobs:
shell: bash shell: bash
- name: Cache rust cargo artifacts - name: Cache rust cargo artifacts
uses: swatinem/rust-cache@c19371144df3bb44fab255c43d04cbc2ab54d1c4 uses: swatinem/rust-cache@v2
with:
save-if: ${{ github.ref == 'refs/heads/main' }}
- name: Install nextest - name: Install nextest
uses: taiki-e/install-action@5f57d6cb7cd20b14a8a27f522884c4bc8a187458 uses: taiki-e/install-action@v2
with: with:
tool: nextest tool: nextest
@@ -166,23 +155,20 @@ jobs:
matrix: matrix:
os: [ubuntu-latest, macos-latest] os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
timeout-minutes: 60
steps: steps:
- uses: actions/checkout@v6 - uses: actions/checkout@v5
with: with:
show-progress: false show-progress: false
persist-credentials: false persist-credentials: false
- name: Cache rust cargo artifacts - name: Cache rust cargo artifacts
uses: swatinem/rust-cache@c19371144df3bb44fab255c43d04cbc2ab54d1c4 uses: swatinem/rust-cache@v2
with:
save-if: ${{ github.ref == 'refs/heads/main' }}
- name: Build C library - name: Build C library
run: cargo build -p deltachat_ffi run: cargo build -p deltachat_ffi
- name: Upload C library - name: Upload C library
uses: actions/upload-artifact@v7 uses: actions/upload-artifact@v4
with: with:
name: ${{ matrix.os }}-libdeltachat.a name: ${{ matrix.os }}-libdeltachat.a
path: target/debug/libdeltachat.a path: target/debug/libdeltachat.a
@@ -194,23 +180,20 @@ jobs:
matrix: matrix:
os: [ubuntu-latest, macos-latest, windows-latest] os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
timeout-minutes: 60
steps: steps:
- uses: actions/checkout@v6 - uses: actions/checkout@v5
with: with:
show-progress: false show-progress: false
persist-credentials: false persist-credentials: false
- name: Cache rust cargo artifacts - name: Cache rust cargo artifacts
uses: swatinem/rust-cache@c19371144df3bb44fab255c43d04cbc2ab54d1c4 uses: swatinem/rust-cache@v2
with:
save-if: ${{ github.ref == 'refs/heads/main' }}
- name: Build deltachat-rpc-server - name: Build deltachat-rpc-server
run: cargo build -p deltachat-rpc-server run: cargo build -p deltachat-rpc-server
- name: Upload deltachat-rpc-server - name: Upload deltachat-rpc-server
uses: actions/upload-artifact@v7 uses: actions/upload-artifact@v4
with: with:
name: ${{ matrix.os }}-deltachat-rpc-server name: ${{ matrix.os }}-deltachat-rpc-server
path: ${{ matrix.os == 'windows-latest' && 'target/debug/deltachat-rpc-server.exe' || 'target/debug/deltachat-rpc-server' }} path: ${{ matrix.os == 'windows-latest' && 'target/debug/deltachat-rpc-server.exe' || 'target/debug/deltachat-rpc-server' }}
@@ -219,9 +202,8 @@ jobs:
python_lint: python_lint:
name: Python lint name: Python lint
runs-on: ubuntu-latest runs-on: ubuntu-latest
timeout-minutes: 60
steps: steps:
- uses: actions/checkout@v6 - uses: actions/checkout@v5
with: with:
show-progress: false show-progress: false
persist-credentials: false persist-credentials: false
@@ -237,38 +219,6 @@ jobs:
working-directory: deltachat-rpc-client working-directory: deltachat-rpc-client
run: tox -e lint run: tox -e lint
# mypy does not work with PyPy since mypy 1.19
# as it introduced native `librt` dependency
# that uses CPython internals.
# We only run mypy with CPython because of this.
cffi_python_mypy:
name: CFFI Python mypy
needs: ["c_library", "python_lint"]
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- uses: actions/checkout@v6
with:
show-progress: false
persist-credentials: false
- name: Download libdeltachat.a
uses: actions/download-artifact@v7
with:
name: ubuntu-latest-libdeltachat.a
path: target/debug
- name: Install tox
run: pip install tox
- name: Run mypy
env:
DCC_RS_TARGET: debug
DCC_RS_DEV: ${{ github.workspace }}
working-directory: python
run: tox -e mypy
cffi_python_tests: cffi_python_tests:
name: CFFI Python tests name: CFFI Python tests
needs: ["c_library", "python_lint"] needs: ["c_library", "python_lint"]
@@ -288,22 +238,21 @@ jobs:
- os: macos-latest - os: macos-latest
python: pypy3.10 python: pypy3.10
# Minimum Supported Python Version = 3.10 # Minimum Supported Python Version = 3.8
# This is the minimum version for which manylinux Python wheels are # This is the minimum version for which manylinux Python wheels are
# built. Test it with minimum supported Rust version. # built. Test it with minimum supported Rust version.
- os: ubuntu-latest - os: ubuntu-latest
python: "3.10" python: 3.8
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
timeout-minutes: 60
steps: steps:
- uses: actions/checkout@v6 - uses: actions/checkout@v5
with: with:
show-progress: false show-progress: false
persist-credentials: false persist-credentials: false
- name: Download libdeltachat.a - name: Download libdeltachat.a
uses: actions/download-artifact@v7 uses: actions/download-artifact@v5
with: with:
name: ${{ matrix.os }}-libdeltachat.a name: ${{ matrix.os }}-libdeltachat.a
path: target/debug path: target/debug
@@ -322,7 +271,7 @@ jobs:
DCC_RS_TARGET: debug DCC_RS_TARGET: debug
DCC_RS_DEV: ${{ github.workspace }} DCC_RS_DEV: ${{ github.workspace }}
working-directory: python working-directory: python
run: tox -e doc,py run: tox -e mypy,doc,py
rpc_python_tests: rpc_python_tests:
name: JSON-RPC Python tests name: JSON-RPC Python tests
@@ -344,14 +293,13 @@ jobs:
- os: macos-latest - os: macos-latest
python: pypy3.10 python: pypy3.10
# Minimum Supported Python Version = 3.10 # Minimum Supported Python Version = 3.8
- os: ubuntu-latest - os: ubuntu-latest
python: "3.10" python: 3.8
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
timeout-minutes: 60
steps: steps:
- uses: actions/checkout@v6 - uses: actions/checkout@v5
with: with:
show-progress: false show-progress: false
persist-credentials: false persist-credentials: false
@@ -365,7 +313,7 @@ jobs:
run: pip install tox run: pip install tox
- name: Download deltachat-rpc-server - name: Download deltachat-rpc-server
uses: actions/download-artifact@v7 uses: actions/download-artifact@v5
with: with:
name: ${{ matrix.os }}-deltachat-rpc-server name: ${{ matrix.os }}-deltachat-rpc-server
path: target/debug path: target/debug

View File

@@ -30,46 +30,22 @@ jobs:
arch: [aarch64, armv7l, armv6l, i686, x86_64] arch: [aarch64, armv7l, armv6l, i686, x86_64]
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v6 - uses: actions/checkout@v5
with: with:
show-progress: false show-progress: false
persist-credentials: false persist-credentials: false
- uses: cachix/install-nix-action@ab739621df7a23f52766f9ccc97f38da6b7af14f # v31.10.5 - uses: cachix/install-nix-action@9280e7aca88deada44c930f1e2c78e21c3ae3edd # v31
- name: Build deltachat-rpc-server binaries - name: Build deltachat-rpc-server binaries
run: nix build .#deltachat-rpc-server-${{ matrix.arch }}-linux run: nix build .#deltachat-rpc-server-${{ matrix.arch }}-linux
- name: Upload binary - name: Upload binary
uses: actions/upload-artifact@v7 uses: actions/upload-artifact@v4
with: with:
name: deltachat-rpc-server-${{ matrix.arch }}-linux name: deltachat-rpc-server-${{ matrix.arch }}-linux
path: result/bin/deltachat-rpc-server path: result/bin/deltachat-rpc-server
if-no-files-found: error if-no-files-found: error
build_linux_wheel:
name: Linux wheel
strategy:
fail-fast: false
matrix:
arch: [aarch64, armv7l, armv6l, i686, x86_64]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
show-progress: false
persist-credentials: false
- uses: cachix/install-nix-action@ab739621df7a23f52766f9ccc97f38da6b7af14f # v31.10.5
- name: Build deltachat-rpc-server wheels
run: nix build .#deltachat-rpc-server-${{ matrix.arch }}-linux-wheel
- name: Upload wheel
uses: actions/upload-artifact@v7
with:
name: deltachat-rpc-server-${{ matrix.arch }}-linux-wheel
path: result/*.whl
if-no-files-found: error
build_windows: build_windows:
name: Windows name: Windows
strategy: strategy:
@@ -78,46 +54,22 @@ jobs:
arch: [win32, win64] arch: [win32, win64]
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v6 - uses: actions/checkout@v5
with: with:
show-progress: false show-progress: false
persist-credentials: false persist-credentials: false
- uses: cachix/install-nix-action@ab739621df7a23f52766f9ccc97f38da6b7af14f # v31.10.5 - uses: cachix/install-nix-action@9280e7aca88deada44c930f1e2c78e21c3ae3edd # v31
- name: Build deltachat-rpc-server binaries - name: Build deltachat-rpc-server binaries
run: nix build .#deltachat-rpc-server-${{ matrix.arch }} run: nix build .#deltachat-rpc-server-${{ matrix.arch }}
- name: Upload binary - name: Upload binary
uses: actions/upload-artifact@v7 uses: actions/upload-artifact@v4
with: with:
name: deltachat-rpc-server-${{ matrix.arch }} name: deltachat-rpc-server-${{ matrix.arch }}
path: result/bin/deltachat-rpc-server.exe path: result/bin/deltachat-rpc-server.exe
if-no-files-found: error if-no-files-found: error
build_windows_wheel:
name: Windows wheel
strategy:
fail-fast: false
matrix:
arch: [win32, win64]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
show-progress: false
persist-credentials: false
- uses: cachix/install-nix-action@ab739621df7a23f52766f9ccc97f38da6b7af14f # v31.10.5
- name: Build deltachat-rpc-server wheels
run: nix build .#deltachat-rpc-server-${{ matrix.arch }}-wheel
- name: Upload wheel
uses: actions/upload-artifact@v7
with:
name: deltachat-rpc-server-${{ matrix.arch }}-wheel
path: result/*.whl
if-no-files-found: error
build_macos: build_macos:
name: macOS name: macOS
strategy: strategy:
@@ -127,7 +79,7 @@ jobs:
runs-on: macos-latest runs-on: macos-latest
steps: steps:
- uses: actions/checkout@v6 - uses: actions/checkout@v5
with: with:
show-progress: false show-progress: false
persist-credentials: false persist-credentials: false
@@ -139,7 +91,7 @@ jobs:
run: cargo build --release --package deltachat-rpc-server --target ${{ matrix.arch }}-apple-darwin --features vendored run: cargo build --release --package deltachat-rpc-server --target ${{ matrix.arch }}-apple-darwin --features vendored
- name: Upload binary - name: Upload binary
uses: actions/upload-artifact@v7 uses: actions/upload-artifact@v4
with: with:
name: deltachat-rpc-server-${{ matrix.arch }}-macos name: deltachat-rpc-server-${{ matrix.arch }}-macos
path: target/${{ matrix.arch }}-apple-darwin/release/deltachat-rpc-server path: target/${{ matrix.arch }}-apple-darwin/release/deltachat-rpc-server
@@ -153,49 +105,25 @@ jobs:
arch: [arm64-v8a, armeabi-v7a] arch: [arm64-v8a, armeabi-v7a]
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v6 - uses: actions/checkout@v5
with: with:
show-progress: false show-progress: false
persist-credentials: false persist-credentials: false
- uses: cachix/install-nix-action@ab739621df7a23f52766f9ccc97f38da6b7af14f # v31.10.5 - uses: cachix/install-nix-action@9280e7aca88deada44c930f1e2c78e21c3ae3edd # v31
- name: Build deltachat-rpc-server binaries - name: Build deltachat-rpc-server binaries
run: nix build .#deltachat-rpc-server-${{ matrix.arch }}-android run: nix build .#deltachat-rpc-server-${{ matrix.arch }}-android
- name: Upload binary - name: Upload binary
uses: actions/upload-artifact@v7 uses: actions/upload-artifact@v4
with: with:
name: deltachat-rpc-server-${{ matrix.arch }}-android name: deltachat-rpc-server-${{ matrix.arch }}-android
path: result/bin/deltachat-rpc-server path: result/bin/deltachat-rpc-server
if-no-files-found: error if-no-files-found: error
build_android_wheel:
name: Android wheel
strategy:
fail-fast: false
matrix:
arch: [arm64-v8a, armeabi-v7a]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
show-progress: false
persist-credentials: false
- uses: cachix/install-nix-action@ab739621df7a23f52766f9ccc97f38da6b7af14f # v31.10.5
- name: Build deltachat-rpc-server wheels
run: nix build .#deltachat-rpc-server-${{ matrix.arch }}-android-wheel
- name: Upload wheel
uses: actions/upload-artifact@v7
with:
name: deltachat-rpc-server-${{ matrix.arch }}-android-wheel
path: result/*.whl
if-no-files-found: error
publish: publish:
name: Build wheels and upload binaries to the release name: Build wheels and upload binaries to the release
needs: ["build_linux", "build_linux_wheel", "build_windows", "build_windows_wheel", "build_macos", "build_android", "build_android_wheel"] needs: ["build_linux", "build_windows", "build_macos"]
environment: environment:
name: pypi name: pypi
url: https://pypi.org/p/deltachat-rpc-server url: https://pypi.org/p/deltachat-rpc-server
@@ -204,132 +132,78 @@ jobs:
contents: write contents: write
runs-on: "ubuntu-latest" runs-on: "ubuntu-latest"
steps: steps:
- uses: actions/checkout@v6 - uses: actions/checkout@v5
with: with:
show-progress: false show-progress: false
persist-credentials: false persist-credentials: false
- uses: cachix/install-nix-action@ab739621df7a23f52766f9ccc97f38da6b7af14f # v31.10.5 - uses: cachix/install-nix-action@9280e7aca88deada44c930f1e2c78e21c3ae3edd # v31
- name: Download Linux aarch64 binary - name: Download Linux aarch64 binary
uses: actions/download-artifact@v7 uses: actions/download-artifact@v5
with: with:
name: deltachat-rpc-server-aarch64-linux name: deltachat-rpc-server-aarch64-linux
path: deltachat-rpc-server-aarch64-linux.d path: deltachat-rpc-server-aarch64-linux.d
- name: Download Linux aarch64 wheel
uses: actions/download-artifact@v7
with:
name: deltachat-rpc-server-aarch64-linux-wheel
path: deltachat-rpc-server-aarch64-linux-wheel.d
- name: Download Linux armv7l binary - name: Download Linux armv7l binary
uses: actions/download-artifact@v7 uses: actions/download-artifact@v5
with: with:
name: deltachat-rpc-server-armv7l-linux name: deltachat-rpc-server-armv7l-linux
path: deltachat-rpc-server-armv7l-linux.d path: deltachat-rpc-server-armv7l-linux.d
- name: Download Linux armv7l wheel
uses: actions/download-artifact@v7
with:
name: deltachat-rpc-server-armv7l-linux-wheel
path: deltachat-rpc-server-armv7l-linux-wheel.d
- name: Download Linux armv6l binary - name: Download Linux armv6l binary
uses: actions/download-artifact@v7 uses: actions/download-artifact@v5
with: with:
name: deltachat-rpc-server-armv6l-linux name: deltachat-rpc-server-armv6l-linux
path: deltachat-rpc-server-armv6l-linux.d path: deltachat-rpc-server-armv6l-linux.d
- name: Download Linux armv6l wheel
uses: actions/download-artifact@v7
with:
name: deltachat-rpc-server-armv6l-linux-wheel
path: deltachat-rpc-server-armv6l-linux-wheel.d
- name: Download Linux i686 binary - name: Download Linux i686 binary
uses: actions/download-artifact@v7 uses: actions/download-artifact@v5
with: with:
name: deltachat-rpc-server-i686-linux name: deltachat-rpc-server-i686-linux
path: deltachat-rpc-server-i686-linux.d path: deltachat-rpc-server-i686-linux.d
- name: Download Linux i686 wheel
uses: actions/download-artifact@v7
with:
name: deltachat-rpc-server-i686-linux-wheel
path: deltachat-rpc-server-i686-linux-wheel.d
- name: Download Linux x86_64 binary - name: Download Linux x86_64 binary
uses: actions/download-artifact@v7 uses: actions/download-artifact@v5
with: with:
name: deltachat-rpc-server-x86_64-linux name: deltachat-rpc-server-x86_64-linux
path: deltachat-rpc-server-x86_64-linux.d path: deltachat-rpc-server-x86_64-linux.d
- name: Download Linux x86_64 wheel
uses: actions/download-artifact@v7
with:
name: deltachat-rpc-server-x86_64-linux-wheel
path: deltachat-rpc-server-x86_64-linux-wheel.d
- name: Download Win32 binary - name: Download Win32 binary
uses: actions/download-artifact@v7 uses: actions/download-artifact@v5
with: with:
name: deltachat-rpc-server-win32 name: deltachat-rpc-server-win32
path: deltachat-rpc-server-win32.d path: deltachat-rpc-server-win32.d
- name: Download Win32 wheel
uses: actions/download-artifact@v7
with:
name: deltachat-rpc-server-win32-wheel
path: deltachat-rpc-server-win32-wheel.d
- name: Download Win64 binary - name: Download Win64 binary
uses: actions/download-artifact@v7 uses: actions/download-artifact@v5
with: with:
name: deltachat-rpc-server-win64 name: deltachat-rpc-server-win64
path: deltachat-rpc-server-win64.d path: deltachat-rpc-server-win64.d
- name: Download Win64 wheel
uses: actions/download-artifact@v7
with:
name: deltachat-rpc-server-win64-wheel
path: deltachat-rpc-server-win64-wheel.d
- name: Download macOS binary for x86_64 - name: Download macOS binary for x86_64
uses: actions/download-artifact@v7 uses: actions/download-artifact@v5
with: with:
name: deltachat-rpc-server-x86_64-macos name: deltachat-rpc-server-x86_64-macos
path: deltachat-rpc-server-x86_64-macos.d path: deltachat-rpc-server-x86_64-macos.d
- name: Download macOS binary for aarch64 - name: Download macOS binary for aarch64
uses: actions/download-artifact@v7 uses: actions/download-artifact@v5
with: with:
name: deltachat-rpc-server-aarch64-macos name: deltachat-rpc-server-aarch64-macos
path: deltachat-rpc-server-aarch64-macos.d path: deltachat-rpc-server-aarch64-macos.d
- name: Download Android binary for arm64-v8a - name: Download Android binary for arm64-v8a
uses: actions/download-artifact@v7 uses: actions/download-artifact@v5
with: with:
name: deltachat-rpc-server-arm64-v8a-android name: deltachat-rpc-server-arm64-v8a-android
path: deltachat-rpc-server-arm64-v8a-android.d path: deltachat-rpc-server-arm64-v8a-android.d
- name: Download Android wheel for arm64-v8a
uses: actions/download-artifact@v7
with:
name: deltachat-rpc-server-arm64-v8a-android-wheel
path: deltachat-rpc-server-arm64-v8a-android-wheel.d
- name: Download Android binary for armeabi-v7a - name: Download Android binary for armeabi-v7a
uses: actions/download-artifact@v7 uses: actions/download-artifact@v5
with: with:
name: deltachat-rpc-server-armeabi-v7a-android name: deltachat-rpc-server-armeabi-v7a-android
path: deltachat-rpc-server-armeabi-v7a-android.d path: deltachat-rpc-server-armeabi-v7a-android.d
- name: Download Android wheel for armeabi-v7a
uses: actions/download-artifact@v7
with:
name: deltachat-rpc-server-armeabi-v7a-android-wheel
path: deltachat-rpc-server-armeabi-v7a-android-wheel.d
- name: Create bin/ directory - name: Create bin/ directory
run: | run: |
mkdir -p bin mkdir -p bin
@@ -348,21 +222,38 @@ jobs:
- name: List binaries - name: List binaries
run: ls -l bin/ run: ls -l bin/
# Python 3.11 is needed for tomllib used in scripts/wheel-rpc-server.py
- name: Install python 3.12
uses: actions/setup-python@v6
with:
python-version: 3.12
- name: Install wheel - name: Install wheel
run: pip install wheel run: pip install wheel
- name: Build deltachat-rpc-server Python wheels - name: Build deltachat-rpc-server Python wheels and source package
run: | run: |
mkdir -p dist mkdir -p dist
mv deltachat-rpc-server-aarch64-linux-wheel.d/*.whl dist/ nix build .#deltachat-rpc-server-x86_64-linux-wheel
mv deltachat-rpc-server-armv7l-linux-wheel.d/*.whl dist/ cp result/*.whl dist/
mv deltachat-rpc-server-armv6l-linux-wheel.d/*.whl dist/ nix build .#deltachat-rpc-server-armv7l-linux-wheel
mv deltachat-rpc-server-i686-linux-wheel.d/*.whl dist/ cp result/*.whl dist/
mv deltachat-rpc-server-x86_64-linux-wheel.d/*.whl dist/ nix build .#deltachat-rpc-server-armv6l-linux-wheel
mv deltachat-rpc-server-win64-wheel.d/*.whl dist/ cp result/*.whl dist/
mv deltachat-rpc-server-win32-wheel.d/*.whl dist/ nix build .#deltachat-rpc-server-aarch64-linux-wheel
mv deltachat-rpc-server-arm64-v8a-android-wheel.d/*.whl dist/ cp result/*.whl dist/
mv deltachat-rpc-server-armeabi-v7a-android-wheel.d/*.whl dist/ nix build .#deltachat-rpc-server-i686-linux-wheel
cp result/*.whl dist/
nix build .#deltachat-rpc-server-win64-wheel
cp result/*.whl dist/
nix build .#deltachat-rpc-server-win32-wheel
cp result/*.whl dist/
nix build .#deltachat-rpc-server-arm64-v8a-android-wheel
cp result/*.whl dist/
nix build .#deltachat-rpc-server-armeabi-v7a-android-wheel
cp result/*.whl dist/
nix build .#deltachat-rpc-server-source
cp result/*.tar.gz dist/
python3 scripts/wheel-rpc-server.py x86_64-darwin bin/deltachat-rpc-server-x86_64-macos python3 scripts/wheel-rpc-server.py x86_64-darwin bin/deltachat-rpc-server-x86_64-macos
python3 scripts/wheel-rpc-server.py aarch64-darwin bin/deltachat-rpc-server-aarch64-macos python3 scripts/wheel-rpc-server.py aarch64-darwin bin/deltachat-rpc-server-aarch64-macos
mv *.whl dist/ mv *.whl dist/
@@ -380,24 +271,21 @@ jobs:
--repo ${{ github.repository }} \ --repo ${{ github.repository }} \
bin/* dist/* bin/* dist/*
- name: Publish deltachat-rpc-server to PyPI - name: Publish deltachat-rpc-client to PyPI
if: github.event_name == 'release' if: github.event_name == 'release'
uses: pypa/gh-action-pypi-publish@cef221092ed1bacb1cc03d23a2d87d1d172e277b uses: pypa/gh-action-pypi-publish@release/v1
publish_npm_package: publish_npm_package:
name: Build & Publish npm prebuilds and deltachat-rpc-server name: Build & Publish npm prebuilds and deltachat-rpc-server
needs: ["build_linux", "build_windows", "build_macos"] needs: ["build_linux", "build_windows", "build_macos"]
runs-on: "ubuntu-latest" runs-on: "ubuntu-latest"
environment:
name: npm-stdio-rpc-server
url: https://www.npmjs.com/package/@deltachat/stdio-rpc-server
permissions: permissions:
id-token: write id-token: write
# Needed to publish the binaries to the release. # Needed to publish the binaries to the release.
contents: write contents: write
steps: steps:
- uses: actions/checkout@v6 - uses: actions/checkout@v5
with: with:
show-progress: false show-progress: false
persist-credentials: false persist-credentials: false
@@ -406,67 +294,67 @@ jobs:
python-version: "3.11" python-version: "3.11"
- name: Download Linux aarch64 binary - name: Download Linux aarch64 binary
uses: actions/download-artifact@v7 uses: actions/download-artifact@v5
with: with:
name: deltachat-rpc-server-aarch64-linux name: deltachat-rpc-server-aarch64-linux
path: deltachat-rpc-server-aarch64-linux.d path: deltachat-rpc-server-aarch64-linux.d
- name: Download Linux armv7l binary - name: Download Linux armv7l binary
uses: actions/download-artifact@v7 uses: actions/download-artifact@v5
with: with:
name: deltachat-rpc-server-armv7l-linux name: deltachat-rpc-server-armv7l-linux
path: deltachat-rpc-server-armv7l-linux.d path: deltachat-rpc-server-armv7l-linux.d
- name: Download Linux armv6l binary - name: Download Linux armv6l binary
uses: actions/download-artifact@v7 uses: actions/download-artifact@v5
with: with:
name: deltachat-rpc-server-armv6l-linux name: deltachat-rpc-server-armv6l-linux
path: deltachat-rpc-server-armv6l-linux.d path: deltachat-rpc-server-armv6l-linux.d
- name: Download Linux i686 binary - name: Download Linux i686 binary
uses: actions/download-artifact@v7 uses: actions/download-artifact@v5
with: with:
name: deltachat-rpc-server-i686-linux name: deltachat-rpc-server-i686-linux
path: deltachat-rpc-server-i686-linux.d path: deltachat-rpc-server-i686-linux.d
- name: Download Linux x86_64 binary - name: Download Linux x86_64 binary
uses: actions/download-artifact@v7 uses: actions/download-artifact@v5
with: with:
name: deltachat-rpc-server-x86_64-linux name: deltachat-rpc-server-x86_64-linux
path: deltachat-rpc-server-x86_64-linux.d path: deltachat-rpc-server-x86_64-linux.d
- name: Download Win32 binary - name: Download Win32 binary
uses: actions/download-artifact@v7 uses: actions/download-artifact@v5
with: with:
name: deltachat-rpc-server-win32 name: deltachat-rpc-server-win32
path: deltachat-rpc-server-win32.d path: deltachat-rpc-server-win32.d
- name: Download Win64 binary - name: Download Win64 binary
uses: actions/download-artifact@v7 uses: actions/download-artifact@v5
with: with:
name: deltachat-rpc-server-win64 name: deltachat-rpc-server-win64
path: deltachat-rpc-server-win64.d path: deltachat-rpc-server-win64.d
- name: Download macOS binary for x86_64 - name: Download macOS binary for x86_64
uses: actions/download-artifact@v7 uses: actions/download-artifact@v5
with: with:
name: deltachat-rpc-server-x86_64-macos name: deltachat-rpc-server-x86_64-macos
path: deltachat-rpc-server-x86_64-macos.d path: deltachat-rpc-server-x86_64-macos.d
- name: Download macOS binary for aarch64 - name: Download macOS binary for aarch64
uses: actions/download-artifact@v7 uses: actions/download-artifact@v5
with: with:
name: deltachat-rpc-server-aarch64-macos name: deltachat-rpc-server-aarch64-macos
path: deltachat-rpc-server-aarch64-macos.d path: deltachat-rpc-server-aarch64-macos.d
- name: Download Android binary for arm64-v8a - name: Download Android binary for arm64-v8a
uses: actions/download-artifact@v7 uses: actions/download-artifact@v5
with: with:
name: deltachat-rpc-server-arm64-v8a-android name: deltachat-rpc-server-arm64-v8a-android
path: deltachat-rpc-server-arm64-v8a-android.d path: deltachat-rpc-server-arm64-v8a-android.d
- name: Download Android binary for armeabi-v7a - name: Download Android binary for armeabi-v7a
uses: actions/download-artifact@v7 uses: actions/download-artifact@v5
with: with:
name: deltachat-rpc-server-armeabi-v7a-android name: deltachat-rpc-server-armeabi-v7a-android
path: deltachat-rpc-server-armeabi-v7a-android.d path: deltachat-rpc-server-armeabi-v7a-android.d
@@ -496,7 +384,7 @@ jobs:
ls -lah ls -lah
- name: Upload to artifacts - name: Upload to artifacts
uses: actions/upload-artifact@v7 uses: actions/upload-artifact@v4
with: with:
name: deltachat-rpc-server-npm-package name: deltachat-rpc-server-npm-package
path: deltachat-rpc-server/npm-package/*.tgz path: deltachat-rpc-server/npm-package/*.tgz
@@ -513,19 +401,16 @@ jobs:
deltachat-rpc-server/npm-package/*.tgz deltachat-rpc-server/npm-package/*.tgz
# Configure Node.js for publishing. # Configure Node.js for publishing.
- uses: actions/setup-node@v6 - uses: actions/setup-node@v5
with: with:
node-version: 20 node-version: 20
registry-url: "https://registry.npmjs.org" registry-url: "https://registry.npmjs.org"
# Ensure npm 11.5.1 or later is installed.
# It is needed for <https://docs.npmjs.com/trusted-publishers>
- name: Update npm
run: npm install -g npm@latest
- name: Publish npm packets for prebuilds and `@deltachat/stdio-rpc-server` - name: Publish npm packets for prebuilds and `@deltachat/stdio-rpc-server`
if: github.event_name == 'release' if: github.event_name == 'release'
working-directory: deltachat-rpc-server/npm-package working-directory: deltachat-rpc-server/npm-package
run: | run: |
ls -lah platform_package ls -lah platform_package
for platform in *.tgz; do npm publish --provenance "$platform" --access public; done for platform in *.tgz; do npm publish --provenance "$platform" --access public; done
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

View File

@@ -10,11 +10,11 @@ permissions:
jobs: jobs:
dependabot: dependabot:
runs-on: ubuntu-latest runs-on: ubuntu-latest
if: github.event.pull_request.user.login == 'dependabot[bot]' && github.repository == github.event.pull_request.head.repo.full_name if: ${{ github.actor == 'dependabot[bot]' }}
steps: steps:
- name: Dependabot metadata - name: Dependabot metadata
id: metadata id: metadata
uses: dependabot/fetch-metadata@v3.0.0 uses: dependabot/fetch-metadata@v2.4.0
with: with:
github-token: "${{ secrets.GITHUB_TOKEN }}" github-token: "${{ secrets.GITHUB_TOKEN }}"
- name: Approve a PR - name: Approve a PR

View File

@@ -1,23 +0,0 @@
# Check that PRs are made against the -dev version.
#
# If this fails, push commit to update the version to -dev to main.
name: Check for -dev version
on:
pull_request:
permissions: {}
jobs:
check_dev_version:
name: Check that current version ends with -dev
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
show-progress: false
persist-credentials: false
- name: Run version-checking script
run: scripts/check-dev-version.py

View File

@@ -10,28 +10,20 @@ jobs:
pack-module: pack-module:
name: "Publish @deltachat/jsonrpc-client" name: "Publish @deltachat/jsonrpc-client"
runs-on: ubuntu-latest runs-on: ubuntu-latest
environment:
name: npm-jsonrpc-client
url: https://www.npmjs.com/package/@deltachat/jsonrpc-client
permissions: permissions:
id-token: write id-token: write
contents: read contents: read
steps: steps:
- uses: actions/checkout@v6 - uses: actions/checkout@v5
with: with:
show-progress: false show-progress: false
persist-credentials: false persist-credentials: false
- uses: actions/setup-node@v6 - uses: actions/setup-node@v5
with: with:
node-version: 20 node-version: 20
registry-url: "https://registry.npmjs.org" registry-url: "https://registry.npmjs.org"
# Ensure npm 11.5.1 or later is installed.
# It is needed for <https://docs.npmjs.com/trusted-publishers>
- name: Update npm
run: npm install -g npm@latest
- name: Install dependencies without running scripts - name: Install dependencies without running scripts
working-directory: deltachat-jsonrpc/typescript working-directory: deltachat-jsonrpc/typescript
run: npm install --ignore-scripts run: npm install --ignore-scripts
@@ -45,3 +37,5 @@ jobs:
- name: Publish - name: Publish
working-directory: deltachat-jsonrpc/typescript working-directory: deltachat-jsonrpc/typescript
run: npm publish --provenance deltachat-jsonrpc-client-* --access public run: npm publish --provenance deltachat-jsonrpc-client-* --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

View File

@@ -16,16 +16,16 @@ jobs:
build_and_test: build_and_test:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v6 - uses: actions/checkout@v5
with: with:
show-progress: false show-progress: false
persist-credentials: false persist-credentials: false
- name: Use Node.js 18.x - name: Use Node.js 18.x
uses: actions/setup-node@v6 uses: actions/setup-node@v5
with: with:
node-version: 18.x node-version: 18.x
- name: Add Rust cache - name: Add Rust cache
uses: Swatinem/rust-cache@c19371144df3bb44fab255c43d04cbc2ab54d1c4 uses: Swatinem/rust-cache@v2
- name: npm install - name: npm install
working-directory: deltachat-jsonrpc/typescript working-directory: deltachat-jsonrpc/typescript
run: npm install run: npm install

View File

@@ -21,11 +21,11 @@ jobs:
name: check flake formatting name: check flake formatting
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v6 - uses: actions/checkout@v5
with: with:
show-progress: false show-progress: false
persist-credentials: false persist-credentials: false
- uses: cachix/install-nix-action@ab739621df7a23f52766f9ccc97f38da6b7af14f # v31.10.5 - uses: cachix/install-nix-action@9280e7aca88deada44c930f1e2c78e21c3ae3edd # v31
- run: nix fmt flake.nix -- --check - run: nix fmt flake.nix -- --check
build: build:
@@ -80,11 +80,11 @@ jobs:
#- deltachat-rpc-server-x86_64-android #- deltachat-rpc-server-x86_64-android
#- deltachat-rpc-server-x86-android #- deltachat-rpc-server-x86-android
steps: steps:
- uses: actions/checkout@v6 - uses: actions/checkout@v5
with: with:
show-progress: false show-progress: false
persist-credentials: false persist-credentials: false
- uses: cachix/install-nix-action@ab739621df7a23f52766f9ccc97f38da6b7af14f # v31.10.5 - uses: cachix/install-nix-action@9280e7aca88deada44c930f1e2c78e21c3ae3edd # v31
- run: nix build .#${{ matrix.installable }} - run: nix build .#${{ matrix.installable }}
build-macos: build-macos:
@@ -95,15 +95,14 @@ jobs:
matrix: matrix:
installable: installable:
- deltachat-rpc-server - deltachat-rpc-server
- deltachat-rpc-server-x86_64-darwin
# Fails to build # Fails to bulid
# because of <https://github.com/NixOS/nixpkgs/issues/413910>.
# - deltachat-rpc-server-aarch64-darwin # - deltachat-rpc-server-aarch64-darwin
# - deltachat-rpc-server-x86_64-darwin
steps: steps:
- uses: actions/checkout@v6 - uses: actions/checkout@v5
with: with:
show-progress: false show-progress: false
persist-credentials: false persist-credentials: false
- uses: cachix/install-nix-action@ab739621df7a23f52766f9ccc97f38da6b7af14f # v31.10.5 - uses: cachix/install-nix-action@9280e7aca88deada44c930f1e2c78e21c3ae3edd # v31
- run: nix build .#${{ matrix.installable }} - run: nix build .#${{ matrix.installable }}

View File

@@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v6 - uses: actions/checkout@v5
with: with:
show-progress: false show-progress: false
persist-credentials: false persist-credentials: false
@@ -23,7 +23,7 @@ jobs:
working-directory: deltachat-rpc-client working-directory: deltachat-rpc-client
run: python3 -m build run: python3 -m build
- name: Store the distribution packages - name: Store the distribution packages
uses: actions/upload-artifact@v7 uses: actions/upload-artifact@v4
with: with:
name: python-package-distributions name: python-package-distributions
path: deltachat-rpc-client/dist/ path: deltachat-rpc-client/dist/
@@ -42,9 +42,9 @@ jobs:
steps: steps:
- name: Download all the dists - name: Download all the dists
uses: actions/download-artifact@v7 uses: actions/download-artifact@v5
with: with:
name: python-package-distributions name: python-package-distributions
path: dist/ path: dist/
- name: Publish deltachat-rpc-client to PyPI - name: Publish deltachat-rpc-client to PyPI
uses: pypa/gh-action-pypi-publish@cef221092ed1bacb1cc03d23a2d87d1d172e277b uses: pypa/gh-action-pypi-publish@release/v1

View File

@@ -14,15 +14,15 @@ jobs:
name: Build REPL example name: Build REPL example
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v6 - uses: actions/checkout@v5
with: with:
show-progress: false show-progress: false
persist-credentials: false persist-credentials: false
- uses: cachix/install-nix-action@ab739621df7a23f52766f9ccc97f38da6b7af14f # v31.10.5 - uses: cachix/install-nix-action@9280e7aca88deada44c930f1e2c78e21c3ae3edd # v31
- name: Build - name: Build
run: nix build .#deltachat-repl-win64 run: nix build .#deltachat-repl-win64
- name: Upload binary - name: Upload binary
uses: actions/upload-artifact@v7 uses: actions/upload-artifact@v4
with: with:
name: repl.exe name: repl.exe
path: "result/bin/deltachat-repl.exe" path: "result/bin/deltachat-repl.exe"

View File

@@ -1,21 +1,19 @@
name: Build & deploy documentation on rs.delta.chat, c.delta.chat, py.delta.chat and cffi.delta.chat name: Build & deploy documentation on rs.delta.chat, c.delta.chat, and py.delta.chat
on: on:
push: push:
branches: branches:
- main - main
- build_jsonrpc_docs_ci
permissions: {} permissions: {}
jobs: jobs:
build-rs: build-rs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
environment:
name: rs.delta.chat
url: https://rs.delta.chat/
steps: steps:
- uses: actions/checkout@v6 - uses: actions/checkout@v5
with: with:
show-progress: false show-progress: false
persist-credentials: false persist-credentials: false
@@ -25,72 +23,62 @@ jobs:
- name: Upload to rs.delta.chat - name: Upload to rs.delta.chat
run: | run: |
mkdir -p "$HOME/.ssh" mkdir -p "$HOME/.ssh"
echo "${{ secrets.RS_DOCS_SSH_KEY }}" > "$HOME/.ssh/key" echo "${{ secrets.KEY }}" > "$HOME/.ssh/key"
chmod 600 "$HOME/.ssh/key" chmod 600 "$HOME/.ssh/key"
rsync -avzh -e "ssh -i $HOME/.ssh/key -o StrictHostKeyChecking=no" $GITHUB_WORKSPACE/target/doc "${{ secrets.RS_DOCS_SSH_USER }}@rs.delta.chat:/var/www/html/rs.delta.chat/" rsync -avzh -e "ssh -i $HOME/.ssh/key -o StrictHostKeyChecking=no" $GITHUB_WORKSPACE/target/doc "${{ secrets.USERNAME }}@rs.delta.chat:/var/www/html/rs/"
build-python: build-python:
runs-on: ubuntu-latest runs-on: ubuntu-latest
environment:
name: py.delta.chat
url: https://py.delta.chat/
steps: steps:
- uses: actions/checkout@v6 - uses: actions/checkout@v5
with: with:
show-progress: false show-progress: false
persist-credentials: false persist-credentials: false
fetch-depth: 0 # Fetch history to calculate VCS version number. fetch-depth: 0 # Fetch history to calculate VCS version number.
- uses: cachix/install-nix-action@ab739621df7a23f52766f9ccc97f38da6b7af14f # v31.10.5 - uses: cachix/install-nix-action@9280e7aca88deada44c930f1e2c78e21c3ae3edd # v31
- name: Build Python documentation - name: Build Python documentation
run: nix build .#python-docs run: nix build .#python-docs
- name: Upload to py.delta.chat - name: Upload to py.delta.chat
run: | run: |
mkdir -p "$HOME/.ssh" mkdir -p "$HOME/.ssh"
echo "${{ secrets.PY_DOCS_SSH_KEY }}" > "$HOME/.ssh/key" echo "${{ secrets.CODESPEAK_KEY }}" > "$HOME/.ssh/key"
chmod 600 "$HOME/.ssh/key" chmod 600 "$HOME/.ssh/key"
rsync -avzh --delete -e "ssh -i $HOME/.ssh/key -o StrictHostKeyChecking=no" $GITHUB_WORKSPACE/result/html/ "${{ secrets.PY_DOCS_SSH_USER }}@py.delta.chat:/var/www/html/py.delta.chat" rsync -avzh -e "ssh -i $HOME/.ssh/key -o StrictHostKeyChecking=no" $GITHUB_WORKSPACE/result/html/ "delta@py.delta.chat:/home/delta/build/master"
build-c: build-c:
runs-on: ubuntu-latest runs-on: ubuntu-latest
environment:
name: c.delta.chat
url: https://c.delta.chat/
steps: steps:
- uses: actions/checkout@v6 - uses: actions/checkout@v5
with: with:
show-progress: false show-progress: false
persist-credentials: false persist-credentials: false
fetch-depth: 0 # Fetch history to calculate VCS version number. fetch-depth: 0 # Fetch history to calculate VCS version number.
- uses: cachix/install-nix-action@ab739621df7a23f52766f9ccc97f38da6b7af14f # v31.10.5 - uses: cachix/install-nix-action@9280e7aca88deada44c930f1e2c78e21c3ae3edd # v31
- name: Build C documentation - name: Build C documentation
run: nix build .#docs run: nix build .#docs
- name: Upload to c.delta.chat - name: Upload to c.delta.chat
run: | run: |
mkdir -p "$HOME/.ssh" mkdir -p "$HOME/.ssh"
echo "${{ secrets.C_DOCS_SSH_KEY }}" > "$HOME/.ssh/key" echo "${{ secrets.CODESPEAK_KEY }}" > "$HOME/.ssh/key"
chmod 600 "$HOME/.ssh/key" chmod 600 "$HOME/.ssh/key"
rsync -avzh --delete -e "ssh -i $HOME/.ssh/key -o StrictHostKeyChecking=no" $GITHUB_WORKSPACE/result/html/ "${{ secrets.C_DOCS_SSH_USER }}@c.delta.chat:/var/www/html/c.delta.chat" rsync -avzh -e "ssh -i $HOME/.ssh/key -o StrictHostKeyChecking=no" $GITHUB_WORKSPACE/result/html/ "delta@c.delta.chat:/home/delta/build-c/master"
build-ts: build-ts:
runs-on: ubuntu-latest runs-on: ubuntu-latest
environment:
name: js.jsonrpc.delta.chat
url: https://js.jsonrpc.delta.chat/
defaults: defaults:
run: run:
working-directory: ./deltachat-jsonrpc/typescript working-directory: ./deltachat-jsonrpc/typescript
steps: steps:
- uses: actions/checkout@v6 - uses: actions/checkout@v5
with: with:
show-progress: false show-progress: false
persist-credentials: false persist-credentials: false
fetch-depth: 0 # Fetch history to calculate VCS version number. fetch-depth: 0 # Fetch history to calculate VCS version number.
- name: Use Node.js - name: Use Node.js
uses: actions/setup-node@v6 uses: actions/setup-node@v5
with: with:
node-version: '18' node-version: '18'
- name: npm install - name: npm install
@@ -102,27 +90,6 @@ jobs:
- name: Upload to js.jsonrpc.delta.chat - name: Upload to js.jsonrpc.delta.chat
run: | run: |
mkdir -p "$HOME/.ssh" mkdir -p "$HOME/.ssh"
echo "${{ secrets.JS_JSONRPC_DOCS_SSH_KEY }}" > "$HOME/.ssh/key" echo "${{ secrets.KEY }}" > "$HOME/.ssh/key"
chmod 600 "$HOME/.ssh/key" chmod 600 "$HOME/.ssh/key"
rsync -avzh --delete -e "ssh -i $HOME/.ssh/key -o StrictHostKeyChecking=no" $GITHUB_WORKSPACE/deltachat-jsonrpc/typescript/docs/ "${{ secrets.JS_JSONRPC_DOCS_SSH_USER }}@js.jsonrpc.delta.chat:/var/www/html/js.jsonrpc.delta.chat/" rsync -avzh -e "ssh -i $HOME/.ssh/key -o StrictHostKeyChecking=no" $GITHUB_WORKSPACE/deltachat-jsonrpc/typescript/docs/ "${{ secrets.USERNAME }}@js.jsonrpc.delta.chat:/var/www/html/js-jsonrpc/"
build-cffi:
runs-on: ubuntu-latest
environment:
name: cffi.delta.chat
url: https://cffi.delta.chat/
steps:
- uses: actions/checkout@v6
with:
show-progress: false
persist-credentials: false
- name: Build the documentation with cargo
run: |
cargo doc --package deltachat_ffi --no-deps
- name: Upload to cffi.delta.chat
run: |
mkdir -p "$HOME/.ssh"
echo "${{ secrets.CFFI_DOCS_SSH_KEY }}" > "$HOME/.ssh/key"
chmod 600 "$HOME/.ssh/key"
rsync -avzh --delete -e "ssh -i $HOME/.ssh/key -o StrictHostKeyChecking=no" $GITHUB_WORKSPACE/target/doc/ "${{ secrets.CFFI_DOCS_SSH_USER }}@delta.chat:/var/www/html/cffi.delta.chat/"

31
.github/workflows/upload-ffi-docs.yml vendored Normal file
View File

@@ -0,0 +1,31 @@
# GitHub Actions workflow
# to build `deltachat_ffi` crate documentation
# and upload it to <https://cffi.delta.chat/>
name: Build & Deploy Documentation on cffi.delta.chat
on:
push:
branches:
- main
permissions: {}
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
with:
show-progress: false
persist-credentials: false
- name: Build the documentation with cargo
run: |
cargo doc --package deltachat_ffi --no-deps
- name: Upload to cffi.delta.chat
run: |
mkdir -p "$HOME/.ssh"
echo "${{ secrets.KEY }}" > "$HOME/.ssh/key"
chmod 600 "$HOME/.ssh/key"
rsync -avzh -e "ssh -i $HOME/.ssh/key -o StrictHostKeyChecking=no" $GITHUB_WORKSPACE/target/doc/ "${{ secrets.USERNAME }}@delta.chat:/var/www/html/cffi/"

View File

@@ -6,21 +6,26 @@ on:
pull_request: pull_request:
branches: ["**"] branches: ["**"]
permissions: {}
jobs: jobs:
zizmor: zizmor:
name: Run zizmor name: zizmor latest via PyPI
runs-on: ubuntu-latest runs-on: ubuntu-latest
permissions: permissions:
security-events: write # Required for upload-sarif (used by zizmor-action) to upload SARIF files. security-events: write
contents: read
actions: read
steps: steps:
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v6 uses: actions/checkout@v5
with: with:
persist-credentials: false persist-credentials: false
- name: Install the latest version of uv
uses: astral-sh/setup-uv@v6
- name: Run zizmor - name: Run zizmor
uses: zizmorcore/zizmor-action@b1d7e1fb5de872772f31590499237e7cce841e8e # v0.5.3 run: uvx zizmor --format sarif . > results.sarif
- name: Upload SARIF file
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: results.sarif
category: zizmor

6
.github/zizmor.yml vendored
View File

@@ -1,6 +0,0 @@
rules:
unpinned-uses:
config:
policies:
actions/*: ref-pin
dependabot/*: ref-pin

1
.gitignore vendored
View File

@@ -36,7 +36,6 @@ deltachat-ffi/xml
coverage/ coverage/
.DS_Store .DS_Store
.vscode .vscode
.zed
python/accounts.txt python/accounts.txt
python/all-testaccounts.txt python/all-testaccounts.txt
tmp/ tmp/

File diff suppressed because it is too large Load Diff

View File

@@ -1,4 +1,4 @@
# Contributing to chatmail core # Contributing to Delta Chat
## Bug reports ## Bug reports

974
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,9 +1,9 @@
[package] [package]
name = "deltachat" name = "deltachat"
version = "2.50.0-dev" version = "2.20.0"
edition = "2024" edition = "2024"
license = "MPL-2.0" license = "MPL-2.0"
rust-version = "1.89" rust-version = "1.85"
repository = "https://github.com/chatmail/core" repository = "https://github.com/chatmail/core"
[profile.dev] [profile.dev]
@@ -45,22 +45,23 @@ anyhow = { workspace = true }
async-broadcast = "0.7.2" async-broadcast = "0.7.2"
async-channel = { workspace = true } async-channel = { workspace = true }
async-imap = { version = "0.11.1", default-features = false, features = ["runtime-tokio", "compress"] } async-imap = { version = "0.11.1", default-features = false, features = ["runtime-tokio", "compress"] }
async-native-tls = { version = "0.6", default-features = false, features = ["runtime-tokio"] } async-native-tls = { version = "0.5", default-features = false, features = ["runtime-tokio"] }
async-smtp = { version = "0.10.2", default-features = false, features = ["runtime-tokio"] } async-smtp = { version = "0.10.2", default-features = false, features = ["runtime-tokio"] }
async_zip = { version = "0.0.18", default-features = false, features = ["deflate", "tokio-fs"] } async_zip = { version = "0.0.17", default-features = false, features = ["deflate", "tokio-fs"] }
base64 = { workspace = true } base64 = { workspace = true }
blake3 = "1.8.2" blake3 = "1.8.2"
brotli = { version = "8", default-features=false, features = ["std"] } brotli = { version = "8", default-features=false, features = ["std"] }
bytes = "1" bytes = "1"
chrono = { workspace = true, features = ["alloc", "clock", "std"] } chrono = { workspace = true, features = ["alloc", "clock", "std"] }
colorutils-rs = { version = "0.8.0", default-features = false } colorutils-rs = { version = "0.7.5", default-features = false }
data-encoding = "2.9.0" data-encoding = "2.9.0"
escaper = "0.1" escaper = "0.1"
fast-socks5 = "1" fast-socks5 = "0.10"
fd-lock = "4" fd-lock = "4"
futures-lite = { workspace = true } futures-lite = { workspace = true }
futures = { workspace = true } futures = { workspace = true }
hex = "0.4.0" hex = "0.4.0"
hickory-resolver = "0.25.2"
http-body-util = "0.1.3" http-body-util = "0.1.3"
humansize = "2" humansize = "2"
hyper = "1" hyper = "1"
@@ -78,16 +79,17 @@ num-derive = "0.4"
num-traits = { workspace = true } num-traits = { workspace = true }
parking_lot = "0.12.4" parking_lot = "0.12.4"
percent-encoding = "2.3" percent-encoding = "2.3"
pgp = { version = "0.19.0", default-features = false } pgp = { version = "0.17.0", default-features = false }
pin-project = "1" pin-project = "1"
qrcodegen = "1.7.0" qrcodegen = "1.7.0"
quick-xml = { version = "0.39", features = ["escape-html"] } quick-xml = { version = "0.38", features = ["escape-html"] }
rand-old = { package = "rand", version = "0.8" }
rand = { workspace = true } rand = { workspace = true }
regex = { workspace = true } regex = { workspace = true }
rusqlite = { workspace = true, features = ["sqlcipher"] } rusqlite = { workspace = true, features = ["sqlcipher"] }
rustls-pki-types = "1.12.0"
rustls = { version = "0.23.22", default-features = false }
sanitize-filename = { workspace = true } sanitize-filename = { workspace = true }
sdp = "0.17.1" sdp = "0.8.0"
serde_json = { workspace = true } serde_json = { workspace = true }
serde_urlencoded = "0.7.1" serde_urlencoded = "0.7.1"
serde = { workspace = true, features = ["derive"] } serde = { workspace = true, features = ["derive"] }
@@ -95,27 +97,26 @@ sha-1 = "0.10"
sha2 = "0.10" sha2 = "0.10"
shadowsocks = { version = "1.23.1", default-features = false, features = ["aead-cipher", "aead-cipher-2022"] } shadowsocks = { version = "1.23.1", default-features = false, features = ["aead-cipher", "aead-cipher-2022"] }
smallvec = "1.15.1" smallvec = "1.15.1"
strum = "0.28" strum = "0.27"
strum_macros = "0.28" strum_macros = "0.27"
tagger = "4.3.4" tagger = "4.3.4"
textwrap = "0.16.2" textwrap = "0.16.2"
thiserror = { workspace = true } thiserror = { workspace = true }
tokio-io-timeout = "1.2.1" tokio-io-timeout = "1.2.1"
tokio-rustls = { version = "0.26.2", default-features = false } tokio-rustls = { version = "0.26.2", default-features = false }
tokio-stream = { version = "0.1.17", features = ["fs"] } tokio-stream = { version = "0.1.17", features = ["fs"] }
astral-tokio-tar = { version = "0.6.1", default-features = false } tokio-tar = { version = "0.3" } # TODO: integrate tokio into async-tar
tokio-util = { workspace = true } tokio-util = { workspace = true }
tokio = { workspace = true, features = ["fs", "rt-multi-thread", "macros"] } tokio = { workspace = true, features = ["fs", "rt-multi-thread", "macros"] }
toml = "0.9" toml = "0.9"
tracing = "0.1.41" tracing = "0.1.41"
url = "2" url = "2"
uuid = { version = "1", features = ["serde", "v4"] } uuid = { version = "1", features = ["serde", "v4"] }
walkdir = "2.5.0"
webpki-roots = "0.26.8" webpki-roots = "0.26.8"
[dev-dependencies] [dev-dependencies]
anyhow = { workspace = true, features = ["backtrace"] } # Enable `backtrace` feature in tests. anyhow = { workspace = true, features = ["backtrace"] } # Enable `backtrace` feature in tests.
criterion = { version = "0.8.1", features = ["async_tokio"] } criterion = { version = "0.7.0", features = ["async_tokio"] }
futures-lite = { workspace = true } futures-lite = { workspace = true }
log = { workspace = true } log = { workspace = true }
nu-ansi-term = { workspace = true } nu-ansi-term = { workspace = true }
@@ -156,11 +157,6 @@ name = "receive_emails"
required-features = ["internals"] required-features = ["internals"]
harness = false harness = false
[[bench]]
name = "decrypting"
required-features = ["internals"]
harness = false
[[bench]] [[bench]]
name = "get_chat_msgs" name = "get_chat_msgs"
harness = false harness = false
@@ -181,27 +177,27 @@ harness = false
anyhow = "1" anyhow = "1"
async-channel = "2.5.0" async-channel = "2.5.0"
base64 = "0.22" base64 = "0.22"
chrono = { version = "0.4.44", default-features = false } chrono = { version = "0.4.42", default-features = false }
deltachat-contact-tools = { path = "deltachat-contact-tools" } deltachat-contact-tools = { path = "deltachat-contact-tools" }
deltachat-jsonrpc = { path = "deltachat-jsonrpc", default-features = false } deltachat-jsonrpc = { path = "deltachat-jsonrpc", default-features = false }
deltachat = { path = ".", default-features = false } deltachat = { path = ".", default-features = false }
futures = "0.3.32" futures = "0.3.31"
futures-lite = "2.6.1" futures-lite = "2.6.1"
libc = "0.2" libc = "0.2"
log = "0.4" log = "0.4"
mailparse = "0.16.1" mailparse = "0.16.1"
nu-ansi-term = "0.50" nu-ansi-term = "0.50"
num-traits = "0.2" num-traits = "0.2"
rand = "0.9" rand = "0.8"
regex = "1.12" regex = "1.10"
rusqlite = "0.37" rusqlite = "0.36"
sanitize-filename = "0.6" sanitize-filename = "0.5"
serde = "1.0" serde = "1.0"
serde_json = "1" serde_json = "1"
tempfile = "3.27.0" tempfile = "3.23.0"
thiserror = "2" thiserror = "2"
tokio = "1" tokio = "1"
tokio-util = "0.7.18" tokio-util = "0.7.16"
tracing-subscriber = "0.3" tracing-subscriber = "0.3"
yerpc = "0.6.4" yerpc = "0.6.4"

View File

@@ -197,10 +197,12 @@ and then run the script.
Language bindings are available for: Language bindings are available for:
- **C** \[[📂 source](./deltachat-ffi) | [📚 docs](https://c.delta.chat)\] - **C** \[[📂 source](./deltachat-ffi) | [📚 docs](https://c.delta.chat)\]
- -> libdeltachat is going to be deprecated and only exists because Android, iOS and Ubuntu Touch are still using it. If you build a new project, then please use the jsonrpc api instead.
- **JS**: \[[📂 source](./deltachat-rpc-client) | [📦 npm](https://www.npmjs.com/package/@deltachat/jsonrpc-client) | [📚 docs](https://js.jsonrpc.delta.chat/)\] - **JS**: \[[📂 source](./deltachat-rpc-client) | [📦 npm](https://www.npmjs.com/package/@deltachat/jsonrpc-client) | [📚 docs](https://js.jsonrpc.delta.chat/)\]
- **Python** \[[📂 source](./python) | [📦 pypi](https://pypi.org/project/deltachat) | [📚 docs](https://py.delta.chat)\] - **Python** \[[📂 source](./python) | [📦 pypi](https://pypi.org/project/deltachat) | [📚 docs](https://py.delta.chat)\]
- **Go** \[[📂 source](https://github.com/deltachat/deltachat-rpc-client-go/)\] - **Go**
- over jsonrpc: \[[📂 source](https://github.com/deltachat/deltachat-rpc-client-go/)\]
- over cffi[^1]: \[[📂 source](https://github.com/deltachat/go-deltachat/)\]
- **Free Pascal**[^1] \[[📂 source](https://github.com/deltachat/deltachat-fp/)\]
- **Java** and **Swift** (contained in the Android/iOS repos) - **Java** and **Swift** (contained in the Android/iOS repos)
The following "frontend" projects make use of the Rust-library The following "frontend" projects make use of the Rust-library
@@ -213,3 +215,5 @@ or its language bindings:
- [Telepathy](https://code.ur.gs/lupine/telepathy-padfoot/) - [Telepathy](https://code.ur.gs/lupine/telepathy-padfoot/)
- [Ubuntu Touch](https://codeberg.org/lk108/deltatouch) - [Ubuntu Touch](https://codeberg.org/lk108/deltatouch)
- several **Bots** - several **Bots**
[^1]: Out of date / unmaintained, if you like those languages feel free to start maintaining them. If you have questions we'll help you, please ask in the issues.

View File

@@ -1,4 +1,4 @@
# Releasing a new version of chatmail core # Releasing a new version of DeltaChat core
For example, to release version 1.116.0 of the core, do the following steps. For example, to release version 1.116.0 of the core, do the following steps.
@@ -14,55 +14,8 @@ For example, to release version 1.116.0 of the core, do the following steps.
5. Commit the changes as `chore(release): prepare for 1.116.0`. 5. Commit the changes as `chore(release): prepare for 1.116.0`.
Optionally, use a separate branch like `prep-1.116.0` for this commit and open a PR for review. Optionally, use a separate branch like `prep-1.116.0` for this commit and open a PR for review.
6. Push the commit to the `main` branch. 6. Tag the release: `git tag --annotate v1.116.0`.
7. Once the commit is on the `main` branch and passed CI, tag the release: `git tag --annotate v1.116.0`. 7. Push the release tag: `git push origin v1.116.0`.
8. Push the release tag: `git push origin v1.116.0`. 8. Create a GitHub release: `gh release create v1.116.0 --notes ''`.
9. Create a GitHub release: `gh release create v1.116.0 --notes ''`.
10. Update the version to the next development version:
`scripts/set_core_version.py 1.117.0-dev`.
11. Commit and push the change:
`git commit -m "chore: bump version to 1.117.0-dev" && git push origin main`.
12. Once the binaries are generated and [published](https://github.com/chatmail/core/releases),
check Windows binaries for false positive detections at [VirusTotal].
Either upload the binaries directly or submit a direct link to the artifact.
You can use [old browsers interface](https://www.virustotal.com/old-browsers/)
if there are problems with using the default website.
If you submit a direct link and get to the page saying
"No security vendors flagged this URL as malicious",
it does not mean that the file itself is not detected.
You need to go to the "details" tab
and click on the SHA-256 hash in the "Body SHA-256" section.
If any false positive is detected,
open an issue to track removing it.
See <https://github.com/chatmail/core/issues/7847>
for an example of false positive detection issue.
If there is a false positive "Microsoft" detection,
mark the issue as a blocker.
[VirusTotal]: https://www.virustotal.com/
## Dealing with antivirus false positives
If Windows release is incorrectly detected by some antivirus, submit requests to remove detection.
"Microsoft" antivirus is built in Windows and will break user setups so removing its detection should be highest priority.
To submit false positive to Microsoft, go to <https://www.microsoft.com/en-us/wdsi/filesubmission> and select "Submit file as a ... Software developer" option.
False positive contacts for other vendors can be found at <https://docs.virustotal.com/docs/false-positive-contacts>.
Not all of them may be up to date, so check the links below first.
Previously we successfully used the following contacts:
- [ESET-NOD32](mailto:samples@eset.com)
- [Symantec](https://symsubmit.symantec.com/)
## Dealing with failed releases
Once you make a GitHub release,
CI will try to build and publish [PyPI](https://pypi.org/) and [npm](https://www.npmjs.com/) packages.
If this fails for some reason, do not modify the failed tag, do not delete it and do not force-push to the `main` branch.
Fix the build process and tag a new release instead.

View File

@@ -16,12 +16,11 @@ id INTEGER PRIMARY KEY AUTOINCREMENT,
text TEXT DEFAULT '' NOT NULL -- message text text TEXT DEFAULT '' NOT NULL -- message text
) STRICT", ) STRICT",
) )
.await .await?;
.context("CREATE TABLE messages")?;
``` ```
Do not use macros like [`concat!`](https://doc.rust-lang.org/std/macro.concat.html) Do not use macros like [`concat!`](https://doc.rust-lang.org/std/macro.concat.html)
or [`indoc!`](https://docs.rs/indoc). or [`indoc!](https://docs.rs/indoc).
Do not escape newlines like this: Do not escape newlines like this:
``` ```
sql.execute( sql.execute(
@@ -30,8 +29,7 @@ id INTEGER PRIMARY KEY AUTOINCREMENT, \
text TEXT DEFAULT '' NOT NULL \ text TEXT DEFAULT '' NOT NULL \
) STRICT", ) STRICT",
) )
.await .await?;
.context("CREATE TABLE messages")?;
``` ```
Escaping newlines Escaping newlines
is prone to errors like this if space before backslash is missing: is prone to errors like this if space before backslash is missing:
@@ -65,15 +63,6 @@ an older version. Also don't change the column type, consider adding a new colum
instead. Finally, never change column semantics, this is especially dangerous because the `STRICT` instead. Finally, never change column semantics, this is especially dangerous because the `STRICT`
keyword doesn't help here. keyword doesn't help here.
Consider adding context to `anyhow` errors for SQL statements using `.context()` so that it's
possible to understand from logs which statement failed. See [Errors](#errors) for more info.
When changing complex SQL queries, test them on a new database with `EXPLAIN QUERY PLAN`
to make sure that indexes are used and large tables are not going to be scanned.
Never run `ANALYZE` on the databases,
this makes query planner unpredictable
and may make performance significantly worse: <https://github.com/chatmail/core/issues/6585>
## Errors ## Errors
Delta Chat core mostly uses [`anyhow`](https://docs.rs/anyhow/) errors. Delta Chat core mostly uses [`anyhow`](https://docs.rs/anyhow/) errors.
@@ -161,16 +150,3 @@ are documented.
Follow Rust guidelines for the documentation comments: Follow Rust guidelines for the documentation comments:
<https://rust-lang.github.io/rfcs/1574-more-api-documentation-conventions.html#summary-sentence> <https://rust-lang.github.io/rfcs/1574-more-api-documentation-conventions.html#summary-sentence>
## Do not use `into()`, `try_into()` or `parse()`
For internal types, implementing `From`, `TryFrom` or `FromStr` is discouraged.
Instead, a `new()` function is recommended.
For external types, prefer using `Type::from()`, `Type::try_from()` or `Type::from_str()`
over `into()`, `try_into()` or `parse()`.
Calling `into()`, `try_into()` or `parse()`
creates an indirection,
which is hard to follow for people who are not familiar with Rust,
or who are not using rust-analyzer.

View File

@@ -1,142 +0,0 @@
//! Benchmarks for message decryption,
//! comparing decryption of symmetrically-encrypted messages
//! to decryption of asymmetrically-encrypted messages.
//!
//! Call with
//!
//! ```text
//! cargo bench --bench decrypting --features="internals"
//! ```
//!
//! or, if you want to only run e.g. the 'Decrypt and parse a symmetrically encrypted message' benchmark:
//!
//! ```text
//! cargo bench --bench decrypting --features="internals" -- 'Decrypt and parse a symmetrically encrypted message'
//! ```
//!
//! You can also pass a substring:
//!
//! ```text
//! cargo bench --bench decrypting --features="internals" -- 'symmetrically'
//! ```
//!
//! Symmetric decryption has to try out all known secrets,
//! You can benchmark this by adapting the `NUM_SECRETS` variable.
use std::hint::black_box;
use std::sync::LazyLock;
use criterion::{Criterion, criterion_group, criterion_main};
use deltachat::internals_for_benches::create_broadcast_secret;
use deltachat::internals_for_benches::save_broadcast_secret;
use deltachat::securejoin::get_securejoin_qr;
use deltachat::{
Events, chat::ChatId, config::Config, context::Context, internals_for_benches::key_from_asc,
internals_for_benches::parse_and_get_text, internals_for_benches::store_self_keypair,
stock_str::StockStrings,
};
use tempfile::tempdir;
static NUM_BROADCAST_SECRETS: LazyLock<usize> = LazyLock::new(|| {
std::env::var("NUM_BROADCAST_SECRETS")
.unwrap_or("500".to_string())
.parse()
.unwrap()
});
static NUM_AUTH_TOKENS: LazyLock<usize> = LazyLock::new(|| {
std::env::var("NUM_AUTH_TOKENS")
.unwrap_or("5000".to_string())
.parse()
.unwrap()
});
async fn create_context() -> Context {
let dir = tempdir().unwrap();
let dbfile = dir.path().join("db.sqlite");
let context = Context::new(dbfile.as_path(), 100, Events::new(), StockStrings::new())
.await
.unwrap();
context
.set_config(Config::ConfiguredAddr, Some("bob@example.net"))
.await
.unwrap();
let secret = key_from_asc(include_str!("../test-data/key/bob-secret.asc")).unwrap();
store_self_keypair(&context, &secret)
.await
.expect("Failed to save key");
context
}
fn criterion_benchmark(c: &mut Criterion) {
let mut group = c.benchmark_group("Decrypt");
// ===========================================================================================
// Benchmarks for the whole parsing pipeline, incl. decryption (but excl. receive_imf())
// ===========================================================================================
let rt = tokio::runtime::Runtime::new().unwrap();
let mut secrets = generate_secrets();
// "secret" is the shared secret that was used to encrypt text_symmetrically_encrypted.eml.
// Put it into the middle of our secrets:
secrets[*NUM_BROADCAST_SECRETS / 2] = "secret".to_string();
let context = rt.block_on(async {
let context = create_context().await;
for (i, secret) in secrets.iter().enumerate() {
save_broadcast_secret(&context, ChatId::new(10 + i as u32), secret)
.await
.unwrap();
}
for _i in 0..*NUM_AUTH_TOKENS {
get_securejoin_qr(&context, None).await.unwrap();
}
println!("NUM_AUTH_TOKENS={}", *NUM_AUTH_TOKENS);
context
});
group.bench_function("Decrypt and parse a symmetrically encrypted message", |b| {
b.to_async(&rt).iter(|| {
let ctx = context.clone();
async move {
let text = parse_and_get_text(
&ctx,
include_bytes!("../test-data/message/text_symmetrically_encrypted.eml"),
)
.await
.unwrap();
assert_eq!(black_box(text), "Symmetrically encrypted message");
}
});
});
group.bench_function("Decrypt and parse a public-key encrypted message", |b| {
b.to_async(&rt).iter(|| {
let ctx = context.clone();
async move {
let text = parse_and_get_text(
&ctx,
include_bytes!("../test-data/message/text_from_alice_encrypted.eml"),
)
.await
.unwrap();
assert_eq!(black_box(text), "hi");
}
});
});
group.finish();
}
fn generate_secrets() -> Vec<String> {
let secrets: Vec<String> = (0..*NUM_BROADCAST_SECRETS)
.map(|_| create_broadcast_secret())
.collect();
println!("NUM_BROADCAST_SECRETS={}", *NUM_BROADCAST_SECRETS);
secrets
}
criterion_group!(benches, criterion_benchmark);
criterion_main!(benches);

View File

@@ -66,7 +66,7 @@ body = """
{% for commit in commits %} {% for commit in commits %}
- {% if commit.breaking %}[**breaking**] {% endif %}\ - {% if commit.breaking %}[**breaking**] {% endif %}\
{% if commit.scope %}{{ commit.scope }}: {% endif %}\ {% if commit.scope %}{{ commit.scope }}: {% endif %}\
{{ commit.message }}.\ {{ commit.message | upper_first }}.\
{% if commit.footers is defined %}\ {% if commit.footers is defined %}\
{% for footer in commit.footers %}{% if 'BREAKING CHANGE' in footer.token %} {% for footer in commit.footers %}{% if 'BREAKING CHANGE' in footer.token %}
{% raw %} {% endraw %}- {{ footer.value }}\ {% raw %} {% endraw %}- {{ footer.value }}\

View File

@@ -36,45 +36,6 @@ impl VcardContact {
} }
} }
fn escape(s: &str) -> String {
// https://www.rfc-editor.org/rfc/rfc6350.html#section-3.4
s
// backslash must be first!
.replace(r"\", r"\\")
.replace(',', r"\,")
.replace(';', r"\;")
.replace('\n', r"\n")
}
fn unescape(s: &str) -> String {
// https://www.rfc-editor.org/rfc/rfc6350.html#section-3.4
let mut out = String::new();
let mut chars = s.chars();
while let Some(c) = chars.next() {
if c == '\\' {
if let Some(next) = chars.next() {
match next {
'\\' | ',' | ';' => out.push(next),
'n' | 'N' => out.push('\n'),
_ => {
// Invalid escape sequence (keep unchanged)
out.push('\\');
out.push(next);
}
}
} else {
// Invalid escape sequence (keep unchanged)
out.push('\\');
}
} else {
out.push(c);
}
}
out
}
/// Returns a vCard containing given contacts. /// Returns a vCard containing given contacts.
/// ///
/// Calling [`parse_vcard()`] on the returned result is a reverse operation. /// Calling [`parse_vcard()`] on the returned result is a reverse operation.
@@ -85,6 +46,10 @@ pub fn make_vcard(contacts: &[VcardContact]) -> String {
Some(datetime.format("%Y%m%dT%H%M%SZ").to_string()) Some(datetime.format("%Y%m%dT%H%M%SZ").to_string())
} }
fn escape(s: &str) -> String {
s.replace(',', "\\,")
}
let mut res = "".to_string(); let mut res = "".to_string();
for c in contacts { for c in contacts {
// Mustn't contain ',', but it's easier to escape than to error out. // Mustn't contain ',', but it's easier to escape than to error out.
@@ -159,7 +124,7 @@ pub fn parse_vcard(vcard: &str) -> Vec<VcardContact> {
fn vcard_property<'a>(line: &'a str, property: &str) -> Option<(&'a str, String)> { fn vcard_property<'a>(line: &'a str, property: &str) -> Option<(&'a str, String)> {
let (params, value) = vcard_property_raw(line, property)?; let (params, value) = vcard_property_raw(line, property)?;
// Some fields can't contain commas, but unescape them everywhere for safety. // Some fields can't contain commas, but unescape them everywhere for safety.
Some((params, unescape(value))) Some((params, value.replace("\\,", ",")))
} }
fn base64_key(line: &str) -> Option<&str> { fn base64_key(line: &str) -> Option<&str> {
let (params, value) = vcard_property_raw(line, "key")?; let (params, value) = vcard_property_raw(line, "key")?;

View File

@@ -91,7 +91,7 @@ fn test_make_and_parse_vcard() {
authname: "Alice Wonderland".to_string(), authname: "Alice Wonderland".to_string(),
key: Some("[base64-data]".to_string()), key: Some("[base64-data]".to_string()),
profile_image: Some("image in Base64".to_string()), profile_image: Some("image in Base64".to_string()),
biography: Some("Hi,\nI'm Alice; and this is a backslash: \\".to_string()), biography: Some("Hi, I'm Alice".to_string()),
timestamp: Ok(1713465762), timestamp: Ok(1713465762),
}, },
VcardContact { VcardContact {
@@ -110,7 +110,7 @@ fn test_make_and_parse_vcard() {
FN:Alice Wonderland\r\n\ FN:Alice Wonderland\r\n\
KEY:data:application/pgp-keys;base64\\,[base64-data]\r\n\ KEY:data:application/pgp-keys;base64\\,[base64-data]\r\n\
PHOTO:data:image/jpeg;base64\\,image in Base64\r\n\ PHOTO:data:image/jpeg;base64\\,image in Base64\r\n\
NOTE:Hi\\,\\nI'm Alice\\; and this is a backslash: \\\\\r\n\ NOTE:Hi\\, I'm Alice\r\n\
REV:20240418T184242Z\r\n\ REV:20240418T184242Z\r\n\
END:VCARD\r\n", END:VCARD\r\n",
"BEGIN:VCARD\r\n\ "BEGIN:VCARD\r\n\
@@ -276,14 +276,3 @@ END:VCARD",
assert!(contacts[0].timestamp.is_err()); assert!(contacts[0].timestamp.is_err());
assert_eq!(contacts[0].profile_image.as_ref().unwrap(), "/9aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Z"); assert_eq!(contacts[0].profile_image.as_ref().unwrap(), "/9aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Z");
} }
#[test]
fn test_vcard_value_escape_unescape() {
let original = "Text, with; chars and a \\ and a newline\nand a literal newline \\n";
let expected_escaped = r"Text\, with\; chars and a \\ and a newline\nand a literal newline \\n";
let escaped = escape(original);
assert_eq!(escaped, expected_escaped);
let unescaped = unescape(&escaped);
assert_eq!(original, unescaped);
}

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "deltachat_ffi" name = "deltachat_ffi"
version = "2.50.0-dev" version = "2.20.0"
description = "Deltachat FFI" description = "Deltachat FFI"
edition = "2018" edition = "2018"
readme = "README.md" readme = "README.md"

File diff suppressed because it is too large Load Diff

View File

@@ -15,14 +15,14 @@ use std::collections::BTreeMap;
use std::convert::TryFrom; use std::convert::TryFrom;
use std::fmt::Write; use std::fmt::Write;
use std::future::Future; use std::future::Future;
use std::mem::ManuallyDrop; use std::ops::Deref;
use std::ptr; use std::ptr;
use std::str::FromStr; use std::str::FromStr;
use std::sync::{Arc, LazyLock, Mutex}; use std::sync::{Arc, LazyLock};
use std::time::{Duration, SystemTime}; use std::time::{Duration, SystemTime};
use anyhow::Context as _; use anyhow::Context as _;
use deltachat::chat::{ChatId, ChatVisibility, MessageListOptions, MuteDuration}; use deltachat::chat::{ChatId, ChatVisibility, MessageListOptions, MuteDuration, ProtectionStatus};
use deltachat::constants::DC_MSG_ID_LAST_SPECIAL; use deltachat::constants::DC_MSG_ID_LAST_SPECIAL;
use deltachat::contact::{Contact, ContactId, Origin}; use deltachat::contact::{Contact, ContactId, Origin};
use deltachat::context::{Context, ContextBuilder}; use deltachat::context::{Context, ContextBuilder};
@@ -39,6 +39,7 @@ use deltachat_jsonrpc::api::CommandApi;
use deltachat_jsonrpc::yerpc::{OutReceiver, RpcClient, RpcSession}; use deltachat_jsonrpc::yerpc::{OutReceiver, RpcClient, RpcSession};
use message::Viewtype; use message::Viewtype;
use num_traits::{FromPrimitive, ToPrimitive}; use num_traits::{FromPrimitive, ToPrimitive};
use rand::Rng;
use tokio::runtime::Runtime; use tokio::runtime::Runtime;
use tokio::sync::RwLock; use tokio::sync::RwLock;
use tokio::task::JoinHandle; use tokio::task::JoinHandle;
@@ -60,6 +61,7 @@ use self::string::*;
// - finally, this behaviour matches the old core-c API and UIs already depend on it // - finally, this behaviour matches the old core-c API and UIs already depend on it
const DC_GCM_ADDDAYMARKER: u32 = 0x01; const DC_GCM_ADDDAYMARKER: u32 = 0x01;
const DC_GCM_INFO_ONLY: u32 = 0x02;
// dc_context_t // dc_context_t
@@ -99,7 +101,7 @@ pub unsafe extern "C" fn dc_context_new(
let ctx = if blobdir.is_null() || *blobdir == 0 { let ctx = if blobdir.is_null() || *blobdir == 0 {
// generate random ID as this functionality is not yet available on the C-api. // generate random ID as this functionality is not yet available on the C-api.
let id = rand::random(); let id = rand::thread_rng().gen();
block_on( block_on(
ContextBuilder::new(as_path(dbfile).to_path_buf()) ContextBuilder::new(as_path(dbfile).to_path_buf())
.with_id(id) .with_id(id)
@@ -127,7 +129,7 @@ pub unsafe extern "C" fn dc_context_new_closed(dbfile: *const libc::c_char) -> *
return ptr::null_mut(); return ptr::null_mut();
} }
let id = rand::random(); let id = rand::thread_rng().gen();
match block_on( match block_on(
ContextBuilder::new(as_path(dbfile).to_path_buf()) ContextBuilder::new(as_path(dbfile).to_path_buf())
.with_id(id) .with_id(id)
@@ -305,17 +307,20 @@ pub unsafe extern "C" fn dc_set_stock_translation(
let msg = to_string_lossy(stock_msg); let msg = to_string_lossy(stock_msg);
let ctx = &*context; let ctx = &*context;
match StockMessage::from_u32(stock_id) block_on(async move {
.with_context(|| format!("Invalid stock message ID {stock_id}")) match StockMessage::from_u32(stock_id)
.log_err(ctx) .with_context(|| format!("Invalid stock message ID {stock_id}"))
{
Ok(id) => ctx
.set_stock_translation(id, msg)
.context("set_stock_translation failed")
.log_err(ctx) .log_err(ctx)
.is_ok() as libc::c_int, {
Err(_) => 0, Ok(id) => ctx
} .set_stock_translation(id, msg)
.await
.context("set_stock_translation failed")
.log_err(ctx)
.is_ok() as libc::c_int,
Err(_) => 0,
}
})
} }
#[no_mangle] #[no_mangle]
@@ -555,7 +560,6 @@ pub unsafe extern "C" fn dc_event_get_id(event: *mut dc_event_t) -> libc::c_int
EventType::IncomingCallAccepted { .. } => 2560, EventType::IncomingCallAccepted { .. } => 2560,
EventType::OutgoingCallAccepted { .. } => 2570, EventType::OutgoingCallAccepted { .. } => 2570,
EventType::CallEnded { .. } => 2580, EventType::CallEnded { .. } => 2580,
EventType::TransportsModified => 2600,
#[allow(unreachable_patterns)] #[allow(unreachable_patterns)]
#[cfg(test)] #[cfg(test)]
_ => unreachable!("This is just to silence a rust_analyzer false-positive"), _ => unreachable!("This is just to silence a rust_analyzer false-positive"),
@@ -590,8 +594,7 @@ pub unsafe extern "C" fn dc_event_get_data1_int(event: *mut dc_event_t) -> libc:
| EventType::AccountsBackgroundFetchDone | EventType::AccountsBackgroundFetchDone
| EventType::ChatlistChanged | EventType::ChatlistChanged
| EventType::AccountsChanged | EventType::AccountsChanged
| EventType::AccountsItemChanged | EventType::AccountsItemChanged => 0,
| EventType::TransportsModified => 0,
EventType::IncomingReaction { contact_id, .. } EventType::IncomingReaction { contact_id, .. }
| EventType::IncomingWebxdcNotify { contact_id, .. } => contact_id.to_u32() as libc::c_int, | EventType::IncomingWebxdcNotify { contact_id, .. } => contact_id.to_u32() as libc::c_int,
EventType::MsgsChanged { chat_id, .. } EventType::MsgsChanged { chat_id, .. }
@@ -676,10 +679,10 @@ pub unsafe extern "C" fn dc_event_get_data2_int(event: *mut dc_event_t) -> libc:
| EventType::ChatModified(_) | EventType::ChatModified(_)
| EventType::ChatDeleted { .. } | EventType::ChatDeleted { .. }
| EventType::WebxdcRealtimeAdvertisementReceived { .. } | EventType::WebxdcRealtimeAdvertisementReceived { .. }
| EventType::IncomingCallAccepted { .. }
| EventType::OutgoingCallAccepted { .. } | EventType::OutgoingCallAccepted { .. }
| EventType::CallEnded { .. } | EventType::CallEnded { .. }
| EventType::EventChannelOverflow { .. } | EventType::EventChannelOverflow { .. } => 0,
| EventType::TransportsModified => 0,
EventType::MsgsChanged { msg_id, .. } EventType::MsgsChanged { msg_id, .. }
| EventType::ReactionsChanged { msg_id, .. } | EventType::ReactionsChanged { msg_id, .. }
| EventType::IncomingReaction { msg_id, .. } | EventType::IncomingReaction { msg_id, .. }
@@ -698,9 +701,6 @@ pub unsafe extern "C" fn dc_event_get_data2_int(event: *mut dc_event_t) -> libc:
} => status_update_serial.to_u32() as libc::c_int, } => status_update_serial.to_u32() as libc::c_int,
EventType::WebxdcRealtimeData { data, .. } => data.len() as libc::c_int, EventType::WebxdcRealtimeData { data, .. } => data.len() as libc::c_int,
EventType::IncomingCall { has_video, .. } => *has_video as libc::c_int, EventType::IncomingCall { has_video, .. } => *has_video as libc::c_int,
EventType::IncomingCallAccepted {
from_this_device, ..
} => *from_this_device as libc::c_int,
#[allow(unreachable_patterns)] #[allow(unreachable_patterns)]
#[cfg(test)] #[cfg(test)]
@@ -781,8 +781,7 @@ pub unsafe extern "C" fn dc_event_get_data2_str(event: *mut dc_event_t) -> *mut
| EventType::AccountsChanged | EventType::AccountsChanged
| EventType::AccountsItemChanged | EventType::AccountsItemChanged
| EventType::IncomingCallAccepted { .. } | EventType::IncomingCallAccepted { .. }
| EventType::WebxdcRealtimeAdvertisementReceived { .. } | EventType::WebxdcRealtimeAdvertisementReceived { .. } => ptr::null_mut(),
| EventType::TransportsModified => ptr::null_mut(),
EventType::IncomingCall { EventType::IncomingCall {
place_call_info, .. place_call_info, ..
} => { } => {
@@ -1180,7 +1179,6 @@ pub unsafe extern "C" fn dc_place_outgoing_call(
context: *mut dc_context_t, context: *mut dc_context_t,
chat_id: u32, chat_id: u32,
place_call_info: *const libc::c_char, place_call_info: *const libc::c_char,
has_video: bool,
) -> u32 { ) -> u32 {
if context.is_null() || chat_id == 0 { if context.is_null() || chat_id == 0 {
eprintln!("ignoring careless call to dc_place_outgoing_call()"); eprintln!("ignoring careless call to dc_place_outgoing_call()");
@@ -1190,7 +1188,7 @@ pub unsafe extern "C" fn dc_place_outgoing_call(
let chat_id = ChatId::new(chat_id); let chat_id = ChatId::new(chat_id);
let place_call_info = to_string_lossy(place_call_info); let place_call_info = to_string_lossy(place_call_info);
block_on(ctx.place_outgoing_call(chat_id, place_call_info, has_video)) block_on(ctx.place_outgoing_call(chat_id, place_call_info))
.context("Failed to place call") .context("Failed to place call")
.log_err(ctx) .log_err(ctx)
.map(|msg_id| msg_id.to_u32()) .map(|msg_id| msg_id.to_u32())
@@ -1337,13 +1335,17 @@ pub unsafe extern "C" fn dc_get_chat_msgs(
} }
let ctx = &*context; let ctx = &*context;
let info_only = (flags & DC_GCM_INFO_ONLY) != 0;
let add_daymarker = (flags & DC_GCM_ADDDAYMARKER) != 0; let add_daymarker = (flags & DC_GCM_ADDDAYMARKER) != 0;
block_on(async move { block_on(async move {
Box::into_raw(Box::new( Box::into_raw(Box::new(
chat::get_chat_msgs_ex( chat::get_chat_msgs_ex(
ctx, ctx,
ChatId::new(chat_id), ChatId::new(chat_id),
MessageListOptions { add_daymarker }, MessageListOptions {
info_only,
add_daymarker,
},
) )
.await .await
.unwrap_or_log_default(ctx, "failed to get chat msgs") .unwrap_or_log_default(ctx, "failed to get chat msgs")
@@ -1515,23 +1517,6 @@ pub unsafe extern "C" fn dc_marknoticed_chat(context: *mut dc_context_t, chat_id
}) })
} }
#[no_mangle]
pub unsafe extern "C" fn dc_markfresh_chat(context: *mut dc_context_t, chat_id: u32) {
if context.is_null() {
eprintln!("ignoring careless call to dc_markfresh_chat()");
return;
}
let ctx = &*context;
block_on(async move {
chat::markfresh_chat(ctx, ChatId::new(chat_id))
.await
.context("Failed markfresh chat")
.log_err(ctx)
.unwrap_or(())
})
}
fn from_prim<S, T>(s: S) -> Option<T> fn from_prim<S, T>(s: S) -> Option<T>
where where
T: FromPrimitive, T: FromPrimitive,
@@ -1736,7 +1721,7 @@ pub unsafe extern "C" fn dc_get_chat(context: *mut dc_context_t, chat_id: u32) -
#[no_mangle] #[no_mangle]
pub unsafe extern "C" fn dc_create_group_chat( pub unsafe extern "C" fn dc_create_group_chat(
context: *mut dc_context_t, context: *mut dc_context_t,
_protect: libc::c_int, protect: libc::c_int,
name: *const libc::c_char, name: *const libc::c_char,
) -> u32 { ) -> u32 {
if context.is_null() || name.is_null() { if context.is_null() || name.is_null() {
@@ -1744,12 +1729,22 @@ pub unsafe extern "C" fn dc_create_group_chat(
return 0; return 0;
} }
let ctx = &*context; let ctx = &*context;
let Some(protect) = ProtectionStatus::from_i32(protect)
block_on(chat::create_group(ctx, &to_string_lossy(name))) .context("Bad protect-value for dc_create_group_chat()")
.context("Failed to create group chat")
.log_err(ctx) .log_err(ctx)
.map(|id| id.to_u32()) .ok()
.unwrap_or(0) else {
return 0;
};
block_on(async move {
chat::create_group_chat(ctx, protect, &to_string_lossy(name))
.await
.context("Failed to create group chat")
.log_err(ctx)
.map(|id| id.to_u32())
.unwrap_or(0)
})
} }
#[no_mangle] #[no_mangle]
@@ -2273,6 +2268,22 @@ pub unsafe extern "C" fn dc_get_contacts(
}) })
} }
#[no_mangle]
pub unsafe extern "C" fn dc_get_blocked_cnt(context: *mut dc_context_t) -> libc::c_int {
if context.is_null() {
eprintln!("ignoring careless call to dc_get_blocked_cnt()");
return 0;
}
let ctx = &*context;
block_on(async move {
Contact::get_all_blocked(ctx)
.await
.unwrap_or_log_default(ctx, "failed to get blocked count")
.len() as libc::c_int
})
}
#[no_mangle] #[no_mangle]
pub unsafe extern "C" fn dc_get_blocked_contacts( pub unsafe extern "C" fn dc_get_blocked_contacts(
context: *mut dc_context_t, context: *mut dc_context_t,
@@ -2438,6 +2449,45 @@ pub unsafe extern "C" fn dc_imex_has_backup(
} }
} }
#[no_mangle]
pub unsafe extern "C" fn dc_initiate_key_transfer(context: *mut dc_context_t) -> *mut libc::c_char {
if context.is_null() {
eprintln!("ignoring careless call to dc_initiate_key_transfer()");
return ptr::null_mut(); // NULL explicitly defined as "error"
}
let ctx = &*context;
match block_on(imex::initiate_key_transfer(ctx))
.context("dc_initiate_key_transfer()")
.log_err(ctx)
{
Ok(res) => res.strdup(),
Err(_) => ptr::null_mut(),
}
}
#[no_mangle]
pub unsafe extern "C" fn dc_continue_key_transfer(
context: *mut dc_context_t,
msg_id: u32,
setup_code: *const libc::c_char,
) -> libc::c_int {
if context.is_null() || msg_id <= constants::DC_MSG_ID_LAST_SPECIAL || setup_code.is_null() {
eprintln!("ignoring careless call to dc_continue_key_transfer()");
return 0;
}
let ctx = &*context;
block_on(imex::continue_key_transfer(
ctx,
MsgId::new(msg_id),
&to_string_lossy(setup_code),
))
.context("dc_continue_key_transfer")
.log_err(ctx)
.is_ok() as libc::c_int
}
#[no_mangle] #[no_mangle]
pub unsafe extern "C" fn dc_stop_ongoing_process(context: *mut dc_context_t) { pub unsafe extern "C" fn dc_stop_ongoing_process(context: *mut dc_context_t) {
if context.is_null() { if context.is_null() {
@@ -2541,7 +2591,7 @@ pub unsafe extern "C" fn dc_send_locations_to_chat(
} }
let ctx = &*context; let ctx = &*context;
block_on(location::send_to_chat( block_on(location::send_locations_to_chat(
ctx, ctx,
ChatId::new(chat_id), ChatId::new(chat_id),
seconds as i64, seconds as i64,
@@ -2561,14 +2611,14 @@ pub unsafe extern "C" fn dc_is_sending_locations_to_chat(
return 0; return 0;
} }
let ctx = &*context; let ctx = &*context;
if chat_id == 0 { let chat_id = if chat_id == 0 {
block_on(location::is_sending(ctx)) None
.unwrap_or_log_default(ctx, "Failed is_sending_locations()") as libc::c_int
} else { } else {
block_on(location::is_sending_to_chat(ctx, ChatId::new(chat_id))) Some(ChatId::new(chat_id))
.unwrap_or_log_default(ctx, "Failed is_sending_locations_to_chat()") };
as libc::c_int
} block_on(location::is_sending_locations_to_chat(ctx, chat_id))
.unwrap_or_log_default(ctx, "Failed dc_is_sending_locations_to_chat()") as libc::c_int
} }
#[no_mangle] #[no_mangle]
@@ -2584,9 +2634,12 @@ pub unsafe extern "C" fn dc_set_location(
} }
let ctx = &*context; let ctx = &*context;
block_on(location::set(ctx, latitude, longitude, accuracy)) block_on(async move {
.log_err(ctx) location::set(ctx, latitude, longitude, accuracy)
.unwrap_or_default() as libc::c_int .await
.log_err(ctx)
.unwrap_or_default()
}) as libc::c_int
} }
#[no_mangle] #[no_mangle]
@@ -2621,6 +2674,23 @@ pub unsafe extern "C" fn dc_get_locations(
}) })
} }
#[no_mangle]
pub unsafe extern "C" fn dc_delete_all_locations(context: *mut dc_context_t) {
if context.is_null() {
eprintln!("ignoring careless call to dc_delete_all_locations()");
return;
}
let ctx = &*context;
block_on(async move {
location::delete_all(ctx)
.await
.context("Failed to delete locations")
.log_err(ctx)
.ok()
});
}
#[no_mangle] #[no_mangle]
pub unsafe extern "C" fn dc_create_qr_svg(payload: *const libc::c_char) -> *mut libc::c_char { pub unsafe extern "C" fn dc_create_qr_svg(payload: *const libc::c_char) -> *mut libc::c_char {
if payload.is_null() { if payload.is_null() {
@@ -2801,7 +2871,7 @@ pub unsafe extern "C" fn dc_array_search_id(
// Returns 1 if location belongs to the track of the user, // Returns 1 if location belongs to the track of the user,
// 0 if location was reported independently. // 0 if location was reported independently.
#[no_mangle] #[no_mangle]
pub unsafe extern "C" fn dc_array_is_independent( pub unsafe fn dc_array_is_independent(
array: *const dc_array_t, array: *const dc_array_t,
index: libc::size_t, index: libc::size_t,
) -> libc::c_int { ) -> libc::c_int {
@@ -3136,8 +3206,13 @@ pub unsafe extern "C" fn dc_chat_can_send(chat: *mut dc_chat_t) -> libc::c_int {
} }
#[no_mangle] #[no_mangle]
pub extern "C" fn dc_chat_is_protected(_chat: *mut dc_chat_t) -> libc::c_int { pub unsafe extern "C" fn dc_chat_is_protected(chat: *mut dc_chat_t) -> libc::c_int {
0 if chat.is_null() {
eprintln!("ignoring careless call to dc_chat_is_protected()");
return 0;
}
let ffi_chat = &*chat;
ffi_chat.chat.is_protected() as libc::c_int
} }
#[no_mangle] #[no_mangle]
@@ -3740,6 +3815,16 @@ pub unsafe extern "C" fn dc_msg_get_webxdc_href(msg: *mut dc_msg_t) -> *mut libc
ffi_msg.message.get_webxdc_href().strdup() ffi_msg.message.get_webxdc_href().strdup()
} }
#[no_mangle]
pub unsafe extern "C" fn dc_msg_is_setupmessage(msg: *mut dc_msg_t) -> libc::c_int {
if msg.is_null() {
eprintln!("ignoring careless call to dc_msg_is_setupmessage()");
return 0;
}
let ffi_msg = &*msg;
ffi_msg.message.is_setupmessage().into()
}
#[no_mangle] #[no_mangle]
pub unsafe extern "C" fn dc_msg_has_html(msg: *mut dc_msg_t) -> libc::c_int { pub unsafe extern "C" fn dc_msg_has_html(msg: *mut dc_msg_t) -> libc::c_int {
if msg.is_null() { if msg.is_null() {
@@ -3750,6 +3835,20 @@ pub unsafe extern "C" fn dc_msg_has_html(msg: *mut dc_msg_t) -> libc::c_int {
ffi_msg.message.has_html().into() ffi_msg.message.has_html().into()
} }
#[no_mangle]
pub unsafe extern "C" fn dc_msg_get_setupcodebegin(msg: *mut dc_msg_t) -> *mut libc::c_char {
if msg.is_null() {
eprintln!("ignoring careless call to dc_msg_get_setupcodebegin()");
return "".strdup();
}
let ffi_msg = &*msg;
let ctx = &*ffi_msg.context;
block_on(ffi_msg.message.get_setupcodebegin(ctx))
.unwrap_or_default()
.strdup()
}
#[no_mangle] #[no_mangle]
pub unsafe extern "C" fn dc_msg_set_text(msg: *mut dc_msg_t, text: *const libc::c_char) { pub unsafe extern "C" fn dc_msg_set_text(msg: *mut dc_msg_t, text: *const libc::c_char) {
if msg.is_null() { if msg.is_null() {
@@ -4029,6 +4128,16 @@ pub unsafe extern "C" fn dc_msg_get_saved_msg_id(msg: *const dc_msg_t) -> u32 {
}) })
} }
#[no_mangle]
pub unsafe extern "C" fn dc_msg_force_plaintext(msg: *mut dc_msg_t) {
if msg.is_null() {
eprintln!("ignoring careless call to dc_msg_force_plaintext()");
return;
}
let ffi_msg = &mut *msg;
ffi_msg.message.force_plaintext();
}
// dc_contact_t // dc_contact_t
/// FFI struct for [dc_contact_t] /// FFI struct for [dc_contact_t]
@@ -4147,17 +4256,7 @@ pub unsafe extern "C" fn dc_contact_get_color(contact: *mut dc_contact_t) -> u32
return 0; return 0;
} }
let ffi_contact = &*contact; let ffi_contact = &*contact;
let ctx = &*ffi_contact.context; ffi_contact.contact.get_color()
block_on(async move {
ffi_contact
.contact
// We don't want any UIs displaying gray self-color.
.get_or_gen_color(ctx)
.await
.context("Contact::get_color()")
.log_err(ctx)
.unwrap_or(0)
})
} }
#[no_mangle] #[no_mangle]
@@ -4562,9 +4661,13 @@ pub unsafe extern "C" fn dc_provider_new_from_email(
let ctx = &*context; let ctx = &*context;
match provider::get_provider_info_by_addr(addr.as_str()) match block_on(provider::get_provider_info_by_addr(
.log_err(ctx) ctx,
.unwrap_or_default() addr.as_str(),
true,
))
.log_err(ctx)
.unwrap_or_default()
{ {
Some(provider) => provider, Some(provider) => provider,
None => ptr::null_mut(), None => ptr::null_mut(),
@@ -4583,13 +4686,25 @@ pub unsafe extern "C" fn dc_provider_new_from_email_with_dns(
let addr = to_string_lossy(addr); let addr = to_string_lossy(addr);
let ctx = &*context; let ctx = &*context;
let proxy_enabled = block_on(ctx.get_config_bool(config::Config::ProxyEnabled))
.context("Can't get config")
.log_err(ctx);
match provider::get_provider_info_by_addr(addr.as_str()) match proxy_enabled {
.log_err(ctx) Ok(proxy_enabled) => {
.unwrap_or_default() match block_on(provider::get_provider_info_by_addr(
{ ctx,
Some(provider) => provider, addr.as_str(),
None => ptr::null_mut(), proxy_enabled,
))
.log_err(ctx)
.unwrap_or_default()
{
Some(provider) => provider,
None => ptr::null_mut(),
}
}
Err(_) => ptr::null_mut(),
} }
} }
@@ -4642,13 +4757,33 @@ pub unsafe extern "C" fn dc_provider_unref(provider: *mut dc_provider_t) {
/// Reader-writer lock wrapper for accounts manager to guarantee thread safety when using /// Reader-writer lock wrapper for accounts manager to guarantee thread safety when using
/// `dc_accounts_t` in multiple threads at once. /// `dc_accounts_t` in multiple threads at once.
pub type dc_accounts_t = RwLock<Accounts>; pub struct AccountsWrapper {
inner: Arc<RwLock<Accounts>>,
}
impl Deref for AccountsWrapper {
type Target = Arc<RwLock<Accounts>>;
fn deref(&self) -> &Self::Target {
&self.inner
}
}
impl AccountsWrapper {
fn new(accounts: Accounts) -> Self {
let inner = Arc::new(RwLock::new(accounts));
Self { inner }
}
}
/// Struct representing a list of deltachat accounts.
pub type dc_accounts_t = AccountsWrapper;
#[no_mangle] #[no_mangle]
pub unsafe extern "C" fn dc_accounts_new( pub unsafe extern "C" fn dc_accounts_new(
dir: *const libc::c_char, dir: *const libc::c_char,
writable: libc::c_int, writable: libc::c_int,
) -> *const dc_accounts_t { ) -> *mut dc_accounts_t {
setup_panic!(); setup_panic!();
if dir.is_null() { if dir.is_null() {
@@ -4659,99 +4794,7 @@ pub unsafe extern "C" fn dc_accounts_new(
let accs = block_on(Accounts::new(as_path(dir).into(), writable != 0)); let accs = block_on(Accounts::new(as_path(dir).into(), writable != 0));
match accs { match accs {
Ok(accs) => Arc::into_raw(Arc::new(RwLock::new(accs))), Ok(accs) => Box::into_raw(Box::new(AccountsWrapper::new(accs))),
Err(err) => {
// We are using Anyhow's .context() and to show the inner error, too, we need the {:#}:
eprintln!("failed to create accounts: {err:#}");
ptr::null_mut()
}
}
}
pub type dc_event_channel_t = Mutex<Option<Events>>;
#[no_mangle]
pub unsafe extern "C" fn dc_event_channel_new() -> *mut dc_event_channel_t {
Box::into_raw(Box::new(Mutex::new(Some(Events::new()))))
}
/// Release the events channel structure.
///
/// This function releases the memory of the `dc_event_channel_t` structure.
///
/// you can call it after calling dc_accounts_new_with_event_channel,
/// which took the events channel out of it already, so this just frees the underlying option.
#[no_mangle]
pub unsafe extern "C" fn dc_event_channel_unref(event_channel: *mut dc_event_channel_t) {
if event_channel.is_null() {
eprintln!("ignoring careless call to dc_event_channel_unref()");
return;
}
drop(Box::from_raw(event_channel))
}
#[no_mangle]
pub unsafe extern "C" fn dc_event_channel_get_event_emitter(
event_channel: *mut dc_event_channel_t,
) -> *mut dc_event_emitter_t {
if event_channel.is_null() {
eprintln!("ignoring careless call to dc_event_channel_get_event_emitter()");
return ptr::null_mut();
}
let Some(event_channel) = &*(*event_channel)
.lock()
.expect("call to dc_event_channel_get_event_emitter() failed: mutex is poisoned")
else {
eprintln!(
"ignoring careless call to dc_event_channel_get_event_emitter()
-> channel was already consumed, make sure you call this before dc_accounts_new_with_event_channel"
);
return ptr::null_mut();
};
let emitter = event_channel.get_emitter();
Box::into_raw(Box::new(emitter))
}
#[no_mangle]
pub unsafe extern "C" fn dc_accounts_new_with_event_channel(
dir: *const libc::c_char,
writable: libc::c_int,
event_channel: *mut dc_event_channel_t,
) -> *const dc_accounts_t {
setup_panic!();
if dir.is_null() || event_channel.is_null() {
eprintln!("ignoring careless call to dc_accounts_new_with_event_channel()");
return ptr::null_mut();
}
// consuming channel enforce that you need to get the event emitter
// before initializing the account manager,
// so that you don't miss events/errors during initialisation.
// It also prevents you from using the same channel on multiple account managers.
let Some(event_channel) = (*event_channel)
.lock()
.expect("call to dc_event_channel_get_event_emitter() failed: mutex is poisoned")
.take()
else {
eprintln!(
"ignoring careless call to dc_accounts_new_with_event_channel()
-> channel was already consumed"
);
return ptr::null_mut();
};
let accs = block_on(Accounts::new_with_events(
as_path(dir).into(),
writable != 0,
event_channel,
));
match accs {
Ok(accs) => Arc::into_raw(Arc::new(RwLock::new(accs))),
Err(err) => { Err(err) => {
// We are using Anyhow's .context() and to show the inner error, too, we need the {:#}: // We are using Anyhow's .context() and to show the inner error, too, we need the {:#}:
eprintln!("failed to create accounts: {err:#}"); eprintln!("failed to create accounts: {err:#}");
@@ -4764,17 +4807,17 @@ pub unsafe extern "C" fn dc_accounts_new_with_event_channel(
/// ///
/// This function releases the memory of the `dc_accounts_t` structure. /// This function releases the memory of the `dc_accounts_t` structure.
#[no_mangle] #[no_mangle]
pub unsafe extern "C" fn dc_accounts_unref(accounts: *const dc_accounts_t) { pub unsafe extern "C" fn dc_accounts_unref(accounts: *mut dc_accounts_t) {
if accounts.is_null() { if accounts.is_null() {
eprintln!("ignoring careless call to dc_accounts_unref()"); eprintln!("ignoring careless call to dc_accounts_unref()");
return; return;
} }
drop(Arc::from_raw(accounts)); let _ = Box::from_raw(accounts);
} }
#[no_mangle] #[no_mangle]
pub unsafe extern "C" fn dc_accounts_get_account( pub unsafe extern "C" fn dc_accounts_get_account(
accounts: *const dc_accounts_t, accounts: *mut dc_accounts_t,
id: u32, id: u32,
) -> *mut dc_context_t { ) -> *mut dc_context_t {
if accounts.is_null() { if accounts.is_null() {
@@ -4791,7 +4834,7 @@ pub unsafe extern "C" fn dc_accounts_get_account(
#[no_mangle] #[no_mangle]
pub unsafe extern "C" fn dc_accounts_get_selected_account( pub unsafe extern "C" fn dc_accounts_get_selected_account(
accounts: *const dc_accounts_t, accounts: *mut dc_accounts_t,
) -> *mut dc_context_t { ) -> *mut dc_context_t {
if accounts.is_null() { if accounts.is_null() {
eprintln!("ignoring careless call to dc_accounts_get_selected_account()"); eprintln!("ignoring careless call to dc_accounts_get_selected_account()");
@@ -4807,7 +4850,7 @@ pub unsafe extern "C" fn dc_accounts_get_selected_account(
#[no_mangle] #[no_mangle]
pub unsafe extern "C" fn dc_accounts_select_account( pub unsafe extern "C" fn dc_accounts_select_account(
accounts: *const dc_accounts_t, accounts: *mut dc_accounts_t,
id: u32, id: u32,
) -> libc::c_int { ) -> libc::c_int {
if accounts.is_null() { if accounts.is_null() {
@@ -4831,13 +4874,13 @@ pub unsafe extern "C" fn dc_accounts_select_account(
} }
#[no_mangle] #[no_mangle]
pub unsafe extern "C" fn dc_accounts_add_account(accounts: *const dc_accounts_t) -> u32 { pub unsafe extern "C" fn dc_accounts_add_account(accounts: *mut dc_accounts_t) -> u32 {
if accounts.is_null() { if accounts.is_null() {
eprintln!("ignoring careless call to dc_accounts_add_account()"); eprintln!("ignoring careless call to dc_accounts_add_account()");
return 0; return 0;
} }
let accounts = &*accounts; let accounts = &mut *accounts;
block_on(async move { block_on(async move {
let mut accounts = accounts.write().await; let mut accounts = accounts.write().await;
@@ -4852,13 +4895,13 @@ pub unsafe extern "C" fn dc_accounts_add_account(accounts: *const dc_accounts_t)
} }
#[no_mangle] #[no_mangle]
pub unsafe extern "C" fn dc_accounts_add_closed_account(accounts: *const dc_accounts_t) -> u32 { pub unsafe extern "C" fn dc_accounts_add_closed_account(accounts: *mut dc_accounts_t) -> u32 {
if accounts.is_null() { if accounts.is_null() {
eprintln!("ignoring careless call to dc_accounts_add_closed_account()"); eprintln!("ignoring careless call to dc_accounts_add_closed_account()");
return 0; return 0;
} }
let accounts = &*accounts; let accounts = &mut *accounts;
block_on(async move { block_on(async move {
let mut accounts = accounts.write().await; let mut accounts = accounts.write().await;
@@ -4874,7 +4917,7 @@ pub unsafe extern "C" fn dc_accounts_add_closed_account(accounts: *const dc_acco
#[no_mangle] #[no_mangle]
pub unsafe extern "C" fn dc_accounts_remove_account( pub unsafe extern "C" fn dc_accounts_remove_account(
accounts: *const dc_accounts_t, accounts: *mut dc_accounts_t,
id: u32, id: u32,
) -> libc::c_int { ) -> libc::c_int {
if accounts.is_null() { if accounts.is_null() {
@@ -4882,7 +4925,7 @@ pub unsafe extern "C" fn dc_accounts_remove_account(
return 0; return 0;
} }
let accounts = &*accounts; let accounts = &mut *accounts;
block_on(async move { block_on(async move {
let mut accounts = accounts.write().await; let mut accounts = accounts.write().await;
@@ -4900,7 +4943,7 @@ pub unsafe extern "C" fn dc_accounts_remove_account(
#[no_mangle] #[no_mangle]
pub unsafe extern "C" fn dc_accounts_migrate_account( pub unsafe extern "C" fn dc_accounts_migrate_account(
accounts: *const dc_accounts_t, accounts: *mut dc_accounts_t,
dbfile: *const libc::c_char, dbfile: *const libc::c_char,
) -> u32 { ) -> u32 {
if accounts.is_null() || dbfile.is_null() { if accounts.is_null() || dbfile.is_null() {
@@ -4908,7 +4951,7 @@ pub unsafe extern "C" fn dc_accounts_migrate_account(
return 0; return 0;
} }
let accounts = &*accounts; let accounts = &mut *accounts;
let dbfile = to_string_lossy(dbfile); let dbfile = to_string_lossy(dbfile);
block_on(async move { block_on(async move {
@@ -4929,7 +4972,7 @@ pub unsafe extern "C" fn dc_accounts_migrate_account(
} }
#[no_mangle] #[no_mangle]
pub unsafe extern "C" fn dc_accounts_get_all(accounts: *const dc_accounts_t) -> *mut dc_array_t { pub unsafe extern "C" fn dc_accounts_get_all(accounts: *mut dc_accounts_t) -> *mut dc_array_t {
if accounts.is_null() { if accounts.is_null() {
eprintln!("ignoring careless call to dc_accounts_get_all()"); eprintln!("ignoring careless call to dc_accounts_get_all()");
return ptr::null_mut(); return ptr::null_mut();
@@ -4943,18 +4986,18 @@ pub unsafe extern "C" fn dc_accounts_get_all(accounts: *const dc_accounts_t) ->
} }
#[no_mangle] #[no_mangle]
pub unsafe extern "C" fn dc_accounts_start_io(accounts: *const dc_accounts_t) { pub unsafe extern "C" fn dc_accounts_start_io(accounts: *mut dc_accounts_t) {
if accounts.is_null() { if accounts.is_null() {
eprintln!("ignoring careless call to dc_accounts_start_io()"); eprintln!("ignoring careless call to dc_accounts_start_io()");
return; return;
} }
let accounts = &*accounts; let accounts = &mut *accounts;
block_on(async move { accounts.write().await.start_io().await }); block_on(async move { accounts.write().await.start_io().await });
} }
#[no_mangle] #[no_mangle]
pub unsafe extern "C" fn dc_accounts_stop_io(accounts: *const dc_accounts_t) { pub unsafe extern "C" fn dc_accounts_stop_io(accounts: *mut dc_accounts_t) {
if accounts.is_null() { if accounts.is_null() {
eprintln!("ignoring careless call to dc_accounts_stop_io()"); eprintln!("ignoring careless call to dc_accounts_stop_io()");
return; return;
@@ -4965,7 +5008,7 @@ pub unsafe extern "C" fn dc_accounts_stop_io(accounts: *const dc_accounts_t) {
} }
#[no_mangle] #[no_mangle]
pub unsafe extern "C" fn dc_accounts_maybe_network(accounts: *const dc_accounts_t) { pub unsafe extern "C" fn dc_accounts_maybe_network(accounts: *mut dc_accounts_t) {
if accounts.is_null() { if accounts.is_null() {
eprintln!("ignoring careless call to dc_accounts_maybe_network()"); eprintln!("ignoring careless call to dc_accounts_maybe_network()");
return; return;
@@ -4976,7 +5019,7 @@ pub unsafe extern "C" fn dc_accounts_maybe_network(accounts: *const dc_accounts_
} }
#[no_mangle] #[no_mangle]
pub unsafe extern "C" fn dc_accounts_maybe_network_lost(accounts: *const dc_accounts_t) { pub unsafe extern "C" fn dc_accounts_maybe_network_lost(accounts: *mut dc_accounts_t) {
if accounts.is_null() { if accounts.is_null() {
eprintln!("ignoring careless call to dc_accounts_maybe_network_lost()"); eprintln!("ignoring careless call to dc_accounts_maybe_network_lost()");
return; return;
@@ -4988,7 +5031,7 @@ pub unsafe extern "C" fn dc_accounts_maybe_network_lost(accounts: *const dc_acco
#[no_mangle] #[no_mangle]
pub unsafe extern "C" fn dc_accounts_background_fetch( pub unsafe extern "C" fn dc_accounts_background_fetch(
accounts: *const dc_accounts_t, accounts: *mut dc_accounts_t,
timeout_in_seconds: u64, timeout_in_seconds: u64,
) -> libc::c_int { ) -> libc::c_int {
if accounts.is_null() || timeout_in_seconds <= 2 { if accounts.is_null() || timeout_in_seconds <= 2 {
@@ -5006,20 +5049,9 @@ pub unsafe extern "C" fn dc_accounts_background_fetch(
1 1
} }
#[no_mangle]
pub unsafe extern "C" fn dc_accounts_stop_background_fetch(accounts: *const dc_accounts_t) {
if accounts.is_null() {
eprintln!("ignoring careless call to dc_accounts_stop_background_fetch()");
return;
}
let accounts = &*accounts;
block_on(accounts.read()).stop_background_fetch();
}
#[no_mangle] #[no_mangle]
pub unsafe extern "C" fn dc_accounts_set_push_device_token( pub unsafe extern "C" fn dc_accounts_set_push_device_token(
accounts: *const dc_accounts_t, accounts: *mut dc_accounts_t,
token: *const libc::c_char, token: *const libc::c_char,
) { ) {
if accounts.is_null() { if accounts.is_null() {
@@ -5042,7 +5074,7 @@ pub unsafe extern "C" fn dc_accounts_set_push_device_token(
#[no_mangle] #[no_mangle]
pub unsafe extern "C" fn dc_accounts_get_event_emitter( pub unsafe extern "C" fn dc_accounts_get_event_emitter(
accounts: *const dc_accounts_t, accounts: *mut dc_accounts_t,
) -> *mut dc_event_emitter_t { ) -> *mut dc_event_emitter_t {
if accounts.is_null() { if accounts.is_null() {
eprintln!("ignoring careless call to dc_accounts_get_event_emitter()"); eprintln!("ignoring careless call to dc_accounts_get_event_emitter()");
@@ -5062,17 +5094,17 @@ pub struct dc_jsonrpc_instance_t {
#[no_mangle] #[no_mangle]
pub unsafe extern "C" fn dc_jsonrpc_init( pub unsafe extern "C" fn dc_jsonrpc_init(
account_manager: *const dc_accounts_t, account_manager: *mut dc_accounts_t,
) -> *mut dc_jsonrpc_instance_t { ) -> *mut dc_jsonrpc_instance_t {
if account_manager.is_null() { if account_manager.is_null() {
eprintln!("ignoring careless call to dc_jsonrpc_init()"); eprintln!("ignoring careless call to dc_jsonrpc_init()");
return ptr::null_mut(); return ptr::null_mut();
} }
let account_manager = ManuallyDrop::new(Arc::from_raw(account_manager)); let account_manager = &*account_manager;
let cmd_api = block_on(deltachat_jsonrpc::api::CommandApi::from_arc(Arc::clone( let cmd_api = block_on(deltachat_jsonrpc::api::CommandApi::from_arc(
&account_manager, account_manager.inner.clone(),
))); ));
let (request_handle, receiver) = RpcClient::new(); let (request_handle, receiver) = RpcClient::new();
let handle = RpcSession::new(request_handle, cmd_api); let handle = RpcSession::new(request_handle, cmd_api);

View File

@@ -45,7 +45,6 @@ impl Lot {
Self::Qr(qr) => match qr { Self::Qr(qr) => match qr {
Qr::AskVerifyContact { .. } => None, Qr::AskVerifyContact { .. } => None,
Qr::AskVerifyGroup { grpname, .. } => Some(Cow::Borrowed(grpname)), Qr::AskVerifyGroup { grpname, .. } => Some(Cow::Borrowed(grpname)),
Qr::AskJoinBroadcast { name, .. } => Some(Cow::Borrowed(name)),
Qr::FprOk { .. } => None, Qr::FprOk { .. } => None,
Qr::FprMismatch { .. } => None, Qr::FprMismatch { .. } => None,
Qr::FprWithoutAddr { fingerprint, .. } => Some(Cow::Borrowed(fingerprint)), Qr::FprWithoutAddr { fingerprint, .. } => Some(Cow::Borrowed(fingerprint)),
@@ -58,10 +57,8 @@ impl Lot {
Qr::Text { text } => Some(Cow::Borrowed(text)), Qr::Text { text } => Some(Cow::Borrowed(text)),
Qr::WithdrawVerifyContact { .. } => None, Qr::WithdrawVerifyContact { .. } => None,
Qr::WithdrawVerifyGroup { grpname, .. } => Some(Cow::Borrowed(grpname)), Qr::WithdrawVerifyGroup { grpname, .. } => Some(Cow::Borrowed(grpname)),
Qr::WithdrawJoinBroadcast { name, .. } => Some(Cow::Borrowed(name)),
Qr::ReviveVerifyContact { .. } => None, Qr::ReviveVerifyContact { .. } => None,
Qr::ReviveVerifyGroup { grpname, .. } => Some(Cow::Borrowed(grpname)), Qr::ReviveVerifyGroup { grpname, .. } => Some(Cow::Borrowed(grpname)),
Qr::ReviveJoinBroadcast { name, .. } => Some(Cow::Borrowed(name)),
Qr::Login { address, .. } => Some(Cow::Borrowed(address)), Qr::Login { address, .. } => Some(Cow::Borrowed(address)),
}, },
Self::Error(err) => Some(Cow::Borrowed(err)), Self::Error(err) => Some(Cow::Borrowed(err)),
@@ -101,7 +98,6 @@ impl Lot {
Self::Qr(qr) => match qr { Self::Qr(qr) => match qr {
Qr::AskVerifyContact { .. } => LotState::QrAskVerifyContact, Qr::AskVerifyContact { .. } => LotState::QrAskVerifyContact,
Qr::AskVerifyGroup { .. } => LotState::QrAskVerifyGroup, Qr::AskVerifyGroup { .. } => LotState::QrAskVerifyGroup,
Qr::AskJoinBroadcast { .. } => LotState::QrAskJoinBroadcast,
Qr::FprOk { .. } => LotState::QrFprOk, Qr::FprOk { .. } => LotState::QrFprOk,
Qr::FprMismatch { .. } => LotState::QrFprMismatch, Qr::FprMismatch { .. } => LotState::QrFprMismatch,
Qr::FprWithoutAddr { .. } => LotState::QrFprWithoutAddr, Qr::FprWithoutAddr { .. } => LotState::QrFprWithoutAddr,
@@ -114,10 +110,8 @@ impl Lot {
Qr::Text { .. } => LotState::QrText, Qr::Text { .. } => LotState::QrText,
Qr::WithdrawVerifyContact { .. } => LotState::QrWithdrawVerifyContact, Qr::WithdrawVerifyContact { .. } => LotState::QrWithdrawVerifyContact,
Qr::WithdrawVerifyGroup { .. } => LotState::QrWithdrawVerifyGroup, Qr::WithdrawVerifyGroup { .. } => LotState::QrWithdrawVerifyGroup,
Qr::WithdrawJoinBroadcast { .. } => LotState::QrWithdrawJoinBroadcast,
Qr::ReviveVerifyContact { .. } => LotState::QrReviveVerifyContact, Qr::ReviveVerifyContact { .. } => LotState::QrReviveVerifyContact,
Qr::ReviveVerifyGroup { .. } => LotState::QrReviveVerifyGroup, Qr::ReviveVerifyGroup { .. } => LotState::QrReviveVerifyGroup,
Qr::ReviveJoinBroadcast { .. } => LotState::QrReviveJoinBroadcast,
Qr::Login { .. } => LotState::QrLogin, Qr::Login { .. } => LotState::QrLogin,
}, },
Self::Error(_err) => LotState::QrError, Self::Error(_err) => LotState::QrError,
@@ -130,7 +124,6 @@ impl Lot {
Self::Qr(qr) => match qr { Self::Qr(qr) => match qr {
Qr::AskVerifyContact { contact_id, .. } => contact_id.to_u32(), Qr::AskVerifyContact { contact_id, .. } => contact_id.to_u32(),
Qr::AskVerifyGroup { .. } => Default::default(), Qr::AskVerifyGroup { .. } => Default::default(),
Qr::AskJoinBroadcast { .. } => Default::default(),
Qr::FprOk { contact_id } => contact_id.to_u32(), Qr::FprOk { contact_id } => contact_id.to_u32(),
Qr::FprMismatch { contact_id } => contact_id.unwrap_or_default().to_u32(), Qr::FprMismatch { contact_id } => contact_id.unwrap_or_default().to_u32(),
Qr::FprWithoutAddr { .. } => Default::default(), Qr::FprWithoutAddr { .. } => Default::default(),
@@ -142,11 +135,9 @@ impl Lot {
Qr::Url { .. } => Default::default(), Qr::Url { .. } => Default::default(),
Qr::Text { .. } => Default::default(), Qr::Text { .. } => Default::default(),
Qr::WithdrawVerifyContact { contact_id, .. } => contact_id.to_u32(), Qr::WithdrawVerifyContact { contact_id, .. } => contact_id.to_u32(),
Qr::WithdrawVerifyGroup { .. } | Qr::WithdrawJoinBroadcast { .. } => { Qr::WithdrawVerifyGroup { .. } => Default::default(),
Default::default()
}
Qr::ReviveVerifyContact { contact_id, .. } => contact_id.to_u32(), Qr::ReviveVerifyContact { contact_id, .. } => contact_id.to_u32(),
Qr::ReviveVerifyGroup { .. } | Qr::ReviveJoinBroadcast { .. } => Default::default(), Qr::ReviveVerifyGroup { .. } => Default::default(),
Qr::Login { .. } => Default::default(), Qr::Login { .. } => Default::default(),
}, },
Self::Error(_) => Default::default(), Self::Error(_) => Default::default(),
@@ -175,9 +166,6 @@ pub enum LotState {
/// text1=groupname /// text1=groupname
QrAskVerifyGroup = 202, QrAskVerifyGroup = 202,
/// text1=broadcast_name
QrAskJoinBroadcast = 204,
/// id=contact /// id=contact
QrFprOk = 210, QrFprOk = 210,
@@ -213,15 +201,11 @@ pub enum LotState {
/// text1=groupname /// text1=groupname
QrWithdrawVerifyGroup = 502, QrWithdrawVerifyGroup = 502,
/// text1=broadcast channel name
QrWithdrawJoinBroadcast = 504,
QrReviveVerifyContact = 510, QrReviveVerifyContact = 510,
/// text1=groupname /// text1=groupname
QrReviveVerifyGroup = 512, QrReviveVerifyGroup = 512,
/// text1=groupname
QrReviveJoinBroadcast = 514,
/// text1=email_address /// text1=email_address
QrLogin = 520, QrLogin = 520,
@@ -230,6 +214,7 @@ pub enum LotState {
MsgInFresh = 10, MsgInFresh = 10,
MsgInNoticed = 13, MsgInNoticed = 13,
MsgInSeen = 16, MsgInSeen = 16,
MsgOutPreparing = 18,
MsgOutDraft = 19, MsgOutDraft = 19,
MsgOutPending = 20, MsgOutPending = 20,
MsgOutFailed = 24, MsgOutFailed = 24,
@@ -245,6 +230,7 @@ impl From<MessageState> for LotState {
InFresh => LotState::MsgInFresh, InFresh => LotState::MsgInFresh,
InNoticed => LotState::MsgInNoticed, InNoticed => LotState::MsgInNoticed,
InSeen => LotState::MsgInSeen, InSeen => LotState::MsgInSeen,
OutPreparing => LotState::MsgOutPreparing,
OutDraft => LotState::MsgOutDraft, OutDraft => LotState::MsgOutDraft,
OutPending => LotState::MsgOutPending, OutPending => LotState::MsgOutPending,
OutFailed => LotState::MsgOutFailed, OutFailed => LotState::MsgOutFailed,

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "deltachat-jsonrpc" name = "deltachat-jsonrpc"
version = "2.50.0-dev" version = "2.20.0"
description = "DeltaChat JSON-RPC API" description = "DeltaChat JSON-RPC API"
edition = "2021" edition = "2021"
license = "MPL-2.0" license = "MPL-2.0"
@@ -19,6 +19,7 @@ yerpc = { workspace = true, features = ["anyhow_expose", "openrpc"] }
typescript-type-def = { version = "0.5.13", features = ["json_value"] } typescript-type-def = { version = "0.5.13", features = ["json_value"] }
tokio = { workspace = true } tokio = { workspace = true }
sanitize-filename = { workspace = true } sanitize-filename = { workspace = true }
walkdir = "2.5.0"
base64 = { workspace = true } base64 = { workspace = true }
[dev-dependencies] [dev-dependencies]

View File

@@ -10,38 +10,38 @@ pub use deltachat::accounts::Accounts;
use deltachat::blob::BlobObject; use deltachat::blob::BlobObject;
use deltachat::calls::ice_servers; use deltachat::calls::ice_servers;
use deltachat::chat::{ use deltachat::chat::{
self, add_contact_to_chat, forward_msgs, forward_msgs_2ctx, get_chat_media, get_chat_msgs, self, add_contact_to_chat, forward_msgs, get_chat_media, get_chat_msgs, get_chat_msgs_ex,
get_chat_msgs_ex, markfresh_chat, marknoticed_all_chats, marknoticed_chat, marknoticed_chat, remove_contact_from_chat, Chat, ChatId, ChatItem, MessageListOptions,
remove_contact_from_chat, Chat, ChatId, ChatItem, MessageListOptions, ProtectionStatus,
}; };
use deltachat::chatlist::Chatlist; use deltachat::chatlist::Chatlist;
use deltachat::config::{get_all_ui_config_keys, Config}; use deltachat::config::Config;
use deltachat::constants::DC_MSG_ID_DAYMARKER; use deltachat::constants::DC_MSG_ID_DAYMARKER;
use deltachat::contact::{may_be_valid_addr, Contact, ContactId, Origin}; use deltachat::contact::{may_be_valid_addr, Contact, ContactId, Origin};
use deltachat::context::get_info; use deltachat::context::get_info;
use deltachat::ephemeral::Timer; use deltachat::ephemeral::Timer;
use deltachat::imex; use deltachat::imex;
use deltachat::location; use deltachat::location;
use deltachat::message::get_msg_read_receipts;
use deltachat::message::{ use deltachat::message::{
self, delete_msgs_ex, get_existing_msg_ids, get_msg_read_receipt_count, get_msg_read_receipts, self, delete_msgs_ex, markseen_msgs, Message, MessageState, MsgId, Viewtype,
markseen_msgs, Message, MessageState, MsgId, Viewtype,
}; };
use deltachat::peer_channels::{ use deltachat::peer_channels::{
leave_webxdc_realtime, send_webxdc_realtime_advertisement, send_webxdc_realtime_data, leave_webxdc_realtime, send_webxdc_realtime_advertisement, send_webxdc_realtime_data,
}; };
use deltachat::provider::get_provider_info; use deltachat::provider::get_provider_info;
use deltachat::qr::{self, Qr}; use deltachat::qr::{self, Qr};
use deltachat::qr_code_generator::{create_qr_svg, generate_backup_qr, get_securejoin_qr_svg}; use deltachat::qr_code_generator::{generate_backup_qr, get_securejoin_qr_svg};
use deltachat::reaction::{get_msg_reactions, send_reaction}; use deltachat::reaction::{get_msg_reactions, send_reaction};
use deltachat::securejoin; use deltachat::securejoin;
use deltachat::stock_str::StockMessage; use deltachat::stock_str::StockMessage;
use deltachat::storage_usage::{get_blobdir_storage_usage, get_storage_usage};
use deltachat::webxdc::StatusUpdateSerial; use deltachat::webxdc::StatusUpdateSerial;
use deltachat::EventEmitter; use deltachat::EventEmitter;
use sanitize_filename::is_sanitized; use sanitize_filename::is_sanitized;
use tokio::fs; use tokio::fs;
use tokio::sync::{watch, Mutex, RwLock}; use tokio::sync::{watch, Mutex, RwLock};
use types::login_param::EnteredLoginParam; use types::login_param::EnteredLoginParam;
use walkdir::WalkDir;
use yerpc::rpc; use yerpc::rpc;
pub mod types; pub mod types;
@@ -54,22 +54,20 @@ use types::contact::{ContactObject, VcardContact};
use types::events::Event; use types::events::Event;
use types::http::HttpResponse; use types::http::HttpResponse;
use types::message::{MessageData, MessageObject, MessageReadReceipt}; use types::message::{MessageData, MessageObject, MessageReadReceipt};
use types::notify_state::JsonrpcNotifyState;
use types::provider_info::ProviderInfo; use types::provider_info::ProviderInfo;
use types::reactions::JsonrpcReactions; use types::reactions::JSONRPCReactions;
use types::webxdc::WebxdcMessageInfo; use types::webxdc::WebxdcMessageInfo;
use self::types::message::{MessageInfo, MessageLoadResult}; use self::types::message::{MessageInfo, MessageLoadResult};
use self::types::{ use self::types::{
chat::{BasicChat, JsonrpcChatVisibility, MuteDuration}, chat::{BasicChat, JSONRPCChatVisibility, MuteDuration},
location::JsonrpcLocation, location::JsonrpcLocation,
message::{ message::{
JsonrpcMessageListItem, MessageNotificationInfo, MessageSearchResult, MessageViewtype, JSONRPCMessageListItem, MessageNotificationInfo, MessageSearchResult, MessageViewtype,
}, },
}; };
use crate::api::types::chat_list::{get_chat_list_item_by_id, ChatListItemFetchResult}; use crate::api::types::chat_list::{get_chat_list_item_by_id, ChatListItemFetchResult};
use crate::api::types::login_param::TransportListEntry; use crate::api::types::qr::QrObject;
use crate::api::types::qr::{QrObject, SecurejoinSource, SecurejoinUiPath};
#[derive(Debug)] #[derive(Debug)]
struct AccountState { struct AccountState {
@@ -122,14 +120,14 @@ impl CommandApi {
} }
} }
async fn get_context_opt(&self, id: u32) -> Option<deltachat::context::Context> {
self.accounts.read().await.get_account(id)
}
async fn get_context(&self, id: u32) -> Result<deltachat::context::Context> { async fn get_context(&self, id: u32) -> Result<deltachat::context::Context> {
self.get_context_opt(id) let sc = self
.accounts
.read()
.await .await
.ok_or_else(|| anyhow!("account with id {id} not found")) .get_account(id)
.ok_or_else(|| anyhow!("account with id {id} not found"))?;
Ok(sc)
} }
async fn with_state<F, T>(&self, id: u32, with_state: F) -> T async fn with_state<F, T>(&self, id: u32, with_state: F) -> T
@@ -195,16 +193,6 @@ impl CommandApi {
.context("event channel is closed") .context("event channel is closed")
} }
/// Waits for at least one event and return a batch of events.
async fn get_next_event_batch(&self) -> Vec<Event> {
self.event_emitter
.recv_batch()
.await
.into_iter()
.map(|event| event.into())
.collect()
}
// --------------------------------------------- // ---------------------------------------------
// Account Management // Account Management
// --------------------------------------------- // ---------------------------------------------
@@ -285,7 +273,7 @@ impl CommandApi {
/// The `AccountsBackgroundFetchDone` event is emitted at the end even in case of timeout. /// The `AccountsBackgroundFetchDone` event is emitted at the end even in case of timeout.
/// Process all events until you get this one and you can safely return to the background /// Process all events until you get this one and you can safely return to the background
/// without forgetting to create notifications caused by timing race conditions. /// without forgetting to create notifications caused by timing race conditions.
async fn background_fetch(&self, timeout_in_seconds: f64) -> Result<()> { async fn accounts_background_fetch(&self, timeout_in_seconds: f64) -> Result<()> {
let future = { let future = {
let lock = self.accounts.read().await; let lock = self.accounts.read().await;
lock.background_fetch(std::time::Duration::from_secs_f64(timeout_in_seconds)) lock.background_fetch(std::time::Duration::from_secs_f64(timeout_in_seconds))
@@ -295,11 +283,6 @@ impl CommandApi {
Ok(()) Ok(())
} }
async fn stop_background_fetch(&self) -> Result<()> {
self.accounts.read().await.stop_background_fetch();
Ok(())
}
// --------------------------------------------- // ---------------------------------------------
// Methods that work on individual accounts // Methods that work on individual accounts
// --------------------------------------------- // ---------------------------------------------
@@ -330,17 +313,17 @@ impl CommandApi {
} }
} }
/// Get the current push notification state.
async fn get_push_state(&self, account_id: u32) -> Result<JsonrpcNotifyState> {
let ctx = self.get_context(account_id).await?;
Ok(ctx.push_state().await.into())
}
/// Get the combined filesize of an account in bytes /// Get the combined filesize of an account in bytes
async fn get_account_file_size(&self, account_id: u32) -> Result<u64> { async fn get_account_file_size(&self, account_id: u32) -> Result<u64> {
let ctx = self.get_context(account_id).await?; let ctx = self.get_context(account_id).await?;
let dbfile = ctx.get_dbfile().metadata()?.len(); let dbfile = ctx.get_dbfile().metadata()?.len();
let total_size = get_blobdir_storage_usage(&ctx); let total_size = WalkDir::new(ctx.get_blobdir())
.max_depth(2)
.into_iter()
.filter_map(|entry| entry.ok())
.filter_map(|entry| entry.metadata().ok())
.filter(|metadata| metadata.is_file())
.fold(0, |acc, m| acc + m.len());
Ok(dbfile + total_size) Ok(dbfile + total_size)
} }
@@ -353,10 +336,21 @@ impl CommandApi {
/// instead of the domain. /// instead of the domain.
async fn get_provider_info( async fn get_provider_info(
&self, &self,
_account_id: u32, account_id: u32,
email: String, email: String,
) -> Result<Option<ProviderInfo>> { ) -> Result<Option<ProviderInfo>> {
let provider_info = get_provider_info(email.split('@').next_back().unwrap_or("")); let ctx = self.get_context(account_id).await?;
let proxy_enabled = ctx
.get_config_bool(deltachat::config::Config::ProxyEnabled)
.await?;
let provider_info = get_provider_info(
&ctx,
email.split('@').next_back().unwrap_or(""),
proxy_enabled,
)
.await;
Ok(ProviderInfo::from_dc_type(provider_info)) Ok(ProviderInfo::from_dc_type(provider_info))
} }
@@ -372,13 +366,6 @@ impl CommandApi {
ctx.get_info().await ctx.get_info().await
} }
/// Get storage usage report as formatted string
async fn get_storage_usage_report_string(&self, account_id: u32) -> Result<String> {
let ctx = self.get_context(account_id).await?;
let storage_usage = get_storage_usage(&ctx).await?;
Ok(storage_usage.to_string())
}
/// Get the blob dir. /// Get the blob dir.
async fn get_blob_dir(&self, account_id: u32) -> Result<Option<String>> { async fn get_blob_dir(&self, account_id: u32) -> Result<Option<String>> {
let ctx = self.get_context(account_id).await?; let ctx = self.get_context(account_id).await?;
@@ -406,6 +393,11 @@ impl CommandApi {
Ok(BlobObject::create_and_deduplicate(&ctx, file, file)?.to_abs_path()) Ok(BlobObject::create_and_deduplicate(&ctx, file, file)?.to_abs_path())
} }
async fn draft_self_report(&self, account_id: u32) -> Result<u32> {
let ctx = self.get_context(account_id).await?;
Ok(ctx.draft_self_report().await?.to_u32())
}
/// Sets the given configuration key. /// Sets the given configuration key.
async fn set_config(&self, account_id: u32, key: String, value: Option<String>) -> Result<()> { async fn set_config(&self, account_id: u32, key: String, value: Option<String>) -> Result<()> {
let ctx = self.get_context(account_id).await?; let ctx = self.get_context(account_id).await?;
@@ -427,11 +419,11 @@ impl CommandApi {
Ok(()) Ok(())
} }
/// Set configuration values from a QR code (technically from the URI stored in it). /// Set configuration values from a QR code. (technically from the URI that is stored in the qrcode)
/// Before this function is called, `check_qr()` should be used to get the QR code type. /// Before this function is called, `checkQr()` should confirm the type of the
/// QR code is `account` or `webrtcInstance`.
/// ///
/// "DCACCOUNT:" and "DCLOGIN:" QR codes configure the account, but I/O mustn't be started for /// Internally, the function will call dc_set_config() with the appropriate keys,
/// such QR codes, consider using [`Self::add_transport_from_qr`] which also restarts I/O.
async fn set_config_from_qr(&self, account_id: u32, qr_content: String) -> Result<()> { async fn set_config_from_qr(&self, account_id: u32, qr_content: String) -> Result<()> {
let ctx = self.get_context(account_id).await?; let ctx = self.get_context(account_id).await?;
qr::set_config_from_qr(&ctx, &qr_content).await qr::set_config_from_qr(&ctx, &qr_content).await
@@ -463,17 +455,13 @@ impl CommandApi {
Ok(result) Ok(result)
} }
/// Returns all `ui.*` config keys that were set by the UI.
async fn get_all_ui_config_keys(&self, account_id: u32) -> Result<Vec<String>> {
let ctx = self.get_context(account_id).await?;
get_all_ui_config_keys(&ctx).await
}
async fn set_stock_strings(&self, strings: HashMap<u32, String>) -> Result<()> { async fn set_stock_strings(&self, strings: HashMap<u32, String>) -> Result<()> {
let accounts = self.accounts.read().await; let accounts = self.accounts.read().await;
for (stock_id, stock_message) in strings { for (stock_id, stock_message) in strings {
if let Some(stock_id) = StockMessage::from_u32(stock_id) { if let Some(stock_id) = StockMessage::from_u32(stock_id) {
accounts.set_stock_translation(stock_id, stock_message)?; accounts
.set_stock_translation(stock_id, stock_message)
.await?;
} }
} }
Ok(()) Ok(())
@@ -527,7 +515,6 @@ impl CommandApi {
/// from a server encoded in a QR code. /// from a server encoded in a QR code.
/// - [Self::list_transports()] to get a list of all configured transports. /// - [Self::list_transports()] to get a list of all configured transports.
/// - [Self::delete_transport()] to remove a transport. /// - [Self::delete_transport()] to remove a transport.
/// - [Self::set_transport_unpublished()] to set whether contacts see this transport.
async fn add_or_update_transport( async fn add_or_update_transport(
&self, &self,
account_id: u32, account_id: u32,
@@ -553,23 +540,7 @@ impl CommandApi {
/// Returns the list of all email accounts that are used as a transport in the current profile. /// Returns the list of all email accounts that are used as a transport in the current profile.
/// Use [Self::add_or_update_transport()] to add or change a transport /// Use [Self::add_or_update_transport()] to add or change a transport
/// and [Self::delete_transport()] to delete a transport. /// and [Self::delete_transport()] to delete a transport.
/// Use [Self::list_transports_ex()] to additionally query
/// whether the transports are marked as 'unpublished'.
async fn list_transports(&self, account_id: u32) -> Result<Vec<EnteredLoginParam>> { async fn list_transports(&self, account_id: u32) -> Result<Vec<EnteredLoginParam>> {
let ctx = self.get_context(account_id).await?;
let res = ctx
.list_transports()
.await?
.into_iter()
.map(|t| t.param.into())
.collect();
Ok(res)
}
/// Returns the list of all email accounts that are used as a transport in the current profile.
/// Use [Self::add_or_update_transport()] to add or change a transport
/// and [Self::delete_transport()] to delete a transport.
async fn list_transports_ex(&self, account_id: u32) -> Result<Vec<TransportListEntry>> {
let ctx = self.get_context(account_id).await?; let ctx = self.get_context(account_id).await?;
let res = ctx let res = ctx
.list_transports() .list_transports()
@@ -587,26 +558,6 @@ impl CommandApi {
ctx.delete_transport(&addr).await ctx.delete_transport(&addr).await
} }
/// Change whether the transport is unpublished.
///
/// Unpublished transports are not advertised to contacts,
/// and self-sent messages are not sent there,
/// so that we don't cause extra messages to the corresponding inbox,
/// but can still receive messages from contacts who don't know our new transport addresses yet.
///
/// The default is false, but when the user updates from a version that didn't have this flag,
/// existing secondary transports are set to unpublished,
/// so that an existing transport address doesn't suddenly get spammed with a lot of messages.
async fn set_transport_unpublished(
&self,
account_id: u32,
addr: String,
unpublished: bool,
) -> Result<()> {
let ctx = self.get_context(account_id).await?;
ctx.set_transport_unpublished(&addr, unpublished).await
}
/// Signal an ongoing process to stop. /// Signal an ongoing process to stop.
async fn stop_ongoing_process(&self, account_id: u32) -> Result<()> { async fn stop_ongoing_process(&self, account_id: u32) -> Result<()> {
let ctx = self.get_context(account_id).await?; let ctx = self.get_context(account_id).await?;
@@ -678,7 +629,7 @@ impl CommandApi {
ChatId::new(chat_id).get_fresh_msg_cnt(&ctx).await ChatId::new(chat_id).get_fresh_msg_cnt(&ctx).await
} }
/// (deprecated) Gets messages to be processed by the bot and returns their IDs. /// Gets messages to be processed by the bot and returns their IDs.
/// ///
/// Only messages with database ID higher than `last_msg_id` config value /// Only messages with database ID higher than `last_msg_id` config value
/// are returned. After processing the messages, the bot should /// are returned. After processing the messages, the bot should
@@ -686,13 +637,6 @@ impl CommandApi {
/// or manually updating the value to avoid getting already /// or manually updating the value to avoid getting already
/// processed messages. /// processed messages.
/// ///
/// Deprecated 2026-04: This returns the message's id as soon as the first part arrives,
/// even if it is not fully downloaded yet.
/// The bot needs to wait for the message to be fully downloaded.
/// Since this is usually not the desired behavior,
/// bots should instead use the #DC_EVENT_INCOMING_MSG / [`types::events::EventType::IncomingMsg`]
/// event for getting notified about new messages.
///
/// [`markseen_msgs`]: Self::markseen_msgs /// [`markseen_msgs`]: Self::markseen_msgs
async fn get_next_msgs(&self, account_id: u32) -> Result<Vec<u32>> { async fn get_next_msgs(&self, account_id: u32) -> Result<Vec<u32>> {
let ctx = self.get_context(account_id).await?; let ctx = self.get_context(account_id).await?;
@@ -705,7 +649,7 @@ impl CommandApi {
Ok(msg_ids) Ok(msg_ids)
} }
/// (deprecated) Waits for messages to be processed by the bot and returns their IDs. /// Waits for messages to be processed by the bot and returns their IDs.
/// ///
/// This function is similar to [`get_next_msgs`], /// This function is similar to [`get_next_msgs`],
/// but waits for internal new message notification before returning. /// but waits for internal new message notification before returning.
@@ -716,13 +660,6 @@ impl CommandApi {
/// To shutdown the bot, stopping I/O can be used to interrupt /// To shutdown the bot, stopping I/O can be used to interrupt
/// pending or next `wait_next_msgs` call. /// pending or next `wait_next_msgs` call.
/// ///
/// Deprecated 2026-04: This returns the message's id as soon as the first part arrives,
/// even if it is not fully downloaded yet.
/// The bot needs to wait for the message to be fully downloaded.
/// Since this is usually not the desired behavior,
/// bots should instead use the #DC_EVENT_INCOMING_MSG / [`types::events::EventType::IncomingMsg`]
/// event for getting notified about new messages.
///
/// [`get_next_msgs`]: Self::get_next_msgs /// [`get_next_msgs`]: Self::get_next_msgs
async fn wait_next_msgs(&self, account_id: u32) -> Result<Vec<u32>> { async fn wait_next_msgs(&self, account_id: u32) -> Result<Vec<u32>> {
let ctx = self.get_context(account_id).await?; let ctx = self.get_context(account_id).await?;
@@ -749,6 +686,25 @@ impl CommandApi {
message::estimate_deletion_cnt(&ctx, from_server, seconds).await message::estimate_deletion_cnt(&ctx, from_server, seconds).await
} }
// ---------------------------------------------
// autocrypt
// ---------------------------------------------
async fn initiate_autocrypt_key_transfer(&self, account_id: u32) -> Result<String> {
let ctx = self.get_context(account_id).await?;
deltachat::imex::initiate_key_transfer(&ctx).await
}
async fn continue_autocrypt_key_transfer(
&self,
account_id: u32,
message_id: u32,
setup_code: String,
) -> Result<()> {
let ctx = self.get_context(account_id).await?;
deltachat::imex::continue_key_transfer(&ctx, MsgId::new(message_id), &setup_code).await
}
// --------------------------------------------- // ---------------------------------------------
// chat list // chat list
// --------------------------------------------- // ---------------------------------------------
@@ -842,11 +798,11 @@ impl CommandApi {
/// Delete a chat. /// Delete a chat.
/// ///
/// Messages are deleted from the device and the chat database entry is deleted. /// Messages are deleted from the device and the chat database entry is deleted.
/// After that, a `MsgsChanged` event is emitted. /// After that, the event #DC_EVENT_MSGS_CHANGED is posted.
/// Messages are deleted from the server in background.
/// ///
/// Things that are _not done_ implicitly: /// Things that are _not done_ implicitly:
/// ///
/// - Messages are **not deleted from the server**.
/// - The chat or the contact is **not blocked**, so new messages from the user/the group may appear as a contact request /// - The chat or the contact is **not blocked**, so new messages from the user/the group may appear as a contact request
/// and the user may create the chat again. /// and the user may create the chat again.
/// - **Groups are not left** - this would /// - **Groups are not left** - this would
@@ -895,8 +851,6 @@ impl CommandApi {
/// if `checkQr()` returns `askVerifyContact` or `askVerifyGroup` /// if `checkQr()` returns `askVerifyContact` or `askVerifyGroup`
/// an out-of-band-verification can be joined using `secure_join()` /// an out-of-band-verification can be joined using `secure_join()`
/// ///
/// @deprecated as of 2026-03; use create_qr_svg(get_chat_securejoin_qr_code()) instead.
///
/// chat_id: If set to a group-chat-id, /// chat_id: If set to a group-chat-id,
/// the Verified-Group-Invite protocol is offered in the QR code; /// the Verified-Group-Invite protocol is offered in the QR code;
/// works for protected groups as well as for normal groups. /// works for protected groups as well as for normal groups.
@@ -942,38 +896,6 @@ impl CommandApi {
Ok(chat_id.to_u32()) Ok(chat_id.to_u32())
} }
/// Like `secure_join()`, but allows to pass a source and a UI-path.
/// You only need this if your UI has an option to send statistics
/// to Delta Chat's developers.
///
/// **source**: The source where the QR code came from.
/// E.g. a link that was clicked inside or outside Delta Chat,
/// the "Paste from Clipboard" action,
/// the "Load QR code as image" action,
/// or a QR code scan.
///
/// **uipath**: Which UI path did the user use to arrive at the QR code screen.
/// If the SecurejoinSource was ExternalLink or InternalLink,
/// pass `None` here, because the QR code screen wasn't even opened.
/// ```
async fn secure_join_with_ux_info(
&self,
account_id: u32,
qr: String,
source: Option<SecurejoinSource>,
uipath: Option<SecurejoinUiPath>,
) -> Result<u32> {
let ctx = self.get_context(account_id).await?;
let chat_id = securejoin::join_securejoin_with_ux_info(
&ctx,
&qr,
source.map(Into::into),
uipath.map(Into::into),
)
.await?;
Ok(chat_id.to_u32())
}
async fn leave_group(&self, account_id: u32, chat_id: u32) -> Result<()> { async fn leave_group(&self, account_id: u32, chat_id: u32) -> Result<()> {
let ctx = self.get_context(account_id).await?; let ctx = self.get_context(account_id).await?;
remove_contact_from_chat(&ctx, ChatId::new(chat_id), ContactId::SELF).await remove_contact_from_chat(&ctx, ChatId::new(chat_id), ContactId::SELF).await
@@ -1057,16 +979,17 @@ impl CommandApi {
/// To check, if a chat is still unpromoted, you can look at the `is_unpromoted` property of `BasicChat` or `FullChat`. /// To check, if a chat is still unpromoted, you can look at the `is_unpromoted` property of `BasicChat` or `FullChat`.
/// This may be useful if you want to show some help for just created groups. /// This may be useful if you want to show some help for just created groups.
/// ///
/// `protect` argument is deprecated as of 2025-10-22 and is left for compatibility. /// @param protect If set to 1 the function creates group with protection initially enabled.
/// Pass `false` here. /// Only verified members are allowed in these groups
async fn create_group_chat( async fn create_group_chat(&self, account_id: u32, name: String, protect: bool) -> Result<u32> {
&self,
account_id: u32,
name: String,
_protect: bool,
) -> Result<u32> {
let ctx = self.get_context(account_id).await?; let ctx = self.get_context(account_id).await?;
chat::create_group(&ctx, &name).await.map(|id| id.to_u32()) let protect = match protect {
true => ProtectionStatus::Protected,
false => ProtectionStatus::Unprotected,
};
chat::create_group_ex(&ctx, Some(protect), &name)
.await
.map(|id| id.to_u32())
} }
/// Create a new unencrypted group chat. /// Create a new unencrypted group chat.
@@ -1075,7 +998,7 @@ impl CommandApi {
/// address-contacts. /// address-contacts.
async fn create_group_chat_unencrypted(&self, account_id: u32, name: String) -> Result<u32> { async fn create_group_chat_unencrypted(&self, account_id: u32, name: String) -> Result<u32> {
let ctx = self.get_context(account_id).await?; let ctx = self.get_context(account_id).await?;
chat::create_group_unencrypted(&ctx, &name) chat::create_group_ex(&ctx, None, &name)
.await .await
.map(|id| id.to_u32()) .map(|id| id.to_u32())
} }
@@ -1086,7 +1009,7 @@ impl CommandApi {
.await .await
} }
/// Create a new, outgoing **broadcast channel** /// Create a new **broadcast channel**
/// (called "Channel" in the UI). /// (called "Channel" in the UI).
/// ///
/// Broadcast channels are similar to groups on the sending device, /// Broadcast channels are similar to groups on the sending device,
@@ -1111,8 +1034,7 @@ impl CommandApi {
/// Set group name. /// Set group name.
/// ///
/// If the group is already _promoted_ (any message was sent to the group), /// If the group is already _promoted_ (any message was sent to the group),
/// or if this is a brodacast channel, /// all group members are informed by a special status message that is sent automatically by this function.
/// all members are informed by a special status message that is sent automatically by this function.
/// ///
/// Sends out #DC_EVENT_CHAT_MODIFIED and #DC_EVENT_MSGS_CHANGED if a status message was sent. /// Sends out #DC_EVENT_CHAT_MODIFIED and #DC_EVENT_MSGS_CHANGED if a status message was sent.
async fn set_chat_name(&self, account_id: u32, chat_id: u32, new_name: String) -> Result<()> { async fn set_chat_name(&self, account_id: u32, chat_id: u32, new_name: String) -> Result<()> {
@@ -1120,39 +1042,10 @@ impl CommandApi {
chat::set_chat_name(&ctx, ChatId::new(chat_id), &new_name).await chat::set_chat_name(&ctx, ChatId::new(chat_id), &new_name).await
} }
/// Set group or broadcast channel description.
///
/// If the group is already _promoted_ (any message was sent to the group),
/// or if this is a brodacast channel,
/// all members are informed by a special status message that is sent automatically by this function.
///
/// Sends out #DC_EVENT_CHAT_MODIFIED and #DC_EVENT_MSGS_CHANGED if a status message was sent.
///
/// See also [`Self::get_chat_description`] / `getChatDescription()`.
async fn set_chat_description(
&self,
account_id: u32,
chat_id: u32,
description: String,
) -> Result<()> {
let ctx = self.get_context(account_id).await?;
chat::set_chat_description(&ctx, ChatId::new(chat_id), &description).await
}
/// Load the chat description from the database.
///
/// UIs show this in the profile page of the chat,
/// it is settable by [`Self::set_chat_description`] / `setChatDescription()`.
async fn get_chat_description(&self, account_id: u32, chat_id: u32) -> Result<String> {
let ctx = self.get_context(account_id).await?;
chat::get_chat_description(&ctx, ChatId::new(chat_id)).await
}
/// Set group profile image. /// Set group profile image.
/// ///
/// If the group is already _promoted_ (any message was sent to the group), /// If the group is already _promoted_ (any message was sent to the group),
/// or if this is a brodacast channel, /// all group members are informed by a special status message that is sent automatically by this function.
/// all members are informed by a special status message that is sent automatically by this function.
/// ///
/// Sends out #DC_EVENT_CHAT_MODIFIED and #DC_EVENT_MSGS_CHANGED if a status message was sent. /// Sends out #DC_EVENT_CHAT_MODIFIED and #DC_EVENT_MSGS_CHANGED if a status message was sent.
/// ///
@@ -1177,7 +1070,7 @@ impl CommandApi {
&self, &self,
account_id: u32, account_id: u32,
chat_id: u32, chat_id: u32,
visibility: JsonrpcChatVisibility, visibility: JSONRPCChatVisibility,
) -> Result<()> { ) -> Result<()> {
let ctx = self.get_context(account_id).await?; let ctx = self.get_context(account_id).await?;
@@ -1237,24 +1130,10 @@ impl CommandApi {
Ok(None) Ok(None)
} }
/// Mark all messages in all chats as _noticed_.
/// Skips messages from blocked contacts, but does not skip messages in muted chats.
///
/// _Noticed_ messages are no longer _fresh_ and do not count as being unseen
/// but are still waiting for being marked as "seen" using markseen_msgs()
/// (read receipts aren't sent for noticed messages).
///
/// Calling this function usually results in the event #DC_EVENT_MSGS_NOTICED.
/// See also markseen_msgs().
pub async fn marknoticed_all_chats(&self, account_id: u32) -> Result<()> {
let ctx = self.get_context(account_id).await?;
marknoticed_all_chats(&ctx).await
}
/// Mark all messages in a chat as _noticed_. /// Mark all messages in a chat as _noticed_.
/// _Noticed_ messages are no longer _fresh_ and do not count as being unseen /// _Noticed_ messages are no longer _fresh_ and do not count as being unseen
/// but are still waiting for being marked as "seen" using markseen_msgs() /// but are still waiting for being marked as "seen" using markseen_msgs()
/// (read receipts aren't sent for noticed messages). /// (IMAP/MDNs is not done for noticed messages).
/// ///
/// Calling this function usually results in the event #DC_EVENT_MSGS_NOTICED. /// Calling this function usually results in the event #DC_EVENT_MSGS_NOTICED.
/// See also markseen_msgs(). /// See also markseen_msgs().
@@ -1263,15 +1142,6 @@ impl CommandApi {
marknoticed_chat(&ctx, ChatId::new(chat_id)).await marknoticed_chat(&ctx, ChatId::new(chat_id)).await
} }
/// Marks the last incoming message in the chat as _fresh_.
///
/// UI can use this to offer a "mark unread" option,
/// so that already noticed chats get a badge counter again.
async fn markfresh_chat(&self, account_id: u32, chat_id: u32) -> Result<()> {
let ctx = self.get_context(account_id).await?;
markfresh_chat(&ctx, ChatId::new(chat_id)).await
}
/// Returns the message that is immediately followed by the last seen /// Returns the message that is immediately followed by the last seen
/// message. /// message.
/// From the point of view of the user this is effectively /// From the point of view of the user this is effectively
@@ -1366,22 +1236,8 @@ impl CommandApi {
markseen_msgs(&ctx, msg_ids.into_iter().map(MsgId::new).collect()).await markseen_msgs(&ctx, msg_ids.into_iter().map(MsgId::new).collect()).await
} }
/// Get all message IDs belonging to a chat. /// Returns all messages of a particular chat.
/// ///
/// The list is already sorted and starts with the oldest message.
/// Clients should not try to re-sort the list as this would be an expensive action
/// and would result in inconsistencies between clients.
/// Note that the messages are not necessarily sorted by their ID or by their displayed timestamp;
/// UIs need to handle both the case of descending message IDs
/// and of decreasing timestamps.
///
/// Optionally, 'daymarkers' added to the ID array may help to
/// implement virtual lists.
///
/// Parameters:
///
/// * chat_id The chat ID of which the messages IDs should be queried.
/// * _info_only: Deprecated, pass `false` here.
/// * `add_daymarker` - If `true`, add day markers as `DC_MSG_ID_DAYMARKER` to the result, /// * `add_daymarker` - If `true`, add day markers as `DC_MSG_ID_DAYMARKER` to the result,
/// e.g. [1234, 1237, 9, 1239]. The day marker timestamp is the midnight one for the /// e.g. [1234, 1237, 9, 1239]. The day marker timestamp is the midnight one for the
/// corresponding (following) day in the local timezone. /// corresponding (following) day in the local timezone.
@@ -1389,14 +1245,17 @@ impl CommandApi {
&self, &self,
account_id: u32, account_id: u32,
chat_id: u32, chat_id: u32,
_info_only: bool, info_only: bool,
add_daymarker: bool, add_daymarker: bool,
) -> Result<Vec<u32>> { ) -> Result<Vec<u32>> {
let ctx = self.get_context(account_id).await?; let ctx = self.get_context(account_id).await?;
let msg = get_chat_msgs_ex( let msg = get_chat_msgs_ex(
&ctx, &ctx,
ChatId::new(chat_id), ChatId::new(chat_id),
MessageListOptions { add_daymarker }, MessageListOptions {
info_only,
add_daymarker,
},
) )
.await?; .await?;
Ok(msg Ok(msg
@@ -1410,48 +1269,27 @@ impl CommandApi {
.collect()) .collect())
} }
/// Checks if the messages with given IDs exist.
///
/// Returns IDs of existing messages.
async fn get_existing_msg_ids(&self, account_id: u32, msg_ids: Vec<u32>) -> Result<Vec<u32>> {
if let Some(context) = self.get_context_opt(account_id).await {
let msg_ids: Vec<MsgId> = msg_ids.into_iter().map(MsgId::new).collect();
let existing_msg_ids = get_existing_msg_ids(&context, &msg_ids).await?;
Ok(existing_msg_ids
.into_iter()
.map(|msg_id| msg_id.to_u32())
.collect())
} else {
// Account does not exist, so messages do not exist either,
// but this is not an error.
Ok(Vec::new())
}
}
/// Get all messages belonging to a chat.
///
/// Similar to `get_message_ids` / `getMessageIds`,
/// see that function for details.
/// The difference is that this function here returns a list of `MessageListItem`,
/// which is an enum of a message or a daymarker.
async fn get_message_list_items( async fn get_message_list_items(
&self, &self,
account_id: u32, account_id: u32,
chat_id: u32, chat_id: u32,
_info_only: bool, info_only: bool,
add_daymarker: bool, add_daymarker: bool,
) -> Result<Vec<JsonrpcMessageListItem>> { ) -> Result<Vec<JSONRPCMessageListItem>> {
let ctx = self.get_context(account_id).await?; let ctx = self.get_context(account_id).await?;
let msg = get_chat_msgs_ex( let msg = get_chat_msgs_ex(
&ctx, &ctx,
ChatId::new(chat_id), ChatId::new(chat_id),
MessageListOptions { add_daymarker }, MessageListOptions {
info_only,
add_daymarker,
},
) )
.await?; .await?;
Ok(msg Ok(msg
.iter() .iter()
.map(|chat_item| (*chat_item).into()) .map(|chat_item| (*chat_item).into())
.collect::<Vec<JsonrpcMessageListItem>>()) .collect::<Vec<JSONRPCMessageListItem>>())
} }
async fn get_message(&self, account_id: u32, msg_id: u32) -> Result<MessageObject> { async fn get_message(&self, account_id: u32, msg_id: u32) -> Result<MessageObject> {
@@ -1544,18 +1382,6 @@ impl CommandApi {
MessageInfo::from_msg_id(&ctx, MsgId::new(message_id)).await MessageInfo::from_msg_id(&ctx, MsgId::new(message_id)).await
} }
/// Returns count of read receipts on message.
///
/// This view count is meant as a feedback measure for the channel owner only.
async fn get_message_read_receipt_count(
&self,
account_id: u32,
message_id: u32,
) -> Result<usize> {
let ctx = self.get_context(account_id).await?;
get_msg_read_receipt_count(&ctx, MsgId::new(message_id)).await
}
/// Returns contacts that sent read receipts and the time of reading. /// Returns contacts that sent read receipts and the time of reading.
async fn get_message_read_receipts( async fn get_message_read_receipts(
&self, &self,
@@ -1882,6 +1708,20 @@ impl CommandApi {
deltachat::contact::make_vcard(&ctx, &contacts).await deltachat::contact::make_vcard(&ctx, &contacts).await
} }
/// Sets vCard containing the given contacts to the message draft.
async fn set_draft_vcard(
&self,
account_id: u32,
msg_id: u32,
contacts: Vec<u32>,
) -> Result<()> {
let ctx = self.get_context(account_id).await?;
let contacts: Vec<_> = contacts.iter().map(|&c| ContactId::new(c)).collect();
let mut msg = Message::load_from_db(&ctx, MsgId::new(msg_id)).await?;
msg.make_vcard(&ctx, &contacts).await?;
msg.get_chat_id().set_draft(&ctx, Some(&mut msg)).await
}
// --------------------------------------------- // ---------------------------------------------
// chat // chat
// --------------------------------------------- // ---------------------------------------------
@@ -2022,8 +1862,6 @@ impl CommandApi {
/// even if there is no concurrent call to [`CommandApi::provide_backup`], /// even if there is no concurrent call to [`CommandApi::provide_backup`],
/// but will fail after 60 seconds to avoid deadlocks. /// but will fail after 60 seconds to avoid deadlocks.
/// ///
/// @deprecated as of 2026-03; use `create_qr_svg(get_backup_qr())` instead.
///
/// Returns the QR code rendered as an SVG image. /// Returns the QR code rendered as an SVG image.
async fn get_backup_qr_svg(&self, account_id: u32) -> Result<String> { async fn get_backup_qr_svg(&self, account_id: u32) -> Result<String> {
let ctx = self.get_context(account_id).await?; let ctx = self.get_context(account_id).await?;
@@ -2037,11 +1875,6 @@ impl CommandApi {
generate_backup_qr(&ctx, &qr).await generate_backup_qr(&ctx, &qr).await
} }
/// Renders the given text as a QR code SVG image.
async fn create_qr_svg(&self, text: String) -> Result<String> {
create_qr_svg(&text)
}
/// Gets a backup from a remote provider. /// Gets a backup from a remote provider.
/// ///
/// This retrieves the backup from a remote device over the network and imports it into /// This retrieves the backup from a remote device over the network and imports it into
@@ -2106,21 +1939,6 @@ impl CommandApi {
// locations // locations
// --------------------------------------------- // ---------------------------------------------
/// Sets current location.
///
/// Returns true if location streaming is currently
/// enabled and locations should be updated.
///
/// Location is represented as latitude and longitude in degrees
/// and horizontal accuracy in meters.
async fn set_location(&self, latitude: f64, longitude: f64, accuracy: f64) -> Result<bool> {
self.accounts
.read()
.await
.set_location(latitude, longitude, accuracy)
.await
}
async fn get_locations( async fn get_locations(
&self, &self,
account_id: u32, account_id: u32,
@@ -2143,39 +1961,6 @@ impl CommandApi {
Ok(locations.into_iter().map(|l| l.into()).collect()) Ok(locations.into_iter().map(|l| l.into()).collect())
} }
/// Enables location streaming in chat identified by `chat_id` for `seconds` seconds.
///
/// Pass 0 as the number of seconds to disable location streaming in the chat.
async fn send_locations_to_chat(
&self,
account_id: u32,
chat_id: u32,
seconds: i64,
) -> Result<()> {
let ctx = self.get_context(account_id).await?;
let chat_id = ChatId::new(chat_id);
location::send_to_chat(&ctx, chat_id, seconds).await?;
Ok(())
}
/// Returns whether any chat is sending locations.
async fn is_sending_locations(&self, account_id: u32) -> Result<bool> {
let ctx = self.get_context(account_id).await?;
location::is_sending(&ctx).await
}
/// Returns whether `chat_id` is sending locations.
async fn is_sending_locations_to_chat(&self, account_id: u32, chat_id: u32) -> Result<bool> {
let ctx = self.get_context(account_id).await?;
let chat_id = ChatId::new(chat_id);
location::is_sending_to_chat(&ctx, chat_id).await
}
/// Stops sending locations to all chats.
async fn stop_sending_locations(&self) -> Result<()> {
self.accounts.read().await.stop_sending_locations().await
}
// --------------------------------------------- // ---------------------------------------------
// webxdc // webxdc
// --------------------------------------------- // ---------------------------------------------
@@ -2304,11 +2089,10 @@ impl CommandApi {
account_id: u32, account_id: u32,
chat_id: u32, chat_id: u32,
place_call_info: String, place_call_info: String,
has_video: bool,
) -> Result<u32> { ) -> Result<u32> {
let ctx = self.get_context(account_id).await?; let ctx = self.get_context(account_id).await?;
let msg_id = ctx let msg_id = ctx
.place_outgoing_call(ChatId::new(chat_id), place_call_info, has_video) .place_outgoing_call(ChatId::new(chat_id), place_call_info)
.await?; .await?;
Ok(msg_id.to_u32()) Ok(msg_id.to_u32())
} }
@@ -2372,27 +2156,6 @@ impl CommandApi {
forward_msgs(&ctx, &message_ids, ChatId::new(chat_id)).await forward_msgs(&ctx, &message_ids, ChatId::new(chat_id)).await
} }
/// Forward messages to a chat in another account.
/// See [`Self::forward_messages`] for more info.
async fn forward_messages_to_account(
&self,
src_account_id: u32,
src_message_ids: Vec<u32>,
dst_account_id: u32,
dst_chat_id: u32,
) -> Result<()> {
let src_ctx = self.get_context(src_account_id).await?;
let dst_ctx = self.get_context(dst_account_id).await?;
let src_message_ids: Vec<MsgId> = src_message_ids.into_iter().map(MsgId::new).collect();
forward_msgs_2ctx(
&src_ctx,
&src_message_ids,
&dst_ctx,
ChatId::new(dst_chat_id),
)
.await
}
/// Resend messages and make information available for newly added chat members. /// Resend messages and make information available for newly added chat members.
/// Resending sends out the original message, however, recipients and webxdc-status may differ. /// Resending sends out the original message, however, recipients and webxdc-status may differ.
/// Clients that already have the original message can still ignore the resent message as /// Clients that already have the original message can still ignore the resent message as
@@ -2407,7 +2170,6 @@ impl CommandApi {
chat::resend_msgs(&ctx, &message_ids).await chat::resend_msgs(&ctx, &message_ids).await
} }
/// @deprecated as of 2026-04; use `send_msg` with `Viewtype::Sticker` instead.
async fn send_sticker( async fn send_sticker(
&self, &self,
account_id: u32, account_id: u32,
@@ -2419,16 +2181,19 @@ impl CommandApi {
let mut msg = Message::new(Viewtype::Sticker); let mut msg = Message::new(Viewtype::Sticker);
msg.set_file_and_deduplicate(&ctx, Path::new(&sticker_path), None, None)?; msg.set_file_and_deduplicate(&ctx, Path::new(&sticker_path), None, None)?;
// JSON-rpc does not need heuristics to turn [Viewtype::Sticker] into [Viewtype::Image]
msg.force_sticker();
let message_id = deltachat::chat::send_msg(&ctx, ChatId::new(chat_id), &mut msg).await?; let message_id = deltachat::chat::send_msg(&ctx, ChatId::new(chat_id), &mut msg).await?;
Ok(message_id.to_u32()) Ok(message_id.to_u32())
} }
/// Sends a reaction to message. /// Send a reaction to message.
/// ///
/// A reaction is a string that represents an emoji. /// Reaction is a string of emojis separated by spaces. Reaction to a
/// You can call this function again to change the emoji; /// single message can be sent multiple times. The last reaction
/// the last sent reaction overrides all previously sent reactions. /// received overrides all previously received reactions. It is
/// It is possible to remove the reaction by sending an empty string. /// possible to remove all reactions by sending an empty string.
async fn send_reaction( async fn send_reaction(
&self, &self,
account_id: u32, account_id: u32,
@@ -2445,7 +2210,7 @@ impl CommandApi {
&self, &self,
account_id: u32, account_id: u32,
message_id: u32, message_id: u32,
) -> Result<Option<JsonrpcReactions>> { ) -> Result<Option<JSONRPCReactions>> {
let ctx = self.get_context(account_id).await?; let ctx = self.get_context(account_id).await?;
let reactions = get_msg_reactions(&ctx, MsgId::new(message_id)).await?; let reactions = get_msg_reactions(&ctx, MsgId::new(message_id)).await?;
if reactions.is_empty() { if reactions.is_empty() {
@@ -2601,10 +2366,7 @@ impl CommandApi {
continue; continue;
} }
let sticker_name = sticker_entry.file_name().into_string().unwrap_or_default(); let sticker_name = sticker_entry.file_name().into_string().unwrap_or_default();
if sticker_name.ends_with(".png") if sticker_name.ends_with(".png") || sticker_name.ends_with(".webp") {
|| sticker_name.ends_with(".webp")
|| sticker_name.ends_with(".gif")
{
sticker_paths.push( sticker_paths.push(
sticker_entry sticker_entry
.path() .path()

View File

@@ -15,7 +15,7 @@ pub enum Account {
display_name: Option<String>, display_name: Option<String>,
addr: Option<String>, addr: Option<String>,
// size: u32, // size: u32,
profile_image: Option<String>, profile_image: Option<String>, // TODO: This needs to be converted to work with blob http server.
color: String, color: String,
/// Optional tag as "Work", "Family". /// Optional tag as "Work", "Family".
/// Meant to help profile owner to differ between profiles with similar names. /// Meant to help profile owner to differ between profiles with similar names.
@@ -32,10 +32,7 @@ impl Account {
let addr = ctx.get_config(Config::Addr).await?; let addr = ctx.get_config(Config::Addr).await?;
let profile_image = ctx.get_config(Config::Selfavatar).await?; let profile_image = ctx.get_config(Config::Selfavatar).await?;
let color = color_int_to_hex_string( let color = color_int_to_hex_string(
Contact::get_by_id(ctx, ContactId::SELF) Contact::get_by_id(ctx, ContactId::SELF).await?.get_color(),
.await?
.get_or_gen_color(ctx)
.await?,
); );
let private_tag = ctx.get_config(Config::PrivateTag).await?; let private_tag = ctx.get_config(Config::PrivateTag).await?;
Ok(Account::Configured { Ok(Account::Configured {

View File

@@ -1,6 +1,6 @@
use anyhow::{Context as _, Result}; use anyhow::{Context as _, Result};
use deltachat::calls::{call_state, CallState}; use deltachat::calls::{call_state, sdp_has_video, CallState};
use deltachat::context::Context; use deltachat::context::Context;
use deltachat::message::MsgId; use deltachat::message::MsgId;
use serde::Serialize; use serde::Serialize;
@@ -15,7 +15,7 @@ pub struct JsonrpcCallInfo {
/// even if incoming call event was missed. /// even if incoming call event was missed.
pub sdp_offer: String, pub sdp_offer: String,
/// True if the call is started as a video call. /// True if SDP offer has a video.
pub has_video: bool, pub has_video: bool,
/// Call state. /// Call state.
@@ -30,7 +30,7 @@ impl JsonrpcCallInfo {
format!("Attempting to get call state of non-call message {msg_id}") format!("Attempting to get call state of non-call message {msg_id}")
})?; })?;
let sdp_offer = call_info.place_call_info.clone(); let sdp_offer = call_info.place_call_info.clone();
let has_video = call_info.has_video_initially(); let has_video = sdp_has_video(&sdp_offer).unwrap_or_default();
let state = JsonrpcCallState::from_msg_id(context, msg_id).await?; let state = JsonrpcCallState::from_msg_id(context, msg_id).await?;
Ok(JsonrpcCallInfo { Ok(JsonrpcCallInfo {

View File

@@ -6,10 +6,12 @@ use deltachat::chat::{Chat, ChatId};
use deltachat::constants::Chattype; use deltachat::constants::Chattype;
use deltachat::contact::{Contact, ContactId}; use deltachat::contact::{Contact, ContactId};
use deltachat::context::Context; use deltachat::context::Context;
use num_traits::cast::ToPrimitive;
use serde::{Deserialize, Serialize}; use serde::{Deserialize, Serialize};
use typescript_type_def::TypeDef; use typescript_type_def::TypeDef;
use super::color_int_to_hex_string; use super::color_int_to_hex_string;
use super::contact::ContactObject;
#[derive(Serialize, TypeDef, schemars::JsonSchema)] #[derive(Serialize, TypeDef, schemars::JsonSchema)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
@@ -17,6 +19,18 @@ pub struct FullChat {
id: u32, id: u32,
name: String, name: String,
/// True if the chat is protected.
///
/// Only verified contacts
/// as determined by [`ContactObject::is_verified`] / `Contact.isVerified`
/// can be added to protected chats.
///
/// Protected chats are created using [`create_group_chat`] / `createGroupChat()`
/// by setting the 'protect' parameter to true.
///
/// [`create_group_chat`]: crate::api::CommandApi::create_group_chat
is_protected: bool,
/// True if the chat is encrypted. /// True if the chat is encrypted.
/// This means that all messages in the chat are encrypted, /// This means that all messages in the chat are encrypted,
/// and all contacts in the chat are "key-contacts", /// and all contacts in the chat are "key-contacts",
@@ -44,9 +58,10 @@ pub struct FullChat {
archived: bool, archived: bool,
pinned: bool, pinned: bool,
// subtitle - will be moved to frontend because it uses translation functions // subtitle - will be moved to frontend because it uses translation functions
chat_type: JsonrpcChatType, chat_type: u32,
is_unpromoted: bool, is_unpromoted: bool,
is_self_talk: bool, is_self_talk: bool,
contacts: Vec<ContactObject>,
contact_ids: Vec<u32>, contact_ids: Vec<u32>,
/// Contact IDs of the past chat members. /// Contact IDs of the past chat members.
@@ -58,16 +73,9 @@ pub struct FullChat {
is_contact_request: bool, is_contact_request: bool,
is_device_chat: bool, is_device_chat: bool,
/// Note that this is different from
/// [`ChatListItem::is_self_in_group`](`crate::api::types::chat_list::ChatListItemFetchResult::ChatListItem::is_self_in_group`).
/// This property should only be accessed
/// when [`FullChat::chat_type`] is [`Chattype::Group`].
//
// We could utilize [`Chat::is_self_in_chat`],
// but that would be an extra DB query.
self_in_group: bool, self_in_group: bool,
is_muted: bool, is_muted: bool,
ephemeral_timer: u32, ephemeral_timer: u32, //TODO look if there are more important properties in newer core versions
can_send: bool, can_send: bool,
was_seen_recently: bool, was_seen_recently: bool,
mailing_list_address: Option<String>, mailing_list_address: Option<String>,
@@ -81,6 +89,20 @@ impl FullChat {
let contact_ids = get_chat_contacts(context, rust_chat_id).await?; let contact_ids = get_chat_contacts(context, rust_chat_id).await?;
let past_contact_ids = get_past_chat_contacts(context, rust_chat_id).await?; let past_contact_ids = get_past_chat_contacts(context, rust_chat_id).await?;
let mut contacts = Vec::with_capacity(contact_ids.len());
for contact_id in &contact_ids {
contacts.push(
ContactObject::try_from_dc_contact(
context,
Contact::get_by_id(context, *contact_id)
.await
.context("failed to load contact")?,
)
.await?,
)
}
let profile_image = match chat.get_profile_image(context).await? { let profile_image = match chat.get_profile_image(context).await? {
Some(path_buf) => path_buf.to_str().map(|s| s.to_owned()), Some(path_buf) => path_buf.to_str().map(|s| s.to_owned()),
None => None, None => None,
@@ -109,13 +131,15 @@ impl FullChat {
Ok(FullChat { Ok(FullChat {
id: chat_id, id: chat_id,
name: chat.name.clone(), name: chat.name.clone(),
is_protected: chat.is_protected(),
is_encrypted: chat.is_encrypted(context).await?, is_encrypted: chat.is_encrypted(context).await?,
profile_image, //BLOBS ? profile_image, //BLOBS ?
archived: chat.get_visibility() == chat::ChatVisibility::Archived, archived: chat.get_visibility() == chat::ChatVisibility::Archived,
pinned: chat.get_visibility() == chat::ChatVisibility::Pinned, pinned: chat.get_visibility() == chat::ChatVisibility::Pinned,
chat_type: chat.get_type().into(), chat_type: chat.get_type().to_u32().context("unknown chat type id")?,
is_unpromoted: chat.is_unpromoted(), is_unpromoted: chat.is_unpromoted(),
is_self_talk: chat.is_self_talk(), is_self_talk: chat.is_self_talk(),
contacts,
contact_ids: contact_ids.iter().map(|id| id.to_u32()).collect(), contact_ids: contact_ids.iter().map(|id| id.to_u32()).collect(),
past_contact_ids: past_contact_ids.iter().map(|id| id.to_u32()).collect(), past_contact_ids: past_contact_ids.iter().map(|id| id.to_u32()).collect(),
color, color,
@@ -133,6 +157,7 @@ impl FullChat {
} }
/// cheaper version of fullchat, omits: /// cheaper version of fullchat, omits:
/// - contacts
/// - contact_ids /// - contact_ids
/// - fresh_message_counter /// - fresh_message_counter
/// - ephemeral_timer /// - ephemeral_timer
@@ -147,6 +172,18 @@ pub struct BasicChat {
id: u32, id: u32,
name: String, name: String,
/// True if the chat is protected.
///
/// UI should display a green checkmark
/// in the chat title,
/// in the chat profile title and
/// in the chatlist item
/// if chat protection is enabled.
/// UI should also display a green checkmark
/// in the contact profile
/// if 1:1 chat with this contact exists and is protected.
is_protected: bool,
/// True if the chat is encrypted. /// True if the chat is encrypted.
/// This means that all messages in the chat are encrypted, /// This means that all messages in the chat are encrypted,
/// and all contacts in the chat are "key-contacts", /// and all contacts in the chat are "key-contacts",
@@ -173,7 +210,7 @@ pub struct BasicChat {
profile_image: Option<String>, //BLOBS ? profile_image: Option<String>, //BLOBS ?
archived: bool, archived: bool,
pinned: bool, pinned: bool,
chat_type: JsonrpcChatType, chat_type: u32,
is_unpromoted: bool, is_unpromoted: bool,
is_self_talk: bool, is_self_talk: bool,
color: String, color: String,
@@ -197,11 +234,12 @@ impl BasicChat {
Ok(BasicChat { Ok(BasicChat {
id: chat_id, id: chat_id,
name: chat.name.clone(), name: chat.name.clone(),
is_protected: chat.is_protected(),
is_encrypted: chat.is_encrypted(context).await?, is_encrypted: chat.is_encrypted(context).await?,
profile_image, //BLOBS ? profile_image, //BLOBS ?
archived: chat.get_visibility() == chat::ChatVisibility::Archived, archived: chat.get_visibility() == chat::ChatVisibility::Archived,
pinned: chat.get_visibility() == chat::ChatVisibility::Pinned, pinned: chat.get_visibility() == chat::ChatVisibility::Pinned,
chat_type: chat.get_type().into(), chat_type: chat.get_type().to_u32().context("unknown chat type id")?,
is_unpromoted: chat.is_unpromoted(), is_unpromoted: chat.is_unpromoted(),
is_self_talk: chat.is_self_talk(), is_self_talk: chat.is_self_talk(),
color, color,
@@ -240,52 +278,18 @@ impl MuteDuration {
#[derive(Clone, Serialize, Deserialize, TypeDef, schemars::JsonSchema)] #[derive(Clone, Serialize, Deserialize, TypeDef, schemars::JsonSchema)]
#[serde(rename = "ChatVisibility")] #[serde(rename = "ChatVisibility")]
pub enum JsonrpcChatVisibility { pub enum JSONRPCChatVisibility {
Normal, Normal,
Archived, Archived,
Pinned, Pinned,
} }
impl JsonrpcChatVisibility { impl JSONRPCChatVisibility {
pub fn into_core_type(self) -> ChatVisibility { pub fn into_core_type(self) -> ChatVisibility {
match self { match self {
JsonrpcChatVisibility::Normal => ChatVisibility::Normal, JSONRPCChatVisibility::Normal => ChatVisibility::Normal,
JsonrpcChatVisibility::Archived => ChatVisibility::Archived, JSONRPCChatVisibility::Archived => ChatVisibility::Archived,
JsonrpcChatVisibility::Pinned => ChatVisibility::Pinned, JSONRPCChatVisibility::Pinned => ChatVisibility::Pinned,
}
}
}
#[derive(Clone, Serialize, Deserialize, PartialEq, TypeDef, schemars::JsonSchema)]
#[serde(rename = "ChatType")]
pub enum JsonrpcChatType {
Single,
Group,
Mailinglist,
OutBroadcast,
InBroadcast,
}
impl From<Chattype> for JsonrpcChatType {
fn from(chattype: Chattype) -> Self {
match chattype {
Chattype::Single => JsonrpcChatType::Single,
Chattype::Group => JsonrpcChatType::Group,
Chattype::Mailinglist => JsonrpcChatType::Mailinglist,
Chattype::OutBroadcast => JsonrpcChatType::OutBroadcast,
Chattype::InBroadcast => JsonrpcChatType::InBroadcast,
}
}
}
impl From<JsonrpcChatType> for Chattype {
fn from(chattype: JsonrpcChatType) -> Self {
match chattype {
JsonrpcChatType::Single => Chattype::Single,
JsonrpcChatType::Group => Chattype::Group,
JsonrpcChatType::Mailinglist => Chattype::Mailinglist,
JsonrpcChatType::OutBroadcast => Chattype::OutBroadcast,
JsonrpcChatType::InBroadcast => Chattype::InBroadcast,
} }
} }
} }

View File

@@ -2,7 +2,7 @@ use anyhow::{Context, Result};
use deltachat::chat::{Chat, ChatId}; use deltachat::chat::{Chat, ChatId};
use deltachat::chatlist::get_last_message_for_chat; use deltachat::chatlist::get_last_message_for_chat;
use deltachat::constants::*; use deltachat::constants::*;
use deltachat::contact::Contact; use deltachat::contact::{Contact, ContactId};
use deltachat::{ use deltachat::{
chat::{get_chat_contacts, ChatVisibility}, chat::{get_chat_contacts, ChatVisibility},
chatlist::Chatlist, chatlist::Chatlist,
@@ -11,7 +11,6 @@ use num_traits::cast::ToPrimitive;
use serde::Serialize; use serde::Serialize;
use typescript_type_def::TypeDef; use typescript_type_def::TypeDef;
use super::chat::JsonrpcChatType;
use super::color_int_to_hex_string; use super::color_int_to_hex_string;
use super::message::MessageViewtype; use super::message::MessageViewtype;
@@ -24,13 +23,14 @@ pub enum ChatListItemFetchResult {
name: String, name: String,
avatar_path: Option<String>, avatar_path: Option<String>,
color: String, color: String,
chat_type: JsonrpcChatType, chat_type: u32,
last_updated: Option<i64>, last_updated: Option<i64>,
summary_text1: String, summary_text1: String,
summary_text2: String, summary_text2: String,
summary_status: u32, summary_status: u32,
/// showing preview if last chat message is image /// showing preview if last chat message is image
summary_preview_image: Option<String>, summary_preview_image: Option<String>,
is_protected: bool,
/// True if the chat is encrypted. /// True if the chat is encrypted.
/// This means that all messages in the chat are encrypted, /// This means that all messages in the chat are encrypted,
@@ -127,8 +127,11 @@ pub(crate) async fn get_chat_list_item_by_id(
None => (None, None), None => (None, None),
}; };
let chat_contacts = get_chat_contacts(ctx, chat_id).await?;
let self_in_group = chat_contacts.contains(&ContactId::SELF);
let (dm_chat_contact, was_seen_recently) = if chat.get_type() == Chattype::Single { let (dm_chat_contact, was_seen_recently) = if chat.get_type() == Chattype::Single {
let chat_contacts = get_chat_contacts(ctx, chat_id).await?;
let contact = chat_contacts.first(); let contact = chat_contacts.first();
let was_seen_recently = match contact { let was_seen_recently = match contact {
Some(contact) => Contact::get_by_id(ctx, *contact) Some(contact) => Contact::get_by_id(ctx, *contact)
@@ -152,18 +155,19 @@ pub(crate) async fn get_chat_list_item_by_id(
name: chat.get_name().to_owned(), name: chat.get_name().to_owned(),
avatar_path, avatar_path,
color, color,
chat_type: chat.get_type().into(), chat_type: chat.get_type().to_u32().context("unknown chat type id")?,
last_updated, last_updated,
summary_text1, summary_text1,
summary_text2, summary_text2,
summary_status: summary.state.to_u32().expect("impossible"), // idea and a function to transform the constant to strings? or return string enum summary_status: summary.state.to_u32().expect("impossible"), // idea and a function to transform the constant to strings? or return string enum
summary_preview_image, summary_preview_image,
is_protected: chat.is_protected(),
is_encrypted: chat.is_encrypted(ctx).await?, is_encrypted: chat.is_encrypted(ctx).await?,
is_group: chat.get_type() == Chattype::Group, is_group: chat.get_type() == Chattype::Group,
fresh_message_counter, fresh_message_counter,
is_self_talk: chat.is_self_talk(), is_self_talk: chat.is_self_talk(),
is_device_talk: chat.is_device_talk(), is_device_talk: chat.is_device_talk(),
is_self_in_group: chat.is_self_in_chat(ctx).await?, is_self_in_group: self_in_group,
is_sending_location: chat.is_sending_locations(), is_sending_location: chat.is_sending_locations(),
is_archived: visibility == ChatVisibility::Archived, is_archived: visibility == ChatVisibility::Archived,
is_pinned: visibility == ChatVisibility::Pinned, is_pinned: visibility == ChatVisibility::Pinned,

View File

@@ -1,6 +1,6 @@
use anyhow::Result; use anyhow::Result;
use deltachat::color;
use deltachat::context::Context; use deltachat::context::Context;
use deltachat::key::{DcKey, SignedPublicKey};
use serde::Serialize; use serde::Serialize;
use typescript_type_def::TypeDef; use typescript_type_def::TypeDef;
@@ -47,7 +47,8 @@ pub struct ContactObject {
/// ///
/// - If `verifierId` != 0, /// - If `verifierId` != 0,
/// display text "Introduced by ..." /// display text "Introduced by ..."
/// with the name of the contact. /// with the name and address of the contact
/// formatted by `name_and_addr`/`nameAndAddr`.
/// Prefix the text by a green checkmark. /// Prefix the text by a green checkmark.
/// ///
/// - If `verifierId` == 0 and `isVerified` != 0, /// - If `verifierId` == 0 and `isVerified` != 0,
@@ -129,13 +130,7 @@ pub struct VcardContact {
impl From<deltachat_contact_tools::VcardContact> for VcardContact { impl From<deltachat_contact_tools::VcardContact> for VcardContact {
fn from(vc: deltachat_contact_tools::VcardContact) -> Self { fn from(vc: deltachat_contact_tools::VcardContact) -> Self {
let display_name = vc.display_name().to_string(); let display_name = vc.display_name().to_string();
let is_self = false; let color = color::str_to_color(&vc.addr.to_lowercase());
let fpr = vc.key.as_deref().and_then(|k| {
SignedPublicKey::from_base64(k)
.ok()
.map(|k| k.dc_fingerprint())
});
let color = deltachat::contact::get_color(is_self, &vc.addr, &fpr);
Self { Self {
addr: vc.addr, addr: vc.addr,
display_name, display_name,

View File

@@ -1,9 +1,8 @@
use deltachat::{Event as CoreEvent, EventType as CoreEventType}; use deltachat::{Event as CoreEvent, EventType as CoreEventType};
use num_traits::ToPrimitive;
use serde::Serialize; use serde::Serialize;
use typescript_type_def::TypeDef; use typescript_type_def::TypeDef;
use super::chat::JsonrpcChatType;
#[derive(Serialize, TypeDef, schemars::JsonSchema)] #[derive(Serialize, TypeDef, schemars::JsonSchema)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct Event { pub struct Event {
@@ -271,7 +270,7 @@ pub enum EventType {
/// Progress. /// Progress.
/// ///
/// 0=error, 1-999=progress in permille, 1000=success and done /// 0=error, 1-999=progress in permille, 1000=success and done
progress: u16, progress: usize,
/// Progress comment or error, something to display to the user. /// Progress comment or error, something to display to the user.
comment: Option<String>, comment: Option<String>,
@@ -282,7 +281,7 @@ pub enum EventType {
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
ImexProgress { ImexProgress {
/// 0=error, 1-999=progress in permille, 1000=success and done /// 0=error, 1-999=progress in permille, 1000=success and done
progress: u16, progress: usize,
}, },
/// A file has been exported. A file has been written by imex(). /// A file has been exported. A file has been written by imex().
@@ -308,12 +307,12 @@ pub enum EventType {
/// The type of the joined chat. /// The type of the joined chat.
/// This can take the same values /// This can take the same values
/// as `BasicChat.chatType` ([`crate::api::types::chat::BasicChat::chat_type`]). /// as `BasicChat.chatType` ([`crate::api::types::chat::BasicChat::chat_type`]).
chat_type: JsonrpcChatType, chat_type: u32,
/// ID of the chat in case of success. /// ID of the chat in case of success.
chat_id: u32, chat_id: u32,
/// Progress, always 1000. /// Progress, always 1000.
progress: u16, progress: usize,
}, },
/// Progress information of a secure-join handshake from the view of the joiner /// Progress information of a secure-join handshake from the view of the joiner
@@ -329,7 +328,7 @@ pub enum EventType {
/// 400=vg-/vc-request-with-auth sent, typically shown as "alice@addr verified, introducing myself." /// 400=vg-/vc-request-with-auth sent, typically shown as "alice@addr verified, introducing myself."
/// (Bob has verified alice and waits until Alice does the same for him) /// (Bob has verified alice and waits until Alice does the same for him)
/// 1000=vg-member-added/vc-contact-confirm received /// 1000=vg-member-added/vc-contact-confirm received
progress: u16, progress: usize,
}, },
/// The connectivity to the server changed. /// The connectivity to the server changed.
@@ -441,8 +440,6 @@ pub enum EventType {
msg_id: u32, msg_id: u32,
/// ID of the chat which the message belongs to. /// ID of the chat which the message belongs to.
chat_id: u32, chat_id: u32,
/// The call was accepted from this device (process).
from_this_device: bool,
}, },
/// Outgoing call accepted. /// Outgoing call accepted.
@@ -462,15 +459,6 @@ pub enum EventType {
/// ID of the chat which the message belongs to. /// ID of the chat which the message belongs to.
chat_id: u32, chat_id: u32,
}, },
/// One or more transports has changed.
///
/// UI should update the list.
///
/// This event is emitted when transport
/// synchronization messages arrives,
/// but not when the UI modifies the transport list by itself.
TransportsModified,
} }
impl From<CoreEventType> for EventType { impl From<CoreEventType> for EventType {
@@ -582,7 +570,7 @@ impl From<CoreEventType> for EventType {
progress, progress,
} => SecurejoinInviterProgress { } => SecurejoinInviterProgress {
contact_id: contact_id.to_u32(), contact_id: contact_id.to_u32(),
chat_type: chat_type.into(), chat_type: chat_type.to_u32().unwrap_or(0),
chat_id: chat_id.to_u32(), chat_id: chat_id.to_u32(),
progress, progress,
}, },
@@ -636,14 +624,9 @@ impl From<CoreEventType> for EventType {
place_call_info, place_call_info,
has_video, has_video,
}, },
CoreEventType::IncomingCallAccepted { CoreEventType::IncomingCallAccepted { msg_id, chat_id } => IncomingCallAccepted {
msg_id,
chat_id,
from_this_device,
} => IncomingCallAccepted {
msg_id: msg_id.to_u32(), msg_id: msg_id.to_u32(),
chat_id: chat_id.to_u32(), chat_id: chat_id.to_u32(),
from_this_device,
}, },
CoreEventType::OutgoingCallAccepted { CoreEventType::OutgoingCallAccepted {
msg_id, msg_id,
@@ -658,8 +641,6 @@ impl From<CoreEventType> for EventType {
msg_id: msg_id.to_u32(), msg_id: msg_id.to_u32(),
chat_id: chat_id.to_u32(), chat_id: chat_id.to_u32(),
}, },
CoreEventType::TransportsModified => TransportsModified,
#[allow(unreachable_patterns)] #[allow(unreachable_patterns)]
#[cfg(test)] #[cfg(test)]
_ => unreachable!("This is just to silence a rust_analyzer false-positive"), _ => unreachable!("This is just to silence a rust_analyzer false-positive"),

View File

@@ -4,16 +4,6 @@ use serde::Deserialize;
use serde::Serialize; use serde::Serialize;
use yerpc::TypeDef; use yerpc::TypeDef;
#[derive(Serialize, TypeDef, schemars::JsonSchema)]
#[serde(rename_all = "camelCase")]
pub struct TransportListEntry {
/// The login data entered by the user.
pub param: EnteredLoginParam,
/// Whether this transport is set to 'unpublished'.
/// See `set_transport_unpublished` / `setTransportUnpublished` for details.
pub is_unpublished: bool,
}
/// Login parameters entered by the user. /// Login parameters entered by the user.
/// ///
/// Usually it will be enough to only set `addr` and `password`, /// Usually it will be enough to only set `addr` and `password`,
@@ -33,12 +23,6 @@ pub struct EnteredLoginParam {
/// Imap server port. /// Imap server port.
pub imap_port: Option<u16>, pub imap_port: Option<u16>,
/// IMAP server folder.
///
/// Defaults to "INBOX" if not set.
/// Should not be an empty string.
pub imap_folder: Option<String>,
/// Imap socket security. /// Imap socket security.
pub imap_security: Option<Socket>, pub imap_security: Option<Socket>,
@@ -72,15 +56,6 @@ pub struct EnteredLoginParam {
pub oauth2: Option<bool>, pub oauth2: Option<bool>,
} }
impl From<dc::TransportListEntry> for TransportListEntry {
fn from(transport: dc::TransportListEntry) -> Self {
TransportListEntry {
param: transport.param.into(),
is_unpublished: transport.is_unpublished,
}
}
}
impl From<dc::EnteredLoginParam> for EnteredLoginParam { impl From<dc::EnteredLoginParam> for EnteredLoginParam {
fn from(param: dc::EnteredLoginParam) -> Self { fn from(param: dc::EnteredLoginParam) -> Self {
let imap_security: Socket = param.imap.security.into(); let imap_security: Socket = param.imap.security.into();
@@ -91,7 +66,6 @@ impl From<dc::EnteredLoginParam> for EnteredLoginParam {
password: param.imap.password, password: param.imap.password,
imap_server: param.imap.server.into_option(), imap_server: param.imap.server.into_option(),
imap_port: param.imap.port.into_option(), imap_port: param.imap.port.into_option(),
imap_folder: param.imap.folder.into_option(),
imap_security: imap_security.into_option(), imap_security: imap_security.into_option(),
imap_user: param.imap.user.into_option(), imap_user: param.imap.user.into_option(),
smtp_server: param.smtp.server.into_option(), smtp_server: param.smtp.server.into_option(),
@@ -111,15 +85,14 @@ impl TryFrom<EnteredLoginParam> for dc::EnteredLoginParam {
fn try_from(param: EnteredLoginParam) -> Result<Self> { fn try_from(param: EnteredLoginParam) -> Result<Self> {
Ok(Self { Ok(Self {
addr: param.addr, addr: param.addr,
imap: dc::EnteredImapLoginParam { imap: dc::EnteredServerLoginParam {
server: param.imap_server.unwrap_or_default(), server: param.imap_server.unwrap_or_default(),
port: param.imap_port.unwrap_or_default(), port: param.imap_port.unwrap_or_default(),
folder: param.imap_folder.unwrap_or_default(),
security: param.imap_security.unwrap_or_default().into(), security: param.imap_security.unwrap_or_default().into(),
user: param.imap_user.unwrap_or_default(), user: param.imap_user.unwrap_or_default(),
password: param.password, password: param.password,
}, },
smtp: dc::EnteredSmtpLoginParam { smtp: dc::EnteredServerLoginParam {
server: param.smtp_server.unwrap_or_default(), server: param.smtp_server.unwrap_or_default(),
port: param.smtp_port.unwrap_or_default(), port: param.smtp_port.unwrap_or_default(),
security: param.smtp_security.unwrap_or_default().into(), security: param.smtp_security.unwrap_or_default().into(),

View File

@@ -16,10 +16,9 @@ use num_traits::cast::ToPrimitive;
use serde::{Deserialize, Serialize}; use serde::{Deserialize, Serialize};
use typescript_type_def::TypeDef; use typescript_type_def::TypeDef;
use super::chat::JsonrpcChatType;
use super::color_int_to_hex_string; use super::color_int_to_hex_string;
use super::contact::ContactObject; use super::contact::ContactObject;
use super::reactions::JsonrpcReactions; use super::reactions::JSONRPCReactions;
#[derive(Serialize, TypeDef, schemars::JsonSchema)] #[derive(Serialize, TypeDef, schemars::JsonSchema)]
#[serde(rename_all = "camelCase", tag = "kind")] #[serde(rename_all = "camelCase", tag = "kind")]
@@ -68,6 +67,7 @@ pub struct MessageObject {
/// if `show_padlock` is `false`, /// if `show_padlock` is `false`,
/// and nothing if it is `true`. /// and nothing if it is `true`.
show_padlock: bool, show_padlock: bool,
is_setupmessage: bool,
is_info: bool, is_info: bool,
is_forwarded: bool, is_forwarded: bool,
@@ -87,11 +87,10 @@ pub struct MessageObject {
override_sender_name: Option<String>, override_sender_name: Option<String>,
sender: ContactObject, sender: ContactObject,
setup_code_begin: Option<String>,
file: Option<String>, file: Option<String>,
file_mime: Option<String>, file_mime: Option<String>,
/// The size of the file in bytes, if applicable.
/// If message is a pre-message, then this is the size of the file to be downloaded.
file_bytes: u64, file_bytes: u64,
file_name: Option<String>, file_name: Option<String>,
@@ -103,7 +102,7 @@ pub struct MessageObject {
saved_message_id: Option<u32>, saved_message_id: Option<u32>,
reactions: Option<JsonrpcReactions>, reactions: Option<JSONRPCReactions>,
vcard_contact: Option<VcardContact>, vcard_contact: Option<VcardContact>,
} }
@@ -223,6 +222,7 @@ impl MessageObject {
subject: message.get_subject().to_owned(), subject: message.get_subject().to_owned(),
show_padlock: message.get_showpadlock(), show_padlock: message.get_showpadlock(),
is_setupmessage: message.is_setupmessage(),
is_info: message.is_info(), is_info: message.is_info(),
is_forwarded: message.is_forwarded(), is_forwarded: message.is_forwarded(),
is_bot: message.is_bot(), is_bot: message.is_bot(),
@@ -239,6 +239,8 @@ impl MessageObject {
override_sender_name, override_sender_name,
sender, sender,
setup_code_begin: message.get_setupcodebegin(context).await,
file: match message.get_file(context) { file: match message.get_file(context) {
Some(path_buf) => path_buf.to_str().map(|s| s.to_owned()), Some(path_buf) => path_buf.to_str().map(|s| s.to_owned()),
None => None, None => None,
@@ -287,6 +289,8 @@ pub enum MessageViewtype {
Gif, Gif,
/// Message containing a sticker, similar to image. /// Message containing a sticker, similar to image.
/// NB: When sending, the message viewtype may be changed to `Image` by some heuristics like
/// checking for transparent pixels. Use `Message::force_sticker()` to disable them.
/// ///
/// If possible, the ui should display the image without borders in a transparent way. /// If possible, the ui should display the image without borders in a transparent way.
/// A click on a sticker will offer to install the sticker set in some future. /// A click on a sticker will offer to install the sticker set in some future.
@@ -380,7 +384,6 @@ impl From<download::DownloadState> for DownloadState {
pub enum SystemMessageType { pub enum SystemMessageType {
Unknown, Unknown,
GroupNameChanged, GroupNameChanged,
GroupDescriptionChanged,
GroupImageChanged, GroupImageChanged,
MemberAddedToGroup, MemberAddedToGroup,
MemberRemovedFromGroup, MemberRemovedFromGroup,
@@ -433,7 +436,6 @@ impl From<deltachat::mimeparser::SystemMessage> for SystemMessageType {
match system_message_type { match system_message_type {
SystemMessage::Unknown => SystemMessageType::Unknown, SystemMessage::Unknown => SystemMessageType::Unknown,
SystemMessage::GroupNameChanged => SystemMessageType::GroupNameChanged, SystemMessage::GroupNameChanged => SystemMessageType::GroupNameChanged,
SystemMessage::GroupDescriptionChanged => SystemMessageType::GroupDescriptionChanged,
SystemMessage::GroupImageChanged => SystemMessageType::GroupImageChanged, SystemMessage::GroupImageChanged => SystemMessageType::GroupImageChanged,
SystemMessage::MemberAddedToGroup => SystemMessageType::MemberAddedToGroup, SystemMessage::MemberAddedToGroup => SystemMessageType::MemberAddedToGroup,
SystemMessage::MemberRemovedFromGroup => SystemMessageType::MemberRemovedFromGroup, SystemMessage::MemberRemovedFromGroup => SystemMessageType::MemberRemovedFromGroup,
@@ -529,7 +531,8 @@ pub struct MessageSearchResult {
chat_profile_image: Option<String>, chat_profile_image: Option<String>,
chat_color: String, chat_color: String,
chat_name: String, chat_name: String,
chat_type: JsonrpcChatType, chat_type: u32,
is_chat_protected: bool,
is_chat_contact_request: bool, is_chat_contact_request: bool,
is_chat_archived: bool, is_chat_archived: bool,
message: String, message: String,
@@ -567,8 +570,9 @@ impl MessageSearchResult {
chat_id: chat.id.to_u32(), chat_id: chat.id.to_u32(),
chat_name: chat.get_name().to_owned(), chat_name: chat.get_name().to_owned(),
chat_color, chat_color,
chat_type: chat.get_type().into(), chat_type: chat.get_type().to_u32().context("unknown chat type id")?,
chat_profile_image, chat_profile_image,
is_chat_protected: chat.is_protected(),
is_chat_contact_request: chat.is_contact_request(), is_chat_contact_request: chat.is_contact_request(),
is_chat_archived: chat.get_visibility() == ChatVisibility::Archived, is_chat_archived: chat.get_visibility() == ChatVisibility::Archived,
message: message.get_text(), message: message.get_text(),
@@ -579,7 +583,7 @@ impl MessageSearchResult {
#[derive(Serialize, TypeDef, schemars::JsonSchema)] #[derive(Serialize, TypeDef, schemars::JsonSchema)]
#[serde(rename_all = "camelCase", rename = "MessageListItem", tag = "kind")] #[serde(rename_all = "camelCase", rename = "MessageListItem", tag = "kind")]
pub enum JsonrpcMessageListItem { pub enum JSONRPCMessageListItem {
Message { Message {
msg_id: u32, msg_id: u32,
}, },
@@ -592,13 +596,13 @@ pub enum JsonrpcMessageListItem {
}, },
} }
impl From<ChatItem> for JsonrpcMessageListItem { impl From<ChatItem> for JSONRPCMessageListItem {
fn from(item: ChatItem) -> Self { fn from(item: ChatItem) -> Self {
match item { match item {
ChatItem::Message { msg_id } => JsonrpcMessageListItem::Message { ChatItem::Message { msg_id } => JSONRPCMessageListItem::Message {
msg_id: msg_id.to_u32(), msg_id: msg_id.to_u32(),
}, },
ChatItem::DayMarker { timestamp } => JsonrpcMessageListItem::DayMarker { timestamp }, ChatItem::DayMarker { timestamp } => JSONRPCMessageListItem::DayMarker { timestamp },
} }
} }
} }

View File

@@ -8,7 +8,6 @@ pub mod http;
pub mod location; pub mod location;
pub mod login_param; pub mod login_param;
pub mod message; pub mod message;
pub mod notify_state;
pub mod provider_info; pub mod provider_info;
pub mod qr; pub mod qr;
pub mod reactions; pub mod reactions;

View File

@@ -1,26 +0,0 @@
use deltachat::push::NotifyState;
use serde::Serialize;
use typescript_type_def::TypeDef;
#[derive(Serialize, TypeDef, schemars::JsonSchema)]
#[serde(rename = "NotifyState")]
pub enum JsonrpcNotifyState {
/// Not subscribed to push notifications.
NotConnected,
/// Subscribed to heartbeat push notifications.
Heartbeat,
/// Subscribed to push notifications for new messages.
Connected,
}
impl From<NotifyState> for JsonrpcNotifyState {
fn from(state: NotifyState) -> Self {
match state {
NotifyState::NotConnected => Self::NotConnected,
NotifyState::Heartbeat => Self::Heartbeat,
NotifyState::Connected => Self::Connected,
}
}
}

View File

@@ -1,5 +1,4 @@
use deltachat::qr::Qr; use deltachat::qr::Qr;
use serde::Deserialize;
use serde::Serialize; use serde::Serialize;
use typescript_type_def::TypeDef; use typescript_type_def::TypeDef;
@@ -19,8 +18,6 @@ pub enum QrObject {
invitenumber: String, invitenumber: String,
/// Authentication code. /// Authentication code.
authcode: String, authcode: String,
/// Whether the inviter supports the new Securejoin v3 protocol
is_v3: bool,
}, },
/// Ask the user whether to join the group. /// Ask the user whether to join the group.
AskVerifyGroup { AskVerifyGroup {
@@ -36,30 +33,6 @@ pub enum QrObject {
invitenumber: String, invitenumber: String,
/// Authentication code. /// Authentication code.
authcode: String, authcode: String,
/// Whether the inviter supports the new Securejoin v3 protocol
is_v3: bool,
},
/// Ask the user whether to join the broadcast channel.
AskJoinBroadcast {
/// The user-visible name of this broadcast channel
name: String,
/// A string of random characters,
/// uniquely identifying this broadcast channel across all databases/clients.
/// Called `grpid` for historic reasons:
/// The id of multi-user chats is always called `grpid` in the database
/// because groups were once the only multi-user chats.
grpid: String,
/// ID of the contact who owns the broadcast channel and created the QR code.
contact_id: u32,
/// Fingerprint of the broadcast channel owner's key as scanned from the QR code.
fingerprint: String,
/// Invite number.
invitenumber: String,
/// Authentication code.
authcode: String,
/// Whether the inviter supports the new Securejoin v3 protocol
is_v3: bool,
}, },
/// Contact fingerprint is verified. /// Contact fingerprint is verified.
/// ///
@@ -163,21 +136,6 @@ pub enum QrObject {
/// Authentication code. /// Authentication code.
authcode: String, authcode: String,
}, },
/// Ask the user if they want to withdraw their own broadcast channel invite QR code.
WithdrawJoinBroadcast {
/// Broadcast name.
name: String,
/// ID, uniquely identifying this chat. Called grpid for historic reasons.
grpid: String,
/// Contact ID. Always `ContactId::SELF`.
contact_id: u32,
/// Fingerprint of the contact key as scanned from the QR code.
fingerprint: String,
/// Invite number.
invitenumber: String,
/// Authentication code.
authcode: String,
},
/// Ask the user if they want to revive their own QR code. /// Ask the user if they want to revive their own QR code.
ReviveVerifyContact { ReviveVerifyContact {
/// Contact ID. /// Contact ID.
@@ -204,21 +162,6 @@ pub enum QrObject {
/// Authentication code. /// Authentication code.
authcode: String, authcode: String,
}, },
/// Ask the user if they want to revive their own broadcast channel invite QR code.
ReviveJoinBroadcast {
/// Broadcast name.
name: String,
/// Globally unique chat ID. Called grpid for historic reasons.
grpid: String,
/// Contact ID. Always `ContactId::SELF`.
contact_id: u32,
/// Fingerprint of the contact key as scanned from the QR code.
fingerprint: String,
/// Invite number.
invitenumber: String,
/// Authentication code.
authcode: String,
},
/// `dclogin:` scheme parameters. /// `dclogin:` scheme parameters.
/// ///
/// Ask the user if they want to login with the email address. /// Ask the user if they want to login with the email address.
@@ -235,16 +178,14 @@ impl From<Qr> for QrObject {
fingerprint, fingerprint,
invitenumber, invitenumber,
authcode, authcode,
is_v3,
} => { } => {
let contact_id = contact_id.to_u32(); let contact_id = contact_id.to_u32();
let fingerprint = fingerprint.human_readable(); let fingerprint = fingerprint.to_string();
QrObject::AskVerifyContact { QrObject::AskVerifyContact {
contact_id, contact_id,
fingerprint, fingerprint,
invitenumber, invitenumber,
authcode, authcode,
is_v3,
} }
} }
Qr::AskVerifyGroup { Qr::AskVerifyGroup {
@@ -254,10 +195,9 @@ impl From<Qr> for QrObject {
fingerprint, fingerprint,
invitenumber, invitenumber,
authcode, authcode,
is_v3,
} => { } => {
let contact_id = contact_id.to_u32(); let contact_id = contact_id.to_u32();
let fingerprint = fingerprint.human_readable(); let fingerprint = fingerprint.to_string();
QrObject::AskVerifyGroup { QrObject::AskVerifyGroup {
grpname, grpname,
grpid, grpid,
@@ -265,28 +205,6 @@ impl From<Qr> for QrObject {
fingerprint, fingerprint,
invitenumber, invitenumber,
authcode, authcode,
is_v3,
}
}
Qr::AskJoinBroadcast {
name,
grpid,
contact_id,
fingerprint,
authcode,
invitenumber,
is_v3,
} => {
let contact_id = contact_id.to_u32();
let fingerprint = fingerprint.human_readable();
QrObject::AskJoinBroadcast {
name,
grpid,
contact_id,
fingerprint,
authcode,
invitenumber,
is_v3,
} }
} }
Qr::FprOk { contact_id } => { Qr::FprOk { contact_id } => {
@@ -321,7 +239,7 @@ impl From<Qr> for QrObject {
authcode, authcode,
} => { } => {
let contact_id = contact_id.to_u32(); let contact_id = contact_id.to_u32();
let fingerprint = fingerprint.human_readable(); let fingerprint = fingerprint.to_string();
QrObject::WithdrawVerifyContact { QrObject::WithdrawVerifyContact {
contact_id, contact_id,
fingerprint, fingerprint,
@@ -338,7 +256,7 @@ impl From<Qr> for QrObject {
authcode, authcode,
} => { } => {
let contact_id = contact_id.to_u32(); let contact_id = contact_id.to_u32();
let fingerprint = fingerprint.human_readable(); let fingerprint = fingerprint.to_string();
QrObject::WithdrawVerifyGroup { QrObject::WithdrawVerifyGroup {
grpname, grpname,
grpid, grpid,
@@ -348,25 +266,6 @@ impl From<Qr> for QrObject {
authcode, authcode,
} }
} }
Qr::WithdrawJoinBroadcast {
name,
grpid,
contact_id,
fingerprint,
invitenumber,
authcode,
} => {
let contact_id = contact_id.to_u32();
let fingerprint = fingerprint.human_readable();
QrObject::WithdrawJoinBroadcast {
name,
grpid,
contact_id,
fingerprint,
invitenumber,
authcode,
}
}
Qr::ReviveVerifyContact { Qr::ReviveVerifyContact {
contact_id, contact_id,
fingerprint, fingerprint,
@@ -374,7 +273,7 @@ impl From<Qr> for QrObject {
authcode, authcode,
} => { } => {
let contact_id = contact_id.to_u32(); let contact_id = contact_id.to_u32();
let fingerprint = fingerprint.human_readable(); let fingerprint = fingerprint.to_string();
QrObject::ReviveVerifyContact { QrObject::ReviveVerifyContact {
contact_id, contact_id,
fingerprint, fingerprint,
@@ -391,7 +290,7 @@ impl From<Qr> for QrObject {
authcode, authcode,
} => { } => {
let contact_id = contact_id.to_u32(); let contact_id = contact_id.to_u32();
let fingerprint = fingerprint.human_readable(); let fingerprint = fingerprint.to_string();
QrObject::ReviveVerifyGroup { QrObject::ReviveVerifyGroup {
grpname, grpname,
grpid, grpid,
@@ -401,76 +300,7 @@ impl From<Qr> for QrObject {
authcode, authcode,
} }
} }
Qr::ReviveJoinBroadcast {
name,
grpid,
contact_id,
fingerprint,
invitenumber,
authcode,
} => {
let contact_id = contact_id.to_u32();
let fingerprint = fingerprint.human_readable();
QrObject::ReviveJoinBroadcast {
name,
grpid,
contact_id,
fingerprint,
invitenumber,
authcode,
}
}
Qr::Login { address, .. } => QrObject::Login { address }, Qr::Login { address, .. } => QrObject::Login { address },
} }
} }
} }
#[derive(Deserialize, TypeDef, schemars::JsonSchema)]
pub enum SecurejoinSource {
/// Because of some problem, it is unknown where the QR code came from.
Unknown,
/// The user opened a link somewhere outside Delta Chat
ExternalLink,
/// The user clicked on a link in a message inside Delta Chat
InternalLink,
/// The user clicked "Paste from Clipboard" in the QR scan activity
Clipboard,
/// The user clicked "Load QR code as image" in the QR scan activity
ImageLoaded,
/// The user scanned a QR code
Scan,
}
#[derive(Deserialize, TypeDef, schemars::JsonSchema)]
pub enum SecurejoinUiPath {
/// The UI path is unknown, or the user didn't open the QR code screen at all.
Unknown,
/// The user directly clicked on the QR icon in the main screen
QrIcon,
/// The user first clicked on the `+` button in the main screen,
/// and then on "New Contact"
NewContact,
}
impl From<SecurejoinSource> for deltachat::SecurejoinSource {
fn from(value: SecurejoinSource) -> Self {
match value {
SecurejoinSource::Unknown => deltachat::SecurejoinSource::Unknown,
SecurejoinSource::ExternalLink => deltachat::SecurejoinSource::ExternalLink,
SecurejoinSource::InternalLink => deltachat::SecurejoinSource::InternalLink,
SecurejoinSource::Clipboard => deltachat::SecurejoinSource::Clipboard,
SecurejoinSource::ImageLoaded => deltachat::SecurejoinSource::ImageLoaded,
SecurejoinSource::Scan => deltachat::SecurejoinSource::Scan,
}
}
}
impl From<SecurejoinUiPath> for deltachat::SecurejoinUiPath {
fn from(value: SecurejoinUiPath) -> Self {
match value {
SecurejoinUiPath::Unknown => deltachat::SecurejoinUiPath::Unknown,
SecurejoinUiPath::QrIcon => deltachat::SecurejoinUiPath::QrIcon,
SecurejoinUiPath::NewContact => deltachat::SecurejoinUiPath::NewContact,
}
}
}

View File

@@ -8,7 +8,7 @@ use typescript_type_def::TypeDef;
/// A single reaction emoji. /// A single reaction emoji.
#[derive(Serialize, TypeDef, schemars::JsonSchema)] #[derive(Serialize, TypeDef, schemars::JsonSchema)]
#[serde(rename = "Reaction", rename_all = "camelCase")] #[serde(rename = "Reaction", rename_all = "camelCase")]
pub struct JsonrpcReaction { pub struct JSONRPCReaction {
/// Emoji. /// Emoji.
emoji: String, emoji: String,
@@ -22,32 +22,41 @@ pub struct JsonrpcReaction {
/// Structure representing all reactions to a particular message. /// Structure representing all reactions to a particular message.
#[derive(Serialize, TypeDef, schemars::JsonSchema)] #[derive(Serialize, TypeDef, schemars::JsonSchema)]
#[serde(rename = "Reactions", rename_all = "camelCase")] #[serde(rename = "Reactions", rename_all = "camelCase")]
pub struct JsonrpcReactions { pub struct JSONRPCReactions {
/// Map from a contact to it's reaction to message. /// Map from a contact to it's reaction to message.
/// There is only a single reaction per contact,
/// but this contains a list of reactions for historical reasons.
reactions_by_contact: BTreeMap<u32, Vec<String>>, reactions_by_contact: BTreeMap<u32, Vec<String>>,
/// Unique reactions and their count, sorted in descending order. /// Unique reactions and their count, sorted in descending order.
reactions: Vec<JsonrpcReaction>, reactions: Vec<JSONRPCReaction>,
} }
impl From<Reactions> for JsonrpcReactions { impl From<Reactions> for JSONRPCReactions {
fn from(reactions: Reactions) -> Self { fn from(reactions: Reactions) -> Self {
let reactions_by_contact: BTreeMap<u32, Vec<String>> = reactions let mut reactions_by_contact: BTreeMap<u32, Vec<String>> = BTreeMap::new();
.iter()
.map(|(key, value)| (key.to_u32(), vec![value.as_str().to_string()])) for contact_id in reactions.contacts() {
.collect(); let reaction = reactions.get(contact_id);
let self_reaction = reactions_by_contact.get(&ContactId::SELF.to_u32()); if reaction.is_empty() {
continue;
}
let emojis: Vec<String> = reaction
.emojis()
.into_iter()
.map(|emoji| emoji.to_owned())
.collect();
reactions_by_contact.insert(contact_id.to_u32(), emojis.clone());
}
let self_reactions = reactions_by_contact.get(&ContactId::SELF.to_u32());
let mut reactions_v = Vec::new(); let mut reactions_v = Vec::new();
for (emoji, count) in reactions.emoji_sorted_by_frequency() { for (emoji, count) in reactions.emoji_sorted_by_frequency() {
let is_from_self = if let Some(self_reaction) = self_reaction { let is_from_self = if let Some(self_reactions) = self_reactions {
self_reaction.contains(&emoji) self_reactions.contains(&emoji)
} else { } else {
false false
}; };
let reaction = JsonrpcReaction { let reaction = JSONRPCReaction {
emoji, emoji,
count, count,
is_from_self, is_from_self,
@@ -55,7 +64,7 @@ impl From<Reactions> for JsonrpcReactions {
reactions_v.push(reaction) reactions_v.push(reaction)
} }
JsonrpcReactions { JSONRPCReactions {
reactions_by_contact, reactions_by_contact,
reactions: reactions_v, reactions: reactions_v,
} }

View File

@@ -37,10 +37,6 @@ pub struct WebxdcMessageInfo {
internet_access: bool, internet_access: bool,
/// Address to be used for `window.webxdc.selfAddr` in JS land. /// Address to be used for `window.webxdc.selfAddr` in JS land.
self_addr: String, self_addr: String,
/// Define if the local user is the one who initially shared the webxdc application in the chat.
is_app_sender: bool,
/// Define if the app runs in a broadcasting context.
is_broadcast: bool,
/// Milliseconds to wait before calling `sendUpdate()` again since the last call. /// Milliseconds to wait before calling `sendUpdate()` again since the last call.
/// Should be exposed to `window.sendUpdateInterval` in JS land. /// Should be exposed to `window.sendUpdateInterval` in JS land.
send_update_interval: usize, send_update_interval: usize,
@@ -64,8 +60,6 @@ impl WebxdcMessageInfo {
request_integration: _, request_integration: _,
internet_access, internet_access,
self_addr, self_addr,
is_app_sender,
is_broadcast,
send_update_interval, send_update_interval,
send_update_max_size, send_update_max_size,
} = message.get_webxdc_info(context).await?; } = message.get_webxdc_info(context).await?;
@@ -78,8 +72,6 @@ impl WebxdcMessageInfo {
source_code_url: maybe_empty_string_to_option(source_code_url), source_code_url: maybe_empty_string_to_option(source_code_url),
internet_access, internet_access,
self_addr, self_addr,
is_app_sender,
is_broadcast,
send_update_interval, send_update_interval,
send_update_max_size, send_update_max_size,
}) })

View File

@@ -85,7 +85,7 @@ mod tests {
assert_eq!(result, response.to_owned()); assert_eq!(result, response.to_owned());
} }
{ {
let request = r#"{"jsonrpc":"2.0","method":"batch_set_config","id":2,"params":[1,{"addr":"","mail_user":"","mail_pw":"","mail_server":"","mail_port":"","mail_security":"","imap_certificate_checks":"","send_user":"","send_pw":"","send_server":"","send_port":"","send_security":""}]}"#; let request = r#"{"jsonrpc":"2.0","method":"batch_set_config","id":2,"params":[1,{"addr":"","mail_user":"","mail_pw":"","mail_server":"","mail_port":"","mail_security":"","imap_certificate_checks":"","send_user":"","send_pw":"","send_server":"","send_port":"","send_security":"","smtp_certificate_checks":""}]}"#;
let response = r#"{"jsonrpc":"2.0","id":2,"result":null}"#; let response = r#"{"jsonrpc":"2.0","id":2,"result":null}"#;
session.handle_incoming(request).await; session.handle_incoming(request).await;
let result = receiver.recv().await?; let result = receiver.recv().await?;

View File

@@ -54,5 +54,5 @@
}, },
"type": "module", "type": "module",
"types": "dist/deltachat.d.ts", "types": "dist/deltachat.d.ts",
"version": "2.50.0-dev" "version": "2.20.0"
} }

View File

@@ -40,35 +40,15 @@ const constants = data
key.startsWith("DC_DOWNLOAD") || key.startsWith("DC_DOWNLOAD") ||
key.startsWith("DC_INFO_") || key.startsWith("DC_INFO_") ||
(key.startsWith("DC_MSG") && !key.startsWith("DC_MSG_ID")) || (key.startsWith("DC_MSG") && !key.startsWith("DC_MSG_ID")) ||
key.startsWith("DC_QR_") || key.startsWith("DC_QR_")
key.startsWith("DC_CERTCK_") ||
key.startsWith("DC_SOCKET_") ||
key.startsWith("DC_LP_AUTH_") ||
key.startsWith("DC_PUSH_") ||
key.startsWith("DC_TEXT1_") ||
key.startsWith("DC_CHAT_TYPE")
); );
}) })
.map((row) => { .map((row) => {
return ` export const ${row.key} = ${row.value};`; return ` ${row.key}: ${row.value}`;
}) })
.join("\n"); .join(",\n");
writeFileSync( writeFileSync(
resolve(__dirname, "../generated/constants.ts"), resolve(__dirname, "../generated/constants.ts"),
`// Generated! `// Generated!\n\nexport enum C {\n${constants.replace(/:/g, " =")},\n}\n`,
export namespace C {
${constants}
/** @deprecated 10-8-2025 compare string directly with \`== "Group"\` */
export const DC_CHAT_TYPE_GROUP = "Group";
/** @deprecated 10-8-2025 compare string directly with \`== "InBroadcast"\`*/
export const DC_CHAT_TYPE_IN_BROADCAST = "InBroadcast";
/** @deprecated 10-8-2025 compare string directly with \`== "Mailinglist"\` */
export const DC_CHAT_TYPE_MAILINGLIST = "Mailinglist";
/** @deprecated 10-8-2025 compare string directly with \`== "OutBroadcast"\` */
export const DC_CHAT_TYPE_OUT_BROADCAST = "OutBroadcast";
/** @deprecated 10-8-2025 compare string directly with \`== "Single"\` */
export const DC_CHAT_TYPE_SINGLE = "Single";
}\n`,
); );

View File

@@ -53,19 +53,18 @@ export class BaseDeltaChat<
*/ */
async eventLoop(): Promise<void> { async eventLoop(): Promise<void> {
while (true) { while (true) {
for (const event of await this.rpc.getNextEventBatch()) { const event = await this.rpc.getNextEvent();
//@ts-ignore //@ts-ignore
this.emit(event.event.kind, event.contextId, event.event); this.emit(event.event.kind, event.contextId, event.event);
this.emit("ALL", event.contextId, event.event); this.emit("ALL", event.contextId, event.event);
if (this.contextEmitters[event.contextId]) { if (this.contextEmitters[event.contextId]) {
this.contextEmitters[event.contextId].emit( this.contextEmitters[event.contextId].emit(
event.event.kind, event.event.kind,
//@ts-ignore //@ts-ignore
event.event as any, event.event as any,
); );
this.contextEmitters[event.contextId].emit("ALL", event.event as any); this.contextEmitters[event.contextId].emit("ALL", event.event as any);
}
} }
} }
} }

View File

@@ -64,7 +64,6 @@ describe("online tests", function () {
await dc.rpc.setConfig(accountId1, "addr", account1.email); await dc.rpc.setConfig(accountId1, "addr", account1.email);
await dc.rpc.setConfig(accountId1, "mail_pw", account1.password); await dc.rpc.setConfig(accountId1, "mail_pw", account1.password);
await dc.rpc.configure(accountId1); await dc.rpc.configure(accountId1);
await waitForEvent(dc, "ImapInboxIdle", accountId1);
accountId2 = await dc.rpc.addAccount(); accountId2 = await dc.rpc.addAccount();
await dc.rpc.batchSetConfig(accountId2, { await dc.rpc.batchSetConfig(accountId2, {
@@ -72,7 +71,6 @@ describe("online tests", function () {
mail_pw: account2.password, mail_pw: account2.password,
}); });
await dc.rpc.configure(accountId2); await dc.rpc.configure(accountId2);
await waitForEvent(dc, "ImapInboxIdle", accountId2);
accountsConfigured = true; accountsConfigured = true;
}); });

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "deltachat-repl" name = "deltachat-repl"
version = "2.50.0-dev" version = "2.20.0"
license = "MPL-2.0" license = "MPL-2.0"
edition = "2021" edition = "2021"
repository = "https://github.com/chatmail/core" repository = "https://github.com/chatmail/core"

View File

@@ -6,7 +6,9 @@ use std::str::FromStr;
use std::time::Duration; use std::time::Duration;
use anyhow::{bail, ensure, Result}; use anyhow::{bail, ensure, Result};
use deltachat::chat::{self, Chat, ChatId, ChatItem, ChatVisibility, MuteDuration}; use deltachat::chat::{
self, Chat, ChatId, ChatItem, ChatVisibility, MuteDuration, ProtectionStatus,
};
use deltachat::chatlist::*; use deltachat::chatlist::*;
use deltachat::constants::*; use deltachat::constants::*;
use deltachat::contact::*; use deltachat::contact::*;
@@ -70,6 +72,11 @@ async fn reset_tables(context: &Context, bits: i32) {
.await .await
.unwrap(); .unwrap();
context.sql().config_cache().write().await.clear(); context.sql().config_cache().write().await.clear();
context
.sql()
.execute("DELETE FROM leftgrps;", ())
.await
.unwrap();
println!("(8) Rest but server config reset."); println!("(8) Rest but server config reset.");
} }
@@ -302,6 +309,9 @@ pub async fn cmdline(context: Context, line: &str, chat_id: &mut ChatId) -> Resu
// TODO: reuse commands definition in main.rs. // TODO: reuse commands definition in main.rs.
"imex" => println!( "imex" => println!(
"====================Import/Export commands==\n\ "====================Import/Export commands==\n\
initiate-key-transfer\n\
get-setupcodebegin <msg-id>\n\
continue-key-transfer <msg-id> <setup-code>\n\
has-backup\n\ has-backup\n\
export-backup\n\ export-backup\n\
import-backup <backup-file>\n\ import-backup <backup-file>\n\
@@ -337,17 +347,17 @@ pub async fn cmdline(context: Context, line: &str, chat_id: &mut ChatId) -> Resu
createchat <contact-id>\n\ createchat <contact-id>\n\
creategroup <name>\n\ creategroup <name>\n\
createbroadcast <name>\n\ createbroadcast <name>\n\
createprotected <name>\n\
addmember <contact-id>\n\ addmember <contact-id>\n\
removemember <contact-id>\n\ removemember <contact-id>\n\
groupname <name>\n\ groupname <name>\n\
groupdescription <description>\n\
groupimage <image>\n\ groupimage <image>\n\
chatinfo\n\ chatinfo\n\
sendlocations <seconds>\n\ sendlocations <seconds>\n\
setlocation <lat> <lng>\n\ setlocation <lat> <lng>\n\
dellocations\n\
getlocations [<contact-id>]\n\ getlocations [<contact-id>]\n\
send <text>\n\ send <text>\n\
send-sync <text>\n\
sendempty\n\ sendempty\n\
sendimage <file> [<text>]\n\ sendimage <file> [<text>]\n\
sendsticker <file> [<text>]\n\ sendsticker <file> [<text>]\n\
@@ -404,6 +414,34 @@ pub async fn cmdline(context: Context, line: &str, chat_id: &mut ChatId) -> Resu
=============================================" ============================================="
), ),
}, },
"initiate-key-transfer" => match initiate_key_transfer(&context).await {
Ok(setup_code) => {
println!("Setup code for the transferred setup message: {setup_code}",)
}
Err(err) => bail!("Failed to generate setup code: {err}"),
},
"get-setupcodebegin" => {
ensure!(!arg1.is_empty(), "Argument <msg-id> missing.");
let msg_id: MsgId = MsgId::new(arg1.parse()?);
let msg = Message::load_from_db(&context, msg_id).await?;
if msg.is_setupmessage() {
let setupcodebegin = msg.get_setupcodebegin(&context).await;
println!(
"The setup code for setup message {} starts with: {}",
msg_id,
setupcodebegin.unwrap_or_default(),
);
} else {
bail!("{msg_id} is no setup message.",);
}
}
"continue-key-transfer" => {
ensure!(
!arg1.is_empty() && !arg2.is_empty(),
"Arguments <msg-id> <setup-code> expected"
);
continue_key_transfer(&context, MsgId::new(arg1.parse()?), arg2).await?;
}
"has-backup" => { "has-backup" => {
has_backup(&context, blobdir).await?; has_backup(&context, blobdir).await?;
} }
@@ -524,7 +562,7 @@ pub async fn cmdline(context: Context, line: &str, chat_id: &mut ChatId) -> Resu
for i in (0..cnt).rev() { for i in (0..cnt).rev() {
let chat = Chat::load_from_db(&context, chatlist.get_chat_id(i)?).await?; let chat = Chat::load_from_db(&context, chatlist.get_chat_id(i)?).await?;
println!( println!(
"{}#{}: {} [{} fresh] {}{}{}", "{}#{}: {} [{} fresh] {}{}{}{}",
chat_prefix(&chat), chat_prefix(&chat),
chat.get_id(), chat.get_id(),
chat.get_name(), chat.get_name(),
@@ -535,6 +573,7 @@ pub async fn cmdline(context: Context, line: &str, chat_id: &mut ChatId) -> Resu
ChatVisibility::Archived => "📦", ChatVisibility::Archived => "📦",
ChatVisibility::Pinned => "📌", ChatVisibility::Pinned => "📌",
}, },
if chat.is_protected() { "🛡️" } else { "" },
if chat.is_contact_request() { if chat.is_contact_request() {
"🆕" "🆕"
} else { } else {
@@ -573,7 +612,7 @@ pub async fn cmdline(context: Context, line: &str, chat_id: &mut ChatId) -> Resu
); );
} }
} }
if location::is_sending(&context).await? { if location::is_sending_locations_to_chat(&context, None).await? {
println!("Location streaming enabled."); println!("Location streaming enabled.");
} }
println!("{cnt} chats"); println!("{cnt} chats");
@@ -622,6 +661,7 @@ pub async fn cmdline(context: Context, line: &str, chat_id: &mut ChatId) -> Resu
&context, &context,
sel_chat.get_id(), sel_chat.get_id(),
chat::MessageListOptions { chat::MessageListOptions {
info_only: false,
add_daymarker: true, add_daymarker: true,
}, },
) )
@@ -648,7 +688,7 @@ pub async fn cmdline(context: Context, line: &str, chat_id: &mut ChatId) -> Resu
format!("{} member(s)", members.len()) format!("{} member(s)", members.len())
}; };
println!( println!(
"{}#{}: {} [{}]{}{}{}", "{}#{}: {} [{}]{}{}{} {}",
chat_prefix(sel_chat), chat_prefix(sel_chat),
sel_chat.get_id(), sel_chat.get_id(),
sel_chat.get_name(), sel_chat.get_name(),
@@ -666,6 +706,11 @@ pub async fn cmdline(context: Context, line: &str, chat_id: &mut ChatId) -> Resu
}, },
_ => "".to_string(), _ => "".to_string(),
}, },
if sel_chat.is_protected() {
"🛡️"
} else {
""
},
); );
log_msglist(&context, &msglist).await?; log_msglist(&context, &msglist).await?;
if let Some(draft) = sel_chat.get_id().get_draft(&context).await? { if let Some(draft) = sel_chat.get_id().get_draft(&context).await? {
@@ -694,7 +739,8 @@ pub async fn cmdline(context: Context, line: &str, chat_id: &mut ChatId) -> Resu
} }
"creategroup" => { "creategroup" => {
ensure!(!arg1.is_empty(), "Argument <name> missing."); ensure!(!arg1.is_empty(), "Argument <name> missing.");
let chat_id = chat::create_group(&context, arg1).await?; let chat_id =
chat::create_group_chat(&context, ProtectionStatus::Unprotected, arg1).await?;
println!("Group#{chat_id} created successfully."); println!("Group#{chat_id} created successfully.");
} }
@@ -704,6 +750,13 @@ pub async fn cmdline(context: Context, line: &str, chat_id: &mut ChatId) -> Resu
println!("Broadcast#{chat_id} created successfully."); println!("Broadcast#{chat_id} created successfully.");
} }
"createprotected" => {
ensure!(!arg1.is_empty(), "Argument <name> missing.");
let chat_id =
chat::create_group_chat(&context, ProtectionStatus::Protected, arg1).await?;
println!("Group#{chat_id} created and protected successfully.");
}
"addmember" => { "addmember" => {
ensure!(sel_chat.is_some(), "No chat selected"); ensure!(sel_chat.is_some(), "No chat selected");
ensure!(!arg1.is_empty(), "Argument <contact-id> missing."); ensure!(!arg1.is_empty(), "Argument <contact-id> missing.");
@@ -738,13 +791,6 @@ pub async fn cmdline(context: Context, line: &str, chat_id: &mut ChatId) -> Resu
println!("Chat name set"); println!("Chat name set");
} }
"groupdescription" => {
ensure!(sel_chat.is_some(), "No chat selected.");
ensure!(!arg1.is_empty(), "Argument <description> missing.");
chat::set_chat_description(&context, sel_chat.as_ref().unwrap().get_id(), arg1).await?;
println!("Chat description set");
}
"groupimage" => { "groupimage" => {
ensure!(sel_chat.is_some(), "No chat selected."); ensure!(sel_chat.is_some(), "No chat selected.");
ensure!(!arg1.is_empty(), "Argument <image> missing."); ensure!(!arg1.is_empty(), "Argument <image> missing.");
@@ -780,7 +826,11 @@ pub async fn cmdline(context: Context, line: &str, chat_id: &mut ChatId) -> Resu
println!( println!(
"Location streaming: {}", "Location streaming: {}",
location::is_sending_to_chat(&context, sel_chat.as_ref().unwrap().get_id()).await?, location::is_sending_locations_to_chat(
&context,
Some(sel_chat.as_ref().unwrap().get_id())
)
.await?,
); );
} }
"getlocations" => { "getlocations" => {
@@ -820,7 +870,12 @@ pub async fn cmdline(context: Context, line: &str, chat_id: &mut ChatId) -> Resu
ensure!(!arg1.is_empty(), "No timeout given."); ensure!(!arg1.is_empty(), "No timeout given.");
let seconds = arg1.parse()?; let seconds = arg1.parse()?;
location::send_to_chat(&context, sel_chat.as_ref().unwrap().get_id(), seconds).await?; location::send_locations_to_chat(
&context,
sel_chat.as_ref().unwrap().get_id(),
seconds,
)
.await?;
println!( println!(
"Locations will be sent to Chat#{} for {} seconds. Use 'setlocation <lat> <lng>' to play around.", "Locations will be sent to Chat#{} for {} seconds. Use 'setlocation <lat> <lng>' to play around.",
sel_chat.as_ref().unwrap().get_id(), sel_chat.as_ref().unwrap().get_id(),
@@ -842,6 +897,9 @@ pub async fn cmdline(context: Context, line: &str, chat_id: &mut ChatId) -> Resu
println!("Success, streaming can be stopped."); println!("Success, streaming can be stopped.");
} }
} }
"dellocations" => {
location::delete_all(&context).await?;
}
"send" => { "send" => {
ensure!(sel_chat.is_some(), "No chat selected."); ensure!(sel_chat.is_some(), "No chat selected.");
ensure!(!arg1.is_empty(), "No message text given."); ensure!(!arg1.is_empty(), "No message text given.");
@@ -850,23 +908,6 @@ pub async fn cmdline(context: Context, line: &str, chat_id: &mut ChatId) -> Resu
chat::send_text_msg(&context, sel_chat.as_ref().unwrap().get_id(), msg).await?; chat::send_text_msg(&context, sel_chat.as_ref().unwrap().get_id(), msg).await?;
} }
"send-sync" => {
ensure!(sel_chat.is_some(), "No chat selected.");
ensure!(!arg1.is_empty(), "No message text given.");
// Send message over a dedicated SMTP connection
// and measure time.
//
// This can be used to benchmark SMTP connection establishment.
let time_start = std::time::Instant::now();
let msg = format!("{arg1} {arg2}");
let mut msg = Message::new_text(msg);
chat::send_msg_sync(&context, sel_chat.as_ref().unwrap().get_id(), &mut msg).await?;
let time_needed = time_start.elapsed();
println!("Sent message in {time_needed:?}.");
}
"sendempty" => { "sendempty" => {
ensure!(sel_chat.is_some(), "No chat selected."); ensure!(sel_chat.is_some(), "No chat selected.");
chat::send_text_msg(&context, sel_chat.as_ref().unwrap().get_id(), "".into()).await?; chat::send_text_msg(&context, sel_chat.as_ref().unwrap().get_id(), "".into()).await?;
@@ -1194,7 +1235,7 @@ pub async fn cmdline(context: Context, line: &str, chat_id: &mut ChatId) -> Resu
"setqr" => { "setqr" => {
ensure!(!arg1.is_empty(), "Argument <qr-content> missing."); ensure!(!arg1.is_empty(), "Argument <qr-content> missing.");
match set_config_from_qr(&context, arg1).await { match set_config_from_qr(&context, arg1).await {
Ok(()) => eprintln!("Config set from the QR code."), Ok(()) => println!("Config set from QR code, you can now call 'configure'"),
Err(err) => eprintln!("Cannot set config from QR code: {err:?}"), Err(err) => eprintln!("Cannot set config from QR code: {err:?}"),
} }
} }
@@ -1207,7 +1248,10 @@ pub async fn cmdline(context: Context, line: &str, chat_id: &mut ChatId) -> Resu
} }
"providerinfo" => { "providerinfo" => {
ensure!(!arg1.is_empty(), "Argument <addr> missing."); ensure!(!arg1.is_empty(), "Argument <addr> missing.");
match provider::get_provider_info(arg1) { let proxy_enabled = context
.get_config_bool(config::Config::ProxyEnabled)
.await?;
match provider::get_provider_info(&context, arg1, proxy_enabled).await {
Some(info) => { Some(info) => {
println!("Information for provider belonging to {arg1}:"); println!("Information for provider belonging to {arg1}:");
println!("status: {}", info.status as u32); println!("status: {}", info.status as u32);

View File

@@ -149,7 +149,10 @@ impl Completer for DcHelper {
} }
} }
const IMEX_COMMANDS: [&str; 10] = [ const IMEX_COMMANDS: [&str; 13] = [
"initiate-key-transfer",
"get-setupcodebegin",
"continue-key-transfer",
"has-backup", "has-backup",
"export-backup", "export-backup",
"import-backup", "import-backup",
@@ -176,7 +179,7 @@ const DB_COMMANDS: [&str; 11] = [
"housekeeping", "housekeeping",
]; ];
const CHAT_COMMANDS: [&str; 39] = [ const CHAT_COMMANDS: [&str; 38] = [
"listchats", "listchats",
"listarchived", "listarchived",
"start-realtime", "start-realtime",
@@ -189,14 +192,13 @@ const CHAT_COMMANDS: [&str; 39] = [
"addmember", "addmember",
"removemember", "removemember",
"groupname", "groupname",
"groupdescription",
"groupimage", "groupimage",
"chatinfo", "chatinfo",
"sendlocations", "sendlocations",
"setlocation", "setlocation",
"dellocations",
"getlocations", "getlocations",
"send", "send",
"send-sync",
"sendempty", "sendempty",
"sendimage", "sendimage",
"sendsticker", "sendsticker",
@@ -427,12 +429,12 @@ async fn handle_cmd(
} }
"oauth2" => { "oauth2" => {
if let Some(addr) = ctx.get_config(config::Config::Addr).await? { if let Some(addr) = ctx.get_config(config::Config::Addr).await? {
if let Some(oauth2_url) = let oauth2_url =
get_oauth2_url(&ctx, &addr, "chat.delta:/com.b44t.messenger").await? get_oauth2_url(&ctx, &addr, "chat.delta:/com.b44t.messenger").await?;
{ if oauth2_url.is_none() {
println!("Open the following url, set mail_pw to the generated token and server_flags to 2:\n{oauth2_url}");
} else {
println!("OAuth2 not available for {}.", &addr); println!("OAuth2 not available for {}.", &addr);
} else {
println!("Open the following url, set mail_pw to the generated token and server_flags to 2:\n{}", oauth2_url.unwrap());
} }
} else { } else {
println!("oauth2: set addr first."); println!("oauth2: set addr first.");

View File

@@ -2,9 +2,6 @@
RPC client connects to standalone Delta Chat RPC server `deltachat-rpc-server` RPC client connects to standalone Delta Chat RPC server `deltachat-rpc-server`
and provides asynchronous interface to it. and provides asynchronous interface to it.
`rpc.start()` performs a health-check RPC call to verify the server
started successfully and will raise an error if startup fails
(e.g. if the accounts directory could not be used).
## Getting started ## Getting started
@@ -33,15 +30,6 @@ $ pip install .
Additional arguments to `tox` are passed to pytest, e.g. `tox -- -s` does not capture test output. Additional arguments to `tox` are passed to pytest, e.g. `tox -- -s` does not capture test output.
## Activating current checkout of deltachat-rpc-client and -server for development
Go to root repository directory and run:
```
$ scripts/make-rpc-testenv.sh
$ source venv/bin/activate
```
## Using in REPL ## Using in REPL
Setup a development environment: Setup a development environment:

View File

@@ -13,7 +13,7 @@ def main():
with Rpc() as rpc: with Rpc() as rpc:
deltachat = DeltaChat(rpc) deltachat = DeltaChat(rpc)
system_info = deltachat.get_system_info() system_info = deltachat.get_system_info()
logging.info(f"Running deltachat core {system_info['deltachat_core_version']}") logging.info("Running deltachat core %s", system_info["deltachat_core_version"])
accounts = deltachat.get_all_accounts() accounts = deltachat.get_all_accounts()
account = accounts[0] if accounts else deltachat.add_account() account = accounts[0] if accounts else deltachat.add_account()
@@ -21,30 +21,36 @@ def main():
account.set_config("bot", "1") account.set_config("bot", "1")
if not account.is_configured(): if not account.is_configured():
logging.info("Account is not configured, configuring") logging.info("Account is not configured, configuring")
account.add_or_update_transport({"addr": sys.argv[1], "password": sys.argv[2]}) account.set_config("addr", sys.argv[1])
account.set_config("mail_pw", sys.argv[2])
account.configure()
logging.info("Configured") logging.info("Configured")
else: else:
logging.info("Account is already configured") logging.info("Account is already configured")
deltachat.start_io() deltachat.start_io()
qr = account.get_qr_code() def process_messages():
logging.info(f"Invite link: {qr}") for message in account.get_next_messages():
while True:
event = account.wait_for_event()
if event.kind == EventType.INFO:
logging.info(event["msg"])
elif event.kind == EventType.WARNING:
logging.warning(event["msg"])
elif event.kind == EventType.ERROR:
logging.error(event["msg"])
elif event.kind == EventType.INCOMING_MSG:
logging.info("Got an incoming message")
message = account.get_message_by_id(event.msg_id)
snapshot = message.get_snapshot() snapshot = message.get_snapshot()
if snapshot.from_id != SpecialContactId.SELF and not snapshot.is_bot and not snapshot.is_info: if snapshot.from_id != SpecialContactId.SELF and not snapshot.is_bot and not snapshot.is_info:
snapshot.chat.send_text(snapshot.text) snapshot.chat.send_text(snapshot.text)
snapshot.message.mark_seen() snapshot.message.mark_seen()
# Process old messages.
process_messages()
while True:
event = account.wait_for_event()
if event["kind"] == EventType.INFO:
logging.info("%s", event["msg"])
elif event["kind"] == EventType.WARNING:
logging.warning("%s", event["msg"])
elif event["kind"] == EventType.ERROR:
logging.error("%s", event["msg"])
elif event["kind"] == EventType.INCOMING_MSG:
logging.info("Got an incoming message")
process_messages()
if __name__ == "__main__": if __name__ == "__main__":
logging.basicConfig(level=logging.INFO) logging.basicConfig(level=logging.INFO)

View File

@@ -1,18 +1,20 @@
[build-system] [build-system]
requires = ["setuptools>=77"] requires = ["setuptools>=45"]
build-backend = "setuptools.build_meta" build-backend = "setuptools.build_meta"
[project] [project]
name = "deltachat-rpc-client" name = "deltachat-rpc-client"
version = "2.50.0-dev" version = "2.20.0"
license = "MPL-2.0"
description = "Python client for Delta Chat core JSON-RPC interface" description = "Python client for Delta Chat core JSON-RPC interface"
classifiers = [ classifiers = [
"Development Status :: 5 - Production/Stable", "Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers", "Intended Audience :: Developers",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Operating System :: POSIX :: Linux", "Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X", "Operating System :: MacOS :: MacOS X",
"Programming Language :: Python :: 3", "Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.12",
@@ -22,7 +24,7 @@ classifiers = [
"Topic :: Communications :: Email" "Topic :: Communications :: Email"
] ]
readme = "README.md" readme = "README.md"
requires-python = ">=3.10" requires-python = ">=3.8"
[tool.setuptools.package-data] [tool.setuptools.package-data]
deltachat_rpc_client = [ deltachat_rpc_client = [

View File

@@ -8,7 +8,7 @@ from .const import EventType, SpecialContactId
from .contact import Contact from .contact import Contact
from .deltachat import DeltaChat from .deltachat import DeltaChat
from .message import Message from .message import Message
from .rpc import JsonRpcError, Rpc from .rpc import Rpc
__all__ = [ __all__ = [
"Account", "Account",
@@ -19,7 +19,6 @@ __all__ = [
"Contact", "Contact",
"DeltaChat", "DeltaChat",
"EventType", "EventType",
"JsonRpcError",
"Message", "Message",
"SpecialContactId", "SpecialContactId",
"Rpc", "Rpc",

View File

@@ -1,5 +1,4 @@
import argparse import argparse
import functools
import os import os
import re import re
import sys import sys
@@ -45,13 +44,8 @@ class AttrDict(dict):
super().__setattr__(attr, val) super().__setattr__(attr, val)
def _forever(_event: AttrDict) -> bool:
return False
def run_client_cli( def run_client_cli(
hooks: Optional[Iterable[Tuple[Callable, Union[type, "EventFilter"]]]] = None, hooks: Optional[Iterable[Tuple[Callable, Union[type, "EventFilter"]]]] = None,
until: Callable[[AttrDict], bool] = _forever,
argv: Optional[list] = None, argv: Optional[list] = None,
**kwargs, **kwargs,
) -> None: ) -> None:
@@ -61,11 +55,10 @@ def run_client_cli(
""" """
from .client import Client from .client import Client
_run_cli(Client, until, hooks, argv, **kwargs) _run_cli(Client, hooks, argv, **kwargs)
def run_bot_cli( def run_bot_cli(
until: Callable[[AttrDict], bool] = _forever,
hooks: Optional[Iterable[Tuple[Callable, Union[type, "EventFilter"]]]] = None, hooks: Optional[Iterable[Tuple[Callable, Union[type, "EventFilter"]]]] = None,
argv: Optional[list] = None, argv: Optional[list] = None,
**kwargs, **kwargs,
@@ -76,12 +69,11 @@ def run_bot_cli(
""" """
from .client import Bot from .client import Bot
_run_cli(Bot, until, hooks, argv, **kwargs) _run_cli(Bot, hooks, argv, **kwargs)
def _run_cli( def _run_cli(
client_type: Type["Client"], client_type: Type["Client"],
until: Callable[[AttrDict], bool] = _forever,
hooks: Optional[Iterable[Tuple[Callable, Union[type, "EventFilter"]]]] = None, hooks: Optional[Iterable[Tuple[Callable, Union[type, "EventFilter"]]]] = None,
argv: Optional[list] = None, argv: Optional[list] = None,
**kwargs, **kwargs,
@@ -100,6 +92,12 @@ def _run_cli(
) )
parser.add_argument("--email", action="store", help="email address", default=os.getenv("DELTACHAT_EMAIL")) parser.add_argument("--email", action="store", help="email address", default=os.getenv("DELTACHAT_EMAIL"))
parser.add_argument("--password", action="store", help="password", default=os.getenv("DELTACHAT_PASSWORD")) parser.add_argument("--password", action="store", help="password", default=os.getenv("DELTACHAT_PASSWORD"))
parser.add_argument(
"--displayname", action="store", help="the profile's display name", default=os.getenv("DELTACHAT_DISPLAYNAME"),
)
parser.add_argument(
"--avatar", action="store", help="filename of the profile's avatar", default=os.getenv("DELTACHAT_AVATAR"),
)
args = parser.parse_args(argv[1:]) args = parser.parse_args(argv[1:])
with Rpc(accounts_dir=args.accounts_dir, **kwargs) as rpc: with Rpc(accounts_dir=args.accounts_dir, **kwargs) as rpc:
@@ -116,10 +114,15 @@ def _run_cli(
configure_thread = Thread( configure_thread = Thread(
target=client.configure, target=client.configure,
daemon=True, daemon=True,
kwargs={"email": args.email, "password": args.password}, kwargs={
"email": args.email,
"password": args.password,
"displayname": args.displayname,
"selfavatar": args.avatar,
},
) )
configure_thread.start() configure_thread.start()
client.run_until(until) client.run_forever()
def extract_addr(text: str) -> str: def extract_addr(text: str) -> str:
@@ -190,6 +193,9 @@ class futuremethod: # noqa: N801
self._func = func self._func = func
def __get__(self, instance, owner=None): def __get__(self, instance, owner=None):
if instance is None:
return self
def future(*args): def future(*args):
generator = self._func(instance, *args) generator = self._func(instance, *args)
res = next(generator) res = next(generator)
@@ -202,7 +208,6 @@ class futuremethod: # noqa: N801
return f return f
@functools.wraps(self._func)
def wrapper(*args): def wrapper(*args):
f = future(*args) f = future(*args)
return f() return f()

View File

@@ -5,6 +5,7 @@ from __future__ import annotations
import json import json
from dataclasses import dataclass from dataclasses import dataclass
from typing import TYPE_CHECKING, Optional, Union from typing import TYPE_CHECKING, Optional, Union
from warnings import warn
from ._utils import AttrDict, futuremethod from ._utils import AttrDict, futuremethod
from .chat import Chat from .chat import Chat
@@ -124,15 +125,6 @@ class Account:
"""Add a new transport.""" """Add a new transport."""
yield self._rpc.add_or_update_transport.future(self.id, params) yield self._rpc.add_or_update_transport.future(self.id, params)
@futuremethod
def add_transport_from_qr(self, qr: str):
"""Add a new transport using a QR code."""
yield self._rpc.add_transport_from_qr.future(self.id, qr)
def delete_transport(self, addr: str):
"""Delete a transport."""
self._rpc.delete_transport(self.id, addr)
@futuremethod @futuremethod
def list_transports(self): def list_transports(self):
"""Return the list of all email accounts that are used as a transport in the current profile.""" """Return the list of all email accounts that are used as a transport in the current profile."""
@@ -308,7 +300,7 @@ class Account:
chats.append(AttrDict(item)) chats.append(AttrDict(item))
return chats return chats
def create_group(self, name: str) -> Chat: def create_group(self, name: str, protect: bool = False) -> Chat:
"""Create a new group chat. """Create a new group chat.
After creation, After creation,
@@ -325,11 +317,15 @@ class Account:
To check, if a chat is still unpromoted, you can look at the `is_unpromoted` property of a chat To check, if a chat is still unpromoted, you can look at the `is_unpromoted` property of a chat
(see `get_full_snapshot()` / `get_basic_snapshot()`). (see `get_full_snapshot()` / `get_basic_snapshot()`).
This may be useful if you want to show some help for just created groups. This may be useful if you want to show some help for just created groups.
:param protect: If set to 1 the function creates group with protection initially enabled.
Only verified members are allowed in these groups
and end-to-end-encryption is always enabled.
""" """
return Chat(self, self._rpc.create_group_chat(self.id, name, False)) return Chat(self, self._rpc.create_group_chat(self.id, name, protect))
def create_broadcast(self, name: str) -> Chat: def create_broadcast(self, name: str) -> Chat:
"""Create a new, outgoing **broadcast channel** """Create a new **broadcast channel**
(called "Channel" in the UI). (called "Channel" in the UI).
Broadcast channels are similar to groups on the sending device, Broadcast channels are similar to groups on the sending device,
@@ -391,7 +387,8 @@ class Account:
"""Return the list of fresh messages, newest messages first. """Return the list of fresh messages, newest messages first.
This call is intended for displaying notifications. This call is intended for displaying notifications.
If you are writing a bot, process "incoming message" events instead. If you are writing a bot, use `get_fresh_messages_in_arrival_order()` instead,
to process oldest messages first.
""" """
fresh_msg_ids = self._rpc.get_fresh_msgs(self.id) fresh_msg_ids = self._rpc.get_fresh_msgs(self.id)
return [Message(self, msg_id) for msg_id in fresh_msg_ids] return [Message(self, msg_id) for msg_id in fresh_msg_ids]
@@ -401,18 +398,9 @@ class Account:
next_msg_ids = self._rpc.get_next_msgs(self.id) next_msg_ids = self._rpc.get_next_msgs(self.id)
return [Message(self, msg_id) for msg_id in next_msg_ids] return [Message(self, msg_id) for msg_id in next_msg_ids]
@futuremethod
def wait_next_messages(self) -> list[Message]: def wait_next_messages(self) -> list[Message]:
"""(deprecated) Wait for new messages and return a list of them. Meant for bots. """Wait for new messages and return a list of them."""
next_msg_ids = self._rpc.wait_next_msgs(self.id)
Deprecated 2026-04: This returns the message's id as soon as the first part arrives,
even if it is not fully downloaded yet.
The bot needs to wait for the message to be fully downloaded.
Since this is usually not the desired behavior,
bots should instead use the `EventType.INCOMING_MSG`
event for getting notified about new messages.
"""
next_msg_ids = yield self._rpc.wait_next_msgs.future(self.id)
return [Message(self, msg_id) for msg_id in next_msg_ids] return [Message(self, msg_id) for msg_id in next_msg_ids]
def wait_for_incoming_msg_event(self): def wait_for_incoming_msg_event(self):
@@ -427,21 +415,12 @@ class Account:
"""Wait for messages noticed event and return it.""" """Wait for messages noticed event and return it."""
return self.wait_for_event(EventType.MSGS_NOTICED) return self.wait_for_event(EventType.MSGS_NOTICED)
def wait_for_msg(self, event_type) -> Message:
"""Wait for an event about the message.
Consumes all events before the matching event.
Returns a message corresponding to the msg_id field of the event.
"""
event = self.wait_for_event(event_type)
return self.get_message_by_id(event.msg_id)
def wait_for_incoming_msg(self): def wait_for_incoming_msg(self):
"""Wait for incoming message and return it. """Wait for incoming message and return it.
Consumes all events before the next incoming message event. Consumes all events before the next incoming message event.
""" """
return self.wait_for_msg(EventType.INCOMING_MSG) return self.get_message_by_id(self.wait_for_incoming_msg_event().msg_id)
def wait_for_securejoin_inviter_success(self): def wait_for_securejoin_inviter_success(self):
"""Wait until SecureJoin process finishes successfully on the inviter side.""" """Wait until SecureJoin process finishes successfully on the inviter side."""
@@ -461,6 +440,16 @@ class Account:
"""Wait for reaction change event.""" """Wait for reaction change event."""
return self.wait_for_event(EventType.REACTIONS_CHANGED) return self.wait_for_event(EventType.REACTIONS_CHANGED)
def get_fresh_messages_in_arrival_order(self) -> list[Message]:
"""Return fresh messages list sorted in the order of their arrival, with ascending IDs."""
warn(
"get_fresh_messages_in_arrival_order is deprecated, use get_next_messages instead.",
DeprecationWarning,
stacklevel=2,
)
fresh_msg_ids = sorted(self._rpc.get_fresh_msgs(self.id))
return [Message(self, msg_id) for msg_id in fresh_msg_ids]
def export_backup(self, path, passphrase: str = "") -> None: def export_backup(self, path, passphrase: str = "") -> None:
"""Export backup.""" """Export backup."""
self._rpc.export_backup(self.id, str(path), passphrase) self._rpc.export_backup(self.id, str(path), passphrase)
@@ -479,11 +468,11 @@ class Account:
passphrase = "" # Importing passphrase-protected keys is currently not supported. passphrase = "" # Importing passphrase-protected keys is currently not supported.
self._rpc.import_self_keys(self.id, str(path), passphrase) self._rpc.import_self_keys(self.id, str(path), passphrase)
def initiate_autocrypt_key_transfer(self) -> None:
"""Send Autocrypt Setup Message."""
return self._rpc.initiate_autocrypt_key_transfer(self.id)
def ice_servers(self) -> list: def ice_servers(self) -> list:
"""Return ICE servers for WebRTC configuration.""" """Return ICE servers for WebRTC configuration."""
ice_servers_json = self._rpc.ice_servers(self.id) ice_servers_json = self._rpc.ice_servers(self.id)
return json.loads(ice_servers_json) return json.loads(ice_servers_json)
def is_sending_locations(self) -> bool:
"""Return True if sending locations to any chat."""
return self._rpc.is_sending_locations(self.id)

View File

@@ -164,7 +164,7 @@ class Chat:
return Message(self.account, msg_id) return Message(self.account, msg_id)
def send_sticker(self, path: str) -> Message: def send_sticker(self, path: str) -> Message:
"""Deprecated as of 2026-04; use `send_message` with `Viewtype.STICKER` instead.""" """Send an sticker and return the resulting Message instance."""
msg_id = self._rpc.send_sticker(self.account.id, self.id, path) msg_id = self._rpc.send_sticker(self.account.id, self.id, path)
return Message(self.account, msg_id) return Message(self.account, msg_id)
@@ -206,9 +206,9 @@ class Chat:
snapshot["message"] = Message(self.account, snapshot.id) snapshot["message"] = Message(self.account, snapshot.id)
return snapshot return snapshot
def get_messages(self, add_daymarker: bool = False) -> list[Message]: def get_messages(self, info_only: bool = False, add_daymarker: bool = False) -> list[Message]:
"""Get the list of messages in this chat.""" """Get the list of messages in this chat."""
msgs = self._rpc.get_message_ids(self.account.id, self.id, False, add_daymarker) msgs = self._rpc.get_message_ids(self.account.id, self.id, info_only, add_daymarker)
return [Message(self.account, msg_id) for msg_id in msgs] return [Message(self.account, msg_id) for msg_id in msgs]
def get_fresh_message_count(self) -> int: def get_fresh_message_count(self) -> int:
@@ -219,16 +219,10 @@ class Chat:
"""Mark all messages in this chat as noticed.""" """Mark all messages in this chat as noticed."""
self._rpc.marknoticed_chat(self.account.id, self.id) self._rpc.marknoticed_chat(self.account.id, self.id)
def mark_fresh(self) -> None: def add_contact(self, *contact: Union[int, str, Contact]) -> None:
"""Mark the last incoming message in the chat as fresh."""
self._rpc.markfresh_chat(self.account.id, self.id)
def add_contact(self, *contact: Union[int, str, Contact, "Account"]) -> None:
"""Add contacts to this group.""" """Add contacts to this group."""
from .account import Account
for cnt in contact: for cnt in contact:
if isinstance(cnt, (str, Account)): if isinstance(cnt, str):
contact_id = self.account.create_contact(cnt).id contact_id = self.account.create_contact(cnt).id
elif not isinstance(cnt, int): elif not isinstance(cnt, int):
contact_id = cnt.id contact_id = cnt.id
@@ -236,12 +230,10 @@ class Chat:
contact_id = cnt contact_id = cnt
self._rpc.add_contact_to_chat(self.account.id, self.id, contact_id) self._rpc.add_contact_to_chat(self.account.id, self.id, contact_id)
def remove_contact(self, *contact: Union[int, str, Contact, "Account"]) -> None: def remove_contact(self, *contact: Union[int, str, Contact]) -> None:
"""Remove members from this group.""" """Remove members from this group."""
from .account import Account
for cnt in contact: for cnt in contact:
if isinstance(cnt, (str, Account)): if isinstance(cnt, str):
contact_id = self.account.create_contact(cnt).id contact_id = self.account.create_contact(cnt).id
elif not isinstance(cnt, int): elif not isinstance(cnt, int):
contact_id = cnt.id contact_id = cnt.id
@@ -257,10 +249,6 @@ class Chat:
contacts = self._rpc.get_chat_contacts(self.account.id, self.id) contacts = self._rpc.get_chat_contacts(self.account.id, self.id)
return [Contact(self.account, contact_id) for contact_id in contacts] return [Contact(self.account, contact_id) for contact_id in contacts]
def num_contacts(self) -> int:
"""Return number of contacts in this chat."""
return len(self.get_contacts())
def get_past_contacts(self) -> list[Contact]: def get_past_contacts(self) -> list[Contact]:
"""Get past contacts for this chat.""" """Get past contacts for this chat."""
past_contacts = self._rpc.get_past_chat_contacts(self.account.id, self.id) past_contacts = self._rpc.get_past_chat_contacts(self.account.id, self.id)
@@ -277,16 +265,6 @@ class Chat:
"""Remove profile image of this chat.""" """Remove profile image of this chat."""
self._rpc.set_chat_profile_image(self.account.id, self.id, None) self._rpc.set_chat_profile_image(self.account.id, self.id, None)
def send_locations(self, seconds) -> None:
"""Enable location streaming in the chat for the given number of seconds.
Pass 0 to disable location streaming."""
self._rpc.send_locations_to_chat(self.account.id, self.id, seconds)
def is_sending_locations(self) -> bool:
"""Return True if sending locations to this chat."""
return self._rpc.is_sending_locations_to_chat(self.account.id, self.id)
def get_locations( def get_locations(
self, self,
contact: Optional[Contact] = None, contact: Optional[Contact] = None,
@@ -317,7 +295,7 @@ class Chat:
f.flush() f.flush()
self._rpc.send_msg(self.account.id, self.id, {"viewtype": ViewType.VCARD, "file": f.name}) self._rpc.send_msg(self.account.id, self.id, {"viewtype": ViewType.VCARD, "file": f.name})
def place_outgoing_call(self, place_call_info: str, has_video_initially: bool) -> Message: def place_outgoing_call(self, place_call_info: str) -> Message:
"""Starts an outgoing call.""" """Starts an outgoing call."""
msg_id = self._rpc.place_outgoing_call(self.account.id, self.id, place_call_info, has_video_initially) msg_id = self._rpc.place_outgoing_call(self.account.id, self.id, place_call_info)
return Message(self.account, msg_id) return Message(self.account, msg_id)

View File

@@ -14,7 +14,6 @@ from typing import (
from ._utils import ( from ._utils import (
AttrDict, AttrDict,
_forever,
parse_system_add_remove, parse_system_add_remove,
parse_system_image_changed, parse_system_image_changed,
parse_system_title_changed, parse_system_title_changed,
@@ -84,36 +83,28 @@ class Client:
def configure(self, email: str, password: str, **kwargs) -> None: def configure(self, email: str, password: str, **kwargs) -> None:
"""Configure the client.""" """Configure the client."""
self.account.set_config("addr", email)
self.account.set_config("mail_pw", password)
for key, value in kwargs.items(): for key, value in kwargs.items():
self.account.set_config(key, value) self.account.set_config(key, value)
params = {"addr": email, "password": password} self.account.configure()
self.account.add_or_update_transport(params)
self.logger.debug("Account configured") self.logger.debug("Account configured")
def run_forever(self) -> None: def run_forever(self) -> None:
"""Process events forever.""" """Process events forever."""
self.run_until(_forever) self.run_until(lambda _: False)
def run_until(self, func: Callable[[AttrDict], bool]) -> AttrDict: def run_until(self, func: Callable[[AttrDict], bool]) -> AttrDict:
"""Start the event processing loop.""" """Process events until the given callable evaluates to True.
The callable should accept an AttrDict object representing the
last processed event. The event is returned when the callable
evaluates to True.
"""
self.logger.debug("Listening to incoming events...") self.logger.debug("Listening to incoming events...")
if self.is_configured(): if self.is_configured():
self.account.start_io() self.account.start_io()
self._process_messages() # Process old messages. self._process_messages() # Process old messages.
return self._process_events(until_func=func) # Loop over incoming events
def _process_events(
self,
until_func: Callable[[AttrDict], bool] = _forever,
until_event: EventType = False,
) -> AttrDict:
"""Process events until the given callable evaluates to True,
or until a certain event happens.
The until_func callable should accept an AttrDict object representing
the last processed event. The event is returned when the callable
evaluates to True.
"""
while True: while True:
event = self.account.wait_for_event() event = self.account.wait_for_event()
event["kind"] = EventType(event.kind) event["kind"] = EventType(event.kind)
@@ -122,13 +113,10 @@ class Client:
if event.kind == EventType.INCOMING_MSG: if event.kind == EventType.INCOMING_MSG:
self._process_messages() self._process_messages()
stop = until_func(event) stop = func(event)
if stop: if stop:
return event return event
if event.kind == until_event:
return event
def _on_event(self, event: AttrDict, filter_type: Type[EventFilter] = RawEvent) -> None: def _on_event(self, event: AttrDict, filter_type: Type[EventFilter] = RawEvent) -> None:
for hook, evfilter in self._hooks.get(filter_type, []): for hook, evfilter in self._hooks.get(filter_type, []):
if evfilter.filter(event): if evfilter.filter(event):

View File

@@ -80,7 +80,6 @@ class EventType(str, Enum):
CONFIG_SYNCED = "ConfigSynced" CONFIG_SYNCED = "ConfigSynced"
WEBXDC_REALTIME_DATA = "WebxdcRealtimeData" WEBXDC_REALTIME_DATA = "WebxdcRealtimeData"
WEBXDC_REALTIME_ADVERTISEMENT_RECEIVED = "WebxdcRealtimeAdvertisementReceived" WEBXDC_REALTIME_ADVERTISEMENT_RECEIVED = "WebxdcRealtimeAdvertisementReceived"
TRANSPORTS_MODIFIED = "TransportsModified"
class ChatId(IntEnum): class ChatId(IntEnum):
@@ -92,17 +91,19 @@ class ChatId(IntEnum):
LAST_SPECIAL = 9 LAST_SPECIAL = 9
class ChatType(str, Enum): class ChatType(IntEnum):
"""Chat type.""" """Chat type."""
SINGLE = "Single" UNDEFINED = 0
SINGLE = 100
"""1:1 chat, i.e. a direct chat with a single contact""" """1:1 chat, i.e. a direct chat with a single contact"""
GROUP = "Group" GROUP = 120
MAILINGLIST = "Mailinglist" MAILINGLIST = 140
OUT_BROADCAST = "OutBroadcast" OUT_BROADCAST = 160
"""Outgoing broadcast channel, called "Channel" in the UI. """Outgoing broadcast channel, called "Channel" in the UI.
The user can send into this channel, The user can send into this channel,
@@ -114,7 +115,7 @@ class ChatType(str, Enum):
which would make it hard to grep for it. which would make it hard to grep for it.
""" """
IN_BROADCAST = "InBroadcast" IN_BROADCAST = 165
"""Incoming broadcast channel, called "Channel" in the UI. """Incoming broadcast channel, called "Channel" in the UI.
This channel is read-only, This channel is read-only,
@@ -190,6 +191,7 @@ class MessageState(IntEnum):
IN_FRESH = 10 IN_FRESH = 10
IN_NOTICED = 13 IN_NOTICED = 13
IN_SEEN = 16 IN_SEEN = 16
OUT_PREPARING = 18
OUT_DRAFT = 19 OUT_DRAFT = 19
OUT_PENDING = 20 OUT_PENDING = 20
OUT_FAILED = 24 OUT_FAILED = 24

View File

@@ -4,7 +4,7 @@ from __future__ import annotations
from typing import TYPE_CHECKING from typing import TYPE_CHECKING
from ._utils import AttrDict, futuremethod from ._utils import AttrDict
from .account import Account from .account import Account
if TYPE_CHECKING: if TYPE_CHECKING:
@@ -39,15 +39,6 @@ class DeltaChat:
"""Stop the I/O of all accounts.""" """Stop the I/O of all accounts."""
self.rpc.stop_io_for_all_accounts() self.rpc.stop_io_for_all_accounts()
@futuremethod
def background_fetch(self, timeout_in_seconds: int) -> None:
"""Run background fetch for all accounts."""
yield self.rpc.background_fetch.future(timeout_in_seconds)
def stop_background_fetch(self) -> None:
"""Stop ongoing background fetch."""
self.rpc.stop_background_fetch()
def maybe_network(self) -> None: def maybe_network(self) -> None:
"""Indicate that the network conditions might have changed.""" """Indicate that the network conditions might have changed."""
self.rpc.maybe_network() self.rpc.maybe_network()
@@ -59,11 +50,3 @@ class DeltaChat:
def set_translations(self, translations: dict[str, str]) -> None: def set_translations(self, translations: dict[str, str]) -> None:
"""Set stock translation strings.""" """Set stock translation strings."""
self.rpc.set_stock_strings(translations) self.rpc.set_stock_strings(translations)
def set_location(self, latitude, longitude, accuracy) -> bool:
"""Set location, return True if location streaming should continue."""
return self.rpc.set_location(latitude, longitude, accuracy)
def stop_sending_locations(self) -> None:
"""Stop sending locations to all chats."""
return self.rpc.stop_sending_locations()

View File

@@ -25,14 +25,7 @@ class Message:
return self.account._rpc return self.account._rpc
def send_reaction(self, *reaction: str) -> "Message": def send_reaction(self, *reaction: str) -> "Message":
""" """Send a reaction to this message."""
Sends a reaction to message.
A reaction is a string that represents an emoji.
You can call this function again to change the emoji;
the last sent reaction overrides all previously sent reactions.
It is possible to remove the reaction by sending an empty string.
"""
msg_id = self._rpc.send_reaction(self.account.id, self.id, reaction) msg_id = self._rpc.send_reaction(self.account.id, self.id, reaction)
return Message(self.account, msg_id) return Message(self.account, msg_id)
@@ -51,14 +44,6 @@ class Message:
read_receipts = self._rpc.get_message_read_receipts(self.account.id, self.id) read_receipts = self._rpc.get_message_read_receipts(self.account.id, self.id)
return [AttrDict(read_receipt) for read_receipt in read_receipts] return [AttrDict(read_receipt) for read_receipt in read_receipts]
def get_read_receipt_count(self) -> int:
"""
Returns count of read receipts on message.
This view count is meant as a feedback measure for the channel owner only.
"""
return self._rpc.get_message_read_receipt_count(self.account.id, self.id)
def get_reactions(self) -> Optional[AttrDict]: def get_reactions(self) -> Optional[AttrDict]:
"""Get message reactions.""" """Get message reactions."""
reactions = self._rpc.get_message_reactions(self.account.id, self.id) reactions = self._rpc.get_message_reactions(self.account.id, self.id)
@@ -75,9 +60,13 @@ class Message:
"""Mark the message as seen.""" """Mark the message as seen."""
self._rpc.markseen_msgs(self.account.id, [self.id]) self._rpc.markseen_msgs(self.account.id, [self.id])
def exists(self) -> bool: def continue_autocrypt_key_transfer(self, setup_code: str) -> None:
"""Return True if the message exists.""" """Continue the Autocrypt Setup Message key transfer.
return bool(self._rpc.get_existing_msg_ids(self.account.id, [self.id]))
This function can be called on received Autocrypt Setup Message
to import the key encrypted with the provided setup code.
"""
self._rpc.continue_autocrypt_key_transfer(self.account.id, self.id, setup_code)
def send_webxdc_status_update(self, update: Union[dict, str], description: str) -> None: def send_webxdc_status_update(self, update: Union[dict, str], description: str) -> None:
"""Send a webxdc status update. This message must be a webxdc.""" """Send a webxdc status update. This message must be a webxdc."""
@@ -104,17 +93,6 @@ class Message:
if event.kind == EventType.MSG_DELIVERED and event.msg_id == self.id: if event.kind == EventType.MSG_DELIVERED and event.msg_id == self.id:
break break
def resend(self) -> None:
"""Resend messages and make information available for newly added chat members.
Resending sends out the original message, however, recipients and webxdc-status may differ.
Clients that already have the original message can still ignore the resent message as
they have tracked the state by dedicated updates.
Some messages cannot be resent, eg. info-messages, drafts, already pending messages,
or messages that are not sent by SELF.
"""
self._rpc.resend_messages(self.account.id, [self.id])
@futuremethod @futuremethod
def send_webxdc_realtime_advertisement(self): def send_webxdc_realtime_advertisement(self):
"""Send an advertisement to join the realtime channel.""" """Send an advertisement to join the realtime channel."""

View File

@@ -2,16 +2,10 @@
from __future__ import annotations from __future__ import annotations
import logging
import os import os
import pathlib
import platform
import random import random
import subprocess
import sys
from typing import AsyncGenerator, Optional from typing import AsyncGenerator, Optional
import execnet
import py import py
import pytest import pytest
@@ -22,22 +16,10 @@ from .rpc import Rpc
E2EE_INFO_MSGS = 1 E2EE_INFO_MSGS = 1
""" """
The number of info messages added to new e2ee chats. The number of info messages added to new e2ee chats.
Currently this is "Messages are end-to-end encrypted." Currently this is "End-to-end encryption available".
""" """
def pytest_report_header():
for base in os.get_exec_path():
fn = pathlib.Path(base).joinpath(base, "deltachat-rpc-server")
if fn.exists():
proc = subprocess.Popen([str(fn), "--version"], stderr=subprocess.PIPE)
proc.wait()
version = proc.stderr.read().decode().strip()
return f"deltachat-rpc-server: {fn} [{version}]"
return None
class ACFactory: class ACFactory:
"""Test account factory.""" """Test account factory."""
@@ -54,21 +36,17 @@ class ACFactory:
def get_credentials(self) -> (str, str): def get_credentials(self) -> (str, str):
"""Generate new credentials for chatmail account.""" """Generate new credentials for chatmail account."""
domain = os.environ["CHATMAIL_DOMAIN"] domain = os.getenv("CHATMAIL_DOMAIN")
username = "ci-" + "".join(random.choice("2345789acdefghjkmnpqrstuvwxyz") for i in range(6)) username = "ci-" + "".join(random.choice("2345789acdefghjkmnpqrstuvwxyz") for i in range(6))
return f"{username}@{domain}", f"{username}${username}" return f"{username}@{domain}", f"{username}${username}"
def get_account_qr(self):
"""Return "dcaccount:" QR code for testing chatmail relay."""
domain = os.environ["CHATMAIL_DOMAIN"]
return f"dcaccount:{domain}"
@futuremethod @futuremethod
def new_configured_account(self): def new_configured_account(self):
"""Create a new configured account.""" """Create a new configured account."""
addr, password = self.get_credentials()
account = self.get_unconfigured_account() account = self.get_unconfigured_account()
qr = self.get_account_qr() params = {"addr": addr, "password": password}
yield account.add_transport_from_qr.future(qr) yield account.add_or_update_transport.future(params)
assert account.is_configured() assert account.is_configured()
return account return account
@@ -95,12 +73,11 @@ class ACFactory:
def resetup_account(self, ac: Account) -> Account: def resetup_account(self, ac: Account) -> Account:
"""Resetup account from scratch, losing the encryption key.""" """Resetup account from scratch, losing the encryption key."""
ac.stop_io() ac.stop_io()
transports = ac.list_transports()
ac.remove()
ac_clone = self.get_unconfigured_account() ac_clone = self.get_unconfigured_account()
for transport in transports: for i in ["addr", "mail_pw"]:
ac_clone.add_or_update_transport(transport) ac_clone.set_config(i, ac.get_config(i))
ac_clone.bring_online() ac.remove()
ac_clone.configure()
return ac_clone return ac_clone
def get_accepted_chat(self, ac1: Account, ac2: Account) -> Chat: def get_accepted_chat(self, ac1: Account, ac2: Account) -> Chat:
@@ -159,15 +136,9 @@ def rpc(tmp_path) -> AsyncGenerator:
@pytest.fixture @pytest.fixture
def dc(rpc) -> DeltaChat: def acfactory(rpc) -> AsyncGenerator:
"""Return account manager."""
return DeltaChat(rpc)
@pytest.fixture
def acfactory(dc) -> AsyncGenerator:
"""Return account factory fixture.""" """Return account factory fixture."""
return ACFactory(dc) return ACFactory(DeltaChat(rpc))
@pytest.fixture @pytest.fixture
@@ -205,143 +176,13 @@ def log():
class Printer: class Printer:
def section(self, msg: str) -> None: def section(self, msg: str) -> None:
logging.info("\n%s %s %s", "=" * 10, msg, "=" * 10) print()
print("=" * 10, msg, "=" * 10)
def step(self, msg: str) -> None: def step(self, msg: str) -> None:
logging.info("%s step %s %s", "-" * 5, msg, "-" * 5) print("-" * 5, "step " + msg, "-" * 5)
def indent(self, msg: str) -> None: def indent(self, msg: str) -> None:
logging.info(" " + msg) print(" " + msg)
return Printer() return Printer()
#
# support for testing against different deltachat-rpc-server/clients
# installed into a temporary virtualenv and connected via 'execnet' channels
#
def find_path(venv, name):
is_windows = platform.system() == "Windows"
bin = venv / ("bin" if not is_windows else "Scripts")
tryadd = [""]
if is_windows:
tryadd += os.environ["PATHEXT"].split(os.pathsep)
for ext in tryadd:
p = bin.joinpath(name + ext)
if p.exists():
return str(p)
return None
@pytest.fixture(scope="session")
def get_core_python_env(tmp_path_factory):
"""Return a factory to create virtualenv environments with rpc server/client packages
installed.
The factory takes a version and returns a (python_path, rpc_server_path) tuple
of the respective binaries in the virtualenv.
"""
envs = {}
def get_versioned_venv(core_version):
venv = envs.get(core_version)
if not venv:
venv = tmp_path_factory.mktemp(f"temp-{core_version}")
subprocess.check_call([sys.executable, "-m", "venv", venv])
python = find_path(venv, "python")
pkgs = [f"deltachat-rpc-server=={core_version}", f"deltachat-rpc-client=={core_version}", "pytest"]
subprocess.check_call([python, "-m", "pip", "install"] + pkgs)
envs[core_version] = venv
python = find_path(venv, "python")
rpc_server_path = find_path(venv, "deltachat-rpc-server")
logging.info(f"Paths:\npython={python}\nrpc_server={rpc_server_path}")
return python, rpc_server_path
return get_versioned_venv
@pytest.fixture
def alice_and_remote_bob(tmp_path, acfactory, get_core_python_env):
"""return local Alice account, a contact to bob, and a remote 'eval' function for bob.
The 'eval' function allows to remote-execute arbitrary expressions
that can use the `bob` online account, and the `bob_contact_alice`.
"""
def factory(core_version):
python, rpc_server_path = get_core_python_env(core_version)
gw = execnet.makegateway(f"popen//python={python}")
accounts_dir = str(tmp_path.joinpath("account1_venv1"))
channel = gw.remote_exec(remote_bob_loop)
cm = os.environ.get("CHATMAIL_DOMAIN")
# trigger getting an online account on bob's side
channel.send((accounts_dir, str(rpc_server_path), cm))
# meanwhile get a local alice account
alice = acfactory.get_online_account()
channel.send(alice.self_contact.make_vcard())
# wait for bob to have started
sysinfo = channel.receive()
assert sysinfo == f"v{core_version}"
bob_vcard = channel.receive()
[alice_contact_bob] = alice.import_vcard(bob_vcard)
def eval(eval_str):
channel.send(eval_str)
return channel.receive()
return alice, alice_contact_bob, eval
return factory
def remote_bob_loop(channel):
# This function executes with versioned
# deltachat-rpc-client/server packages
# installed into the virtualenv.
#
# The "channel" argument is a send/receive pipe
# to the process that runs the corresponding remote_exec(remote_bob_loop)
import os
from deltachat_rpc_client import DeltaChat, Rpc
from deltachat_rpc_client.pytestplugin import ACFactory
accounts_dir, rpc_server_path, chatmail_domain = channel.receive()
os.environ["CHATMAIL_DOMAIN"] = chatmail_domain
# older core versions don't support specifying rpc_server_path
# so we can't just pass `rpc_server_path` argument to Rpc constructor
basepath = os.path.dirname(rpc_server_path)
os.environ["PATH"] = os.pathsep.join([basepath, os.environ["PATH"]])
rpc = Rpc(accounts_dir=accounts_dir)
with rpc:
dc = DeltaChat(rpc)
channel.send(dc.rpc.get_system_info()["deltachat_core_version"])
acfactory = ACFactory(dc)
bob = acfactory.get_online_account()
alice_vcard = channel.receive()
[alice_contact] = bob.import_vcard(alice_vcard)
ns = {"bob": bob, "bob_contact_alice": alice_contact}
channel.send(bob.self_contact.make_vcard())
while 1:
eval_str = channel.receive()
res = eval(eval_str, ns)
try:
channel.send(res)
except Exception:
# some unserializable result
channel.send(None)

View File

@@ -9,7 +9,7 @@ import os
import subprocess import subprocess
import sys import sys
from queue import Empty, Queue from queue import Empty, Queue
from threading import Thread from threading import Event, Thread
from typing import Any, Iterator, Optional from typing import Any, Iterator, Optional
@@ -17,6 +17,25 @@ class JsonRpcError(Exception):
"""JSON-RPC error.""" """JSON-RPC error."""
class RpcFuture:
"""RPC future waiting for RPC call result."""
def __init__(self, rpc: "Rpc", request_id: int, event: Event):
self.rpc = rpc
self.request_id = request_id
self.event = event
def __call__(self):
"""Wait for the future to return the result."""
self.event.wait()
response = self.rpc.request_results.pop(self.request_id)
if "error" in response:
raise JsonRpcError(response["error"])
if "result" in response:
return response["result"]
return None
class RpcMethod: class RpcMethod:
"""RPC method.""" """RPC method."""
@@ -38,31 +57,20 @@ class RpcMethod:
"params": args, "params": args,
"id": request_id, "id": request_id,
} }
self.rpc.request_results[request_id] = queue = Queue() event = Event()
self.rpc.request_events[request_id] = event
self.rpc.request_queue.put(request) self.rpc.request_queue.put(request)
def rpc_future(): return RpcFuture(self.rpc, request_id, event)
"""Wait for the request to receive a result."""
response = queue.get()
if "error" in response:
raise JsonRpcError(response["error"])
return response.get("result", None)
return rpc_future
class Rpc: class Rpc:
"""RPC client.""" """RPC client."""
def __init__( def __init__(self, accounts_dir: Optional[str] = None, **kwargs):
self,
accounts_dir: Optional[str] = None,
rpc_server_path="deltachat-rpc-server",
**kwargs,
):
"""Initialize RPC client. """Initialize RPC client.
The 'kwargs' arguments will be passed to subprocess.Popen(). The given arguments will be passed to subprocess.Popen().
""" """
if accounts_dir: if accounts_dir:
kwargs["env"] = { kwargs["env"] = {
@@ -71,12 +79,13 @@ class Rpc:
} }
self._kwargs = kwargs self._kwargs = kwargs
self.rpc_server_path = rpc_server_path
self.process: subprocess.Popen self.process: subprocess.Popen
self.id_iterator: Iterator[int] self.id_iterator: Iterator[int]
self.event_queues: dict[int, Queue] self.event_queues: dict[int, Queue]
# Map from request ID to a Queue which provides a single result # Map from request ID to `threading.Event`.
self.request_results: dict[int, Queue] self.request_events: dict[int, Event]
# Map from request ID to the result.
self.request_results: dict[int, Any]
self.request_queue: Queue[Any] self.request_queue: Queue[Any]
self.closing: bool self.closing: bool
self.reader_thread: Thread self.reader_thread: Thread
@@ -84,27 +93,28 @@ class Rpc:
self.events_thread: Thread self.events_thread: Thread
def start(self) -> None: def start(self) -> None:
"""Start RPC server subprocess and wait for successful initialization. """Start RPC server subprocess."""
This method blocks until the RPC server responds to an initial
health-check RPC call (get_system_info).
If the server fails to start
(e.g., due to an invalid accounts directory),
a JsonRpcError is raised.
"""
popen_kwargs = {"stdin": subprocess.PIPE, "stdout": subprocess.PIPE, "stderr": subprocess.PIPE}
if sys.version_info >= (3, 11): if sys.version_info >= (3, 11):
# Prevent subprocess from capturing SIGINT. self.process = subprocess.Popen(
popen_kwargs["process_group"] = 0 "deltachat-rpc-server",
stdin=subprocess.PIPE,
stdout=subprocess.PIPE,
# Prevent subprocess from capturing SIGINT.
process_group=0,
**self._kwargs,
)
else: else:
# `process_group` is not supported before Python 3.11. self.process = subprocess.Popen(
popen_kwargs["preexec_fn"] = os.setpgrp # noqa: PLW1509 "deltachat-rpc-server",
stdin=subprocess.PIPE,
popen_kwargs.update(self._kwargs) stdout=subprocess.PIPE,
self.process = subprocess.Popen(self.rpc_server_path, **popen_kwargs) # `process_group` is not supported before Python 3.11.
preexec_fn=os.setpgrp, # noqa: PLW1509
**self._kwargs,
)
self.id_iterator = itertools.count(start=1) self.id_iterator = itertools.count(start=1)
self.event_queues = {} self.event_queues = {}
self.request_events = {}
self.request_results = {} self.request_results = {}
self.request_queue = Queue() self.request_queue = Queue()
self.closing = False self.closing = False
@@ -115,22 +125,6 @@ class Rpc:
self.events_thread = Thread(target=self.events_loop) self.events_thread = Thread(target=self.events_loop)
self.events_thread.start() self.events_thread.start()
# Perform a health-check RPC call to ensure the server started
# successfully and the accounts directory is usable.
try:
system_info = self.get_system_info()
except (JsonRpcError, Exception) as e:
# The reader_loop already saw EOF on stdout, so the process
# has exited and stderr is available.
stderr = self.process.stderr.read().decode(errors="replace").strip()
if stderr:
raise JsonRpcError(f"RPC server failed to start: {stderr}") from e
raise JsonRpcError(f"RPC server startup check failed: {e}") from e
logging.info(
"RPC server ready. Core version: %s",
system_info.get("deltachat_core_version", "unknown"),
)
def close(self) -> None: def close(self) -> None:
"""Terminate RPC server process and wait until the reader loop finishes.""" """Terminate RPC server process and wait until the reader loop finishes."""
self.closing = True self.closing = True
@@ -155,16 +149,14 @@ class Rpc:
response = json.loads(line) response = json.loads(line)
if "id" in response: if "id" in response:
response_id = response["id"] response_id = response["id"]
self.request_results.pop(response_id).put(response) event = self.request_events.pop(response_id)
self.request_results[response_id] = response
event.set()
else: else:
logging.warning("Got a response without ID: %s", response) logging.warning("Got a response without ID: %s", response)
except Exception: except Exception:
# Log an exception if the reader loop dies. # Log an exception if the reader loop dies.
logging.exception("Exception in the reader loop") logging.exception("Exception in the reader loop")
finally:
# Unblock any pending requests when the server closes stdout.
for _request_id, queue in self.request_results.items():
queue.put({"error": {"code": -32000, "message": "RPC server closed"}})
def writer_loop(self) -> None: def writer_loop(self) -> None:
"""Writer loop ensuring only a single thread writes requests.""" """Writer loop ensuring only a single thread writes requests."""
@@ -173,6 +165,7 @@ class Rpc:
data = (json.dumps(request) + "\n").encode() data = (json.dumps(request) + "\n").encode()
self.process.stdin.write(data) self.process.stdin.write(data)
self.process.stdin.flush() self.process.stdin.flush()
except Exception: except Exception:
# Log an exception if the writer loop dies. # Log an exception if the writer loop dies.
logging.exception("Exception in the writer loop") logging.exception("Exception in the writer loop")
@@ -186,15 +179,15 @@ class Rpc:
def events_loop(self) -> None: def events_loop(self) -> None:
"""Request new events and distributes them between queues.""" """Request new events and distributes them between queues."""
try: try:
while events := self.get_next_event_batch(): while True:
for event in events:
account_id = event["contextId"]
queue = self.get_queue(account_id)
payload = event["event"]
logging.debug("account_id=%d got an event %s", account_id, payload)
queue.put(payload)
if self.closing: if self.closing:
return return
event = self.get_next_event()
account_id = event["contextId"]
queue = self.get_queue(account_id)
event = event["event"]
logging.debug("account_id=%d got an event %s", account_id, event)
queue.put(event)
except Exception: except Exception:
# Log an exception if the event loop dies. # Log an exception if the event loop dies.
logging.exception("Exception in the event loop") logging.exception("Exception in the event loop")

View File

@@ -2,7 +2,6 @@ from __future__ import annotations
import imaplib import imaplib
import io import io
import logging
import pathlib import pathlib
import ssl import ssl
from contextlib import contextmanager from contextlib import contextmanager
@@ -46,13 +45,13 @@ class DirectImap:
try: try:
self.conn.logout() self.conn.logout()
except (OSError, imaplib.IMAP4.abort): except (OSError, imaplib.IMAP4.abort):
logging.warning("Could not logout direct_imap conn") print("Could not logout direct_imap conn")
def create_folder(self, foldername): def create_folder(self, foldername):
try: try:
self.conn.folder.create(foldername) self.conn.folder.create(foldername)
except errors.MailboxFolderCreateError as e: except errors.MailboxFolderCreateError as e:
logging.warning(f"Cannot create '{foldername}', probably it already exists: {str(e)}") print("Can't create", foldername, "probably it already exists:", str(e))
def select_folder(self, foldername: str) -> tuple: def select_folder(self, foldername: str) -> tuple:
assert not self._idling assert not self._idling
@@ -86,17 +85,17 @@ class DirectImap:
def get_all_messages(self) -> list[MailMessage]: def get_all_messages(self) -> list[MailMessage]:
assert not self._idling assert not self._idling
return list(self.conn.fetch(mark_seen=False)) return list(self.conn.fetch())
def get_unread_messages(self) -> list[str]: def get_unread_messages(self) -> list[str]:
assert not self._idling assert not self._idling
return [msg.uid for msg in self.conn.fetch(AND(seen=False), mark_seen=False)] return [msg.uid for msg in self.conn.fetch(AND(seen=False))]
def mark_all_read(self): def mark_all_read(self):
messages = self.get_unread_messages() messages = self.get_unread_messages()
if messages: if messages:
res = self.conn.flag(messages, MailMessageFlags.SEEN, True) res = self.conn.flag(messages, MailMessageFlags.SEEN, True)
logging.info(f"Marked seen: {messages} {res}") print("marked seen:", messages, res)
def get_unread_cnt(self) -> int: def get_unread_cnt(self) -> int:
return len(self.get_unread_messages()) return len(self.get_unread_messages())
@@ -174,6 +173,7 @@ class DirectImap:
class IdleManager: class IdleManager:
def __init__(self, direct_imap) -> None: def __init__(self, direct_imap) -> None:
self.direct_imap = direct_imap self.direct_imap = direct_imap
self.log = direct_imap.account.log
# fetch latest messages before starting idle so that it only # fetch latest messages before starting idle so that it only
# returns messages that arrive anew # returns messages that arrive anew
self.direct_imap.conn.fetch("1:*") self.direct_imap.conn.fetch("1:*")
@@ -181,11 +181,14 @@ class IdleManager:
def check(self, timeout=None) -> list[bytes]: def check(self, timeout=None) -> list[bytes]:
"""(blocking) wait for next idle message from server.""" """(blocking) wait for next idle message from server."""
return self.direct_imap.conn.idle.poll(timeout=timeout) self.log("imap-direct: calling idle_check")
res = self.direct_imap.conn.idle.poll(timeout=timeout)
self.log(f"imap-direct: idle_check returned {res!r}")
return res
def wait_for_new_message(self) -> bytes: def wait_for_new_message(self, timeout=None) -> bytes:
while True: while True:
for item in self.check(): for item in self.check(timeout=timeout):
if b"EXISTS" in item or b"RECENT" in item: if b"EXISTS" in item or b"RECENT" in item:
return item return item
@@ -193,8 +196,10 @@ class IdleManager:
"""Return first message with SEEN flag from a running idle-stream.""" """Return first message with SEEN flag from a running idle-stream."""
while True: while True:
for item in self.check(timeout=timeout): for item in self.check(timeout=timeout):
if FETCH in item and FLAGS in item and rb"\Seen" in item: if FETCH in item:
return int(item.split(b" ")[1]) self.log(str(item))
if FLAGS in item and rb"\Seen" in item:
return int(item.split(b" ")[1])
def done(self): def done(self):
"""send idle-done to server if we are currently in idle mode.""" """send idle-done to server if we are currently in idle mode."""

View File

@@ -9,16 +9,15 @@ def test_calls(acfactory) -> None:
alice_contact_bob = alice.create_contact(bob, "Bob") alice_contact_bob = alice.create_contact(bob, "Bob")
alice_chat_bob = alice_contact_bob.create_chat() alice_chat_bob = alice_contact_bob.create_chat()
bob.create_chat(alice) # Accept the chat so incoming call causes a notification. outgoing_call_message = alice_chat_bob.place_outgoing_call(place_call_info)
outgoing_call_message = alice_chat_bob.place_outgoing_call(place_call_info, has_video_initially=True)
assert outgoing_call_message.get_call_info().state.kind == "Alerting" assert outgoing_call_message.get_call_info().state.kind == "Alerting"
incoming_call_event = bob.wait_for_event(EventType.INCOMING_CALL) incoming_call_event = bob.wait_for_event(EventType.INCOMING_CALL)
assert incoming_call_event.place_call_info == place_call_info assert incoming_call_event.place_call_info == place_call_info
assert incoming_call_event.has_video assert not incoming_call_event.has_video # Cannot be parsed as SDP, so false by default
incoming_call_message = Message(bob, incoming_call_event.msg_id) incoming_call_message = Message(bob, incoming_call_event.msg_id)
assert incoming_call_message.get_call_info().state.kind == "Alerting" assert incoming_call_message.get_call_info().state.kind == "Alerting"
assert incoming_call_message.get_call_info().has_video assert not incoming_call_message.get_call_info().has_video
incoming_call_message.accept_incoming_call(accept_call_info) incoming_call_message.accept_incoming_call(accept_call_info)
assert incoming_call_message.get_call_info().sdp_offer == place_call_info assert incoming_call_message.get_call_info().sdp_offer == place_call_info
@@ -41,106 +40,47 @@ def test_video_call(acfactory) -> None:
# #
# `s=` cannot be empty according to RFC 3264, # `s=` cannot be empty according to RFC 3264,
# so it is more clear as `s=-`. # so it is more clear as `s=-`.
place_call_info = """v=0\r
o=alice 2890844526 2890844526 IN IP6 2001:db8::3\r
s=-\r
c=IN IP6 2001:db8::3\r
t=0 0\r
a=group:BUNDLE foo bar\r
\r
m=audio 10000 RTP/AVP 0 8 97\r
b=AS:200\r
a=mid:foo\r
a=rtcp-mux\r
a=rtpmap:0 PCMU/8000\r
a=rtpmap:8 PCMA/8000\r
a=rtpmap:97 iLBC/8000\r
a=extmap:1 urn:ietf:params:rtp-hdrext:sdes:mid\r
\r
m=video 10002 RTP/AVP 31 32\r
b=AS:1000\r
a=mid:bar\r
a=rtcp-mux\r
a=rtpmap:31 H261/90000\r
a=rtpmap:32 MPV/90000\r
a=extmap:1 urn:ietf:params:rtp-hdrext:sdes:mid\r
"""
alice, bob = acfactory.get_online_accounts(2) alice, bob = acfactory.get_online_accounts(2)
bob.create_chat(alice) # Accept the chat so incoming call causes a notification.
alice_contact_bob = alice.create_contact(bob, "Bob") alice_contact_bob = alice.create_contact(bob, "Bob")
alice_chat_bob = alice_contact_bob.create_chat() alice_chat_bob = alice_contact_bob.create_chat()
alice_chat_bob.place_outgoing_call("offer", has_video_initially=True) alice_chat_bob.place_outgoing_call(place_call_info)
incoming_call_event = bob.wait_for_event(EventType.INCOMING_CALL) incoming_call_event = bob.wait_for_event(EventType.INCOMING_CALL)
assert incoming_call_event.place_call_info == "offer" assert incoming_call_event.place_call_info == place_call_info
assert incoming_call_event.has_video assert incoming_call_event.has_video
incoming_call_message = Message(bob, incoming_call_event.msg_id) incoming_call_message = Message(bob, incoming_call_event.msg_id)
assert incoming_call_message.get_call_info().has_video assert incoming_call_message.get_call_info().has_video
def test_audio_call(acfactory) -> None:
alice, bob = acfactory.get_online_accounts(2)
bob.create_chat(alice) # Accept the chat so incoming call causes a notification.
alice_contact_bob = alice.create_contact(bob, "Bob")
alice_chat_bob = alice_contact_bob.create_chat()
alice_chat_bob.place_outgoing_call("offer", has_video_initially=False)
incoming_call_event = bob.wait_for_event(EventType.INCOMING_CALL)
assert incoming_call_event.place_call_info == "offer"
assert not incoming_call_event.has_video
incoming_call_message = Message(bob, incoming_call_event.msg_id)
assert not incoming_call_message.get_call_info().has_video
def test_ice_servers(acfactory) -> None: def test_ice_servers(acfactory) -> None:
alice = acfactory.get_online_account() alice = acfactory.get_online_account()
ice_servers = alice.ice_servers() ice_servers = alice.ice_servers()
assert len(ice_servers) == 1 assert len(ice_servers) == 1
def test_no_contact_request_call(acfactory) -> None:
alice, bob = acfactory.get_online_accounts(2)
alice_chat_bob = alice.create_chat(bob)
alice_chat_bob.place_outgoing_call("offer", has_video_initially=True)
alice_chat_bob.send_text("Hello!")
# Notification for "Hello!" message should arrive
# without the call ringing.
while True:
event = bob.wait_for_event()
# There should be no incoming call notification.
assert event.kind != EventType.INCOMING_CALL
if event.kind == EventType.MSGS_CHANGED:
msg = bob.get_message_by_id(event.msg_id)
if msg.get_snapshot().text == "Hello!":
break
def test_who_can_call_me_nobody(acfactory) -> None:
alice, bob = acfactory.get_online_accounts(2)
# Bob sets "who can call me" to "nobody" (2)
bob.set_config("who_can_call_me", "2")
# Bob even accepts Alice in advance so the chat does not appear as contact request.
bob.create_chat(alice)
alice_chat_bob = alice.create_chat(bob)
alice_chat_bob.place_outgoing_call("offer", has_video_initially=True)
alice_chat_bob.send_text("Hello!")
# Notification for "Hello!" message should arrive
# without the call ringing.
while True:
event = bob.wait_for_event()
# There should be no incoming call notification.
assert event.kind != EventType.INCOMING_CALL
if event.kind == EventType.INCOMING_MSG:
msg = bob.get_message_by_id(event.msg_id)
if msg.get_snapshot().text == "Hello!":
break
def test_who_can_call_me_everybody(acfactory) -> None:
"""Test that if "who can call me" setting is set to "everybody", calls arrive even in contact request chats."""
alice, bob = acfactory.get_online_accounts(2)
# Bob sets "who can call me" to "nobody" (0)
bob.set_config("who_can_call_me", "0")
alice_chat_bob = alice.create_chat(bob)
alice_chat_bob.place_outgoing_call("offer", has_video_initially=True)
incoming_call_event = bob.wait_for_event(EventType.INCOMING_CALL)
incoming_call_message = Message(bob, incoming_call_event.msg_id)
# Even with the call arriving, the chat is still in the contact request mode.
incoming_chat = incoming_call_message.get_snapshot().chat
assert incoming_chat.get_basic_snapshot().is_contact_request

View File

@@ -1,5 +1,7 @@
from __future__ import annotations from __future__ import annotations
import base64
import os
from typing import TYPE_CHECKING from typing import TYPE_CHECKING
from deltachat_rpc_client import Account, EventType, const from deltachat_rpc_client import Account, EventType, const
@@ -127,7 +129,7 @@ def test_download_on_demand(acfactory: ACFactory) -> None:
msg.get_snapshot().chat.accept() msg.get_snapshot().chat.accept()
bob.get_chat_by_id(chat_id).send_message( bob.get_chat_by_id(chat_id).send_message(
"Hello World, this message is bigger than 5 bytes", "Hello World, this message is bigger than 5 bytes",
file="../test-data/image/screenshot.jpg", html=base64.b64encode(os.urandom(300000)).decode("utf-8"),
) )
message = alice.wait_for_incoming_msg() message = alice.wait_for_incoming_msg()
@@ -167,8 +169,6 @@ def test_imap_sync_seen_msgs(acfactory: ACFactory) -> None:
""" """
alice, alice_second_device, bob, alice_chat_bob = get_multi_account_test_setup(acfactory) alice, alice_second_device, bob, alice_chat_bob = get_multi_account_test_setup(acfactory)
bob.create_chat(alice)
alice_chat_bob.send_text("hello") alice_chat_bob.send_text("hello")
msg = bob.wait_for_incoming_msg() msg = bob.wait_for_incoming_msg()

View File

@@ -1,57 +0,0 @@
import subprocess
import pytest
from deltachat_rpc_client import DeltaChat, Rpc
def test_install_venv_and_use_other_core(tmp_path, get_core_python_env):
python, rpc_server_path = get_core_python_env("2.24.0")
subprocess.check_call([python, "-m", "pip", "install", "deltachat-rpc-server==2.24.0"])
rpc = Rpc(accounts_dir=tmp_path.joinpath("accounts"), rpc_server_path=rpc_server_path)
with rpc:
dc = DeltaChat(rpc)
assert dc.rpc.get_system_info()["deltachat_core_version"] == "v2.24.0"
@pytest.mark.parametrize("version", ["2.24.0"])
def test_qr_setup_contact(alice_and_remote_bob, version) -> None:
"""Test other-core Bob profile can do securejoin with Alice on current core."""
alice, alice_contact_bob, remote_eval = alice_and_remote_bob(version)
qr_code = alice.get_qr_code()
remote_eval(f"bob.secure_join({qr_code!r})")
alice.wait_for_securejoin_inviter_success()
# Test that Alice verified Bob's profile.
alice_contact_bob_snapshot = alice_contact_bob.get_snapshot()
assert alice_contact_bob_snapshot.is_verified
remote_eval("bob.wait_for_securejoin_joiner_success()")
# Test that Bob verified Alice's profile.
assert remote_eval("bob_contact_alice.get_snapshot().is_verified")
def test_send_and_receive_message(alice_and_remote_bob) -> None:
"""Test other-core Bob profile can send a message to Alice on current core."""
alice, alice_contact_bob, remote_eval = alice_and_remote_bob("2.20.0")
remote_eval("bob_contact_alice.create_chat().send_text('hello')")
msg = alice.wait_for_incoming_msg()
assert msg.get_snapshot().text == "hello"
def test_second_device(acfactory, alice_and_remote_bob) -> None:
"""Test setting up current version as a second device for old version."""
_alice, alice_contact_bob, remote_eval = alice_and_remote_bob("2.20.0")
remote_eval("locals().setdefault('future', bob._rpc.provide_backup.future(bob.id))")
qr = remote_eval("bob._rpc.get_backup_qr(bob.id)")
new_account = acfactory.get_unconfigured_account()
new_account._rpc.get_backup(new_account.id, qr)
remote_eval("locals()['future']()")
assert new_account.get_config("addr") == remote_eval("bob.get_config('addr')")

View File

@@ -1,125 +0,0 @@
import re
from imap_tools import AND, U
from deltachat_rpc_client import EventType
def test_moved_markseen(acfactory, direct_imap, log):
"""Test that message already moved to DeltaChat folder is marked as seen."""
ac1 = acfactory.get_online_account()
addr, password = acfactory.get_credentials()
ac2 = acfactory.get_unconfigured_account()
ac2.add_or_update_transport({"addr": addr, "password": password})
ac2.bring_online()
log.section("ac2: creating DeltaChat folder")
ac2_direct_imap = direct_imap(ac2)
ac2_direct_imap.create_folder("DeltaChat")
ac2.set_config("delete_server_after", "0")
ac2.set_config("sync_msgs", "0") # Do not send a sync message when accepting a contact request.
ac2.add_or_update_transport({"addr": addr, "password": password, "imapFolder": "DeltaChat"})
ac2.bring_online()
ac2.stop_io()
ac2_direct_imap = direct_imap(ac2)
with ac2_direct_imap.idle() as idle2:
ac1.create_chat(ac2).send_text("Hello!")
idle2.wait_for_new_message()
# Emulate moving of the message to DeltaChat folder by Sieve rule.
log.section("ac2: moving message into DeltaChat folder")
ac2_direct_imap.conn.move(["*"], "DeltaChat")
ac2_direct_imap.select_folder("DeltaChat")
assert len(list(ac2_direct_imap.conn.fetch("*", mark_seen=False))) == 1
with ac2_direct_imap.idle() as idle2:
ac2.start_io()
ev = ac2.wait_for_event(EventType.MSGS_CHANGED)
msg = ac2.get_message_by_id(ev.msg_id)
assert msg.get_snapshot().text == "Messages are end-to-end encrypted."
ev = ac2.wait_for_event(EventType.INCOMING_MSG)
msg = ac2.get_message_by_id(ev.msg_id)
chat = ac2.get_chat_by_id(ev.chat_id)
# Accept the contact request.
chat.accept()
msg.mark_seen()
idle2.wait_for_seen()
assert len(list(ac2_direct_imap.conn.fetch(AND(seen=True, uid=U(1, "*")), mark_seen=False))) == 1
def test_markseen_message_and_mdn(acfactory, direct_imap):
ac1, ac2 = acfactory.get_online_accounts(2)
for ac in ac1, ac2:
ac.set_config("delete_server_after", "0")
# Do not send BCC to self, we only want to test MDN on ac1.
ac1.set_config("bcc_self", "0")
acfactory.get_accepted_chat(ac1, ac2).send_text("hi")
msg = ac2.wait_for_incoming_msg()
msg.mark_seen()
rex = re.compile("Marked messages [0-9]+ in folder INBOX as seen.")
for ac in ac1, ac2:
while True:
event = ac.wait_for_event()
if event.kind == EventType.INFO and rex.search(event.msg):
break
ac1_direct_imap = direct_imap(ac1)
ac2_direct_imap = direct_imap(ac2)
ac1_direct_imap.select_folder("INBOX")
ac2_direct_imap.select_folder("INBOX")
# Check that the mdn is marked as seen
assert len(list(ac1_direct_imap.conn.fetch(AND(seen=True), mark_seen=False))) == 1
# Check original message is marked as seen
assert len(list(ac2_direct_imap.conn.fetch(AND(seen=True), mark_seen=False))) == 1
def test_trash_multiple_messages(acfactory, direct_imap, log):
ac1, ac2 = acfactory.get_online_accounts(2)
ac2.stop_io()
ac2.set_config("delete_server_after", "0")
ac2.set_config("sync_msgs", "0")
ac2.start_io()
chat12 = acfactory.get_accepted_chat(ac1, ac2)
log.section("ac1: sending 3 messages")
texts = ["first", "second", "third"]
for text in texts:
chat12.send_text(text)
log.section("ac2: waiting for all messages on the other side")
to_delete = []
for text in texts:
msg = ac2.wait_for_incoming_msg().get_snapshot()
assert msg.text in texts
if text != "second":
to_delete.append(msg)
log.section("ac2: deleting all messages except second")
assert len(to_delete) == len(texts) - 1
ac2.delete_messages(to_delete)
log.section("ac2: test that only one message is left")
ac2_direct_imap = direct_imap(ac2)
while 1:
ac2.wait_for_event(EventType.IMAP_MESSAGE_DELETED)
ac2_direct_imap.select_config_folder("inbox")
nr_msgs = len(ac2_direct_imap.get_all_messages())
assert nr_msgs > 0
if nr_msgs == 1:
break

View File

@@ -24,13 +24,6 @@ def path_to_webxdc(request):
return str(p) return str(p)
@pytest.fixture
def path_to_large_webxdc(request):
p = request.path.parent.parent.parent.joinpath("test-data/webxdc/realtime-check.xdc")
assert p.exists()
return str(p)
def log(msg): def log(msg):
logging.info(msg) logging.info(msg)
@@ -91,7 +84,7 @@ def test_realtime_sequentially(acfactory, path_to_webxdc):
# share a webxdc app between ac1 and ac2 # share a webxdc app between ac1 and ac2
ac1_webxdc_msg = acfactory.send_message(from_account=ac1, to_account=ac2, text="play", file=path_to_webxdc) ac1_webxdc_msg = acfactory.send_message(from_account=ac1, to_account=ac2, text="play", file=path_to_webxdc)
ac2_webxdc_msg = ac2.wait_for_incoming_msg() ac2_webxdc_msg = ac2.get_message_by_id(ac2.wait_for_incoming_msg_event().msg_id)
snapshot = ac2_webxdc_msg.get_snapshot() snapshot = ac2_webxdc_msg.get_snapshot()
assert snapshot.text == "play" assert snapshot.text == "play"
@@ -101,7 +94,7 @@ def test_realtime_sequentially(acfactory, path_to_webxdc):
acfactory.send_message(from_account=ac1, to_account=ac2, text="ping1") acfactory.send_message(from_account=ac1, to_account=ac2, text="ping1")
log("waiting for incoming message on ac2") log("waiting for incoming message on ac2")
snapshot = ac2.wait_for_incoming_msg().get_snapshot() snapshot = ac2.get_message_by_id(ac2.wait_for_incoming_msg_event().msg_id).get_snapshot()
assert snapshot.text == "ping1" assert snapshot.text == "ping1"
log("sending ac2 -> ac1 realtime advertisement and additional message") log("sending ac2 -> ac1 realtime advertisement and additional message")
@@ -109,7 +102,7 @@ def test_realtime_sequentially(acfactory, path_to_webxdc):
acfactory.send_message(from_account=ac2, to_account=ac1, text="ping2") acfactory.send_message(from_account=ac2, to_account=ac1, text="ping2")
log("waiting for incoming message on ac1") log("waiting for incoming message on ac1")
snapshot = ac1.wait_for_incoming_msg().get_snapshot() snapshot = ac1.get_message_by_id(ac1.wait_for_incoming_msg_event().msg_id).get_snapshot()
assert snapshot.text == "ping2" assert snapshot.text == "ping2"
log("sending realtime data ac1 -> ac2") log("sending realtime data ac1 -> ac2")
@@ -221,9 +214,7 @@ def test_advertisement_after_chatting(acfactory, path_to_webxdc):
ac1_ac2_chat = ac1.create_chat(ac2) ac1_ac2_chat = ac1.create_chat(ac2)
ac1_webxdc_msg = ac1_ac2_chat.send_message(text="WebXDC", file=path_to_webxdc) ac1_webxdc_msg = ac1_ac2_chat.send_message(text="WebXDC", file=path_to_webxdc)
ac2_webxdc_msg = ac2.wait_for_incoming_msg() ac2_webxdc_msg = ac2.wait_for_incoming_msg()
ac2_webxdc_msg_snapshot = ac2_webxdc_msg.get_snapshot() assert ac2_webxdc_msg.get_snapshot().text == "WebXDC"
assert ac2_webxdc_msg_snapshot.text == "WebXDC"
ac2_webxdc_msg_snapshot.chat.accept()
ac1_ac2_chat.send_text("Hello!") ac1_ac2_chat.send_text("Hello!")
ac2_hello_msg = ac2.wait_for_incoming_msg() ac2_hello_msg = ac2.wait_for_incoming_msg()
@@ -234,29 +225,3 @@ def test_advertisement_after_chatting(acfactory, path_to_webxdc):
ac2_webxdc_msg.send_webxdc_realtime_advertisement() ac2_webxdc_msg.send_webxdc_realtime_advertisement()
event = ac1.wait_for_event(EventType.WEBXDC_REALTIME_ADVERTISEMENT_RECEIVED) event = ac1.wait_for_event(EventType.WEBXDC_REALTIME_ADVERTISEMENT_RECEIVED)
assert event.msg_id == ac1_webxdc_msg.id assert event.msg_id == ac1_webxdc_msg.id
def test_realtime_large_webxdc(acfactory, path_to_large_webxdc):
"""Tests initializing realtime channel on a large webxdc.
This is a regression test for a bug that existed in version 2.42.0.
Large webxdc is split into pre- and post- message,
and this previously resulted in failure to initialize realtime.
"""
ac1, ac2 = acfactory.get_online_accounts(2)
ac1.set_config("webxdc_realtime_enabled", "1")
ac2.set_config("webxdc_realtime_enabled", "1")
ac2.create_chat(ac1)
ac1_ac2_chat = ac1.create_chat(ac2)
ac1_webxdc_msg = ac1_ac2_chat.send_message(text="realtime check", file=path_to_large_webxdc)
# Receive pre-message.
ac2_webxdc_msg = ac2.wait_for_incoming_msg()
# Receive post-message.
ac2_webxdc_msg = ac2.wait_for_msg(EventType.MSGS_CHANGED)
ac2_webxdc_msg.send_webxdc_realtime_advertisement()
event = ac1.wait_for_event(EventType.WEBXDC_REALTIME_ADVERTISEMENT_RECEIVED)
assert event.msg_id == ac1_webxdc_msg.id

View File

@@ -0,0 +1,53 @@
import pytest
from deltachat_rpc_client import EventType
from deltachat_rpc_client.rpc import JsonRpcError
def wait_for_autocrypt_setup_message(account):
while True:
event = account.wait_for_event()
if event.kind == EventType.MSGS_CHANGED and event.msg_id != 0:
msg_id = event.msg_id
msg = account.get_message_by_id(msg_id)
if msg.get_snapshot().is_setupmessage:
return msg
def test_autocrypt_setup_message_key_transfer(acfactory):
alice1 = acfactory.get_online_account()
alice2 = acfactory.get_unconfigured_account()
alice2.set_config("addr", alice1.get_config("addr"))
alice2.set_config("mail_pw", alice1.get_config("mail_pw"))
alice2.configure()
alice2.bring_online()
setup_code = alice1.initiate_autocrypt_key_transfer()
msg = wait_for_autocrypt_setup_message(alice2)
# Test that entering wrong code returns an error.
with pytest.raises(JsonRpcError):
msg.continue_autocrypt_key_transfer("7037-0673-6287-3013-4095-7956-5617-6806-6756")
msg.continue_autocrypt_key_transfer(setup_code)
def test_ac_setup_message_twice(acfactory):
alice1 = acfactory.get_online_account()
alice2 = acfactory.get_unconfigured_account()
alice2.set_config("addr", alice1.get_config("addr"))
alice2.set_config("mail_pw", alice1.get_config("mail_pw"))
alice2.configure()
alice2.bring_online()
# Send the first Autocrypt Setup Message and ignore it.
_setup_code = alice1.initiate_autocrypt_key_transfer()
wait_for_autocrypt_setup_message(alice2)
# Send the second Autocrypt Setup Message and import it.
setup_code = alice1.initiate_autocrypt_key_transfer()
msg = wait_for_autocrypt_setup_message(alice2)
msg.continue_autocrypt_key_transfer(setup_code)

View File

@@ -1,32 +0,0 @@
def test_set_location(dc, acfactory) -> None:
# Try setting location without any accounts.
assert not dc.set_location(1.0, 2.0, 0.1)
# Create one account that does not stream,
# set location.
acfactory.new_configured_account()
assert not dc.set_location(3.0, 4.0, 0.1)
def test_send_locations_to_chat(dc, acfactory):
alice, bob = acfactory.get_online_accounts(2)
assert not alice.is_sending_locations()
alice_chat_bob = alice.create_chat(bob)
assert not alice_chat_bob.is_sending_locations()
# Test starting and stopping location streaming in a chat.
alice_chat_bob.send_locations(3600)
assert alice.is_sending_locations()
assert alice_chat_bob.is_sending_locations()
alice_chat_bob.send_locations(0)
assert not alice.is_sending_locations()
assert not alice_chat_bob.is_sending_locations()
# Test stop_sending_locations() for all accounts and chats.
alice_chat_bob.send_locations(3600)
assert alice.is_sending_locations()
assert alice_chat_bob.is_sending_locations()
dc.stop_sending_locations()
assert not alice.is_sending_locations()
assert not alice_chat_bob.is_sending_locations()

View File

@@ -4,41 +4,6 @@ from deltachat_rpc_client import EventType
from deltachat_rpc_client.const import MessageState from deltachat_rpc_client.const import MessageState
def test_bcc_self_delete_server_after_defaults(acfactory):
"""Test default values for bcc_self and delete_server_after."""
ac = acfactory.get_online_account()
# Initially after getting online
# the setting bcc_self is set to 0 because there is only one device
# and delete_server_after is "1", meaning immediate deletion.
assert ac.get_config("bcc_self") == "0"
assert ac.get_config("delete_server_after") == "1"
# Setup a second device.
ac_clone = ac.clone()
ac_clone.bring_online()
# Second device setup
# enables bcc_self and changes default delete_server_after.
assert ac.get_config("bcc_self") == "1"
assert ac.get_config("delete_server_after") == "0"
assert ac_clone.get_config("bcc_self") == "1"
assert ac_clone.get_config("delete_server_after") == "0"
# Manually disabling bcc_self
# also restores the default for delete_server_after.
ac.set_config("bcc_self", "0")
assert ac.get_config("bcc_self") == "0"
assert ac.get_config("delete_server_after") == "1"
# Cloning the account again enables bcc_self
# even though it was manually disabled.
ac_clone = ac.clone()
assert ac.get_config("bcc_self") == "1"
assert ac.get_config("delete_server_after") == "0"
def test_one_account_send_bcc_setting(acfactory, log, direct_imap): def test_one_account_send_bcc_setting(acfactory, log, direct_imap):
ac1, ac2 = acfactory.get_online_accounts(2) ac1, ac2 = acfactory.get_online_accounts(2)
ac1_clone = ac1.clone() ac1_clone = ac1.clone()

View File

@@ -1,313 +0,0 @@
import pytest
from deltachat_rpc_client import EventType
from deltachat_rpc_client.const import ChatType, DownloadState
from deltachat_rpc_client.rpc import JsonRpcError
def test_add_second_address(acfactory) -> None:
account = acfactory.new_configured_account()
assert len(account.list_transports()) == 1
qr = acfactory.get_account_qr()
account.add_transport_from_qr(qr)
assert len(account.list_transports()) == 2
account.add_transport_from_qr(qr)
assert len(account.list_transports()) == 3
first_addr = account.list_transports()[0]["addr"]
second_addr = account.list_transports()[1]["addr"]
# Cannot delete the first address.
with pytest.raises(JsonRpcError):
account.delete_transport(first_addr)
account.delete_transport(second_addr)
assert len(account.list_transports()) == 2
def test_change_address(acfactory) -> None:
"""Test Alice configuring a second transport and setting it as a primary one."""
alice, bob = acfactory.get_online_accounts(2)
bob_addr = bob.get_config("configured_addr")
bob.create_chat(alice)
alice_chat_bob = alice.create_chat(bob)
alice_chat_bob.send_text("Hello!")
msg1 = bob.wait_for_incoming_msg().get_snapshot()
sender_addr1 = msg1.sender.get_snapshot().address
alice.stop_io()
old_alice_addr = alice.get_config("configured_addr")
alice_vcard = alice.self_contact.make_vcard()
assert old_alice_addr in alice_vcard
qr = acfactory.get_account_qr()
alice.add_transport_from_qr(qr)
new_alice_addr = alice.list_transports()[1]["addr"]
with pytest.raises(JsonRpcError):
# Cannot use the address that is not
# configured for any transport.
alice.set_config("configured_addr", bob_addr)
# Load old address so it is cached.
assert alice.get_config("configured_addr") == old_alice_addr
alice.set_config("configured_addr", new_alice_addr)
# Make sure that setting `configured_addr` invalidated the cache.
assert alice.get_config("configured_addr") == new_alice_addr
alice_vcard = alice.self_contact.make_vcard()
assert old_alice_addr not in alice_vcard
assert new_alice_addr in alice_vcard
with pytest.raises(JsonRpcError):
alice.delete_transport(new_alice_addr)
alice.start_io()
alice_chat_bob.send_text("Hello again!")
msg2 = bob.wait_for_incoming_msg().get_snapshot()
sender_addr2 = msg2.sender.get_snapshot().address
assert msg1.sender == msg2.sender
assert sender_addr1 != sender_addr2
assert sender_addr1 == old_alice_addr
assert sender_addr2 == new_alice_addr
def test_download_on_demand(acfactory) -> None:
alice, bob = acfactory.get_online_accounts(2)
alice.set_config("download_limit", "1")
alice.stop_io()
qr = acfactory.get_account_qr()
alice.add_transport_from_qr(qr)
alice.start_io()
alice.create_chat(bob)
chat_bob_alice = bob.create_chat(alice)
chat_bob_alice.send_message(file="../test-data/image/screenshot.jpg")
msg = alice.wait_for_incoming_msg()
snapshot = msg.get_snapshot()
assert snapshot.download_state == DownloadState.AVAILABLE
chat_id = snapshot.chat_id
# Actually the message isn't available yet. Wait somehow for the post-message to arrive.
chat_bob_alice.send_message("Now you can download my previous message")
alice.wait_for_incoming_msg()
alice._rpc.download_full_message(alice.id, msg.id)
for dstate in [DownloadState.IN_PROGRESS, DownloadState.DONE]:
event = alice.wait_for_event(EventType.MSGS_CHANGED)
assert event.chat_id == chat_id
assert event.msg_id == msg.id
assert msg.get_snapshot().download_state == dstate
def test_reconfigure_transport(acfactory) -> None:
"""Test that reconfiguring the transport works."""
account = acfactory.get_online_account()
[transport] = account.list_transports()
account.add_or_update_transport(transport)
def test_transport_synchronization(acfactory, log) -> None:
"""Test synchronization of transports between devices."""
def wait_for_io_started(ac):
while True:
ev = ac.wait_for_event(EventType.INFO)
if "scheduler is running" in ev.msg:
return
ac1, ac2 = acfactory.get_online_accounts(2)
ac1_clone = ac1.clone()
ac1_clone.bring_online()
qr = acfactory.get_account_qr()
ac1.add_transport_from_qr(qr)
ac1_clone.wait_for_event(EventType.TRANSPORTS_MODIFIED)
wait_for_io_started(ac1_clone)
assert len(ac1.list_transports()) == 2
assert len(ac1_clone.list_transports()) == 2
ac1_clone.add_transport_from_qr(qr)
ac1.wait_for_event(EventType.TRANSPORTS_MODIFIED)
wait_for_io_started(ac1)
assert len(ac1.list_transports()) == 3
assert len(ac1_clone.list_transports()) == 3
log.section("ac1 clone removes second transport")
[transport1, transport2, transport3] = ac1_clone.list_transports()
addr3 = transport3["addr"]
ac1_clone.delete_transport(transport2["addr"])
ac1.wait_for_event(EventType.TRANSPORTS_MODIFIED)
wait_for_io_started(ac1)
[transport1, transport3] = ac1.list_transports()
log.section("ac1 changes the primary transport")
ac1.set_config("configured_addr", transport3["addr"])
# One event for updated `add_timestamp` of the new primary transport,
# one event for the `configured_addr` update.
ac1_clone.wait_for_event(EventType.TRANSPORTS_MODIFIED)
ac1_clone.wait_for_event(EventType.TRANSPORTS_MODIFIED)
[transport1, transport3] = ac1_clone.list_transports()
assert ac1_clone.get_config("configured_addr") == addr3
log.section("ac1 removes the first transport")
ac1.delete_transport(transport1["addr"])
ac1_clone.wait_for_event(EventType.TRANSPORTS_MODIFIED)
wait_for_io_started(ac1_clone)
[transport3] = ac1_clone.list_transports()
assert transport3["addr"] == addr3
assert ac1_clone.get_config("configured_addr") == addr3
ac2_chat = ac2.create_chat(ac1)
ac2_chat.send_text("Hello!")
assert ac1.wait_for_incoming_msg().get_snapshot().text == "Hello!"
assert ac1_clone.wait_for_incoming_msg().get_snapshot().text == "Hello!"
def test_transport_sync_new_as_primary(acfactory, log) -> None:
"""Test synchronization of new transport as primary between devices."""
ac1, bob = acfactory.get_online_accounts(2)
ac1_clone = ac1.clone()
ac1_clone.bring_online()
qr = acfactory.get_account_qr()
ac1.add_transport_from_qr(qr)
ac1_transports = ac1.list_transports()
assert len(ac1_transports) == 2
[transport1, transport2] = ac1_transports
ac1_clone.wait_for_event(EventType.TRANSPORTS_MODIFIED)
assert len(ac1_clone.list_transports()) == 2
assert ac1_clone.get_config("configured_addr") == transport1["addr"]
log.section("ac1 changes the primary transport")
ac1.set_config("configured_addr", transport2["addr"])
ac1_clone.wait_for_event(EventType.TRANSPORTS_MODIFIED)
assert ac1_clone.get_config("configured_addr") == transport2["addr"]
log.section("ac1_clone receives a message via the new primary transport")
ac1_chat = ac1.create_chat(bob)
ac1_chat.send_text("Hello!")
bob_chat_id = bob.wait_for_incoming_msg_event().chat_id
bob_chat = bob.get_chat_by_id(bob_chat_id)
bob_chat.accept()
bob_chat.send_text("hello back")
assert ac1_clone.wait_for_incoming_msg().get_snapshot().text == "hello back"
def test_recognize_self_address(acfactory) -> None:
alice, bob = acfactory.get_online_accounts(2)
bob_chat = bob.create_chat(alice)
qr = acfactory.get_account_qr()
alice.add_transport_from_qr(qr)
new_alice_addr = alice.list_transports()[1]["addr"]
alice.set_config("configured_addr", new_alice_addr)
bob_chat.send_text("Hello!")
msg = alice.wait_for_incoming_msg().get_snapshot()
assert msg.chat == alice.create_chat(bob)
def test_transport_limit(acfactory) -> None:
"""Test transports limit."""
account = acfactory.get_online_account()
qr = acfactory.get_account_qr()
limit = 5
for _ in range(1, limit):
account.add_transport_from_qr(qr)
assert len(account.list_transports()) == limit
with pytest.raises(JsonRpcError):
account.add_transport_from_qr(qr)
second_addr = account.list_transports()[1]["addr"]
account.delete_transport(second_addr)
# test that adding a transport after deleting one works again
account.add_transport_from_qr(qr)
def test_message_info_imap_urls(acfactory) -> None:
"""Test that message info contains IMAP URLs of where the message was received."""
alice, bob = acfactory.get_online_accounts(2)
qr = acfactory.get_account_qr()
for i in range(3):
alice.add_transport_from_qr(qr)
# Wait for all transports to go IDLE after adding each one.
for _ in range(i + 1):
alice.bring_online()
# Enable multi-device mode so messages are not deleted immediately.
alice.set_config("bcc_self", "1")
# Bob creates chat, learning about Alice's currently selected transport.
# This is where he will send the message.
bob_chat = bob.create_chat(alice)
# Alice switches to another transport and removes the rest of the transports.
new_alice_addr = alice.list_transports()[1]["addr"]
alice.set_config("configured_addr", new_alice_addr)
removed_addrs = []
for transport in alice.list_transports():
if transport["addr"] != new_alice_addr:
alice.delete_transport(transport["addr"])
removed_addrs.append(transport["addr"])
alice.stop_io()
alice.start_io()
bob_chat.send_text("Hello!")
msg = alice.wait_for_incoming_msg()
msg_info = msg.get_info()
assert new_alice_addr in msg_info
for removed_addr in removed_addrs:
assert removed_addr not in msg_info
assert f"{new_alice_addr}/INBOX" in msg_info
def test_remove_primary_transport(acfactory, log) -> None:
"""Test that after removing the primary relay, Alice can still receive messages."""
alice, bob = acfactory.get_online_accounts(2)
qr = acfactory.get_account_qr()
alice.add_transport_from_qr(qr)
alice.bring_online()
bob_chat = bob.create_chat(alice)
alice.create_chat(bob)
log.section("Alice sets up second transport")
[transport1, transport2] = alice.list_transports()
alice.set_config("configured_addr", transport2["addr"])
bob_chat.send_text("Hello!")
msg1 = alice.wait_for_incoming_msg().get_snapshot()
assert msg1.text == "Hello!"
log.section("Alice removes the primary relay")
alice.delete_transport(transport1["addr"])
alice.stop_io()
alice.start_io()
bob_chat.send_text("Hello again!")
msg2 = alice.wait_for_incoming_msg().get_snapshot()
assert msg2.text == "Hello again!"
assert msg2.chat.get_basic_snapshot().chat_type == ChatType.SINGLE
assert msg2.chat == alice.create_chat(bob)

View File

@@ -3,7 +3,6 @@ import logging
import pytest import pytest
from deltachat_rpc_client import Chat, EventType, SpecialContactId from deltachat_rpc_client import Chat, EventType, SpecialContactId
from deltachat_rpc_client.const import ChatType
from deltachat_rpc_client.rpc import JsonRpcError from deltachat_rpc_client.rpc import JsonRpcError
@@ -59,7 +58,8 @@ def test_qr_setup_contact_svg(acfactory) -> None:
assert "Alice" in svg assert "Alice" in svg
def test_qr_securejoin(acfactory): @pytest.mark.parametrize("protect", [True, False])
def test_qr_securejoin(acfactory, protect):
alice, bob, fiona = acfactory.get_online_accounts(3) alice, bob, fiona = acfactory.get_online_accounts(3)
# Setup second device for Alice # Setup second device for Alice
@@ -67,7 +67,8 @@ def test_qr_securejoin(acfactory):
alice2 = alice.clone() alice2 = alice.clone()
logging.info("Alice creates a group") logging.info("Alice creates a group")
alice_chat = alice.create_group("Group") alice_chat = alice.create_group("Group", protect=protect)
assert alice_chat.get_basic_snapshot().is_protected == protect
logging.info("Bob joins the group") logging.info("Bob joins the group")
qr_code = alice_chat.get_qr_code() qr_code = alice_chat.get_qr_code()
@@ -86,8 +87,9 @@ def test_qr_securejoin(acfactory):
alice_contact_bob_snapshot = alice_contact_bob.get_snapshot() alice_contact_bob_snapshot = alice_contact_bob.get_snapshot()
assert alice_contact_bob_snapshot.is_verified assert alice_contact_bob_snapshot.is_verified
snapshot = bob.wait_for_incoming_msg().get_snapshot() snapshot = bob.get_message_by_id(bob.wait_for_incoming_msg_event().msg_id).get_snapshot()
assert snapshot.text == "Member Me added by {}.".format(alice.get_config("addr")) assert snapshot.text == "Member Me added by {}.".format(alice.get_config("addr"))
assert snapshot.chat.get_basic_snapshot().is_protected == protect
# Test that Bob verified Alice's profile. # Test that Bob verified Alice's profile.
bob_contact_alice = bob.create_contact(alice) bob_contact_alice = bob.create_contact(alice)
@@ -110,148 +112,6 @@ def test_qr_securejoin(acfactory):
fiona.wait_for_securejoin_joiner_success() fiona.wait_for_securejoin_joiner_success()
@pytest.mark.parametrize("all_devices_online", [True, False])
def test_qr_securejoin_broadcast(acfactory, all_devices_online):
alice, bob, fiona = acfactory.get_online_accounts(3)
alice2 = alice.clone()
bob2 = bob.clone()
if all_devices_online:
alice2.start_io()
bob2.start_io()
logging.info("===================== Alice creates a broadcast =====================")
alice_chat = alice.create_broadcast("Broadcast channel!")
snapshot = alice_chat.get_basic_snapshot()
assert not snapshot.is_unpromoted # Broadcast channels are never unpromoted
logging.info("===================== Bob joins the broadcast =====================")
qr_code = alice_chat.get_qr_code()
bob.secure_join(qr_code)
alice.wait_for_securejoin_inviter_success()
bob.wait_for_securejoin_joiner_success()
alice_chat.send_text("Hello everyone!")
def get_broadcast(ac):
chat = ac.get_chatlist(query="Broadcast channel!")[0]
assert chat.get_basic_snapshot().name == "Broadcast channel!"
return chat
def wait_for_broadcast_messages(ac):
snapshot1 = ac.wait_for_incoming_msg().get_snapshot()
assert snapshot1.text == "You joined the channel."
snapshot2 = ac.wait_for_incoming_msg().get_snapshot()
assert snapshot2.text == "Hello everyone!"
chat = get_broadcast(ac)
assert snapshot1.chat_id == chat.id
assert snapshot2.chat_id == chat.id
def check_account(ac, contact, inviter_side, please_wait_info_msg=False):
# Check that the chat partner is verified.
contact_snapshot = contact.get_snapshot()
assert contact_snapshot.is_verified
chat = get_broadcast(ac)
chat_msgs = chat.get_messages()
encrypted_msg = chat_msgs.pop(0).get_snapshot()
assert encrypted_msg.text == "Messages are end-to-end encrypted."
assert encrypted_msg.is_info
if please_wait_info_msg:
first_msg = chat_msgs.pop(0).get_snapshot()
assert "invited you to join this channel" in first_msg.text
assert first_msg.is_info
if inviter_side:
member_added_msg = chat_msgs.pop(0).get_snapshot()
assert member_added_msg.text == f"Member {contact_snapshot.display_name} added."
assert member_added_msg.info_contact_id == contact_snapshot.id
else:
if chat_msgs[0].get_snapshot().text == "You joined the channel.":
member_added_msg = chat_msgs.pop(0).get_snapshot()
else:
member_added_msg = chat_msgs.pop(1).get_snapshot()
assert member_added_msg.text == "You joined the channel."
assert member_added_msg.is_info
hello_msg = chat_msgs.pop(0).get_snapshot()
assert hello_msg.text == "Hello everyone!"
assert not hello_msg.is_info
assert hello_msg.show_padlock
assert hello_msg.error is None
assert len(chat_msgs) == 0
chat_snapshot = chat.get_full_snapshot()
assert chat_snapshot.is_encrypted
assert chat_snapshot.name == "Broadcast channel!"
if inviter_side:
assert chat_snapshot.chat_type == ChatType.OUT_BROADCAST
else:
assert chat_snapshot.chat_type == ChatType.IN_BROADCAST
assert chat_snapshot.can_send == inviter_side
chat_contacts = chat_snapshot.contact_ids
assert contact.id in chat_contacts
if inviter_side:
assert len(chat_contacts) == 1
else:
assert len(chat_contacts) == 2
assert SpecialContactId.SELF in chat_contacts
assert chat_snapshot.self_in_group
wait_for_broadcast_messages(bob)
check_account(alice, alice.create_contact(bob), inviter_side=True)
check_account(bob, bob.create_contact(alice), inviter_side=False, please_wait_info_msg=True)
logging.info("===================== Test Alice's second device =====================")
# Start second Alice device, if it wasn't started already.
alice2.start_io()
while True:
msg_id = alice2.wait_for_msgs_changed_event().msg_id
if msg_id:
snapshot = alice2.get_message_by_id(msg_id).get_snapshot()
if snapshot.text == "Hello everyone!":
break
check_account(alice2, alice2.create_contact(bob), inviter_side=True)
logging.info("===================== Test Bob's second device =====================")
# Start second Bob device, if it wasn't started already.
bob2.start_io()
bob2.wait_for_securejoin_joiner_success()
wait_for_broadcast_messages(bob2)
check_account(bob2, bob2.create_contact(alice), inviter_side=False)
# The QR code token is synced, so alice2 must be able to handle join requests.
logging.info("===================== Fiona joins the group via alice2 =====================")
alice.stop_io()
fiona.secure_join(qr_code)
alice2.wait_for_securejoin_inviter_success()
fiona.wait_for_securejoin_joiner_success()
snapshot = fiona.wait_for_incoming_msg().get_snapshot()
assert snapshot.text == "You joined the channel."
get_broadcast(alice2).get_messages()[2].resend()
snapshot = fiona.wait_for_incoming_msg().get_snapshot()
assert snapshot.text == "Hello everyone!"
check_account(fiona, fiona.create_contact(alice), inviter_side=False, please_wait_info_msg=True)
# For Bob, the channel must not have changed:
check_account(bob, bob.create_contact(alice), inviter_side=False, please_wait_info_msg=True)
def test_qr_securejoin_contact_request(acfactory) -> None: def test_qr_securejoin_contact_request(acfactory) -> None:
"""Alice invites Bob to a group when Bob's chat with Alice is in a contact request mode.""" """Alice invites Bob to a group when Bob's chat with Alice is in a contact request mode."""
alice, bob = acfactory.get_online_accounts(2) alice, bob = acfactory.get_online_accounts(2)
@@ -260,13 +120,13 @@ def test_qr_securejoin_contact_request(acfactory) -> None:
alice_chat_bob = alice_contact_bob.create_chat() alice_chat_bob = alice_contact_bob.create_chat()
alice_chat_bob.send_text("Hello!") alice_chat_bob.send_text("Hello!")
snapshot = bob.wait_for_incoming_msg().get_snapshot() snapshot = bob.get_message_by_id(bob.wait_for_incoming_msg_event().msg_id).get_snapshot()
assert snapshot.text == "Hello!" assert snapshot.text == "Hello!"
bob_chat_alice = snapshot.chat bob_chat_alice = snapshot.chat
assert bob_chat_alice.get_basic_snapshot().is_contact_request assert bob_chat_alice.get_basic_snapshot().is_contact_request
alice_chat = alice.create_group("Group") alice_chat = alice.create_group("Verified group", protect=True)
logging.info("Bob joins the group") logging.info("Bob joins verified group")
qr_code = alice_chat.get_qr_code() qr_code = alice_chat.get_qr_code()
bob.secure_join(qr_code) bob.secure_join(qr_code)
while True: while True:
@@ -290,8 +150,8 @@ def test_qr_readreceipt(acfactory) -> None:
for joiner in [bob, charlie]: for joiner in [bob, charlie]:
joiner.wait_for_securejoin_joiner_success() joiner.wait_for_securejoin_joiner_success()
logging.info("Alice creates a group") logging.info("Alice creates a verified group")
group = alice.create_group("Group") group = alice.create_group("Group", protect=True)
alice_contact_bob = alice.create_contact(bob, "Bob") alice_contact_bob = alice.create_contact(bob, "Bob")
alice_contact_charlie = alice.create_contact(charlie, "Charlie") alice_contact_charlie = alice.create_contact(charlie, "Charlie")
@@ -304,7 +164,8 @@ def test_qr_readreceipt(acfactory) -> None:
logging.info("Bob and Charlie receive a group") logging.info("Bob and Charlie receive a group")
bob_message = bob.wait_for_incoming_msg() bob_msg_id = bob.wait_for_incoming_msg_event().msg_id
bob_message = bob.get_message_by_id(bob_msg_id)
bob_snapshot = bob_message.get_snapshot() bob_snapshot = bob_message.get_snapshot()
assert bob_snapshot.text == "Hello" assert bob_snapshot.text == "Hello"
@@ -315,7 +176,8 @@ def test_qr_readreceipt(acfactory) -> None:
bob_out_message = bob_snapshot.chat.send_message(text="Hi from Bob!") bob_out_message = bob_snapshot.chat.send_message(text="Hi from Bob!")
charlie_message = charlie.wait_for_incoming_msg() charlie_msg_id = charlie.wait_for_incoming_msg_event().msg_id
charlie_message = charlie.get_message_by_id(charlie_msg_id)
charlie_snapshot = charlie_message.get_snapshot() charlie_snapshot = charlie_message.get_snapshot()
assert charlie_snapshot.text == "Hi from Bob!" assert charlie_snapshot.text == "Hi from Bob!"
@@ -354,10 +216,11 @@ def test_verified_group_member_added_recovery(acfactory) -> None:
"""Tests verified group recovery by reverifying then removing and adding a member back.""" """Tests verified group recovery by reverifying then removing and adding a member back."""
ac1, ac2, ac3 = acfactory.get_online_accounts(3) ac1, ac2, ac3 = acfactory.get_online_accounts(3)
logging.info("ac1 creates a group") logging.info("ac1 creates verified group")
chat = ac1.create_group("Group") chat = ac1.create_group("Verified group", protect=True)
assert chat.get_basic_snapshot().is_protected
logging.info("ac2 joins the group") logging.info("ac2 joins verified group")
qr_code = chat.get_qr_code() qr_code = chat.get_qr_code()
ac2.secure_join(qr_code) ac2.secure_join(qr_code)
ac2.wait_for_securejoin_joiner_success() ac2.wait_for_securejoin_joiner_success()
@@ -390,7 +253,7 @@ def test_verified_group_member_added_recovery(acfactory) -> None:
ac3_contact_ac2 = ac3.create_contact(ac2) ac3_contact_ac2 = ac3.create_contact(ac2)
ac3_chat.remove_contact(ac3_contact_ac2_old) ac3_chat.remove_contact(ac3_contact_ac2_old)
snapshot = ac1.wait_for_incoming_msg().get_snapshot() snapshot = ac1.get_message_by_id(ac1.wait_for_incoming_msg_event().msg_id).get_snapshot()
assert "removed" in snapshot.text assert "removed" in snapshot.text
ac3_chat.add_contact(ac3_contact_ac2) ac3_chat.add_contact(ac3_contact_ac2)
@@ -403,26 +266,25 @@ def test_verified_group_member_added_recovery(acfactory) -> None:
logging.info("ac2 got event message: %s", snapshot.text) logging.info("ac2 got event message: %s", snapshot.text)
assert "added" in snapshot.text assert "added" in snapshot.text
snapshot = ac1.wait_for_incoming_msg().get_snapshot() snapshot = ac1.get_message_by_id(ac1.wait_for_incoming_msg_event().msg_id).get_snapshot()
assert "added" in snapshot.text assert "added" in snapshot.text
chat = Chat(ac2, chat_id) chat = Chat(ac2, chat_id)
chat.send_text("Works again!") chat.send_text("Works again!")
message = ac3.wait_for_incoming_msg() msg_id = ac3.wait_for_incoming_msg_event().msg_id
message = ac3.get_message_by_id(msg_id)
snapshot = message.get_snapshot() snapshot = message.get_snapshot()
assert snapshot.text == "Works again!" assert snapshot.text == "Works again!"
snapshot = ac1.wait_for_incoming_msg().get_snapshot() snapshot = ac1.get_message_by_id(ac1.wait_for_incoming_msg_event().msg_id).get_snapshot()
assert snapshot.text == "Works again!" assert snapshot.text == "Works again!"
ac1_contact_ac2 = ac1.create_contact(ac2) ac1_contact_ac2 = ac1.create_contact(ac2)
ac1_contact_ac3 = ac1.create_contact(ac3) ac1_contact_ac3 = ac1.create_contact(ac3)
ac1_contact_ac2_snapshot = ac1_contact_ac2.get_snapshot() ac1_contact_ac2_snapshot = ac1_contact_ac2.get_snapshot()
# Until we reset verifications and then send the _verified header, assert ac1_contact_ac2_snapshot.is_verified
# verification is not gossiped here: assert ac1_contact_ac2_snapshot.verifier_id == ac1_contact_ac3.id
assert not ac1_contact_ac2_snapshot.is_verified
assert ac1_contact_ac2_snapshot.verifier_id != ac1_contact_ac3.id
def test_qr_join_chat_with_pending_bobstate_issue4894(acfactory): def test_qr_join_chat_with_pending_bobstate_issue4894(acfactory):
@@ -440,8 +302,8 @@ def test_qr_join_chat_with_pending_bobstate_issue4894(acfactory):
# we first create a fully joined verified group, and then start # we first create a fully joined verified group, and then start
# joining a second time but interrupt it, to create pending bob state # joining a second time but interrupt it, to create pending bob state
logging.info("ac1: create a group that ac2 fully joins") logging.info("ac1: create verified group that ac2 fully joins")
ch1 = ac1.create_group("Group") ch1 = ac1.create_group("Group", protect=True)
qr_code = ch1.get_qr_code() qr_code = ch1.get_qr_code()
ac2.secure_join(qr_code) ac2.secure_join(qr_code)
ac1.wait_for_securejoin_inviter_success() ac1.wait_for_securejoin_inviter_success()
@@ -449,8 +311,9 @@ def test_qr_join_chat_with_pending_bobstate_issue4894(acfactory):
# ensure ac1 can write and ac2 receives messages in verified chat # ensure ac1 can write and ac2 receives messages in verified chat
ch1.send_text("ac1 says hello") ch1.send_text("ac1 says hello")
while 1: while 1:
snapshot = ac2.wait_for_incoming_msg().get_snapshot() snapshot = ac2.get_message_by_id(ac2.wait_for_incoming_msg_event().msg_id).get_snapshot()
if snapshot.text == "ac1 says hello": if snapshot.text == "ac1 says hello":
assert snapshot.chat.get_basic_snapshot().is_protected
break break
logging.info("ac1: let ac2 join again but shutoff ac1 in the middle of securejoin") logging.info("ac1: let ac2 join again but shutoff ac1 in the middle of securejoin")
@@ -464,14 +327,15 @@ def test_qr_join_chat_with_pending_bobstate_issue4894(acfactory):
assert ac2.create_contact(ac3).get_snapshot().is_verified assert ac2.create_contact(ac3).get_snapshot().is_verified
logging.info("ac3: create a verified group VG with ac2") logging.info("ac3: create a verified group VG with ac2")
vg = ac3.create_group("ac3-created") vg = ac3.create_group("ac3-created", protect=True)
vg.add_contact(ac3.create_contact(ac2)) vg.add_contact(ac3.create_contact(ac2))
# ensure ac2 receives message in VG # ensure ac2 receives message in VG
vg.send_text("hello") vg.send_text("hello")
while 1: while 1:
msg = ac2.wait_for_incoming_msg().get_snapshot() msg = ac2.get_message_by_id(ac2.wait_for_incoming_msg_event().msg_id).get_snapshot()
if msg.text == "hello": if msg.text == "hello":
assert msg.chat.get_basic_snapshot().is_protected
break break
logging.info("ac3: create a join-code for group VG and let ac4 join, check that ac2 got it") logging.info("ac3: create a join-code for group VG and let ac4 join, check that ac2 got it")
@@ -495,7 +359,7 @@ def test_qr_new_group_unblocked(acfactory):
""" """
ac1, ac2 = acfactory.get_online_accounts(2) ac1, ac2 = acfactory.get_online_accounts(2)
ac1_chat = ac1.create_group("Group for joining") ac1_chat = ac1.create_group("Group for joining", protect=True)
qr_code = ac1_chat.get_qr_code() qr_code = ac1_chat.get_qr_code()
ac2.secure_join(qr_code) ac2.secure_join(qr_code)
@@ -507,7 +371,7 @@ def test_qr_new_group_unblocked(acfactory):
ac2.wait_for_incoming_msg_event() ac2.wait_for_incoming_msg_event()
ac1_new_chat.send_text("Hello!") ac1_new_chat.send_text("Hello!")
ac2_msg = ac2.wait_for_incoming_msg().get_snapshot() ac2_msg = ac2.get_message_by_id(ac2.wait_for_incoming_msg_event().msg_id).get_snapshot()
assert ac2_msg.text == "Hello!" assert ac2_msg.text == "Hello!"
assert ac2_msg.chat.get_basic_snapshot().is_contact_request assert ac2_msg.chat.get_basic_snapshot().is_contact_request
@@ -520,7 +384,8 @@ def test_aeap_flow_verified(acfactory):
addr, password = acfactory.get_credentials() addr, password = acfactory.get_credentials()
logging.info("ac1: create verified-group QR, ac2 scans and joins") logging.info("ac1: create verified-group QR, ac2 scans and joins")
chat = ac1.create_group("hello") chat = ac1.create_group("hello", protect=True)
assert chat.get_basic_snapshot().is_protected
qr_code = chat.get_qr_code() qr_code = chat.get_qr_code()
logging.info("ac2: start QR-code based join-group protocol") logging.info("ac2: start QR-code based join-group protocol")
ac2.secure_join(qr_code) ac2.secure_join(qr_code)
@@ -532,7 +397,7 @@ def test_aeap_flow_verified(acfactory):
logging.info("receiving first message") logging.info("receiving first message")
ac2.wait_for_incoming_msg_event() # member added message ac2.wait_for_incoming_msg_event() # member added message
msg_in_1 = ac2.wait_for_incoming_msg().get_snapshot() msg_in_1 = ac2.get_message_by_id(ac2.wait_for_incoming_msg_event().msg_id).get_snapshot()
assert msg_in_1.text == msg_out.text assert msg_in_1.text == msg_out.text
logging.info("changing email account") logging.info("changing email account")
@@ -546,7 +411,7 @@ def test_aeap_flow_verified(acfactory):
msg_out = chat.send_text("changed address").get_snapshot() msg_out = chat.send_text("changed address").get_snapshot()
logging.info("receiving second message") logging.info("receiving second message")
msg_in_2 = ac2.wait_for_incoming_msg() msg_in_2 = ac2.get_message_by_id(ac2.wait_for_incoming_msg_event().msg_id)
msg_in_2_snapshot = msg_in_2.get_snapshot() msg_in_2_snapshot = msg_in_2.get_snapshot()
assert msg_in_2_snapshot.text == msg_out.text assert msg_in_2_snapshot.text == msg_out.text
assert msg_in_2_snapshot.chat.id == msg_in_1.chat.id assert msg_in_2_snapshot.chat.id == msg_in_1.chat.id
@@ -574,35 +439,33 @@ def test_gossip_verification(acfactory) -> None:
logging.info("Bob creates an Autocrypt group") logging.info("Bob creates an Autocrypt group")
bob_group_chat = bob.create_group("Autocrypt Group") bob_group_chat = bob.create_group("Autocrypt Group")
assert not bob_group_chat.get_basic_snapshot().is_protected
bob_group_chat.add_contact(bob_contact_alice) bob_group_chat.add_contact(bob_contact_alice)
bob_group_chat.add_contact(bob_contact_carol) bob_group_chat.add_contact(bob_contact_carol)
bob_group_chat.send_message(text="Hello Autocrypt group") bob_group_chat.send_message(text="Hello Autocrypt group")
snapshot = carol.wait_for_incoming_msg().get_snapshot() snapshot = carol.get_message_by_id(carol.wait_for_incoming_msg_event().msg_id).get_snapshot()
assert snapshot.text == "Hello Autocrypt group" assert snapshot.text == "Hello Autocrypt group"
assert snapshot.show_padlock assert snapshot.show_padlock
# Group propagates verification using Autocrypt-Gossip header. # Autocrypt group does not propagate verification.
carol_contact_alice_snapshot = carol_contact_alice.get_snapshot() carol_contact_alice_snapshot = carol_contact_alice.get_snapshot()
# Until we reset verifications and then send the _verified header,
# verification is not gossiped here:
assert not carol_contact_alice_snapshot.is_verified assert not carol_contact_alice_snapshot.is_verified
logging.info("Bob creates a Securejoin group") logging.info("Bob creates a Securejoin group")
bob_group_chat = bob.create_group("Securejoin Group") bob_group_chat = bob.create_group("Securejoin Group", protect=True)
assert bob_group_chat.get_basic_snapshot().is_protected
bob_group_chat.add_contact(bob_contact_alice) bob_group_chat.add_contact(bob_contact_alice)
bob_group_chat.add_contact(bob_contact_carol) bob_group_chat.add_contact(bob_contact_carol)
bob_group_chat.send_message(text="Hello Securejoin group") bob_group_chat.send_message(text="Hello Securejoin group")
snapshot = carol.wait_for_incoming_msg().get_snapshot() snapshot = carol.get_message_by_id(carol.wait_for_incoming_msg_event().msg_id).get_snapshot()
assert snapshot.text == "Hello Securejoin group" assert snapshot.text == "Hello Securejoin group"
assert snapshot.show_padlock assert snapshot.show_padlock
# Securejoin propagates verification. # Securejoin propagates verification.
carol_contact_alice_snapshot = carol_contact_alice.get_snapshot() carol_contact_alice_snapshot = carol_contact_alice.get_snapshot()
# Until we reset verifications and then send the _verified header, assert carol_contact_alice_snapshot.is_verified
# verification is not gossiped here:
assert not carol_contact_alice_snapshot.is_verified
def test_securejoin_after_contact_resetup(acfactory) -> None: def test_securejoin_after_contact_resetup(acfactory) -> None:
@@ -614,7 +477,7 @@ def test_securejoin_after_contact_resetup(acfactory) -> None:
ac1, ac2, ac3 = acfactory.get_online_accounts(3) ac1, ac2, ac3 = acfactory.get_online_accounts(3)
# ac3 creates protected group with ac1. # ac3 creates protected group with ac1.
ac3_chat = ac3.create_group("Group") ac3_chat = ac3.create_group("Verified group", protect=True)
# ac1 joins ac3 group. # ac1 joins ac3 group.
ac3_qr_code = ac3_chat.get_qr_code() ac3_qr_code = ac3_chat.get_qr_code()
@@ -622,7 +485,7 @@ def test_securejoin_after_contact_resetup(acfactory) -> None:
ac1.wait_for_securejoin_joiner_success() ac1.wait_for_securejoin_joiner_success()
# ac1 waits for member added message and creates a QR code. # ac1 waits for member added message and creates a QR code.
snapshot = ac1.wait_for_incoming_msg().get_snapshot() snapshot = ac1.get_message_by_id(ac1.wait_for_incoming_msg_event().msg_id).get_snapshot()
assert snapshot.text == "Member Me added by {}.".format(ac3.get_config("addr")) assert snapshot.text == "Member Me added by {}.".format(ac3.get_config("addr"))
ac1_qr_code = snapshot.chat.get_qr_code() ac1_qr_code = snapshot.chat.get_qr_code()
@@ -659,9 +522,10 @@ def test_securejoin_after_contact_resetup(acfactory) -> None:
# Wait for member added. # Wait for member added.
logging.info("ac2 waits for member added message") logging.info("ac2 waits for member added message")
snapshot = ac2.wait_for_incoming_msg().get_snapshot() snapshot = ac2.get_message_by_id(ac2.wait_for_incoming_msg_event().msg_id).get_snapshot()
assert snapshot.is_info assert snapshot.is_info
ac2_chat = snapshot.chat ac2_chat = snapshot.chat
assert ac2_chat.get_basic_snapshot().is_protected
assert len(ac2_chat.get_contacts()) == 3 assert len(ac2_chat.get_contacts()) == 3
# ac1 is still "not verified" for ac2 due to inconsistent state. # ac1 is still "not verified" for ac2 due to inconsistent state.
@@ -671,8 +535,9 @@ def test_securejoin_after_contact_resetup(acfactory) -> None:
def test_withdraw_securejoin_qr(acfactory): def test_withdraw_securejoin_qr(acfactory):
alice, bob = acfactory.get_online_accounts(2) alice, bob = acfactory.get_online_accounts(2)
logging.info("Alice creates a group") logging.info("Alice creates a verified group")
alice_chat = alice.create_group("Group") alice_chat = alice.create_group("Verified group", protect=True)
assert alice_chat.get_basic_snapshot().is_protected
logging.info("Bob joins verified group") logging.info("Bob joins verified group")
qr_code = alice_chat.get_qr_code() qr_code = alice_chat.get_qr_code()
@@ -681,8 +546,9 @@ def test_withdraw_securejoin_qr(acfactory):
alice.clear_all_events() alice.clear_all_events()
snapshot = bob.wait_for_incoming_msg().get_snapshot() snapshot = bob.get_message_by_id(bob.wait_for_incoming_msg_event().msg_id).get_snapshot()
assert snapshot.text == "Member Me added by {}.".format(alice.get_config("addr")) assert snapshot.text == "Member Me added by {}.".format(alice.get_config("addr"))
assert snapshot.chat.get_basic_snapshot().is_protected
bob_chat.leave() bob_chat.leave()
snapshot = alice.get_message_by_id(alice.wait_for_msgs_changed_event().msg_id).get_snapshot() snapshot = alice.get_message_by_id(alice.wait_for_msgs_changed_event().msg_id).get_snapshot()
@@ -701,6 +567,6 @@ def test_withdraw_securejoin_qr(acfactory):
event = alice.wait_for_event() event = alice.wait_for_event()
if ( if (
event.kind == EventType.WARNING event.kind == EventType.WARNING
and "Ignoring RequestWithAuth message because of invalid auth code." in event.msg and "Ignoring vg-request-with-auth message because of invalid auth code." in event.msg
): ):
break break

File diff suppressed because it is too large Load Diff

View File

@@ -1,12 +1,8 @@
def test_vcard(acfactory) -> None: def test_vcard(acfactory) -> None:
alice, bob, fiona = acfactory.get_online_accounts(3) alice, bob = acfactory.get_online_accounts(2)
bob.create_chat(alice)
alice_contact_bob = alice.create_contact(bob, "Bob") alice_contact_bob = alice.create_contact(bob, "Bob")
alice_contact_charlie = alice.create_contact("charlie@example.org", "Charlie") alice_contact_charlie = alice.create_contact("charlie@example.org", "Charlie")
alice_contact_charlie_snapshot = alice_contact_charlie.get_snapshot()
alice_contact_fiona = alice.create_contact(fiona, "Fiona")
alice_contact_fiona_snapshot = alice_contact_fiona.get_snapshot()
alice_chat_bob = alice_contact_bob.create_chat() alice_chat_bob = alice_contact_bob.create_chat()
alice_chat_bob.send_contact(alice_contact_charlie) alice_chat_bob.send_contact(alice_contact_charlie)
@@ -16,12 +12,3 @@ def test_vcard(acfactory) -> None:
snapshot = message.get_snapshot() snapshot = message.get_snapshot()
assert snapshot.vcard_contact assert snapshot.vcard_contact
assert snapshot.vcard_contact.addr == "charlie@example.org" assert snapshot.vcard_contact.addr == "charlie@example.org"
assert snapshot.vcard_contact.color == alice_contact_charlie_snapshot.color
alice_chat_bob.send_contact(alice_contact_fiona)
event = bob.wait_for_incoming_msg_event()
message = bob.get_message_by_id(event.msg_id)
snapshot = message.get_snapshot()
assert snapshot.vcard_contact
assert snapshot.vcard_contact.key
assert snapshot.vcard_contact.color == alice_contact_fiona_snapshot.color

View File

@@ -18,8 +18,6 @@ def test_webxdc(acfactory) -> None:
"sourceCodeUrl": None, "sourceCodeUrl": None,
"summary": None, "summary": None,
"selfAddr": webxdc_info["selfAddr"], "selfAddr": webxdc_info["selfAddr"],
"isAppSender": False,
"isBroadcast": False,
"sendUpdateInterval": 1000, "sendUpdateInterval": 1000,
"sendUpdateMaxSize": 18874368, "sendUpdateMaxSize": 18874368,
} }

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "deltachat-rpc-server" name = "deltachat-rpc-server"
version = "2.50.0-dev" version = "2.20.0"
description = "DeltaChat JSON-RPC server" description = "DeltaChat JSON-RPC server"
edition = "2021" edition = "2021"
readme = "README.md" readme = "README.md"

View File

@@ -18,7 +18,7 @@ import { startDeltaChat } from "@deltachat/stdio-rpc-server";
import { C } from "@deltachat/jsonrpc-client"; import { C } from "@deltachat/jsonrpc-client";
async function main() { async function main() {
const dc = startDeltaChat("deltachat-data"); const dc = await startDeltaChat("deltachat-data");
console.log(await dc.rpc.getSystemInfo()); console.log(await dc.rpc.getSystemInfo());
dc.close() dc.close()
} }

View File

@@ -15,7 +15,7 @@ export interface SearchOptions {
*/ */
export function getRPCServerPath( export function getRPCServerPath(
options?: Partial<SearchOptions> options?: Partial<SearchOptions>
): string; ): Promise<string>;
@@ -33,15 +33,8 @@ export interface StartOptions {
* @param directory directory for accounts folder * @param directory directory for accounts folder
* @param options * @param options
*/ */
export function startDeltaChat(directory: string, options?: Partial<SearchOptions & StartOptions> ): DeltaChatOverJsonRpcServer export function startDeltaChat(directory: string, options?: Partial<SearchOptions & StartOptions> ): Promise<DeltaChatOverJsonRpcServer>
export class DeltaChatOverJsonRpc extends StdioDeltaChat {
constructor(
directory: string,
options?: Partial<SearchOptions & StartOptions>
);
readonly pathToServerBinary: string;
}
export namespace FnTypes { export namespace FnTypes {
export type getRPCServerPath = typeof getRPCServerPath export type getRPCServerPath = typeof getRPCServerPath

View File

@@ -1,6 +1,6 @@
//@ts-check //@ts-check
import { spawn } from "node:child_process"; import { spawn } from "node:child_process";
import { statSync } from "node:fs"; import { stat } from "node:fs/promises";
import os from "node:os"; import os from "node:os";
import process from "node:process"; import process from "node:process";
import { ENV_VAR_NAME, PATH_EXECUTABLE_NAME } from "./src/const.js"; import { ENV_VAR_NAME, PATH_EXECUTABLE_NAME } from "./src/const.js";
@@ -36,7 +36,7 @@ function findRPCServerInNodeModules() {
} }
/** @type {import("./index").FnTypes.getRPCServerPath} */ /** @type {import("./index").FnTypes.getRPCServerPath} */
export function getRPCServerPath(options = {}) { export async function getRPCServerPath(options = {}) {
const { takeVersionFromPATH, disableEnvPath } = { const { takeVersionFromPATH, disableEnvPath } = {
takeVersionFromPATH: false, takeVersionFromPATH: false,
disableEnvPath: false, disableEnvPath: false,
@@ -45,7 +45,7 @@ export function getRPCServerPath(options = {}) {
// 1. check if it is set as env var // 1. check if it is set as env var
if (process.env[ENV_VAR_NAME] && !disableEnvPath) { if (process.env[ENV_VAR_NAME] && !disableEnvPath) {
try { try {
if (!statSync(process.env[ENV_VAR_NAME]).isFile()) { if (!(await stat(process.env[ENV_VAR_NAME])).isFile()) {
throw new Error( throw new Error(
`expected ${ENV_VAR_NAME} to point to the deltachat-rpc-server executable` `expected ${ENV_VAR_NAME} to point to the deltachat-rpc-server executable`
); );
@@ -68,49 +68,41 @@ export function getRPCServerPath(options = {}) {
import { StdioDeltaChat } from "@deltachat/jsonrpc-client"; import { StdioDeltaChat } from "@deltachat/jsonrpc-client";
/** @type {import("./index").FnTypes.startDeltaChat} */ /** @type {import("./index").FnTypes.startDeltaChat} */
export function startDeltaChat(directory, options = {}) { export async function startDeltaChat(directory, options = {}) {
return new DeltaChatOverJsonRpc(directory, options); const pathToServerBinary = await getRPCServerPath(options);
} const server = spawn(pathToServerBinary, {
env: {
export class DeltaChatOverJsonRpc extends StdioDeltaChat { RUST_LOG: process.env.RUST_LOG,
/** DC_ACCOUNTS_PATH: directory,
* },
* @param {string} directory stdio: ["pipe", "pipe", options.muteStdErr ? "ignore" : "inherit"],
* @param {Partial<import("./index").SearchOptions & import("./index").StartOptions>} options });
*/
constructor(directory, options = {}) { server.on("error", (err) => {
const pathToServerBinary = getRPCServerPath(options); throw new Error(FAILED_TO_START_SERVER_EXECUTABLE(pathToServerBinary, err));
const server = spawn(pathToServerBinary, { });
env: { let shouldClose = false;
RUST_LOG: process.env.RUST_LOG,
DC_ACCOUNTS_PATH: directory, server.on("exit", () => {
}, if (shouldClose) {
stdio: ["pipe", "pipe", options.muteStdErr ? "ignore" : "inherit"], return;
}); }
throw new Error("Server quit");
server.on("error", (err) => { });
throw new Error(
FAILED_TO_START_SERVER_EXECUTABLE(pathToServerBinary, err) /** @type {import('./index').DeltaChatOverJsonRpcServer} */
); //@ts-expect-error
}); const dc = new StdioDeltaChat(server.stdin, server.stdout, true);
let shouldClose = false;
dc.close = () => {
server.on("exit", () => { shouldClose = true;
if (shouldClose) { if (!server.kill()) {
return; console.log("server termination failed");
} }
throw new Error("Server quit"); };
});
//@ts-expect-error
super(server.stdin, server.stdout, true); dc.pathToServerBinary = pathToServerBinary;
this.close = () => { return dc;
shouldClose = true;
if (!server.kill()) {
console.log("server termination failed");
}
};
this.pathToServerBinary = pathToServerBinary;
}
} }

View File

@@ -15,5 +15,5 @@
}, },
"type": "module", "type": "module",
"types": "index.d.ts", "types": "index.d.ts",
"version": "2.50.0-dev" "version": "2.20.0"
} }

View File

@@ -24,14 +24,6 @@ use yerpc::{RpcClient, RpcSession};
#[tokio::main(flavor = "multi_thread")] #[tokio::main(flavor = "multi_thread")]
async fn main() { async fn main() {
// Logs from `log` crate and traces from `tracing` crate
// are configurable with `RUST_LOG` environment variable
// and go to stderr to avoid interfering with JSON-RPC using stdout.
tracing_subscriber::fmt()
.with_env_filter(EnvFilter::from_default_env())
.with_writer(std::io::stderr)
.init();
let r = main_impl().await; let r = main_impl().await;
// From tokio documentation: // From tokio documentation:
// "For technical reasons, stdin is implemented by using an ordinary blocking read on a separate // "For technical reasons, stdin is implemented by using an ordinary blocking read on a separate
@@ -51,7 +43,7 @@ async fn main_impl() -> Result<()> {
if let Some(arg) = args.next() { if let Some(arg) = args.next() {
return Err(anyhow!("Unrecognized argument {arg:?}")); return Err(anyhow!("Unrecognized argument {arg:?}"));
} }
eprintln!("{DC_VERSION_STR}"); eprintln!("{}", &*DC_VERSION_STR);
return Ok(()); return Ok(());
} else if first_arg.to_str() == Some("--openrpc") { } else if first_arg.to_str() == Some("--openrpc") {
if let Some(arg) = args.next() { if let Some(arg) = args.next() {
@@ -72,6 +64,14 @@ async fn main_impl() -> Result<()> {
#[cfg(target_family = "unix")] #[cfg(target_family = "unix")]
let mut sigterm = signal_unix::signal(signal_unix::SignalKind::terminate())?; let mut sigterm = signal_unix::signal(signal_unix::SignalKind::terminate())?;
// Logs from `log` crate and traces from `tracing` crate
// are configurable with `RUST_LOG` environment variable
// and go to stderr to avoid interfering with JSON-RPC using stdout.
tracing_subscriber::fmt()
.with_env_filter(EnvFilter::from_default_env())
.with_writer(std::io::stderr)
.init();
let path = std::env::var("DC_ACCOUNTS_PATH").unwrap_or_else(|_| "accounts".to_string()); let path = std::env::var("DC_ACCOUNTS_PATH").unwrap_or_else(|_| "accounts".to_string());
log::info!("Starting with accounts directory `{path}`."); log::info!("Starting with accounts directory `{path}`.");
let writable = true; let writable = true;

View File

@@ -20,11 +20,6 @@ impl SystemTimeTools {
pub fn shift(duration: Duration) { pub fn shift(duration: Duration) {
*SYSTEM_TIME_SHIFT.write().unwrap() += duration; *SYSTEM_TIME_SHIFT.write().unwrap() += duration;
} }
/// Simulates the system clock being rewound by `duration`.
pub fn shift_back(duration: Duration) {
*SYSTEM_TIME_SHIFT.write().unwrap() -= duration;
}
} }
#[cfg(test)] #[cfg(test)]

View File

@@ -12,38 +12,6 @@ ignore = [
# Unmaintained paste # Unmaintained paste
"RUSTSEC-2024-0436", "RUSTSEC-2024-0436",
# Unmaintained rustls-pemfile
# It is a transitive dependency of iroh 0.35.0,
# this should be fixed by upgrading to iroh 1.0 once it is released.
"RUSTSEC-2025-0134",
# rustls-webpki v0.102.8
# We cannot upgrade to >=0.103.10 because
# it is a transitive dependency of iroh 0.35.0
# which depends on ^0.102.
# <https://rustsec.org/advisories/RUSTSEC-2026-0049>
# <https://rustsec.org/advisories/RUSTSEC-2026-0098>
# <https://rustsec.org/advisories/RUSTSEC-2026-0099>
"RUSTSEC-2026-0049",
"RUSTSEC-2026-0098",
"RUSTSEC-2026-0099",
# Panic in CRL signature checks.
# We do not check CRL and cannot update rustls-webpki 0.102.8
# which is a dependency of iroh 0.35.0.
# <https://rustsec.org/advisories/RUSTSEC-2026-0104>
"RUSTSEC-2026-0104",
# hickory-proto 0.25.2 unbounded loop in DNSSEC code.
# Dependency of iroh 0.35.0, cannot be updated as of 2026-05-02.
# <https://rustsec.org/advisories/RUSTSEC-2026-0118>
"RUSTSEC-2026-0118",
# hickory-proto 0.25.2 quadratic complexity issue.
# Dependency of iroh 0.35.0, cannot be updated as of 2026-05-02.
# <https://rustsec.org/advisories/RUSTSEC-2026-0119>
"RUSTSEC-2026-0119"
] ]
[bans] [bans]
@@ -54,25 +22,24 @@ ignore = [
skip = [ skip = [
{ name = "async-channel", version = "1.9.0" }, { name = "async-channel", version = "1.9.0" },
{ name = "bitflags", version = "1.3.2" }, { name = "bitflags", version = "1.3.2" },
{ name = "constant_time_eq", version = "0.3.1" },
{ name = "cpufeatures", version = "0.2.17" },
{ name = "derive_more-impl", version = "1.0.0" }, { name = "derive_more-impl", version = "1.0.0" },
{ name = "derive_more", version = "1.0.0" }, { name = "derive_more", version = "1.0.0" },
{ name = "event-listener", version = "2.5.3" }, { name = "event-listener", version = "2.5.3" },
{ name = "getrandom", version = "0.2.12" }, { name = "getrandom", version = "0.2.12" },
{ name = "hashbrown", version = "0.14.5" },
{ name = "heck", version = "0.4.1" }, { name = "heck", version = "0.4.1" },
{ name = "http", version = "0.2.12" }, { name = "http", version = "0.2.12" },
{ name = "linux-raw-sys", version = "0.4.14" }, { name = "linux-raw-sys", version = "0.4.14" },
{ name = "lru", version = "0.12.5" }, { name = "lru", version = "0.12.3" },
{ name = "netlink-packet-route", version = "0.17.1" }, { name = "netlink-packet-route", version = "0.17.1" },
{ name = "nom", version = "7.1.3" }, { name = "nom", version = "7.1.3" },
{ name = "rand_chacha", version = "0.3.1" }, { name = "rand_chacha", version = "0.3.1" },
{ name = "rand_core", version = "0.6.4" }, { name = "rand_core", version = "0.6.4" },
{ name = "rand", version = "0.8.5" }, { name = "rand", version = "0.8.5" },
{ name = "redox_syscall", version = "0.3.5" },
{ name = "redox_syscall", version = "0.4.1" },
{ name = "rustix", version = "0.38.44" }, { name = "rustix", version = "0.38.44" },
{ name = "rustls-webpki", version = "0.102.8" },
{ name = "serdect", version = "0.2.0" }, { name = "serdect", version = "0.2.0" },
{ name = "socket2", version = "0.5.9" },
{ name = "spin", version = "0.9.8" }, { name = "spin", version = "0.9.8" },
{ name = "strum_macros", version = "0.26.2" }, { name = "strum_macros", version = "0.26.2" },
{ name = "strum", version = "0.26.2" }, { name = "strum", version = "0.26.2" },
@@ -97,6 +64,7 @@ skip = [
{ name = "windows_x86_64_gnu" }, { name = "windows_x86_64_gnu" },
{ name = "windows_x86_64_gnullvm" }, { name = "windows_x86_64_gnullvm" },
{ name = "windows_x86_64_msvc" }, { name = "windows_x86_64_msvc" },
{ name = "zerocopy", version = "0.7.32" },
] ]

127
draft/aeap-mvp.md Normal file
View File

@@ -0,0 +1,127 @@
AEAP MVP
========
Changes to the UIs
------------------
- The secondary self addresses (see below) are shown in the UI, but not editable.
- When the user changed the email address in the configure screen, show a dialog to the user, either directly explaining things or with a link to the FAQ (see "Other" below)
Changes in the core
-------------------
- [x] We have one primary self address and any number of secondary self addresses. `is_self_addr()` checks all of them.
- [x] If the user does a reconfigure and changes the email address, the previous address is added as a secondary self address.
- don't forget to deduplicate secondary self addresses in case the user switches back and forth between addresses).
- The key stays the same.
- [x] No changes for 1:1 chats, there simply is a new one. (This works since, contrary to group messages, messages sent to a 1:1 chat are not assigned to the group chat but always to the 1:1 chat with the sender. So it's not a problem that the new messages might be put into the old chat if they are a reply to a message there.)
- [ ] When sending a message: If any of the secondary self addrs is in the chat's member list, remove it locally (because we just transitioned away from it). We add a log message for this (alternatively, a system message in the chat would be more visible).
- [x] ([#3385](https://github.com/deltachat/deltachat-core-rust/pull/3385)) When receiving a message: If the key exists, but belongs to another address (we may want to benchmark this)
AND there is a `Chat-Version` header\
AND the message is signed correctly
AND the From address is (also) in the encrypted (and therefore signed) headers <sup>[[1]](#myfootnote1)</sup>\
AND the message timestamp is newer than the contact's `lastseen` (to prevent changing the address back when messages arrive out of order) (this condition is not that important since we will have eventual consistency even without it):
Replace the contact in _all_ groups, possibly deduplicate the members list, and add a system message to all of these chats.
- Note that we can't simply compare the keys byte-by-byte, since the UID may have changed, or the sender may have rotated the key and signed the new key with the old one.
<a name="myfootnote1">[1]</a>: Without this check, an attacker could replay a message from Alice to Bob. Then Bob's device would do an AEAP transition from Alice's to the attacker's address, allowing for easier phishing.
<details>
<summary>More details about this</summary>
Suppose Alice sends a message to Evil (or to a group with both Evil and Bob). Evil then forwards the message to Bob, changing the From and To headers (and if necessary Message-Id) and replacing `addr=alice@example.org;` in the autocrypt header with `addr=evil@example.org;`.
Then Bob's device sees that there is a message which is signed by Alice's key and comes from Evil's address and would do the AEAP transition, i.e. replace Alice with Evil in all groups and show a message "Alice changed their address from alice@example.org to evil@example.org". Disadvantages for Evil are that Bob's message will be shown on Alice's device, possibly creating confusion/suspicion, and that the usual "Setup changed for..." message will be shown the next time Evil sends a message (because Evil doesn't know Alice's private key).
Possible mitigations:
- if we make the AEAP device message sth. like "Automatically removed alice@example.org and added evil@example.org", then this will create more suspicion, making the phishing harder (we didn't talk about what what the wording should be at all yet).
- Add something similar to replay protection to our Autocrypt implementation. This could be done e.g. by adding a second `From` header to the protected headers. If it's present, the receiver then requires it to be the same as the outer `From`, and if it's not present, we don't do AEAP --> **That's what we implemented**
Note that usually a mail is signed by a key that has a UID matching the from address.
That's not mandatory for Autocrypt (and in fact, we just keep the old UID when changing the self address, so with AEAP the UID will actually be different than the from address sometimes)
https://autocrypt.org/level1.html#openpgp-based-key-data says:
> The content of the user id packet is only decorative
</details>
### Notes:
- We treat protected and non-protected chats the same
- We leave the aeap transition statement away since it seems not to be needed, makes things harder on the sending side, wastes some network traffic, and is worse for privacy (since more people know what old addresses you had).
- As soon as we encrypt read receipts, sending a read receipt will be enough to tell a lot of people that you transitioned
- AEAP will make the problem of inconsistent group state worse, both because it doesn't work if the message is unencrypted (even if the design allowed it, it would be problematic security-wise) and because some chat partners may have gotten the transition and some not. We should do something against this at some point in the future, like asking the user whether they want to add/remove the members to restore consistent group state.
#### Downsides of this design:
- Inconsistent group state: Suppose Alice does an AEAP transition and sends a 1:1 message to Bob, so Bob rewrites Alice's contact. Alice, Bob and Charlie are together in a group. Before Alice writes to this group, Bob and Charlie will have different membership lists, and Bob will send messages to Alice's new address, while Charlie will send them to her old address.
#### Upsides:
- With this approach, it's easy to switch to a model where the info about the transition is encoded in the PGP key. Since the key is gossiped, the information about the transition will spread virally.
- Faster transition: If you send a message to e.g. "Delta Chat Dev", all members of the "sub-group" "delta android" will know of your transition.
### Alternatives and old discussions/plans:
- Change the contact instead of rewriting the group member lists. This seems to call for more trouble since we will end up with multiple contacts having the same email address.
- If needed, we could add a header a) indicating that the sender did an address transition or b) listing all the secondary (old) addresses. For now, there is no big enough benefit to warrant introducing another header and its processing on the receiver side (including all the necessary checks and handling of error cases). Instead, we only check for the `Chat-Version` header to prevent accidental transitions when an MUA user sends a message from another email address with the same key.
- The condition for a transition temporarily was:
> When receiving a message: If we are going to assign a message to a chat, but the sender is not a member of this chat\
> AND the signing key is the same as the direct (non-gossiped) key of one of the chat members\
> AND ...
However, this would mean that in 1:1 messages can't trigger a transition, since we don't assign private messages to the parent chat, but always to the 1:1 chat with the sender.
<details>
<summary>Some previous state of the discussion, which temporarily lived in an issue description</summary>
Summarizing the discussions from https://github.com/deltachat/deltachat-core-rust/pull/2896, mostly quoting @hpk42:
1. (DONE) At the time of configure we push the current primary to become a secondary.
2. When a message is sent out to a chat, and the message is encrypted, and we have secondary addresses, then we
a) add a protected "AEAP-Replacement" header that contains all secondary addresses
b) if any of the secondary addresses is in the chat's member list, we remove it and leave a system message that we did so
3. When an encrypted message with a replacement header is received, replace the e-mail address of all secondary contacts (if they exist) with the new primary and drop a sysmessage in all chats the secondary is member off. This might (in edge cases) result in chats that have two or more contacts with the same e-mail address. We might ignore this for a first release and just log a warning. Let's maybe not get hung up on this case before everything else works.
Notes:
- for now we will send out aeap replacement headers forever, there is no termination condition other than lack of secondary addresses. I think that's fine for now. Later on we might introduce options to remove secondary addresses but i wouldn't do this for a first release/PR.
- the design is resilient against changing e-mail providers from A to B to C and then back to A, with partially updated chats and diverging views from recipients/contacts on this transition. In the end, you will have a primary and some secondaries, and when you start sending out messages everybody will eventually synchronize when they receive the current state of primaries/secondaries.
- of course on incoming message for need to check for each stated secondary address in the replacement header that it uses the same signature as the signature we verified as valid with the incoming message **--> Also we have to somehow make sure that the signing key was not just gossiped from some random other person in some group.**
- there are no extra flags/columns in the database needed (i hope)
#### Downsides of the chosen approach:
- Inconsistent group state: Suppose Alice does an AEAP transition and sends a 1:1 message to Bob, so Bob rewrites Alice's contact. Alice, Bob and Charlie are together in a group. Before Alice writes to this group, Bob and Charlie will have different membership lists, and Bob will send messages to Alice's new address, while Charlie will send them to her old address.
- There will be multiple contacts with the same address in the database. We will have to do something against this at some point.
The most obvious alternative would be to create a new contact with the new address and replace the old contact in the groups.
#### Upsides:
- With this approach, it's easier to switch to a model where the info about the transition is encoded in the PGP key. Since the key is gossiped, the information about the transition will spread virally.
- (Also, less important: Slightly faster transition: If you send a message to e.g. "Delta Chat Dev", all members of the "sub-group" "delta android" will know of your transition.)
- It's easier to implement (if too many problems turn up, we can still switch to another approach and didn't waste that much development time.)
[full messages](https://github.com/deltachat/deltachat-core-rust/pull/2896#discussion_r852002161)
_end of the previous state of the discussion_
</details>
Other
-----
- The user is responsible that messages to the old address arrive at the new address, for example by configuring the old provider to forward all emails to the new one.
Notes during implementing
========================
- As far as I understand the code, unencrypted messages are unsigned. So, the transition only works if both sides have the other side's key.

18
flake.lock generated
View File

@@ -47,11 +47,11 @@
"rust-analyzer-src": "rust-analyzer-src" "rust-analyzer-src": "rust-analyzer-src"
}, },
"locked": { "locked": {
"lastModified": 1763361733, "lastModified": 1747291057,
"narHash": "sha256-ka7dpwH3HIXCyD2wl5F7cPLeRbqZoY2ullALsvxdPt8=", "narHash": "sha256-9Wir6aLJAeJKqdoQUiwfKdBn7SyNXTJGRSscRyVOo2Y=",
"owner": "nix-community", "owner": "nix-community",
"repo": "fenix", "repo": "fenix",
"rev": "6c8d48e3b0ae371b19ac1485744687b788e80193", "rev": "76ffc1b7b3ec8078fe01794628b6abff35cbda8f",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -147,11 +147,11 @@
}, },
"nixpkgs_2": { "nixpkgs_2": {
"locked": { "locked": {
"lastModified": 1762977756, "lastModified": 1747179050,
"narHash": "sha256-4PqRErxfe+2toFJFgcRKZ0UI9NSIOJa+7RXVtBhy4KE=", "narHash": "sha256-qhFMmDkeJX9KJwr5H32f1r7Prs7XbQWtO0h3V0a0rFY=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "c5ae371f1a6a7fd27823bc500d9390b38c05fa55", "rev": "adaa24fbf46737f3f1b5497bf64bae750f82942e",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -202,11 +202,11 @@
"rust-analyzer-src": { "rust-analyzer-src": {
"flake": false, "flake": false,
"locked": { "locked": {
"lastModified": 1762860488, "lastModified": 1746889290,
"narHash": "sha256-rMfWMCOo/pPefM2We0iMBLi2kLBAnYoB9thi4qS7uk4=", "narHash": "sha256-h3LQYZgyv2l3U7r+mcsrEOGRldaK0zJFwAAva4hV/6g=",
"owner": "rust-lang", "owner": "rust-lang",
"repo": "rust-analyzer", "repo": "rust-analyzer",
"rev": "2efc80078029894eec0699f62ec8d5c1a56af763", "rev": "2bafe9d96c6734aacfd49e115f6cf61e7adc68bc",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@@ -1,5 +1,5 @@
{ {
description = "Chatmail core"; description = "Delta Chat core";
inputs = { inputs = {
fenix.url = "github:nix-community/fenix"; fenix.url = "github:nix-community/fenix";
flake-utils.url = "github:numtide/flake-utils"; flake-utils.url = "github:numtide/flake-utils";
@@ -14,15 +14,7 @@
pkgs = nixpkgs.legacyPackages.${system}; pkgs = nixpkgs.legacyPackages.${system};
inherit (pkgs.stdenv) isDarwin; inherit (pkgs.stdenv) isDarwin;
fenixPkgs = fenix.packages.${system}; fenixPkgs = fenix.packages.${system};
fenixToolchain = fenixPkgs.combine [ naersk' = pkgs.callPackage naersk { };
fenixPkgs.stable.rustc
fenixPkgs.stable.cargo
fenixPkgs.stable.rust-std
];
naersk' = pkgs.callPackage naersk {
cargo = fenixToolchain;
rustc = fenixToolchain;
};
manifest = (pkgs.lib.importTOML ./Cargo.toml).package; manifest = (pkgs.lib.importTOML ./Cargo.toml).package;
androidSdk = android.sdk.${system} (sdkPkgs: androidSdk = android.sdk.${system} (sdkPkgs:
builtins.attrValues { builtins.attrValues {
@@ -42,6 +34,7 @@
./Cargo.lock ./Cargo.lock
./Cargo.toml ./Cargo.toml
./CMakeLists.txt ./CMakeLists.txt
./CONTRIBUTING.md
./deltachat_derive ./deltachat_derive
./deltachat-contact-tools ./deltachat-contact-tools
./deltachat-ffi ./deltachat-ffi
@@ -105,6 +98,9 @@
nativeBuildInputs = [ nativeBuildInputs = [
pkgs.perl # Needed to build vendored OpenSSL. pkgs.perl # Needed to build vendored OpenSSL.
]; ];
buildInputs = pkgs.lib.optionals isDarwin [
pkgs.darwin.apple_sdk.frameworks.SystemConfiguration
];
auditable = false; # Avoid cargo-auditable failures. auditable = false; # Avoid cargo-auditable failures.
doCheck = false; # Disable test as it requires network access. doCheck = false; # Disable test as it requires network access.
}; };
@@ -244,9 +240,6 @@
auditable = false; # Avoid cargo-auditable failures. auditable = false; # Avoid cargo-auditable failures.
doCheck = false; # Disable test as it requires network access. doCheck = false; # Disable test as it requires network access.
CARGO_TARGET_X86_64_APPLE_DARWIN_RUSTFLAGS = "-Clink-args=-L${pkgsCross.libiconv}/lib";
CARGO_TARGET_AARCH64_APPLE_DARWIN_RUSTFLAGS = "-Clink-args=-L${pkgsCross.libiconv}/lib";
CARGO_BUILD_TARGET = rustTarget; CARGO_BUILD_TARGET = rustTarget;
TARGET_CC = "${pkgsCross.stdenv.cc}/bin/${pkgsCross.stdenv.cc.targetPrefix}cc"; TARGET_CC = "${pkgsCross.stdenv.cc}/bin/${pkgsCross.stdenv.cc.targetPrefix}cc";
CARGO_BUILD_RUSTFLAGS = [ CARGO_BUILD_RUSTFLAGS = [
@@ -478,12 +471,6 @@
}; };
libdeltachat = libdeltachat =
let
rustPlatform = (pkgs.makeRustPlatform {
cargo = fenixToolchain;
rustc = fenixToolchain;
});
in
pkgs.stdenv.mkDerivation { pkgs.stdenv.mkDerivation {
pname = "libdeltachat"; pname = "libdeltachat";
version = manifest.version; version = manifest.version;
@@ -493,9 +480,14 @@
nativeBuildInputs = [ nativeBuildInputs = [
pkgs.perl # Needed to build vendored OpenSSL. pkgs.perl # Needed to build vendored OpenSSL.
pkgs.cmake pkgs.cmake
rustPlatform.cargoSetupHook pkgs.rustPlatform.cargoSetupHook
fenixPkgs.stable.rustc pkgs.cargo
fenixPkgs.stable.cargo ];
buildInputs = pkgs.lib.optionals isDarwin [
pkgs.darwin.apple_sdk.frameworks.CoreFoundation
pkgs.darwin.apple_sdk.frameworks.Security
pkgs.darwin.apple_sdk.frameworks.SystemConfiguration
pkgs.libiconv
]; ];
postInstall = '' postInstall = ''

View File

@@ -14,7 +14,6 @@ def datadir():
return None return None
@pytest.mark.skip("The test is flaky in CI and crashes the interpreter as of 2025-11-12")
def test_echo_quit_plugin(acfactory, lp): def test_echo_quit_plugin(acfactory, lp):
lp.sec("creating one echo_and_quit bot") lp.sec("creating one echo_and_quit bot")
botproc = acfactory.run_bot_process(echo_and_quit) botproc = acfactory.run_bot_process(echo_and_quit)

View File

@@ -1,20 +1,20 @@
[build-system] [build-system]
requires = ["setuptools>=77", "wheel", "cffi>=1.0.0", "pkgconfig"] requires = ["setuptools>=45", "wheel", "cffi>=1.0.0", "pkgconfig"]
build-backend = "setuptools.build_meta" build-backend = "setuptools.build_meta"
[project] [project]
name = "deltachat" name = "deltachat"
version = "2.50.0-dev" version = "2.20.0"
license = "MPL-2.0"
description = "Python bindings for the Delta Chat Core library using CFFI against the Rust-implemented libdeltachat" description = "Python bindings for the Delta Chat Core library using CFFI against the Rust-implemented libdeltachat"
readme = "README.rst" readme = "README.rst"
requires-python = ">=3.10" requires-python = ">=3.8"
authors = [ authors = [
{ name = "holger krekel, Floris Bruynooghe, Bjoern Petersen and contributors" }, { name = "holger krekel, Floris Bruynooghe, Bjoern Petersen and contributors" },
] ]
classifiers = [ classifiers = [
"Development Status :: 5 - Production/Stable", "Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers", "Intended Audience :: Developers",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Programming Language :: Python :: 3", "Programming Language :: Python :: 3",
"Topic :: Communications :: Chat", "Topic :: Communications :: Chat",
"Topic :: Communications :: Email", "Topic :: Communications :: Email",
@@ -23,6 +23,7 @@ classifiers = [
dependencies = [ dependencies = [
"cffi>=1.0.0", "cffi>=1.0.0",
"imap-tools", "imap-tools",
"importlib_metadata;python_version<'3.8'",
"pluggy", "pluggy",
"requests", "requests",
] ]

View File

@@ -404,16 +404,18 @@ class Account:
self, self,
name: str, name: str,
contacts: Optional[List[Contact]] = None, contacts: Optional[List[Contact]] = None,
verified: bool = False,
) -> Chat: ) -> Chat:
"""create a new group chat object. """create a new group chat object.
Chats are unpromoted until the first message is sent. Chats are unpromoted until the first message is sent.
:param contacts: list of contacts to add :param contacts: list of contacts to add
:param verified: if true only verified contacts can be added.
:returns: a :class:`deltachat.chat.Chat` object. :returns: a :class:`deltachat.chat.Chat` object.
""" """
bytes_name = name.encode("utf8") bytes_name = name.encode("utf8")
chat_id = lib.dc_create_group_chat(self._dc_context, 0, bytes_name) chat_id = lib.dc_create_group_chat(self._dc_context, int(verified), bytes_name)
chat = Chat(self, chat_id) chat = Chat(self, chat_id)
if contacts is not None: if contacts is not None:
for contact in contacts: for contact in contacts:
@@ -553,6 +555,17 @@ class Account:
def imex(self, path: str, imex_cmd: int, passphrase: Optional[str] = None) -> None: def imex(self, path: str, imex_cmd: int, passphrase: Optional[str] = None) -> None:
lib.dc_imex(self._dc_context, imex_cmd, as_dc_charpointer(path), as_dc_charpointer(passphrase)) lib.dc_imex(self._dc_context, imex_cmd, as_dc_charpointer(path), as_dc_charpointer(passphrase))
def initiate_key_transfer(self) -> str:
"""return setup code after a Autocrypt setup message
has been successfully sent to our own e-mail address ("self-sent message").
If sending out was unsuccessful, a RuntimeError is raised.
"""
self.check_is_configured()
res = lib.dc_initiate_key_transfer(self._dc_context)
if res == ffi.NULL:
raise RuntimeError("could not send out autocrypt setup message")
return from_dc_charpointer(res)
def get_setup_contact_qr(self) -> str: def get_setup_contact_qr(self) -> str:
"""get/create Setup-Contact QR Code as ascii-string. """get/create Setup-Contact QR Code as ascii-string.

View File

@@ -142,6 +142,13 @@ class Chat:
""" """
return bool(lib.dc_chat_can_send(self._dc_chat)) return bool(lib.dc_chat_can_send(self._dc_chat))
def is_protected(self) -> bool:
"""return True if this chat is a protected chat.
:returns: True if chat is protected, False otherwise.
"""
return bool(lib.dc_chat_is_protected(self._dc_chat))
def get_name(self) -> Optional[str]: def get_name(self) -> Optional[str]:
"""return name of this chat. """return name of this chat.
@@ -271,6 +278,15 @@ class Chat:
sent out. This is the same object as was passed in, which sent out. This is the same object as was passed in, which
has been modified with the new state of the core. has been modified with the new state of the core.
""" """
if msg.is_out_preparing():
assert msg.id != 0
# get a fresh copy of dc_msg, the core needs it
maybe_msg = Message.from_db(self.account, msg.id)
if maybe_msg is not None:
msg = maybe_msg
else:
raise ValueError("message does not exist")
sent_id = lib.dc_send_msg(self.account._dc_context, self.id, msg._dc_msg) sent_id = lib.dc_send_msg(self.account._dc_context, self.id, msg._dc_msg)
if sent_id == 0: if sent_id == 0:
raise ValueError("message could not be sent") raise ValueError("message could not be sent")
@@ -324,6 +340,26 @@ class Chat:
raise ValueError("message could not be sent") raise ValueError("message could not be sent")
return Message.from_db(self.account, sent_id) return Message.from_db(self.account, sent_id)
def send_prepared(self, message):
"""send a previously prepared message.
:param message: a :class:`Message` instance previously returned by
:meth:`prepare_file`.
:raises ValueError: if message can not be sent.
:returns: a :class:`deltachat.message.Message` instance as sent out.
"""
assert message.id != 0 and message.is_out_preparing()
# get a fresh copy of dc_msg, the core needs it
msg = Message.from_db(self.account, message.id)
# pass 0 as chat-id because core-docs say it's ok when out-preparing
sent_id = lib.dc_send_msg(self.account._dc_context, 0, msg._dc_msg)
if sent_id == 0:
raise ValueError("message could not be sent")
assert sent_id == msg.id
# modify message in place to avoid bad state for the caller
msg._dc_msg = Message.from_db(self.account, sent_id)._dc_msg
def set_draft(self, message): def set_draft(self, message):
"""set message as draft. """set message as draft.

View File

@@ -167,6 +167,14 @@ class Message:
"""return True if this message is a system/info message.""" """return True if this message is a system/info message."""
return bool(lib.dc_msg_is_info(self._dc_msg)) return bool(lib.dc_msg_is_info(self._dc_msg))
def is_setup_message(self):
"""return True if this message is a setup message."""
return lib.dc_msg_is_setupmessage(self._dc_msg)
def get_setupcodebegin(self) -> str:
"""return the first characters of a setup code in a setup message."""
return from_dc_charpointer(lib.dc_msg_get_setupcodebegin(self._dc_msg))
def is_encrypted(self): def is_encrypted(self):
"""return True if this message was encrypted.""" """return True if this message was encrypted."""
return bool(lib.dc_msg_get_showpadlock(self._dc_msg)) return bool(lib.dc_msg_get_showpadlock(self._dc_msg))
@@ -190,6 +198,12 @@ class Message:
"""Get a message summary as a single line of text. Typically used for notifications.""" """Get a message summary as a single line of text. Typically used for notifications."""
return from_dc_charpointer(lib.dc_msg_get_summarytext(self._dc_msg, width)) return from_dc_charpointer(lib.dc_msg_get_summarytext(self._dc_msg, width))
def continue_key_transfer(self, setup_code):
"""extract key and use it as primary key for this account."""
res = lib.dc_continue_key_transfer(self.account._dc_context, self.id, as_dc_charpointer(setup_code))
if res == 0:
raise ValueError("Importing the key from Autocrypt Setup Message failed")
@props.with_doc @props.with_doc
def time_sent(self): def time_sent(self):
"""UTC time when the message was sent. """UTC time when the message was sent.
@@ -254,6 +268,10 @@ class Message:
"""Quote setter.""" """Quote setter."""
lib.dc_msg_set_quote(self._dc_msg, quoted_message._dc_msg) lib.dc_msg_set_quote(self._dc_msg, quoted_message._dc_msg)
def force_plaintext(self) -> None:
"""Force the message to be sent in plain text."""
lib.dc_msg_force_plaintext(self._dc_msg)
@property @property
def error(self) -> Optional[str]: def error(self) -> Optional[str]:
"""Error message.""" """Error message."""
@@ -351,12 +369,17 @@ class Message:
def is_outgoing(self): def is_outgoing(self):
"""Return True if Message is outgoing.""" """Return True if Message is outgoing."""
return lib.dc_msg_get_state(self._dc_msg) in ( return lib.dc_msg_get_state(self._dc_msg) in (
const.DC_STATE_OUT_PREPARING,
const.DC_STATE_OUT_PENDING, const.DC_STATE_OUT_PENDING,
const.DC_STATE_OUT_FAILED, const.DC_STATE_OUT_FAILED,
const.DC_STATE_OUT_MDN_RCVD, const.DC_STATE_OUT_MDN_RCVD,
const.DC_STATE_OUT_DELIVERED, const.DC_STATE_OUT_DELIVERED,
) )
def is_out_preparing(self):
"""Return True if Message is outgoing, but its file is being prepared."""
return self._msgstate == const.DC_STATE_OUT_PREPARING
def is_out_pending(self): def is_out_pending(self):
"""Return True if Message is outgoing, but is pending (no single checkmark).""" """Return True if Message is outgoing, but is pending (no single checkmark)."""
return self._msgstate == const.DC_STATE_OUT_PENDING return self._msgstate == const.DC_STATE_OUT_PENDING

View File

@@ -433,6 +433,7 @@ class ACFactory:
if self.pytestconfig.getoption("--strict-tls"): if self.pytestconfig.getoption("--strict-tls"):
# Enable strict certificate checks for online accounts # Enable strict certificate checks for online accounts
configdict["imap_certificate_checks"] = str(const.DC_CERTCK_STRICT) configdict["imap_certificate_checks"] = str(const.DC_CERTCK_STRICT)
configdict["smtp_certificate_checks"] = str(const.DC_CERTCK_STRICT)
assert "addr" in configdict and "mail_pw" in configdict assert "addr" in configdict and "mail_pw" in configdict
return configdict return configdict
@@ -504,6 +505,7 @@ class ACFactory:
"addr": cloned_from.get_config("addr"), "addr": cloned_from.get_config("addr"),
"mail_pw": cloned_from.get_config("mail_pw"), "mail_pw": cloned_from.get_config("mail_pw"),
"imap_certificate_checks": cloned_from.get_config("imap_certificate_checks"), "imap_certificate_checks": cloned_from.get_config("imap_certificate_checks"),
"smtp_certificate_checks": cloned_from.get_config("smtp_certificate_checks"),
} }
configdict.update(kwargs) configdict.update(kwargs)
ac = self._get_cached_account(addr=configdict["addr"]) if cache else None ac = self._get_cached_account(addr=configdict["addr"]) if cache else None
@@ -520,6 +522,8 @@ class ACFactory:
ac = self.get_unconfigured_account() ac = self.get_unconfigured_account()
assert "addr" in configdict and "mail_pw" in configdict, configdict assert "addr" in configdict and "mail_pw" in configdict, configdict
configdict.setdefault("bcc_self", False) configdict.setdefault("bcc_self", False)
configdict.setdefault("mvbox_move", False)
configdict.setdefault("sentbox_watch", False)
configdict.setdefault("sync_msgs", False) configdict.setdefault("sync_msgs", False)
configdict.setdefault("delete_server_after", 0) configdict.setdefault("delete_server_after", 0)
ac.update_config(configdict) ac.update_config(configdict)
@@ -600,6 +604,20 @@ class ACFactory:
ac2.create_chat(ac1) ac2.create_chat(ac1)
return ac1.create_chat(ac2) return ac1.create_chat(ac2)
def get_protected_chat(self, ac1: Account, ac2: Account):
chat = ac1.create_group_chat("Protected Group", verified=True)
qr = chat.get_join_qr()
ac2.qr_join_chat(qr)
ac2._evtracker.wait_securejoin_joiner_progress(1000)
ev = ac2._evtracker.get_matching("DC_EVENT_MSGS_CHANGED")
msg = ac2.get_message_by_id(ev.data2)
assert msg is not None
assert msg.text == "Messages are end-to-end encrypted."
msg = ac2._evtracker.wait_next_incoming_message()
assert msg is not None
assert "Member Me " in msg.text and " added by " in msg.text
return chat
def introduce_each_other(self, accounts, sending=True): def introduce_each_other(self, accounts, sending=True):
to_wait = [] to_wait = []
for i, acc in enumerate(accounts): for i, acc in enumerate(accounts):

View File

@@ -1,3 +1,4 @@
import sys
import time import time
import deltachat as dc import deltachat as dc
@@ -62,11 +63,63 @@ class TestGroupStressTests:
# Message should be encrypted because keys of other members are gossiped # Message should be encrypted because keys of other members are gossiped
assert msg.is_encrypted() assert msg.is_encrypted()
def test_synchronize_member_list_on_group_rejoin(self, acfactory, lp):
"""
Test that user recreates group member list when it joins the group again.
ac1 creates a group with two other accounts: ac2 and ac3
Then it removes ac2, removes ac3 and adds ac2 back.
ac2 did not see that ac3 is removed, so it should rebuild member list from scratch.
"""
lp.sec("setting up accounts, accepted with each other")
accounts = acfactory.get_online_accounts(3)
acfactory.introduce_each_other(accounts)
ac1, ac2, ac3 = accounts
lp.sec("ac1: creating group chat with 2 other members")
chat = ac1.create_group_chat("title1", contacts=[ac2, ac3])
assert not chat.is_promoted()
lp.sec("ac1: send message to new group chat")
msg = chat.send_text("hello")
assert chat.is_promoted() and msg.is_encrypted()
assert chat.num_contacts() == 3
lp.sec("checking that the chat arrived correctly")
for ac in accounts[1:]:
msg = ac._evtracker.wait_next_incoming_message()
assert msg.text == "hello"
print("chat is", msg.chat)
assert msg.chat.num_contacts() == 3
lp.sec("ac1: removing ac2")
chat.remove_contact(ac2)
lp.sec("ac2: wait for a message about removal from the chat")
msg = ac2._evtracker.wait_next_incoming_message()
lp.sec("ac1: removing ac3")
chat.remove_contact(ac3)
lp.sec("ac1: adding ac2 back")
# Group is promoted, message is sent automatically
assert chat.is_promoted()
chat.add_contact(ac2)
lp.sec("ac2: check that ac3 is removed")
msg = ac2._evtracker.wait_next_incoming_message()
assert chat.num_contacts() == 2
assert msg.chat.num_contacts() == 2
acfactory.dump_imap_summary(sys.stdout)
def test_qr_verified_group_and_chatting(acfactory, lp): def test_qr_verified_group_and_chatting(acfactory, lp):
ac1, ac2, ac3 = acfactory.get_online_accounts(3) ac1, ac2, ac3 = acfactory.get_online_accounts(3)
ac1_addr = ac1.get_self_contact().addr
lp.sec("ac1: create verified-group QR, ac2 scans and joins") lp.sec("ac1: create verified-group QR, ac2 scans and joins")
chat1 = ac1.create_group_chat("hello") chat1 = ac1.create_group_chat("hello", verified=True)
assert chat1.is_protected()
qr = chat1.get_join_qr() qr = chat1.get_join_qr()
lp.sec("ac2: start QR-code based join-group protocol") lp.sec("ac2: start QR-code based join-group protocol")
chat2 = ac2.qr_join_chat(qr) chat2 = ac2.qr_join_chat(qr)
@@ -89,6 +142,7 @@ def test_qr_verified_group_and_chatting(acfactory, lp):
lp.sec("ac2: read message and check that it's a verified chat") lp.sec("ac2: read message and check that it's a verified chat")
msg = ac2._evtracker.wait_next_incoming_message() msg = ac2._evtracker.wait_next_incoming_message()
assert msg.text == "hello" assert msg.text == "hello"
assert msg.chat.is_protected()
assert msg.is_encrypted() assert msg.is_encrypted()
lp.sec("ac2: Check that ac2 verified ac1") lp.sec("ac2: Check that ac2 verified ac1")
@@ -119,12 +173,8 @@ def test_qr_verified_group_and_chatting(acfactory, lp):
lp.sec("ac2: Check that ac1 verified ac3 for ac2") lp.sec("ac2: Check that ac1 verified ac3 for ac2")
ac2_ac1_contact = ac2.get_contacts()[0] ac2_ac1_contact = ac2.get_contacts()[0]
assert ac2.get_self_contact().get_verifier(ac2_ac1_contact).id == dc.const.DC_CONTACT_ID_SELF assert ac2.get_self_contact().get_verifier(ac2_ac1_contact).id == dc.const.DC_CONTACT_ID_SELF
for ac2_contact in chat2.get_contacts(): ac2_ac3_contact = ac2.get_contacts()[1]
if ac2_contact == ac2_ac1_contact or ac2_contact.id == dc.const.DC_CONTACT_ID_SELF: assert ac2.get_self_contact().get_verifier(ac2_ac3_contact).addr == ac1_addr
continue
# Until we reset verifications and then send the _verified header,
# verification is not gossiped here:
assert ac2.get_self_contact().get_verifier(ac2_contact) is None
lp.sec("ac2: send message and let ac3 read it") lp.sec("ac2: send message and let ac3 read it")
chat2.send_text("hi") chat2.send_text("hi")
@@ -216,7 +266,8 @@ def test_see_new_verified_member_after_going_online(acfactory, tmp_path, lp):
ac1_offl.stop_io() ac1_offl.stop_io()
lp.sec("ac1: create verified-group QR, ac2 scans and joins") lp.sec("ac1: create verified-group QR, ac2 scans and joins")
chat = ac1.create_group_chat("hello") chat = ac1.create_group_chat("hello", verified=True)
assert chat.is_protected()
qr = chat.get_join_qr() qr = chat.get_join_qr()
lp.sec("ac2: start QR-code based join-group protocol") lp.sec("ac2: start QR-code based join-group protocol")
chat2 = ac2.qr_join_chat(qr) chat2 = ac2.qr_join_chat(qr)
@@ -270,7 +321,8 @@ def test_use_new_verified_group_after_going_online(acfactory, data, tmp_path, lp
ac1.set_avatar(avatar_path) ac1.set_avatar(avatar_path)
lp.sec("ac1: create verified-group QR, ac2 scans and joins") lp.sec("ac1: create verified-group QR, ac2 scans and joins")
chat = ac1.create_group_chat("hello") chat = ac1.create_group_chat("hello", verified=True)
assert chat.is_protected()
qr = chat.get_join_qr() qr = chat.get_join_qr()
lp.sec("ac2: start QR-code based join-group protocol") lp.sec("ac2: start QR-code based join-group protocol")
ac2.qr_join_chat(qr) ac2.qr_join_chat(qr)
@@ -284,11 +336,11 @@ def test_use_new_verified_group_after_going_online(acfactory, data, tmp_path, lp
assert msg_in.is_system_message() assert msg_in.is_system_message()
assert contact.addr == ac1.get_config("addr") assert contact.addr == ac1.get_config("addr")
chat2 = msg_in.chat chat2 = msg_in.chat
assert chat2.is_protected()
assert chat2.get_messages()[0].text == "Messages are end-to-end encrypted." assert chat2.get_messages()[0].text == "Messages are end-to-end encrypted."
assert open(contact.get_profile_image(), "rb").read() == open(avatar_path, "rb").read() assert open(contact.get_profile_image(), "rb").read() == open(avatar_path, "rb").read()
lp.sec("ac2_offl: sending message") lp.sec("ac2_offl: sending message")
chat2.accept()
msg_out = chat2.send_text("hello") msg_out = chat2.send_text("hello")
lp.sec("ac1: receiving message") lp.sec("ac1: receiving message")
@@ -324,7 +376,8 @@ def test_verified_group_vs_delete_server_after(acfactory, tmp_path, lp):
ac2_offl.stop_io() ac2_offl.stop_io()
lp.sec("ac1: create verified-group QR, ac2 scans and joins") lp.sec("ac1: create verified-group QR, ac2 scans and joins")
chat1 = ac1.create_group_chat("hello") chat1 = ac1.create_group_chat("hello", verified=True)
assert chat1.is_protected()
qr = chat1.get_join_qr() qr = chat1.get_join_qr()
lp.sec("ac2: start QR-code based join-group protocol") lp.sec("ac2: start QR-code based join-group protocol")
chat2 = ac2.qr_join_chat(qr) chat2 = ac2.qr_join_chat(qr)
@@ -349,20 +402,29 @@ def test_verified_group_vs_delete_server_after(acfactory, tmp_path, lp):
assert ac2_offl_ac1_contact.addr == ac1.get_config("addr") assert ac2_offl_ac1_contact.addr == ac1.get_config("addr")
assert not ac2_offl_ac1_contact.is_verified() assert not ac2_offl_ac1_contact.is_verified()
chat2_offl = msg_in.chat chat2_offl = msg_in.chat
assert not chat2_offl.is_protected()
lp.sec("ac2: sending message re-gossiping Autocrypt keys") lp.sec("ac2: sending message re-gossiping Autocrypt keys")
chat2.send_text("hi2") chat2.send_text("hi2")
lp.sec("ac2_offl: receiving message") lp.sec("ac2_offl: receiving message")
ev = ac2_offl._evtracker.get_matching("DC_EVENT_INCOMING_MSG|DC_EVENT_MSGS_CHANGED")
msg_in = ac2_offl.get_message_by_id(ev.data2)
assert msg_in.is_system_message()
assert msg_in.text == "Messages are end-to-end encrypted."
# We need to consume one event that has data2=0
ev = ac2_offl._evtracker.get_matching("DC_EVENT_INCOMING_MSG|DC_EVENT_MSGS_CHANGED")
assert ev.data2 == 0
ev = ac2_offl._evtracker.get_matching("DC_EVENT_INCOMING_MSG|DC_EVENT_MSGS_CHANGED") ev = ac2_offl._evtracker.get_matching("DC_EVENT_INCOMING_MSG|DC_EVENT_MSGS_CHANGED")
msg_in = ac2_offl.get_message_by_id(ev.data2) msg_in = ac2_offl.get_message_by_id(ev.data2)
assert not msg_in.is_system_message() assert not msg_in.is_system_message()
assert msg_in.text == "hi2" assert msg_in.text == "hi2"
assert msg_in.chat == chat2_offl assert msg_in.chat == chat2_offl
assert msg_in.get_sender_contact().addr == ac2.get_config("addr") assert msg_in.get_sender_contact().addr == ac2.get_config("addr")
# Until we reset verifications and then send the _verified header, assert msg_in.chat.is_protected()
# verification is not gossiped here: assert ac2_offl_ac1_contact.is_verified()
assert not ac2_offl_ac1_contact.is_verified()
def test_deleted_msgs_dont_reappear(acfactory): def test_deleted_msgs_dont_reappear(acfactory):

View File

@@ -1,13 +1,15 @@
import os import os
import queue import queue
import sys import sys
import base64
from datetime import datetime, timezone from datetime import datetime, timezone
import pytest import pytest
from imap_tools import AND from imap_tools import AND, U
import deltachat as dc import deltachat as dc
from deltachat import account_hookimpl, Message from deltachat import account_hookimpl, Message
from deltachat.tracker import ImexTracker
from deltachat.testplugin import E2EE_INFO_MSGS from deltachat.testplugin import E2EE_INFO_MSGS
@@ -220,6 +222,159 @@ def test_webxdc_huge_update(acfactory, data, lp):
assert update["payload"] == payload assert update["payload"] == payload
def test_webxdc_download_on_demand(acfactory, data, lp):
ac1, ac2 = acfactory.get_online_accounts(2)
acfactory.introduce_each_other([ac1, ac2])
chat = acfactory.get_accepted_chat(ac1, ac2)
msg1 = Message.new_empty(ac1, "webxdc")
msg1.set_text("message1")
msg1.set_file(data.get_path("webxdc/minimal.xdc"))
msg1 = chat.send_msg(msg1)
assert msg1.is_webxdc()
assert msg1.filename
msg2 = ac2._evtracker.wait_next_incoming_message()
assert msg2.is_webxdc()
lp.sec("ac2 sets download limit")
ac2.set_config("download_limit", "100")
assert msg1.send_status_update({"payload": base64.b64encode(os.urandom(300000))}, "some test data")
ac2_update = ac2._evtracker.wait_next_incoming_message()
assert ac2_update.download_state == dc.const.DC_DOWNLOAD_AVAILABLE
assert not msg2.get_status_updates()
ac2_update.download_full()
ac2._evtracker.get_matching("DC_EVENT_WEBXDC_STATUS_UPDATE")
assert msg2.get_status_updates()
# Get a event notifying that the message disappeared from the chat.
msgs_changed_event = ac2._evtracker.get_matching("DC_EVENT_MSGS_CHANGED")
assert msgs_changed_event.data1 == msg2.chat.id
assert msgs_changed_event.data2 == 0
def test_enable_mvbox_move(acfactory, lp):
(ac1,) = acfactory.get_online_accounts(1)
lp.sec("ac2: start without mvbox thread")
ac2 = acfactory.new_online_configuring_account(mvbox_move=False)
acfactory.bring_accounts_online()
lp.sec("ac2: configuring mvbox")
ac2.set_config("mvbox_move", "1")
lp.sec("ac1: send message and wait for ac2 to receive it")
acfactory.get_accepted_chat(ac1, ac2).send_text("message1")
assert ac2._evtracker.wait_next_incoming_message().text == "message1"
def test_mvbox_sentbox_threads(acfactory, lp):
lp.sec("ac1: start with mvbox thread")
ac1 = acfactory.new_online_configuring_account(mvbox_move=True, sentbox_watch=False)
lp.sec("ac2: start without mvbox/sentbox threads")
ac2 = acfactory.new_online_configuring_account(mvbox_move=False, sentbox_watch=False)
lp.sec("ac2 and ac1: waiting for configuration")
acfactory.bring_accounts_online()
lp.sec("ac1: create and configure sentbox")
ac1.direct_imap.create_folder("Sent")
ac1.set_config("sentbox_watch", "1")
lp.sec("ac1: send message and wait for ac2 to receive it")
acfactory.get_accepted_chat(ac1, ac2).send_text("message1")
assert ac2._evtracker.wait_next_incoming_message().text == "message1"
assert ac1.get_config("configured_mvbox_folder") == "DeltaChat"
while ac1.get_config("configured_sentbox_folder") != "Sent":
ac1._evtracker.get_matching("DC_EVENT_CONNECTIVITY_CHANGED")
def test_move_works(acfactory):
ac1 = acfactory.new_online_configuring_account()
ac2 = acfactory.new_online_configuring_account(mvbox_move=True)
acfactory.bring_accounts_online()
chat = acfactory.get_accepted_chat(ac1, ac2)
chat.send_text("message1")
# Message is moved to the movebox
ac2._evtracker.get_matching("DC_EVENT_IMAP_MESSAGE_MOVED")
# Message is downloaded
ev = ac2._evtracker.get_matching("DC_EVENT_INCOMING_MSG")
assert ev.data2 > dc.const.DC_CHAT_ID_LAST_SPECIAL
def test_move_avoids_loop(acfactory):
"""Test that the message is only moved once.
This is to avoid busy loop if moved message reappears in the Inbox
or some scanned folder later.
For example, this happens on servers that alias `INBOX.DeltaChat` to `DeltaChat` folder,
so the message moved to `DeltaChat` appears as a new message in the `INBOX.DeltaChat` folder.
We do not want to move this message from `INBOX.DeltaChat` to `DeltaChat` again.
"""
ac1 = acfactory.new_online_configuring_account()
ac2 = acfactory.new_online_configuring_account(mvbox_move=True)
acfactory.bring_accounts_online()
ac1_chat = acfactory.get_accepted_chat(ac1, ac2)
ac1_chat.send_text("Message 1")
# Message is moved to the DeltaChat folder and downloaded.
ac2_msg1 = ac2._evtracker.wait_next_incoming_message()
assert ac2_msg1.text == "Message 1"
# Move the message to the INBOX again.
ac2.direct_imap.select_folder("DeltaChat")
ac2.direct_imap.conn.move(["*"], "INBOX")
ac1_chat.send_text("Message 2")
ac2_msg2 = ac2._evtracker.wait_next_incoming_message()
assert ac2_msg2.text == "Message 2"
# Check that Message 1 is still in the INBOX folder
# and Message 2 is in the DeltaChat folder.
ac2.direct_imap.select_folder("INBOX")
assert len(ac2.direct_imap.get_all_messages()) == 1
ac2.direct_imap.select_folder("DeltaChat")
assert len(ac2.direct_imap.get_all_messages()) == 1
def test_move_works_on_self_sent(acfactory):
ac1 = acfactory.new_online_configuring_account(mvbox_move=True)
ac2 = acfactory.new_online_configuring_account()
acfactory.bring_accounts_online()
ac1.set_config("bcc_self", "1")
chat = acfactory.get_accepted_chat(ac1, ac2)
chat.send_text("message1")
ac1._evtracker.get_matching("DC_EVENT_IMAP_MESSAGE_MOVED")
chat.send_text("message2")
ac1._evtracker.get_matching("DC_EVENT_IMAP_MESSAGE_MOVED")
chat.send_text("message3")
ac1._evtracker.get_matching("DC_EVENT_IMAP_MESSAGE_MOVED")
def test_move_sync_msgs(acfactory):
ac1 = acfactory.new_online_configuring_account(bcc_self=True, sync_msgs=True, fix_is_chatmail=True)
acfactory.bring_accounts_online()
ac1.direct_imap.select_folder("DeltaChat")
# Sync messages may also be sent during the configuration.
mvbox_msg_cnt = len(ac1.direct_imap.get_all_messages())
ac1.set_config("displayname", "Alice")
ac1._evtracker.get_matching("DC_EVENT_MSG_DELIVERED")
ac1.set_config("displayname", "Bob")
ac1._evtracker.get_matching("DC_EVENT_MSG_DELIVERED")
ac1.direct_imap.select_folder("Inbox")
assert len(ac1.direct_imap.get_all_messages()) == 0
ac1.direct_imap.select_folder("DeltaChat")
assert len(ac1.direct_imap.get_all_messages()) == mvbox_msg_cnt + 2
def test_forward_messages(acfactory, lp): def test_forward_messages(acfactory, lp):
ac1, ac2 = acfactory.get_online_accounts(2) ac1, ac2 = acfactory.get_online_accounts(2)
chat = ac1.create_chat(ac2) chat = ac1.create_chat(ac2)
@@ -287,7 +442,7 @@ def test_forward_own_message(acfactory, lp):
def test_resend_message(acfactory, lp): def test_resend_message(acfactory, lp):
ac1, ac2 = acfactory.get_online_accounts(2) ac1, ac2 = acfactory.get_online_accounts(2)
chat1 = acfactory.get_accepted_chat(ac1, ac2) chat1 = ac1.create_chat(ac2)
lp.sec("ac1: send message to ac2") lp.sec("ac1: send message to ac2")
chat1.send_text("message") chat1.send_text("message")
@@ -295,19 +450,14 @@ def test_resend_message(acfactory, lp):
lp.sec("ac2: receive message") lp.sec("ac2: receive message")
msg_in = ac2._evtracker.wait_next_incoming_message() msg_in = ac2._evtracker.wait_next_incoming_message()
assert msg_in.text == "message" assert msg_in.text == "message"
chat2 = msg_in.chat
chat2_msg_cnt = len(chat2.get_messages())
lp.sec("ac1: resend message") lp.sec("ac1: resend message")
ac1.resend_messages([msg_in]) ac1.resend_messages([msg_in])
lp.sec("ac1: send another message") lp.sec("ac2: check that message is deleted")
chat1.send_text("another message") ac2._evtracker.get_matching("DC_EVENT_IMAP_MESSAGE_DELETED")
lp.sec("ac2: receive another message")
msg_in = ac2._evtracker.wait_next_incoming_message()
assert msg_in.text == "another message"
chat2 = msg_in.chat
chat2_msg_cnt = len(chat2.get_messages())
assert len(chat2.get_messages()) == chat2_msg_cnt assert len(chat2.get_messages()) == chat2_msg_cnt
@@ -335,7 +485,7 @@ def test_long_group_name(acfactory, lp):
def test_send_self_message(acfactory, lp): def test_send_self_message(acfactory, lp):
ac1 = acfactory.new_online_configuring_account(bcc_self=True) ac1 = acfactory.new_online_configuring_account(mvbox_move=True, bcc_self=True)
acfactory.bring_accounts_online() acfactory.bring_accounts_online()
lp.sec("ac1: create self chat") lp.sec("ac1: create self chat")
chat = ac1.get_self_contact().create_chat() chat = ac1.get_self_contact().create_chat()
@@ -434,6 +584,39 @@ def test_send_and_receive_message_markseen(acfactory, lp):
pass # mark_seen_messages() has generated events before it returns pass # mark_seen_messages() has generated events before it returns
def test_moved_markseen(acfactory):
"""Test that message already moved to DeltaChat folder is marked as seen."""
ac1 = acfactory.new_online_configuring_account()
ac2 = acfactory.new_online_configuring_account(mvbox_move=True)
acfactory.bring_accounts_online()
ac2.stop_io()
with ac2.direct_imap.idle() as idle2:
ac1.create_chat(ac2).send_text("Hello!")
idle2.wait_for_new_message()
# Emulate moving of the message to DeltaChat folder by Sieve rule.
ac2.direct_imap.conn.move(["*"], "DeltaChat")
ac2.direct_imap.select_folder("DeltaChat")
with ac2.direct_imap.idle() as idle2:
ac2.start_io()
ev = ac2._evtracker.get_matching("DC_EVENT_INCOMING_MSG|DC_EVENT_MSGS_CHANGED")
msg = ac2.get_message_by_id(ev.data2)
assert msg.text == "Messages are end-to-end encrypted."
ev = ac2._evtracker.get_matching("DC_EVENT_INCOMING_MSG|DC_EVENT_MSGS_CHANGED")
msg = ac2.get_message_by_id(ev.data2)
# Accept the contact request.
msg.chat.accept()
ac2.mark_seen_messages([msg])
uid = idle2.wait_for_seen()
assert len(list(ac2.direct_imap.conn.fetch(AND(seen=True, uid=U(uid, "*"))))) == 1
def test_message_override_sender_name(acfactory, lp): def test_message_override_sender_name(acfactory, lp):
ac1, ac2 = acfactory.get_online_accounts(2) ac1, ac2 = acfactory.get_online_accounts(2)
ac1.set_config("displayname", "ac1-default-displayname") ac1.set_config("displayname", "ac1-default-displayname")
@@ -468,6 +651,36 @@ def test_message_override_sender_name(acfactory, lp):
assert not msg2.override_sender_name assert not msg2.override_sender_name
@pytest.mark.parametrize("mvbox_move", [True, False])
def test_markseen_message_and_mdn(acfactory, mvbox_move):
# Please only change this test if you are very sure that it will still catch the issues it catches now.
# We had so many problems with markseen, if in doubt, rather create another test, it can't harm.
ac1 = acfactory.new_online_configuring_account(mvbox_move=mvbox_move)
ac2 = acfactory.new_online_configuring_account(mvbox_move=mvbox_move)
acfactory.bring_accounts_online()
# Do not send BCC to self, we only want to test MDN on ac1.
ac1.set_config("bcc_self", "0")
acfactory.get_accepted_chat(ac1, ac2).send_text("hi")
msg = ac2._evtracker.wait_next_incoming_message()
ac2.mark_seen_messages([msg])
folder = "mvbox" if mvbox_move else "inbox"
for ac in [ac1, ac2]:
if mvbox_move:
ac._evtracker.get_info_contains("Marked messages [0-9]+ in folder DeltaChat as seen.")
else:
ac._evtracker.get_info_contains("Marked messages [0-9]+ in folder INBOX as seen.")
ac1.direct_imap.select_config_folder(folder)
ac2.direct_imap.select_config_folder(folder)
# Check that the mdn is marked as seen
assert len(list(ac1.direct_imap.conn.fetch(AND(seen=True)))) == 1
# Check original message is marked as seen
assert len(list(ac2.direct_imap.conn.fetch(AND(seen=True)))) == 1
def test_reply_privately(acfactory): def test_reply_privately(acfactory):
ac1, ac2 = acfactory.get_online_accounts(2) ac1, ac2 = acfactory.get_online_accounts(2)
@@ -494,7 +707,7 @@ def test_reply_privately(acfactory):
def test_mdn_asymmetric(acfactory, lp): def test_mdn_asymmetric(acfactory, lp):
ac1 = acfactory.new_online_configuring_account() ac1 = acfactory.new_online_configuring_account(mvbox_move=True)
ac2 = acfactory.new_online_configuring_account() ac2 = acfactory.new_online_configuring_account()
acfactory.bring_accounts_online() acfactory.bring_accounts_online()
@@ -523,14 +736,20 @@ def test_mdn_asymmetric(acfactory, lp):
ac2.mark_seen_messages([msg]) ac2.mark_seen_messages([msg])
lp.sec("ac1: waiting for incoming activity") lp.sec("ac1: waiting for incoming activity")
# MDN should be moved even though MDNs are already disabled
ac1._evtracker.get_matching("DC_EVENT_IMAP_MESSAGE_MOVED")
assert len(chat.get_messages()) == 1 + E2EE_INFO_MSGS assert len(chat.get_messages()) == 1 + E2EE_INFO_MSGS
# Wait for the message to be marked as seen on IMAP. # Wait for the message to be marked as seen on IMAP.
ac1._evtracker.get_info_contains("Marked messages [0-9]+ in folder INBOX as seen.") ac1._evtracker.get_info_contains("Marked messages [0-9]+ in folder DeltaChat as seen.")
# MDN is received even though MDNs are already disabled # MDN is received even though MDNs are already disabled
assert msg_out.is_out_mdn_received() assert msg_out.is_out_mdn_received()
ac1.direct_imap.select_config_folder("mvbox")
assert len(list(ac1.direct_imap.conn.fetch(AND(seen=True)))) == 1
def test_send_receive_encrypt(acfactory, lp): def test_send_receive_encrypt(acfactory, lp):
ac1, ac2 = acfactory.get_online_accounts(2) ac1, ac2 = acfactory.get_online_accounts(2)
@@ -611,6 +830,156 @@ def test_no_draft_if_cant_send(acfactory):
assert device_chat.get_draft() is None assert device_chat.get_draft() is None
def test_dont_show_emails(acfactory, lp):
"""Most mailboxes have a "Drafts" folder where constantly new emails appear but we don't actually want to show them.
So: If it's outgoing AND there is no Received header AND it's not in the sentbox, then ignore the email.
If the draft email is sent out later (i.e. moved to "Sent"), it must be shown.
Also, test that unknown emails in the Spam folder are not shown."""
ac1 = acfactory.new_online_configuring_account()
ac1.set_config("show_emails", "2")
ac1.create_contact("alice@example.org").create_chat()
acfactory.wait_configured(ac1)
ac1.direct_imap.create_folder("Drafts")
ac1.direct_imap.create_folder("Sent")
ac1.direct_imap.create_folder("Spam")
ac1.direct_imap.create_folder("Junk")
acfactory.bring_accounts_online()
ac1.stop_io()
ac1.direct_imap.append(
"Drafts",
"""
From: ac1 <{}>
Subject: subj
To: alice@example.org
Message-ID: <aepiors@example.org>
Content-Type: text/plain; charset=utf-8
message in Drafts that is moved to Sent later
""".format(
ac1.get_config("configured_addr"),
),
)
ac1.direct_imap.append(
"Sent",
"""
From: ac1 <{}>
Subject: subj
To: alice@example.org
Message-ID: <hsabaeni@example.org>
Content-Type: text/plain; charset=utf-8
message in Sent
""".format(
ac1.get_config("configured_addr"),
),
)
ac1.direct_imap.append(
"Spam",
"""
From: unknown.address@junk.org
Subject: subj
To: {}
Message-ID: <spam.message@junk.org>
Content-Type: text/plain; charset=utf-8
Unknown message in Spam
""".format(
ac1.get_config("configured_addr"),
),
)
ac1.direct_imap.append(
"Spam",
"""
From: unknown.address@junk.org, unkwnown.add@junk.org
Subject: subj
To: {}
Message-ID: <spam.message2@junk.org>
Content-Type: text/plain; charset=utf-8
Unknown & malformed message in Spam
""".format(
ac1.get_config("configured_addr"),
),
)
ac1.direct_imap.append(
"Spam",
"""
From: delta<address: inbox@nhroy.com>
Subject: subj
To: {}
Message-ID: <spam.message99@junk.org>
Content-Type: text/plain; charset=utf-8
Unknown & malformed message in Spam
""".format(
ac1.get_config("configured_addr"),
),
)
ac1.direct_imap.append(
"Spam",
"""
From: alice@example.org
Subject: subj
To: {}
Message-ID: <spam.message3@junk.org>
Content-Type: text/plain; charset=utf-8
Actually interesting message in Spam
""".format(
ac1.get_config("configured_addr"),
),
)
ac1.direct_imap.append(
"Junk",
"""
From: unknown.address@junk.org
Subject: subj
To: {}
Message-ID: <spam.message@junk.org>
Content-Type: text/plain; charset=utf-8
Unknown message in Junk
""".format(
ac1.get_config("configured_addr"),
),
)
ac1.set_config("scan_all_folders_debounce_secs", "0")
lp.sec("All prepared, now let DC find the message")
ac1.start_io()
msg = ac1._evtracker.wait_next_messages_changed()
# Wait until each folder was scanned, this is necessary for this test to test what it should test:
ac1._evtracker.wait_idle_inbox_ready()
assert msg.text == "subj message in Sent"
chat_msgs = msg.chat.get_messages()
assert len(chat_msgs) == 2
assert any(msg.text == "subj Actually interesting message in Spam" for msg in chat_msgs)
assert not any("unknown.address" in c.get_name() for c in ac1.get_chats())
ac1.direct_imap.select_folder("Spam")
assert ac1.direct_imap.get_uid_by_message_id("spam.message@junk.org")
ac1.stop_io()
lp.sec("'Send out' the draft, i.e. move it to the Sent folder, and wait for DC to display it this time")
ac1.direct_imap.select_folder("Drafts")
uid = ac1.direct_imap.get_uid_by_message_id("aepiors@example.org")
ac1.direct_imap.conn.move(uid, "Sent")
ac1.start_io()
msg2 = ac1._evtracker.wait_next_messages_changed()
assert msg2.text == "subj message in Drafts that is moved to Sent later"
assert len(msg.chat.get_messages()) == 3
def test_bot(acfactory, lp): def test_bot(acfactory, lp):
"""Test that bot messages can be identified as such""" """Test that bot messages can be identified as such"""
ac1, ac2 = acfactory.get_online_accounts(2) ac1, ac2 = acfactory.get_online_accounts(2)
@@ -753,9 +1122,89 @@ def test_send_and_receive_image(acfactory, lp, data):
assert m == msg_in assert m == msg_in
def test_import_export_online_all(acfactory, tmp_path, data, lp):
(ac1, some1) = acfactory.get_online_accounts(2)
lp.sec("create some chat content")
some1_addr = some1.get_config("addr")
chat1 = ac1.create_contact(some1).create_chat()
chat1.send_text("msg1")
assert len(ac1.get_contacts()) == 1
original_image_path = data.get_path("d.png")
chat1.send_image(original_image_path)
# Add another 100KB file that ensures that the progress is smooth enough
path = tmp_path / "attachment.txt"
with path.open("w") as file:
file.truncate(100000)
chat1.send_file(str(path))
def assert_account_is_proper(ac):
contacts = ac.get_contacts()
assert len(contacts) == 1
contact2 = contacts[0]
assert contact2.addr == some1_addr
chat2 = contact2.create_chat()
messages = chat2.get_messages()
assert len(messages) == 3 + E2EE_INFO_MSGS
assert messages[0 + E2EE_INFO_MSGS].text == "msg1"
assert messages[1 + E2EE_INFO_MSGS].filemime == "image/png"
assert os.stat(messages[1 + E2EE_INFO_MSGS].filename).st_size == os.stat(original_image_path).st_size
ac.set_config("displayname", "new displayname")
assert ac.get_config("displayname") == "new displayname"
assert_account_is_proper(ac1)
backupdir = tmp_path / "backup"
backupdir.mkdir()
lp.sec(f"export all to {backupdir}")
with ac1.temp_plugin(ImexTracker()) as imex_tracker:
ac1.stop_io()
ac1.imex(str(backupdir), dc.const.DC_IMEX_EXPORT_BACKUP)
# check progress events for export
assert imex_tracker.wait_progress(1, progress_upper_limit=249)
assert imex_tracker.wait_progress(250, progress_upper_limit=499)
assert imex_tracker.wait_progress(500, progress_upper_limit=749)
assert imex_tracker.wait_progress(750, progress_upper_limit=999)
paths = imex_tracker.wait_finish()
assert len(paths) == 1
path = paths[0]
assert os.path.exists(path)
ac1.start_io()
lp.sec("get fresh empty account")
ac2 = acfactory.get_unconfigured_account()
lp.sec("get latest backup file")
path2 = ac2.get_latest_backupfile(str(backupdir))
assert path2 == path
lp.sec("import backup and check it's proper")
with ac2.temp_plugin(ImexTracker()) as imex_tracker:
ac2.import_all(path)
# check progress events for import
assert imex_tracker.wait_progress(1, progress_upper_limit=249)
assert imex_tracker.wait_progress(1000)
assert_account_is_proper(ac1)
assert_account_is_proper(ac2)
lp.sec(f"Second-time export all to {backupdir}")
ac1.stop_io()
path2 = ac1.export_all(str(backupdir))
assert os.path.exists(path2)
assert path2 != path
assert ac2.get_latest_backupfile(str(backupdir)) == path2
def test_qr_email_capitalization(acfactory, lp): def test_qr_email_capitalization(acfactory, lp):
"""Regression test for a bug """Regression test for a bug
that resulted in failure to propagate verification that resulted in failure to propagate verification via gossip in a verified group
when the database already contained the contact with a different email address capitalization. when the database already contained the contact with a different email address capitalization.
""" """
@@ -766,27 +1215,24 @@ def test_qr_email_capitalization(acfactory, lp):
lp.sec(f"ac1 creates a contact for ac2 ({ac2_addr_uppercase})") lp.sec(f"ac1 creates a contact for ac2 ({ac2_addr_uppercase})")
ac1.create_contact(ac2_addr_uppercase) ac1.create_contact(ac2_addr_uppercase)
lp.sec("ac3 creates a group with a QR code") lp.sec("ac3 creates a verified group with a QR code")
chat = ac3.create_group_chat("hello") chat = ac3.create_group_chat("hello", verified=True)
qr = chat.get_join_qr() qr = chat.get_join_qr()
lp.sec("ac1 joins a group via a QR code") lp.sec("ac1 joins a verified group via a QR code")
ac1_chat = ac1.qr_join_chat(qr) ac1_chat = ac1.qr_join_chat(qr)
msg = ac1._evtracker.wait_next_incoming_message() msg = ac1._evtracker.wait_next_incoming_message()
assert msg.text == "Member Me added by {}.".format(ac3.get_config("addr")) assert msg.text == "Member Me added by {}.".format(ac3.get_config("addr"))
assert len(ac1_chat.get_contacts()) == 2 assert len(ac1_chat.get_contacts()) == 2
lp.sec("ac2 joins a group via a QR code") lp.sec("ac2 joins a verified group via a QR code")
ac2.qr_join_chat(qr) ac2.qr_join_chat(qr)
ac1._evtracker.wait_next_incoming_message() ac1._evtracker.wait_next_incoming_message()
# ac1 should see both ac3 and ac2 as verified. # ac1 should see both ac3 and ac2 as verified.
assert len(ac1_chat.get_contacts()) == 3 assert len(ac1_chat.get_contacts()) == 3
# Until we reset verifications and then send the _verified header,
# the verification of ac2 is not gossiped here:
for contact in ac1_chat.get_contacts(): for contact in ac1_chat.get_contacts():
is_ac2 = contact.addr == ac2.get_config("addr") assert contact.is_verified()
assert contact.is_verified() != is_ac2
def test_set_get_contact_avatar(acfactory, data, lp): def test_set_get_contact_avatar(acfactory, data, lp):
@@ -932,6 +1378,7 @@ def test_set_get_group_image(acfactory, data, lp):
def test_connectivity(acfactory, lp): def test_connectivity(acfactory, lp):
ac1, ac2 = acfactory.get_online_accounts(2) ac1, ac2 = acfactory.get_online_accounts(2)
ac1.set_config("scan_all_folders_debounce_secs", "0")
ac1._evtracker.wait_for_connectivity(dc.const.DC_CONNECTIVITY_CONNECTED) ac1._evtracker.wait_for_connectivity(dc.const.DC_CONNECTIVITY_CONNECTED)
@@ -1052,15 +1499,9 @@ def test_send_receive_locations(acfactory, lp):
assert locations[0].latitude == 2.0 assert locations[0].latitude == 2.0
assert locations[0].longitude == 3.0 assert locations[0].longitude == 3.0
assert locations[0].accuracy == 0.5 assert locations[0].accuracy == 0.5
assert locations[0].timestamp > now
assert locations[0].marker is None assert locations[0].marker is None
# Make sure the timestamp is not in the past.
# Note that location timestamp has only 1 second precision,
# while `now` has a fractional part, so we have to truncate it
# first, otherwise `now` may appear to be in the future
# even though it is the same second.
assert int(locations[0].timestamp.timestamp()) >= int(now.timestamp())
contact = ac2.create_contact(ac1) contact = ac2.create_contact(ac1)
locations2 = chat2.get_locations(contact=contact) locations2 = chat2.get_locations(contact=contact)
assert len(locations2) == 1 assert len(locations2) == 1
@@ -1071,6 +1512,38 @@ def test_send_receive_locations(acfactory, lp):
assert not locations3 assert not locations3
def test_immediate_autodelete(acfactory, lp):
ac1 = acfactory.new_online_configuring_account()
ac2 = acfactory.new_online_configuring_account()
acfactory.bring_accounts_online()
# "1" means delete immediately, while "0" means do not delete
ac2.set_config("delete_server_after", "1")
lp.sec("ac1: create chat with ac2")
chat1 = ac1.create_chat(ac2)
ac2.create_chat(ac1)
lp.sec("ac1: send message to ac2")
sent_msg = chat1.send_text("hello")
msg = ac2._evtracker.wait_next_incoming_message()
assert msg.text == "hello"
lp.sec("ac2: wait for close/expunge on autodelete")
ac2._evtracker.get_matching("DC_EVENT_IMAP_MESSAGE_DELETED")
ac2._evtracker.get_info_contains("Close/expunge succeeded.")
lp.sec("ac2: check that message was autodeleted on server")
assert len(ac2.direct_imap.get_all_messages()) == 0
lp.sec("ac2: Mark deleted message as seen and check that read receipt arrives")
msg.mark_seen()
ev = ac1._evtracker.get_matching("DC_EVENT_MSG_READ")
assert ev.data1 == chat1.id
assert ev.data2 == sent_msg.id
def test_delete_multiple_messages(acfactory, lp): def test_delete_multiple_messages(acfactory, lp):
ac1, ac2 = acfactory.get_online_accounts(2) ac1, ac2 = acfactory.get_online_accounts(2)
chat12 = acfactory.get_accepted_chat(ac1, ac2) chat12 = acfactory.get_accepted_chat(ac1, ac2)
@@ -1103,6 +1576,55 @@ def test_delete_multiple_messages(acfactory, lp):
break break
def test_trash_multiple_messages(acfactory, lp):
ac1, ac2 = acfactory.get_online_accounts(2)
ac2.stop_io()
# Create the Trash folder on IMAP server and configure deletion to it. There was a bug that if
# Trash wasn't configured initially, it can't be configured later, let's check this.
lp.sec("Creating trash folder")
ac2.direct_imap.create_folder("Trash")
ac2.set_config("delete_to_trash", "1")
lp.sec("Check that Trash can be configured initially as well")
ac3 = acfactory.new_online_configuring_account(cloned_from=ac2)
acfactory.bring_accounts_online()
assert ac3.get_config("configured_trash_folder")
ac3.stop_io()
ac2.start_io()
chat12 = acfactory.get_accepted_chat(ac1, ac2)
lp.sec("ac1: sending 3 messages")
texts = ["first", "second", "third"]
for text in texts:
chat12.send_text(text)
lp.sec("ac2: waiting for all messages on the other side")
to_delete = []
for text in texts:
msg = ac2._evtracker.wait_next_incoming_message()
assert msg.text in texts
if text != "second":
to_delete.append(msg)
# ac2 has received some messages, this is impossible w/o the trash folder configured, let's
# check the configuration.
assert ac2.get_config("configured_trash_folder") == "Trash"
lp.sec("ac2: deleting all messages except second")
assert len(to_delete) == len(texts) - 1
ac2.delete_messages(to_delete)
lp.sec("ac2: test that only one message is left")
while 1:
ac2._evtracker.get_matching("DC_EVENT_IMAP_MESSAGE_MOVED")
ac2.direct_imap.select_config_folder("inbox")
nr_msgs = len(ac2.direct_imap.get_all_messages())
assert nr_msgs > 0
if nr_msgs == 1:
break
def test_configure_error_msgs_wrong_pw(acfactory): def test_configure_error_msgs_wrong_pw(acfactory):
(ac1,) = acfactory.get_online_accounts(1) (ac1,) = acfactory.get_online_accounts(1)
@@ -1141,17 +1663,16 @@ def test_configure_error_msgs_invalid_server(acfactory):
ev = ac2._evtracker.get_matching("DC_EVENT_CONFIGURE_PROGRESS") ev = ac2._evtracker.get_matching("DC_EVENT_CONFIGURE_PROGRESS")
if ev.data1 == 0: if ev.data1 == 0:
break break
err_lower = ev.data2.lower()
# Can't connect so it probably should say something about "internet" # Can't connect so it probably should say something about "internet"
# again, should not repeat itself # again, should not repeat itself
# If this fails then probably `e.msg.to_lowercase().contains("could not resolve")` # If this fails then probably `e.msg.to_lowercase().contains("could not resolve")`
# in configure.rs returned false because the error message was changed # in configure.rs returned false because the error message was changed
# (i.e. did not contain "could not resolve" anymore) # (i.e. did not contain "could not resolve" anymore)
assert (err_lower.count("internet") + err_lower.count("network")) == 1 assert (ev.data2.count("internet") + ev.data2.count("network")) == 1
# Should mention that it can't connect: # Should mention that it can't connect:
assert err_lower.count("connect") == 1 assert ev.data2.count("connect") == 1
# The users do not know what "configuration" is # The users do not know what "configuration" is
assert "configuration" not in err_lower assert "configuration" not in ev.data2.lower()
def test_status(acfactory): def test_status(acfactory):
@@ -1227,6 +1748,71 @@ def test_group_quote(acfactory, lp):
assert received_reply.quote.id == out_msg.id assert received_reply.quote.id == out_msg.id
@pytest.mark.parametrize(
("folder", "move", "expected_destination"),
[
(
"xyz",
False,
"xyz",
), # Test that emails aren't found in a random folder
(
"Spam",
True,
"DeltaChat",
), # ...emails are moved from the spam folder to "DeltaChat"
(
"Spam",
False,
"INBOX",
), # ...emails are moved from the spam folder to the Inbox
],
)
# Testrun.org does not support the CREATE-SPECIAL-USE capability, which means that we can't create a folder with
# the "\Junk" flag (see https://tools.ietf.org/html/rfc6154). So, we can't test spam folder detection by flag.
def test_scan_folders(acfactory, lp, folder, move, expected_destination):
"""Delta Chat periodically scans all folders for new messages to make sure we don't miss any."""
variant = folder + "-" + str(move) + "-" + expected_destination
lp.sec("Testing variant " + variant)
ac1 = acfactory.new_online_configuring_account(mvbox_move=move)
ac2 = acfactory.new_online_configuring_account()
acfactory.wait_configured(ac1)
ac1.direct_imap.create_folder(folder)
# Wait until each folder was selected once and we are IDLEing:
acfactory.bring_accounts_online()
ac1.stop_io()
assert folder in ac1.direct_imap.list_folders()
lp.sec("Send a message to from ac2 to ac1 and manually move it to `folder`")
ac1.direct_imap.select_config_folder("inbox")
with ac1.direct_imap.idle() as idle1:
acfactory.get_accepted_chat(ac2, ac1).send_text("hello")
idle1.wait_for_new_message()
ac1.direct_imap.conn.move(["*"], folder) # "*" means "biggest UID in mailbox"
lp.sec("start_io() and see if DeltaChat finds the message (" + variant + ")")
ac1.set_config("scan_all_folders_debounce_secs", "0")
ac1.start_io()
chat = ac1.create_chat(ac2)
n_msgs = 1 # "Messages are end-to-end encrypted."
if folder == "Spam":
msg = ac1._evtracker.wait_next_incoming_message()
assert msg.text == "hello"
n_msgs += 1
else:
ac1._evtracker.wait_idle_inbox_ready()
assert len(chat.get_messages()) == n_msgs
# The message has reached its destination.
ac1.direct_imap.select_folder(expected_destination)
assert len(ac1.direct_imap.get_all_messages()) == 1
if folder != expected_destination:
ac1.direct_imap.select_folder(folder)
assert len(ac1.direct_imap.get_all_messages()) == 0
def test_archived_muted_chat(acfactory, lp): def test_archived_muted_chat(acfactory, lp):
"""If an archived and muted chat receives a new message, DC_EVENT_MSGS_CHANGED for """If an archived and muted chat receives a new message, DC_EVENT_MSGS_CHANGED for
DC_CHAT_ID_ARCHIVED_LINK must be generated if the chat had only seen messages previously. DC_CHAT_ID_ARCHIVED_LINK must be generated if the chat had only seen messages previously.

Some files were not shown because too many files have changed in this diff Show More