mirror of
https://github.com/chatmail/core.git
synced 2026-04-06 15:42:10 +03:00
Compare commits
1 Commits
v1.159.4
...
link2xt/py
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a9dbf05d8d |
35
.github/ISSUE_TEMPLATE/bug_report.md
vendored
35
.github/ISSUE_TEMPLATE/bug_report.md
vendored
@@ -1,35 +0,0 @@
|
|||||||
---
|
|
||||||
name: Bug report
|
|
||||||
about: Report something that isn't working.
|
|
||||||
title: ''
|
|
||||||
assignees: ''
|
|
||||||
labels: bug
|
|
||||||
---
|
|
||||||
|
|
||||||
<!--
|
|
||||||
This is the chatmail core's bug report tracker.
|
|
||||||
For Delta Chat feature requests and support, please go to the forum: https://support.delta.chat
|
|
||||||
Please fill out as much of this form as you can (leaving out stuff that is not applicable is ok).
|
|
||||||
-->
|
|
||||||
|
|
||||||
- Operating System (Linux/Mac/Windows/iOS/Android):
|
|
||||||
- Core Version:
|
|
||||||
- Client Version:
|
|
||||||
|
|
||||||
## Expected behavior
|
|
||||||
|
|
||||||
*What did you try to achieve?*
|
|
||||||
|
|
||||||
## Actual behavior
|
|
||||||
|
|
||||||
*What happened instead?*
|
|
||||||
|
|
||||||
### Steps to reproduce the problem
|
|
||||||
|
|
||||||
1.
|
|
||||||
2.
|
|
||||||
|
|
||||||
### Screenshots
|
|
||||||
|
|
||||||
### Logs
|
|
||||||
|
|
||||||
7
.github/dependabot.yml
vendored
7
.github/dependabot.yml
vendored
@@ -7,10 +7,3 @@ updates:
|
|||||||
commit-message:
|
commit-message:
|
||||||
prefix: "chore(cargo)"
|
prefix: "chore(cargo)"
|
||||||
open-pull-requests-limit: 50
|
open-pull-requests-limit: 50
|
||||||
|
|
||||||
# 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>
|
|
||||||
- package-ecosystem: "github-actions"
|
|
||||||
directory: "/"
|
|
||||||
schedule:
|
|
||||||
interval: "weekly"
|
|
||||||
|
|||||||
81
.github/workflows/ci.yml
vendored
81
.github/workflows/ci.yml
vendored
@@ -16,36 +16,41 @@ on:
|
|||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
|
|
||||||
permissions: {}
|
|
||||||
|
|
||||||
env:
|
env:
|
||||||
RUSTFLAGS: -Dwarnings
|
RUSTFLAGS: -Dwarnings
|
||||||
RUST_VERSION: 1.86.0
|
|
||||||
|
|
||||||
# Minimum Supported Rust Version
|
|
||||||
MSRV: 1.82.0
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
lint_rust:
|
lint_rust:
|
||||||
name: Lint Rust
|
name: Lint Rust
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
env:
|
||||||
|
RUSTUP_TOOLCHAIN: 1.78.0
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
show-progress: false
|
show-progress: false
|
||||||
persist-credentials: false
|
|
||||||
- name: Install rustfmt and clippy
|
- name: Install rustfmt and clippy
|
||||||
run: rustup toolchain install $RUST_VERSION --profile minimal --component rustfmt --component clippy
|
run: rustup toolchain install $RUSTUP_TOOLCHAIN --profile minimal --component rustfmt --component clippy
|
||||||
- name: Cache rust cargo artifacts
|
- name: Cache rust cargo artifacts
|
||||||
uses: swatinem/rust-cache@v2
|
uses: swatinem/rust-cache@v2
|
||||||
- name: Run rustfmt
|
- name: Run rustfmt
|
||||||
run: cargo fmt --all -- --check
|
run: cargo fmt --all -- --check
|
||||||
- name: Run clippy
|
- name: Run clippy
|
||||||
run: scripts/clippy.sh
|
run: scripts/clippy.sh
|
||||||
- name: Check with all features
|
- name: Check
|
||||||
run: cargo check --workspace --all-targets --all-features
|
run: cargo check --workspace --all-targets --all-features
|
||||||
- name: Check with only default features
|
|
||||||
run: cargo check --all-targets
|
npm_constants:
|
||||||
|
name: Check if node constants are up to date
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
show-progress: false
|
||||||
|
- name: Rebuild constants
|
||||||
|
run: npm run build:core:constants
|
||||||
|
- name: Check that constants are not changed
|
||||||
|
run: git diff --exit-code
|
||||||
|
|
||||||
cargo_deny:
|
cargo_deny:
|
||||||
name: cargo deny
|
name: cargo deny
|
||||||
@@ -54,8 +59,7 @@ jobs:
|
|||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
show-progress: false
|
show-progress: false
|
||||||
persist-credentials: false
|
- uses: EmbarkStudios/cargo-deny-action@v1
|
||||||
- uses: EmbarkStudios/cargo-deny-action@v2
|
|
||||||
with:
|
with:
|
||||||
arguments: --all-features --workspace
|
arguments: --all-features --workspace
|
||||||
command: check
|
command: check
|
||||||
@@ -68,7 +72,6 @@ jobs:
|
|||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
show-progress: false
|
show-progress: false
|
||||||
persist-credentials: false
|
|
||||||
- name: Check provider database
|
- name: Check provider database
|
||||||
run: scripts/update-provider-database.sh
|
run: scripts/update-provider-database.sh
|
||||||
|
|
||||||
@@ -81,7 +84,6 @@ jobs:
|
|||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
show-progress: false
|
show-progress: false
|
||||||
persist-credentials: false
|
|
||||||
- name: Cache rust cargo artifacts
|
- name: Cache rust cargo artifacts
|
||||||
uses: swatinem/rust-cache@v2
|
uses: swatinem/rust-cache@v2
|
||||||
- name: Rustdoc
|
- name: Rustdoc
|
||||||
@@ -93,36 +95,24 @@ jobs:
|
|||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
- os: ubuntu-latest
|
- os: ubuntu-latest
|
||||||
rust: latest
|
rust: 1.78.0
|
||||||
- os: windows-latest
|
- os: windows-latest
|
||||||
rust: latest
|
rust: 1.78.0
|
||||||
- os: macos-latest
|
- os: macos-latest
|
||||||
rust: latest
|
rust: 1.78.0
|
||||||
|
|
||||||
# Minimum Supported Rust Version
|
# Minimum Supported Rust Version = 1.77.0
|
||||||
- os: ubuntu-latest
|
- os: ubuntu-latest
|
||||||
rust: minimum
|
rust: 1.77.0
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
steps:
|
steps:
|
||||||
- run:
|
|
||||||
echo "RUSTUP_TOOLCHAIN=$MSRV" >> $GITHUB_ENV
|
|
||||||
shell: bash
|
|
||||||
if: matrix.rust == 'minimum'
|
|
||||||
- run:
|
|
||||||
echo "RUSTUP_TOOLCHAIN=$RUST_VERSION" >> $GITHUB_ENV
|
|
||||||
shell: bash
|
|
||||||
if: matrix.rust == 'latest'
|
|
||||||
|
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
show-progress: false
|
show-progress: false
|
||||||
persist-credentials: false
|
|
||||||
|
|
||||||
- name: Install Rust ${{ matrix.rust }}
|
- name: Install Rust ${{ matrix.rust }}
|
||||||
run: rustup toolchain install --profile minimal $RUSTUP_TOOLCHAIN
|
run: rustup toolchain install --profile minimal ${{ matrix.rust }}
|
||||||
shell: bash
|
- run: rustup override set ${{ matrix.rust }}
|
||||||
- run: rustup override set $RUSTUP_TOOLCHAIN
|
|
||||||
shell: bash
|
|
||||||
|
|
||||||
- name: Cache rust cargo artifacts
|
- name: Cache rust cargo artifacts
|
||||||
uses: swatinem/rust-cache@v2
|
uses: swatinem/rust-cache@v2
|
||||||
@@ -155,13 +145,12 @@ jobs:
|
|||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
show-progress: false
|
show-progress: false
|
||||||
persist-credentials: false
|
|
||||||
|
|
||||||
- name: Cache rust cargo artifacts
|
- name: Cache rust cargo artifacts
|
||||||
uses: swatinem/rust-cache@v2
|
uses: swatinem/rust-cache@v2
|
||||||
|
|
||||||
- name: Build C library
|
- name: Build C library
|
||||||
run: cargo build -p deltachat_ffi
|
run: cargo build -p deltachat_ffi --features jsonrpc
|
||||||
|
|
||||||
- name: Upload C library
|
- name: Upload C library
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
@@ -180,7 +169,6 @@ jobs:
|
|||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
show-progress: false
|
show-progress: false
|
||||||
persist-credentials: false
|
|
||||||
|
|
||||||
- name: Cache rust cargo artifacts
|
- name: Cache rust cargo artifacts
|
||||||
uses: swatinem/rust-cache@v2
|
uses: swatinem/rust-cache@v2
|
||||||
@@ -202,7 +190,6 @@ jobs:
|
|||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
show-progress: false
|
show-progress: false
|
||||||
persist-credentials: false
|
|
||||||
|
|
||||||
- name: Install tox
|
- name: Install tox
|
||||||
run: pip install tox
|
run: pip install tox
|
||||||
@@ -222,7 +209,7 @@ jobs:
|
|||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
# Currently used Rust version.
|
# Currently used Python version.
|
||||||
- os: ubuntu-latest
|
- os: ubuntu-latest
|
||||||
python: 3.13
|
python: 3.13
|
||||||
- os: macos-latest
|
- os: macos-latest
|
||||||
@@ -234,18 +221,17 @@ jobs:
|
|||||||
- os: macos-latest
|
- os: macos-latest
|
||||||
python: pypy3.10
|
python: pypy3.10
|
||||||
|
|
||||||
# Minimum Supported Python Version = 3.8
|
# Minimum Supported Python Version = 3.7
|
||||||
# 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.8
|
python: 3.7
|
||||||
|
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
show-progress: false
|
show-progress: false
|
||||||
persist-credentials: false
|
|
||||||
|
|
||||||
- name: Download libdeltachat.a
|
- name: Download libdeltachat.a
|
||||||
uses: actions/download-artifact@v4
|
uses: actions/download-artifact@v4
|
||||||
@@ -257,13 +243,14 @@ jobs:
|
|||||||
uses: actions/setup-python@v5
|
uses: actions/setup-python@v5
|
||||||
with:
|
with:
|
||||||
python-version: ${{ matrix.python }}
|
python-version: ${{ matrix.python }}
|
||||||
|
allow-prereleases: true
|
||||||
|
|
||||||
- name: Install tox
|
- name: Install tox
|
||||||
run: pip install tox
|
run: pip install tox
|
||||||
|
|
||||||
- name: Run python tests
|
- name: Run python tests
|
||||||
env:
|
env:
|
||||||
CHATMAIL_DOMAIN: ${{ vars.CHATMAIL_DOMAIN }}
|
CHATMAIL_DOMAIN: ${{ secrets.CHATMAIL_DOMAIN }}
|
||||||
DCC_RS_TARGET: debug
|
DCC_RS_TARGET: debug
|
||||||
DCC_RS_DEV: ${{ github.workspace }}
|
DCC_RS_DEV: ${{ github.workspace }}
|
||||||
working-directory: python
|
working-directory: python
|
||||||
@@ -289,21 +276,21 @@ jobs:
|
|||||||
- os: macos-latest
|
- os: macos-latest
|
||||||
python: pypy3.10
|
python: pypy3.10
|
||||||
|
|
||||||
# Minimum Supported Python Version = 3.8
|
# Minimum Supported Python Version = 3.7
|
||||||
- os: ubuntu-latest
|
- os: ubuntu-latest
|
||||||
python: 3.8
|
python: 3.7
|
||||||
|
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
show-progress: false
|
show-progress: false
|
||||||
persist-credentials: false
|
|
||||||
|
|
||||||
- name: Install python
|
- name: Install python
|
||||||
uses: actions/setup-python@v5
|
uses: actions/setup-python@v5
|
||||||
with:
|
with:
|
||||||
python-version: ${{ matrix.python }}
|
python-version: ${{ matrix.python }}
|
||||||
|
allow-prereleases: true
|
||||||
|
|
||||||
- name: Install tox
|
- name: Install tox
|
||||||
run: pip install tox
|
run: pip install tox
|
||||||
@@ -329,6 +316,6 @@ jobs:
|
|||||||
|
|
||||||
- name: Run deltachat-rpc-client tests
|
- name: Run deltachat-rpc-client tests
|
||||||
env:
|
env:
|
||||||
CHATMAIL_DOMAIN: ${{ vars.CHATMAIL_DOMAIN }}
|
CHATMAIL_DOMAIN: ${{ secrets.CHATMAIL_DOMAIN }}
|
||||||
working-directory: deltachat-rpc-client
|
working-directory: deltachat-rpc-client
|
||||||
run: tox -e py
|
run: tox -e py
|
||||||
|
|||||||
22
.github/workflows/deltachat-rpc-server.yml
vendored
22
.github/workflows/deltachat-rpc-server.yml
vendored
@@ -17,8 +17,6 @@ on:
|
|||||||
release:
|
release:
|
||||||
types: [published]
|
types: [published]
|
||||||
|
|
||||||
permissions: {}
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
# Build a version statically linked against musl libc
|
# Build a version statically linked against musl libc
|
||||||
# to avoid problems with glibc version incompatibility.
|
# to avoid problems with glibc version incompatibility.
|
||||||
@@ -33,8 +31,8 @@ jobs:
|
|||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
show-progress: false
|
show-progress: false
|
||||||
persist-credentials: false
|
|
||||||
- uses: DeterminateSystems/nix-installer-action@main
|
- uses: DeterminateSystems/nix-installer-action@main
|
||||||
|
- uses: DeterminateSystems/magic-nix-cache-action@main
|
||||||
|
|
||||||
- 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
|
||||||
@@ -57,8 +55,8 @@ jobs:
|
|||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
show-progress: false
|
show-progress: false
|
||||||
persist-credentials: false
|
|
||||||
- uses: DeterminateSystems/nix-installer-action@main
|
- uses: DeterminateSystems/nix-installer-action@main
|
||||||
|
- uses: DeterminateSystems/magic-nix-cache-action@main
|
||||||
|
|
||||||
- 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 }}
|
||||||
@@ -82,7 +80,6 @@ jobs:
|
|||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
show-progress: false
|
show-progress: false
|
||||||
persist-credentials: false
|
|
||||||
|
|
||||||
- name: Setup rust target
|
- name: Setup rust target
|
||||||
run: rustup target add ${{ matrix.arch }}-apple-darwin
|
run: rustup target add ${{ matrix.arch }}-apple-darwin
|
||||||
@@ -108,8 +105,8 @@ jobs:
|
|||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
show-progress: false
|
show-progress: false
|
||||||
persist-credentials: false
|
|
||||||
- uses: DeterminateSystems/nix-installer-action@main
|
- uses: DeterminateSystems/nix-installer-action@main
|
||||||
|
- uses: DeterminateSystems/magic-nix-cache-action@main
|
||||||
|
|
||||||
- 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
|
||||||
@@ -135,8 +132,8 @@ jobs:
|
|||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
show-progress: false
|
show-progress: false
|
||||||
persist-credentials: false
|
|
||||||
- uses: DeterminateSystems/nix-installer-action@main
|
- uses: DeterminateSystems/nix-installer-action@main
|
||||||
|
- uses: DeterminateSystems/magic-nix-cache-action@main
|
||||||
|
|
||||||
- name: Download Linux aarch64 binary
|
- name: Download Linux aarch64 binary
|
||||||
uses: actions/download-artifact@v4
|
uses: actions/download-artifact@v4
|
||||||
@@ -248,10 +245,6 @@ jobs:
|
|||||||
cp result/*.whl dist/
|
cp result/*.whl dist/
|
||||||
nix build .#deltachat-rpc-server-win32-wheel
|
nix build .#deltachat-rpc-server-win32-wheel
|
||||||
cp result/*.whl dist/
|
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
|
nix build .#deltachat-rpc-server-source
|
||||||
cp result/*.tar.gz dist/
|
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
|
||||||
@@ -265,9 +258,8 @@ jobs:
|
|||||||
if: github.event_name == 'release'
|
if: github.event_name == 'release'
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
|
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
|
||||||
REF_NAME: ${{ github.ref_name }}
|
|
||||||
run: |
|
run: |
|
||||||
gh release upload "$REF_NAME" \
|
gh release upload ${{ github.ref_name }} \
|
||||||
--repo ${{ github.repository }} \
|
--repo ${{ github.repository }} \
|
||||||
bin/* dist/*
|
bin/* dist/*
|
||||||
|
|
||||||
@@ -288,7 +280,6 @@ jobs:
|
|||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
show-progress: false
|
show-progress: false
|
||||||
persist-credentials: false
|
|
||||||
- uses: actions/setup-python@v5
|
- uses: actions/setup-python@v5
|
||||||
with:
|
with:
|
||||||
python-version: "3.11"
|
python-version: "3.11"
|
||||||
@@ -394,9 +385,8 @@ jobs:
|
|||||||
if: github.event_name == 'release'
|
if: github.event_name == 'release'
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
|
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
|
||||||
REF_NAME: ${{ github.ref_name }}
|
|
||||||
run: |
|
run: |
|
||||||
gh release upload "$REF_NAME" \
|
gh release upload ${{ github.ref_name }} \
|
||||||
--repo ${{ github.repository }} \
|
--repo ${{ github.repository }} \
|
||||||
deltachat-rpc-server/npm-package/*.tgz
|
deltachat-rpc-server/npm-package/*.tgz
|
||||||
|
|
||||||
|
|||||||
2
.github/workflows/dependabot.yml
vendored
2
.github/workflows/dependabot.yml
vendored
@@ -14,7 +14,7 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- name: Dependabot metadata
|
- name: Dependabot metadata
|
||||||
id: metadata
|
id: metadata
|
||||||
uses: dependabot/fetch-metadata@v2.3.0
|
uses: dependabot/fetch-metadata@v1.1.1
|
||||||
with:
|
with:
|
||||||
github-token: "${{ secrets.GITHUB_TOKEN }}"
|
github-token: "${{ secrets.GITHUB_TOKEN }}"
|
||||||
- name: Approve a PR
|
- name: Approve a PR
|
||||||
|
|||||||
@@ -4,12 +4,10 @@ on:
|
|||||||
release:
|
release:
|
||||||
types: [published]
|
types: [published]
|
||||||
|
|
||||||
permissions: {}
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
pack-module:
|
pack-module:
|
||||||
name: "Publish @deltachat/jsonrpc-client"
|
name: "Publish @deltachat/jsonrpc-client"
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-20.04
|
||||||
permissions:
|
permissions:
|
||||||
id-token: write
|
id-token: write
|
||||||
contents: read
|
contents: read
|
||||||
@@ -17,7 +15,6 @@ jobs:
|
|||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
show-progress: false
|
show-progress: false
|
||||||
persist-credentials: false
|
|
||||||
|
|
||||||
- uses: actions/setup-node@v4
|
- uses: actions/setup-node@v4
|
||||||
with:
|
with:
|
||||||
|
|||||||
8
.github/workflows/jsonrpc.yml
vendored
8
.github/workflows/jsonrpc.yml
vendored
@@ -6,8 +6,6 @@ on:
|
|||||||
pull_request:
|
pull_request:
|
||||||
branches: [main]
|
branches: [main]
|
||||||
|
|
||||||
permissions: {}
|
|
||||||
|
|
||||||
env:
|
env:
|
||||||
CARGO_TERM_COLOR: always
|
CARGO_TERM_COLOR: always
|
||||||
RUST_MIN_STACK: "8388608"
|
RUST_MIN_STACK: "8388608"
|
||||||
@@ -19,7 +17,6 @@ jobs:
|
|||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
show-progress: false
|
show-progress: false
|
||||||
persist-credentials: false
|
|
||||||
- name: Use Node.js 18.x
|
- name: Use Node.js 18.x
|
||||||
uses: actions/setup-node@v4
|
uses: actions/setup-node@v4
|
||||||
with:
|
with:
|
||||||
@@ -36,7 +33,10 @@ jobs:
|
|||||||
working-directory: deltachat-jsonrpc/typescript
|
working-directory: deltachat-jsonrpc/typescript
|
||||||
run: npm run test
|
run: npm run test
|
||||||
env:
|
env:
|
||||||
CHATMAIL_DOMAIN: ${{ vars.CHATMAIL_DOMAIN }}
|
CHATMAIL_DOMAIN: ${{ secrets.CHATMAIL_DOMAIN }}
|
||||||
|
- name: make sure websocket server version still builds
|
||||||
|
working-directory: deltachat-jsonrpc
|
||||||
|
run: cargo build --bin deltachat-jsonrpc-server --features webserver
|
||||||
- name: Run linter
|
- name: Run linter
|
||||||
working-directory: deltachat-jsonrpc/typescript
|
working-directory: deltachat-jsonrpc/typescript
|
||||||
run: npm run prettier:check
|
run: npm run prettier:check
|
||||||
|
|||||||
108
.github/workflows/nix.yml
vendored
108
.github/workflows/nix.yml
vendored
@@ -1,108 +0,0 @@
|
|||||||
name: Test Nix flake
|
|
||||||
|
|
||||||
on:
|
|
||||||
pull_request:
|
|
||||||
paths:
|
|
||||||
- flake.nix
|
|
||||||
- flake.lock
|
|
||||||
push:
|
|
||||||
paths:
|
|
||||||
- flake.nix
|
|
||||||
- flake.lock
|
|
||||||
branches:
|
|
||||||
- main
|
|
||||||
|
|
||||||
permissions: {}
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
format:
|
|
||||||
name: check flake formatting
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v4
|
|
||||||
with:
|
|
||||||
show-progress: false
|
|
||||||
persist-credentials: false
|
|
||||||
- uses: DeterminateSystems/nix-installer-action@main
|
|
||||||
- run: nix fmt
|
|
||||||
|
|
||||||
# Check that formatting does not change anything.
|
|
||||||
- run: git diff --exit-code
|
|
||||||
|
|
||||||
build:
|
|
||||||
name: nix build
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
strategy:
|
|
||||||
fail-fast: false
|
|
||||||
matrix:
|
|
||||||
installable:
|
|
||||||
# Ensure `nix develop` will work.
|
|
||||||
- devShells.x86_64-linux.default
|
|
||||||
|
|
||||||
- deltachat-python
|
|
||||||
- deltachat-repl
|
|
||||||
- deltachat-repl-aarch64-linux
|
|
||||||
- deltachat-repl-arm64-v8a-android
|
|
||||||
- deltachat-repl-armeabi-v7a-android
|
|
||||||
- deltachat-repl-armv6l-linux
|
|
||||||
- deltachat-repl-armv7l-linux
|
|
||||||
- deltachat-repl-i686-linux
|
|
||||||
- deltachat-repl-win32
|
|
||||||
- deltachat-repl-win64
|
|
||||||
- deltachat-repl-x86_64-linux
|
|
||||||
- deltachat-rpc-client
|
|
||||||
- deltachat-rpc-server
|
|
||||||
- deltachat-rpc-server-aarch64-linux
|
|
||||||
- deltachat-rpc-server-aarch64-linux-wheel
|
|
||||||
- deltachat-rpc-server-arm64-v8a-android
|
|
||||||
- deltachat-rpc-server-arm64-v8a-android-wheel
|
|
||||||
- deltachat-rpc-server-armeabi-v7a-android
|
|
||||||
- deltachat-rpc-server-armeabi-v7a-android-wheel
|
|
||||||
- deltachat-rpc-server-armv6l-linux
|
|
||||||
- deltachat-rpc-server-armv6l-linux-wheel
|
|
||||||
- deltachat-rpc-server-armv7l-linux
|
|
||||||
- deltachat-rpc-server-armv7l-linux-wheel
|
|
||||||
- deltachat-rpc-server-i686-linux
|
|
||||||
- deltachat-rpc-server-i686-linux-wheel
|
|
||||||
- deltachat-rpc-server-source
|
|
||||||
- deltachat-rpc-server-win32
|
|
||||||
- deltachat-rpc-server-win32-wheel
|
|
||||||
- deltachat-rpc-server-win64
|
|
||||||
- deltachat-rpc-server-win64-wheel
|
|
||||||
- deltachat-rpc-server-x86_64-linux
|
|
||||||
- deltachat-rpc-server-x86_64-linux-wheel
|
|
||||||
- docs
|
|
||||||
- libdeltachat
|
|
||||||
- python-docs
|
|
||||||
|
|
||||||
# Fails to build
|
|
||||||
#- deltachat-repl-x86_64-android
|
|
||||||
#- deltachat-repl-x86-android
|
|
||||||
#- deltachat-rpc-server-x86_64-android
|
|
||||||
#- deltachat-rpc-server-x86-android
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v4
|
|
||||||
with:
|
|
||||||
show-progress: false
|
|
||||||
persist-credentials: false
|
|
||||||
- uses: DeterminateSystems/nix-installer-action@main
|
|
||||||
- run: nix build .#${{ matrix.installable }}
|
|
||||||
|
|
||||||
build-macos:
|
|
||||||
name: nix build on macOS
|
|
||||||
runs-on: macos-latest
|
|
||||||
strategy:
|
|
||||||
fail-fast: false
|
|
||||||
matrix:
|
|
||||||
installable:
|
|
||||||
- deltachat-rpc-server-aarch64-darwin
|
|
||||||
|
|
||||||
# Fails to bulid
|
|
||||||
# - deltachat-rpc-server-x86_64-darwin
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v4
|
|
||||||
with:
|
|
||||||
show-progress: false
|
|
||||||
persist-credentials: false
|
|
||||||
- uses: DeterminateSystems/nix-installer-action@main
|
|
||||||
- run: nix build .#${{ matrix.installable }}
|
|
||||||
41
.github/workflows/node-docs.yml
vendored
Normal file
41
.github/workflows/node-docs.yml
vendored
Normal file
@@ -0,0 +1,41 @@
|
|||||||
|
# GitHub Actions workflow to build
|
||||||
|
# Node.js bindings documentation
|
||||||
|
# and upload it to the web server.
|
||||||
|
# Built documentation is available at <https://js.delta.chat/>
|
||||||
|
|
||||||
|
name: Generate & upload node.js documentation
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
generate:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
show-progress: false
|
||||||
|
|
||||||
|
- name: Use Node.js 18.x
|
||||||
|
uses: actions/setup-node@v4
|
||||||
|
with:
|
||||||
|
node-version: 18.x
|
||||||
|
|
||||||
|
- name: npm install and generate documentation
|
||||||
|
working-directory: node
|
||||||
|
run: |
|
||||||
|
npm i --ignore-scripts
|
||||||
|
npx typedoc
|
||||||
|
mv docs js
|
||||||
|
|
||||||
|
- name: Upload
|
||||||
|
uses: horochx/deploy-via-scp@v1.0.1
|
||||||
|
with:
|
||||||
|
user: ${{ secrets.USERNAME }}
|
||||||
|
key: ${{ secrets.KEY }}
|
||||||
|
host: "delta.chat"
|
||||||
|
port: 22
|
||||||
|
local: "node/js"
|
||||||
|
remote: "/var/www/html/"
|
||||||
235
.github/workflows/node-package.yml
vendored
Normal file
235
.github/workflows/node-package.yml
vendored
Normal file
@@ -0,0 +1,235 @@
|
|||||||
|
name: "node.js build"
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
push:
|
||||||
|
tags:
|
||||||
|
- "*"
|
||||||
|
- "!py-*"
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
prebuild:
|
||||||
|
name: Prebuild
|
||||||
|
runs-on: ${{ matrix.os }}
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
os: [macos-latest, windows-latest]
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
show-progress: false
|
||||||
|
- uses: actions/setup-node@v4
|
||||||
|
with:
|
||||||
|
node-version: "18"
|
||||||
|
- name: System info
|
||||||
|
run: |
|
||||||
|
rustc -vV
|
||||||
|
rustup -vV
|
||||||
|
cargo -vV
|
||||||
|
npm --version
|
||||||
|
node --version
|
||||||
|
|
||||||
|
- name: Cache node modules
|
||||||
|
uses: actions/cache@v4
|
||||||
|
with:
|
||||||
|
path: |
|
||||||
|
${{ env.APPDATA }}/npm-cache
|
||||||
|
~/.npm
|
||||||
|
key: ${{ matrix.os }}-node-${{ hashFiles('**/package.json') }}
|
||||||
|
|
||||||
|
- name: Cache cargo index
|
||||||
|
uses: actions/cache@v4
|
||||||
|
with:
|
||||||
|
path: |
|
||||||
|
~/.cargo/registry/
|
||||||
|
~/.cargo/git
|
||||||
|
target
|
||||||
|
key: ${{ matrix.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }}-2
|
||||||
|
|
||||||
|
- name: Install dependencies & build
|
||||||
|
if: steps.cache.outputs.cache-hit != 'true'
|
||||||
|
working-directory: node
|
||||||
|
run: npm install --verbose
|
||||||
|
|
||||||
|
- name: Build Prebuild
|
||||||
|
working-directory: node
|
||||||
|
run: |
|
||||||
|
npm run prebuildify
|
||||||
|
tar -zcvf "${{ matrix.os }}.tar.gz" -C prebuilds .
|
||||||
|
|
||||||
|
- name: Upload Prebuild
|
||||||
|
uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: ${{ matrix.os }}
|
||||||
|
path: node/${{ matrix.os }}.tar.gz
|
||||||
|
|
||||||
|
prebuild-linux:
|
||||||
|
name: Prebuild Linux
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
# Build Linux prebuilds inside a container with old glibc for backwards compatibility.
|
||||||
|
# Debian 10 contained glibc 2.28: https://packages.debian.org/buster/libc6
|
||||||
|
container: debian:10
|
||||||
|
steps:
|
||||||
|
# Working directory is owned by 1001:1001 by default.
|
||||||
|
# Change it to our user.
|
||||||
|
- name: Change working directory owner
|
||||||
|
run: chown root:root .
|
||||||
|
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
show-progress: false
|
||||||
|
- uses: actions/setup-node@v4
|
||||||
|
with:
|
||||||
|
node-version: "18"
|
||||||
|
- run: apt-get update
|
||||||
|
|
||||||
|
# Python is needed for node-gyp
|
||||||
|
- name: Install curl, python and compilers
|
||||||
|
run: apt-get install -y curl build-essential python3
|
||||||
|
- name: Install Rust
|
||||||
|
run: |
|
||||||
|
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
|
||||||
|
echo "$HOME/.cargo/bin" >> $GITHUB_PATH
|
||||||
|
- name: System info
|
||||||
|
run: |
|
||||||
|
rustc -vV
|
||||||
|
rustup -vV
|
||||||
|
cargo -vV
|
||||||
|
npm --version
|
||||||
|
node --version
|
||||||
|
|
||||||
|
- name: Cache node modules
|
||||||
|
uses: actions/cache@v4
|
||||||
|
with:
|
||||||
|
path: |
|
||||||
|
${{ env.APPDATA }}/npm-cache
|
||||||
|
~/.npm
|
||||||
|
key: ${{ matrix.os }}-node-${{ hashFiles('**/package.json') }}
|
||||||
|
|
||||||
|
- name: Cache cargo index
|
||||||
|
uses: actions/cache@v4
|
||||||
|
with:
|
||||||
|
path: |
|
||||||
|
~/.cargo/registry/
|
||||||
|
~/.cargo/git
|
||||||
|
target
|
||||||
|
key: ${{ matrix.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }}-2
|
||||||
|
|
||||||
|
- name: Install dependencies & build
|
||||||
|
if: steps.cache.outputs.cache-hit != 'true'
|
||||||
|
working-directory: node
|
||||||
|
run: npm install --verbose
|
||||||
|
|
||||||
|
- name: Build Prebuild
|
||||||
|
working-directory: node
|
||||||
|
run: |
|
||||||
|
npm run prebuildify
|
||||||
|
tar -zcvf "linux.tar.gz" -C prebuilds .
|
||||||
|
|
||||||
|
- name: Upload Prebuild
|
||||||
|
uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: linux
|
||||||
|
path: node/linux.tar.gz
|
||||||
|
|
||||||
|
pack-module:
|
||||||
|
needs: [prebuild, prebuild-linux]
|
||||||
|
name: Package deltachat-node and upload to download.delta.chat
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Install tree
|
||||||
|
run: sudo apt install tree
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
show-progress: false
|
||||||
|
- uses: actions/setup-node@v4
|
||||||
|
with:
|
||||||
|
node-version: "18"
|
||||||
|
- name: Get tag
|
||||||
|
id: tag
|
||||||
|
uses: dawidd6/action-get-tag@v1
|
||||||
|
continue-on-error: true
|
||||||
|
- name: Get Pull Request ID
|
||||||
|
id: prepare
|
||||||
|
run: |
|
||||||
|
tag=${{ steps.tag.outputs.tag }}
|
||||||
|
if [ -z "$tag" ]; then
|
||||||
|
node -e "console.log('DELTACHAT_NODE_TAR_GZ=deltachat-node-' + '${{ github.ref }}'.split('/')[2] + '.tar.gz')" >> $GITHUB_ENV
|
||||||
|
else
|
||||||
|
echo "DELTACHAT_NODE_TAR_GZ=deltachat-node-${{ steps.tag.outputs.tag }}.tar.gz" >> $GITHUB_ENV
|
||||||
|
echo "No preview will be uploaded this time, but the $tag release"
|
||||||
|
fi
|
||||||
|
- name: System info
|
||||||
|
run: |
|
||||||
|
rustc -vV
|
||||||
|
rustup -vV
|
||||||
|
cargo -vV
|
||||||
|
npm --version
|
||||||
|
node --version
|
||||||
|
echo $DELTACHAT_NODE_TAR_GZ
|
||||||
|
- name: Download Linux prebuild
|
||||||
|
uses: actions/download-artifact@v4
|
||||||
|
with:
|
||||||
|
name: linux
|
||||||
|
- name: Download macOS prebuild
|
||||||
|
uses: actions/download-artifact@v4
|
||||||
|
with:
|
||||||
|
name: macos-latest
|
||||||
|
- name: Download Windows prebuild
|
||||||
|
uses: actions/download-artifact@v4
|
||||||
|
with:
|
||||||
|
name: windows-latest
|
||||||
|
- shell: bash
|
||||||
|
run: |
|
||||||
|
mkdir node/prebuilds
|
||||||
|
tar -xvzf linux.tar.gz -C node/prebuilds
|
||||||
|
tar -xvzf macos-latest.tar.gz -C node/prebuilds
|
||||||
|
tar -xvzf windows-latest.tar.gz -C node/prebuilds
|
||||||
|
tree node/prebuilds
|
||||||
|
rm -f linux.tar.gz macos-latest.tar.gz windows-latest.tar.gz
|
||||||
|
- name: Install dependencies without running scripts
|
||||||
|
run: |
|
||||||
|
npm install --ignore-scripts
|
||||||
|
- name: Build constants
|
||||||
|
run: |
|
||||||
|
npm run build:core:constants
|
||||||
|
- name: Build TypeScript part
|
||||||
|
run: |
|
||||||
|
npm run build:bindings:ts
|
||||||
|
- name: Package
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
mv node/README.md README.md
|
||||||
|
npm pack .
|
||||||
|
ls -lah
|
||||||
|
mv $(find deltachat-node-*) $DELTACHAT_NODE_TAR_GZ
|
||||||
|
- name: Upload prebuild
|
||||||
|
uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: deltachat-node.tgz
|
||||||
|
path: ${{ env.DELTACHAT_NODE_TAR_GZ }}
|
||||||
|
# Upload to download.delta.chat/node/preview/
|
||||||
|
- name: Upload deltachat-node preview to download.delta.chat/node/preview/
|
||||||
|
if: ${{ ! steps.tag.outputs.tag }}
|
||||||
|
id: upload-preview
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
echo -e "${{ secrets.SSH_KEY }}" >__TEMP_INPUT_KEY_FILE
|
||||||
|
chmod 600 __TEMP_INPUT_KEY_FILE
|
||||||
|
scp -o StrictHostKeyChecking=no -v -i __TEMP_INPUT_KEY_FILE -P "22" -r $DELTACHAT_NODE_TAR_GZ "${{ secrets.USERNAME }}"@"download.delta.chat":"/var/www/html/download/node/preview/"
|
||||||
|
continue-on-error: true
|
||||||
|
- name: Post links to details
|
||||||
|
if: steps.upload-preview.outcome == 'success'
|
||||||
|
run: node ./node/scripts/postLinksToDetails.js
|
||||||
|
env:
|
||||||
|
URL: preview/${{ env.DELTACHAT_NODE_TAR_GZ }}
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
# Upload to download.delta.chat/node/
|
||||||
|
- name: Upload deltachat-node build to download.delta.chat/node/
|
||||||
|
if: ${{ steps.tag.outputs.tag }}
|
||||||
|
id: upload
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
echo -e "${{ secrets.SSH_KEY }}" >__TEMP_INPUT_KEY_FILE
|
||||||
|
chmod 600 __TEMP_INPUT_KEY_FILE
|
||||||
|
scp -o StrictHostKeyChecking=no -v -i __TEMP_INPUT_KEY_FILE -P "22" -r $DELTACHAT_NODE_TAR_GZ "${{ secrets.USERNAME }}"@"download.delta.chat":"/var/www/html/download/node/"
|
||||||
68
.github/workflows/node-tests.yml
vendored
Normal file
68
.github/workflows/node-tests.yml
vendored
Normal file
@@ -0,0 +1,68 @@
|
|||||||
|
# GitHub Actions workflow
|
||||||
|
# to test Node.js bindings.
|
||||||
|
|
||||||
|
name: "node.js tests"
|
||||||
|
|
||||||
|
# Cancel previously started workflow runs
|
||||||
|
# when the branch is updated.
|
||||||
|
concurrency:
|
||||||
|
group: ${{ github.workflow }}-${{ github.ref }}
|
||||||
|
cancel-in-progress: true
|
||||||
|
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
tests:
|
||||||
|
name: Tests
|
||||||
|
runs-on: ${{ matrix.os }}
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
show-progress: false
|
||||||
|
- uses: actions/setup-node@v4
|
||||||
|
with:
|
||||||
|
node-version: "18"
|
||||||
|
- name: System info
|
||||||
|
run: |
|
||||||
|
rustc -vV
|
||||||
|
rustup -vV
|
||||||
|
cargo -vV
|
||||||
|
npm --version
|
||||||
|
node --version
|
||||||
|
|
||||||
|
- name: Cache node modules
|
||||||
|
uses: actions/cache@v4
|
||||||
|
with:
|
||||||
|
path: |
|
||||||
|
${{ env.APPDATA }}/npm-cache
|
||||||
|
~/.npm
|
||||||
|
key: ${{ matrix.os }}-node-${{ hashFiles('**/package.json') }}
|
||||||
|
|
||||||
|
- name: Cache cargo index
|
||||||
|
uses: actions/cache@v4
|
||||||
|
with:
|
||||||
|
path: |
|
||||||
|
~/.cargo/registry/
|
||||||
|
~/.cargo/git
|
||||||
|
target
|
||||||
|
key: ${{ matrix.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }}-2
|
||||||
|
|
||||||
|
- name: Install dependencies & build
|
||||||
|
if: steps.cache.outputs.cache-hit != 'true'
|
||||||
|
working-directory: node
|
||||||
|
run: npm install --verbose
|
||||||
|
|
||||||
|
- name: Test
|
||||||
|
timeout-minutes: 10
|
||||||
|
working-directory: node
|
||||||
|
run: npm run test
|
||||||
|
env:
|
||||||
|
CHATMAIL_DOMAIN: ${{ secrets.CHATMAIL_DOMAIN }}
|
||||||
|
NODE_OPTIONS: "--force-node-api-uncaught-exceptions-policy=true"
|
||||||
@@ -5,8 +5,6 @@ on:
|
|||||||
release:
|
release:
|
||||||
types: [published]
|
types: [published]
|
||||||
|
|
||||||
permissions: {}
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
name: Build distribution
|
name: Build distribution
|
||||||
@@ -16,7 +14,6 @@ jobs:
|
|||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
show-progress: false
|
show-progress: false
|
||||||
persist-credentials: false
|
|
||||||
- name: Install pypa/build
|
- name: Install pypa/build
|
||||||
run: python3 -m pip install build
|
run: python3 -m pip install build
|
||||||
- name: Build a binary wheel and a source tarball
|
- name: Build a binary wheel and a source tarball
|
||||||
|
|||||||
4
.github/workflows/repl.yml
vendored
4
.github/workflows/repl.yml
vendored
@@ -7,8 +7,6 @@ name: Build Windows REPL .exe
|
|||||||
on:
|
on:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
permissions: {}
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build_repl:
|
build_repl:
|
||||||
name: Build REPL example
|
name: Build REPL example
|
||||||
@@ -17,8 +15,8 @@ jobs:
|
|||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
show-progress: false
|
show-progress: false
|
||||||
persist-credentials: false
|
|
||||||
- uses: DeterminateSystems/nix-installer-action@main
|
- uses: DeterminateSystems/nix-installer-action@main
|
||||||
|
- uses: DeterminateSystems/magic-nix-cache-action@main
|
||||||
- name: Build
|
- name: Build
|
||||||
run: nix build .#deltachat-repl-win64
|
run: nix build .#deltachat-repl-win64
|
||||||
- name: Upload binary
|
- name: Upload binary
|
||||||
|
|||||||
10
.github/workflows/upload-docs.yml
vendored
10
.github/workflows/upload-docs.yml
vendored
@@ -6,8 +6,6 @@ on:
|
|||||||
- main
|
- main
|
||||||
- build_jsonrpc_docs_ci
|
- build_jsonrpc_docs_ci
|
||||||
|
|
||||||
permissions: {}
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build-rs:
|
build-rs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
@@ -16,7 +14,6 @@ jobs:
|
|||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
show-progress: false
|
show-progress: false
|
||||||
persist-credentials: false
|
|
||||||
- name: Build the documentation with cargo
|
- name: Build the documentation with cargo
|
||||||
run: |
|
run: |
|
||||||
cargo doc --package deltachat --no-deps --document-private-items
|
cargo doc --package deltachat --no-deps --document-private-items
|
||||||
@@ -34,9 +31,9 @@ jobs:
|
|||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
show-progress: false
|
show-progress: 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: DeterminateSystems/nix-installer-action@main
|
- uses: DeterminateSystems/nix-installer-action@main
|
||||||
|
- uses: DeterminateSystems/magic-nix-cache-action@main
|
||||||
- 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
|
||||||
@@ -53,9 +50,9 @@ jobs:
|
|||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
show-progress: false
|
show-progress: 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: DeterminateSystems/nix-installer-action@main
|
- uses: DeterminateSystems/nix-installer-action@main
|
||||||
|
- uses: DeterminateSystems/magic-nix-cache-action@main
|
||||||
- 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
|
||||||
@@ -75,10 +72,9 @@ jobs:
|
|||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
show-progress: false
|
show-progress: 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@v4
|
uses: actions/setup-node@v2
|
||||||
with:
|
with:
|
||||||
node-version: '18'
|
node-version: '18'
|
||||||
- name: npm install
|
- name: npm install
|
||||||
|
|||||||
3
.github/workflows/upload-ffi-docs.yml
vendored
3
.github/workflows/upload-ffi-docs.yml
vendored
@@ -9,8 +9,6 @@ on:
|
|||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
|
|
||||||
permissions: {}
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
@@ -19,7 +17,6 @@ jobs:
|
|||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
show-progress: false
|
show-progress: false
|
||||||
persist-credentials: false
|
|
||||||
- name: Build the documentation with cargo
|
- name: Build the documentation with cargo
|
||||||
run: |
|
run: |
|
||||||
cargo doc --package deltachat_ffi --no-deps
|
cargo doc --package deltachat_ffi --no-deps
|
||||||
|
|||||||
31
.github/workflows/zizmor-scan.yml
vendored
31
.github/workflows/zizmor-scan.yml
vendored
@@ -1,31 +0,0 @@
|
|||||||
name: GitHub Actions Security Analysis with zizmor
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches: ["main"]
|
|
||||||
pull_request:
|
|
||||||
branches: ["**"]
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
zizmor:
|
|
||||||
name: zizmor latest via PyPI
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
permissions:
|
|
||||||
security-events: write
|
|
||||||
steps:
|
|
||||||
- name: Checkout repository
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
with:
|
|
||||||
persist-credentials: false
|
|
||||||
|
|
||||||
- name: Install the latest version of uv
|
|
||||||
uses: astral-sh/setup-uv@v5
|
|
||||||
|
|
||||||
- name: Run zizmor
|
|
||||||
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
|
|
||||||
4
.gitignore
vendored
4
.gitignore
vendored
@@ -1,9 +1,7 @@
|
|||||||
target/
|
/target
|
||||||
**/*.rs.bk
|
**/*.rs.bk
|
||||||
/build
|
/build
|
||||||
/dist
|
/dist
|
||||||
/fuzz/fuzz_targets/corpus/
|
|
||||||
/fuzz/fuzz_targets/crashes/
|
|
||||||
|
|
||||||
# ignore vi temporaries
|
# ignore vi temporaries
|
||||||
*~
|
*~
|
||||||
|
|||||||
2450
CHANGELOG.md
2450
CHANGELOG.md
File diff suppressed because it is too large
Load Diff
@@ -27,7 +27,7 @@ add_custom_command(
|
|||||||
PREFIX=${CMAKE_INSTALL_PREFIX}
|
PREFIX=${CMAKE_INSTALL_PREFIX}
|
||||||
LIBDIR=${CMAKE_INSTALL_FULL_LIBDIR}
|
LIBDIR=${CMAKE_INSTALL_FULL_LIBDIR}
|
||||||
INCLUDEDIR=${CMAKE_INSTALL_FULL_INCLUDEDIR}
|
INCLUDEDIR=${CMAKE_INSTALL_FULL_INCLUDEDIR}
|
||||||
${CARGO} build --target-dir=${CMAKE_BINARY_DIR}/target --release
|
${CARGO} build --target-dir=${CMAKE_BINARY_DIR}/target --release --no-default-features --features jsonrpc
|
||||||
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/deltachat-ffi
|
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/deltachat-ffi
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
160
CONTRIBUTING.md
160
CONTRIBUTING.md
@@ -1,122 +1,126 @@
|
|||||||
# Contributing to Delta Chat
|
# Contributing guidelines
|
||||||
|
|
||||||
## Bug reports
|
## Reporting bugs
|
||||||
|
|
||||||
If you found a bug, [report it on GitHub](https://github.com/chatmail/core/issues).
|
If you found a bug, [report it on GitHub](https://github.com/deltachat/deltachat-core-rust/issues).
|
||||||
If the bug you found is specific to
|
If the bug you found is specific to
|
||||||
[Android](https://github.com/deltachat/deltachat-android/issues),
|
[Android](https://github.com/deltachat/deltachat-android/issues),
|
||||||
[iOS](https://github.com/deltachat/deltachat-ios/issues) or
|
[iOS](https://github.com/deltachat/deltachat-ios/issues) or
|
||||||
[Desktop](https://github.com/deltachat/deltachat-desktop/issues),
|
[Desktop](https://github.com/deltachat/deltachat-desktop/issues),
|
||||||
report it to the corresponding repository.
|
report it to the corresponding repository.
|
||||||
|
|
||||||
## Feature proposals
|
## Proposing features
|
||||||
|
|
||||||
If you have a feature request, create a new topic on the [forum](https://support.delta.chat/).
|
If you have a feature request, create a new topic on the [forum](https://support.delta.chat/).
|
||||||
|
|
||||||
## Code contributions
|
## Contributing code
|
||||||
|
|
||||||
If you want to contribute a code, follow this guide.
|
If you want to contribute a code, [open a Pull Request](https://github.com/deltachat/deltachat-core-rust/pulls).
|
||||||
|
|
||||||
1. **Select an issue to work on.**
|
If you have write access to the repository,
|
||||||
|
push a branch named `<username>/<feature>`
|
||||||
|
so it is clear who is responsible for the branch,
|
||||||
|
and open a PR proposing to merge the change.
|
||||||
|
Otherwise fork the repository and create a branch in your fork.
|
||||||
|
|
||||||
If you have an write access to the repository, assign the issue to yourself.
|
You can find the list of good first issues
|
||||||
Otherwise state in the comment that you are going to work on the issue
|
and a link to this guide
|
||||||
to avoid duplicate work.
|
on the contributing page: <https://github.com/deltachat/deltachat-core-rust/contribute>
|
||||||
|
|
||||||
If the issue does not exist yet, create it first.
|
### Coding conventions
|
||||||
|
|
||||||
2. **Write the code.**
|
We format the code using `rustfmt`. Run `cargo fmt` prior to committing the code.
|
||||||
|
Run `scripts/clippy.sh` to check the code for common mistakes with [Clippy].
|
||||||
|
|
||||||
Follow the [coding conventions](STYLE.md) when writing the code.
|
Commit messages follow the [Conventional Commits] notation.
|
||||||
|
We use [git-cliff] to generate the changelog from commit messages before the release.
|
||||||
|
|
||||||
3. **Commit the code.**
|
With **`git cliff --unreleased`**, you can check how the changelog entry for your commit will look.
|
||||||
|
|
||||||
If you have write access to the repository,
|
The following prefix types are used:
|
||||||
push a branch named `<username>/<feature>`
|
- `feat`: Features, e.g. "feat: Pause IO for BackupProvider". If you are unsure what's the category of your commit, you can often just use `feat`.
|
||||||
so it is clear who is responsible for the branch,
|
- `fix`: Bug fixes, e.g. "fix: delete `smtp` rows when message sending is cancelled"
|
||||||
and open a PR proposing to merge the change.
|
- `api`: API changes, e.g. "api(rust): add `get_msg_read_receipts(context, msg_id)`"
|
||||||
Otherwise fork the repository and create a branch in your fork.
|
- `refactor`: Refactorings, e.g. "refactor: iterate over `msg_ids` without `.iter()`"
|
||||||
|
- `perf`: Performance improvements, e.g. "perf: improve SQLite performance with `PRAGMA synchronous=normal`"
|
||||||
|
- `test`: Test changes and improvements to the testing framework.
|
||||||
|
- `build`: Build system and tool configuration changes, e.g. "build(git-cliff): put "ci" commits into "CI" section of changelog"
|
||||||
|
- `ci`: CI configuration changes, e.g. "ci: limit artifact retention time for `libdeltachat.a` to 1 day"
|
||||||
|
- `docs`: Documentation changes, e.g. "docs: add contributing guidelines"
|
||||||
|
- `chore`: miscellaneous tasks, e.g. "chore: add `.DS_Store` to `.gitignore`"
|
||||||
|
|
||||||
Commit messages follow the [Conventional Commits] notation.
|
Release preparation commits are marked as "chore(release): prepare for vX.Y.Z".
|
||||||
We use [git-cliff] to generate the changelog from commit messages before the release.
|
|
||||||
|
|
||||||
With **`git cliff --unreleased`**, you can check how the changelog entry for your commit will look.
|
If you intend to squash merge the PR from the web interface,
|
||||||
|
make sure the PR title follows the conventional commits notation
|
||||||
|
as it will end up being a commit title.
|
||||||
|
Otherwise make sure each commit title follows the conventional commit notation.
|
||||||
|
|
||||||
The following prefix types are used:
|
#### Breaking Changes
|
||||||
- `feat`: Features, e.g. "feat: Pause IO for BackupProvider". If you are unsure what's the category of your commit, you can often just use `feat`.
|
|
||||||
- `fix`: Bug fixes, e.g. "fix: delete `smtp` rows when message sending is cancelled"
|
|
||||||
- `api`: API changes, e.g. "api(rust): add `get_msg_read_receipts(context, msg_id)`"
|
|
||||||
- `refactor`: Refactorings, e.g. "refactor: iterate over `msg_ids` without `.iter()`"
|
|
||||||
- `perf`: Performance improvements, e.g. "perf: improve SQLite performance with `PRAGMA synchronous=normal`"
|
|
||||||
- `test`: Test changes and improvements to the testing framework.
|
|
||||||
- `build`: Build system and tool configuration changes, e.g. "build(git-cliff): put "ci" commits into "CI" section of changelog"
|
|
||||||
- `ci`: CI configuration changes, e.g. "ci: limit artifact retention time for `libdeltachat.a` to 1 day"
|
|
||||||
- `docs`: Documentation changes, e.g. "docs: add contributing guidelines"
|
|
||||||
- `chore`: miscellaneous tasks, e.g. "chore: add `.DS_Store` to `.gitignore`"
|
|
||||||
|
|
||||||
Release preparation commits are marked as "chore(release): prepare for X.Y.Z"
|
Use a `!` to mark breaking changes, e.g. "api!: Remove `dc_chat_can_send`".
|
||||||
as described in [releasing guide](RELEASE.md).
|
|
||||||
|
|
||||||
Use a `!` to mark breaking changes, e.g. "api!: Remove `dc_chat_can_send`".
|
Alternatively, breaking changes can go into the commit description, e.g.:
|
||||||
|
|
||||||
Alternatively, breaking changes can go into the commit description, e.g.:
|
```
|
||||||
|
fix: Fix race condition and db corruption when a message was received during backup
|
||||||
|
|
||||||
```
|
BREAKING CHANGE: You have to call `dc_stop_io()`/`dc_start_io()` before/after `dc_imex(DC_IMEX_EXPORT_BACKUP)`
|
||||||
fix: Fix race condition and db corruption when a message was received during backup
|
```
|
||||||
|
|
||||||
BREAKING CHANGE: You have to call `dc_stop_io()`/`dc_start_io()` before/after `dc_imex(DC_IMEX_EXPORT_BACKUP)`
|
#### Multiple Changes in one PR
|
||||||
```
|
|
||||||
|
|
||||||
4. [**Open a Pull Request**](https://github.com/chatmail/core/pulls).
|
If you have multiple changes in one PR, create multiple conventional commits, and then do a rebase merge. Otherwise, you should usually do a squash merge.
|
||||||
|
|
||||||
Refer to the corresponding issue.
|
[Clippy]: https://doc.rust-lang.org/clippy/
|
||||||
|
[Conventional Commits]: https://www.conventionalcommits.org/
|
||||||
|
[git-cliff]: https://git-cliff.org/
|
||||||
|
|
||||||
If you intend to squash merge the PR from the web interface,
|
### Errors
|
||||||
make sure the PR title follows the conventional commits notation
|
|
||||||
as it will end up being a commit title.
|
|
||||||
Otherwise make sure each commit title follows the conventional commit notation.
|
|
||||||
|
|
||||||
5. **Make sure all CI checks succeed.**
|
Delta Chat core mostly uses [`anyhow`](https://docs.rs/anyhow/) errors.
|
||||||
|
When using [`Context`](https://docs.rs/anyhow/latest/anyhow/trait.Context.html),
|
||||||
|
capitalize it but do not add a full stop as the contexts will be separated by `:`.
|
||||||
|
For example:
|
||||||
|
```
|
||||||
|
.with_context(|| format!("Unable to trash message {msg_id}"))
|
||||||
|
```
|
||||||
|
|
||||||
CI runs the tests and checks code formatting.
|
All errors should be handled in one of these ways:
|
||||||
|
- With `if let Err() =` (incl. logging them into `warn!()`/`err!()`).
|
||||||
|
- With `.log_err().ok()`.
|
||||||
|
- Bubbled up with `?`.
|
||||||
|
|
||||||
While it is running, self-review your PR to make sure all the changes you expect are there
|
`backtrace` feature is enabled for `anyhow` crate
|
||||||
and there are no accidentally committed unrelated changes and files.
|
and `debug = 1` option is set in the test profile.
|
||||||
|
This allows to run `RUST_BACKTRACE=1 cargo test`
|
||||||
|
and get a backtrace with line numbers in resultified tests
|
||||||
|
which return `anyhow::Result`.
|
||||||
|
|
||||||
Push the necessary fixup commits or force-push to your branch if needed.
|
### Logging
|
||||||
|
|
||||||
6. **Ask for review.**
|
For logging, use `info!`, `warn!` and `error!` macros.
|
||||||
|
Log messages should be capitalized and have a full stop in the end. For example:
|
||||||
|
```
|
||||||
|
info!(context, "Ignoring addition of {added_addr:?} to {chat_id}.");
|
||||||
|
```
|
||||||
|
|
||||||
Use built-in GitHub feature to request a review from suggested reviewers.
|
Format anyhow errors with `{:#}` to print all the contexts like this:
|
||||||
|
```
|
||||||
|
error!(context, "Failed to set selfavatar timestamp: {err:#}.");
|
||||||
|
```
|
||||||
|
|
||||||
If you do not have write access to the repository, ask for review in the comments.
|
### Reviewing
|
||||||
|
|
||||||
7. **Merge the PR.**
|
Once a PR has an approval and passes CI, it can be merged.
|
||||||
|
|
||||||
Once a PR has an approval and passes CI, it can be merged.
|
PRs from a branch created in the main repository, i.e. authored by those who have write access, are merged by their authors.
|
||||||
|
This is to ensure that PRs are merged as intended by the author,
|
||||||
|
e.g. as a squash merge, by rebasing from the web interface or manually from the command line.
|
||||||
|
|
||||||
PRs from a branch created in the main repository,
|
If you do not have access to the repository and created a PR from a fork,
|
||||||
i.e. authored by those who have write access, are merged by their authors.
|
ask the maintainers to merge the PR and say how it should be merged.
|
||||||
|
|
||||||
This is to ensure that PRs are merged as intended by the author,
|
|
||||||
e.g. as a squash merge, by rebasing from the web interface or manually from the command line.
|
|
||||||
|
|
||||||
If you have multiple changes in one PR, do a rebase merge.
|
|
||||||
Otherwise, you should usually do a squash merge.
|
|
||||||
|
|
||||||
If PR author does not have write access to the repository,
|
|
||||||
maintainers who reviewed the PR can merge it.
|
|
||||||
|
|
||||||
If you do not have access to the repository and created a PR from a fork,
|
|
||||||
ask the maintainers to merge the PR and say how it should be merged.
|
|
||||||
|
|
||||||
## Other ways to contribute
|
## Other ways to contribute
|
||||||
|
|
||||||
For other ways to contribute, refer to the [website](https://delta.chat/en/contribute).
|
For other ways to contribute, refer to the [website](https://delta.chat/en/contribute).
|
||||||
|
|
||||||
You can find the list of good first issues
|
|
||||||
and a link to this guide
|
|
||||||
on the contributing page: <https://github.com/chatmail/core/contribute>
|
|
||||||
|
|
||||||
[Conventional Commits]: https://www.conventionalcommits.org/
|
|
||||||
[git-cliff]: https://git-cliff.org/
|
|
||||||
|
|||||||
5444
Cargo.lock
generated
5444
Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
154
Cargo.toml
154
Cargo.toml
@@ -1,10 +1,10 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "deltachat"
|
name = "deltachat"
|
||||||
version = "1.159.4"
|
version = "1.140.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "MPL-2.0"
|
license = "MPL-2.0"
|
||||||
rust-version = "1.82"
|
rust-version = "1.77"
|
||||||
repository = "https://github.com/chatmail/core"
|
repository = "https://github.com/deltachat/deltachat-core-rust"
|
||||||
|
|
||||||
[profile.dev]
|
[profile.dev]
|
||||||
debug = 0
|
debug = 0
|
||||||
@@ -34,93 +34,87 @@ strip = true
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
deltachat_derive = { path = "./deltachat_derive" }
|
deltachat_derive = { path = "./deltachat_derive" }
|
||||||
deltachat-time = { path = "./deltachat-time" }
|
deltachat-time = { path = "./deltachat-time" }
|
||||||
deltachat-contact-tools = { workspace = true }
|
deltachat-contact-tools = { path = "./deltachat-contact-tools" }
|
||||||
format-flowed = { path = "./format-flowed" }
|
format-flowed = { path = "./format-flowed" }
|
||||||
ratelimit = { path = "./deltachat-ratelimit" }
|
ratelimit = { path = "./deltachat-ratelimit" }
|
||||||
|
|
||||||
anyhow = { workspace = true }
|
anyhow = { workspace = true }
|
||||||
async-broadcast = "0.7.2"
|
async-broadcast = "0.7.0"
|
||||||
async-channel = { workspace = true }
|
async-channel = "2.2.1"
|
||||||
async-imap = { version = "0.10.4", default-features = false, features = ["runtime-tokio", "compress"] }
|
async-imap = { version = "0.9.7", default-features = false, features = ["runtime-tokio"] }
|
||||||
async-native-tls = { version = "0.5", default-features = false, features = ["runtime-tokio"] }
|
async-native-tls = { version = "0.5", default-features = false, features = ["runtime-tokio"] }
|
||||||
async-smtp = { version = "0.10", default-features = false, features = ["runtime-tokio"] }
|
async-smtp = { version = "0.9", default-features = false, features = ["runtime-tokio"] }
|
||||||
async_zip = { version = "0.0.17", default-features = false, features = ["deflate", "tokio-fs"] }
|
async_zip = { version = "0.0.12", default-features = false, features = ["deflate", "fs"] }
|
||||||
base64 = { workspace = true }
|
backtrace = "0.3"
|
||||||
brotli = { version = "8", default-features=false, features = ["std"] }
|
base64 = "0.22"
|
||||||
bytes = "1"
|
brotli = { version = "6", default-features=false, features = ["std"] }
|
||||||
chrono = { workspace = true, features = ["alloc", "clock", "std"] }
|
chrono = { workspace = true }
|
||||||
data-encoding = "2.9.0"
|
email = { git = "https://github.com/deltachat/rust-email", branch = "master" }
|
||||||
|
encoded-words = { git = "https://github.com/async-email/encoded-words", branch = "master" }
|
||||||
escaper = "0.1"
|
escaper = "0.1"
|
||||||
fast-socks5 = "0.10"
|
fast-socks5 = "0.9"
|
||||||
fd-lock = "4"
|
fd-lock = "4"
|
||||||
futures-lite = { workspace = true }
|
futures = "0.3"
|
||||||
futures = { workspace = true }
|
futures-lite = "2.3.0"
|
||||||
hex = "0.4.0"
|
hex = "0.4.0"
|
||||||
hickory-resolver = "0.25.2"
|
hickory-resolver = "0.24"
|
||||||
http-body-util = "0.1.3"
|
|
||||||
humansize = "2"
|
humansize = "2"
|
||||||
hyper = "1"
|
image = { version = "0.25.1", default-features=false, features = ["gif", "jpeg", "ico", "png", "pnm", "webp", "bmp"] }
|
||||||
hyper-util = "0.1.11"
|
iroh_old = { version = "0.4.2", default-features = false, package = "iroh"}
|
||||||
image = { version = "0.25.6", default-features=false, features = ["gif", "jpeg", "ico", "png", "pnm", "webp", "bmp"] }
|
iroh-net = "0.17.0"
|
||||||
iroh-gossip = { version = "0.35", default-features = false, features = ["net"] }
|
iroh-gossip = { version = "0.17.0", features = ["net"] }
|
||||||
iroh = { version = "0.35", default-features = false }
|
quinn = "0.10.0"
|
||||||
kamadak-exif = "0.6.1"
|
kamadak-exif = "0.5.3"
|
||||||
libc = { workspace = true }
|
lettre_email = { git = "https://github.com/deltachat/lettre", branch = "master" }
|
||||||
mail-builder = { version = "0.4.2", default-features = false }
|
libc = "0.2"
|
||||||
mailparse = { workspace = true }
|
mailparse = "0.15"
|
||||||
mime = "0.3.17"
|
mime = "0.3.17"
|
||||||
num_cpus = "1.16"
|
num_cpus = "1.16"
|
||||||
num-derive = "0.4"
|
num-derive = "0.4"
|
||||||
num-traits = { workspace = true }
|
num-traits = "0.2"
|
||||||
parking_lot = "0.12"
|
once_cell = { workspace = true }
|
||||||
percent-encoding = "2.3"
|
percent-encoding = "2.3"
|
||||||
pgp = { version = "0.15.0", default-features = false }
|
parking_lot = "0.12"
|
||||||
pin-project = "1"
|
pgp = { version = "0.11", default-features = false }
|
||||||
qrcodegen = "1.7.0"
|
qrcodegen = "1.7.0"
|
||||||
quick-xml = "0.37"
|
quick-xml = "0.31"
|
||||||
quoted_printable = "0.5"
|
quoted_printable = "0.5"
|
||||||
rand = { workspace = true }
|
rand = "0.8"
|
||||||
regex = { workspace = true }
|
regex = { workspace = true }
|
||||||
|
reqwest = { version = "0.11.27", features = ["json"] }
|
||||||
rusqlite = { workspace = true, features = ["sqlcipher"] }
|
rusqlite = { workspace = true, features = ["sqlcipher"] }
|
||||||
rust-hsluv = "0.1"
|
rust-hsluv = "0.1"
|
||||||
rustls-pki-types = "1.11.0"
|
sanitize-filename = "0.5"
|
||||||
rustls = { version = "0.23.22", default-features = false }
|
serde_json = "1"
|
||||||
sanitize-filename = { workspace = true }
|
serde = { version = "1.0", features = ["derive"] }
|
||||||
serde_json = { workspace = true }
|
|
||||||
serde_urlencoded = "0.7.1"
|
|
||||||
serde = { workspace = true, features = ["derive"] }
|
|
||||||
sha-1 = "0.10"
|
sha-1 = "0.10"
|
||||||
sha2 = "0.10"
|
sha2 = "0.10"
|
||||||
shadowsocks = { version = "1.22.0", default-features = false, features = ["aead-cipher", "aead-cipher-2022"] }
|
smallvec = "1.13.2"
|
||||||
smallvec = "1.15.0"
|
strum = "0.26"
|
||||||
strum = "0.27"
|
strum_macros = "0.26"
|
||||||
strum_macros = "0.27"
|
|
||||||
tagger = "4.3.4"
|
tagger = "4.3.4"
|
||||||
textwrap = "0.16.2"
|
textwrap = "0.16.1"
|
||||||
thiserror = { workspace = true }
|
thiserror = "1"
|
||||||
|
tokio = { version = "1.37.0", features = ["fs", "rt-multi-thread", "macros"] }
|
||||||
tokio-io-timeout = "1.2.0"
|
tokio-io-timeout = "1.2.0"
|
||||||
tokio-rustls = { version = "0.26.2", default-features = false }
|
tokio-stream = { version = "0.1.15", features = ["fs"] }
|
||||||
tokio-stream = { version = "0.1.17", features = ["fs"] }
|
|
||||||
tokio-tar = { version = "0.3" } # TODO: integrate tokio into async-tar
|
tokio-tar = { version = "0.3" } # TODO: integrate tokio into async-tar
|
||||||
tokio-util = { workspace = true }
|
tokio-util = "0.7.9"
|
||||||
tokio = { workspace = true, features = ["fs", "rt-multi-thread", "macros"] }
|
|
||||||
toml = "0.8"
|
toml = "0.8"
|
||||||
url = "2"
|
url = "2"
|
||||||
uuid = { version = "1", features = ["serde", "v4"] }
|
uuid = { version = "1", features = ["serde", "v4"] }
|
||||||
webpki-roots = "0.26.8"
|
|
||||||
blake3 = "1.8.2"
|
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
anyhow = { workspace = true, features = ["backtrace"] } # Enable `backtrace` feature in tests.
|
ansi_term = "0.12.0"
|
||||||
|
anyhow = { version = "1", features = ["backtrace"] } # Enable `backtrace` feature in tests.
|
||||||
criterion = { version = "0.5.1", features = ["async_tokio"] }
|
criterion = { version = "0.5.1", features = ["async_tokio"] }
|
||||||
futures-lite = { workspace = true }
|
futures-lite = "2.3.0"
|
||||||
log = { workspace = true }
|
log = "0.4"
|
||||||
nu-ansi-term = { workspace = true }
|
|
||||||
pretty_assertions = "1.4.1"
|
|
||||||
proptest = { version = "1", default-features = false, features = ["std"] }
|
proptest = { version = "1", default-features = false, features = ["std"] }
|
||||||
tempfile = { workspace = true }
|
tempfile = "3"
|
||||||
testdir = "0.9.3"
|
testdir = "0.9.0"
|
||||||
tokio = { workspace = true, features = ["rt-multi-thread", "macros"] }
|
tokio = { version = "1.37.0", features = ["parking_lot", "rt-multi-thread", "macros"] }
|
||||||
|
pretty_assertions = "1.3.0"
|
||||||
|
|
||||||
[workspace]
|
[workspace]
|
||||||
members = [
|
members = [
|
||||||
@@ -133,7 +127,6 @@ members = [
|
|||||||
"deltachat-time",
|
"deltachat-time",
|
||||||
"format-flowed",
|
"format-flowed",
|
||||||
"deltachat-contact-tools",
|
"deltachat-contact-tools",
|
||||||
"fuzz",
|
|
||||||
]
|
]
|
||||||
|
|
||||||
[[bench]]
|
[[bench]]
|
||||||
@@ -150,17 +143,12 @@ harness = false
|
|||||||
|
|
||||||
[[bench]]
|
[[bench]]
|
||||||
name = "receive_emails"
|
name = "receive_emails"
|
||||||
required-features = ["internals"]
|
|
||||||
harness = false
|
harness = false
|
||||||
|
|
||||||
[[bench]]
|
[[bench]]
|
||||||
name = "get_chat_msgs"
|
name = "get_chat_msgs"
|
||||||
harness = false
|
harness = false
|
||||||
|
|
||||||
[[bench]]
|
|
||||||
name = "marknoticed_chat"
|
|
||||||
harness = false
|
|
||||||
|
|
||||||
[[bench]]
|
[[bench]]
|
||||||
name = "get_chatlist"
|
name = "get_chatlist"
|
||||||
harness = false
|
harness = false
|
||||||
@@ -171,38 +159,16 @@ harness = false
|
|||||||
|
|
||||||
[workspace.dependencies]
|
[workspace.dependencies]
|
||||||
anyhow = "1"
|
anyhow = "1"
|
||||||
async-channel = "2.3.1"
|
once_cell = "1.18.0"
|
||||||
base64 = "0.22"
|
|
||||||
chrono = { version = "0.4.41", default-features = false }
|
|
||||||
deltachat-contact-tools = { path = "deltachat-contact-tools" }
|
|
||||||
deltachat-jsonrpc = { path = "deltachat-jsonrpc", default-features = false }
|
|
||||||
deltachat = { path = ".", default-features = false }
|
|
||||||
futures = "0.3.31"
|
|
||||||
futures-lite = "2.6.0"
|
|
||||||
libc = "0.2"
|
|
||||||
log = "0.4"
|
|
||||||
mailparse = "0.16.1"
|
|
||||||
nu-ansi-term = "0.46"
|
|
||||||
num-traits = "0.2"
|
|
||||||
rand = "0.8"
|
|
||||||
regex = "1.10"
|
regex = "1.10"
|
||||||
rusqlite = "0.32"
|
rusqlite = "0.31"
|
||||||
sanitize-filename = "0.5"
|
chrono = { version = "0.4.38", default-features=false, features = ["alloc", "clock", "std"] }
|
||||||
serde = "1.0"
|
|
||||||
serde_json = "1"
|
|
||||||
tempfile = "3.19.1"
|
|
||||||
thiserror = "2"
|
|
||||||
tokio = "1"
|
|
||||||
tokio-util = "0.7.14"
|
|
||||||
tracing-subscriber = "0.3"
|
|
||||||
yerpc = "0.6.4"
|
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["vendored"]
|
default = ["vendored"]
|
||||||
internals = []
|
internals = []
|
||||||
vendored = [
|
vendored = [
|
||||||
"rusqlite/bundled-sqlcipher-vendored-openssl"
|
"async-native-tls/vendored",
|
||||||
|
"rusqlite/bundled-sqlcipher-vendored-openssl",
|
||||||
|
"reqwest/native-tls-vendored"
|
||||||
]
|
]
|
||||||
|
|
||||||
[lints.rust]
|
|
||||||
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(fuzzing)'] }
|
|
||||||
|
|||||||
72
README.md
72
README.md
@@ -1,41 +1,19 @@
|
|||||||
<p align="center">
|
<p align="center">
|
||||||
<img alt="Chatmail logo" src="https://github.com/user-attachments/assets/25742da7-a837-48cd-a503-b303af55f10d" width="300" style="float:middle;" />
|
<img alt="Delta Chat Logo" height="200px" src="https://raw.githubusercontent.com/deltachat/deltachat-pages/master/assets/blog/rust-delta.png">
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p align="center">
|
<p align="center">
|
||||||
<a href="https://github.com/chatmail/core/actions/workflows/ci.yml">
|
<a href="https://github.com/deltachat/deltachat-core-rust/actions/workflows/ci.yml">
|
||||||
<img alt="Rust CI" src="https://github.com/chatmail/core/actions/workflows/ci.yml/badge.svg">
|
<img alt="Rust CI" src="https://github.com/deltachat/deltachat-core-rust/actions/workflows/ci.yml/badge.svg">
|
||||||
</a>
|
</a>
|
||||||
<a href="https://deps.rs/repo/github/chatmail/core">
|
<a href="https://deps.rs/repo/github/deltachat/deltachat-core-rust">
|
||||||
<img alt="dependency status" src="https://deps.rs/repo/github/chatmail/core/status.svg">
|
<img alt="dependency status" src="https://deps.rs/repo/github/deltachat/deltachat-core-rust/status.svg">
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
The chatmail core library implements low-level network and encryption protocols,
|
<p align="center">
|
||||||
integrated by many chat bots and higher level applications,
|
The core library for Delta Chat, written in Rust
|
||||||
allowing to securely participate in the globally scaled e-mail server network.
|
</p>
|
||||||
We provide reproducibly-built `deltachat-rpc-server` static binaries
|
|
||||||
that offer a stdio-based high-level JSON-RPC API for instant messaging purposes.
|
|
||||||
|
|
||||||
The following protocols are handled without requiring API users to know much about them:
|
|
||||||
|
|
||||||
- secure TLS setup with DNS caching and shadowsocks/proxy support
|
|
||||||
|
|
||||||
- robust [SMTP](https://github.com/chatmail/async-imap)
|
|
||||||
and [IMAP](https://github.com/chatmail/async-smtp) handling
|
|
||||||
|
|
||||||
- safe and interoperable [MIME parsing](https://github.com/staktrace/mailparse)
|
|
||||||
and [MIME building](https://github.com/stalwartlabs/mail-builder).
|
|
||||||
|
|
||||||
- security-audited end-to-end encryption with [rPGP](https://github.com/rpgp/rpgp)
|
|
||||||
and [Autocrypt and SecureJoin protocols](https://securejoin.rtfd.io)
|
|
||||||
|
|
||||||
- ephemeral [Peer-to-Peer networking using Iroh](https://iroh.computer) for multi-device setup and
|
|
||||||
[webxdc realtime data](https://delta.chat/en/2024-11-20-webxdc-realtime).
|
|
||||||
|
|
||||||
- a simulation- and real-world tested [P2P group membership
|
|
||||||
protocol without requiring server state](https://github.com/chatmail/models/tree/main/group-membership).
|
|
||||||
|
|
||||||
|
|
||||||
## Installing Rust and Cargo
|
## Installing Rust and Cargo
|
||||||
|
|
||||||
@@ -49,26 +27,26 @@ $ curl https://sh.rustup.rs -sSf | sh
|
|||||||
|
|
||||||
## Using the CLI client
|
## Using the CLI client
|
||||||
|
|
||||||
Compile and run the command line utility, using `cargo`:
|
Compile and run Delta Chat Core command line utility, using `cargo`:
|
||||||
|
|
||||||
```
|
```
|
||||||
$ cargo run --locked -p deltachat-repl -- ~/profile-db
|
$ cargo run -p deltachat-repl -- ~/deltachat-db
|
||||||
```
|
```
|
||||||
where ~/profile-db is the database file. The utility will create it if it does not exist.
|
where ~/deltachat-db is the database file. Delta Chat will create it if it does not exist.
|
||||||
|
|
||||||
Optionally, install `deltachat-repl` binary with
|
Optionally, install `deltachat-repl` binary with
|
||||||
```
|
```
|
||||||
$ cargo install --locked --path deltachat-repl/
|
$ cargo install --path deltachat-repl/
|
||||||
```
|
```
|
||||||
and run as
|
and run as
|
||||||
```
|
```
|
||||||
$ deltachat-repl ~/profile-db
|
$ deltachat-repl ~/deltachat-db
|
||||||
```
|
```
|
||||||
|
|
||||||
Configure your account (if not already configured):
|
Configure your account (if not already configured):
|
||||||
|
|
||||||
```
|
```
|
||||||
Chatmail is awaiting your commands.
|
Delta Chat Core is awaiting your commands.
|
||||||
> set addr your@email.org
|
> set addr your@email.org
|
||||||
> set mail_pw yourpassword
|
> set mail_pw yourpassword
|
||||||
> configure
|
> configure
|
||||||
@@ -106,6 +84,11 @@ Single#10: yourfriends@email.org [yourfriends@email.org]
|
|||||||
Message sent.
|
Message sent.
|
||||||
```
|
```
|
||||||
|
|
||||||
|
If `yourfriend@email.org` uses DeltaChat, but does not receive message just
|
||||||
|
sent, it is advisable to check `Spam` folder. It is known that at least
|
||||||
|
`gmx.com` treat such test messages as spam, unless told otherwise with web
|
||||||
|
interface.
|
||||||
|
|
||||||
List messages when inside a chat:
|
List messages when inside a chat:
|
||||||
|
|
||||||
```
|
```
|
||||||
@@ -121,7 +104,7 @@ For more commands type:
|
|||||||
## Installing libdeltachat system wide
|
## Installing libdeltachat system wide
|
||||||
|
|
||||||
```
|
```
|
||||||
$ git clone https://github.com/chatmail/core.git
|
$ git clone https://github.com/deltachat/deltachat-core-rust.git
|
||||||
$ cd deltachat-core-rust
|
$ cd deltachat-core-rust
|
||||||
$ cmake -B build . -DCMAKE_INSTALL_PREFIX=/usr
|
$ cmake -B build . -DCMAKE_INSTALL_PREFIX=/usr
|
||||||
$ cmake --build build
|
$ cmake --build build
|
||||||
@@ -156,7 +139,7 @@ $ cargo test -- --ignored
|
|||||||
|
|
||||||
Install [`cargo-bolero`](https://github.com/camshaft/bolero) with
|
Install [`cargo-bolero`](https://github.com/camshaft/bolero) with
|
||||||
```sh
|
```sh
|
||||||
$ cargo install cargo-bolero@0.8.0
|
$ cargo install cargo-bolero
|
||||||
```
|
```
|
||||||
|
|
||||||
Run fuzzing tests with
|
Run fuzzing tests with
|
||||||
@@ -178,20 +161,25 @@ $ cargo bolero test fuzz_format_flowed --release=false -e afl -s NONE
|
|||||||
## Features
|
## Features
|
||||||
|
|
||||||
- `vendored`: When using Openssl for TLS, this bundles a vendored version.
|
- `vendored`: When using Openssl for TLS, this bundles a vendored version.
|
||||||
|
- `nightly`: Enable nightly only performance and security related features.
|
||||||
|
|
||||||
## Update Provider Data
|
## Update Provider Data
|
||||||
|
|
||||||
To add the updates from the
|
To add the updates from the
|
||||||
[provider-db](https://github.com/chatmail/provider-db) to the core,
|
[provider-db](https://github.com/deltachat/provider-db) to the core, run:
|
||||||
check line `REV=` inside `./scripts/update-provider-database.sh`
|
|
||||||
and then run the script.
|
```
|
||||||
|
./src/provider/update.py ../provider-db/_providers/ > src/provider/data.rs
|
||||||
|
```
|
||||||
|
|
||||||
## Language bindings and frontend projects
|
## Language bindings and frontend projects
|
||||||
|
|
||||||
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)\]
|
||||||
- **JS**: \[[📂 source](./deltachat-rpc-client) | [📦 npm](https://www.npmjs.com/package/@deltachat/jsonrpc-client) | [📚 docs](https://js.jsonrpc.delta.chat/)\]
|
- **Node.js**
|
||||||
|
- over cffi: \[[📂 source](./node) | [📦 npm](https://www.npmjs.com/package/deltachat-node) | [📚 docs](https://js.delta.chat)\]
|
||||||
|
- over jsonrpc built with napi.rs (experimental): \[[📂 source](https://github.com/deltachat/napi-jsonrpc) | [📦 npm](https://www.npmjs.com/package/@deltachat/napi-jsonrpc)\]
|
||||||
- **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**
|
- **Go**
|
||||||
- over jsonrpc: \[[📂 source](https://github.com/deltachat/deltachat-rpc-client-go/)\]
|
- over jsonrpc: \[[📂 source](https://github.com/deltachat/deltachat-rpc-client-go/)\]
|
||||||
|
|||||||
@@ -2,20 +2,20 @@
|
|||||||
|
|
||||||
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.
|
||||||
|
|
||||||
1. Resolve all [blocker issues](https://github.com/chatmail/core/labels/blocker).
|
1. Resolve all [blocker issues](https://github.com/deltachat/deltachat-core-rust/labels/blocker).
|
||||||
|
|
||||||
2. Update the changelog: `git cliff --unreleased --tag 1.116.0 --prepend CHANGELOG.md` or `git cliff -u -t 1.116.0 -p CHANGELOG.md`.
|
2. Update the changelog: `git cliff --unreleased --tag 1.116.0 --prepend CHANGELOG.md` or `git cliff -u -t 1.116.0 -p CHANGELOG.md`.
|
||||||
|
|
||||||
3. add a link to compare previous with current version to the end of CHANGELOG.md:
|
3. add a link to compare previous with current version to the end of CHANGELOG.md:
|
||||||
`[1.116.0]: https://github.com/chatmail/core/compare/v1.115.2...v1.116.0`
|
`[1.116.0]: https://github.com/deltachat/deltachat-core-rust/compare/v1.115.2...v1.116.0`
|
||||||
|
|
||||||
4. Update the version by running `scripts/set_core_version.py 1.116.0`.
|
4. Update the version by running `scripts/set_core_version.py 1.116.0`.
|
||||||
|
|
||||||
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. Tag the release: `git tag --annotate v1.116.0`.
|
6. Tag the release: `git tag -a v1.116.0`.
|
||||||
|
|
||||||
7. Push the release tag: `git push origin v1.116.0`.
|
7. Push the release tag: `git push origin v1.116.0`.
|
||||||
|
|
||||||
8. Create a GitHub release: `gh release create v1.116.0 --notes ''`.
|
8. Create a GitHub release: `gh release create v1.116.0 -n ''`.
|
||||||
|
|||||||
98
STYLE.md
98
STYLE.md
@@ -1,98 +0,0 @@
|
|||||||
# Coding conventions
|
|
||||||
|
|
||||||
We format the code using `rustfmt`. Run `cargo fmt` prior to committing the code.
|
|
||||||
Run `scripts/clippy.sh` to check the code for common mistakes with [Clippy].
|
|
||||||
|
|
||||||
[Clippy]: https://doc.rust-lang.org/clippy/
|
|
||||||
|
|
||||||
## SQL
|
|
||||||
|
|
||||||
Multi-line SQL statements should be formatted using string literals,
|
|
||||||
for example
|
|
||||||
```
|
|
||||||
sql.execute(
|
|
||||||
"CREATE TABLE messages (
|
|
||||||
id INTEGER PRIMARY KEY AUTOINCREMENT,
|
|
||||||
text TEXT DEFAULT '' NOT NULL -- message text
|
|
||||||
) STRICT",
|
|
||||||
)
|
|
||||||
.await?;
|
|
||||||
```
|
|
||||||
|
|
||||||
Do not use macros like [`concat!`](https://doc.rust-lang.org/std/macro.concat.html)
|
|
||||||
or [`indoc!](https://docs.rs/indoc).
|
|
||||||
Do not escape newlines like this:
|
|
||||||
```
|
|
||||||
sql.execute(
|
|
||||||
"CREATE TABLE messages ( \
|
|
||||||
id INTEGER PRIMARY KEY AUTOINCREMENT, \
|
|
||||||
text TEXT DEFAULT '' NOT NULL \
|
|
||||||
) STRICT",
|
|
||||||
)
|
|
||||||
.await?;
|
|
||||||
```
|
|
||||||
Escaping newlines
|
|
||||||
is prone to errors like this if space before backslash is missing:
|
|
||||||
```
|
|
||||||
"SELECT foo\
|
|
||||||
FROM bar"
|
|
||||||
```
|
|
||||||
Literal above results in `SELECT fooFROM bar` string.
|
|
||||||
This style also does not allow using `--` comments.
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
Declare new SQL tables with [`STRICT`](https://sqlite.org/stricttables.html) keyword
|
|
||||||
to make SQLite check column types.
|
|
||||||
|
|
||||||
Declare primary keys with [`AUTOINCREMENT`](https://www.sqlite.org/autoinc.html) keyword.
|
|
||||||
This avoids reuse of the row IDs and can avoid dangerous bugs
|
|
||||||
like forwarding wrong message because the message was deleted
|
|
||||||
and another message took its row ID.
|
|
||||||
|
|
||||||
Declare all new columns as `NOT NULL`
|
|
||||||
and set the `DEFAULT` value if it is optional so the column can be skipped in `INSERT` statements.
|
|
||||||
Dealing with `NULL` values both in SQL and in Rust is tricky and we try to avoid it.
|
|
||||||
If column is already declared without `NOT NULL`, use `IFNULL` function to provide default value when selecting it.
|
|
||||||
Use `HAVING COUNT(*) > 0` clause
|
|
||||||
to [prevent aggregate functions such as `MIN` and `MAX` from returning `NULL`](https://stackoverflow.com/questions/66527856/aggregate-functions-max-etc-return-null-instead-of-no-rows).
|
|
||||||
|
|
||||||
Don't delete unused columns too early, but maybe after several months/releases, unused columns are
|
|
||||||
still used by older versions, so deleting them breaks downgrading the core or importing a backup in
|
|
||||||
an older version. Also don't change the column type, consider adding a new column with another name
|
|
||||||
instead. Finally, never change column semantics, this is especially dangerous because the `STRICT`
|
|
||||||
keyword doesn't help here.
|
|
||||||
|
|
||||||
## Errors
|
|
||||||
|
|
||||||
Delta Chat core mostly uses [`anyhow`](https://docs.rs/anyhow/) errors.
|
|
||||||
When using [`Context`](https://docs.rs/anyhow/latest/anyhow/trait.Context.html),
|
|
||||||
capitalize it but do not add a full stop as the contexts will be separated by `:`.
|
|
||||||
For example:
|
|
||||||
```
|
|
||||||
.with_context(|| format!("Unable to trash message {msg_id}"))
|
|
||||||
```
|
|
||||||
|
|
||||||
All errors should be handled in one of these ways:
|
|
||||||
- With `if let Err() =` (incl. logging them into `warn!()`/`err!()`).
|
|
||||||
- With `.log_err().ok()`.
|
|
||||||
- Bubbled up with `?`.
|
|
||||||
|
|
||||||
`backtrace` feature is enabled for `anyhow` crate
|
|
||||||
and `debug = 1` option is set in the test profile.
|
|
||||||
This allows to run `RUST_BACKTRACE=1 cargo test`
|
|
||||||
and get a backtrace with line numbers in resultified tests
|
|
||||||
which return `anyhow::Result`.
|
|
||||||
|
|
||||||
## Logging
|
|
||||||
|
|
||||||
For logging, use `info!`, `warn!` and `error!` macros.
|
|
||||||
Log messages should be capitalized and have a full stop in the end. For example:
|
|
||||||
```
|
|
||||||
info!(context, "Ignoring addition of {added_addr:?} to {chat_id}.");
|
|
||||||
```
|
|
||||||
|
|
||||||
Format anyhow errors with `{:#}` to print all the contexts like this:
|
|
||||||
```
|
|
||||||
error!(context, "Failed to set selfavatar timestamp: {err:#}.");
|
|
||||||
```
|
|
||||||
@@ -1,12 +0,0 @@
|
|||||||
<path
|
|
||||||
style="fill:#ffffff;fill-opacity:1;stroke:none"
|
|
||||||
d="m 24.015419,1.2870249 c -12.549421,0 -22.7283936,10.1789711 -22.7283936,22.7283931 0,12.549422 10.1789726,22.728395 22.7283936,22.728395 14.337742,-0.342877 9.614352,-4.702705 23.697556,0.969161 -7.545453,-13.001555 -1.082973,-13.32964 -0.969161,-23.697556 0,-12.549422 -10.178973,-22.7283931 -22.728395,-22.7283931 z" />
|
|
||||||
<path
|
|
||||||
style="fill:#000000;fill-opacity:1;stroke:none"
|
|
||||||
d="M 23.982249,5.3106163 C 13.645822,5.4364005 5.2618355,13.92999 5.2618355,24.275753 c 0,10.345764 8.3839865,18.635301 18.7204135,18.509516 9.827724,-0.03951 7.516769,-5.489695 18.380082,-0.443187 -5.950849,-9.296115 0.201753,-10.533667 0.340336,-18.521947 0,-10.345766 -8.383989,-18.6353031 -18.720418,-18.5095187 z" />
|
|
||||||
<g
|
|
||||||
style="fill:#ffffff"
|
|
||||||
transform="scale(1.1342891,0.88160947)">
|
|
||||||
<path
|
|
||||||
d="m 21.360141,23.513382 q -1.218487,-1.364705 -3.387392,-3.265543 -2.388233,-2.095797 -3.216804,-3.289913 -0.828571,-1.218486 -0.828571,-2.6563 0,-2.144536 1.998318,-3.363022 1.998317,-1.2428565 5.215121,-1.2428565 3.216804,0 5.605037,1.0966375 2.412603,1.096638 2.412603,3.021846 0,0.92605 -0.584873,1.535293 -0.584874,0.609243 -1.364705,0.609243 -1.121008,0 -2.631931,-1.681511 -1.535292,-1.705881 -2.60756,-2.388233 -1.047898,-0.706722 -2.461343,-0.706722 -1.803359,0 -2.973106,0.804201 -1.145377,0.804201 -1.145377,2.047057 0,1.169747 0.950419,2.193275 0.950419,1.023529 4.898315,3.728568 4.215963,2.899998 5.946213,4.532769 1.75462,1.632772 2.851258,3.972265 1.096638,2.339494 1.096638,4.947055 0,4.581508 -3.241174,8.090749 -3.216804,3.484871 -7.530245,3.484871 -3.923526,0 -6.628566,-2.802519 -2.705039,-2.802518 -2.705039,-7.481506 0,-4.508399 2.973106,-7.530245 2.997477,-3.021846 7.359658,-3.655459 z m 1.072268,1.121008 q -6.994112,1.145377 -6.994112,9.601672 0,4.36218 1.730251,6.774783 1.75462,2.412603 4.069744,2.412603 2.412603,0 3.972265,-2.315124 1.559663,-2.339493 1.559663,-6.311759 0,-5.751255 -4.337811,-10.162175 z" />
|
|
||||||
</g>
|
|
||||||
BIN
assets/root-certificates/letsencrypt/isrgrootx1.der
Normal file
BIN
assets/root-certificates/letsencrypt/isrgrootx1.der
Normal file
Binary file not shown.
@@ -1,94 +0,0 @@
|
|||||||
#![recursion_limit = "256"]
|
|
||||||
use std::path::Path;
|
|
||||||
|
|
||||||
use criterion::{black_box, criterion_group, criterion_main, BatchSize, Criterion};
|
|
||||||
use deltachat::chat::{self, ChatId};
|
|
||||||
use deltachat::chatlist::Chatlist;
|
|
||||||
use deltachat::context::Context;
|
|
||||||
use deltachat::stock_str::StockStrings;
|
|
||||||
use deltachat::Events;
|
|
||||||
use futures_lite::future::block_on;
|
|
||||||
use tempfile::tempdir;
|
|
||||||
|
|
||||||
async fn marknoticed_chat_benchmark(context: &Context, chats: &[ChatId]) {
|
|
||||||
for c in chats.iter().take(20) {
|
|
||||||
chat::marknoticed_chat(context, *c).await.unwrap();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
fn criterion_benchmark(c: &mut Criterion) {
|
|
||||||
// To enable this benchmark, set `DELTACHAT_BENCHMARK_DATABASE` to some large database with many
|
|
||||||
// messages, such as your primary account.
|
|
||||||
if let Ok(path) = std::env::var("DELTACHAT_BENCHMARK_DATABASE") {
|
|
||||||
let rt = tokio::runtime::Runtime::new().unwrap();
|
|
||||||
|
|
||||||
let chats: Vec<_> = rt.block_on(async {
|
|
||||||
let context = Context::new(Path::new(&path), 100, Events::new(), StockStrings::new())
|
|
||||||
.await
|
|
||||||
.unwrap();
|
|
||||||
let chatlist = Chatlist::try_load(&context, 0, None, None).await.unwrap();
|
|
||||||
let len = chatlist.len();
|
|
||||||
(1..len).map(|i| chatlist.get_chat_id(i).unwrap()).collect()
|
|
||||||
});
|
|
||||||
|
|
||||||
// This mainly tests the performance of marknoticed_chat()
|
|
||||||
// when nothing has to be done
|
|
||||||
c.bench_function(
|
|
||||||
"chat::marknoticed_chat (mark 20 chats as noticed repeatedly)",
|
|
||||||
|b| {
|
|
||||||
let dir = tempdir().unwrap();
|
|
||||||
let dir = dir.path();
|
|
||||||
let new_db = dir.join("dc.db");
|
|
||||||
std::fs::copy(&path, &new_db).unwrap();
|
|
||||||
|
|
||||||
let context = block_on(async {
|
|
||||||
Context::new(Path::new(&new_db), 100, Events::new(), StockStrings::new())
|
|
||||||
.await
|
|
||||||
.unwrap()
|
|
||||||
});
|
|
||||||
|
|
||||||
b.to_async(&rt)
|
|
||||||
.iter(|| marknoticed_chat_benchmark(&context, black_box(&chats)))
|
|
||||||
},
|
|
||||||
);
|
|
||||||
|
|
||||||
// If the first 20 chats contain fresh messages or reactions,
|
|
||||||
// this tests the performance of marking them as noticed.
|
|
||||||
c.bench_function(
|
|
||||||
"chat::marknoticed_chat (mark 20 chats as noticed, resetting after every iteration)",
|
|
||||||
|b| {
|
|
||||||
b.to_async(&rt).iter_batched(
|
|
||||||
|| {
|
|
||||||
let dir = tempdir().unwrap();
|
|
||||||
let new_db = dir.path().join("dc.db");
|
|
||||||
std::fs::copy(&path, &new_db).unwrap();
|
|
||||||
|
|
||||||
let context = block_on(async {
|
|
||||||
Context::new(
|
|
||||||
Path::new(&new_db),
|
|
||||||
100,
|
|
||||||
Events::new(),
|
|
||||||
StockStrings::new(),
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.unwrap()
|
|
||||||
});
|
|
||||||
(dir, context)
|
|
||||||
},
|
|
||||||
|(_dir, context)| {
|
|
||||||
let chats = &chats;
|
|
||||||
async move {
|
|
||||||
marknoticed_chat_benchmark(black_box(&context), black_box(chats)).await
|
|
||||||
}
|
|
||||||
},
|
|
||||||
BatchSize::PerIteration,
|
|
||||||
);
|
|
||||||
},
|
|
||||||
);
|
|
||||||
} else {
|
|
||||||
println!("env var not set: DELTACHAT_BENCHMARK_DATABASE");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
criterion_group!(benches, criterion_benchmark);
|
|
||||||
criterion_main!(benches);
|
|
||||||
@@ -12,18 +12,18 @@ use deltachat::{
|
|||||||
};
|
};
|
||||||
use tempfile::tempdir;
|
use tempfile::tempdir;
|
||||||
|
|
||||||
async fn recv_all_emails(context: Context, iteration: u32) -> Context {
|
async fn recv_all_emails(context: Context) -> Context {
|
||||||
for i in 0..100 {
|
for i in 0..100 {
|
||||||
let imf_raw = format!(
|
let imf_raw = format!(
|
||||||
"Subject: Benchmark
|
"Subject: Benchmark
|
||||||
Message-ID: Mr.{iteration}.{i}@testrun.org
|
Message-ID: Mr.OssSYnOFkhR.{i}@testrun.org
|
||||||
Date: Sat, 07 Dec 2019 19:00:27 +0000
|
Date: Sat, 07 Dec 2019 19:00:27 +0000
|
||||||
To: alice@example.com
|
To: alice@example.com
|
||||||
From: sender@testrun.org
|
From: sender@testrun.org
|
||||||
Chat-Version: 1.0
|
Chat-Version: 1.0
|
||||||
Chat-Disposition-Notification-To: sender@testrun.org
|
Chat-Disposition-Notification-To: sender@testrun.org
|
||||||
Chat-User-Avatar: 0
|
Chat-User-Avatar: 0
|
||||||
In-Reply-To: Mr.{iteration}.{i_dec}@testrun.org
|
In-Reply-To: Mr.OssSYnOFkhR.{i_dec}@testrun.org
|
||||||
MIME-Version: 1.0
|
MIME-Version: 1.0
|
||||||
|
|
||||||
Content-Type: text/plain; charset=utf-8; format=flowed; delsp=no
|
Content-Type: text/plain; charset=utf-8; format=flowed; delsp=no
|
||||||
@@ -41,11 +41,11 @@ Hello {i}",
|
|||||||
|
|
||||||
/// Receive 100 emails that remove charlie@example.com and add
|
/// Receive 100 emails that remove charlie@example.com and add
|
||||||
/// him back
|
/// him back
|
||||||
async fn recv_groupmembership_emails(context: Context, iteration: u32) -> Context {
|
async fn recv_groupmembership_emails(context: Context) -> Context {
|
||||||
for i in 0..50 {
|
for i in 0..50 {
|
||||||
let imf_raw = format!(
|
let imf_raw = format!(
|
||||||
"Subject: Benchmark
|
"Subject: Benchmark
|
||||||
Message-ID: Gr.{iteration}.ADD.{i}@testrun.org
|
Message-ID: Gr.OssSYnOFkhR.{i}@testrun.org
|
||||||
Date: Sat, 07 Dec 2019 19:00:27 +0000
|
Date: Sat, 07 Dec 2019 19:00:27 +0000
|
||||||
To: alice@example.com, b@example.com, c@example.com, d@example.com, e@example.com, f@example.com
|
To: alice@example.com, b@example.com, c@example.com, d@example.com, e@example.com, f@example.com
|
||||||
From: sender@testrun.org
|
From: sender@testrun.org
|
||||||
@@ -53,12 +53,13 @@ Chat-Version: 1.0
|
|||||||
Chat-Disposition-Notification-To: sender@testrun.org
|
Chat-Disposition-Notification-To: sender@testrun.org
|
||||||
Chat-User-Avatar: 0
|
Chat-User-Avatar: 0
|
||||||
Chat-Group-Member-Added: charlie@example.com
|
Chat-Group-Member-Added: charlie@example.com
|
||||||
In-Reply-To: Gr.{iteration}.REMOVE.{i_dec}@testrun.org
|
In-Reply-To: Gr.OssSYnOFkhR.{i_dec}@testrun.org
|
||||||
MIME-Version: 1.0
|
MIME-Version: 1.0
|
||||||
|
|
||||||
Content-Type: text/plain; charset=utf-8; format=flowed; delsp=no
|
Content-Type: text/plain; charset=utf-8; format=flowed; delsp=no
|
||||||
|
|
||||||
Hello {i}",
|
Hello {i}",
|
||||||
|
i = i,
|
||||||
i_dec = i - 1,
|
i_dec = i - 1,
|
||||||
);
|
);
|
||||||
receive_imf(&context, black_box(imf_raw.as_bytes()), false)
|
receive_imf(&context, black_box(imf_raw.as_bytes()), false)
|
||||||
@@ -67,7 +68,7 @@ Hello {i}",
|
|||||||
|
|
||||||
let imf_raw = format!(
|
let imf_raw = format!(
|
||||||
"Subject: Benchmark
|
"Subject: Benchmark
|
||||||
Message-ID: Gr.{iteration}.REMOVE.{i}@testrun.org
|
Message-ID: Gr.OssSYnOFkhR.{i}@testrun.org
|
||||||
Date: Sat, 07 Dec 2019 19:00:27 +0000
|
Date: Sat, 07 Dec 2019 19:00:27 +0000
|
||||||
To: alice@example.com, b@example.com, c@example.com, d@example.com, e@example.com, f@example.com
|
To: alice@example.com, b@example.com, c@example.com, d@example.com, e@example.com, f@example.com
|
||||||
From: sender@testrun.org
|
From: sender@testrun.org
|
||||||
@@ -75,12 +76,14 @@ Chat-Version: 1.0
|
|||||||
Chat-Disposition-Notification-To: sender@testrun.org
|
Chat-Disposition-Notification-To: sender@testrun.org
|
||||||
Chat-User-Avatar: 0
|
Chat-User-Avatar: 0
|
||||||
Chat-Group-Member-Removed: charlie@example.com
|
Chat-Group-Member-Removed: charlie@example.com
|
||||||
In-Reply-To: Gr.{iteration}.ADD.{i}@testrun.org
|
In-Reply-To: Gr.OssSYnOFkhR.{i_dec}@testrun.org
|
||||||
MIME-Version: 1.0
|
MIME-Version: 1.0
|
||||||
|
|
||||||
Content-Type: text/plain; charset=utf-8; format=flowed; delsp=no
|
Content-Type: text/plain; charset=utf-8; format=flowed; delsp=no
|
||||||
|
|
||||||
Hello {i}"
|
Hello {i}",
|
||||||
|
i = i,
|
||||||
|
i_dec = i - 1,
|
||||||
);
|
);
|
||||||
receive_imf(&context, black_box(imf_raw.as_bytes()), false)
|
receive_imf(&context, black_box(imf_raw.as_bytes()), false)
|
||||||
.await
|
.await
|
||||||
@@ -126,13 +129,11 @@ fn criterion_benchmark(c: &mut Criterion) {
|
|||||||
group.bench_function("Receive 100 simple text msgs", |b| {
|
group.bench_function("Receive 100 simple text msgs", |b| {
|
||||||
let rt = tokio::runtime::Runtime::new().unwrap();
|
let rt = tokio::runtime::Runtime::new().unwrap();
|
||||||
let context = rt.block_on(create_context());
|
let context = rt.block_on(create_context());
|
||||||
let mut i = 0;
|
|
||||||
|
|
||||||
b.to_async(&rt).iter(|| {
|
b.to_async(&rt).iter(|| {
|
||||||
let ctx = context.clone();
|
let ctx = context.clone();
|
||||||
i += 1;
|
|
||||||
async move {
|
async move {
|
||||||
recv_all_emails(black_box(ctx), i).await;
|
recv_all_emails(black_box(ctx)).await;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
@@ -141,13 +142,11 @@ fn criterion_benchmark(c: &mut Criterion) {
|
|||||||
|b| {
|
|b| {
|
||||||
let rt = tokio::runtime::Runtime::new().unwrap();
|
let rt = tokio::runtime::Runtime::new().unwrap();
|
||||||
let context = rt.block_on(create_context());
|
let context = rt.block_on(create_context());
|
||||||
let mut i = 0;
|
|
||||||
|
|
||||||
b.to_async(&rt).iter(|| {
|
b.to_async(&rt).iter(|| {
|
||||||
let ctx = context.clone();
|
let ctx = context.clone();
|
||||||
i += 1;
|
|
||||||
async move {
|
async move {
|
||||||
recv_groupmembership_emails(black_box(ctx), i).await;
|
recv_groupmembership_emails(black_box(ctx)).await;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ filter_unconventional = false
|
|||||||
split_commits = false
|
split_commits = false
|
||||||
# regex for preprocessing the commit messages
|
# regex for preprocessing the commit messages
|
||||||
commit_preprocessors = [
|
commit_preprocessors = [
|
||||||
{ pattern = '\((\w+\s)?#([0-9]+)\)', replace = "([#${2}](https://github.com/chatmail/core/pull/${2}))"}, # replace pull request / issue numbers
|
{ pattern = '\((\w+\s)?#([0-9]+)\)', replace = "([#${2}](https://github.com/deltachat/deltachat-core-rust/pull/${2}))"}, # replace pull request / issue numbers
|
||||||
]
|
]
|
||||||
# regex for parsing and grouping commits
|
# regex for parsing and grouping commits
|
||||||
commit_parsers = [
|
commit_parsers = [
|
||||||
@@ -82,11 +82,11 @@ footer = """
|
|||||||
{% if release.version -%}
|
{% if release.version -%}
|
||||||
{% if release.previous.version -%}
|
{% if release.previous.version -%}
|
||||||
[{{ release.version | trim_start_matches(pat="v") }}]: \
|
[{{ release.version | trim_start_matches(pat="v") }}]: \
|
||||||
https://github.com/chatmail/core\
|
https://github.com/deltachat/deltachat-core-rust\
|
||||||
/compare/{{ release.previous.version }}..{{ release.version }}
|
/compare/{{ release.previous.version }}..{{ release.version }}
|
||||||
{% endif -%}
|
{% endif -%}
|
||||||
{% else -%}
|
{% else -%}
|
||||||
[unreleased]: https://github.com/chatmail/core\
|
[unreleased]: https://github.com/deltachat/deltachat-core-rust\
|
||||||
/compare/{{ release.previous.version }}..HEAD
|
/compare/{{ release.previous.version }}..HEAD
|
||||||
{% endif -%}
|
{% endif -%}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|||||||
80
contrib/proxy.py
Normal file
80
contrib/proxy.py
Normal file
@@ -0,0 +1,80 @@
|
|||||||
|
#!/usr/bin/env python3
|
||||||
|
# Examples:
|
||||||
|
#
|
||||||
|
# Original server that doesn't use SSL:
|
||||||
|
# ./proxy.py 8080 imap.nauta.cu 143
|
||||||
|
# ./proxy.py 8081 smtp.nauta.cu 25
|
||||||
|
#
|
||||||
|
# Original server that uses SSL:
|
||||||
|
# ./proxy.py 8080 testrun.org 993 --ssl
|
||||||
|
# ./proxy.py 8081 testrun.org 465 --ssl
|
||||||
|
|
||||||
|
from datetime import datetime
|
||||||
|
import argparse
|
||||||
|
import selectors
|
||||||
|
import ssl
|
||||||
|
import socket
|
||||||
|
import socketserver
|
||||||
|
|
||||||
|
|
||||||
|
class Proxy(socketserver.ThreadingTCPServer):
|
||||||
|
allow_reuse_address = True
|
||||||
|
|
||||||
|
def __init__(self, proxy_host, proxy_port, real_host, real_port, use_ssl):
|
||||||
|
self.real_host = real_host
|
||||||
|
self.real_port = real_port
|
||||||
|
self.use_ssl = use_ssl
|
||||||
|
super().__init__((proxy_host, proxy_port), RequestHandler)
|
||||||
|
|
||||||
|
|
||||||
|
class RequestHandler(socketserver.BaseRequestHandler):
|
||||||
|
|
||||||
|
def handle(self):
|
||||||
|
print('{} - {} CONNECTED.'.format(datetime.now(), self.client_address))
|
||||||
|
|
||||||
|
total = 0
|
||||||
|
real_server = (self.server.real_host, self.server.real_port)
|
||||||
|
with socket.create_connection(real_server) as sock:
|
||||||
|
if self.server.use_ssl:
|
||||||
|
context = ssl.create_default_context()
|
||||||
|
sock = context.wrap_socket(
|
||||||
|
sock, server_hostname=real_server[0])
|
||||||
|
|
||||||
|
forward = {self.request: sock, sock: self.request}
|
||||||
|
|
||||||
|
sel = selectors.DefaultSelector()
|
||||||
|
sel.register(self.request, selectors.EVENT_READ,
|
||||||
|
self.client_address)
|
||||||
|
sel.register(sock, selectors.EVENT_READ, real_server)
|
||||||
|
|
||||||
|
active = True
|
||||||
|
while active:
|
||||||
|
events = sel.select()
|
||||||
|
for key, mask in events:
|
||||||
|
print('\n{} - {} wrote:'.format(datetime.now(), key.data))
|
||||||
|
data = key.fileobj.recv(1024)
|
||||||
|
received = len(data)
|
||||||
|
total += received
|
||||||
|
print(data)
|
||||||
|
print('{} Bytes\nTotal: {} Bytes'.format(received, total))
|
||||||
|
if data:
|
||||||
|
forward[key.fileobj].sendall(data)
|
||||||
|
else:
|
||||||
|
print('\nCLOSING CONNECTION.\n\n')
|
||||||
|
forward[key.fileobj].close()
|
||||||
|
key.fileobj.close()
|
||||||
|
active = False
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
p = argparse.ArgumentParser(description='Simple Python Proxy')
|
||||||
|
p.add_argument(
|
||||||
|
"proxy_port", help="the port where the proxy will listen", type=int)
|
||||||
|
p.add_argument('host', help="the real host")
|
||||||
|
p.add_argument('port', help="the port of the real host", type=int)
|
||||||
|
p.add_argument("--ssl", help="use ssl to connect to the real host",
|
||||||
|
action="store_true")
|
||||||
|
args = p.parse_args()
|
||||||
|
|
||||||
|
with Proxy('', args.proxy_port, args.host, args.port, args.ssl) as proxy:
|
||||||
|
proxy.serve_forever()
|
||||||
@@ -9,9 +9,10 @@ license = "MPL-2.0"
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow = { workspace = true }
|
anyhow = { workspace = true }
|
||||||
|
once_cell = { workspace = true }
|
||||||
regex = { workspace = true }
|
regex = { workspace = true }
|
||||||
rusqlite = { workspace = true } # Needed in order to `impl rusqlite::types::ToSql for EmailAddress`. Could easily be put behind a feature.
|
rusqlite = { workspace = true } # Needed in order to `impl rusqlite::types::ToSql for EmailAddress`. Could easily be put behind a feature.
|
||||||
chrono = { workspace = true, features = ["alloc", "clock", "std"] }
|
chrono = { workspace = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
anyhow = { workspace = true, features = ["backtrace"] } # Enable `backtrace` feature in tests.
|
anyhow = { workspace = true, features = ["backtrace"] } # Enable `backtrace` feature in tests.
|
||||||
|
|||||||
@@ -15,28 +15,208 @@
|
|||||||
clippy::explicit_into_iter_loop,
|
clippy::explicit_into_iter_loop,
|
||||||
clippy::cloned_instead_of_copied
|
clippy::cloned_instead_of_copied
|
||||||
)]
|
)]
|
||||||
#![cfg_attr(not(test), forbid(clippy::indexing_slicing))]
|
#![cfg_attr(not(test), warn(clippy::indexing_slicing))]
|
||||||
#![cfg_attr(not(test), forbid(clippy::string_slice))]
|
|
||||||
#![allow(
|
#![allow(
|
||||||
clippy::match_bool,
|
clippy::match_bool,
|
||||||
clippy::mixed_read_write_in_expression,
|
clippy::mixed_read_write_in_expression,
|
||||||
clippy::bool_assert_comparison,
|
clippy::bool_assert_comparison,
|
||||||
clippy::manual_split_once,
|
clippy::manual_split_once,
|
||||||
clippy::format_push_string,
|
clippy::format_push_string,
|
||||||
clippy::bool_to_int_with_if,
|
clippy::bool_to_int_with_if
|
||||||
clippy::manual_range_contains
|
|
||||||
)]
|
)]
|
||||||
|
|
||||||
use std::fmt;
|
use std::fmt;
|
||||||
use std::ops::Deref;
|
use std::ops::Deref;
|
||||||
use std::sync::LazyLock;
|
|
||||||
|
|
||||||
use anyhow::bail;
|
use anyhow::bail;
|
||||||
|
use anyhow::Context as _;
|
||||||
use anyhow::Result;
|
use anyhow::Result;
|
||||||
|
use chrono::{DateTime, NaiveDateTime};
|
||||||
|
use once_cell::sync::Lazy;
|
||||||
use regex::Regex;
|
use regex::Regex;
|
||||||
|
|
||||||
mod vcard;
|
// TODOs to clean up:
|
||||||
pub use vcard::{make_vcard, parse_vcard, VcardContact};
|
// - Check if sanitizing is done correctly everywhere
|
||||||
|
// - Apply lints everywhere (https://doc.rust-lang.org/cargo/reference/workspaces.html#the-lints-table)
|
||||||
|
|
||||||
|
#[derive(Debug)]
|
||||||
|
/// A Contact, as represented in a VCard.
|
||||||
|
pub struct VcardContact {
|
||||||
|
/// The email address, vcard property `email`
|
||||||
|
pub addr: String,
|
||||||
|
/// This must be the name authorized by the contact itself, not a locally given name. Vcard
|
||||||
|
/// property `fn`. Can be empty, one should use `display_name()` to obtain the display name.
|
||||||
|
pub authname: String,
|
||||||
|
/// The contact's public PGP key in Base64, vcard property `key`
|
||||||
|
pub key: Option<String>,
|
||||||
|
/// The contact's profile image (=avatar) in Base64, vcard property `photo`
|
||||||
|
pub profile_image: Option<String>,
|
||||||
|
/// The timestamp when the vcard was created / last updated, vcard property `rev`
|
||||||
|
pub timestamp: Result<i64>,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl VcardContact {
|
||||||
|
/// Returns the contact's display name.
|
||||||
|
pub fn display_name(&self) -> &str {
|
||||||
|
match self.authname.is_empty() {
|
||||||
|
false => &self.authname,
|
||||||
|
true => &self.addr,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Returns a vCard containing given contacts.
|
||||||
|
///
|
||||||
|
/// Calling [`parse_vcard()`] on the returned result is a reverse operation.
|
||||||
|
pub fn make_vcard(contacts: &[VcardContact]) -> String {
|
||||||
|
fn format_timestamp(c: &VcardContact) -> Option<String> {
|
||||||
|
let timestamp = *c.timestamp.as_ref().ok()?;
|
||||||
|
let datetime = DateTime::from_timestamp(timestamp, 0)?;
|
||||||
|
Some(datetime.format("%Y%m%dT%H%M%SZ").to_string())
|
||||||
|
}
|
||||||
|
|
||||||
|
let mut res = "".to_string();
|
||||||
|
for c in contacts {
|
||||||
|
let addr = &c.addr;
|
||||||
|
let display_name = c.display_name();
|
||||||
|
res += &format!(
|
||||||
|
"BEGIN:VCARD\n\
|
||||||
|
VERSION:4.0\n\
|
||||||
|
EMAIL:{addr}\n\
|
||||||
|
FN:{display_name}\n"
|
||||||
|
);
|
||||||
|
if let Some(key) = &c.key {
|
||||||
|
res += &format!("KEY:data:application/pgp-keys;base64,{key}\n");
|
||||||
|
}
|
||||||
|
if let Some(profile_image) = &c.profile_image {
|
||||||
|
res += &format!("PHOTO:data:image/jpeg;base64,{profile_image}\n");
|
||||||
|
}
|
||||||
|
if let Some(timestamp) = format_timestamp(c) {
|
||||||
|
res += &format!("REV:{timestamp}\n");
|
||||||
|
}
|
||||||
|
res += "END:VCARD\n";
|
||||||
|
}
|
||||||
|
res
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Parses `VcardContact`s from a given `&str`.
|
||||||
|
pub fn parse_vcard(vcard: &str) -> Vec<VcardContact> {
|
||||||
|
fn remove_prefix<'a>(s: &'a str, prefix: &str) -> Option<&'a str> {
|
||||||
|
let start_of_s = s.get(..prefix.len())?;
|
||||||
|
|
||||||
|
if start_of_s.eq_ignore_ascii_case(prefix) {
|
||||||
|
s.get(prefix.len()..)
|
||||||
|
} else {
|
||||||
|
None
|
||||||
|
}
|
||||||
|
}
|
||||||
|
fn vcard_property<'a>(s: &'a str, property: &str) -> Option<&'a str> {
|
||||||
|
let remainder = remove_prefix(s, property)?;
|
||||||
|
// If `s` is `EMAIL;TYPE=work:alice@example.com` and `property` is `EMAIL`,
|
||||||
|
// then `remainder` is now `;TYPE=work:alice@example.com`
|
||||||
|
|
||||||
|
// TODO this doesn't handle the case where there are quotes around a colon
|
||||||
|
let (params, value) = remainder.split_once(':')?;
|
||||||
|
// In the example from above, `params` is now `;TYPE=work`
|
||||||
|
// and `value` is now `alice@example.com`
|
||||||
|
|
||||||
|
if params
|
||||||
|
.chars()
|
||||||
|
.next()
|
||||||
|
.filter(|c| !c.is_ascii_punctuation() || *c == '_')
|
||||||
|
.is_some()
|
||||||
|
{
|
||||||
|
// `s` started with `property`, but the next character after it was not punctuation,
|
||||||
|
// so this line's property is actually something else
|
||||||
|
return None;
|
||||||
|
}
|
||||||
|
Some(value)
|
||||||
|
}
|
||||||
|
fn parse_datetime(datetime: &str) -> Result<i64> {
|
||||||
|
// According to https://www.rfc-editor.org/rfc/rfc6350#section-4.3.5, the timestamp
|
||||||
|
// is in ISO.8601.2004 format. DateTime::parse_from_rfc3339() apparently parses
|
||||||
|
// ISO.8601, but fails to parse any of the examples given.
|
||||||
|
// So, instead just parse using a format string.
|
||||||
|
|
||||||
|
// Parses 19961022T140000Z, 19961022T140000-05, or 19961022T140000-0500.
|
||||||
|
let timestamp = match DateTime::parse_from_str(datetime, "%Y%m%dT%H%M%S%#z") {
|
||||||
|
Ok(datetime) => datetime.timestamp(),
|
||||||
|
// Parses 19961022T140000.
|
||||||
|
Err(e) => match NaiveDateTime::parse_from_str(datetime, "%Y%m%dT%H%M%S") {
|
||||||
|
Ok(datetime) => datetime
|
||||||
|
.and_local_timezone(chrono::offset::Local)
|
||||||
|
.single()
|
||||||
|
.context("Could not apply local timezone to parsed date and time")?
|
||||||
|
.timestamp(),
|
||||||
|
Err(_) => return Err(e.into()),
|
||||||
|
},
|
||||||
|
};
|
||||||
|
Ok(timestamp)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Remove line folding, see https://datatracker.ietf.org/doc/html/rfc6350#section-3.2
|
||||||
|
static NEWLINE_AND_SPACE_OR_TAB: Lazy<Regex> = Lazy::new(|| Regex::new("\r?\n[\t ]").unwrap());
|
||||||
|
let unfolded_lines = NEWLINE_AND_SPACE_OR_TAB.replace_all(vcard, "");
|
||||||
|
|
||||||
|
let mut lines = unfolded_lines.lines().peekable();
|
||||||
|
let mut contacts = Vec::new();
|
||||||
|
|
||||||
|
while lines.peek().is_some() {
|
||||||
|
// Skip to the start of the vcard:
|
||||||
|
for line in lines.by_ref() {
|
||||||
|
if line.eq_ignore_ascii_case("BEGIN:VCARD") {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
let mut display_name = None;
|
||||||
|
let mut addr = None;
|
||||||
|
let mut key = None;
|
||||||
|
let mut photo = None;
|
||||||
|
let mut datetime = None;
|
||||||
|
|
||||||
|
for line in lines.by_ref() {
|
||||||
|
if let Some(email) = vcard_property(line, "email") {
|
||||||
|
addr.get_or_insert(email);
|
||||||
|
} else if let Some(name) = vcard_property(line, "fn") {
|
||||||
|
display_name.get_or_insert(name);
|
||||||
|
} else if let Some(k) = remove_prefix(line, "KEY;PGP;ENCODING=BASE64:")
|
||||||
|
.or_else(|| remove_prefix(line, "KEY;TYPE=PGP;ENCODING=b:"))
|
||||||
|
.or_else(|| remove_prefix(line, "KEY:data:application/pgp-keys;base64,"))
|
||||||
|
{
|
||||||
|
key.get_or_insert(k);
|
||||||
|
} else if let Some(p) = remove_prefix(line, "PHOTO;JPEG;ENCODING=BASE64:")
|
||||||
|
.or_else(|| remove_prefix(line, "PHOTO;ENCODING=BASE64;JPEG:"))
|
||||||
|
.or_else(|| remove_prefix(line, "PHOTO;TYPE=JPEG;ENCODING=b:"))
|
||||||
|
.or_else(|| remove_prefix(line, "PHOTO;ENCODING=b;TYPE=JPEG:"))
|
||||||
|
.or_else(|| remove_prefix(line, "PHOTO;ENCODING=BASE64;TYPE=JPEG:"))
|
||||||
|
.or_else(|| remove_prefix(line, "PHOTO;TYPE=JPEG;ENCODING=BASE64:"))
|
||||||
|
.or_else(|| remove_prefix(line, "PHOTO:data:image/jpeg;base64,"))
|
||||||
|
{
|
||||||
|
photo.get_or_insert(p);
|
||||||
|
} else if let Some(rev) = vcard_property(line, "rev") {
|
||||||
|
datetime.get_or_insert(rev);
|
||||||
|
} else if line.eq_ignore_ascii_case("END:VCARD") {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
let (authname, addr) =
|
||||||
|
sanitize_name_and_addr(display_name.unwrap_or(""), addr.unwrap_or(""));
|
||||||
|
|
||||||
|
contacts.push(VcardContact {
|
||||||
|
authname,
|
||||||
|
addr,
|
||||||
|
key: key.map(|s| s.to_string()),
|
||||||
|
profile_image: photo.map(|s| s.to_string()),
|
||||||
|
timestamp: datetime
|
||||||
|
.context("No timestamp in vcard")
|
||||||
|
.and_then(parse_datetime),
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
contacts
|
||||||
|
}
|
||||||
|
|
||||||
/// Valid contact address.
|
/// Valid contact address.
|
||||||
#[derive(Debug, Clone)]
|
#[derive(Debug, Clone)]
|
||||||
@@ -83,28 +263,27 @@ impl rusqlite::types::ToSql for ContactAddress {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Takes a name and an address and sanitizes them:
|
/// Make the name and address
|
||||||
/// - Extracts a name from the addr if the addr is in form "Alice <alice@example.org>"
|
|
||||||
/// - Removes special characters from the name, see [`sanitize_name()`]
|
|
||||||
/// - Removes the name if it is equal to the address by setting it to ""
|
|
||||||
pub fn sanitize_name_and_addr(name: &str, addr: &str) -> (String, String) {
|
pub fn sanitize_name_and_addr(name: &str, addr: &str) -> (String, String) {
|
||||||
static ADDR_WITH_NAME_REGEX: LazyLock<Regex> =
|
static ADDR_WITH_NAME_REGEX: Lazy<Regex> = Lazy::new(|| Regex::new("(.*)<(.*)>").unwrap());
|
||||||
LazyLock::new(|| Regex::new("(.*)<(.*)>").unwrap());
|
|
||||||
let (name, addr) = if let Some(captures) = ADDR_WITH_NAME_REGEX.captures(addr.as_ref()) {
|
let (name, addr) = if let Some(captures) = ADDR_WITH_NAME_REGEX.captures(addr.as_ref()) {
|
||||||
(
|
(
|
||||||
if name.is_empty() {
|
if name.is_empty() {
|
||||||
captures.get(1).map_or("", |m| m.as_str())
|
strip_rtlo_characters(captures.get(1).map_or("", |m| m.as_str()))
|
||||||
} else {
|
} else {
|
||||||
name
|
strip_rtlo_characters(name)
|
||||||
},
|
},
|
||||||
captures
|
captures
|
||||||
.get(2)
|
.get(2)
|
||||||
.map_or("".to_string(), |m| m.as_str().to_string()),
|
.map_or("".to_string(), |m| m.as_str().to_string()),
|
||||||
)
|
)
|
||||||
} else {
|
} else {
|
||||||
(name, addr.to_string())
|
(
|
||||||
|
strip_rtlo_characters(&normalize_name(name)),
|
||||||
|
addr.to_string(),
|
||||||
|
)
|
||||||
};
|
};
|
||||||
let mut name = sanitize_name(name);
|
let mut name = normalize_name(&name);
|
||||||
|
|
||||||
// If the 'display name' is just the address, remove it:
|
// If the 'display name' is just the address, remove it:
|
||||||
// Otherwise, the contact would sometimes be shown as "alice@example.com (alice@example.com)" (see `get_name_n_addr()`).
|
// Otherwise, the contact would sometimes be shown as "alice@example.com (alice@example.com)" (see `get_name_n_addr()`).
|
||||||
@@ -116,77 +295,31 @@ pub fn sanitize_name_and_addr(name: &str, addr: &str) -> (String, String) {
|
|||||||
(name, addr)
|
(name, addr)
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Sanitizes a name.
|
/// Normalize a name.
|
||||||
///
|
///
|
||||||
/// - Removes newlines and trims the string
|
/// - Remove quotes (come from some bad MUA implementations)
|
||||||
/// - Removes quotes (come from some bad MUA implementations)
|
/// - Trims the resulting string
|
||||||
/// - Removes potentially-malicious bidi characters
|
///
|
||||||
pub fn sanitize_name(name: &str) -> String {
|
/// Typically, this function is not needed as it is called implicitly by `Contact::add_address_book`.
|
||||||
let name = sanitize_single_line(name);
|
pub fn normalize_name(full_name: &str) -> String {
|
||||||
|
let full_name = full_name.trim();
|
||||||
match name.as_bytes() {
|
if full_name.is_empty() {
|
||||||
[b'\'', .., b'\''] | [b'\"', .., b'\"'] | [b'<', .., b'>'] => name
|
return full_name.into();
|
||||||
.get(1..name.len() - 1)
|
|
||||||
.map_or("".to_string(), |s| s.trim().to_string()),
|
|
||||||
_ => name.to_string(),
|
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
/// Sanitizes user input
|
match full_name.as_bytes() {
|
||||||
///
|
[b'\'', .., b'\''] | [b'\"', .., b'\"'] | [b'<', .., b'>'] => full_name
|
||||||
/// - Removes newlines and trims the string
|
.get(1..full_name.len() - 1)
|
||||||
/// - Removes potentially-malicious bidi characters
|
.map_or("".to_string(), |s| s.trim().to_string()),
|
||||||
pub fn sanitize_single_line(input: &str) -> String {
|
_ => full_name.to_string(),
|
||||||
sanitize_bidi_characters(input.replace(['\n', '\r'], " ").trim())
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const RTLO_CHARACTERS: [char; 5] = ['\u{202A}', '\u{202B}', '\u{202C}', '\u{202D}', '\u{202E}'];
|
const RTLO_CHARACTERS: [char; 5] = ['\u{202A}', '\u{202B}', '\u{202C}', '\u{202D}', '\u{202E}'];
|
||||||
const ISOLATE_CHARACTERS: [char; 3] = ['\u{2066}', '\u{2067}', '\u{2068}'];
|
/// This method strips all occurrences of the RTLO Unicode character.
|
||||||
const POP_ISOLATE_CHARACTER: char = '\u{2069}';
|
/// [Why is this needed](https://github.com/deltachat/deltachat-core-rust/issues/3479)?
|
||||||
/// Some control unicode characters can influence whether adjacent text is shown from
|
pub fn strip_rtlo_characters(input_str: &str) -> String {
|
||||||
/// left to right or from right to left.
|
input_str.replace(|char| RTLO_CHARACTERS.contains(&char), "")
|
||||||
///
|
|
||||||
/// Since user input is not supposed to influence how adjacent text looks,
|
|
||||||
/// this function removes some of these characters.
|
|
||||||
///
|
|
||||||
/// Also see https://github.com/deltachat/deltachat-core-rust/issues/3479.
|
|
||||||
pub fn sanitize_bidi_characters(input_str: &str) -> String {
|
|
||||||
// RTLO_CHARACTERS are apparently rarely used in practice.
|
|
||||||
// They can impact all following text, so, better remove them all:
|
|
||||||
let input_str = input_str.replace(|char| RTLO_CHARACTERS.contains(&char), "");
|
|
||||||
|
|
||||||
// If the ISOLATE characters are not ended with a POP DIRECTIONAL ISOLATE character,
|
|
||||||
// we regard the input as potentially malicious and simply remove all ISOLATE characters.
|
|
||||||
// See https://en.wikipedia.org/wiki/Bidirectional_text#Unicode_bidi_support
|
|
||||||
// and https://www.w3.org/International/questions/qa-bidi-unicode-controls.en
|
|
||||||
// for an explanation about ISOLATE characters.
|
|
||||||
fn isolate_characters_are_valid(input_str: &str) -> bool {
|
|
||||||
let mut isolate_character_nesting: i32 = 0;
|
|
||||||
for char in input_str.chars() {
|
|
||||||
if ISOLATE_CHARACTERS.contains(&char) {
|
|
||||||
isolate_character_nesting += 1;
|
|
||||||
} else if char == POP_ISOLATE_CHARACTER {
|
|
||||||
isolate_character_nesting -= 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
// According to Wikipedia, 125 levels are allowed:
|
|
||||||
// https://en.wikipedia.org/wiki/Unicode_control_characters
|
|
||||||
// (although, in practice, we could also significantly lower this number)
|
|
||||||
if isolate_character_nesting < 0 || isolate_character_nesting > 125 {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
isolate_character_nesting == 0
|
|
||||||
}
|
|
||||||
|
|
||||||
if isolate_characters_are_valid(&input_str) {
|
|
||||||
input_str
|
|
||||||
} else {
|
|
||||||
input_str.replace(
|
|
||||||
|char| ISOLATE_CHARACTERS.contains(&char) || POP_ISOLATE_CHARACTER == char,
|
|
||||||
"",
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Returns false if addr is an invalid address, otherwise true.
|
/// Returns false if addr is an invalid address, otherwise true.
|
||||||
@@ -291,8 +424,124 @@ impl rusqlite::types::ToSql for EmailAddress {
|
|||||||
|
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
mod tests {
|
mod tests {
|
||||||
|
use chrono::TimeZone;
|
||||||
|
|
||||||
use super::*;
|
use super::*;
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_vcard_thunderbird() {
|
||||||
|
let contacts = parse_vcard(
|
||||||
|
"BEGIN:VCARD
|
||||||
|
VERSION:4.0
|
||||||
|
FN:'Alice Mueller'
|
||||||
|
EMAIL;PREF=1:alice.mueller@posteo.de
|
||||||
|
UID:a8083264-ca47-4be7-98a8-8ec3db1447ca
|
||||||
|
END:VCARD
|
||||||
|
BEGIN:VCARD
|
||||||
|
VERSION:4.0
|
||||||
|
FN:'bobzzz@freenet.de'
|
||||||
|
EMAIL;PREF=1:bobzzz@freenet.de
|
||||||
|
UID:cac4fef4-6351-4854-bbe4-9b6df857eaed
|
||||||
|
END:VCARD
|
||||||
|
",
|
||||||
|
);
|
||||||
|
|
||||||
|
assert_eq!(contacts[0].addr, "alice.mueller@posteo.de".to_string());
|
||||||
|
assert_eq!(contacts[0].authname, "Alice Mueller".to_string());
|
||||||
|
assert_eq!(contacts[0].key, None);
|
||||||
|
assert_eq!(contacts[0].profile_image, None);
|
||||||
|
assert!(contacts[0].timestamp.is_err());
|
||||||
|
|
||||||
|
assert_eq!(contacts[1].addr, "bobzzz@freenet.de".to_string());
|
||||||
|
assert_eq!(contacts[1].authname, "".to_string());
|
||||||
|
assert_eq!(contacts[1].key, None);
|
||||||
|
assert_eq!(contacts[1].profile_image, None);
|
||||||
|
assert!(contacts[1].timestamp.is_err());
|
||||||
|
|
||||||
|
assert_eq!(contacts.len(), 2);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_vcard_simple_example() {
|
||||||
|
let contacts = parse_vcard(
|
||||||
|
"BEGIN:VCARD
|
||||||
|
VERSION:4.0
|
||||||
|
FN:Alice Wonderland
|
||||||
|
N:Wonderland;Alice;;;Ms.
|
||||||
|
GENDER:W
|
||||||
|
EMAIL;TYPE=work:alice@example.com
|
||||||
|
KEY;TYPE=PGP;ENCODING=b:[base64-data]
|
||||||
|
REV:20240418T184242Z
|
||||||
|
|
||||||
|
END:VCARD",
|
||||||
|
);
|
||||||
|
|
||||||
|
assert_eq!(contacts[0].addr, "alice@example.com".to_string());
|
||||||
|
assert_eq!(contacts[0].authname, "Alice Wonderland".to_string());
|
||||||
|
assert_eq!(contacts[0].key, Some("[base64-data]".to_string()));
|
||||||
|
assert_eq!(contacts[0].profile_image, None);
|
||||||
|
assert_eq!(*contacts[0].timestamp.as_ref().unwrap(), 1713465762);
|
||||||
|
|
||||||
|
assert_eq!(contacts.len(), 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_make_and_parse_vcard() {
|
||||||
|
let contacts = [
|
||||||
|
VcardContact {
|
||||||
|
addr: "alice@example.org".to_string(),
|
||||||
|
authname: "Alice Wonderland".to_string(),
|
||||||
|
key: Some("[base64-data]".to_string()),
|
||||||
|
profile_image: Some("image in Base64".to_string()),
|
||||||
|
timestamp: Ok(1713465762),
|
||||||
|
},
|
||||||
|
VcardContact {
|
||||||
|
addr: "bob@example.com".to_string(),
|
||||||
|
authname: "".to_string(),
|
||||||
|
key: None,
|
||||||
|
profile_image: None,
|
||||||
|
timestamp: Ok(0),
|
||||||
|
},
|
||||||
|
];
|
||||||
|
let items = [
|
||||||
|
"BEGIN:VCARD\n\
|
||||||
|
VERSION:4.0\n\
|
||||||
|
EMAIL:alice@example.org\n\
|
||||||
|
FN:Alice Wonderland\n\
|
||||||
|
KEY:data:application/pgp-keys;base64,[base64-data]\n\
|
||||||
|
PHOTO:data:image/jpeg;base64,image in Base64\n\
|
||||||
|
REV:20240418T184242Z\n\
|
||||||
|
END:VCARD\n",
|
||||||
|
"BEGIN:VCARD\n\
|
||||||
|
VERSION:4.0\n\
|
||||||
|
EMAIL:bob@example.com\n\
|
||||||
|
FN:bob@example.com\n\
|
||||||
|
REV:19700101T000000Z\n\
|
||||||
|
END:VCARD\n",
|
||||||
|
];
|
||||||
|
let mut expected = "".to_string();
|
||||||
|
for len in 0..=contacts.len() {
|
||||||
|
let contacts = &contacts[0..len];
|
||||||
|
let vcard = make_vcard(contacts);
|
||||||
|
if len > 0 {
|
||||||
|
expected += items[len - 1];
|
||||||
|
}
|
||||||
|
assert_eq!(vcard, expected);
|
||||||
|
let parsed = parse_vcard(&vcard);
|
||||||
|
assert_eq!(parsed.len(), contacts.len());
|
||||||
|
for i in 0..parsed.len() {
|
||||||
|
assert_eq!(parsed[i].addr, contacts[i].addr);
|
||||||
|
assert_eq!(parsed[i].authname, contacts[i].authname);
|
||||||
|
assert_eq!(parsed[i].key, contacts[i].key);
|
||||||
|
assert_eq!(parsed[i].profile_image, contacts[i].profile_image);
|
||||||
|
assert_eq!(
|
||||||
|
parsed[i].timestamp.as_ref().unwrap(),
|
||||||
|
contacts[i].timestamp.as_ref().unwrap()
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_contact_address() -> Result<()> {
|
fn test_contact_address() -> Result<()> {
|
||||||
let alice_addr = "alice@example.org";
|
let alice_addr = "alice@example.org";
|
||||||
@@ -340,62 +589,83 @@ mod tests {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_sanitize_name() {
|
fn test_vcard_android() {
|
||||||
assert_eq!(&sanitize_name(" hello world "), "hello world");
|
let contacts = parse_vcard(
|
||||||
assert_eq!(&sanitize_name("<"), "<");
|
"BEGIN:VCARD
|
||||||
assert_eq!(&sanitize_name(">"), ">");
|
VERSION:2.1
|
||||||
assert_eq!(&sanitize_name("'"), "'");
|
N:;Bob;;;
|
||||||
assert_eq!(&sanitize_name("\""), "\"");
|
FN:Bob
|
||||||
|
TEL;CELL:+1-234-567-890
|
||||||
|
EMAIL;HOME:bob@example.org
|
||||||
|
END:VCARD
|
||||||
|
BEGIN:VCARD
|
||||||
|
VERSION:2.1
|
||||||
|
N:;Alice;;;
|
||||||
|
FN:Alice
|
||||||
|
EMAIL;HOME:alice@example.org
|
||||||
|
END:VCARD
|
||||||
|
",
|
||||||
|
);
|
||||||
|
|
||||||
|
assert_eq!(contacts[0].addr, "bob@example.org".to_string());
|
||||||
|
assert_eq!(contacts[0].authname, "Bob".to_string());
|
||||||
|
assert_eq!(contacts[0].key, None);
|
||||||
|
assert_eq!(contacts[0].profile_image, None);
|
||||||
|
|
||||||
|
assert_eq!(contacts[1].addr, "alice@example.org".to_string());
|
||||||
|
assert_eq!(contacts[1].authname, "Alice".to_string());
|
||||||
|
assert_eq!(contacts[1].key, None);
|
||||||
|
assert_eq!(contacts[1].profile_image, None);
|
||||||
|
|
||||||
|
assert_eq!(contacts.len(), 2);
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_sanitize_single_line() {
|
fn test_vcard_local_datetime() {
|
||||||
assert_eq!(sanitize_single_line("Hi\naiae "), "Hi aiae");
|
let contacts = parse_vcard(
|
||||||
assert_eq!(sanitize_single_line("\r\nahte\n\r"), "ahte");
|
"BEGIN:VCARD\n\
|
||||||
|
VERSION:4.0\n\
|
||||||
|
FN:Alice Wonderland\n\
|
||||||
|
EMAIL;TYPE=work:alice@example.org\n\
|
||||||
|
REV:20240418T184242\n\
|
||||||
|
END:VCARD",
|
||||||
|
);
|
||||||
|
assert_eq!(contacts.len(), 1);
|
||||||
|
assert_eq!(contacts[0].addr, "alice@example.org".to_string());
|
||||||
|
assert_eq!(contacts[0].authname, "Alice Wonderland".to_string());
|
||||||
|
assert_eq!(
|
||||||
|
*contacts[0].timestamp.as_ref().unwrap(),
|
||||||
|
chrono::offset::Local
|
||||||
|
.with_ymd_and_hms(2024, 4, 18, 18, 42, 42)
|
||||||
|
.unwrap()
|
||||||
|
.timestamp()
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_sanitize_bidi_characters() {
|
fn test_vcard_with_base64_avatar() {
|
||||||
// Legit inputs:
|
// This is not an actual base64-encoded avatar, it's just to test the parsing.
|
||||||
assert_eq!(
|
// This one is Android-like.
|
||||||
&sanitize_bidi_characters("Tes\u{2067}ting Delta Chat\u{2069}"),
|
let vcard0 = "BEGIN:VCARD
|
||||||
"Tes\u{2067}ting Delta Chat\u{2069}"
|
VERSION:2.1
|
||||||
);
|
N:;Bob;;;
|
||||||
|
FN:Bob
|
||||||
|
EMAIL;HOME:bob@example.org
|
||||||
|
PHOTO;ENCODING=BASE64;JPEG:/9j/4AAQSkZJRgABAQAAAQABAAD/4gIoSUNDX1BST0ZJTEU
|
||||||
|
AAQEAAAIYAAAAAAQwAABtbnRyUkdCIFhZWiAAAAAAAAAAAAAAAABhY3NwAAAAAAAAAAAAAAAA
|
||||||
|
L8bRuAJYoZUYrI4ZY3VWwxw4Ay28AAGBISScmf/2Q==
|
||||||
|
|
||||||
assert_eq!(
|
END:VCARD
|
||||||
&sanitize_bidi_characters("Tes\u{2067}ting \u{2068} Delta Chat\u{2069}\u{2069}"),
|
";
|
||||||
"Tes\u{2067}ting \u{2068} Delta Chat\u{2069}\u{2069}"
|
// This one is DOS-like.
|
||||||
);
|
let vcard1 = vcard0.replace('\n', "\r\n");
|
||||||
|
for vcard in [vcard0, vcard1.as_str()] {
|
||||||
assert_eq!(
|
let contacts = parse_vcard(vcard);
|
||||||
&sanitize_bidi_characters("Tes\u{2067}ting\u{2069} Delta Chat\u{2067}\u{2069}"),
|
assert_eq!(contacts.len(), 1);
|
||||||
"Tes\u{2067}ting\u{2069} Delta Chat\u{2067}\u{2069}"
|
assert_eq!(contacts[0].addr, "bob@example.org".to_string());
|
||||||
);
|
assert_eq!(contacts[0].authname, "Bob".to_string());
|
||||||
|
assert_eq!(contacts[0].key, None);
|
||||||
// Potentially-malicious inputs:
|
assert_eq!(contacts[0].profile_image.as_deref().unwrap(), "/9j/4AAQSkZJRgABAQAAAQABAAD/4gIoSUNDX1BST0ZJTEUAAQEAAAIYAAAAAAQwAABtbnRyUkdCIFhZWiAAAAAAAAAAAAAAAABhY3NwAAAAAAAAAAAAAAAAL8bRuAJYoZUYrI4ZY3VWwxw4Ay28AAGBISScmf/2Q==");
|
||||||
assert_eq!(
|
}
|
||||||
&sanitize_bidi_characters("Tes\u{202C}ting Delta Chat"),
|
|
||||||
"Testing Delta Chat"
|
|
||||||
);
|
|
||||||
|
|
||||||
assert_eq!(
|
|
||||||
&sanitize_bidi_characters("Testing Delta Chat\u{2069}"),
|
|
||||||
"Testing Delta Chat"
|
|
||||||
);
|
|
||||||
|
|
||||||
assert_eq!(
|
|
||||||
&sanitize_bidi_characters("Tes\u{2067}ting Delta Chat"),
|
|
||||||
"Testing Delta Chat"
|
|
||||||
);
|
|
||||||
|
|
||||||
assert_eq!(
|
|
||||||
&sanitize_bidi_characters("Tes\u{2069}ting Delta Chat\u{2067}"),
|
|
||||||
"Testing Delta Chat"
|
|
||||||
);
|
|
||||||
|
|
||||||
assert_eq!(
|
|
||||||
&sanitize_bidi_characters("Tes\u{2068}ting Delta Chat"),
|
|
||||||
"Testing Delta Chat"
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,232 +0,0 @@
|
|||||||
use std::sync::LazyLock;
|
|
||||||
|
|
||||||
use anyhow::Context as _;
|
|
||||||
use anyhow::Result;
|
|
||||||
use chrono::DateTime;
|
|
||||||
use chrono::NaiveDateTime;
|
|
||||||
use regex::Regex;
|
|
||||||
|
|
||||||
use crate::sanitize_name_and_addr;
|
|
||||||
|
|
||||||
#[derive(Debug)]
|
|
||||||
/// A Contact, as represented in a VCard.
|
|
||||||
pub struct VcardContact {
|
|
||||||
/// The email address, vcard property `email`
|
|
||||||
pub addr: String,
|
|
||||||
/// This must be the name authorized by the contact itself, not a locally given name. Vcard
|
|
||||||
/// property `fn`. Can be empty, one should use `display_name()` to obtain the display name.
|
|
||||||
pub authname: String,
|
|
||||||
/// The contact's public PGP key in Base64, vcard property `key`
|
|
||||||
pub key: Option<String>,
|
|
||||||
/// The contact's profile image (=avatar) in Base64, vcard property `photo`
|
|
||||||
pub profile_image: Option<String>,
|
|
||||||
/// The timestamp when the vcard was created / last updated, vcard property `rev`
|
|
||||||
pub timestamp: Result<i64>,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl VcardContact {
|
|
||||||
/// Returns the contact's display name.
|
|
||||||
pub fn display_name(&self) -> &str {
|
|
||||||
match self.authname.is_empty() {
|
|
||||||
false => &self.authname,
|
|
||||||
true => &self.addr,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Returns a vCard containing given contacts.
|
|
||||||
///
|
|
||||||
/// Calling [`parse_vcard()`] on the returned result is a reverse operation.
|
|
||||||
pub fn make_vcard(contacts: &[VcardContact]) -> String {
|
|
||||||
fn format_timestamp(c: &VcardContact) -> Option<String> {
|
|
||||||
let timestamp = *c.timestamp.as_ref().ok()?;
|
|
||||||
let datetime = DateTime::from_timestamp(timestamp, 0)?;
|
|
||||||
Some(datetime.format("%Y%m%dT%H%M%SZ").to_string())
|
|
||||||
}
|
|
||||||
|
|
||||||
let mut res = "".to_string();
|
|
||||||
for c in contacts {
|
|
||||||
let addr = &c.addr;
|
|
||||||
let display_name = c.display_name();
|
|
||||||
res += &format!(
|
|
||||||
"BEGIN:VCARD\r\n\
|
|
||||||
VERSION:4.0\r\n\
|
|
||||||
EMAIL:{addr}\r\n\
|
|
||||||
FN:{display_name}\r\n"
|
|
||||||
);
|
|
||||||
if let Some(key) = &c.key {
|
|
||||||
res += &format!("KEY:data:application/pgp-keys;base64,{key}\r\n");
|
|
||||||
}
|
|
||||||
if let Some(profile_image) = &c.profile_image {
|
|
||||||
res += &format!("PHOTO:data:image/jpeg;base64,{profile_image}\r\n");
|
|
||||||
}
|
|
||||||
if let Some(timestamp) = format_timestamp(c) {
|
|
||||||
res += &format!("REV:{timestamp}\r\n");
|
|
||||||
}
|
|
||||||
res += "END:VCARD\r\n";
|
|
||||||
}
|
|
||||||
res
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Parses `VcardContact`s from a given `&str`.
|
|
||||||
pub fn parse_vcard(vcard: &str) -> Vec<VcardContact> {
|
|
||||||
fn remove_prefix<'a>(s: &'a str, prefix: &str) -> Option<&'a str> {
|
|
||||||
let start_of_s = s.get(..prefix.len())?;
|
|
||||||
|
|
||||||
if start_of_s.eq_ignore_ascii_case(prefix) {
|
|
||||||
s.get(prefix.len()..)
|
|
||||||
} else {
|
|
||||||
None
|
|
||||||
}
|
|
||||||
}
|
|
||||||
/// Returns (parameters, value) tuple.
|
|
||||||
fn vcard_property<'a>(line: &'a str, property: &str) -> Option<(&'a str, &'a str)> {
|
|
||||||
let remainder = remove_prefix(line, property)?;
|
|
||||||
// If `s` is `EMAIL;TYPE=work:alice@example.com` and `property` is `EMAIL`,
|
|
||||||
// then `remainder` is now `;TYPE=work:alice@example.com`
|
|
||||||
|
|
||||||
// Note: This doesn't handle the case where there are quotes around a colon,
|
|
||||||
// like `NAME;Foo="Some quoted text: that contains a colon":value`.
|
|
||||||
// This could be improved in the future, but for now, the parsing is good enough.
|
|
||||||
let (mut params, value) = remainder.split_once(':')?;
|
|
||||||
// In the example from above, `params` is now `;TYPE=work`
|
|
||||||
// and `value` is now `alice@example.com`
|
|
||||||
|
|
||||||
if params
|
|
||||||
.chars()
|
|
||||||
.next()
|
|
||||||
.filter(|c| !c.is_ascii_punctuation() || *c == '_')
|
|
||||||
.is_some()
|
|
||||||
{
|
|
||||||
// `s` started with `property`, but the next character after it was not punctuation,
|
|
||||||
// so this line's property is actually something else
|
|
||||||
return None;
|
|
||||||
}
|
|
||||||
if let Some(p) = remove_prefix(params, ";") {
|
|
||||||
params = p;
|
|
||||||
}
|
|
||||||
if let Some(p) = remove_prefix(params, "PREF=1") {
|
|
||||||
params = p;
|
|
||||||
}
|
|
||||||
Some((params, value))
|
|
||||||
}
|
|
||||||
fn base64_key(line: &str) -> Option<&str> {
|
|
||||||
let (params, value) = vcard_property(line, "key")?;
|
|
||||||
if params.eq_ignore_ascii_case("PGP;ENCODING=BASE64")
|
|
||||||
|| params.eq_ignore_ascii_case("TYPE=PGP;ENCODING=b")
|
|
||||||
{
|
|
||||||
return Some(value);
|
|
||||||
}
|
|
||||||
if let Some(value) = remove_prefix(value, "data:application/pgp-keys;base64,")
|
|
||||||
.or_else(|| remove_prefix(value, r"data:application/pgp-keys;base64\,"))
|
|
||||||
{
|
|
||||||
return Some(value);
|
|
||||||
}
|
|
||||||
|
|
||||||
None
|
|
||||||
}
|
|
||||||
fn base64_photo(line: &str) -> Option<&str> {
|
|
||||||
let (params, value) = vcard_property(line, "photo")?;
|
|
||||||
if params.eq_ignore_ascii_case("JPEG;ENCODING=BASE64")
|
|
||||||
|| params.eq_ignore_ascii_case("ENCODING=BASE64;JPEG")
|
|
||||||
|| params.eq_ignore_ascii_case("TYPE=JPEG;ENCODING=b")
|
|
||||||
|| params.eq_ignore_ascii_case("ENCODING=b;TYPE=JPEG")
|
|
||||||
|| params.eq_ignore_ascii_case("ENCODING=BASE64;TYPE=JPEG")
|
|
||||||
|| params.eq_ignore_ascii_case("TYPE=JPEG;ENCODING=BASE64")
|
|
||||||
{
|
|
||||||
return Some(value);
|
|
||||||
}
|
|
||||||
if let Some(value) = remove_prefix(value, "data:image/jpeg;base64,")
|
|
||||||
.or_else(|| remove_prefix(value, r"data:image/jpeg;base64\,"))
|
|
||||||
{
|
|
||||||
return Some(value);
|
|
||||||
}
|
|
||||||
|
|
||||||
None
|
|
||||||
}
|
|
||||||
fn parse_datetime(datetime: &str) -> Result<i64> {
|
|
||||||
// According to https://www.rfc-editor.org/rfc/rfc6350#section-4.3.5, the timestamp
|
|
||||||
// is in ISO.8601.2004 format. DateTime::parse_from_rfc3339() apparently parses
|
|
||||||
// ISO.8601, but fails to parse any of the examples given.
|
|
||||||
// So, instead just parse using a format string.
|
|
||||||
|
|
||||||
// Parses 19961022T140000Z, 19961022T140000-05, or 19961022T140000-0500.
|
|
||||||
let timestamp = match DateTime::parse_from_str(datetime, "%Y%m%dT%H%M%S%#z") {
|
|
||||||
Ok(datetime) => datetime.timestamp(),
|
|
||||||
// Parses 19961022T140000.
|
|
||||||
Err(e) => match NaiveDateTime::parse_from_str(datetime, "%Y%m%dT%H%M%S") {
|
|
||||||
Ok(datetime) => datetime
|
|
||||||
.and_local_timezone(chrono::offset::Local)
|
|
||||||
.single()
|
|
||||||
.context("Could not apply local timezone to parsed date and time")?
|
|
||||||
.timestamp(),
|
|
||||||
Err(_) => return Err(e.into()),
|
|
||||||
},
|
|
||||||
};
|
|
||||||
Ok(timestamp)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Remove line folding, see https://datatracker.ietf.org/doc/html/rfc6350#section-3.2
|
|
||||||
static NEWLINE_AND_SPACE_OR_TAB: LazyLock<Regex> =
|
|
||||||
LazyLock::new(|| Regex::new("\r?\n[\t ]").unwrap());
|
|
||||||
let unfolded_lines = NEWLINE_AND_SPACE_OR_TAB.replace_all(vcard, "");
|
|
||||||
|
|
||||||
let mut lines = unfolded_lines.lines().peekable();
|
|
||||||
let mut contacts = Vec::new();
|
|
||||||
|
|
||||||
while lines.peek().is_some() {
|
|
||||||
// Skip to the start of the vcard:
|
|
||||||
for line in lines.by_ref() {
|
|
||||||
if line.eq_ignore_ascii_case("BEGIN:VCARD") {
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
let mut display_name = None;
|
|
||||||
let mut addr = None;
|
|
||||||
let mut key = None;
|
|
||||||
let mut photo = None;
|
|
||||||
let mut datetime = None;
|
|
||||||
|
|
||||||
for mut line in lines.by_ref() {
|
|
||||||
if let Some(remainder) = remove_prefix(line, "item1.") {
|
|
||||||
// Remove the group name, if the group is called "item1".
|
|
||||||
// If necessary, we can improve this to also remove groups that are called something different that "item1".
|
|
||||||
//
|
|
||||||
// Search "group name" at https://datatracker.ietf.org/doc/html/rfc6350 for more infos.
|
|
||||||
line = remainder;
|
|
||||||
}
|
|
||||||
|
|
||||||
if let Some((_params, email)) = vcard_property(line, "email") {
|
|
||||||
addr.get_or_insert(email);
|
|
||||||
} else if let Some((_params, name)) = vcard_property(line, "fn") {
|
|
||||||
display_name.get_or_insert(name);
|
|
||||||
} else if let Some(k) = base64_key(line) {
|
|
||||||
key.get_or_insert(k);
|
|
||||||
} else if let Some(p) = base64_photo(line) {
|
|
||||||
photo.get_or_insert(p);
|
|
||||||
} else if let Some((_params, rev)) = vcard_property(line, "rev") {
|
|
||||||
datetime.get_or_insert(rev);
|
|
||||||
} else if line.eq_ignore_ascii_case("END:VCARD") {
|
|
||||||
let (authname, addr) =
|
|
||||||
sanitize_name_and_addr(display_name.unwrap_or(""), addr.unwrap_or(""));
|
|
||||||
|
|
||||||
contacts.push(VcardContact {
|
|
||||||
authname,
|
|
||||||
addr,
|
|
||||||
key: key.map(|s| s.to_string()),
|
|
||||||
profile_image: photo.map(|s| s.to_string()),
|
|
||||||
timestamp: datetime
|
|
||||||
.context("No timestamp in vcard")
|
|
||||||
.and_then(parse_datetime),
|
|
||||||
});
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
contacts
|
|
||||||
}
|
|
||||||
|
|
||||||
#[cfg(test)]
|
|
||||||
mod vcard_tests;
|
|
||||||
@@ -1,274 +0,0 @@
|
|||||||
use chrono::TimeZone as _;
|
|
||||||
|
|
||||||
use super::*;
|
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn test_vcard_thunderbird() {
|
|
||||||
let contacts = parse_vcard(
|
|
||||||
"BEGIN:VCARD
|
|
||||||
VERSION:4.0
|
|
||||||
FN:'Alice Mueller'
|
|
||||||
EMAIL;PREF=1:alice.mueller@posteo.de
|
|
||||||
UID:a8083264-ca47-4be7-98a8-8ec3db1447ca
|
|
||||||
END:VCARD
|
|
||||||
BEGIN:VCARD
|
|
||||||
VERSION:4.0
|
|
||||||
FN:'bobzzz@freenet.de'
|
|
||||||
EMAIL;PREF=1:bobzzz@freenet.de
|
|
||||||
UID:cac4fef4-6351-4854-bbe4-9b6df857eaed
|
|
||||||
END:VCARD
|
|
||||||
",
|
|
||||||
);
|
|
||||||
|
|
||||||
assert_eq!(contacts[0].addr, "alice.mueller@posteo.de".to_string());
|
|
||||||
assert_eq!(contacts[0].authname, "Alice Mueller".to_string());
|
|
||||||
assert_eq!(contacts[0].key, None);
|
|
||||||
assert_eq!(contacts[0].profile_image, None);
|
|
||||||
assert!(contacts[0].timestamp.is_err());
|
|
||||||
|
|
||||||
assert_eq!(contacts[1].addr, "bobzzz@freenet.de".to_string());
|
|
||||||
assert_eq!(contacts[1].authname, "".to_string());
|
|
||||||
assert_eq!(contacts[1].key, None);
|
|
||||||
assert_eq!(contacts[1].profile_image, None);
|
|
||||||
assert!(contacts[1].timestamp.is_err());
|
|
||||||
|
|
||||||
assert_eq!(contacts.len(), 2);
|
|
||||||
}
|
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn test_vcard_simple_example() {
|
|
||||||
let contacts = parse_vcard(
|
|
||||||
"BEGIN:VCARD
|
|
||||||
VERSION:4.0
|
|
||||||
FN:Alice Wonderland
|
|
||||||
N:Wonderland;Alice;;;Ms.
|
|
||||||
GENDER:W
|
|
||||||
EMAIL;TYPE=work:alice@example.com
|
|
||||||
KEY;TYPE=PGP;ENCODING=b:[base64-data]
|
|
||||||
REV:20240418T184242Z
|
|
||||||
|
|
||||||
END:VCARD",
|
|
||||||
);
|
|
||||||
|
|
||||||
assert_eq!(contacts[0].addr, "alice@example.com".to_string());
|
|
||||||
assert_eq!(contacts[0].authname, "Alice Wonderland".to_string());
|
|
||||||
assert_eq!(contacts[0].key, Some("[base64-data]".to_string()));
|
|
||||||
assert_eq!(contacts[0].profile_image, None);
|
|
||||||
assert_eq!(*contacts[0].timestamp.as_ref().unwrap(), 1713465762);
|
|
||||||
|
|
||||||
assert_eq!(contacts.len(), 1);
|
|
||||||
}
|
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn test_vcard_with_trailing_newline() {
|
|
||||||
let contacts = parse_vcard(
|
|
||||||
"BEGIN:VCARD\r
|
|
||||||
VERSION:4.0\r
|
|
||||||
FN:Alice Wonderland\r
|
|
||||||
N:Wonderland;Alice;;;Ms.\r
|
|
||||||
GENDER:W\r
|
|
||||||
EMAIL;TYPE=work:alice@example.com\r
|
|
||||||
KEY;TYPE=PGP;ENCODING=b:[base64-data]\r
|
|
||||||
REV:20240418T184242Z\r
|
|
||||||
END:VCARD\r
|
|
||||||
\r",
|
|
||||||
);
|
|
||||||
|
|
||||||
assert_eq!(contacts[0].addr, "alice@example.com".to_string());
|
|
||||||
assert_eq!(contacts[0].authname, "Alice Wonderland".to_string());
|
|
||||||
assert_eq!(contacts[0].key, Some("[base64-data]".to_string()));
|
|
||||||
assert_eq!(contacts[0].profile_image, None);
|
|
||||||
assert_eq!(*contacts[0].timestamp.as_ref().unwrap(), 1713465762);
|
|
||||||
|
|
||||||
assert_eq!(contacts.len(), 1);
|
|
||||||
}
|
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn test_make_and_parse_vcard() {
|
|
||||||
let contacts = [
|
|
||||||
VcardContact {
|
|
||||||
addr: "alice@example.org".to_string(),
|
|
||||||
authname: "Alice Wonderland".to_string(),
|
|
||||||
key: Some("[base64-data]".to_string()),
|
|
||||||
profile_image: Some("image in Base64".to_string()),
|
|
||||||
timestamp: Ok(1713465762),
|
|
||||||
},
|
|
||||||
VcardContact {
|
|
||||||
addr: "bob@example.com".to_string(),
|
|
||||||
authname: "".to_string(),
|
|
||||||
key: None,
|
|
||||||
profile_image: None,
|
|
||||||
timestamp: Ok(0),
|
|
||||||
},
|
|
||||||
];
|
|
||||||
let items = [
|
|
||||||
"BEGIN:VCARD\r\n\
|
|
||||||
VERSION:4.0\r\n\
|
|
||||||
EMAIL:alice@example.org\r\n\
|
|
||||||
FN:Alice Wonderland\r\n\
|
|
||||||
KEY:data:application/pgp-keys;base64,[base64-data]\r\n\
|
|
||||||
PHOTO:data:image/jpeg;base64,image in Base64\r\n\
|
|
||||||
REV:20240418T184242Z\r\n\
|
|
||||||
END:VCARD\r\n",
|
|
||||||
"BEGIN:VCARD\r\n\
|
|
||||||
VERSION:4.0\r\n\
|
|
||||||
EMAIL:bob@example.com\r\n\
|
|
||||||
FN:bob@example.com\r\n\
|
|
||||||
REV:19700101T000000Z\r\n\
|
|
||||||
END:VCARD\r\n",
|
|
||||||
];
|
|
||||||
let mut expected = "".to_string();
|
|
||||||
for len in 0..=contacts.len() {
|
|
||||||
let contacts = &contacts[0..len];
|
|
||||||
let vcard = make_vcard(contacts);
|
|
||||||
if len > 0 {
|
|
||||||
expected += items[len - 1];
|
|
||||||
}
|
|
||||||
assert_eq!(vcard, expected);
|
|
||||||
let parsed = parse_vcard(&vcard);
|
|
||||||
assert_eq!(parsed.len(), contacts.len());
|
|
||||||
for i in 0..parsed.len() {
|
|
||||||
assert_eq!(parsed[i].addr, contacts[i].addr);
|
|
||||||
assert_eq!(parsed[i].authname, contacts[i].authname);
|
|
||||||
assert_eq!(parsed[i].key, contacts[i].key);
|
|
||||||
assert_eq!(parsed[i].profile_image, contacts[i].profile_image);
|
|
||||||
assert_eq!(
|
|
||||||
parsed[i].timestamp.as_ref().unwrap(),
|
|
||||||
contacts[i].timestamp.as_ref().unwrap()
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn test_vcard_android() {
|
|
||||||
let contacts = parse_vcard(
|
|
||||||
"BEGIN:VCARD
|
|
||||||
VERSION:2.1
|
|
||||||
N:;Bob;;;
|
|
||||||
FN:Bob
|
|
||||||
TEL;CELL:+1-234-567-890
|
|
||||||
EMAIL;HOME:bob@example.org
|
|
||||||
END:VCARD
|
|
||||||
BEGIN:VCARD
|
|
||||||
VERSION:2.1
|
|
||||||
N:;Alice;;;
|
|
||||||
FN:Alice
|
|
||||||
EMAIL;HOME:alice@example.org
|
|
||||||
END:VCARD
|
|
||||||
",
|
|
||||||
);
|
|
||||||
|
|
||||||
assert_eq!(contacts[0].addr, "bob@example.org".to_string());
|
|
||||||
assert_eq!(contacts[0].authname, "Bob".to_string());
|
|
||||||
assert_eq!(contacts[0].key, None);
|
|
||||||
assert_eq!(contacts[0].profile_image, None);
|
|
||||||
|
|
||||||
assert_eq!(contacts[1].addr, "alice@example.org".to_string());
|
|
||||||
assert_eq!(contacts[1].authname, "Alice".to_string());
|
|
||||||
assert_eq!(contacts[1].key, None);
|
|
||||||
assert_eq!(contacts[1].profile_image, None);
|
|
||||||
|
|
||||||
assert_eq!(contacts.len(), 2);
|
|
||||||
}
|
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn test_vcard_local_datetime() {
|
|
||||||
let contacts = parse_vcard(
|
|
||||||
"BEGIN:VCARD\n\
|
|
||||||
VERSION:4.0\n\
|
|
||||||
FN:Alice Wonderland\n\
|
|
||||||
EMAIL;TYPE=work:alice@example.org\n\
|
|
||||||
REV:20240418T184242\n\
|
|
||||||
END:VCARD",
|
|
||||||
);
|
|
||||||
assert_eq!(contacts.len(), 1);
|
|
||||||
assert_eq!(contacts[0].addr, "alice@example.org".to_string());
|
|
||||||
assert_eq!(contacts[0].authname, "Alice Wonderland".to_string());
|
|
||||||
assert_eq!(
|
|
||||||
*contacts[0].timestamp.as_ref().unwrap(),
|
|
||||||
chrono::offset::Local
|
|
||||||
.with_ymd_and_hms(2024, 4, 18, 18, 42, 42)
|
|
||||||
.unwrap()
|
|
||||||
.timestamp()
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn test_vcard_with_base64_avatar() {
|
|
||||||
// This is not an actual base64-encoded avatar, it's just to test the parsing.
|
|
||||||
// This one is Android-like.
|
|
||||||
let vcard0 = "BEGIN:VCARD
|
|
||||||
VERSION:2.1
|
|
||||||
N:;Bob;;;
|
|
||||||
FN:Bob
|
|
||||||
EMAIL;HOME:bob@example.org
|
|
||||||
PHOTO;ENCODING=BASE64;JPEG:/9j/4AAQSkZJRgABAQAAAQABAAD/4gIoSUNDX1BST0ZJTEU
|
|
||||||
AAQEAAAIYAAAAAAQwAABtbnRyUkdCIFhZWiAAAAAAAAAAAAAAAABhY3NwAAAAAAAAAAAAAAAA
|
|
||||||
L8bRuAJYoZUYrI4ZY3VWwxw4Ay28AAGBISScmf/2Q==
|
|
||||||
|
|
||||||
END:VCARD
|
|
||||||
";
|
|
||||||
// This one is DOS-like.
|
|
||||||
let vcard1 = vcard0.replace('\n', "\r\n");
|
|
||||||
for vcard in [vcard0, vcard1.as_str()] {
|
|
||||||
let contacts = parse_vcard(vcard);
|
|
||||||
assert_eq!(contacts.len(), 1);
|
|
||||||
assert_eq!(contacts[0].addr, "bob@example.org".to_string());
|
|
||||||
assert_eq!(contacts[0].authname, "Bob".to_string());
|
|
||||||
assert_eq!(contacts[0].key, None);
|
|
||||||
assert_eq!(contacts[0].profile_image.as_deref().unwrap(), "/9j/4AAQSkZJRgABAQAAAQABAAD/4gIoSUNDX1BST0ZJTEUAAQEAAAIYAAAAAAQwAABtbnRyUkdCIFhZWiAAAAAAAAAAAAAAAABhY3NwAAAAAAAAAAAAAAAAL8bRuAJYoZUYrI4ZY3VWwxw4Ay28AAGBISScmf/2Q==");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn test_protonmail_vcard() {
|
|
||||||
let contacts = parse_vcard(
|
|
||||||
"BEGIN:VCARD
|
|
||||||
VERSION:4.0
|
|
||||||
FN;PREF=1:Alice Wonderland
|
|
||||||
UID:proton-web-03747582-328d-38dc-5ddd-000000000000
|
|
||||||
ITEM1.EMAIL;PREF=1:alice@example.org
|
|
||||||
ITEM1.KEY;PREF=1:data:application/pgp-keys;base64,aaaaaaaaaaaaaaaaaaaaaaaaa
|
|
||||||
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
|
|
||||||
ITEM1.KEY;PREF=2:data:application/pgp-keys;base64,bbbbbbbbbbbbbbbbbbbbbbbbb
|
|
||||||
bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb
|
|
||||||
ITEM1.X-PM-ENCRYPT:true
|
|
||||||
ITEM1.X-PM-SIGN:true
|
|
||||||
END:VCARD",
|
|
||||||
);
|
|
||||||
|
|
||||||
assert_eq!(contacts.len(), 1);
|
|
||||||
assert_eq!(&contacts[0].addr, "alice@example.org");
|
|
||||||
assert_eq!(&contacts[0].authname, "Alice Wonderland");
|
|
||||||
assert_eq!(contacts[0].key.as_ref().unwrap(), "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa");
|
|
||||||
assert!(contacts[0].timestamp.is_err());
|
|
||||||
assert_eq!(contacts[0].profile_image, None);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Proton at some point slightly changed the format of their vcards
|
|
||||||
#[test]
|
|
||||||
fn test_protonmail_vcard2() {
|
|
||||||
let contacts = parse_vcard(
|
|
||||||
r"BEGIN:VCARD
|
|
||||||
VERSION:4.0
|
|
||||||
FN;PREF=1:Alice
|
|
||||||
PHOTO;PREF=1:data:image/jpeg;base64,/9aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
|
|
||||||
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
|
|
||||||
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Z
|
|
||||||
REV:Invalid Date
|
|
||||||
ITEM1.EMAIL;PREF=1:alice@example.org
|
|
||||||
KEY;PREF=1:data:application/pgp-keys;base64,xsaaaaaaaaaaaaaaaaaaaaaaaaaaaa
|
|
||||||
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
|
|
||||||
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa==
|
|
||||||
UID:proton-web-aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa
|
|
||||||
END:VCARD",
|
|
||||||
);
|
|
||||||
|
|
||||||
assert_eq!(contacts.len(), 1);
|
|
||||||
assert_eq!(&contacts[0].addr, "alice@example.org");
|
|
||||||
assert_eq!(&contacts[0].authname, "Alice");
|
|
||||||
assert_eq!(contacts[0].key.as_ref().unwrap(), "xsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa==");
|
|
||||||
assert!(contacts[0].timestamp.is_err());
|
|
||||||
assert_eq!(contacts[0].profile_image.as_ref().unwrap(), "/9aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Z");
|
|
||||||
}
|
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "deltachat_ffi"
|
name = "deltachat_ffi"
|
||||||
version = "1.159.4"
|
version = "1.140.0"
|
||||||
description = "Deltachat FFI"
|
description = "Deltachat FFI"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
@@ -14,19 +14,21 @@ name = "deltachat"
|
|||||||
crate-type = ["cdylib", "staticlib"]
|
crate-type = ["cdylib", "staticlib"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
deltachat = { workspace = true, default-features = false }
|
deltachat = { path = "../", default-features = false }
|
||||||
deltachat-jsonrpc = { workspace = true }
|
deltachat-jsonrpc = { path = "../deltachat-jsonrpc", optional = true }
|
||||||
libc = { workspace = true }
|
libc = "0.2"
|
||||||
human-panic = { version = "2", default-features = false }
|
human-panic = { version = "2", default-features = false }
|
||||||
num-traits = { workspace = true }
|
num-traits = "0.2"
|
||||||
serde_json = { workspace = true }
|
serde_json = "1.0"
|
||||||
tokio = { workspace = true, features = ["rt-multi-thread"] }
|
tokio = { version = "1.37.0", features = ["rt-multi-thread"] }
|
||||||
anyhow = { workspace = true }
|
anyhow = "1"
|
||||||
thiserror = { workspace = true }
|
thiserror = "1"
|
||||||
rand = { workspace = true }
|
rand = "0.8"
|
||||||
yerpc = { workspace = true, features = ["anyhow_expose"] }
|
once_cell = "1.18.0"
|
||||||
|
yerpc = { version = "0.5.1", features = ["anyhow_expose"] }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["vendored"]
|
default = ["vendored"]
|
||||||
vendored = ["deltachat/vendored", "deltachat-jsonrpc/vendored"]
|
vendored = ["deltachat/vendored"]
|
||||||
|
jsonrpc = ["dep:deltachat-jsonrpc"]
|
||||||
|
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -18,7 +18,7 @@ use std::future::Future;
|
|||||||
use std::ops::Deref;
|
use std::ops::Deref;
|
||||||
use std::ptr;
|
use std::ptr;
|
||||||
use std::str::FromStr;
|
use std::str::FromStr;
|
||||||
use std::sync::{Arc, LazyLock};
|
use std::sync::Arc;
|
||||||
use std::time::{Duration, SystemTime};
|
use std::time::{Duration, SystemTime};
|
||||||
|
|
||||||
use anyhow::Context as _;
|
use anyhow::Context as _;
|
||||||
@@ -30,15 +30,13 @@ use deltachat::ephemeral::Timer as EphemeralTimer;
|
|||||||
use deltachat::imex::BackupProvider;
|
use deltachat::imex::BackupProvider;
|
||||||
use deltachat::key::preconfigure_keypair;
|
use deltachat::key::preconfigure_keypair;
|
||||||
use deltachat::message::MsgId;
|
use deltachat::message::MsgId;
|
||||||
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::stock_str::StockMessage;
|
use deltachat::stock_str::StockMessage;
|
||||||
use deltachat::webxdc::StatusUpdateSerial;
|
use deltachat::webxdc::StatusUpdateSerial;
|
||||||
use deltachat::*;
|
use deltachat::*;
|
||||||
use deltachat::{accounts::Accounts, log::LogExt};
|
use deltachat::{accounts::Accounts, log::LogExt};
|
||||||
use deltachat_jsonrpc::api::CommandApi;
|
|
||||||
use deltachat_jsonrpc::yerpc::{OutReceiver, RpcClient, RpcSession};
|
|
||||||
use message::Viewtype;
|
|
||||||
use num_traits::{FromPrimitive, ToPrimitive};
|
use num_traits::{FromPrimitive, ToPrimitive};
|
||||||
|
use once_cell::sync::Lazy;
|
||||||
use rand::Rng;
|
use rand::Rng;
|
||||||
use tokio::runtime::Runtime;
|
use tokio::runtime::Runtime;
|
||||||
use tokio::sync::RwLock;
|
use tokio::sync::RwLock;
|
||||||
@@ -68,8 +66,7 @@ const DC_GCM_INFO_ONLY: u32 = 0x02;
|
|||||||
/// Struct representing the deltachat context.
|
/// Struct representing the deltachat context.
|
||||||
pub type dc_context_t = Context;
|
pub type dc_context_t = Context;
|
||||||
|
|
||||||
static RT: LazyLock<Runtime> =
|
static RT: Lazy<Runtime> = Lazy::new(|| Runtime::new().expect("unable to create tokio runtime"));
|
||||||
LazyLock::new(|| Runtime::new().expect("unable to create tokio runtime"));
|
|
||||||
|
|
||||||
fn block_on<T>(fut: T) -> T::Output
|
fn block_on<T>(fut: T) -> T::Output
|
||||||
where
|
where
|
||||||
@@ -416,6 +413,16 @@ pub unsafe extern "C" fn dc_get_push_state(context: *const dc_context_t) -> libc
|
|||||||
block_on(ctx.push_state()) as libc::c_int
|
block_on(ctx.push_state()) as libc::c_int
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[no_mangle]
|
||||||
|
pub unsafe extern "C" fn dc_all_work_done(context: *mut dc_context_t) -> libc::c_int {
|
||||||
|
if context.is_null() {
|
||||||
|
eprintln!("ignoring careless call to dc_all_work_done()");
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
let ctx = &*context;
|
||||||
|
block_on(async move { ctx.all_work_done().await as libc::c_int })
|
||||||
|
}
|
||||||
|
|
||||||
#[no_mangle]
|
#[no_mangle]
|
||||||
pub unsafe extern "C" fn dc_get_oauth2_url(
|
pub unsafe extern "C" fn dc_get_oauth2_url(
|
||||||
context: *mut dc_context_t,
|
context: *mut dc_context_t,
|
||||||
@@ -534,10 +541,8 @@ pub unsafe extern "C" fn dc_event_get_id(event: *mut dc_event_t) -> libc::c_int
|
|||||||
EventType::ErrorSelfNotInGroup(_) => 410,
|
EventType::ErrorSelfNotInGroup(_) => 410,
|
||||||
EventType::MsgsChanged { .. } => 2000,
|
EventType::MsgsChanged { .. } => 2000,
|
||||||
EventType::ReactionsChanged { .. } => 2001,
|
EventType::ReactionsChanged { .. } => 2001,
|
||||||
EventType::IncomingReaction { .. } => 2002,
|
|
||||||
EventType::IncomingWebxdcNotify { .. } => 2003,
|
|
||||||
EventType::IncomingMsg { .. } => 2005,
|
EventType::IncomingMsg { .. } => 2005,
|
||||||
EventType::IncomingMsgBunch => 2006,
|
EventType::IncomingMsgBunch { .. } => 2006,
|
||||||
EventType::MsgsNoticed { .. } => 2008,
|
EventType::MsgsNoticed { .. } => 2008,
|
||||||
EventType::MsgDelivered { .. } => 2010,
|
EventType::MsgDelivered { .. } => 2010,
|
||||||
EventType::MsgFailed { .. } => 2012,
|
EventType::MsgFailed { .. } => 2012,
|
||||||
@@ -545,7 +550,6 @@ pub unsafe extern "C" fn dc_event_get_id(event: *mut dc_event_t) -> libc::c_int
|
|||||||
EventType::MsgDeleted { .. } => 2016,
|
EventType::MsgDeleted { .. } => 2016,
|
||||||
EventType::ChatModified(_) => 2020,
|
EventType::ChatModified(_) => 2020,
|
||||||
EventType::ChatEphemeralTimerModified { .. } => 2021,
|
EventType::ChatEphemeralTimerModified { .. } => 2021,
|
||||||
EventType::ChatDeleted { .. } => 2023,
|
|
||||||
EventType::ContactsChanged(_) => 2030,
|
EventType::ContactsChanged(_) => 2030,
|
||||||
EventType::LocationChanged(_) => 2035,
|
EventType::LocationChanged(_) => 2035,
|
||||||
EventType::ConfigureProgress { .. } => 2041,
|
EventType::ConfigureProgress { .. } => 2041,
|
||||||
@@ -559,16 +563,10 @@ pub unsafe extern "C" fn dc_event_get_id(event: *mut dc_event_t) -> libc::c_int
|
|||||||
EventType::WebxdcStatusUpdate { .. } => 2120,
|
EventType::WebxdcStatusUpdate { .. } => 2120,
|
||||||
EventType::WebxdcInstanceDeleted { .. } => 2121,
|
EventType::WebxdcInstanceDeleted { .. } => 2121,
|
||||||
EventType::WebxdcRealtimeData { .. } => 2150,
|
EventType::WebxdcRealtimeData { .. } => 2150,
|
||||||
EventType::WebxdcRealtimeAdvertisementReceived { .. } => 2151,
|
|
||||||
EventType::AccountsBackgroundFetchDone => 2200,
|
EventType::AccountsBackgroundFetchDone => 2200,
|
||||||
EventType::ChatlistChanged => 2300,
|
EventType::ChatlistChanged => 2300,
|
||||||
EventType::ChatlistItemChanged { .. } => 2301,
|
EventType::ChatlistItemChanged { .. } => 2301,
|
||||||
EventType::AccountsChanged => 2302,
|
|
||||||
EventType::AccountsItemChanged => 2303,
|
|
||||||
EventType::EventChannelOverflow { .. } => 2400,
|
EventType::EventChannelOverflow { .. } => 2400,
|
||||||
#[allow(unreachable_patterns)]
|
|
||||||
#[cfg(test)]
|
|
||||||
_ => unreachable!("This is just to silence a rust_analyzer false-positive"),
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -595,14 +593,10 @@ pub unsafe extern "C" fn dc_event_get_data1_int(event: *mut dc_event_t) -> libc:
|
|||||||
| EventType::ConnectivityChanged
|
| EventType::ConnectivityChanged
|
||||||
| EventType::SelfavatarChanged
|
| EventType::SelfavatarChanged
|
||||||
| EventType::ConfigSynced { .. }
|
| EventType::ConfigSynced { .. }
|
||||||
| EventType::IncomingMsgBunch
|
| EventType::IncomingMsgBunch { .. }
|
||||||
| EventType::ErrorSelfNotInGroup(_)
|
| EventType::ErrorSelfNotInGroup(_)
|
||||||
| EventType::AccountsBackgroundFetchDone
|
| EventType::AccountsBackgroundFetchDone => 0,
|
||||||
| EventType::ChatlistChanged
|
EventType::ChatlistChanged => 0,
|
||||||
| EventType::AccountsChanged
|
|
||||||
| EventType::AccountsItemChanged => 0,
|
|
||||||
EventType::IncomingReaction { contact_id, .. }
|
|
||||||
| EventType::IncomingWebxdcNotify { contact_id, .. } => contact_id.to_u32() as libc::c_int,
|
|
||||||
EventType::MsgsChanged { chat_id, .. }
|
EventType::MsgsChanged { chat_id, .. }
|
||||||
| EventType::ReactionsChanged { chat_id, .. }
|
| EventType::ReactionsChanged { chat_id, .. }
|
||||||
| EventType::IncomingMsg { chat_id, .. }
|
| EventType::IncomingMsg { chat_id, .. }
|
||||||
@@ -612,8 +606,7 @@ pub unsafe extern "C" fn dc_event_get_data1_int(event: *mut dc_event_t) -> libc:
|
|||||||
| EventType::MsgRead { chat_id, .. }
|
| EventType::MsgRead { chat_id, .. }
|
||||||
| EventType::MsgDeleted { chat_id, .. }
|
| EventType::MsgDeleted { chat_id, .. }
|
||||||
| EventType::ChatModified(chat_id)
|
| EventType::ChatModified(chat_id)
|
||||||
| EventType::ChatEphemeralTimerModified { chat_id, .. }
|
| EventType::ChatEphemeralTimerModified { chat_id, .. } => chat_id.to_u32() as libc::c_int,
|
||||||
| EventType::ChatDeleted { chat_id } => chat_id.to_u32() as libc::c_int,
|
|
||||||
EventType::ContactsChanged(id) | EventType::LocationChanged(id) => {
|
EventType::ContactsChanged(id) | EventType::LocationChanged(id) => {
|
||||||
let id = id.unwrap_or_default();
|
let id = id.unwrap_or_default();
|
||||||
id.to_u32() as libc::c_int
|
id.to_u32() as libc::c_int
|
||||||
@@ -628,15 +621,11 @@ pub unsafe extern "C" fn dc_event_get_data1_int(event: *mut dc_event_t) -> libc:
|
|||||||
}
|
}
|
||||||
EventType::WebxdcRealtimeData { msg_id, .. }
|
EventType::WebxdcRealtimeData { msg_id, .. }
|
||||||
| EventType::WebxdcStatusUpdate { msg_id, .. }
|
| EventType::WebxdcStatusUpdate { msg_id, .. }
|
||||||
| EventType::WebxdcRealtimeAdvertisementReceived { msg_id }
|
|
||||||
| EventType::WebxdcInstanceDeleted { msg_id, .. } => msg_id.to_u32() as libc::c_int,
|
| EventType::WebxdcInstanceDeleted { msg_id, .. } => msg_id.to_u32() as libc::c_int,
|
||||||
EventType::ChatlistItemChanged { chat_id } => {
|
EventType::ChatlistItemChanged { chat_id } => {
|
||||||
chat_id.unwrap_or_default().to_u32() as libc::c_int
|
chat_id.unwrap_or_default().to_u32() as libc::c_int
|
||||||
}
|
}
|
||||||
EventType::EventChannelOverflow { n } => *n as libc::c_int,
|
EventType::EventChannelOverflow { n } => *n as libc::c_int,
|
||||||
#[allow(unreachable_patterns)]
|
|
||||||
#[cfg(test)]
|
|
||||||
_ => unreachable!("This is just to silence a rust_analyzer false-positive"),
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -670,22 +659,16 @@ pub unsafe extern "C" fn dc_event_get_data2_int(event: *mut dc_event_t) -> libc:
|
|||||||
| EventType::MsgsNoticed(_)
|
| EventType::MsgsNoticed(_)
|
||||||
| EventType::ConnectivityChanged
|
| EventType::ConnectivityChanged
|
||||||
| EventType::WebxdcInstanceDeleted { .. }
|
| EventType::WebxdcInstanceDeleted { .. }
|
||||||
| EventType::IncomingMsgBunch
|
| EventType::IncomingMsgBunch { .. }
|
||||||
| EventType::SelfavatarChanged
|
| EventType::SelfavatarChanged
|
||||||
| EventType::AccountsBackgroundFetchDone
|
| EventType::AccountsBackgroundFetchDone
|
||||||
| EventType::ChatlistChanged
|
| EventType::ChatlistChanged
|
||||||
| EventType::ChatlistItemChanged { .. }
|
| EventType::ChatlistItemChanged { .. }
|
||||||
| EventType::AccountsChanged
|
|
||||||
| EventType::AccountsItemChanged
|
|
||||||
| EventType::ConfigSynced { .. }
|
| EventType::ConfigSynced { .. }
|
||||||
| EventType::ChatModified(_)
|
| EventType::ChatModified(_)
|
||||||
| EventType::ChatDeleted { .. }
|
|
||||||
| EventType::WebxdcRealtimeAdvertisementReceived { .. }
|
|
||||||
| EventType::EventChannelOverflow { .. } => 0,
|
| EventType::EventChannelOverflow { .. } => 0,
|
||||||
EventType::MsgsChanged { msg_id, .. }
|
EventType::MsgsChanged { msg_id, .. }
|
||||||
| EventType::ReactionsChanged { msg_id, .. }
|
| EventType::ReactionsChanged { msg_id, .. }
|
||||||
| EventType::IncomingReaction { msg_id, .. }
|
|
||||||
| EventType::IncomingWebxdcNotify { msg_id, .. }
|
|
||||||
| EventType::IncomingMsg { msg_id, .. }
|
| EventType::IncomingMsg { msg_id, .. }
|
||||||
| EventType::MsgDelivered { msg_id, .. }
|
| EventType::MsgDelivered { msg_id, .. }
|
||||||
| EventType::MsgFailed { msg_id, .. }
|
| EventType::MsgFailed { msg_id, .. }
|
||||||
@@ -699,30 +682,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,
|
||||||
#[allow(unreachable_patterns)]
|
|
||||||
#[cfg(test)]
|
|
||||||
_ => unreachable!("This is just to silence a rust_analyzer false-positive"),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[no_mangle]
|
|
||||||
pub unsafe extern "C" fn dc_event_get_data1_str(event: *mut dc_event_t) -> *mut libc::c_char {
|
|
||||||
if event.is_null() {
|
|
||||||
eprintln!("ignoring careless call to dc_event_get_data1_str()");
|
|
||||||
return ptr::null_mut();
|
|
||||||
}
|
|
||||||
|
|
||||||
let event = &(*event).typ;
|
|
||||||
|
|
||||||
match event {
|
|
||||||
EventType::IncomingWebxdcNotify { href, .. } => {
|
|
||||||
if let Some(href) = href {
|
|
||||||
href.to_c_string().unwrap_or_default().into_raw()
|
|
||||||
} else {
|
|
||||||
ptr::null_mut()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
_ => ptr::null_mut(),
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -771,13 +730,9 @@ pub unsafe extern "C" fn dc_event_get_data2_str(event: *mut dc_event_t) -> *mut
|
|||||||
| EventType::WebxdcInstanceDeleted { .. }
|
| EventType::WebxdcInstanceDeleted { .. }
|
||||||
| EventType::AccountsBackgroundFetchDone
|
| EventType::AccountsBackgroundFetchDone
|
||||||
| EventType::ChatEphemeralTimerModified { .. }
|
| EventType::ChatEphemeralTimerModified { .. }
|
||||||
| EventType::ChatDeleted { .. }
|
| EventType::IncomingMsgBunch { .. }
|
||||||
| EventType::IncomingMsgBunch
|
|
||||||
| EventType::ChatlistItemChanged { .. }
|
| EventType::ChatlistItemChanged { .. }
|
||||||
| EventType::ChatlistChanged
|
| EventType::ChatlistChanged
|
||||||
| EventType::AccountsChanged
|
|
||||||
| EventType::AccountsItemChanged
|
|
||||||
| EventType::WebxdcRealtimeAdvertisementReceived { .. }
|
|
||||||
| EventType::EventChannelOverflow { .. } => ptr::null_mut(),
|
| EventType::EventChannelOverflow { .. } => ptr::null_mut(),
|
||||||
EventType::ConfigureProgress { comment, .. } => {
|
EventType::ConfigureProgress { comment, .. } => {
|
||||||
if let Some(comment) = comment {
|
if let Some(comment) = comment {
|
||||||
@@ -799,17 +754,6 @@ pub unsafe extern "C" fn dc_event_get_data2_str(event: *mut dc_event_t) -> *mut
|
|||||||
libc::memcpy(ptr, data.as_ptr() as *mut libc::c_void, data.len());
|
libc::memcpy(ptr, data.as_ptr() as *mut libc::c_void, data.len());
|
||||||
ptr as *mut libc::c_char
|
ptr as *mut libc::c_char
|
||||||
}
|
}
|
||||||
EventType::IncomingReaction { reaction, .. } => reaction
|
|
||||||
.as_str()
|
|
||||||
.to_c_string()
|
|
||||||
.unwrap_or_default()
|
|
||||||
.into_raw(),
|
|
||||||
EventType::IncomingWebxdcNotify { text, .. } => {
|
|
||||||
text.to_c_string().unwrap_or_default().into_raw()
|
|
||||||
}
|
|
||||||
#[allow(unreachable_patterns)]
|
|
||||||
#[cfg(test)]
|
|
||||||
_ => unreachable!("This is just to silence a rust_analyzer false-positive"),
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -891,6 +835,8 @@ pub unsafe extern "C" fn dc_maybe_network(context: *mut dc_context_t) {
|
|||||||
#[no_mangle]
|
#[no_mangle]
|
||||||
pub unsafe extern "C" fn dc_preconfigure_keypair(
|
pub unsafe extern "C" fn dc_preconfigure_keypair(
|
||||||
context: *mut dc_context_t,
|
context: *mut dc_context_t,
|
||||||
|
addr: *const libc::c_char,
|
||||||
|
_public_data: *const libc::c_char,
|
||||||
secret_data: *const libc::c_char,
|
secret_data: *const libc::c_char,
|
||||||
) -> i32 {
|
) -> i32 {
|
||||||
if context.is_null() {
|
if context.is_null() {
|
||||||
@@ -898,8 +844,9 @@ pub unsafe extern "C" fn dc_preconfigure_keypair(
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
let ctx = &*context;
|
let ctx = &*context;
|
||||||
|
let addr = to_string_lossy(addr);
|
||||||
let secret_data = to_string_lossy(secret_data);
|
let secret_data = to_string_lossy(secret_data);
|
||||||
block_on(preconfigure_keypair(ctx, &secret_data))
|
block_on(preconfigure_keypair(ctx, &addr, &secret_data))
|
||||||
.context("Failed to save keypair")
|
.context("Failed to save keypair")
|
||||||
.log_err(ctx)
|
.log_err(ctx)
|
||||||
.is_ok() as libc::c_int
|
.is_ok() as libc::c_int
|
||||||
@@ -983,6 +930,27 @@ pub unsafe extern "C" fn dc_get_chat_id_by_contact_id(
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[no_mangle]
|
||||||
|
pub unsafe extern "C" fn dc_prepare_msg(
|
||||||
|
context: *mut dc_context_t,
|
||||||
|
chat_id: u32,
|
||||||
|
msg: *mut dc_msg_t,
|
||||||
|
) -> u32 {
|
||||||
|
if context.is_null() || chat_id == 0 || msg.is_null() {
|
||||||
|
eprintln!("ignoring careless call to dc_prepare_msg()");
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
let ctx = &mut *context;
|
||||||
|
let ffi_msg: &mut MessageWrapper = &mut *msg;
|
||||||
|
|
||||||
|
block_on(async move {
|
||||||
|
chat::prepare_msg(ctx, ChatId::new(chat_id), &mut ffi_msg.message)
|
||||||
|
.await
|
||||||
|
.unwrap_or_log_default(ctx, "Failed to prepare message")
|
||||||
|
})
|
||||||
|
.to_u32()
|
||||||
|
}
|
||||||
|
|
||||||
#[no_mangle]
|
#[no_mangle]
|
||||||
pub unsafe extern "C" fn dc_send_msg(
|
pub unsafe extern "C" fn dc_send_msg(
|
||||||
context: *mut dc_context_t,
|
context: *mut dc_context_t,
|
||||||
@@ -1046,42 +1014,6 @@ pub unsafe extern "C" fn dc_send_text_msg(
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
#[no_mangle]
|
|
||||||
pub unsafe extern "C" fn dc_send_edit_request(
|
|
||||||
context: *mut dc_context_t,
|
|
||||||
msg_id: u32,
|
|
||||||
new_text: *const libc::c_char,
|
|
||||||
) {
|
|
||||||
if context.is_null() || new_text.is_null() {
|
|
||||||
eprintln!("ignoring careless call to dc_send_edit_request()");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
let ctx = &*context;
|
|
||||||
let new_text = to_string_lossy(new_text);
|
|
||||||
|
|
||||||
block_on(chat::send_edit_request(ctx, MsgId::new(msg_id), new_text))
|
|
||||||
.unwrap_or_log_default(ctx, "Failed to send text edit")
|
|
||||||
}
|
|
||||||
|
|
||||||
#[no_mangle]
|
|
||||||
pub unsafe extern "C" fn dc_send_delete_request(
|
|
||||||
context: *mut dc_context_t,
|
|
||||||
msg_ids: *const u32,
|
|
||||||
msg_cnt: libc::c_int,
|
|
||||||
) {
|
|
||||||
if context.is_null() || msg_ids.is_null() || msg_cnt <= 0 {
|
|
||||||
eprintln!("ignoring careless call to dc_send_delete_request()");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
let ctx = &*context;
|
|
||||||
let msg_ids = convert_and_prune_message_ids(msg_ids, msg_cnt);
|
|
||||||
|
|
||||||
block_on(message::delete_msgs_ex(ctx, &msg_ids, true))
|
|
||||||
.context("failed dc_send_delete_request() call")
|
|
||||||
.log_err(ctx)
|
|
||||||
.ok();
|
|
||||||
}
|
|
||||||
|
|
||||||
#[no_mangle]
|
#[no_mangle]
|
||||||
pub unsafe extern "C" fn dc_send_videochat_invitation(
|
pub unsafe extern "C" fn dc_send_videochat_invitation(
|
||||||
context: *mut dc_context_t,
|
context: *mut dc_context_t,
|
||||||
@@ -1106,7 +1038,7 @@ pub unsafe extern "C" fn dc_send_webxdc_status_update(
|
|||||||
context: *mut dc_context_t,
|
context: *mut dc_context_t,
|
||||||
msg_id: u32,
|
msg_id: u32,
|
||||||
json: *const libc::c_char,
|
json: *const libc::c_char,
|
||||||
_descr: *const libc::c_char,
|
descr: *const libc::c_char,
|
||||||
) -> libc::c_int {
|
) -> libc::c_int {
|
||||||
if context.is_null() {
|
if context.is_null() {
|
||||||
eprintln!("ignoring careless call to dc_send_webxdc_status_update()");
|
eprintln!("ignoring careless call to dc_send_webxdc_status_update()");
|
||||||
@@ -1114,10 +1046,14 @@ pub unsafe extern "C" fn dc_send_webxdc_status_update(
|
|||||||
}
|
}
|
||||||
let ctx = &*context;
|
let ctx = &*context;
|
||||||
|
|
||||||
block_on(ctx.send_webxdc_status_update(MsgId::new(msg_id), &to_string_lossy(json)))
|
block_on(ctx.send_webxdc_status_update(
|
||||||
.context("Failed to send webxdc update")
|
MsgId::new(msg_id),
|
||||||
.log_err(ctx)
|
&to_string_lossy(json),
|
||||||
.is_ok() as libc::c_int
|
&to_string_lossy(descr),
|
||||||
|
))
|
||||||
|
.context("Failed to send webxdc update")
|
||||||
|
.log_err(ctx)
|
||||||
|
.is_ok() as libc::c_int
|
||||||
}
|
}
|
||||||
|
|
||||||
#[no_mangle]
|
#[no_mangle]
|
||||||
@@ -1510,6 +1446,48 @@ pub unsafe extern "C" fn dc_get_chat_media(
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[no_mangle]
|
||||||
|
#[allow(deprecated)]
|
||||||
|
pub unsafe extern "C" fn dc_get_next_media(
|
||||||
|
context: *mut dc_context_t,
|
||||||
|
msg_id: u32,
|
||||||
|
dir: libc::c_int,
|
||||||
|
msg_type: libc::c_int,
|
||||||
|
or_msg_type2: libc::c_int,
|
||||||
|
or_msg_type3: libc::c_int,
|
||||||
|
) -> u32 {
|
||||||
|
if context.is_null() {
|
||||||
|
eprintln!("ignoring careless call to dc_get_next_media()");
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
let direction = if dir < 0 {
|
||||||
|
chat::Direction::Backward
|
||||||
|
} else {
|
||||||
|
chat::Direction::Forward
|
||||||
|
};
|
||||||
|
|
||||||
|
let ctx = &*context;
|
||||||
|
let msg_type = from_prim(msg_type).expect(&format!("invalid msg_type = {msg_type}"));
|
||||||
|
let or_msg_type2 =
|
||||||
|
from_prim(or_msg_type2).expect(&format!("incorrect or_msg_type2 = {or_msg_type2}"));
|
||||||
|
let or_msg_type3 =
|
||||||
|
from_prim(or_msg_type3).expect(&format!("incorrect or_msg_type3 = {or_msg_type3}"));
|
||||||
|
|
||||||
|
block_on(async move {
|
||||||
|
chat::get_next_media(
|
||||||
|
ctx,
|
||||||
|
MsgId::new(msg_id),
|
||||||
|
direction,
|
||||||
|
msg_type,
|
||||||
|
or_msg_type2,
|
||||||
|
or_msg_type3,
|
||||||
|
)
|
||||||
|
.await
|
||||||
|
.map(|msg_id| msg_id.map(|id| id.to_u32()).unwrap_or_default())
|
||||||
|
.unwrap_or(0)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
#[no_mangle]
|
#[no_mangle]
|
||||||
pub unsafe extern "C" fn dc_set_chat_visibility(
|
pub unsafe extern "C" fn dc_set_chat_visibility(
|
||||||
context: *mut dc_context_t,
|
context: *mut dc_context_t,
|
||||||
@@ -1659,7 +1637,6 @@ pub unsafe extern "C" fn dc_get_chat(context: *mut dc_context_t, chat_id: u32) -
|
|||||||
return ptr::null_mut();
|
return ptr::null_mut();
|
||||||
}
|
}
|
||||||
let ctx = &*context;
|
let ctx = &*context;
|
||||||
let context: Context = ctx.clone();
|
|
||||||
|
|
||||||
block_on(async move {
|
block_on(async move {
|
||||||
match chat::Chat::load_from_db(ctx, ChatId::new(chat_id)).await {
|
match chat::Chat::load_from_db(ctx, ChatId::new(chat_id)).await {
|
||||||
@@ -1955,6 +1932,28 @@ pub unsafe extern "C" fn dc_get_msg_html(
|
|||||||
.strdup()
|
.strdup()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[no_mangle]
|
||||||
|
pub unsafe extern "C" fn dc_get_mime_headers(
|
||||||
|
context: *mut dc_context_t,
|
||||||
|
msg_id: u32,
|
||||||
|
) -> *mut libc::c_char {
|
||||||
|
if context.is_null() {
|
||||||
|
eprintln!("ignoring careless call to dc_get_mime_headers()");
|
||||||
|
return ptr::null_mut(); // NULL explicitly defined as "no mime headers"
|
||||||
|
}
|
||||||
|
let ctx = &*context;
|
||||||
|
|
||||||
|
block_on(async move {
|
||||||
|
let mime = message::get_mime_headers(ctx, MsgId::new(msg_id))
|
||||||
|
.await
|
||||||
|
.unwrap_or_log_default(ctx, "failed to get mime headers");
|
||||||
|
if mime.is_empty() {
|
||||||
|
return ptr::null_mut();
|
||||||
|
}
|
||||||
|
mime.strdup()
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
#[no_mangle]
|
#[no_mangle]
|
||||||
pub unsafe extern "C" fn dc_delete_msgs(
|
pub unsafe extern "C" fn dc_delete_msgs(
|
||||||
context: *mut dc_context_t,
|
context: *mut dc_context_t,
|
||||||
@@ -1999,26 +1998,6 @@ pub unsafe extern "C" fn dc_forward_msgs(
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
#[no_mangle]
|
|
||||||
pub unsafe extern "C" fn dc_save_msgs(
|
|
||||||
context: *mut dc_context_t,
|
|
||||||
msg_ids: *const u32,
|
|
||||||
msg_cnt: libc::c_int,
|
|
||||||
) {
|
|
||||||
if context.is_null() || msg_ids.is_null() || msg_cnt <= 0 {
|
|
||||||
eprintln!("ignoring careless call to dc_save_msgs()");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
let msg_ids = convert_and_prune_message_ids(msg_ids, msg_cnt);
|
|
||||||
let ctx = &*context;
|
|
||||||
|
|
||||||
block_on(async move {
|
|
||||||
chat::save_msgs(ctx, &msg_ids[..])
|
|
||||||
.await
|
|
||||||
.unwrap_or_log_default(ctx, "Failed to save message")
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
#[no_mangle]
|
#[no_mangle]
|
||||||
pub unsafe extern "C" fn dc_resend_msgs(
|
pub unsafe extern "C" fn dc_resend_msgs(
|
||||||
context: *mut dc_context_t,
|
context: *mut dc_context_t,
|
||||||
@@ -2077,7 +2056,7 @@ pub unsafe extern "C" fn dc_get_msg(context: *mut dc_context_t, msg_id: u32) ->
|
|||||||
ctx,
|
ctx,
|
||||||
"dc_get_msg called with special msg_id={msg_id}, returning empty msg"
|
"dc_get_msg called with special msg_id={msg_id}, returning empty msg"
|
||||||
);
|
);
|
||||||
message::Message::new(Viewtype::default())
|
message::Message::default()
|
||||||
} else {
|
} else {
|
||||||
warn!(ctx, "dc_get_msg could not retrieve msg_id {msg_id}: {e:#}");
|
warn!(ctx, "dc_get_msg could not retrieve msg_id {msg_id}: {e:#}");
|
||||||
return ptr::null_mut();
|
return ptr::null_mut();
|
||||||
@@ -2171,48 +2150,6 @@ pub unsafe extern "C" fn dc_add_address_book(
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
#[no_mangle]
|
|
||||||
pub unsafe extern "C" fn dc_make_vcard(
|
|
||||||
context: *mut dc_context_t,
|
|
||||||
contact_id: u32,
|
|
||||||
) -> *mut libc::c_char {
|
|
||||||
if context.is_null() {
|
|
||||||
eprintln!("ignoring careless call to dc_make_vcard()");
|
|
||||||
return ptr::null_mut();
|
|
||||||
}
|
|
||||||
let ctx = &*context;
|
|
||||||
let contact_id = ContactId::new(contact_id);
|
|
||||||
|
|
||||||
block_on(contact::make_vcard(ctx, &[contact_id]))
|
|
||||||
.unwrap_or_log_default(ctx, "dc_make_vcard failed")
|
|
||||||
.strdup()
|
|
||||||
}
|
|
||||||
|
|
||||||
#[no_mangle]
|
|
||||||
pub unsafe extern "C" fn dc_import_vcard(
|
|
||||||
context: *mut dc_context_t,
|
|
||||||
vcard: *const libc::c_char,
|
|
||||||
) -> *mut dc_array::dc_array_t {
|
|
||||||
if context.is_null() || vcard.is_null() {
|
|
||||||
eprintln!("ignoring careless call to dc_import_vcard()");
|
|
||||||
return ptr::null_mut();
|
|
||||||
}
|
|
||||||
let ctx = &*context;
|
|
||||||
|
|
||||||
match block_on(contact::import_vcard(ctx, &to_string_lossy(vcard)))
|
|
||||||
.context("dc_import_vcard failed")
|
|
||||||
.log_err(ctx)
|
|
||||||
{
|
|
||||||
Ok(contact_ids) => Box::into_raw(Box::new(dc_array_t::from(
|
|
||||||
contact_ids
|
|
||||||
.iter()
|
|
||||||
.map(|id| id.to_u32())
|
|
||||||
.collect::<Vec<u32>>(),
|
|
||||||
))),
|
|
||||||
Err(_) => ptr::null_mut(),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[no_mangle]
|
#[no_mangle]
|
||||||
pub unsafe extern "C" fn dc_get_contacts(
|
pub unsafe extern "C" fn dc_get_contacts(
|
||||||
context: *mut dc_context_t,
|
context: *mut dc_context_t,
|
||||||
@@ -2678,18 +2615,6 @@ pub unsafe extern "C" fn dc_delete_all_locations(context: *mut dc_context_t) {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
#[no_mangle]
|
|
||||||
pub unsafe extern "C" fn dc_create_qr_svg(payload: *const libc::c_char) -> *mut libc::c_char {
|
|
||||||
if payload.is_null() {
|
|
||||||
eprintln!("ignoring careless call to dc_create_qr_svg()");
|
|
||||||
return "".strdup();
|
|
||||||
}
|
|
||||||
|
|
||||||
create_qr_svg(&to_string_lossy(payload))
|
|
||||||
.unwrap_or_else(|_| "".to_string())
|
|
||||||
.strdup()
|
|
||||||
}
|
|
||||||
|
|
||||||
#[no_mangle]
|
#[no_mangle]
|
||||||
pub unsafe extern "C" fn dc_get_last_error(context: *mut dc_context_t) -> *mut libc::c_char {
|
pub unsafe extern "C" fn dc_get_last_error(context: *mut dc_context_t) -> *mut libc::c_char {
|
||||||
if context.is_null() {
|
if context.is_null() {
|
||||||
@@ -3026,7 +2951,7 @@ pub unsafe extern "C" fn dc_chatlist_get_context(
|
|||||||
/// context, but the Rust API does not, so the FFI layer needs to glue
|
/// context, but the Rust API does not, so the FFI layer needs to glue
|
||||||
/// these together.
|
/// these together.
|
||||||
pub struct ChatWrapper {
|
pub struct ChatWrapper {
|
||||||
context: Context,
|
context: *const dc_context_t,
|
||||||
chat: chat::Chat,
|
chat: chat::Chat,
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -3093,13 +3018,14 @@ pub unsafe extern "C" fn dc_chat_get_profile_image(chat: *mut dc_chat_t) -> *mut
|
|||||||
return ptr::null_mut(); // NULL explicitly defined as "no image"
|
return ptr::null_mut(); // NULL explicitly defined as "no image"
|
||||||
}
|
}
|
||||||
let ffi_chat = &*chat;
|
let ffi_chat = &*chat;
|
||||||
|
let ctx = &*ffi_chat.context;
|
||||||
|
|
||||||
block_on(async move {
|
block_on(async move {
|
||||||
match ffi_chat.chat.get_profile_image(&ffi_chat.context).await {
|
match ffi_chat.chat.get_profile_image(ctx).await {
|
||||||
Ok(Some(p)) => p.to_string_lossy().strdup(),
|
Ok(Some(p)) => p.to_string_lossy().strdup(),
|
||||||
Ok(None) => ptr::null_mut(),
|
Ok(None) => ptr::null_mut(),
|
||||||
Err(err) => {
|
Err(err) => {
|
||||||
error!(ffi_chat.context, "failed to get profile image: {err:#}");
|
error!(ctx, "failed to get profile image: {err:#}");
|
||||||
ptr::null_mut()
|
ptr::null_mut()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -3113,9 +3039,9 @@ pub unsafe extern "C" fn dc_chat_get_color(chat: *mut dc_chat_t) -> u32 {
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
let ffi_chat = &*chat;
|
let ffi_chat = &*chat;
|
||||||
|
let ctx = &*ffi_chat.context;
|
||||||
|
|
||||||
block_on(ffi_chat.chat.get_color(&ffi_chat.context))
|
block_on(ffi_chat.chat.get_color(ctx)).unwrap_or_log_default(ctx, "Failed get_color")
|
||||||
.unwrap_or_log_default(&ffi_chat.context, "Failed get_color")
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#[no_mangle]
|
#[no_mangle]
|
||||||
@@ -3179,9 +3105,10 @@ pub unsafe extern "C" fn dc_chat_can_send(chat: *mut dc_chat_t) -> libc::c_int {
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
let ffi_chat = &*chat;
|
let ffi_chat = &*chat;
|
||||||
block_on(ffi_chat.chat.can_send(&ffi_chat.context))
|
let ctx = &*ffi_chat.context;
|
||||||
|
block_on(ffi_chat.chat.can_send(ctx))
|
||||||
.context("can_send failed")
|
.context("can_send failed")
|
||||||
.log_err(&ffi_chat.context)
|
.log_err(ctx)
|
||||||
.unwrap_or_default() as libc::c_int
|
.unwrap_or_default() as libc::c_int
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -3743,16 +3670,6 @@ pub unsafe extern "C" fn dc_msg_is_forwarded(msg: *mut dc_msg_t) -> libc::c_int
|
|||||||
ffi_msg.message.is_forwarded().into()
|
ffi_msg.message.is_forwarded().into()
|
||||||
}
|
}
|
||||||
|
|
||||||
#[no_mangle]
|
|
||||||
pub unsafe extern "C" fn dc_msg_is_edited(msg: *mut dc_msg_t) -> libc::c_int {
|
|
||||||
if msg.is_null() {
|
|
||||||
eprintln!("ignoring careless call to dc_msg_is_edited()");
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
let ffi_msg = &*msg;
|
|
||||||
ffi_msg.message.is_edited().into()
|
|
||||||
}
|
|
||||||
|
|
||||||
#[no_mangle]
|
#[no_mangle]
|
||||||
pub unsafe extern "C" fn dc_msg_is_info(msg: *mut dc_msg_t) -> libc::c_int {
|
pub unsafe extern "C" fn dc_msg_is_info(msg: *mut dc_msg_t) -> libc::c_int {
|
||||||
if msg.is_null() {
|
if msg.is_null() {
|
||||||
@@ -3774,28 +3691,13 @@ pub unsafe extern "C" fn dc_msg_get_info_type(msg: *mut dc_msg_t) -> libc::c_int
|
|||||||
}
|
}
|
||||||
|
|
||||||
#[no_mangle]
|
#[no_mangle]
|
||||||
pub unsafe extern "C" fn dc_msg_get_info_contact_id(msg: *mut dc_msg_t) -> u32 {
|
pub unsafe extern "C" fn dc_msg_is_increation(msg: *mut dc_msg_t) -> libc::c_int {
|
||||||
if msg.is_null() {
|
if msg.is_null() {
|
||||||
eprintln!("ignoring careless call to dc_msg_get_info_contact_id()");
|
eprintln!("ignoring careless call to dc_msg_is_increation()");
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
let ffi_msg = &*msg;
|
let ffi_msg = &*msg;
|
||||||
let context = &*ffi_msg.context;
|
ffi_msg.message.is_increation().into()
|
||||||
block_on(ffi_msg.message.get_info_contact_id(context))
|
|
||||||
.unwrap_or_default()
|
|
||||||
.map(|id| id.to_u32())
|
|
||||||
.unwrap_or_default()
|
|
||||||
}
|
|
||||||
|
|
||||||
#[no_mangle]
|
|
||||||
pub unsafe extern "C" fn dc_msg_get_webxdc_href(msg: *mut dc_msg_t) -> *mut libc::c_char {
|
|
||||||
if msg.is_null() {
|
|
||||||
eprintln!("ignoring careless call to dc_msg_get_webxdc_href()");
|
|
||||||
return "".strdup();
|
|
||||||
}
|
|
||||||
|
|
||||||
let ffi_msg = &*msg;
|
|
||||||
ffi_msg.message.get_webxdc_href().strdup()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#[no_mangle]
|
#[no_mangle]
|
||||||
@@ -3903,30 +3805,20 @@ pub unsafe extern "C" fn dc_msg_set_override_sender_name(
|
|||||||
}
|
}
|
||||||
|
|
||||||
#[no_mangle]
|
#[no_mangle]
|
||||||
pub unsafe extern "C" fn dc_msg_set_file_and_deduplicate(
|
pub unsafe extern "C" fn dc_msg_set_file(
|
||||||
msg: *mut dc_msg_t,
|
msg: *mut dc_msg_t,
|
||||||
file: *const libc::c_char,
|
file: *const libc::c_char,
|
||||||
name: *const libc::c_char,
|
|
||||||
filemime: *const libc::c_char,
|
filemime: *const libc::c_char,
|
||||||
) {
|
) {
|
||||||
if msg.is_null() || file.is_null() {
|
if msg.is_null() || file.is_null() {
|
||||||
eprintln!("ignoring careless call to dc_msg_set_file_and_deduplicate()");
|
eprintln!("ignoring careless call to dc_msg_set_file()");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
let ffi_msg = &mut *msg;
|
let ffi_msg = &mut *msg;
|
||||||
let ctx = &*ffi_msg.context;
|
ffi_msg.message.set_file(
|
||||||
|
to_string_lossy(file),
|
||||||
ffi_msg
|
to_opt_string_lossy(filemime).as_deref(),
|
||||||
.message
|
)
|
||||||
.set_file_and_deduplicate(
|
|
||||||
ctx,
|
|
||||||
as_path(file),
|
|
||||||
to_opt_string_lossy(name).as_deref(),
|
|
||||||
to_opt_string_lossy(filemime).as_deref(),
|
|
||||||
)
|
|
||||||
.context("Failed to set file")
|
|
||||||
.log_err(&*ffi_msg.context)
|
|
||||||
.ok();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#[no_mangle]
|
#[no_mangle]
|
||||||
@@ -4094,48 +3986,6 @@ pub unsafe extern "C" fn dc_msg_get_parent(msg: *const dc_msg_t) -> *mut dc_msg_
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[no_mangle]
|
|
||||||
pub unsafe extern "C" fn dc_msg_get_original_msg_id(msg: *const dc_msg_t) -> u32 {
|
|
||||||
if msg.is_null() {
|
|
||||||
eprintln!("ignoring careless call to dc_msg_get_original_msg_id()");
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
let ffi_msg: &MessageWrapper = &*msg;
|
|
||||||
let context = &*ffi_msg.context;
|
|
||||||
block_on(async move {
|
|
||||||
ffi_msg
|
|
||||||
.message
|
|
||||||
.get_original_msg_id(context)
|
|
||||||
.await
|
|
||||||
.context("failed to get original message")
|
|
||||||
.log_err(context)
|
|
||||||
.unwrap_or_default()
|
|
||||||
.map(|id| id.to_u32())
|
|
||||||
.unwrap_or(0)
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
#[no_mangle]
|
|
||||||
pub unsafe extern "C" fn dc_msg_get_saved_msg_id(msg: *const dc_msg_t) -> u32 {
|
|
||||||
if msg.is_null() {
|
|
||||||
eprintln!("ignoring careless call to dc_msg_get_saved_msg_id()");
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
let ffi_msg: &MessageWrapper = &*msg;
|
|
||||||
let context = &*ffi_msg.context;
|
|
||||||
block_on(async move {
|
|
||||||
ffi_msg
|
|
||||||
.message
|
|
||||||
.get_saved_msg_id(context)
|
|
||||||
.await
|
|
||||||
.context("failed to get original message")
|
|
||||||
.log_err(context)
|
|
||||||
.unwrap_or_default()
|
|
||||||
.map(|id| id.to_u32())
|
|
||||||
.unwrap_or(0)
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
#[no_mangle]
|
#[no_mangle]
|
||||||
pub unsafe extern "C" fn dc_msg_force_plaintext(msg: *mut dc_msg_t) {
|
pub unsafe extern "C" fn dc_msg_force_plaintext(msg: *mut dc_msg_t) {
|
||||||
if msg.is_null() {
|
if msg.is_null() {
|
||||||
@@ -4514,7 +4364,7 @@ pub unsafe extern "C" fn dc_backup_provider_wait(provider: *mut dc_backup_provid
|
|||||||
let ctx = &*ffi_provider.context;
|
let ctx = &*ffi_provider.context;
|
||||||
let provider = &mut ffi_provider.provider;
|
let provider = &mut ffi_provider.provider;
|
||||||
block_on(provider)
|
block_on(provider)
|
||||||
.context("Failed to await backup provider")
|
.context("Failed to await BackupProvider")
|
||||||
.log_err(ctx)
|
.log_err(ctx)
|
||||||
.set_last_error(ctx)
|
.set_last_error(ctx)
|
||||||
.ok();
|
.ok();
|
||||||
@@ -4568,7 +4418,7 @@ trait ResultExt<T, E> {
|
|||||||
/// Like `log_err()`, but:
|
/// Like `log_err()`, but:
|
||||||
/// - returns the default value instead of an Err value.
|
/// - returns the default value instead of an Err value.
|
||||||
/// - emits an error instead of a warning for an [Err] result. This means
|
/// - emits an error instead of a warning for an [Err] result. This means
|
||||||
/// that the error will be shown to the user in a small pop-up.
|
/// that the error will be shown to the user in a small pop-up.
|
||||||
fn unwrap_or_log_default(self, context: &context::Context, message: &str) -> T;
|
fn unwrap_or_log_default(self, context: &context::Context, message: &str) -> T;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -4687,16 +4537,19 @@ 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))
|
let socks5_enabled = block_on(async move {
|
||||||
.context("Can't get config")
|
ctx.get_config_bool(config::Config::Socks5Enabled)
|
||||||
.log_err(ctx);
|
.await
|
||||||
|
.context("Can't get config")
|
||||||
|
.log_err(ctx)
|
||||||
|
});
|
||||||
|
|
||||||
match proxy_enabled {
|
match socks5_enabled {
|
||||||
Ok(proxy_enabled) => {
|
Ok(socks5_enabled) => {
|
||||||
match block_on(provider::get_provider_info_by_addr(
|
match block_on(provider::get_provider_info_by_addr(
|
||||||
ctx,
|
ctx,
|
||||||
addr.as_str(),
|
addr.as_str(),
|
||||||
proxy_enabled,
|
socks5_enabled,
|
||||||
))
|
))
|
||||||
.log_err(ctx)
|
.log_err(ctx)
|
||||||
.unwrap_or_default()
|
.unwrap_or_default()
|
||||||
@@ -5027,7 +4880,7 @@ pub unsafe extern "C" fn dc_accounts_maybe_network_lost(accounts: *mut dc_accoun
|
|||||||
}
|
}
|
||||||
|
|
||||||
let accounts = &*accounts;
|
let accounts = &*accounts;
|
||||||
block_on(async move { accounts.read().await.maybe_network_lost().await });
|
block_on(async move { accounts.write().await.maybe_network_lost().await });
|
||||||
}
|
}
|
||||||
|
|
||||||
#[no_mangle]
|
#[no_mangle]
|
||||||
@@ -5041,12 +4894,12 @@ pub unsafe extern "C" fn dc_accounts_background_fetch(
|
|||||||
}
|
}
|
||||||
|
|
||||||
let accounts = &*accounts;
|
let accounts = &*accounts;
|
||||||
let background_fetch_future = {
|
block_on(async move {
|
||||||
let lock = block_on(accounts.read());
|
let accounts = accounts.read().await;
|
||||||
lock.background_fetch(Duration::from_secs(timeout_in_seconds))
|
accounts
|
||||||
};
|
.background_fetch(Duration::from_secs(timeout_in_seconds))
|
||||||
// At this point account manager is not locked anymore.
|
.await;
|
||||||
block_on(background_fetch_future);
|
});
|
||||||
1
|
1
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -5064,7 +4917,7 @@ pub unsafe extern "C" fn dc_accounts_set_push_device_token(
|
|||||||
let token = to_string_lossy(token);
|
let token = to_string_lossy(token);
|
||||||
|
|
||||||
block_on(async move {
|
block_on(async move {
|
||||||
let accounts = accounts.read().await;
|
let mut accounts = accounts.write().await;
|
||||||
if let Err(err) = accounts.set_push_device_token(&token).await {
|
if let Err(err) = accounts.set_push_device_token(&token).await {
|
||||||
accounts.emit_event(EventType::Error(format!(
|
accounts.emit_event(EventType::Error(format!(
|
||||||
"Failed to set notify token: {err:#}."
|
"Failed to set notify token: {err:#}."
|
||||||
@@ -5088,97 +4941,105 @@ pub unsafe extern "C" fn dc_accounts_get_event_emitter(
|
|||||||
Box::into_raw(Box::new(emitter))
|
Box::into_raw(Box::new(emitter))
|
||||||
}
|
}
|
||||||
|
|
||||||
pub struct dc_jsonrpc_instance_t {
|
#[cfg(feature = "jsonrpc")]
|
||||||
receiver: OutReceiver,
|
mod jsonrpc {
|
||||||
handle: RpcSession<CommandApi>,
|
use deltachat_jsonrpc::api::CommandApi;
|
||||||
}
|
use deltachat_jsonrpc::yerpc::{OutReceiver, RpcClient, RpcSession};
|
||||||
|
|
||||||
#[no_mangle]
|
use super::*;
|
||||||
pub unsafe extern "C" fn dc_jsonrpc_init(
|
|
||||||
account_manager: *mut dc_accounts_t,
|
pub struct dc_jsonrpc_instance_t {
|
||||||
) -> *mut dc_jsonrpc_instance_t {
|
receiver: OutReceiver,
|
||||||
if account_manager.is_null() {
|
handle: RpcSession<CommandApi>,
|
||||||
eprintln!("ignoring careless call to dc_jsonrpc_init()");
|
|
||||||
return ptr::null_mut();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
let account_manager = &*account_manager;
|
#[no_mangle]
|
||||||
let cmd_api = block_on(deltachat_jsonrpc::api::CommandApi::from_arc(
|
pub unsafe extern "C" fn dc_jsonrpc_init(
|
||||||
account_manager.inner.clone(),
|
account_manager: *mut dc_accounts_t,
|
||||||
));
|
) -> *mut dc_jsonrpc_instance_t {
|
||||||
|
if account_manager.is_null() {
|
||||||
let (request_handle, receiver) = RpcClient::new();
|
eprintln!("ignoring careless call to dc_jsonrpc_init()");
|
||||||
let handle = RpcSession::new(request_handle, cmd_api);
|
return ptr::null_mut();
|
||||||
|
}
|
||||||
let instance = dc_jsonrpc_instance_t { receiver, handle };
|
|
||||||
|
let account_manager = &*account_manager;
|
||||||
Box::into_raw(Box::new(instance))
|
let cmd_api = block_on(deltachat_jsonrpc::api::CommandApi::from_arc(
|
||||||
}
|
account_manager.inner.clone(),
|
||||||
|
));
|
||||||
#[no_mangle]
|
|
||||||
pub unsafe extern "C" fn dc_jsonrpc_unref(jsonrpc_instance: *mut dc_jsonrpc_instance_t) {
|
let (request_handle, receiver) = RpcClient::new();
|
||||||
if jsonrpc_instance.is_null() {
|
let handle = RpcSession::new(request_handle, cmd_api);
|
||||||
eprintln!("ignoring careless call to dc_jsonrpc_unref()");
|
|
||||||
return;
|
let instance = dc_jsonrpc_instance_t { receiver, handle };
|
||||||
}
|
|
||||||
drop(Box::from_raw(jsonrpc_instance));
|
Box::into_raw(Box::new(instance))
|
||||||
}
|
}
|
||||||
|
|
||||||
fn spawn_handle_jsonrpc_request(handle: RpcSession<CommandApi>, request: String) {
|
#[no_mangle]
|
||||||
spawn(async move {
|
pub unsafe extern "C" fn dc_jsonrpc_unref(jsonrpc_instance: *mut dc_jsonrpc_instance_t) {
|
||||||
handle.handle_incoming(&request).await;
|
if jsonrpc_instance.is_null() {
|
||||||
});
|
eprintln!("ignoring careless call to dc_jsonrpc_unref()");
|
||||||
}
|
return;
|
||||||
|
}
|
||||||
#[no_mangle]
|
drop(Box::from_raw(jsonrpc_instance));
|
||||||
pub unsafe extern "C" fn dc_jsonrpc_request(
|
}
|
||||||
jsonrpc_instance: *mut dc_jsonrpc_instance_t,
|
|
||||||
request: *const libc::c_char,
|
fn spawn_handle_jsonrpc_request(handle: RpcSession<CommandApi>, request: String) {
|
||||||
) {
|
spawn(async move {
|
||||||
if jsonrpc_instance.is_null() || request.is_null() {
|
handle.handle_incoming(&request).await;
|
||||||
eprintln!("ignoring careless call to dc_jsonrpc_request()");
|
});
|
||||||
return;
|
}
|
||||||
}
|
|
||||||
|
#[no_mangle]
|
||||||
let handle = &(*jsonrpc_instance).handle;
|
pub unsafe extern "C" fn dc_jsonrpc_request(
|
||||||
let request = to_string_lossy(request);
|
jsonrpc_instance: *mut dc_jsonrpc_instance_t,
|
||||||
spawn_handle_jsonrpc_request(handle.clone(), request);
|
request: *const libc::c_char,
|
||||||
}
|
) {
|
||||||
|
if jsonrpc_instance.is_null() || request.is_null() {
|
||||||
#[no_mangle]
|
eprintln!("ignoring careless call to dc_jsonrpc_request()");
|
||||||
pub unsafe extern "C" fn dc_jsonrpc_next_response(
|
return;
|
||||||
jsonrpc_instance: *mut dc_jsonrpc_instance_t,
|
}
|
||||||
) -> *mut libc::c_char {
|
|
||||||
if jsonrpc_instance.is_null() {
|
let handle = &(*jsonrpc_instance).handle;
|
||||||
eprintln!("ignoring careless call to dc_jsonrpc_next_response()");
|
let request = to_string_lossy(request);
|
||||||
return ptr::null_mut();
|
spawn_handle_jsonrpc_request(handle.clone(), request);
|
||||||
}
|
}
|
||||||
let api = &*jsonrpc_instance;
|
|
||||||
block_on(api.receiver.recv())
|
#[no_mangle]
|
||||||
.map(|result| serde_json::to_string(&result).unwrap_or_default().strdup())
|
pub unsafe extern "C" fn dc_jsonrpc_next_response(
|
||||||
.unwrap_or(ptr::null_mut())
|
jsonrpc_instance: *mut dc_jsonrpc_instance_t,
|
||||||
}
|
) -> *mut libc::c_char {
|
||||||
|
if jsonrpc_instance.is_null() {
|
||||||
#[no_mangle]
|
eprintln!("ignoring careless call to dc_jsonrpc_next_response()");
|
||||||
pub unsafe extern "C" fn dc_jsonrpc_blocking_call(
|
return ptr::null_mut();
|
||||||
jsonrpc_instance: *mut dc_jsonrpc_instance_t,
|
}
|
||||||
input: *const libc::c_char,
|
let api = &*jsonrpc_instance;
|
||||||
) -> *mut libc::c_char {
|
block_on(api.receiver.recv())
|
||||||
if jsonrpc_instance.is_null() {
|
.map(|result| serde_json::to_string(&result).unwrap_or_default().strdup())
|
||||||
eprintln!("ignoring careless call to dc_jsonrpc_blocking_call()");
|
.unwrap_or(ptr::null_mut())
|
||||||
return ptr::null_mut();
|
}
|
||||||
}
|
|
||||||
let api = &*jsonrpc_instance;
|
#[no_mangle]
|
||||||
let input = to_string_lossy(input);
|
pub unsafe extern "C" fn dc_jsonrpc_blocking_call(
|
||||||
let res = block_on(api.handle.process_incoming(&input));
|
jsonrpc_instance: *mut dc_jsonrpc_instance_t,
|
||||||
match res {
|
input: *const libc::c_char,
|
||||||
Some(message) => {
|
) -> *mut libc::c_char {
|
||||||
if let Ok(message) = serde_json::to_string(&message) {
|
if jsonrpc_instance.is_null() {
|
||||||
message.strdup()
|
eprintln!("ignoring careless call to dc_jsonrpc_blocking_call()");
|
||||||
} else {
|
return ptr::null_mut();
|
||||||
ptr::null_mut()
|
}
|
||||||
}
|
let api = &*jsonrpc_instance;
|
||||||
|
let input = to_string_lossy(input);
|
||||||
|
let res = block_on(api.handle.process_incoming(&input));
|
||||||
|
match res {
|
||||||
|
Some(message) => {
|
||||||
|
if let Ok(message) = serde_json::to_string(&message) {
|
||||||
|
message.strdup()
|
||||||
|
} else {
|
||||||
|
ptr::null_mut()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
None => ptr::null_mut(),
|
||||||
}
|
}
|
||||||
None => ptr::null_mut(),
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -34,35 +34,33 @@ pub enum Meaning {
|
|||||||
}
|
}
|
||||||
|
|
||||||
impl Lot {
|
impl Lot {
|
||||||
pub fn get_text1(&self) -> Option<Cow<str>> {
|
pub fn get_text1(&self) -> Option<&str> {
|
||||||
match self {
|
match self {
|
||||||
Self::Summary(summary) => match &summary.prefix {
|
Self::Summary(summary) => match &summary.prefix {
|
||||||
None => None,
|
None => None,
|
||||||
Some(SummaryPrefix::Draft(text)) => Some(Cow::Borrowed(text)),
|
Some(SummaryPrefix::Draft(text)) => Some(text),
|
||||||
Some(SummaryPrefix::Username(username)) => Some(Cow::Borrowed(username)),
|
Some(SummaryPrefix::Username(username)) => Some(username),
|
||||||
Some(SummaryPrefix::Me(text)) => Some(Cow::Borrowed(text)),
|
Some(SummaryPrefix::Me(text)) => Some(text),
|
||||||
},
|
},
|
||||||
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(grpname),
|
||||||
Qr::FprOk { .. } => None,
|
Qr::FprOk { .. } => None,
|
||||||
Qr::FprMismatch { .. } => None,
|
Qr::FprMismatch { .. } => None,
|
||||||
Qr::FprWithoutAddr { fingerprint, .. } => Some(Cow::Borrowed(fingerprint)),
|
Qr::FprWithoutAddr { fingerprint, .. } => Some(fingerprint),
|
||||||
Qr::Account { domain } => Some(Cow::Borrowed(domain)),
|
Qr::Account { domain } => Some(domain),
|
||||||
Qr::Backup2 { .. } => None,
|
Qr::Backup { .. } => None,
|
||||||
Qr::BackupTooNew { .. } => None,
|
Qr::WebrtcInstance { domain, .. } => Some(domain),
|
||||||
Qr::WebrtcInstance { domain, .. } => Some(Cow::Borrowed(domain)),
|
Qr::Addr { draft, .. } => draft.as_deref(),
|
||||||
Qr::Proxy { host, port, .. } => Some(Cow::Owned(format!("{host}:{port}"))),
|
Qr::Url { url } => Some(url),
|
||||||
Qr::Addr { draft, .. } => draft.as_deref().map(Cow::Borrowed),
|
Qr::Text { text } => Some(text),
|
||||||
Qr::Url { url } => Some(Cow::Borrowed(url)),
|
|
||||||
Qr::Text { text } => Some(Cow::Borrowed(text)),
|
|
||||||
Qr::WithdrawVerifyContact { .. } => None,
|
Qr::WithdrawVerifyContact { .. } => None,
|
||||||
Qr::WithdrawVerifyGroup { grpname, .. } => Some(Cow::Borrowed(grpname)),
|
Qr::WithdrawVerifyGroup { grpname, .. } => Some(grpname),
|
||||||
Qr::ReviveVerifyContact { .. } => None,
|
Qr::ReviveVerifyContact { .. } => None,
|
||||||
Qr::ReviveVerifyGroup { grpname, .. } => Some(Cow::Borrowed(grpname)),
|
Qr::ReviveVerifyGroup { grpname, .. } => Some(grpname),
|
||||||
Qr::Login { address, .. } => Some(Cow::Borrowed(address)),
|
Qr::Login { address, .. } => Some(address),
|
||||||
},
|
},
|
||||||
Self::Error(err) => Some(Cow::Borrowed(err)),
|
Self::Error(err) => Some(err),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -103,10 +101,8 @@ impl Lot {
|
|||||||
Qr::FprMismatch { .. } => LotState::QrFprMismatch,
|
Qr::FprMismatch { .. } => LotState::QrFprMismatch,
|
||||||
Qr::FprWithoutAddr { .. } => LotState::QrFprWithoutAddr,
|
Qr::FprWithoutAddr { .. } => LotState::QrFprWithoutAddr,
|
||||||
Qr::Account { .. } => LotState::QrAccount,
|
Qr::Account { .. } => LotState::QrAccount,
|
||||||
Qr::Backup2 { .. } => LotState::QrBackup2,
|
Qr::Backup { .. } => LotState::QrBackup,
|
||||||
Qr::BackupTooNew { .. } => LotState::QrBackupTooNew,
|
|
||||||
Qr::WebrtcInstance { .. } => LotState::QrWebrtcInstance,
|
Qr::WebrtcInstance { .. } => LotState::QrWebrtcInstance,
|
||||||
Qr::Proxy { .. } => LotState::QrProxy,
|
|
||||||
Qr::Addr { .. } => LotState::QrAddr,
|
Qr::Addr { .. } => LotState::QrAddr,
|
||||||
Qr::Url { .. } => LotState::QrUrl,
|
Qr::Url { .. } => LotState::QrUrl,
|
||||||
Qr::Text { .. } => LotState::QrText,
|
Qr::Text { .. } => LotState::QrText,
|
||||||
@@ -130,10 +126,8 @@ impl Lot {
|
|||||||
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(),
|
||||||
Qr::Account { .. } => Default::default(),
|
Qr::Account { .. } => Default::default(),
|
||||||
Qr::Backup2 { .. } => Default::default(),
|
Qr::Backup { .. } => Default::default(),
|
||||||
Qr::BackupTooNew { .. } => Default::default(),
|
|
||||||
Qr::WebrtcInstance { .. } => Default::default(),
|
Qr::WebrtcInstance { .. } => Default::default(),
|
||||||
Qr::Proxy { .. } => Default::default(),
|
|
||||||
Qr::Addr { contact_id, .. } => contact_id.to_u32(),
|
Qr::Addr { contact_id, .. } => contact_id.to_u32(),
|
||||||
Qr::Url { .. } => Default::default(),
|
Qr::Url { .. } => Default::default(),
|
||||||
Qr::Text { .. } => Default::default(),
|
Qr::Text { .. } => Default::default(),
|
||||||
@@ -181,16 +175,11 @@ pub enum LotState {
|
|||||||
/// text1=domain
|
/// text1=domain
|
||||||
QrAccount = 250,
|
QrAccount = 250,
|
||||||
|
|
||||||
QrBackup2 = 252,
|
QrBackup = 251,
|
||||||
|
|
||||||
QrBackupTooNew = 255,
|
|
||||||
|
|
||||||
/// text1=domain, text2=instance pattern
|
/// text1=domain, text2=instance pattern
|
||||||
QrWebrtcInstance = 260,
|
QrWebrtcInstance = 260,
|
||||||
|
|
||||||
/// text1=address, text2=protocol
|
|
||||||
QrProxy = 271,
|
|
||||||
|
|
||||||
/// id=contact
|
/// id=contact
|
||||||
QrAddr = 320,
|
QrAddr = 320,
|
||||||
|
|
||||||
|
|||||||
@@ -1,33 +1,45 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "deltachat-jsonrpc"
|
name = "deltachat-jsonrpc"
|
||||||
version = "1.159.4"
|
version = "1.140.0"
|
||||||
description = "DeltaChat JSON-RPC API"
|
description = "DeltaChat JSON-RPC API"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
default-run = "deltachat-jsonrpc-server"
|
||||||
license = "MPL-2.0"
|
license = "MPL-2.0"
|
||||||
repository = "https://github.com/chatmail/core"
|
repository = "https://github.com/deltachat/deltachat-core-rust"
|
||||||
|
|
||||||
|
[[bin]]
|
||||||
|
name = "deltachat-jsonrpc-server"
|
||||||
|
path = "src/webserver.rs"
|
||||||
|
required-features = ["webserver"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow = { workspace = true }
|
anyhow = "1"
|
||||||
deltachat = { workspace = true }
|
deltachat = { path = ".." }
|
||||||
deltachat-contact-tools = { workspace = true }
|
deltachat-contact-tools = { path = "../deltachat-contact-tools" }
|
||||||
num-traits = { workspace = true }
|
num-traits = "0.2"
|
||||||
schemars = "0.8.22"
|
schemars = "0.8.19"
|
||||||
serde = { workspace = true, features = ["derive"] }
|
serde = { version = "1.0", features = ["derive"] }
|
||||||
async-channel = { workspace = true }
|
tempfile = "3.10.1"
|
||||||
serde_json = { workspace = true }
|
log = "0.4"
|
||||||
yerpc = { workspace = true, features = ["anyhow_expose", "openrpc"] }
|
async-channel = { version = "2.2.1" }
|
||||||
typescript-type-def = { version = "0.5.13", features = ["json_value"] }
|
futures = { version = "0.3.30" }
|
||||||
tokio = { workspace = true }
|
serde_json = "1"
|
||||||
sanitize-filename = { workspace = true }
|
yerpc = { version = "0.5.2", features = ["anyhow_expose", "openrpc"] }
|
||||||
|
typescript-type-def = { version = "0.5.8", features = ["json_value"] }
|
||||||
|
tokio = { version = "1.37.0" }
|
||||||
|
sanitize-filename = "0.5"
|
||||||
walkdir = "2.5.0"
|
walkdir = "2.5.0"
|
||||||
base64 = { workspace = true }
|
base64 = "0.22"
|
||||||
|
|
||||||
|
# optional dependencies
|
||||||
|
axum = { version = "0.7", optional = true, features = ["ws"] }
|
||||||
|
env_logger = { version = "0.11.3", optional = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
tokio = { workspace = true, features = ["full", "rt-multi-thread"] }
|
tokio = { version = "1.37.0", features = ["full", "rt-multi-thread"] }
|
||||||
tempfile = { workspace = true }
|
|
||||||
futures = { workspace = true }
|
|
||||||
|
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["vendored"]
|
default = ["vendored"]
|
||||||
|
webserver = ["dep:env_logger", "dep:axum", "tokio/full", "yerpc/support-axum"]
|
||||||
vendored = ["deltachat/vendored"]
|
vendored = ["deltachat/vendored"]
|
||||||
|
|||||||
@@ -4,16 +4,46 @@ This crate provides a [JSON-RPC 2.0](https://www.jsonrpc.org/specification) inte
|
|||||||
|
|
||||||
The JSON-RPC API is exposed in two fashions:
|
The JSON-RPC API is exposed in two fashions:
|
||||||
|
|
||||||
* A executable `deltachat-rpc-server` that exposes the JSON-RPC API through stdio.
|
* A executable that exposes the JSON-RPC API through a [WebSocket](https://developer.mozilla.org/en-US/docs/Web/API/WebSockets_API) server running on localhost.
|
||||||
* The JSON-RPC API can also be called through the [C FFI](../deltachat-ffi). It exposes the functions `dc_jsonrpc_init`, `dc_jsonrpc_request`, `dc_jsonrpc_next_response` and `dc_jsonrpc_unref`. See the docs in the [header file](../deltachat-ffi/deltachat.h) for details.
|
* The JSON-RPC API can also be called through the [C FFI](../deltachat-ffi). The C FFI needs to be built with the `jsonrpc` feature. It will then expose the functions `dc_jsonrpc_init`, `dc_jsonrpc_request`, `dc_jsonrpc_next_response` and `dc_jsonrpc_unref`. See the docs in the [header file](../deltachat-ffi/deltachat.h) for details.
|
||||||
|
|
||||||
We also include a JavaScript and TypeScript client for the JSON-RPC API. The source for this is in the [`typescript`](typescript) folder.
|
We also include a JavaScript and TypeScript client for the JSON-RPC API. The source for this is in the [`typescript`](typescript) folder. The client can easily be used with the WebSocket server to build DeltaChat apps for web browsers or Node.js. See the [examples](typescript/example) for details.
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
|
#### Running the WebSocket server
|
||||||
|
|
||||||
|
From within this folder, you can start the WebSocket server with the following command:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
cargo run --features webserver
|
||||||
|
```
|
||||||
|
|
||||||
|
If you want to use the server in a production setup, first build it in release mode:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
cargo build --features webserver --release
|
||||||
|
```
|
||||||
|
You will then find the `deltachat-jsonrpc-server` executable in your `target/release` folder.
|
||||||
|
|
||||||
|
The executable currently does not support any command-line arguments. By default, once started it will accept WebSocket connections on `ws://localhost:20808/ws`. It will store the persistent configuration and databases in a `./accounts` folder relative to the directory from where it is started.
|
||||||
|
|
||||||
|
The server can be configured with environment variables:
|
||||||
|
|
||||||
|
|variable|default|description|
|
||||||
|
|-|-|-|
|
||||||
|
|`DC_PORT`|`20808`|port to listen on|
|
||||||
|
|`DC_ACCOUNTS_PATH`|`./accounts`|path to storage directory|
|
||||||
|
|
||||||
|
If you are targeting other architectures (like KaiOS or Android), the webserver binary can be cross-compiled easily with [rust-cross](https://github.com/cross-rs/cross):
|
||||||
|
|
||||||
|
```sh
|
||||||
|
cross build --features=webserver --target armv7-linux-androideabi --release
|
||||||
|
```
|
||||||
|
|
||||||
#### Using the TypeScript/JavaScript client
|
#### Using the TypeScript/JavaScript client
|
||||||
|
|
||||||
The package includes a JavaScript/TypeScript client which is partially auto-generated through the JSON-RPC library used by this crate ([yerpc](https://github.com/chatmail/yerpc)). Find the source in the [`typescript`](typescript) folder.
|
The package includes a JavaScript/TypeScript client which is partially auto-generated through the JSON-RPC library used by this crate ([yerpc](https://github.com/Frando/yerpc/)). Find the source in the [`typescript`](typescript) folder.
|
||||||
|
|
||||||
To use it locally, first install the dependencies and compile the TypeScript code to JavaScript:
|
To use it locally, first install the dependencies and compile the TypeScript code to JavaScript:
|
||||||
```sh
|
```sh
|
||||||
@@ -22,7 +52,15 @@ npm install
|
|||||||
npm run build
|
npm run build
|
||||||
```
|
```
|
||||||
|
|
||||||
The JavaScript client is [published on NPM](https://www.npmjs.com/package/@deltachat/jsonrpc-client).
|
The JavaScript client is not yet published on NPM (but will likely be soon). Currently, it is recommended to vendor the bundled build. After running `npm run build` as documented above, there will be a file `dist/deltachat.bundle.js`. This is an ESM module containing all dependencies. Copy this file to your project and import the DeltaChat class.
|
||||||
|
|
||||||
|
|
||||||
|
```typescript
|
||||||
|
import { DeltaChat } from './deltachat.bundle.js'
|
||||||
|
const dc = new DeltaChat('ws://localhost:20808/ws')
|
||||||
|
const accounts = await dc.rpc.getAllAccounts()
|
||||||
|
console.log('accounts', accounts)
|
||||||
|
```
|
||||||
|
|
||||||
A script is included to build autogenerated documentation, which includes all RPC methods:
|
A script is included to build autogenerated documentation, which includes all RPC methods:
|
||||||
```sh
|
```sh
|
||||||
@@ -35,6 +73,18 @@ Then open the [`typescript/docs`](typescript/docs) folder in a web browser.
|
|||||||
|
|
||||||
#### Running the example app
|
#### Running the example app
|
||||||
|
|
||||||
|
We include a small demo web application that talks to the WebSocket server. It can be used for testing. Feel invited to expand this.
|
||||||
|
|
||||||
|
```sh
|
||||||
|
cd typescript
|
||||||
|
npm run build
|
||||||
|
npm run example:build
|
||||||
|
npm run example:start
|
||||||
|
```
|
||||||
|
Then, open [`http://localhost:8080/example.html`](http://localhost:8080/example.html) in a web browser.
|
||||||
|
|
||||||
|
Run `npm run example:dev` to live-rebuild the example app when files changes.
|
||||||
|
|
||||||
### Testing
|
### Testing
|
||||||
|
|
||||||
The crate includes both a basic Rust smoke test and more featureful integration tests that use the TypeScript client.
|
The crate includes both a basic Rust smoke test and more featureful integration tests that use the TypeScript client.
|
||||||
@@ -54,12 +104,14 @@ cd typescript
|
|||||||
npm run test
|
npm run test
|
||||||
```
|
```
|
||||||
|
|
||||||
This will build the `deltachat-jsonrpc-server` binary and then run a test suite.
|
This will build the `deltachat-jsonrpc-server` binary and then run a test suite against the WebSocket server.
|
||||||
|
|
||||||
The test suite includes some tests that need online connectivity and a way to create test email accounts. To run these tests, set the `CHATMAIL_DOMAIN` environment variable to your testing email server domain.
|
The test suite includes some tests that need online connectivity and a way to create test email accounts. To run these tests, talk to DeltaChat developers to get a token for the `testrun.org` service, or use a local instance of [`mailadm`](https://github.com/deltachat/docker-mailadm).
|
||||||
|
|
||||||
|
Then, set the `CHATMAIL_DOMAIN` environment variable to your testing email server domain.
|
||||||
|
|
||||||
```
|
```
|
||||||
CHATMAIL_DOMAIN=ci-chatmail.testrun.org npm run test
|
CHATMAIL_DOMAIN=chat.example.org npm run test
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Test Coverage
|
#### Test Coverage
|
||||||
|
|||||||
28
deltachat-jsonrpc/TODO.md
Normal file
28
deltachat-jsonrpc/TODO.md
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
# TODO
|
||||||
|
|
||||||
|
- [ ] different test type to simulate two devices: to test autocrypt_initiate_key_transfer & autocrypt_continue_key_transfer
|
||||||
|
|
||||||
|
## MVP - Websocket server&client
|
||||||
|
|
||||||
|
For kaiOS and other experiments, like a deltachat "web" over network from an android phone.
|
||||||
|
|
||||||
|
- [ ] coverage for a majority of the API
|
||||||
|
- [ ] Blobs served
|
||||||
|
- [ ] Blob upload (for attachments, setting profile-picture, importing backup and so on)
|
||||||
|
- [ ] other way blobs can be addressed when using websocket vs. jsonrpc over dc-node
|
||||||
|
- [ ] Web push API? At least some kind of notification hook closure this lib can accept.
|
||||||
|
|
||||||
|
### Other Ideas for the Websocket server
|
||||||
|
|
||||||
|
- [ ] make sure there can only be one connection at a time to the ws
|
||||||
|
- why? , it could give problems if its commanded from multiple connections
|
||||||
|
- [ ] encrypted connection?
|
||||||
|
- [ ] authenticated connection?
|
||||||
|
- [ ] Look into unit-testing for the proc macros?
|
||||||
|
- [ ] proc macro taking over doc comments to generated typescript file
|
||||||
|
|
||||||
|
## Desktop Apis
|
||||||
|
|
||||||
|
Incomplete todo for desktop api porting, just some remainders for points that might need more work:
|
||||||
|
|
||||||
|
- [ ] manual start/stop io functions in the api for context and accounts, so "not syncing all accounts" can still be done in desktop -> webserver should then not do start io on all accounts by default
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
use std::collections::BTreeMap;
|
use std::collections::BTreeMap;
|
||||||
use std::path::{Path, PathBuf};
|
use std::path::Path;
|
||||||
use std::str;
|
use std::str;
|
||||||
use std::sync::Arc;
|
use std::sync::Arc;
|
||||||
use std::time::Duration;
|
use std::time::Duration;
|
||||||
@@ -7,7 +7,6 @@ use std::{collections::HashMap, str::FromStr};
|
|||||||
|
|
||||||
use anyhow::{anyhow, bail, ensure, Context, Result};
|
use anyhow::{anyhow, bail, ensure, Context, Result};
|
||||||
pub use deltachat::accounts::Accounts;
|
pub use deltachat::accounts::Accounts;
|
||||||
use deltachat::blob::BlobObject;
|
|
||||||
use deltachat::chat::{
|
use deltachat::chat::{
|
||||||
self, add_contact_to_chat, forward_msgs, get_chat_media, get_chat_msgs, get_chat_msgs_ex,
|
self, add_contact_to_chat, forward_msgs, get_chat_media, get_chat_msgs, get_chat_msgs_ex,
|
||||||
marknoticed_chat, remove_contact_from_chat, Chat, ChatId, ChatItem, MessageListOptions,
|
marknoticed_chat, remove_contact_from_chat, Chat, ChatId, ChatItem, MessageListOptions,
|
||||||
@@ -22,7 +21,7 @@ use deltachat::ephemeral::Timer;
|
|||||||
use deltachat::location;
|
use deltachat::location;
|
||||||
use deltachat::message::get_msg_read_receipts;
|
use deltachat::message::get_msg_read_receipts;
|
||||||
use deltachat::message::{
|
use deltachat::message::{
|
||||||
self, delete_msgs_ex, markseen_msgs, Message, MessageState, MsgId, Viewtype,
|
self, delete_msgs, 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,
|
||||||
@@ -39,7 +38,6 @@ use deltachat::{imex, info};
|
|||||||
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 walkdir::WalkDir;
|
use walkdir::WalkDir;
|
||||||
use yerpc::rpc;
|
use yerpc::rpc;
|
||||||
|
|
||||||
@@ -214,12 +212,14 @@ impl CommandApi {
|
|||||||
self.accounts.read().await.get_all()
|
self.accounts.read().await.get_all()
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Select account in account manager, this saves the last used account to accounts.toml
|
/// Select account id for internally selected state.
|
||||||
|
/// TODO: Likely this is deprecated as all methods take an account id now.
|
||||||
async fn select_account(&self, id: u32) -> Result<()> {
|
async fn select_account(&self, id: u32) -> Result<()> {
|
||||||
self.accounts.write().await.select_account(id).await
|
self.accounts.write().await.select_account(id).await
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Get the selected account from the account manager (on startup it is read from accounts.toml)
|
/// Get the selected account id of the internal state..
|
||||||
|
/// TODO: Likely this is deprecated as all methods take an account id now.
|
||||||
async fn get_selected_account_id(&self) -> Option<u32> {
|
async fn get_selected_account_id(&self) -> Option<u32> {
|
||||||
self.accounts.read().await.get_selected_account_id()
|
self.accounts.read().await.get_selected_account_id()
|
||||||
}
|
}
|
||||||
@@ -227,9 +227,8 @@ impl CommandApi {
|
|||||||
/// Get a list of all configured accounts.
|
/// Get a list of all configured accounts.
|
||||||
async fn get_all_accounts(&self) -> Result<Vec<Account>> {
|
async fn get_all_accounts(&self) -> Result<Vec<Account>> {
|
||||||
let mut accounts = Vec::new();
|
let mut accounts = Vec::new();
|
||||||
let accounts_lock = self.accounts.read().await;
|
for id in self.accounts.read().await.get_all() {
|
||||||
for id in accounts_lock.get_all() {
|
let context_option = self.accounts.read().await.get_account(id);
|
||||||
let context_option = accounts_lock.get_account(id);
|
|
||||||
if let Some(ctx) = context_option {
|
if let Some(ctx) = context_option {
|
||||||
accounts.push(Account::from_context(&ctx, id).await?)
|
accounts.push(Account::from_context(&ctx, id).await?)
|
||||||
}
|
}
|
||||||
@@ -255,12 +254,11 @@ impl CommandApi {
|
|||||||
/// 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 accounts_background_fetch(&self, timeout_in_seconds: f64) -> Result<()> {
|
async fn accounts_background_fetch(&self, timeout_in_seconds: f64) -> Result<()> {
|
||||||
let future = {
|
self.accounts
|
||||||
let lock = self.accounts.read().await;
|
.write()
|
||||||
lock.background_fetch(std::time::Duration::from_secs_f64(timeout_in_seconds))
|
.await
|
||||||
};
|
.background_fetch(std::time::Duration::from_secs_f64(timeout_in_seconds))
|
||||||
// At this point account manager is not locked anymore.
|
.await;
|
||||||
future.await;
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -323,16 +321,12 @@ impl CommandApi {
|
|||||||
) -> Result<Option<ProviderInfo>> {
|
) -> Result<Option<ProviderInfo>> {
|
||||||
let ctx = self.get_context(account_id).await?;
|
let ctx = self.get_context(account_id).await?;
|
||||||
|
|
||||||
let proxy_enabled = ctx
|
let socks5_enabled = ctx
|
||||||
.get_config_bool(deltachat::config::Config::ProxyEnabled)
|
.get_config_bool(deltachat::config::Config::Socks5Enabled)
|
||||||
.await?;
|
.await?;
|
||||||
|
|
||||||
let provider_info = get_provider_info(
|
let provider_info =
|
||||||
&ctx,
|
get_provider_info(&ctx, email.split('@').last().unwrap_or(""), socks5_enabled).await;
|
||||||
email.split('@').next_back().unwrap_or(""),
|
|
||||||
proxy_enabled,
|
|
||||||
)
|
|
||||||
.await;
|
|
||||||
Ok(ProviderInfo::from_dc_type(provider_info))
|
Ok(ProviderInfo::from_dc_type(provider_info))
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -348,19 +342,11 @@ impl CommandApi {
|
|||||||
ctx.get_info().await
|
ctx.get_info().await
|
||||||
}
|
}
|
||||||
|
|
||||||
/// 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?;
|
||||||
Ok(ctx.get_blobdir().to_str().map(|s| s.to_owned()))
|
Ok(ctx.get_blobdir().to_str().map(|s| s.to_owned()))
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Copy file to blob dir.
|
|
||||||
async fn copy_to_blob_dir(&self, account_id: u32, path: String) -> Result<PathBuf> {
|
|
||||||
let ctx = self.get_context(account_id).await?;
|
|
||||||
let file = Path::new(&path);
|
|
||||||
Ok(BlobObject::create_and_deduplicate(&ctx, file, file)?.to_abs_path())
|
|
||||||
}
|
|
||||||
|
|
||||||
async fn draft_self_report(&self, account_id: u32) -> Result<u32> {
|
async fn draft_self_report(&self, account_id: u32) -> Result<u32> {
|
||||||
let ctx = self.get_context(account_id).await?;
|
let ctx = self.get_context(account_id).await?;
|
||||||
Ok(ctx.draft_self_report().await?.to_u32())
|
Ok(ctx.draft_self_report().await?.to_u32())
|
||||||
@@ -437,9 +423,6 @@ impl CommandApi {
|
|||||||
|
|
||||||
/// Configures this account with the currently set parameters.
|
/// Configures this account with the currently set parameters.
|
||||||
/// Setup the credential config before calling this.
|
/// Setup the credential config before calling this.
|
||||||
///
|
|
||||||
/// Deprecated as of 2025-02; use `add_transport_from_qr()`
|
|
||||||
/// or `add_or_update_transport()` instead.
|
|
||||||
async fn configure(&self, account_id: u32) -> Result<()> {
|
async fn configure(&self, account_id: u32) -> Result<()> {
|
||||||
let ctx = self.get_context(account_id).await?;
|
let ctx = self.get_context(account_id).await?;
|
||||||
ctx.stop_io().await;
|
ctx.stop_io().await;
|
||||||
@@ -454,78 +437,6 @@ impl CommandApi {
|
|||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Configures a new email account using the provided parameters
|
|
||||||
/// and adds it as a transport.
|
|
||||||
///
|
|
||||||
/// If the email address is the same as an existing transport,
|
|
||||||
/// then this existing account will be reconfigured instead of a new one being added.
|
|
||||||
///
|
|
||||||
/// This function stops and starts IO as needed.
|
|
||||||
///
|
|
||||||
/// Usually it will be enough to only set `addr` and `password`,
|
|
||||||
/// and all the other settings will be autoconfigured.
|
|
||||||
///
|
|
||||||
/// During configuration, ConfigureProgress events are emitted;
|
|
||||||
/// they indicate a successful configuration as well as errors
|
|
||||||
/// and may be used to create a progress bar.
|
|
||||||
/// This function will return after configuration is finished.
|
|
||||||
///
|
|
||||||
/// If configuration is successful,
|
|
||||||
/// the working server parameters will be saved
|
|
||||||
/// and used for connecting to the server.
|
|
||||||
/// The parameters entered by the user will be saved separately
|
|
||||||
/// so that they can be prefilled when the user opens the server-configuration screen again.
|
|
||||||
///
|
|
||||||
/// See also:
|
|
||||||
/// - [Self::is_configured()] to check whether there is
|
|
||||||
/// at least one working transport.
|
|
||||||
/// - [Self::add_transport_from_qr()] to add a transport
|
|
||||||
/// from a server encoded in a QR code.
|
|
||||||
/// - [Self::list_transports()] to get a list of all configured transports.
|
|
||||||
/// - [Self::delete_transport()] to remove a transport.
|
|
||||||
async fn add_or_update_transport(
|
|
||||||
&self,
|
|
||||||
account_id: u32,
|
|
||||||
param: EnteredLoginParam,
|
|
||||||
) -> Result<()> {
|
|
||||||
let ctx = self.get_context(account_id).await?;
|
|
||||||
ctx.add_or_update_transport(&mut param.try_into()?).await
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Deprecated 2025-04. Alias for [Self::add_or_update_transport()].
|
|
||||||
async fn add_transport(&self, account_id: u32, param: EnteredLoginParam) -> Result<()> {
|
|
||||||
self.add_or_update_transport(account_id, param).await
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Adds a new email account as a transport
|
|
||||||
/// using the server encoded in the QR code.
|
|
||||||
/// See [Self::add_or_update_transport].
|
|
||||||
async fn add_transport_from_qr(&self, account_id: u32, qr: String) -> Result<()> {
|
|
||||||
let ctx = self.get_context(account_id).await?;
|
|
||||||
ctx.add_transport_from_qr(&qr).await
|
|
||||||
}
|
|
||||||
|
|
||||||
/// 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(&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.into())
|
|
||||||
.collect();
|
|
||||||
Ok(res)
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Removes the transport with the specified email address
|
|
||||||
/// (i.e. [EnteredLoginParam::addr]).
|
|
||||||
async fn delete_transport(&self, account_id: u32, addr: String) -> Result<()> {
|
|
||||||
let ctx = self.get_context(account_id).await?;
|
|
||||||
ctx.delete_transport(&addr).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?;
|
||||||
@@ -796,22 +707,7 @@ impl CommandApi {
|
|||||||
ChatId::new(chat_id).get_encryption_info(&ctx).await
|
ChatId::new(chat_id).get_encryption_info(&ctx).await
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Get QR code text that will offer a [SecureJoin](https://securejoin.delta.chat/) invitation.
|
/// Get QR code (text and SVG) that will offer an Setup-Contact or Verified-Group invitation.
|
||||||
///
|
|
||||||
/// If `chat_id` is a group chat ID, SecureJoin QR code for the group is returned.
|
|
||||||
/// If `chat_id` is unset, setup contact QR code is returned.
|
|
||||||
async fn get_chat_securejoin_qr_code(
|
|
||||||
&self,
|
|
||||||
account_id: u32,
|
|
||||||
chat_id: Option<u32>,
|
|
||||||
) -> Result<String> {
|
|
||||||
let ctx = self.get_context(account_id).await?;
|
|
||||||
let chat = chat_id.map(ChatId::new);
|
|
||||||
let qr = securejoin::get_securejoin_qr(&ctx, chat).await?;
|
|
||||||
Ok(qr)
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Get QR code (text and SVG) that will offer a Setup-Contact or Verified-Group invitation.
|
|
||||||
/// The QR code is compatible to the OPENPGP4FPR format
|
/// The QR code is compatible to the OPENPGP4FPR format
|
||||||
/// so that a basic fingerprint comparison also works e.g. with OpenKeychain.
|
/// so that a basic fingerprint comparison also works e.g. with OpenKeychain.
|
||||||
///
|
///
|
||||||
@@ -833,9 +729,10 @@ impl CommandApi {
|
|||||||
) -> Result<(String, String)> {
|
) -> Result<(String, String)> {
|
||||||
let ctx = self.get_context(account_id).await?;
|
let ctx = self.get_context(account_id).await?;
|
||||||
let chat = chat_id.map(ChatId::new);
|
let chat = chat_id.map(ChatId::new);
|
||||||
let qr = securejoin::get_securejoin_qr(&ctx, chat).await?;
|
Ok((
|
||||||
let svg = get_securejoin_qr_svg(&ctx, chat).await?;
|
securejoin::get_securejoin_qr(&ctx, chat).await?,
|
||||||
Ok((qr, svg))
|
get_securejoin_qr_svg(&ctx, chat).await?,
|
||||||
|
))
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Continue a Setup-Contact or Verified-Group-Invite protocol
|
/// Continue a Setup-Contact or Verified-Group-Invite protocol
|
||||||
@@ -924,13 +821,6 @@ impl CommandApi {
|
|||||||
Ok(contacts.iter().map(|id| id.to_u32()).collect::<Vec<u32>>())
|
Ok(contacts.iter().map(|id| id.to_u32()).collect::<Vec<u32>>())
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Returns contact IDs of the past chat members.
|
|
||||||
async fn get_past_chat_contacts(&self, account_id: u32, chat_id: u32) -> Result<Vec<u32>> {
|
|
||||||
let ctx = self.get_context(account_id).await?;
|
|
||||||
let contacts = chat::get_past_chat_contacts(&ctx, ChatId::new(chat_id)).await?;
|
|
||||||
Ok(contacts.iter().map(|id| id.to_u32()).collect::<Vec<u32>>())
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Create a new group chat.
|
/// Create a new group chat.
|
||||||
///
|
///
|
||||||
/// After creation,
|
/// After creation,
|
||||||
@@ -1088,12 +978,6 @@ impl CommandApi {
|
|||||||
marknoticed_chat(&ctx, ChatId::new(chat_id)).await
|
marknoticed_chat(&ctx, ChatId::new(chat_id)).await
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Returns the message that is immediately followed by the last seen
|
|
||||||
/// message.
|
|
||||||
/// From the point of view of the user this is effectively
|
|
||||||
/// "first unread", but in reality in the database a seen message
|
|
||||||
/// _can_ be followed by a fresh (unseen) message
|
|
||||||
/// if that message has not been individually marked as seen.
|
|
||||||
async fn get_first_unread_message_of_chat(
|
async fn get_first_unread_message_of_chat(
|
||||||
&self,
|
&self,
|
||||||
account_id: u32,
|
account_id: u32,
|
||||||
@@ -1182,9 +1066,6 @@ 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
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Returns all messages of a particular chat.
|
|
||||||
/// If `add_daymarker` is `true`, it will return them as
|
|
||||||
/// `DC_MSG_ID_DAYMARKER`, e.g. [1234, 1237, 9, 1239].
|
|
||||||
async fn get_message_ids(
|
async fn get_message_ids(
|
||||||
&self,
|
&self,
|
||||||
account_id: u32,
|
account_id: u32,
|
||||||
@@ -1239,11 +1120,9 @@ impl CommandApi {
|
|||||||
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> {
|
||||||
let ctx = self.get_context(account_id).await?;
|
let ctx = self.get_context(account_id).await?;
|
||||||
let msg_id = MsgId::new(msg_id);
|
let msg_id = MsgId::new(msg_id);
|
||||||
let message_object = MessageObject::from_msg_id(&ctx, msg_id)
|
MessageObject::from_msg_id(&ctx, msg_id)
|
||||||
.await
|
.await
|
||||||
.with_context(|| format!("Failed to load message {msg_id} for account {account_id}"))?
|
.with_context(|| format!("Failed to load message {msg_id} for account {account_id}"))
|
||||||
.with_context(|| format!("Message {msg_id} does not exist for account {account_id}"))?;
|
|
||||||
Ok(message_object)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn get_message_html(&self, account_id: u32, message_id: u32) -> Result<Option<String>> {
|
async fn get_message_html(&self, account_id: u32, message_id: u32) -> Result<Option<String>> {
|
||||||
@@ -1267,10 +1146,7 @@ impl CommandApi {
|
|||||||
messages.insert(
|
messages.insert(
|
||||||
message_id,
|
message_id,
|
||||||
match message_result {
|
match message_result {
|
||||||
Ok(Some(message)) => MessageLoadResult::Message(message),
|
Ok(message) => MessageLoadResult::Message(message),
|
||||||
Ok(None) => MessageLoadResult::LoadingError {
|
|
||||||
error: "Message does not exist".to_string(),
|
|
||||||
},
|
|
||||||
Err(error) => MessageLoadResult::LoadingError {
|
Err(error) => MessageLoadResult::LoadingError {
|
||||||
error: format!("{error:#}"),
|
error: format!("{error:#}"),
|
||||||
},
|
},
|
||||||
@@ -1295,15 +1171,7 @@ impl CommandApi {
|
|||||||
async fn delete_messages(&self, account_id: u32, message_ids: Vec<u32>) -> Result<()> {
|
async fn delete_messages(&self, account_id: u32, message_ids: Vec<u32>) -> Result<()> {
|
||||||
let ctx = self.get_context(account_id).await?;
|
let ctx = self.get_context(account_id).await?;
|
||||||
let msgs: Vec<MsgId> = message_ids.into_iter().map(MsgId::new).collect();
|
let msgs: Vec<MsgId> = message_ids.into_iter().map(MsgId::new).collect();
|
||||||
delete_msgs_ex(&ctx, &msgs, false).await
|
delete_msgs(&ctx, &msgs).await
|
||||||
}
|
|
||||||
|
|
||||||
/// Delete messages. The messages are deleted on the current device,
|
|
||||||
/// on the IMAP server and also for all chat members
|
|
||||||
async fn delete_messages_for_all(&self, account_id: u32, message_ids: Vec<u32>) -> Result<()> {
|
|
||||||
let ctx = self.get_context(account_id).await?;
|
|
||||||
let msgs: Vec<MsgId> = message_ids.into_iter().map(MsgId::new).collect();
|
|
||||||
delete_msgs_ex(&ctx, &msgs, true).await
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Get an informational text for a single message. The text is multiline and may
|
/// Get an informational text for a single message. The text is multiline and may
|
||||||
@@ -1403,12 +1271,6 @@ impl CommandApi {
|
|||||||
Ok(results)
|
Ok(results)
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn save_msgs(&self, account_id: u32, message_ids: Vec<u32>) -> Result<()> {
|
|
||||||
let ctx = self.get_context(account_id).await?;
|
|
||||||
let message_ids: Vec<MsgId> = message_ids.into_iter().map(MsgId::new).collect();
|
|
||||||
chat::save_msgs(&ctx, &message_ids).await
|
|
||||||
}
|
|
||||||
|
|
||||||
// ---------------------------------------------
|
// ---------------------------------------------
|
||||||
// contact
|
// contact
|
||||||
// ---------------------------------------------
|
// ---------------------------------------------
|
||||||
@@ -1542,16 +1404,6 @@ impl CommandApi {
|
|||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Resets contact encryption.
|
|
||||||
async fn reset_contact_encryption(&self, account_id: u32, contact_id: u32) -> Result<()> {
|
|
||||||
let ctx = self.get_context(account_id).await?;
|
|
||||||
let contact_id = ContactId::new(contact_id);
|
|
||||||
|
|
||||||
contact_id.reset_encryption(&ctx).await?;
|
|
||||||
Ok(())
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Sets display name for existing contact.
|
|
||||||
async fn change_contact_name(
|
async fn change_contact_name(
|
||||||
&self,
|
&self,
|
||||||
account_id: u32,
|
account_id: u32,
|
||||||
@@ -1560,7 +1412,9 @@ impl CommandApi {
|
|||||||
) -> Result<()> {
|
) -> Result<()> {
|
||||||
let ctx = self.get_context(account_id).await?;
|
let ctx = self.get_context(account_id).await?;
|
||||||
let contact_id = ContactId::new(contact_id);
|
let contact_id = ContactId::new(contact_id);
|
||||||
contact_id.set_name(&ctx, &name).await?;
|
let contact = Contact::get_by_id(&ctx, contact_id).await?;
|
||||||
|
let addr = contact.get_addr();
|
||||||
|
Contact::create(&ctx, &name, addr).await?;
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1615,18 +1469,6 @@ impl CommandApi {
|
|||||||
.collect())
|
.collect())
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Imports contacts from a vCard.
|
|
||||||
///
|
|
||||||
/// Returns the ids of created/modified contacts in the order they appear in the vCard.
|
|
||||||
async fn import_vcard_contents(&self, account_id: u32, vcard: String) -> Result<Vec<u32>> {
|
|
||||||
let ctx = self.get_context(account_id).await?;
|
|
||||||
Ok(deltachat::contact::import_vcard(&ctx, &vcard)
|
|
||||||
.await?
|
|
||||||
.into_iter()
|
|
||||||
.map(|c| c.to_u32())
|
|
||||||
.collect())
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Returns a vCard containing contacts with the given ids.
|
/// Returns a vCard containing contacts with the given ids.
|
||||||
async fn make_vcard(&self, account_id: u32, contacts: Vec<u32>) -> Result<String> {
|
async fn make_vcard(&self, account_id: u32, contacts: Vec<u32>) -> Result<String> {
|
||||||
let ctx = self.get_context(account_id).await?;
|
let ctx = self.get_context(account_id).await?;
|
||||||
@@ -1634,20 +1476,6 @@ 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
|
||||||
// ---------------------------------------------
|
// ---------------------------------------------
|
||||||
@@ -1696,6 +1524,55 @@ impl CommandApi {
|
|||||||
Ok(media.iter().map(|msg_id| msg_id.to_u32()).collect())
|
Ok(media.iter().map(|msg_id| msg_id.to_u32()).collect())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Search next/previous message based on a given message and a list of types.
|
||||||
|
/// Typically used to implement the "next" and "previous" buttons
|
||||||
|
/// in a gallery or in a media player.
|
||||||
|
///
|
||||||
|
/// one combined call for getting chat::get_next_media for both directions
|
||||||
|
/// the manual chat::get_next_media in only one direction is not exposed by the jsonrpc yet
|
||||||
|
///
|
||||||
|
/// Deprecated 2023-10-03, use `get_chat_media` method
|
||||||
|
/// and navigate the returned array instead.
|
||||||
|
#[allow(deprecated)]
|
||||||
|
async fn get_neighboring_chat_media(
|
||||||
|
&self,
|
||||||
|
account_id: u32,
|
||||||
|
msg_id: u32,
|
||||||
|
message_type: MessageViewtype,
|
||||||
|
or_message_type2: Option<MessageViewtype>,
|
||||||
|
or_message_type3: Option<MessageViewtype>,
|
||||||
|
) -> Result<(Option<u32>, Option<u32>)> {
|
||||||
|
let ctx = self.get_context(account_id).await?;
|
||||||
|
|
||||||
|
let msg_type: Viewtype = message_type.into();
|
||||||
|
let msg_type2: Viewtype = or_message_type2.map(|v| v.into()).unwrap_or_default();
|
||||||
|
let msg_type3: Viewtype = or_message_type3.map(|v| v.into()).unwrap_or_default();
|
||||||
|
|
||||||
|
let prev = chat::get_next_media(
|
||||||
|
&ctx,
|
||||||
|
MsgId::new(msg_id),
|
||||||
|
chat::Direction::Backward,
|
||||||
|
msg_type,
|
||||||
|
msg_type2,
|
||||||
|
msg_type3,
|
||||||
|
)
|
||||||
|
.await?
|
||||||
|
.map(|id| id.to_u32());
|
||||||
|
|
||||||
|
let next = chat::get_next_media(
|
||||||
|
&ctx,
|
||||||
|
MsgId::new(msg_id),
|
||||||
|
chat::Direction::Forward,
|
||||||
|
msg_type,
|
||||||
|
msg_type2,
|
||||||
|
msg_type3,
|
||||||
|
)
|
||||||
|
.await?
|
||||||
|
.map(|id| id.to_u32());
|
||||||
|
|
||||||
|
Ok((prev, next))
|
||||||
|
}
|
||||||
|
|
||||||
// ---------------------------------------------
|
// ---------------------------------------------
|
||||||
// backup
|
// backup
|
||||||
// ---------------------------------------------
|
// ---------------------------------------------
|
||||||
@@ -1767,10 +1644,10 @@ impl CommandApi {
|
|||||||
///
|
///
|
||||||
/// This call will block until the QR code is ready,
|
/// This call will block until the QR code is ready,
|
||||||
/// 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 10 seconds to avoid deadlocks.
|
||||||
async fn get_backup_qr(&self, account_id: u32) -> Result<String> {
|
async fn get_backup_qr(&self, account_id: u32) -> Result<String> {
|
||||||
let qr = tokio::time::timeout(
|
let qr = tokio::time::timeout(
|
||||||
Duration::from_secs(60),
|
Duration::from_secs(10),
|
||||||
self.inner_get_backup_qr(account_id),
|
self.inner_get_backup_qr(account_id),
|
||||||
)
|
)
|
||||||
.await
|
.await
|
||||||
@@ -1786,13 +1663,13 @@ impl CommandApi {
|
|||||||
///
|
///
|
||||||
/// This call will block until the QR code is ready,
|
/// This call will block until the QR code is ready,
|
||||||
/// 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 10 seconds to avoid deadlocks.
|
||||||
///
|
///
|
||||||
/// 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?;
|
||||||
let qr = tokio::time::timeout(
|
let qr = tokio::time::timeout(
|
||||||
Duration::from_secs(60),
|
Duration::from_secs(10),
|
||||||
self.inner_get_backup_qr(account_id),
|
self.inner_get_backup_qr(account_id),
|
||||||
)
|
)
|
||||||
.await
|
.await
|
||||||
@@ -1896,10 +1773,10 @@ impl CommandApi {
|
|||||||
account_id: u32,
|
account_id: u32,
|
||||||
instance_msg_id: u32,
|
instance_msg_id: u32,
|
||||||
update_str: String,
|
update_str: String,
|
||||||
_descr: Option<String>,
|
description: String,
|
||||||
) -> Result<()> {
|
) -> Result<()> {
|
||||||
let ctx = self.get_context(account_id).await?;
|
let ctx = self.get_context(account_id).await?;
|
||||||
ctx.send_webxdc_status_update(MsgId::new(instance_msg_id), &update_str)
|
ctx.send_webxdc_status_update(MsgId::new(instance_msg_id), &update_str, &description)
|
||||||
.await
|
.await
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1958,14 +1835,6 @@ impl CommandApi {
|
|||||||
WebxdcMessageInfo::get_for_message(&ctx, MsgId::new(instance_msg_id)).await
|
WebxdcMessageInfo::get_for_message(&ctx, MsgId::new(instance_msg_id)).await
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Get href from a WebxdcInfoMessage which might include a hash holding
|
|
||||||
/// information about a specific position or state in a webxdc app (optional)
|
|
||||||
async fn get_webxdc_href(&self, account_id: u32, info_msg_id: u32) -> Result<Option<String>> {
|
|
||||||
let ctx = self.get_context(account_id).await?;
|
|
||||||
let message = Message::load_from_db(&ctx, MsgId::new(info_msg_id)).await?;
|
|
||||||
Ok(message.get_webxdc_href())
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Get blob encoded as base64 from a webxdc message
|
/// Get blob encoded as base64 from a webxdc message
|
||||||
///
|
///
|
||||||
/// path is the path of the file within webxdc archive
|
/// path is the path of the file within webxdc archive
|
||||||
@@ -2055,7 +1924,7 @@ impl CommandApi {
|
|||||||
let ctx = self.get_context(account_id).await?;
|
let ctx = self.get_context(account_id).await?;
|
||||||
|
|
||||||
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(&sticker_path, None);
|
||||||
|
|
||||||
// JSON-rpc does not need heuristics to turn [Viewtype::Sticker] into [Viewtype::Image]
|
// JSON-rpc does not need heuristics to turn [Viewtype::Sticker] into [Viewtype::Image]
|
||||||
msg.force_sticker();
|
msg.force_sticker();
|
||||||
@@ -2098,27 +1967,13 @@ impl CommandApi {
|
|||||||
|
|
||||||
async fn send_msg(&self, account_id: u32, chat_id: u32, data: MessageData) -> Result<u32> {
|
async fn send_msg(&self, account_id: u32, chat_id: u32, data: MessageData) -> Result<u32> {
|
||||||
let ctx = self.get_context(account_id).await?;
|
let ctx = self.get_context(account_id).await?;
|
||||||
let mut message = data
|
let mut message = data.create_message(&ctx).await?;
|
||||||
.create_message(&ctx)
|
|
||||||
.await
|
|
||||||
.context("Failed to create message")?;
|
|
||||||
let msg_id = chat::send_msg(&ctx, ChatId::new(chat_id), &mut message)
|
let msg_id = chat::send_msg(&ctx, ChatId::new(chat_id), &mut message)
|
||||||
.await
|
.await?
|
||||||
.context("Failed to send created message")?
|
|
||||||
.to_u32();
|
.to_u32();
|
||||||
Ok(msg_id)
|
Ok(msg_id)
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn send_edit_request(
|
|
||||||
&self,
|
|
||||||
account_id: u32,
|
|
||||||
msg_id: u32,
|
|
||||||
new_text: String,
|
|
||||||
) -> Result<()> {
|
|
||||||
let ctx = self.get_context(account_id).await?;
|
|
||||||
chat::send_edit_request(&ctx, MsgId::new(msg_id), new_text).await
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Checks if messages can be sent to a given chat.
|
/// Checks if messages can be sent to a given chat.
|
||||||
async fn can_send(&self, account_id: u32, chat_id: u32) -> Result<bool> {
|
async fn can_send(&self, account_id: u32, chat_id: u32) -> Result<bool> {
|
||||||
let ctx = self.get_context(account_id).await?;
|
let ctx = self.get_context(account_id).await?;
|
||||||
@@ -2151,7 +2006,9 @@ impl CommandApi {
|
|||||||
async fn get_draft(&self, account_id: u32, chat_id: u32) -> Result<Option<MessageObject>> {
|
async fn get_draft(&self, account_id: u32, chat_id: u32) -> Result<Option<MessageObject>> {
|
||||||
let ctx = self.get_context(account_id).await?;
|
let ctx = self.get_context(account_id).await?;
|
||||||
if let Some(draft) = ChatId::new(chat_id).get_draft(&ctx).await? {
|
if let Some(draft) = ChatId::new(chat_id).get_draft(&ctx).await? {
|
||||||
Ok(MessageObject::from_msg_id(&ctx, draft.get_id()).await?)
|
Ok(Some(
|
||||||
|
MessageObject::from_msg_id(&ctx, draft.get_id()).await?,
|
||||||
|
))
|
||||||
} else {
|
} else {
|
||||||
Ok(None)
|
Ok(None)
|
||||||
}
|
}
|
||||||
@@ -2277,7 +2134,8 @@ impl CommandApi {
|
|||||||
) -> Result<u32> {
|
) -> Result<u32> {
|
||||||
let ctx = self.get_context(account_id).await?;
|
let ctx = self.get_context(account_id).await?;
|
||||||
|
|
||||||
let mut msg = Message::new_text(text);
|
let mut msg = Message::new(Viewtype::Text);
|
||||||
|
msg.set_text(text);
|
||||||
|
|
||||||
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())
|
||||||
@@ -2285,45 +2143,12 @@ impl CommandApi {
|
|||||||
|
|
||||||
// mimics the old desktop call, will get replaced with something better in the composer rewrite,
|
// mimics the old desktop call, will get replaced with something better in the composer rewrite,
|
||||||
// the better version will just be sending the current draft, though there will be probably something similar with more options to this for the corner cases like setting a marker on the map
|
// the better version will just be sending the current draft, though there will be probably something similar with more options to this for the corner cases like setting a marker on the map
|
||||||
/// Send a message to a chat.
|
|
||||||
///
|
|
||||||
/// This function returns after the message has been placed in the sending queue.
|
|
||||||
/// This does not imply that the message was really sent out yet.
|
|
||||||
/// However, from your view, you're done with the message.
|
|
||||||
/// Sooner or later it will find its way.
|
|
||||||
///
|
|
||||||
/// **Attaching files:**
|
|
||||||
///
|
|
||||||
/// Pass the file path in the `file` parameter.
|
|
||||||
/// If `file` is not in the blob directory yet,
|
|
||||||
/// it will be copied into the blob directory.
|
|
||||||
/// If you want, you can delete the file immediately after this function returns.
|
|
||||||
///
|
|
||||||
/// You can also write the attachment directly into the blob directory
|
|
||||||
/// and then pass the path as the `file` parameter;
|
|
||||||
/// this will prevent an unnecessary copying of the file.
|
|
||||||
///
|
|
||||||
/// In `filename`, you can pass the original name of the file,
|
|
||||||
/// which will then be shown in the UI.
|
|
||||||
/// in this case the current name of `file` on the filesystem will be ignored.
|
|
||||||
///
|
|
||||||
/// In order to deduplicate files that contain the same data,
|
|
||||||
/// the file will be named `<hash>.<extension>`, e.g. `ce940175885d7b78f7b7e9f1396611f.jpg`.
|
|
||||||
///
|
|
||||||
/// NOTE:
|
|
||||||
/// - This function will rename the file. To get the new file path, call `get_file()`.
|
|
||||||
/// - The file must not be modified after this function was called.
|
|
||||||
/// - Images etc. will NOT be recoded.
|
|
||||||
/// In order to recode images,
|
|
||||||
/// use `misc_set_draft` and pass `Image` as the viewtype.
|
|
||||||
#[expect(clippy::too_many_arguments)]
|
|
||||||
async fn misc_send_msg(
|
async fn misc_send_msg(
|
||||||
&self,
|
&self,
|
||||||
account_id: u32,
|
account_id: u32,
|
||||||
chat_id: u32,
|
chat_id: u32,
|
||||||
text: Option<String>,
|
text: Option<String>,
|
||||||
file: Option<String>,
|
file: Option<String>,
|
||||||
filename: Option<String>,
|
|
||||||
location: Option<(f64, f64)>,
|
location: Option<(f64, f64)>,
|
||||||
quoted_message_id: Option<u32>,
|
quoted_message_id: Option<u32>,
|
||||||
) -> Result<(u32, MessageObject)> {
|
) -> Result<(u32, MessageObject)> {
|
||||||
@@ -2335,7 +2160,7 @@ impl CommandApi {
|
|||||||
});
|
});
|
||||||
message.set_text(text.unwrap_or_default());
|
message.set_text(text.unwrap_or_default());
|
||||||
if let Some(file) = file {
|
if let Some(file) = file {
|
||||||
message.set_file_and_deduplicate(&ctx, Path::new(&file), filename.as_deref(), None)?;
|
message.set_file(file, None);
|
||||||
}
|
}
|
||||||
if let Some((latitude, longitude)) = location {
|
if let Some((latitude, longitude)) = location {
|
||||||
message.set_location(latitude, longitude);
|
message.set_location(latitude, longitude);
|
||||||
@@ -2353,9 +2178,7 @@ impl CommandApi {
|
|||||||
.await?;
|
.await?;
|
||||||
}
|
}
|
||||||
let msg_id = chat::send_msg(&ctx, ChatId::new(chat_id), &mut message).await?;
|
let msg_id = chat::send_msg(&ctx, ChatId::new(chat_id), &mut message).await?;
|
||||||
let message = MessageObject::from_msg_id(&ctx, msg_id)
|
let message = MessageObject::from_msg_id(&ctx, msg_id).await?;
|
||||||
.await?
|
|
||||||
.context("Just sent message does not exist")?;
|
|
||||||
Ok((msg_id.to_u32(), message))
|
Ok((msg_id.to_u32(), message))
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -2363,14 +2186,12 @@ impl CommandApi {
|
|||||||
// the better version should support:
|
// the better version should support:
|
||||||
// - changing viewtype to enable/disable compression
|
// - changing viewtype to enable/disable compression
|
||||||
// - keeping same message id as long as attachment does not change for webxdc messages
|
// - keeping same message id as long as attachment does not change for webxdc messages
|
||||||
#[expect(clippy::too_many_arguments)]
|
|
||||||
async fn misc_set_draft(
|
async fn misc_set_draft(
|
||||||
&self,
|
&self,
|
||||||
account_id: u32,
|
account_id: u32,
|
||||||
chat_id: u32,
|
chat_id: u32,
|
||||||
text: Option<String>,
|
text: Option<String>,
|
||||||
file: Option<String>,
|
file: Option<String>,
|
||||||
filename: Option<String>,
|
|
||||||
quoted_message_id: Option<u32>,
|
quoted_message_id: Option<u32>,
|
||||||
view_type: Option<MessageViewtype>,
|
view_type: Option<MessageViewtype>,
|
||||||
) -> Result<()> {
|
) -> Result<()> {
|
||||||
@@ -2387,7 +2208,7 @@ impl CommandApi {
|
|||||||
));
|
));
|
||||||
draft.set_text(text.unwrap_or_default());
|
draft.set_text(text.unwrap_or_default());
|
||||||
if let Some(file) = file {
|
if let Some(file) = file {
|
||||||
draft.set_file_and_deduplicate(&ctx, Path::new(&file), filename.as_deref(), None)?;
|
draft.set_file(file, None);
|
||||||
}
|
}
|
||||||
if let Some(id) = quoted_message_id {
|
if let Some(id) = quoted_message_id {
|
||||||
draft
|
draft
|
||||||
|
|||||||
@@ -17,9 +17,6 @@ pub enum Account {
|
|||||||
// size: u32,
|
// size: u32,
|
||||||
profile_image: Option<String>, // TODO: This needs to be converted to work with blob http server.
|
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".
|
|
||||||
/// Meant to help profile owner to differ between profiles with similar names.
|
|
||||||
private_tag: Option<String>,
|
|
||||||
},
|
},
|
||||||
#[serde(rename_all = "camelCase")]
|
#[serde(rename_all = "camelCase")]
|
||||||
Unconfigured { id: u32 },
|
Unconfigured { id: u32 },
|
||||||
@@ -34,14 +31,12 @@ impl Account {
|
|||||||
let color = color_int_to_hex_string(
|
let color = color_int_to_hex_string(
|
||||||
Contact::get_by_id(ctx, ContactId::SELF).await?.get_color(),
|
Contact::get_by_id(ctx, ContactId::SELF).await?.get_color(),
|
||||||
);
|
);
|
||||||
let private_tag = ctx.get_config(Config::PrivateTag).await?;
|
|
||||||
Ok(Account::Configured {
|
Ok(Account::Configured {
|
||||||
id,
|
id,
|
||||||
display_name,
|
display_name,
|
||||||
addr,
|
addr,
|
||||||
profile_image,
|
profile_image,
|
||||||
color,
|
color,
|
||||||
private_tag,
|
|
||||||
})
|
})
|
||||||
} else {
|
} else {
|
||||||
Ok(Account::Unconfigured { id })
|
Ok(Account::Unconfigured { id })
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
use std::time::{Duration, SystemTime};
|
use std::time::{Duration, SystemTime};
|
||||||
|
|
||||||
use anyhow::{bail, Context as _, Result};
|
use anyhow::{bail, Context as _, Result};
|
||||||
use deltachat::chat::{self, get_chat_contacts, get_past_chat_contacts, ChatVisibility};
|
use deltachat::chat::{self, get_chat_contacts, ChatVisibility};
|
||||||
use deltachat::chat::{Chat, ChatId};
|
use deltachat::chat::{Chat, ChatId};
|
||||||
use deltachat::constants::Chattype;
|
use deltachat::constants::Chattype;
|
||||||
use deltachat::contact::{Contact, ContactId};
|
use deltachat::contact::{Contact, ContactId};
|
||||||
@@ -32,17 +32,12 @@ pub struct FullChat {
|
|||||||
is_protected: bool,
|
is_protected: bool,
|
||||||
profile_image: Option<String>, //BLOBS ?
|
profile_image: Option<String>, //BLOBS ?
|
||||||
archived: bool,
|
archived: 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: u32,
|
chat_type: u32,
|
||||||
is_unpromoted: bool,
|
is_unpromoted: bool,
|
||||||
is_self_talk: bool,
|
is_self_talk: bool,
|
||||||
contacts: Vec<ContactObject>,
|
contacts: Vec<ContactObject>,
|
||||||
contact_ids: Vec<u32>,
|
contact_ids: Vec<u32>,
|
||||||
|
|
||||||
/// Contact IDs of the past chat members.
|
|
||||||
past_contact_ids: Vec<u32>,
|
|
||||||
|
|
||||||
color: String,
|
color: String,
|
||||||
fresh_message_counter: usize,
|
fresh_message_counter: usize,
|
||||||
// is_group - please check over chat.type in frontend instead
|
// is_group - please check over chat.type in frontend instead
|
||||||
@@ -63,7 +58,6 @@ impl FullChat {
|
|||||||
let chat = Chat::load_from_db(context, rust_chat_id).await?;
|
let chat = Chat::load_from_db(context, rust_chat_id).await?;
|
||||||
|
|
||||||
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 mut contacts = Vec::with_capacity(contact_ids.len());
|
let mut contacts = Vec::with_capacity(contact_ids.len());
|
||||||
|
|
||||||
@@ -110,13 +104,11 @@ impl FullChat {
|
|||||||
is_protected: chat.is_protected(),
|
is_protected: chat.is_protected(),
|
||||||
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,
|
|
||||||
chat_type: chat.get_type().to_u32().context("unknown chat type id")?,
|
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,
|
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(),
|
|
||||||
color,
|
color,
|
||||||
fresh_message_counter,
|
fresh_message_counter,
|
||||||
is_contact_request: chat.is_contact_request(),
|
is_contact_request: chat.is_contact_request(),
|
||||||
@@ -161,7 +153,6 @@ pub struct BasicChat {
|
|||||||
is_protected: bool,
|
is_protected: bool,
|
||||||
profile_image: Option<String>, //BLOBS ?
|
profile_image: Option<String>, //BLOBS ?
|
||||||
archived: bool,
|
archived: bool,
|
||||||
pinned: bool,
|
|
||||||
chat_type: u32,
|
chat_type: u32,
|
||||||
is_unpromoted: bool,
|
is_unpromoted: bool,
|
||||||
is_self_talk: bool,
|
is_self_talk: bool,
|
||||||
@@ -189,7 +180,6 @@ impl BasicChat {
|
|||||||
is_protected: chat.is_protected(),
|
is_protected: chat.is_protected(),
|
||||||
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,
|
|
||||||
chat_type: chat.get_type().to_u32().context("unknown chat type id")?,
|
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(),
|
||||||
|
|||||||
@@ -88,17 +88,11 @@ pub(crate) async fn get_chat_list_item_by_id(
|
|||||||
|
|
||||||
let (last_updated, message_type) = match last_msgid {
|
let (last_updated, message_type) = match last_msgid {
|
||||||
Some(id) => {
|
Some(id) => {
|
||||||
if let Some(last_message) =
|
let last_message = deltachat::message::Message::load_from_db(ctx, id).await?;
|
||||||
deltachat::message::Message::load_from_db_optional(ctx, id).await?
|
(
|
||||||
{
|
Some(last_message.get_timestamp() * 1000),
|
||||||
(
|
Some(last_message.get_viewtype().into()),
|
||||||
Some(last_message.get_timestamp() * 1000),
|
)
|
||||||
Some(last_message.get_viewtype().into()),
|
|
||||||
)
|
|
||||||
} else {
|
|
||||||
// Message may be deleted by the time we try to load it.
|
|
||||||
(None, None)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
None => (None, None),
|
None => (None, None),
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -19,7 +19,6 @@ pub struct ContactObject {
|
|||||||
profile_image: Option<String>, // BLOBS
|
profile_image: Option<String>, // BLOBS
|
||||||
name_and_addr: String,
|
name_and_addr: String,
|
||||||
is_blocked: bool,
|
is_blocked: bool,
|
||||||
e2ee_avail: bool,
|
|
||||||
|
|
||||||
/// True if the contact can be added to verified groups.
|
/// True if the contact can be added to verified groups.
|
||||||
///
|
///
|
||||||
@@ -80,7 +79,6 @@ impl ContactObject {
|
|||||||
profile_image, //BLOBS
|
profile_image, //BLOBS
|
||||||
name_and_addr: contact.get_name_n_addr(),
|
name_and_addr: contact.get_name_n_addr(),
|
||||||
is_blocked: contact.is_blocked(),
|
is_blocked: contact.is_blocked(),
|
||||||
e2ee_avail: contact.e2ee_avail(context).await?,
|
|
||||||
is_verified,
|
is_verified,
|
||||||
is_profile_verified,
|
is_profile_verified,
|
||||||
verifier_id,
|
verifier_id,
|
||||||
|
|||||||
@@ -69,7 +69,7 @@ pub enum EventType {
|
|||||||
/// or for functions that are expected to fail (eg. autocryptContinueKeyTransfer())
|
/// or for functions that are expected to fail (eg. autocryptContinueKeyTransfer())
|
||||||
/// it might be better to delay showing these events until the function has really
|
/// it might be better to delay showing these events until the function has really
|
||||||
/// failed (returned false). It should be sufficient to report only the *last* error
|
/// failed (returned false). It should be sufficient to report only the *last* error
|
||||||
/// in a message box then.
|
/// in a messasge box then.
|
||||||
Error { msg: String },
|
Error { msg: String },
|
||||||
|
|
||||||
/// An action cannot be performed because the user is not in the group.
|
/// An action cannot be performed because the user is not in the group.
|
||||||
@@ -84,78 +84,26 @@ pub enum EventType {
|
|||||||
/// - Messages sent, received or removed
|
/// - Messages sent, received or removed
|
||||||
/// - Chats created, deleted or archived
|
/// - Chats created, deleted or archived
|
||||||
/// - A draft has been set
|
/// - A draft has been set
|
||||||
|
///
|
||||||
|
/// `chatId` is set if only a single chat is affected by the changes, otherwise 0.
|
||||||
|
/// `msgId` is set if only a single message is affected by the changes, otherwise 0.
|
||||||
#[serde(rename_all = "camelCase")]
|
#[serde(rename_all = "camelCase")]
|
||||||
MsgsChanged {
|
MsgsChanged { chat_id: u32, msg_id: u32 },
|
||||||
/// Set if only a single chat is affected by the changes, otherwise 0.
|
|
||||||
chat_id: u32,
|
|
||||||
|
|
||||||
/// Set if only a single message is affected by the changes, otherwise 0.
|
|
||||||
msg_id: u32,
|
|
||||||
},
|
|
||||||
|
|
||||||
/// Reactions for the message changed.
|
/// Reactions for the message changed.
|
||||||
#[serde(rename_all = "camelCase")]
|
#[serde(rename_all = "camelCase")]
|
||||||
ReactionsChanged {
|
ReactionsChanged {
|
||||||
/// ID of the chat which the message belongs to.
|
|
||||||
chat_id: u32,
|
chat_id: u32,
|
||||||
|
|
||||||
/// ID of the message for which reactions were changed.
|
|
||||||
msg_id: u32,
|
msg_id: u32,
|
||||||
|
|
||||||
/// ID of the contact whose reaction set is changed.
|
|
||||||
contact_id: u32,
|
contact_id: u32,
|
||||||
},
|
},
|
||||||
|
|
||||||
/// A reaction to one's own sent message received.
|
/// There is a fresh message. Typically, the user will show an notification
|
||||||
/// Typically, the UI will show a notification for that.
|
|
||||||
///
|
|
||||||
/// In addition to this event, ReactionsChanged is emitted.
|
|
||||||
#[serde(rename_all = "camelCase")]
|
|
||||||
IncomingReaction {
|
|
||||||
/// ID of the chat which the message belongs to.
|
|
||||||
chat_id: u32,
|
|
||||||
|
|
||||||
/// ID of the contact whose reaction set is changed.
|
|
||||||
contact_id: u32,
|
|
||||||
|
|
||||||
/// ID of the message for which reactions were changed.
|
|
||||||
msg_id: u32,
|
|
||||||
|
|
||||||
/// The reaction.
|
|
||||||
reaction: String,
|
|
||||||
},
|
|
||||||
|
|
||||||
/// Incoming webxdc info or summary update, should be notified.
|
|
||||||
#[serde(rename_all = "camelCase")]
|
|
||||||
IncomingWebxdcNotify {
|
|
||||||
/// ID of the chat.
|
|
||||||
chat_id: u32,
|
|
||||||
|
|
||||||
/// ID of the contact sending.
|
|
||||||
contact_id: u32,
|
|
||||||
|
|
||||||
/// ID of the added info message or webxdc instance in case of summary change.
|
|
||||||
msg_id: u32,
|
|
||||||
|
|
||||||
/// Text to notify.
|
|
||||||
text: String,
|
|
||||||
|
|
||||||
/// Link assigned to this notification, if any.
|
|
||||||
href: Option<String>,
|
|
||||||
},
|
|
||||||
|
|
||||||
/// There is a fresh message. Typically, the user will show a notification
|
|
||||||
/// when receiving this message.
|
/// when receiving this message.
|
||||||
///
|
///
|
||||||
/// There is no extra #DC_EVENT_MSGS_CHANGED event sent together with this event.
|
/// There is no extra #DC_EVENT_MSGS_CHANGED event sent together with this event.
|
||||||
#[serde(rename_all = "camelCase")]
|
#[serde(rename_all = "camelCase")]
|
||||||
IncomingMsg {
|
IncomingMsg { chat_id: u32, msg_id: u32 },
|
||||||
/// ID of the chat where the message is assigned.
|
|
||||||
chat_id: u32,
|
|
||||||
|
|
||||||
/// ID of the message.
|
|
||||||
msg_id: u32,
|
|
||||||
},
|
|
||||||
|
|
||||||
/// Downloading a bunch of messages just finished. This is an
|
/// Downloading a bunch of messages just finished. This is an
|
||||||
/// event to allow the UI to only show one notification per message bunch,
|
/// event to allow the UI to only show one notification per message bunch,
|
||||||
@@ -171,57 +119,21 @@ pub enum EventType {
|
|||||||
/// A single message is sent successfully. State changed from DC_STATE_OUT_PENDING to
|
/// A single message is sent successfully. State changed from DC_STATE_OUT_PENDING to
|
||||||
/// DC_STATE_OUT_DELIVERED, see `Message.state`.
|
/// DC_STATE_OUT_DELIVERED, see `Message.state`.
|
||||||
#[serde(rename_all = "camelCase")]
|
#[serde(rename_all = "camelCase")]
|
||||||
MsgDelivered {
|
MsgDelivered { chat_id: u32, msg_id: u32 },
|
||||||
/// ID of the chat which the message belongs to.
|
|
||||||
chat_id: u32,
|
|
||||||
|
|
||||||
/// ID of the message that was successfully sent.
|
|
||||||
msg_id: u32,
|
|
||||||
},
|
|
||||||
|
|
||||||
/// A single message could not be sent. State changed from DC_STATE_OUT_PENDING or DC_STATE_OUT_DELIVERED to
|
/// A single message could not be sent. State changed from DC_STATE_OUT_PENDING or DC_STATE_OUT_DELIVERED to
|
||||||
/// DC_STATE_OUT_FAILED, see `Message.state`.
|
/// DC_STATE_OUT_FAILED, see `Message.state`.
|
||||||
#[serde(rename_all = "camelCase")]
|
#[serde(rename_all = "camelCase")]
|
||||||
MsgFailed {
|
MsgFailed { chat_id: u32, msg_id: u32 },
|
||||||
/// ID of the chat which the message belongs to.
|
|
||||||
chat_id: u32,
|
|
||||||
|
|
||||||
/// ID of the message that could not be sent.
|
|
||||||
msg_id: u32,
|
|
||||||
},
|
|
||||||
|
|
||||||
/// A single message is read by the receiver. State changed from DC_STATE_OUT_DELIVERED to
|
/// A single message is read by the receiver. State changed from DC_STATE_OUT_DELIVERED to
|
||||||
/// DC_STATE_OUT_MDN_RCVD, see `Message.state`.
|
/// DC_STATE_OUT_MDN_RCVD, see `Message.state`.
|
||||||
#[serde(rename_all = "camelCase")]
|
#[serde(rename_all = "camelCase")]
|
||||||
MsgRead {
|
MsgRead { chat_id: u32, msg_id: u32 },
|
||||||
/// ID of the chat which the message belongs to.
|
|
||||||
chat_id: u32,
|
|
||||||
|
|
||||||
/// ID of the message that was read.
|
/// A single message is deleted.
|
||||||
msg_id: u32,
|
|
||||||
},
|
|
||||||
|
|
||||||
/// A single message was deleted.
|
|
||||||
///
|
|
||||||
/// This event means that the message will no longer appear in the messagelist.
|
|
||||||
/// UI should remove the message from the messagelist
|
|
||||||
/// in response to this event if the message is currently displayed.
|
|
||||||
///
|
|
||||||
/// The message may have been explicitly deleted by the user or expired.
|
|
||||||
/// Internally the message may have been removed from the database,
|
|
||||||
/// moved to the trash chat or hidden.
|
|
||||||
///
|
|
||||||
/// This event does not indicate the message
|
|
||||||
/// deletion from the server.
|
|
||||||
#[serde(rename_all = "camelCase")]
|
#[serde(rename_all = "camelCase")]
|
||||||
MsgDeleted {
|
MsgDeleted { chat_id: u32, msg_id: u32 },
|
||||||
/// ID of the chat where the message was prior to deletion.
|
|
||||||
/// Never 0.
|
|
||||||
chat_id: u32,
|
|
||||||
|
|
||||||
/// ID of the deleted message. Never 0.
|
|
||||||
msg_id: u32,
|
|
||||||
},
|
|
||||||
|
|
||||||
/// Chat changed. The name or the image of a chat group was changed or members were added or removed.
|
/// Chat changed. The name or the image of a chat group was changed or members were added or removed.
|
||||||
/// Or the verify state of a chat has changed.
|
/// Or the verify state of a chat has changed.
|
||||||
@@ -235,35 +147,21 @@ pub enum EventType {
|
|||||||
|
|
||||||
/// Chat ephemeral timer changed.
|
/// Chat ephemeral timer changed.
|
||||||
#[serde(rename_all = "camelCase")]
|
#[serde(rename_all = "camelCase")]
|
||||||
ChatEphemeralTimerModified {
|
ChatEphemeralTimerModified { chat_id: u32, timer: u32 },
|
||||||
/// Chat ID.
|
|
||||||
chat_id: u32,
|
|
||||||
|
|
||||||
/// New ephemeral timer value.
|
|
||||||
timer: u32,
|
|
||||||
},
|
|
||||||
|
|
||||||
/// Chat deleted.
|
|
||||||
ChatDeleted {
|
|
||||||
/// Chat ID.
|
|
||||||
chat_id: u32,
|
|
||||||
},
|
|
||||||
|
|
||||||
/// Contact(s) created, renamed, blocked or deleted.
|
/// Contact(s) created, renamed, blocked or deleted.
|
||||||
|
///
|
||||||
|
/// @param data1 (int) If set, this is the contact_id of an added contact that should be selected.
|
||||||
#[serde(rename_all = "camelCase")]
|
#[serde(rename_all = "camelCase")]
|
||||||
ContactsChanged {
|
ContactsChanged { contact_id: Option<u32> },
|
||||||
/// If set, this is the contact_id of an added contact that should be selected.
|
|
||||||
contact_id: Option<u32>,
|
|
||||||
},
|
|
||||||
|
|
||||||
/// Location of one or more contact has changed.
|
/// Location of one or more contact has changed.
|
||||||
|
///
|
||||||
|
/// @param data1 (u32) contact_id of the contact for which the location has changed.
|
||||||
|
/// If the locations of several contacts have been changed,
|
||||||
|
/// this parameter is set to `None`.
|
||||||
#[serde(rename_all = "camelCase")]
|
#[serde(rename_all = "camelCase")]
|
||||||
LocationChanged {
|
LocationChanged { contact_id: Option<u32> },
|
||||||
/// contact_id of the contact for which the location has changed.
|
|
||||||
/// If the locations of several contacts have been changed,
|
|
||||||
/// this parameter is set to `None`.
|
|
||||||
contact_id: Option<u32>,
|
|
||||||
},
|
|
||||||
|
|
||||||
/// Inform about the configuration progress started by configure().
|
/// Inform about the configuration progress started by configure().
|
||||||
ConfigureProgress {
|
ConfigureProgress {
|
||||||
@@ -278,11 +176,10 @@ pub enum EventType {
|
|||||||
|
|
||||||
/// Inform about the import/export progress started by imex().
|
/// Inform about the import/export progress started by imex().
|
||||||
///
|
///
|
||||||
|
/// @param data1 (usize) 0=error, 1-999=progress in permille, 1000=success and done
|
||||||
|
/// @param data2 0
|
||||||
#[serde(rename_all = "camelCase")]
|
#[serde(rename_all = "camelCase")]
|
||||||
ImexProgress {
|
ImexProgress { progress: usize },
|
||||||
/// 0=error, 1-999=progress in permille, 1000=success and done
|
|
||||||
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().
|
||||||
/// This event may be sent multiple times by a single call to imex().
|
/// This event may be sent multiple times by a single call to imex().
|
||||||
@@ -299,34 +196,26 @@ pub enum EventType {
|
|||||||
///
|
///
|
||||||
/// These events are typically sent after a joiner has scanned the QR code
|
/// These events are typically sent after a joiner has scanned the QR code
|
||||||
/// generated by getChatSecurejoinQrCodeSvg().
|
/// generated by getChatSecurejoinQrCodeSvg().
|
||||||
|
///
|
||||||
|
/// @param data1 (int) ID of the contact that wants to join.
|
||||||
|
/// @param data2 (int) Progress as:
|
||||||
|
/// 300=vg-/vc-request received, typically shown as "bob@addr joins".
|
||||||
|
/// 600=vg-/vc-request-with-auth received, vg-member-added/vc-contact-confirm sent, typically shown as "bob@addr verified".
|
||||||
|
/// 800=vg-member-added-received received, shown as "bob@addr securely joined GROUP", only sent for the verified-group-protocol.
|
||||||
|
/// 1000=Protocol finished for this contact.
|
||||||
#[serde(rename_all = "camelCase")]
|
#[serde(rename_all = "camelCase")]
|
||||||
SecurejoinInviterProgress {
|
SecurejoinInviterProgress { contact_id: u32, progress: usize },
|
||||||
/// ID of the contact that wants to join.
|
|
||||||
contact_id: u32,
|
|
||||||
|
|
||||||
/// Progress as:
|
|
||||||
/// 300=vg-/vc-request received, typically shown as "bob@addr joins".
|
|
||||||
/// 600=vg-/vc-request-with-auth received, vg-member-added/vc-contact-confirm sent, typically shown as "bob@addr verified".
|
|
||||||
/// 800=contact added to chat, shown as "bob@addr securely joined GROUP". Only for the verified-group-protocol.
|
|
||||||
/// 1000=Protocol finished for this contact.
|
|
||||||
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
|
||||||
/// (Bob, the person who scans the QR code).
|
/// (Bob, the person who scans the QR code).
|
||||||
/// The events are typically sent while secureJoin(), which
|
/// The events are typically sent while secureJoin(), which
|
||||||
/// may take some time, is executed.
|
/// may take some time, is executed.
|
||||||
|
/// @param data1 (int) ID of the inviting contact.
|
||||||
|
/// @param data2 (int) Progress as:
|
||||||
|
/// 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)
|
||||||
#[serde(rename_all = "camelCase")]
|
#[serde(rename_all = "camelCase")]
|
||||||
SecurejoinJoinerProgress {
|
SecurejoinJoinerProgress { contact_id: u32, progress: usize },
|
||||||
/// ID of the inviting contact.
|
|
||||||
contact_id: u32,
|
|
||||||
|
|
||||||
/// Progress as:
|
|
||||||
/// 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)
|
|
||||||
/// 1000=vg-member-added/vc-contact-confirm received
|
|
||||||
progress: usize,
|
|
||||||
},
|
|
||||||
|
|
||||||
/// The connectivity to the server changed.
|
/// The connectivity to the server changed.
|
||||||
/// This means that you should refresh the connectivity view
|
/// This means that you should refresh the connectivity view
|
||||||
@@ -347,37 +236,17 @@ pub enum EventType {
|
|||||||
|
|
||||||
#[serde(rename_all = "camelCase")]
|
#[serde(rename_all = "camelCase")]
|
||||||
WebxdcStatusUpdate {
|
WebxdcStatusUpdate {
|
||||||
/// Message ID.
|
|
||||||
msg_id: u32,
|
msg_id: u32,
|
||||||
|
|
||||||
/// Status update ID.
|
|
||||||
status_update_serial: u32,
|
status_update_serial: u32,
|
||||||
},
|
},
|
||||||
|
|
||||||
/// Data received over an ephemeral peer channel.
|
/// Data received over an ephemeral peer channel.
|
||||||
#[serde(rename_all = "camelCase")]
|
#[serde(rename_all = "camelCase")]
|
||||||
WebxdcRealtimeData {
|
WebxdcRealtimeData { msg_id: u32, data: Vec<u8> },
|
||||||
/// Message ID.
|
|
||||||
msg_id: u32,
|
|
||||||
|
|
||||||
/// Realtime data.
|
|
||||||
data: Vec<u8>,
|
|
||||||
},
|
|
||||||
|
|
||||||
/// Advertisement received over an ephemeral peer channel.
|
|
||||||
/// This can be used by bots to initiate peer-to-peer communication from their side.
|
|
||||||
#[serde(rename_all = "camelCase")]
|
|
||||||
WebxdcRealtimeAdvertisementReceived {
|
|
||||||
/// Message ID of the webxdc instance.
|
|
||||||
msg_id: u32,
|
|
||||||
},
|
|
||||||
|
|
||||||
/// Inform that a message containing a webxdc instance has been deleted
|
/// Inform that a message containing a webxdc instance has been deleted
|
||||||
#[serde(rename_all = "camelCase")]
|
#[serde(rename_all = "camelCase")]
|
||||||
WebxdcInstanceDeleted {
|
WebxdcInstanceDeleted { msg_id: u32 },
|
||||||
/// ID of the deleted message.
|
|
||||||
msg_id: u32,
|
|
||||||
},
|
|
||||||
|
|
||||||
/// Tells that the Background fetch was completed (or timed out).
|
/// Tells that the Background fetch was completed (or timed out).
|
||||||
/// This event acts as a marker, when you reach this event you can be sure
|
/// This event acts as a marker, when you reach this event you can be sure
|
||||||
@@ -393,30 +262,10 @@ pub enum EventType {
|
|||||||
/// Inform that a single chat list item changed and needs to be rerendered.
|
/// Inform that a single chat list item changed and needs to be rerendered.
|
||||||
/// If `chat_id` is set to None, then all currently visible chats need to be rerendered, and all not-visible items need to be cleared from cache if the UI has a cache.
|
/// If `chat_id` is set to None, then all currently visible chats need to be rerendered, and all not-visible items need to be cleared from cache if the UI has a cache.
|
||||||
#[serde(rename_all = "camelCase")]
|
#[serde(rename_all = "camelCase")]
|
||||||
ChatlistItemChanged {
|
ChatlistItemChanged { chat_id: Option<u32> },
|
||||||
/// ID of the changed chat
|
|
||||||
chat_id: Option<u32>,
|
|
||||||
},
|
|
||||||
|
|
||||||
/// Inform that the list of accounts has changed (an account removed or added or (not yet implemented) the account order changes)
|
|
||||||
///
|
|
||||||
/// This event is only emitted by the account manager
|
|
||||||
AccountsChanged,
|
|
||||||
|
|
||||||
/// Inform that an account property that might be shown in the account list changed, namely:
|
|
||||||
/// - is_configured (see is_configured())
|
|
||||||
/// - displayname
|
|
||||||
/// - selfavatar
|
|
||||||
/// - private_tag
|
|
||||||
///
|
|
||||||
/// This event is emitted from the account whose property changed.
|
|
||||||
AccountsItemChanged,
|
|
||||||
|
|
||||||
/// Inform than some events have been skipped due to event channel overflow.
|
/// Inform than some events have been skipped due to event channel overflow.
|
||||||
EventChannelOverflow {
|
EventChannelOverflow { n: u64 },
|
||||||
/// Number of events skipped.
|
|
||||||
n: u64,
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
|
|
||||||
impl From<CoreEventType> for EventType {
|
impl From<CoreEventType> for EventType {
|
||||||
@@ -448,30 +297,6 @@ impl From<CoreEventType> for EventType {
|
|||||||
msg_id: msg_id.to_u32(),
|
msg_id: msg_id.to_u32(),
|
||||||
contact_id: contact_id.to_u32(),
|
contact_id: contact_id.to_u32(),
|
||||||
},
|
},
|
||||||
CoreEventType::IncomingReaction {
|
|
||||||
chat_id,
|
|
||||||
contact_id,
|
|
||||||
msg_id,
|
|
||||||
reaction,
|
|
||||||
} => IncomingReaction {
|
|
||||||
chat_id: chat_id.to_u32(),
|
|
||||||
contact_id: contact_id.to_u32(),
|
|
||||||
msg_id: msg_id.to_u32(),
|
|
||||||
reaction: reaction.as_str().to_string(),
|
|
||||||
},
|
|
||||||
CoreEventType::IncomingWebxdcNotify {
|
|
||||||
chat_id,
|
|
||||||
contact_id,
|
|
||||||
msg_id,
|
|
||||||
text,
|
|
||||||
href,
|
|
||||||
} => IncomingWebxdcNotify {
|
|
||||||
chat_id: chat_id.to_u32(),
|
|
||||||
contact_id: contact_id.to_u32(),
|
|
||||||
msg_id: msg_id.to_u32(),
|
|
||||||
text,
|
|
||||||
href,
|
|
||||||
},
|
|
||||||
CoreEventType::IncomingMsg { chat_id, msg_id } => IncomingMsg {
|
CoreEventType::IncomingMsg { chat_id, msg_id } => IncomingMsg {
|
||||||
chat_id: chat_id.to_u32(),
|
chat_id: chat_id.to_u32(),
|
||||||
msg_id: msg_id.to_u32(),
|
msg_id: msg_id.to_u32(),
|
||||||
@@ -505,9 +330,6 @@ impl From<CoreEventType> for EventType {
|
|||||||
timer: timer.to_u32(),
|
timer: timer.to_u32(),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
CoreEventType::ChatDeleted { chat_id } => ChatDeleted {
|
|
||||||
chat_id: chat_id.to_u32(),
|
|
||||||
},
|
|
||||||
CoreEventType::ContactsChanged(contact) => ContactsChanged {
|
CoreEventType::ContactsChanged(contact) => ContactsChanged {
|
||||||
contact_id: contact.map(|c| c.to_u32()),
|
contact_id: contact.map(|c| c.to_u32()),
|
||||||
},
|
},
|
||||||
@@ -551,11 +373,6 @@ impl From<CoreEventType> for EventType {
|
|||||||
msg_id: msg_id.to_u32(),
|
msg_id: msg_id.to_u32(),
|
||||||
data,
|
data,
|
||||||
},
|
},
|
||||||
CoreEventType::WebxdcRealtimeAdvertisementReceived { msg_id } => {
|
|
||||||
WebxdcRealtimeAdvertisementReceived {
|
|
||||||
msg_id: msg_id.to_u32(),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
CoreEventType::WebxdcInstanceDeleted { msg_id } => WebxdcInstanceDeleted {
|
CoreEventType::WebxdcInstanceDeleted { msg_id } => WebxdcInstanceDeleted {
|
||||||
msg_id: msg_id.to_u32(),
|
msg_id: msg_id.to_u32(),
|
||||||
},
|
},
|
||||||
@@ -565,11 +382,6 @@ impl From<CoreEventType> for EventType {
|
|||||||
},
|
},
|
||||||
CoreEventType::ChatlistChanged => ChatlistChanged,
|
CoreEventType::ChatlistChanged => ChatlistChanged,
|
||||||
CoreEventType::EventChannelOverflow { n } => EventChannelOverflow { n },
|
CoreEventType::EventChannelOverflow { n } => EventChannelOverflow { n },
|
||||||
CoreEventType::AccountsChanged => AccountsChanged,
|
|
||||||
CoreEventType::AccountsItemChanged => AccountsItemChanged,
|
|
||||||
#[allow(unreachable_patterns)]
|
|
||||||
#[cfg(test)]
|
|
||||||
_ => unreachable!("This is just to silence a rust_analyzer false-positive"),
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,203 +0,0 @@
|
|||||||
use anyhow::Result;
|
|
||||||
use deltachat::login_param as dc;
|
|
||||||
use serde::Deserialize;
|
|
||||||
use serde::Serialize;
|
|
||||||
use yerpc::TypeDef;
|
|
||||||
|
|
||||||
/// Login parameters entered by the user.
|
|
||||||
///
|
|
||||||
/// Usually it will be enough to only set `addr` and `password`,
|
|
||||||
/// and all the other settings will be autoconfigured.
|
|
||||||
#[derive(Serialize, Deserialize, TypeDef, schemars::JsonSchema)]
|
|
||||||
#[serde(rename_all = "camelCase")]
|
|
||||||
pub struct EnteredLoginParam {
|
|
||||||
/// Email address.
|
|
||||||
pub addr: String,
|
|
||||||
|
|
||||||
/// Password.
|
|
||||||
pub password: String,
|
|
||||||
|
|
||||||
/// Imap server hostname or IP address.
|
|
||||||
pub imap_server: Option<String>,
|
|
||||||
|
|
||||||
/// Imap server port.
|
|
||||||
pub imap_port: Option<u16>,
|
|
||||||
|
|
||||||
/// Imap socket security.
|
|
||||||
pub imap_security: Option<Socket>,
|
|
||||||
|
|
||||||
/// Imap username.
|
|
||||||
pub imap_user: Option<String>,
|
|
||||||
|
|
||||||
/// SMTP server hostname or IP address.
|
|
||||||
pub smtp_server: Option<String>,
|
|
||||||
|
|
||||||
/// SMTP server port.
|
|
||||||
pub smtp_port: Option<u16>,
|
|
||||||
|
|
||||||
/// SMTP socket security.
|
|
||||||
pub smtp_security: Option<Socket>,
|
|
||||||
|
|
||||||
/// SMTP username.
|
|
||||||
pub smtp_user: Option<String>,
|
|
||||||
|
|
||||||
/// SMTP Password.
|
|
||||||
///
|
|
||||||
/// Only needs to be specified if different than IMAP password.
|
|
||||||
pub smtp_password: Option<String>,
|
|
||||||
|
|
||||||
/// TLS options: whether to allow invalid certificates and/or
|
|
||||||
/// invalid hostnames.
|
|
||||||
/// Default: Automatic
|
|
||||||
pub certificate_checks: Option<EnteredCertificateChecks>,
|
|
||||||
|
|
||||||
/// If true, login via OAUTH2 (not recommended anymore).
|
|
||||||
/// Default: false
|
|
||||||
pub oauth2: Option<bool>,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl From<dc::EnteredLoginParam> for EnteredLoginParam {
|
|
||||||
fn from(param: dc::EnteredLoginParam) -> Self {
|
|
||||||
let imap_security: Socket = param.imap.security.into();
|
|
||||||
let smtp_security: Socket = param.smtp.security.into();
|
|
||||||
let certificate_checks: EnteredCertificateChecks = param.certificate_checks.into();
|
|
||||||
Self {
|
|
||||||
addr: param.addr,
|
|
||||||
password: param.imap.password,
|
|
||||||
imap_server: param.imap.server.into_option(),
|
|
||||||
imap_port: param.imap.port.into_option(),
|
|
||||||
imap_security: imap_security.into_option(),
|
|
||||||
imap_user: param.imap.user.into_option(),
|
|
||||||
smtp_server: param.smtp.server.into_option(),
|
|
||||||
smtp_port: param.smtp.port.into_option(),
|
|
||||||
smtp_security: smtp_security.into_option(),
|
|
||||||
smtp_user: param.smtp.user.into_option(),
|
|
||||||
smtp_password: param.smtp.password.into_option(),
|
|
||||||
certificate_checks: certificate_checks.into_option(),
|
|
||||||
oauth2: param.oauth2.into_option(),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl TryFrom<EnteredLoginParam> for dc::EnteredLoginParam {
|
|
||||||
type Error = anyhow::Error;
|
|
||||||
|
|
||||||
fn try_from(param: EnteredLoginParam) -> Result<Self> {
|
|
||||||
Ok(Self {
|
|
||||||
addr: param.addr,
|
|
||||||
imap: dc::EnteredServerLoginParam {
|
|
||||||
server: param.imap_server.unwrap_or_default(),
|
|
||||||
port: param.imap_port.unwrap_or_default(),
|
|
||||||
security: param.imap_security.unwrap_or_default().into(),
|
|
||||||
user: param.imap_user.unwrap_or_default(),
|
|
||||||
password: param.password,
|
|
||||||
},
|
|
||||||
smtp: dc::EnteredServerLoginParam {
|
|
||||||
server: param.smtp_server.unwrap_or_default(),
|
|
||||||
port: param.smtp_port.unwrap_or_default(),
|
|
||||||
security: param.smtp_security.unwrap_or_default().into(),
|
|
||||||
user: param.smtp_user.unwrap_or_default(),
|
|
||||||
password: param.smtp_password.unwrap_or_default(),
|
|
||||||
},
|
|
||||||
certificate_checks: param.certificate_checks.unwrap_or_default().into(),
|
|
||||||
oauth2: param.oauth2.unwrap_or_default(),
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize, TypeDef, schemars::JsonSchema, Default, PartialEq)]
|
|
||||||
#[serde(rename_all = "camelCase")]
|
|
||||||
pub enum Socket {
|
|
||||||
/// Unspecified socket security, select automatically.
|
|
||||||
#[default]
|
|
||||||
Automatic,
|
|
||||||
|
|
||||||
/// TLS connection.
|
|
||||||
Ssl,
|
|
||||||
|
|
||||||
/// STARTTLS connection.
|
|
||||||
Starttls,
|
|
||||||
|
|
||||||
/// No TLS, plaintext connection.
|
|
||||||
Plain,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl From<dc::Socket> for Socket {
|
|
||||||
fn from(value: dc::Socket) -> Self {
|
|
||||||
match value {
|
|
||||||
dc::Socket::Automatic => Self::Automatic,
|
|
||||||
dc::Socket::Ssl => Self::Ssl,
|
|
||||||
dc::Socket::Starttls => Self::Starttls,
|
|
||||||
dc::Socket::Plain => Self::Plain,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl From<Socket> for dc::Socket {
|
|
||||||
fn from(value: Socket) -> Self {
|
|
||||||
match value {
|
|
||||||
Socket::Automatic => Self::Automatic,
|
|
||||||
Socket::Ssl => Self::Ssl,
|
|
||||||
Socket::Starttls => Self::Starttls,
|
|
||||||
Socket::Plain => Self::Plain,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize, TypeDef, schemars::JsonSchema, Default, PartialEq)]
|
|
||||||
#[serde(rename_all = "camelCase")]
|
|
||||||
pub enum EnteredCertificateChecks {
|
|
||||||
/// `Automatic` means that provider database setting should be taken.
|
|
||||||
/// If there is no provider database setting for certificate checks,
|
|
||||||
/// check certificates strictly.
|
|
||||||
#[default]
|
|
||||||
Automatic,
|
|
||||||
|
|
||||||
/// Ensure that TLS certificate is valid for the server hostname.
|
|
||||||
Strict,
|
|
||||||
|
|
||||||
/// Accept certificates that are expired, self-signed
|
|
||||||
/// or otherwise not valid for the server hostname.
|
|
||||||
AcceptInvalidCertificates,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl From<dc::EnteredCertificateChecks> for EnteredCertificateChecks {
|
|
||||||
fn from(value: dc::EnteredCertificateChecks) -> Self {
|
|
||||||
match value {
|
|
||||||
dc::EnteredCertificateChecks::Automatic => Self::Automatic,
|
|
||||||
dc::EnteredCertificateChecks::Strict => Self::Strict,
|
|
||||||
dc::EnteredCertificateChecks::AcceptInvalidCertificates => {
|
|
||||||
Self::AcceptInvalidCertificates
|
|
||||||
}
|
|
||||||
dc::EnteredCertificateChecks::AcceptInvalidCertificates2 => {
|
|
||||||
Self::AcceptInvalidCertificates
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl From<EnteredCertificateChecks> for dc::EnteredCertificateChecks {
|
|
||||||
fn from(value: EnteredCertificateChecks) -> Self {
|
|
||||||
match value {
|
|
||||||
EnteredCertificateChecks::Automatic => Self::Automatic,
|
|
||||||
EnteredCertificateChecks::Strict => Self::Strict,
|
|
||||||
EnteredCertificateChecks::AcceptInvalidCertificates => Self::AcceptInvalidCertificates,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
trait IntoOption<T> {
|
|
||||||
fn into_option(self) -> Option<T>;
|
|
||||||
}
|
|
||||||
impl<T> IntoOption<T> for T
|
|
||||||
where
|
|
||||||
T: Default + std::cmp::PartialEq,
|
|
||||||
{
|
|
||||||
fn into_option(self) -> Option<T> {
|
|
||||||
if self == T::default() {
|
|
||||||
None
|
|
||||||
} else {
|
|
||||||
Some(self)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,5 +1,3 @@
|
|||||||
use std::path::Path;
|
|
||||||
|
|
||||||
use crate::api::VcardContact;
|
use crate::api::VcardContact;
|
||||||
use anyhow::{Context as _, Result};
|
use anyhow::{Context as _, Result};
|
||||||
use deltachat::chat::Chat;
|
use deltachat::chat::Chat;
|
||||||
@@ -39,8 +37,6 @@ pub struct MessageObject {
|
|||||||
|
|
||||||
text: String,
|
text: String,
|
||||||
|
|
||||||
is_edited: bool,
|
|
||||||
|
|
||||||
/// Check if a message has a POI location bound to it.
|
/// Check if a message has a POI location bound to it.
|
||||||
/// These locations are also returned by `get_locations` method.
|
/// These locations are also returned by `get_locations` method.
|
||||||
/// The UI may decide to display a special icon beside such messages.
|
/// The UI may decide to display a special icon beside such messages.
|
||||||
@@ -70,9 +66,6 @@ pub struct MessageObject {
|
|||||||
/// when is_info is true this describes what type of system message it is
|
/// when is_info is true this describes what type of system message it is
|
||||||
system_message_type: SystemMessageType,
|
system_message_type: SystemMessageType,
|
||||||
|
|
||||||
/// if is_info is set, this refers to the contact profile that should be opened when the info message is tapped.
|
|
||||||
info_contact_id: Option<u32>,
|
|
||||||
|
|
||||||
duration: i32,
|
duration: i32,
|
||||||
dimensions_height: i32,
|
dimensions_height: i32,
|
||||||
dimensions_width: i32,
|
dimensions_width: i32,
|
||||||
@@ -92,14 +85,8 @@ pub struct MessageObject {
|
|||||||
|
|
||||||
webxdc_info: Option<WebxdcMessageInfo>,
|
webxdc_info: Option<WebxdcMessageInfo>,
|
||||||
|
|
||||||
webxdc_href: Option<String>,
|
|
||||||
|
|
||||||
download_state: DownloadState,
|
download_state: DownloadState,
|
||||||
|
|
||||||
original_msg_id: Option<u32>,
|
|
||||||
|
|
||||||
saved_message_id: Option<u32>,
|
|
||||||
|
|
||||||
reactions: Option<JSONRPCReactions>,
|
reactions: Option<JSONRPCReactions>,
|
||||||
|
|
||||||
vcard_contact: Option<VcardContact>,
|
vcard_contact: Option<VcardContact>,
|
||||||
@@ -115,9 +102,6 @@ enum MessageQuote {
|
|||||||
WithMessage {
|
WithMessage {
|
||||||
text: String,
|
text: String,
|
||||||
message_id: u32,
|
message_id: u32,
|
||||||
/// The quoted message does not always belong
|
|
||||||
/// to the same chat, e.g. when "Reply Privately" is used.
|
|
||||||
chat_id: u32,
|
|
||||||
author_display_name: String,
|
author_display_name: String,
|
||||||
author_display_color: String,
|
author_display_color: String,
|
||||||
override_sender_name: Option<String>,
|
override_sender_name: Option<String>,
|
||||||
@@ -128,10 +112,8 @@ enum MessageQuote {
|
|||||||
}
|
}
|
||||||
|
|
||||||
impl MessageObject {
|
impl MessageObject {
|
||||||
pub async fn from_msg_id(context: &Context, msg_id: MsgId) -> Result<Option<Self>> {
|
pub async fn from_msg_id(context: &Context, msg_id: MsgId) -> Result<Self> {
|
||||||
let Some(message) = Message::load_from_db_optional(context, msg_id).await? else {
|
let message = Message::load_from_db(context, msg_id).await?;
|
||||||
return Ok(None);
|
|
||||||
};
|
|
||||||
|
|
||||||
let sender_contact = Contact::get_by_id(context, message.get_from_id())
|
let sender_contact = Contact::get_by_id(context, message.get_from_id())
|
||||||
.await
|
.await
|
||||||
@@ -161,7 +143,6 @@ impl MessageObject {
|
|||||||
Some(MessageQuote::WithMessage {
|
Some(MessageQuote::WithMessage {
|
||||||
text: quoted_text,
|
text: quoted_text,
|
||||||
message_id: quote.get_id().to_u32(),
|
message_id: quote.get_id().to_u32(),
|
||||||
chat_id: quote.get_chat_id().to_u32(),
|
|
||||||
author_display_name: quote_author.get_display_name().to_owned(),
|
author_display_name: quote_author.get_display_name().to_owned(),
|
||||||
author_display_color: color_int_to_hex_string(quote_author.get_color()),
|
author_display_color: color_int_to_hex_string(quote_author.get_color()),
|
||||||
override_sender_name: quote.get_override_sender_name(),
|
override_sender_name: quote.get_override_sender_name(),
|
||||||
@@ -202,14 +183,13 @@ impl MessageObject {
|
|||||||
.map(Into::into)
|
.map(Into::into)
|
||||||
.collect();
|
.collect();
|
||||||
|
|
||||||
let message_object = MessageObject {
|
Ok(MessageObject {
|
||||||
id: msg_id.to_u32(),
|
id: msg_id.to_u32(),
|
||||||
chat_id: message.get_chat_id().to_u32(),
|
chat_id: message.get_chat_id().to_u32(),
|
||||||
from_id: message.get_from_id().to_u32(),
|
from_id: message.get_from_id().to_u32(),
|
||||||
quote,
|
quote,
|
||||||
parent_id,
|
parent_id,
|
||||||
text: message.get_text(),
|
text: message.get_text(),
|
||||||
is_edited: message.is_edited(),
|
|
||||||
has_location: message.has_location(),
|
has_location: message.has_location(),
|
||||||
has_html: message.has_html(),
|
has_html: message.has_html(),
|
||||||
view_type: message.get_viewtype().into(),
|
view_type: message.get_viewtype().into(),
|
||||||
@@ -231,10 +211,6 @@ impl MessageObject {
|
|||||||
is_forwarded: message.is_forwarded(),
|
is_forwarded: message.is_forwarded(),
|
||||||
is_bot: message.is_bot(),
|
is_bot: message.is_bot(),
|
||||||
system_message_type: message.get_info_type().into(),
|
system_message_type: message.get_info_type().into(),
|
||||||
info_contact_id: message
|
|
||||||
.get_info_contact_id(context)
|
|
||||||
.await?
|
|
||||||
.map(|id| id.to_u32()),
|
|
||||||
|
|
||||||
duration: message.get_duration(),
|
duration: message.get_duration(),
|
||||||
dimensions_height: message.get_height(),
|
dimensions_height: message.get_height(),
|
||||||
@@ -263,27 +239,12 @@ impl MessageObject {
|
|||||||
file_name: message.get_filename(),
|
file_name: message.get_filename(),
|
||||||
webxdc_info,
|
webxdc_info,
|
||||||
|
|
||||||
// On a WebxdcInfoMessage this might include a hash holding
|
|
||||||
// information about a specific position or state in a webxdc app
|
|
||||||
webxdc_href: message.get_webxdc_href(),
|
|
||||||
|
|
||||||
download_state,
|
download_state,
|
||||||
|
|
||||||
original_msg_id: message
|
|
||||||
.get_original_msg_id(context)
|
|
||||||
.await?
|
|
||||||
.map(|id| id.to_u32()),
|
|
||||||
|
|
||||||
saved_message_id: message
|
|
||||||
.get_saved_msg_id(context)
|
|
||||||
.await?
|
|
||||||
.map(|id| id.to_u32()),
|
|
||||||
|
|
||||||
reactions,
|
reactions,
|
||||||
|
|
||||||
vcard_contact: vcard_contacts.first().cloned(),
|
vcard_contact: vcard_contacts.first().cloned(),
|
||||||
};
|
})
|
||||||
Ok(Some(message_object))
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -303,9 +264,6 @@ 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.
|
||||||
Sticker,
|
Sticker,
|
||||||
@@ -532,7 +490,6 @@ pub struct MessageSearchResult {
|
|||||||
author_name: String,
|
author_name: String,
|
||||||
author_color: String,
|
author_color: String,
|
||||||
author_id: u32,
|
author_id: u32,
|
||||||
chat_id: u32,
|
|
||||||
chat_profile_image: Option<String>,
|
chat_profile_image: Option<String>,
|
||||||
chat_color: String,
|
chat_color: String,
|
||||||
chat_name: String,
|
chat_name: String,
|
||||||
@@ -572,7 +529,6 @@ impl MessageSearchResult {
|
|||||||
author_name,
|
author_name,
|
||||||
author_color: color_int_to_hex_string(sender.get_color()),
|
author_color: color_int_to_hex_string(sender.get_color()),
|
||||||
author_id: sender.id.to_u32(),
|
author_id: sender.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().to_u32().context("unknown chat type id")?,
|
chat_type: chat.get_type().to_u32().context("unknown chat type id")?,
|
||||||
@@ -619,12 +575,9 @@ pub struct MessageData {
|
|||||||
pub html: Option<String>,
|
pub html: Option<String>,
|
||||||
pub viewtype: Option<MessageViewtype>,
|
pub viewtype: Option<MessageViewtype>,
|
||||||
pub file: Option<String>,
|
pub file: Option<String>,
|
||||||
pub filename: Option<String>,
|
|
||||||
pub location: Option<(f64, f64)>,
|
pub location: Option<(f64, f64)>,
|
||||||
pub override_sender_name: Option<String>,
|
pub override_sender_name: Option<String>,
|
||||||
/// Quoted message id. Takes preference over `quoted_text` (see below).
|
|
||||||
pub quoted_message_id: Option<u32>,
|
pub quoted_message_id: Option<u32>,
|
||||||
pub quoted_text: Option<String>,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
impl MessageData {
|
impl MessageData {
|
||||||
@@ -644,27 +597,22 @@ impl MessageData {
|
|||||||
message.set_override_sender_name(self.override_sender_name);
|
message.set_override_sender_name(self.override_sender_name);
|
||||||
}
|
}
|
||||||
if let Some(file) = self.file {
|
if let Some(file) = self.file {
|
||||||
message.set_file_and_deduplicate(
|
message.set_file(file, None);
|
||||||
context,
|
|
||||||
Path::new(&file),
|
|
||||||
self.filename.as_deref(),
|
|
||||||
None,
|
|
||||||
)?;
|
|
||||||
}
|
}
|
||||||
if let Some((latitude, longitude)) = self.location {
|
if let Some((latitude, longitude)) = self.location {
|
||||||
message.set_location(latitude, longitude);
|
message.set_location(latitude, longitude);
|
||||||
}
|
}
|
||||||
if let Some(id) = self.quoted_message_id {
|
if let Some(id) = self.quoted_message_id {
|
||||||
let quoted_message = Message::load_from_db(context, MsgId::new(id))
|
|
||||||
.await
|
|
||||||
.context("Failed to load quoted message")?;
|
|
||||||
message
|
message
|
||||||
.set_quote(context, Some("ed_message))
|
.set_quote(
|
||||||
.await
|
context,
|
||||||
.context("Failed to set quote")?;
|
Some(
|
||||||
} else if let Some(text) = self.quoted_text {
|
&Message::load_from_db(context, MsgId::new(id))
|
||||||
let protect = false;
|
.await
|
||||||
message.set_quote_text(Some((text, protect)));
|
.context("message to quote could not be loaded")?,
|
||||||
|
),
|
||||||
|
)
|
||||||
|
.await?;
|
||||||
}
|
}
|
||||||
Ok(message)
|
Ok(message)
|
||||||
}
|
}
|
||||||
@@ -680,18 +628,20 @@ pub struct MessageReadReceipt {
|
|||||||
#[derive(Serialize, TypeDef, schemars::JsonSchema)]
|
#[derive(Serialize, TypeDef, schemars::JsonSchema)]
|
||||||
#[serde(rename_all = "camelCase")]
|
#[serde(rename_all = "camelCase")]
|
||||||
pub struct MessageInfo {
|
pub struct MessageInfo {
|
||||||
|
rawtext: String,
|
||||||
ephemeral_timer: EphemeralTimer,
|
ephemeral_timer: EphemeralTimer,
|
||||||
/// When message is ephemeral this contains the timestamp of the message expiry
|
/// When message is ephemeral this contains the timestamp of the message expiry
|
||||||
ephemeral_timestamp: Option<i64>,
|
ephemeral_timestamp: Option<i64>,
|
||||||
error: Option<String>,
|
error: Option<String>,
|
||||||
rfc724_mid: String,
|
rfc724_mid: String,
|
||||||
server_urls: Vec<String>,
|
server_urls: Vec<String>,
|
||||||
hop_info: String,
|
hop_info: Option<String>,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl MessageInfo {
|
impl MessageInfo {
|
||||||
pub async fn from_msg_id(context: &Context, msg_id: MsgId) -> Result<Self> {
|
pub async fn from_msg_id(context: &Context, msg_id: MsgId) -> Result<Self> {
|
||||||
let message = Message::load_from_db(context, msg_id).await?;
|
let message = Message::load_from_db(context, msg_id).await?;
|
||||||
|
let rawtext = msg_id.rawtext(context).await?;
|
||||||
let ephemeral_timer = message.get_ephemeral_timer().into();
|
let ephemeral_timer = message.get_ephemeral_timer().into();
|
||||||
let ephemeral_timestamp = match message.get_ephemeral_timer() {
|
let ephemeral_timestamp = match message.get_ephemeral_timer() {
|
||||||
deltachat::ephemeral::Timer::Disabled => None,
|
deltachat::ephemeral::Timer::Disabled => None,
|
||||||
@@ -704,6 +654,7 @@ impl MessageInfo {
|
|||||||
let hop_info = msg_id.hop_info(context).await?;
|
let hop_info = msg_id.hop_info(context).await?;
|
||||||
|
|
||||||
Ok(Self {
|
Ok(Self {
|
||||||
|
rawtext,
|
||||||
ephemeral_timer,
|
ephemeral_timer,
|
||||||
ephemeral_timestamp,
|
ephemeral_timestamp,
|
||||||
error: message.error(),
|
error: message.error(),
|
||||||
|
|||||||
@@ -5,7 +5,6 @@ pub mod contact;
|
|||||||
pub mod events;
|
pub mod events;
|
||||||
pub mod http;
|
pub mod http;
|
||||||
pub mod location;
|
pub mod location;
|
||||||
pub mod login_param;
|
|
||||||
pub mod message;
|
pub mod message;
|
||||||
pub mod provider_info;
|
pub mod provider_info;
|
||||||
pub mod qr;
|
pub mod qr;
|
||||||
|
|||||||
@@ -6,165 +6,77 @@ use typescript_type_def::TypeDef;
|
|||||||
#[serde(rename = "Qr", rename_all = "camelCase")]
|
#[serde(rename = "Qr", rename_all = "camelCase")]
|
||||||
#[serde(tag = "kind")]
|
#[serde(tag = "kind")]
|
||||||
pub enum QrObject {
|
pub enum QrObject {
|
||||||
/// Ask the user whether to verify the contact.
|
|
||||||
///
|
|
||||||
/// If the user agrees, pass this QR code to [`crate::securejoin::join_securejoin`].
|
|
||||||
AskVerifyContact {
|
AskVerifyContact {
|
||||||
/// ID of the contact.
|
|
||||||
contact_id: u32,
|
contact_id: u32,
|
||||||
/// Fingerprint of the contact key as scanned from the QR code.
|
|
||||||
fingerprint: String,
|
fingerprint: String,
|
||||||
/// Invite number.
|
|
||||||
invitenumber: String,
|
invitenumber: String,
|
||||||
/// Authentication code.
|
|
||||||
authcode: String,
|
authcode: String,
|
||||||
},
|
},
|
||||||
/// Ask the user whether to join the group.
|
|
||||||
AskVerifyGroup {
|
AskVerifyGroup {
|
||||||
/// Group name.
|
|
||||||
grpname: String,
|
grpname: String,
|
||||||
/// Group ID.
|
|
||||||
grpid: String,
|
grpid: String,
|
||||||
/// ID of the contact.
|
|
||||||
contact_id: u32,
|
contact_id: u32,
|
||||||
/// Fingerprint of the contact key as scanned from the QR code.
|
|
||||||
fingerprint: String,
|
fingerprint: String,
|
||||||
/// Invite number.
|
|
||||||
invitenumber: String,
|
invitenumber: String,
|
||||||
/// Authentication code.
|
|
||||||
authcode: String,
|
authcode: String,
|
||||||
},
|
},
|
||||||
/// Contact fingerprint is verified.
|
|
||||||
///
|
|
||||||
/// Ask the user if they want to start chatting.
|
|
||||||
FprOk {
|
FprOk {
|
||||||
/// Contact ID.
|
|
||||||
contact_id: u32,
|
contact_id: u32,
|
||||||
},
|
},
|
||||||
/// Scanned fingerprint does not match the last seen fingerprint.
|
|
||||||
FprMismatch {
|
FprMismatch {
|
||||||
/// Contact ID.
|
|
||||||
contact_id: Option<u32>,
|
contact_id: Option<u32>,
|
||||||
},
|
},
|
||||||
/// The scanned QR code contains a fingerprint but no e-mail address.
|
|
||||||
FprWithoutAddr {
|
FprWithoutAddr {
|
||||||
/// Key fingerprint.
|
|
||||||
fingerprint: String,
|
fingerprint: String,
|
||||||
},
|
},
|
||||||
/// Ask the user if they want to create an account on the given domain.
|
|
||||||
Account {
|
Account {
|
||||||
/// Server domain name.
|
|
||||||
domain: String,
|
domain: String,
|
||||||
},
|
},
|
||||||
/// Provides a backup that can be retrieved using iroh-net based backup transfer protocol.
|
Backup {
|
||||||
Backup2 {
|
ticket: String,
|
||||||
/// Authentication token.
|
|
||||||
auth_token: String,
|
|
||||||
/// Iroh node address.
|
|
||||||
node_addr: String,
|
|
||||||
},
|
},
|
||||||
BackupTooNew {},
|
|
||||||
/// Ask the user if they want to use the given service for video chats.
|
|
||||||
WebrtcInstance {
|
WebrtcInstance {
|
||||||
domain: String,
|
domain: String,
|
||||||
instance_pattern: String,
|
instance_pattern: String,
|
||||||
},
|
},
|
||||||
/// Ask the user if they want to use the given proxy.
|
|
||||||
///
|
|
||||||
/// Note that HTTP(S) URLs without a path
|
|
||||||
/// and query parameters are treated as HTTP(S) proxy URL.
|
|
||||||
/// UI may want to still offer to open the URL
|
|
||||||
/// in the browser if QR code contents
|
|
||||||
/// starts with `http://` or `https://`
|
|
||||||
/// and the QR code was not scanned from
|
|
||||||
/// the proxy configuration screen.
|
|
||||||
Proxy {
|
|
||||||
/// Proxy URL.
|
|
||||||
///
|
|
||||||
/// This is the URL that is going to be added.
|
|
||||||
url: String,
|
|
||||||
/// Host extracted from the URL to display in the UI.
|
|
||||||
host: String,
|
|
||||||
/// Port extracted from the URL to display in the UI.
|
|
||||||
port: u16,
|
|
||||||
},
|
|
||||||
/// Contact address is scanned.
|
|
||||||
///
|
|
||||||
/// Optionally, a draft message could be provided.
|
|
||||||
/// Ask the user if they want to start chatting.
|
|
||||||
Addr {
|
Addr {
|
||||||
/// Contact ID.
|
|
||||||
contact_id: u32,
|
contact_id: u32,
|
||||||
/// Draft message.
|
|
||||||
draft: Option<String>,
|
draft: Option<String>,
|
||||||
},
|
},
|
||||||
/// URL scanned.
|
|
||||||
///
|
|
||||||
/// Ask the user if they want to open a browser or copy the URL to clipboard.
|
|
||||||
Url {
|
Url {
|
||||||
url: String,
|
url: String,
|
||||||
},
|
},
|
||||||
/// Text scanned.
|
|
||||||
///
|
|
||||||
/// Ask the user if they want to copy the text to clipboard.
|
|
||||||
Text {
|
Text {
|
||||||
text: String,
|
text: String,
|
||||||
},
|
},
|
||||||
/// Ask the user if they want to withdraw their own QR code.
|
|
||||||
WithdrawVerifyContact {
|
WithdrawVerifyContact {
|
||||||
/// Contact ID.
|
|
||||||
contact_id: u32,
|
contact_id: u32,
|
||||||
/// Fingerprint of the contact key as scanned from the QR code.
|
|
||||||
fingerprint: String,
|
fingerprint: String,
|
||||||
/// Invite number.
|
|
||||||
invitenumber: String,
|
invitenumber: String,
|
||||||
/// Authentication code.
|
|
||||||
authcode: String,
|
authcode: String,
|
||||||
},
|
},
|
||||||
/// Ask the user if they want to withdraw their own group invite QR code.
|
|
||||||
WithdrawVerifyGroup {
|
WithdrawVerifyGroup {
|
||||||
/// Group name.
|
|
||||||
grpname: String,
|
grpname: String,
|
||||||
/// Group ID.
|
|
||||||
grpid: String,
|
grpid: String,
|
||||||
/// Contact ID.
|
|
||||||
contact_id: u32,
|
contact_id: u32,
|
||||||
/// Fingerprint of the contact key as scanned from the QR code.
|
|
||||||
fingerprint: String,
|
fingerprint: String,
|
||||||
/// Invite number.
|
|
||||||
invitenumber: String,
|
invitenumber: String,
|
||||||
/// Authentication code.
|
|
||||||
authcode: String,
|
authcode: String,
|
||||||
},
|
},
|
||||||
/// Ask the user if they want to revive their own QR code.
|
|
||||||
ReviveVerifyContact {
|
ReviveVerifyContact {
|
||||||
/// Contact ID.
|
|
||||||
contact_id: u32,
|
contact_id: u32,
|
||||||
/// Fingerprint of the contact key as scanned from the QR code.
|
|
||||||
fingerprint: String,
|
fingerprint: String,
|
||||||
/// Invite number.
|
|
||||||
invitenumber: String,
|
invitenumber: String,
|
||||||
/// Authentication code.
|
|
||||||
authcode: String,
|
authcode: String,
|
||||||
},
|
},
|
||||||
/// Ask the user if they want to revive their own group invite QR code.
|
|
||||||
ReviveVerifyGroup {
|
ReviveVerifyGroup {
|
||||||
/// Contact ID.
|
|
||||||
grpname: String,
|
grpname: String,
|
||||||
/// Group ID.
|
|
||||||
grpid: String,
|
grpid: String,
|
||||||
/// Contact ID.
|
|
||||||
contact_id: u32,
|
contact_id: u32,
|
||||||
/// Fingerprint of the contact key as scanned from the QR code.
|
|
||||||
fingerprint: String,
|
fingerprint: String,
|
||||||
/// Invite number.
|
|
||||||
invitenumber: String,
|
invitenumber: String,
|
||||||
/// Authentication code.
|
|
||||||
authcode: String,
|
authcode: String,
|
||||||
},
|
},
|
||||||
/// `dclogin:` scheme parameters.
|
|
||||||
///
|
|
||||||
/// Ask the user if they want to login with the email address.
|
|
||||||
Login {
|
Login {
|
||||||
address: String,
|
address: String,
|
||||||
},
|
},
|
||||||
@@ -217,14 +129,9 @@ impl From<Qr> for QrObject {
|
|||||||
}
|
}
|
||||||
Qr::FprWithoutAddr { fingerprint } => QrObject::FprWithoutAddr { fingerprint },
|
Qr::FprWithoutAddr { fingerprint } => QrObject::FprWithoutAddr { fingerprint },
|
||||||
Qr::Account { domain } => QrObject::Account { domain },
|
Qr::Account { domain } => QrObject::Account { domain },
|
||||||
Qr::Backup2 {
|
Qr::Backup { ticket } => QrObject::Backup {
|
||||||
ref node_addr,
|
ticket: ticket.to_string(),
|
||||||
auth_token,
|
|
||||||
} => QrObject::Backup2 {
|
|
||||||
node_addr: serde_json::to_string(node_addr).unwrap_or_default(),
|
|
||||||
auth_token,
|
|
||||||
},
|
},
|
||||||
Qr::BackupTooNew {} => QrObject::BackupTooNew {},
|
|
||||||
Qr::WebrtcInstance {
|
Qr::WebrtcInstance {
|
||||||
domain,
|
domain,
|
||||||
instance_pattern,
|
instance_pattern,
|
||||||
@@ -232,7 +139,6 @@ impl From<Qr> for QrObject {
|
|||||||
domain,
|
domain,
|
||||||
instance_pattern,
|
instance_pattern,
|
||||||
},
|
},
|
||||||
Qr::Proxy { url, host, port } => QrObject::Proxy { url, host, port },
|
|
||||||
Qr::Addr { contact_id, draft } => {
|
Qr::Addr { contact_id, draft } => {
|
||||||
let contact_id = contact_id.to_u32();
|
let contact_id = contact_id.to_u32();
|
||||||
QrObject::Addr { contact_id, draft }
|
QrObject::Addr { contact_id, draft }
|
||||||
|
|||||||
@@ -35,14 +35,6 @@ pub struct WebxdcMessageInfo {
|
|||||||
source_code_url: Option<String>,
|
source_code_url: Option<String>,
|
||||||
/// True if full internet access should be granted to the app.
|
/// True if full internet access should be granted to the app.
|
||||||
internet_access: bool,
|
internet_access: bool,
|
||||||
/// Address to be used for `window.webxdc.selfAddr` in JS land.
|
|
||||||
self_addr: String,
|
|
||||||
/// Milliseconds to wait before calling `sendUpdate()` again since the last call.
|
|
||||||
/// Should be exposed to `window.sendUpdateInterval` in JS land.
|
|
||||||
send_update_interval: usize,
|
|
||||||
/// Maximum number of bytes accepted for a serialized update object.
|
|
||||||
/// Should be exposed to `window.sendUpdateMaxSize` in JS land.
|
|
||||||
send_update_max_size: usize,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
impl WebxdcMessageInfo {
|
impl WebxdcMessageInfo {
|
||||||
@@ -57,11 +49,7 @@ impl WebxdcMessageInfo {
|
|||||||
document,
|
document,
|
||||||
summary,
|
summary,
|
||||||
source_code_url,
|
source_code_url,
|
||||||
request_integration: _,
|
|
||||||
internet_access,
|
internet_access,
|
||||||
self_addr,
|
|
||||||
send_update_interval,
|
|
||||||
send_update_max_size,
|
|
||||||
} = message.get_webxdc_info(context).await?;
|
} = message.get_webxdc_info(context).await?;
|
||||||
|
|
||||||
Ok(Self {
|
Ok(Self {
|
||||||
@@ -71,9 +59,6 @@ impl WebxdcMessageInfo {
|
|||||||
summary: maybe_empty_string_to_option(summary),
|
summary: maybe_empty_string_to_option(summary),
|
||||||
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,
|
|
||||||
send_update_interval,
|
|
||||||
send_update_max_size,
|
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,4 @@
|
|||||||
#![recursion_limit = "256"]
|
#![recursion_limit = "256"]
|
||||||
#![cfg_attr(not(test), forbid(clippy::indexing_slicing))]
|
|
||||||
#![cfg_attr(not(test), forbid(clippy::string_slice))]
|
|
||||||
pub mod api;
|
pub mod api;
|
||||||
pub use yerpc;
|
pub use yerpc;
|
||||||
|
|
||||||
@@ -85,7 +83,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":"","smtp_certificate_checks":""}]}"#;
|
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":"","socks5_enabled":"0","socks5_host":"","socks5_port":"","socks5_user":"","socks5_password":""}]}"#;
|
||||||
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?;
|
||||||
|
|||||||
47
deltachat-jsonrpc/src/webserver.rs
Normal file
47
deltachat-jsonrpc/src/webserver.rs
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
#![recursion_limit = "256"]
|
||||||
|
use std::net::SocketAddr;
|
||||||
|
use std::path::PathBuf;
|
||||||
|
|
||||||
|
use axum::{extract::ws::WebSocketUpgrade, response::Response, routing::get, Extension, Router};
|
||||||
|
use yerpc::axum::handle_ws_rpc;
|
||||||
|
use yerpc::{RpcClient, RpcSession};
|
||||||
|
|
||||||
|
mod api;
|
||||||
|
use api::{Accounts, CommandApi};
|
||||||
|
|
||||||
|
const DEFAULT_PORT: u16 = 20808;
|
||||||
|
|
||||||
|
#[tokio::main(flavor = "multi_thread")]
|
||||||
|
async fn main() -> Result<(), std::io::Error> {
|
||||||
|
env_logger::Builder::from_env(env_logger::Env::default().default_filter_or("info")).init();
|
||||||
|
|
||||||
|
let path = std::env::var("DC_ACCOUNTS_PATH").unwrap_or_else(|_| "./accounts".to_string());
|
||||||
|
let port = std::env::var("DC_PORT")
|
||||||
|
.map(|port| port.parse::<u16>().expect("DC_PORT must be a number"))
|
||||||
|
.unwrap_or(DEFAULT_PORT);
|
||||||
|
log::info!("Starting with accounts directory `{path}`.");
|
||||||
|
let writable = true;
|
||||||
|
let accounts = Accounts::new(PathBuf::from(&path), writable).await.unwrap();
|
||||||
|
let state = CommandApi::new(accounts);
|
||||||
|
|
||||||
|
let app = Router::new()
|
||||||
|
.route("/ws", get(handler))
|
||||||
|
.layer(Extension(state.clone()));
|
||||||
|
|
||||||
|
tokio::spawn(async move {
|
||||||
|
state.accounts.write().await.start_io().await;
|
||||||
|
});
|
||||||
|
|
||||||
|
let addr = SocketAddr::from(([127, 0, 0, 1], port));
|
||||||
|
log::info!("JSON-RPC WebSocket server listening on {}", addr);
|
||||||
|
let listener = tokio::net::TcpListener::bind(addr).await.unwrap();
|
||||||
|
axum::serve(listener, app).await.unwrap();
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
async fn handler(ws: WebSocketUpgrade, Extension(api): Extension<CommandApi>) -> Response {
|
||||||
|
let (client, out_receiver) = RpcClient::new();
|
||||||
|
let session = RpcSession::new(client.clone(), api.clone());
|
||||||
|
handle_ws_rpc(ws, out_receiver, session).await
|
||||||
|
}
|
||||||
56
deltachat-jsonrpc/typescript/example.html
Normal file
56
deltachat-jsonrpc/typescript/example.html
Normal file
@@ -0,0 +1,56 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<title>DeltaChat JSON-RPC example</title>
|
||||||
|
<style>
|
||||||
|
body {
|
||||||
|
font-family: monospace;
|
||||||
|
background: black;
|
||||||
|
color: grey;
|
||||||
|
}
|
||||||
|
.grid {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: 3fr 1fr;
|
||||||
|
grid-template-areas: "a a" "b c";
|
||||||
|
}
|
||||||
|
.message {
|
||||||
|
color: red;
|
||||||
|
}
|
||||||
|
#header {
|
||||||
|
grid-area: a;
|
||||||
|
color: white;
|
||||||
|
font-size: 1.2rem;
|
||||||
|
}
|
||||||
|
#header a {
|
||||||
|
color: white;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
#main {
|
||||||
|
grid-area: b;
|
||||||
|
color: green;
|
||||||
|
}
|
||||||
|
#main h2,
|
||||||
|
#main h3 {
|
||||||
|
color: blue;
|
||||||
|
}
|
||||||
|
#side {
|
||||||
|
grid-area: c;
|
||||||
|
color: #777;
|
||||||
|
overflow-y: auto;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<script type="module" src="dist/example.bundle.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<h1>DeltaChat JSON-RPC example</h1>
|
||||||
|
<div class="grid">
|
||||||
|
<div id="header"></div>
|
||||||
|
<div id="main"></div>
|
||||||
|
<div id="side"><h2>log</h2></div>
|
||||||
|
</div>
|
||||||
|
<p>
|
||||||
|
Tip: open the dev console and use the client with
|
||||||
|
<code>window.client</code>
|
||||||
|
</p>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
109
deltachat-jsonrpc/typescript/example/example.ts
Normal file
109
deltachat-jsonrpc/typescript/example/example.ts
Normal file
@@ -0,0 +1,109 @@
|
|||||||
|
import { DcEvent, DeltaChat } from "../deltachat.js";
|
||||||
|
|
||||||
|
var SELECTED_ACCOUNT = 0;
|
||||||
|
|
||||||
|
window.addEventListener("DOMContentLoaded", (_event) => {
|
||||||
|
(window as any).selectDeltaAccount = (id: string) => {
|
||||||
|
SELECTED_ACCOUNT = Number(id);
|
||||||
|
window.dispatchEvent(new Event("account-changed"));
|
||||||
|
};
|
||||||
|
console.log("launch run script...");
|
||||||
|
run().catch((err) => console.error("run failed", err));
|
||||||
|
});
|
||||||
|
|
||||||
|
async function run() {
|
||||||
|
const $main = document.getElementById("main")!;
|
||||||
|
const $side = document.getElementById("side")!;
|
||||||
|
const $head = document.getElementById("header")!;
|
||||||
|
|
||||||
|
const client = new DeltaChat("ws://localhost:20808/ws");
|
||||||
|
|
||||||
|
(window as any).client = client.rpc;
|
||||||
|
|
||||||
|
client.on("ALL", (accountId, event) => {
|
||||||
|
onIncomingEvent(accountId, event);
|
||||||
|
});
|
||||||
|
|
||||||
|
window.addEventListener("account-changed", async (_event: Event) => {
|
||||||
|
listChatsForSelectedAccount();
|
||||||
|
});
|
||||||
|
|
||||||
|
await Promise.all([loadAccountsInHeader(), listChatsForSelectedAccount()]);
|
||||||
|
|
||||||
|
async function loadAccountsInHeader() {
|
||||||
|
console.log("load accounts");
|
||||||
|
const accounts = await client.rpc.getAllAccounts();
|
||||||
|
console.log("accounts loaded", accounts);
|
||||||
|
for (const account of accounts) {
|
||||||
|
if (account.kind === "Configured") {
|
||||||
|
write(
|
||||||
|
$head,
|
||||||
|
`<a href="#" onclick="selectDeltaAccount(${account.id})">
|
||||||
|
${account.id}: ${account.addr!}
|
||||||
|
</a> `
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
write(
|
||||||
|
$head,
|
||||||
|
`<a href="#">
|
||||||
|
${account.id}: (unconfigured)
|
||||||
|
</a> `
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async function listChatsForSelectedAccount() {
|
||||||
|
clear($main);
|
||||||
|
const selectedAccount = SELECTED_ACCOUNT;
|
||||||
|
const info = await client.rpc.getAccountInfo(selectedAccount);
|
||||||
|
if (info.kind !== "Configured") {
|
||||||
|
return write($main, "Account is not configured");
|
||||||
|
}
|
||||||
|
write($main, `<h2>${info.addr!}</h2>`);
|
||||||
|
const chats = await client.rpc.getChatlistEntries(
|
||||||
|
selectedAccount,
|
||||||
|
0,
|
||||||
|
null,
|
||||||
|
null
|
||||||
|
);
|
||||||
|
for (const chatId of chats) {
|
||||||
|
const chat = await client.rpc.getFullChatById(selectedAccount, chatId);
|
||||||
|
write($main, `<h3>${chat.name}</h3>`);
|
||||||
|
const messageIds = await client.rpc.getMessageIds(
|
||||||
|
selectedAccount,
|
||||||
|
chatId,
|
||||||
|
false,
|
||||||
|
false
|
||||||
|
);
|
||||||
|
const messages = await client.rpc.getMessages(
|
||||||
|
selectedAccount,
|
||||||
|
messageIds
|
||||||
|
);
|
||||||
|
for (const [_messageId, message] of Object.entries(messages)) {
|
||||||
|
if (message.kind === "message") write($main, `<p>${message.text}</p>`);
|
||||||
|
else write($main, `<p>loading error: ${message.error}</p>`);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function onIncomingEvent(accountId: number, event: DcEvent) {
|
||||||
|
write(
|
||||||
|
$side,
|
||||||
|
`
|
||||||
|
<p class="message">
|
||||||
|
[<strong>${event.kind}</strong> on account ${accountId}]<br>
|
||||||
|
<em>f1:</em> ${JSON.stringify(
|
||||||
|
Object.assign({}, event, { kind: undefined })
|
||||||
|
)}
|
||||||
|
</p>`
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function write(el: HTMLElement, html: string) {
|
||||||
|
el.innerHTML += html;
|
||||||
|
}
|
||||||
|
function clear(el: HTMLElement) {
|
||||||
|
el.innerHTML = "";
|
||||||
|
}
|
||||||
29
deltachat-jsonrpc/typescript/example/node-add-account.js
Normal file
29
deltachat-jsonrpc/typescript/example/node-add-account.js
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
import { DeltaChat } from "../dist/deltachat.js";
|
||||||
|
|
||||||
|
run().catch(console.error);
|
||||||
|
|
||||||
|
async function run() {
|
||||||
|
const delta = new DeltaChat("ws://localhost:20808/ws");
|
||||||
|
delta.on("event", (event) => {
|
||||||
|
console.log("event", event.data);
|
||||||
|
});
|
||||||
|
|
||||||
|
const email = process.argv[2];
|
||||||
|
const password = process.argv[3];
|
||||||
|
if (!email || !password)
|
||||||
|
throw new Error(
|
||||||
|
"USAGE: node node-add-account.js <EMAILADDRESS> <PASSWORD>"
|
||||||
|
);
|
||||||
|
console.log(`creating account for ${email}`);
|
||||||
|
const id = await delta.rpc.addAccount();
|
||||||
|
console.log(`created account id ${id}`);
|
||||||
|
await delta.rpc.setConfig(id, "addr", email);
|
||||||
|
await delta.rpc.setConfig(id, "mail_pw", password);
|
||||||
|
console.log("configuration updated");
|
||||||
|
await delta.rpc.configure(id);
|
||||||
|
console.log("account configured!");
|
||||||
|
|
||||||
|
const accounts = await delta.rpc.getAllAccounts();
|
||||||
|
console.log("accounts", accounts);
|
||||||
|
console.log("waiting for events...");
|
||||||
|
}
|
||||||
14
deltachat-jsonrpc/typescript/example/node-demo.js
Normal file
14
deltachat-jsonrpc/typescript/example/node-demo.js
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
import { DeltaChat } from "../dist/deltachat.js";
|
||||||
|
|
||||||
|
run().catch(console.error);
|
||||||
|
|
||||||
|
async function run() {
|
||||||
|
const delta = new DeltaChat();
|
||||||
|
delta.on("event", (event) => {
|
||||||
|
console.log("event", event.data);
|
||||||
|
});
|
||||||
|
|
||||||
|
const accounts = await delta.rpc.getAllAccounts();
|
||||||
|
console.log("accounts", accounts);
|
||||||
|
console.log("waiting for events...");
|
||||||
|
}
|
||||||
@@ -3,7 +3,7 @@
|
|||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@deltachat/tiny-emitter": "3.0.0",
|
"@deltachat/tiny-emitter": "3.0.0",
|
||||||
"isomorphic-ws": "^4.0.1",
|
"isomorphic-ws": "^4.0.1",
|
||||||
"yerpc": "^0.6.2"
|
"yerpc": "^0.4.3"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/chai": "^4.2.21",
|
"@types/chai": "^4.2.21",
|
||||||
@@ -34,7 +34,7 @@
|
|||||||
"name": "@deltachat/jsonrpc-client",
|
"name": "@deltachat/jsonrpc-client",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/chatmail/core.git"
|
"url": "https://github.com/deltachat/deltachat-core-rust.git"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "run-s generate-bindings extract-constants build:tsc build:bundle build:cjs",
|
"build": "run-s generate-bindings extract-constants build:tsc build:bundle build:cjs",
|
||||||
@@ -42,6 +42,10 @@
|
|||||||
"build:cjs": "esbuild --format=cjs --bundle --packages=external dist/deltachat.js --outfile=dist/deltachat.cjs",
|
"build:cjs": "esbuild --format=cjs --bundle --packages=external dist/deltachat.js --outfile=dist/deltachat.cjs",
|
||||||
"build:tsc": "tsc",
|
"build:tsc": "tsc",
|
||||||
"docs": "typedoc --out docs deltachat.ts",
|
"docs": "typedoc --out docs deltachat.ts",
|
||||||
|
"example": "run-s build example:build example:start",
|
||||||
|
"example:build": "esbuild --bundle dist/example/example.js --outfile=dist/example.bundle.js",
|
||||||
|
"example:dev": "esbuild example/example.ts --bundle --outfile=dist/example.bundle.js --servedir=.",
|
||||||
|
"example:start": "http-server .",
|
||||||
"extract-constants": "node ./scripts/generate-constants.js",
|
"extract-constants": "node ./scripts/generate-constants.js",
|
||||||
"generate-bindings": "cargo test",
|
"generate-bindings": "cargo test",
|
||||||
"prettier:check": "prettier --check .",
|
"prettier:check": "prettier --check .",
|
||||||
@@ -54,5 +58,5 @@
|
|||||||
},
|
},
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"types": "dist/deltachat.d.ts",
|
"types": "dist/deltachat.d.ts",
|
||||||
"version": "1.159.4"
|
"version": "1.140.0"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ import * as T from "../generated/types.js";
|
|||||||
import { EventType } from "../generated/types.js";
|
import { EventType } from "../generated/types.js";
|
||||||
import * as RPC from "../generated/jsonrpc.js";
|
import * as RPC from "../generated/jsonrpc.js";
|
||||||
import { RawClient } from "../generated/client.js";
|
import { RawClient } from "../generated/client.js";
|
||||||
import { BaseTransport, Request } from "yerpc";
|
import { WebsocketTransport, BaseTransport, Request } from "yerpc";
|
||||||
import { TinyEmitter } from "@deltachat/tiny-emitter";
|
import { TinyEmitter } from "@deltachat/tiny-emitter";
|
||||||
|
|
||||||
type Events = { ALL: (accountId: number, event: EventType) => void } & {
|
type Events = { ALL: (accountId: number, event: EventType) => void } & {
|
||||||
@@ -74,6 +74,34 @@ export class BaseDeltaChat<
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export type Opts = {
|
||||||
|
url: string;
|
||||||
|
startEventLoop: boolean;
|
||||||
|
};
|
||||||
|
|
||||||
|
export const DEFAULT_OPTS: Opts = {
|
||||||
|
url: "ws://localhost:20808/ws",
|
||||||
|
startEventLoop: true,
|
||||||
|
};
|
||||||
|
export class DeltaChat extends BaseDeltaChat<WebsocketTransport> {
|
||||||
|
opts: Opts;
|
||||||
|
close() {
|
||||||
|
this.transport.close();
|
||||||
|
}
|
||||||
|
constructor(opts?: Opts | string) {
|
||||||
|
if (typeof opts === "string") {
|
||||||
|
opts = { ...DEFAULT_OPTS, url: opts };
|
||||||
|
} else if (opts) {
|
||||||
|
opts = { ...DEFAULT_OPTS, ...opts };
|
||||||
|
} else {
|
||||||
|
opts = { ...DEFAULT_OPTS };
|
||||||
|
}
|
||||||
|
const transport = new WebsocketTransport(opts.url);
|
||||||
|
super(transport, opts.startEventLoop);
|
||||||
|
this.opts = opts;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
export class StdioDeltaChat extends BaseDeltaChat<StdioTransport> {
|
export class StdioDeltaChat extends BaseDeltaChat<StdioTransport> {
|
||||||
close() {}
|
close() {}
|
||||||
constructor(input: any, output: any, startEventLoop: boolean) {
|
constructor(input: any, output: any, startEventLoop: boolean) {
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
import { assert, expect } from "chai";
|
import { assert, expect } from "chai";
|
||||||
import { StdioDeltaChat as DeltaChat, DcEvent, C } from "../deltachat.js";
|
import { StdioDeltaChat as DeltaChat, DcEvent } from "../deltachat.js";
|
||||||
import { RpcServerHandle, createTempUser, startServer } from "./test_base.js";
|
import { RpcServerHandle, createTempUser, startServer } from "./test_base.js";
|
||||||
|
|
||||||
const EVENT_TIMEOUT = 20000;
|
const EVENT_TIMEOUT = 20000;
|
||||||
@@ -80,10 +80,16 @@ describe("online tests", function () {
|
|||||||
}
|
}
|
||||||
this.timeout(15000);
|
this.timeout(15000);
|
||||||
|
|
||||||
const vcard = await dc.rpc.makeVcard(accountId2, [C.DC_CONTACT_ID_SELF]);
|
const contactId = await dc.rpc.createContact(
|
||||||
const contactId = (await dc.rpc.importVcardContents(accountId1, vcard))[0];
|
accountId1,
|
||||||
|
account2.email,
|
||||||
|
null
|
||||||
|
);
|
||||||
const chatId = await dc.rpc.createChatByContactId(accountId1, contactId);
|
const chatId = await dc.rpc.createChatByContactId(accountId1, contactId);
|
||||||
const eventPromise = waitForEvent(dc, "IncomingMsg", accountId2);
|
const eventPromise = Promise.race([
|
||||||
|
waitForEvent(dc, "MsgsChanged", accountId2),
|
||||||
|
waitForEvent(dc, "IncomingMsg", accountId2),
|
||||||
|
]);
|
||||||
|
|
||||||
await dc.rpc.miscSendTextMessage(accountId1, chatId, "Hello");
|
await dc.rpc.miscSendTextMessage(accountId1, chatId, "Hello");
|
||||||
const { chatId: chatIdOnAccountB } = await eventPromise;
|
const { chatId: chatIdOnAccountB } = await eventPromise;
|
||||||
@@ -98,20 +104,25 @@ describe("online tests", function () {
|
|||||||
expect(messageList).have.length(1);
|
expect(messageList).have.length(1);
|
||||||
const message = await dc.rpc.getMessage(accountId2, messageList[0]);
|
const message = await dc.rpc.getMessage(accountId2, messageList[0]);
|
||||||
expect(message.text).equal("Hello");
|
expect(message.text).equal("Hello");
|
||||||
expect(message.showPadlock).equal(true);
|
|
||||||
});
|
});
|
||||||
|
|
||||||
it("send and receive text message roundtrip", async function () {
|
it("send and receive text message roundtrip, encrypted on answer onwards", async function () {
|
||||||
if (!accountsConfigured) {
|
if (!accountsConfigured) {
|
||||||
this.skip();
|
this.skip();
|
||||||
}
|
}
|
||||||
this.timeout(10000);
|
this.timeout(10000);
|
||||||
|
|
||||||
// send message from A to B
|
// send message from A to B
|
||||||
const vcard = await dc.rpc.makeVcard(accountId2, [C.DC_CONTACT_ID_SELF]);
|
const contactId = await dc.rpc.createContact(
|
||||||
const contactId = (await dc.rpc.importVcardContents(accountId1, vcard))[0];
|
accountId1,
|
||||||
|
account2.email,
|
||||||
|
null
|
||||||
|
);
|
||||||
const chatId = await dc.rpc.createChatByContactId(accountId1, contactId);
|
const chatId = await dc.rpc.createChatByContactId(accountId1, contactId);
|
||||||
const eventPromise = waitForEvent(dc, "IncomingMsg", accountId2);
|
const eventPromise = Promise.race([
|
||||||
|
waitForEvent(dc, "MsgsChanged", accountId2),
|
||||||
|
waitForEvent(dc, "IncomingMsg", accountId2),
|
||||||
|
]);
|
||||||
dc.rpc.miscSendTextMessage(accountId1, chatId, "Hello2");
|
dc.rpc.miscSendTextMessage(accountId1, chatId, "Hello2");
|
||||||
// wait for message from A
|
// wait for message from A
|
||||||
console.log("wait for message from A");
|
console.log("wait for message from A");
|
||||||
@@ -132,7 +143,10 @@ describe("online tests", function () {
|
|||||||
);
|
);
|
||||||
expect(message.text).equal("Hello2");
|
expect(message.text).equal("Hello2");
|
||||||
// Send message back from B to A
|
// Send message back from B to A
|
||||||
const eventPromise2 = waitForEvent(dc, "IncomingMsg", accountId1);
|
const eventPromise2 = Promise.race([
|
||||||
|
waitForEvent(dc, "MsgsChanged", accountId1),
|
||||||
|
waitForEvent(dc, "IncomingMsg", accountId1),
|
||||||
|
]);
|
||||||
dc.rpc.miscSendTextMessage(accountId2, chatId, "super secret message");
|
dc.rpc.miscSendTextMessage(accountId2, chatId, "super secret message");
|
||||||
// Check if answer arrives at A and if it is encrypted
|
// Check if answer arrives at A and if it is encrypted
|
||||||
await eventPromise2;
|
await eventPromise2;
|
||||||
|
|||||||
@@ -15,6 +15,6 @@
|
|||||||
"noImplicitAny": true,
|
"noImplicitAny": true,
|
||||||
"isolatedModules": true
|
"isolatedModules": true
|
||||||
},
|
},
|
||||||
"include": ["*.ts", "test/*.ts"],
|
"include": ["*.ts", "example/*.ts", "test/*.ts"],
|
||||||
"compileOnSave": false
|
"compileOnSave": false
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -90,11 +90,6 @@ impl Ratelimit {
|
|||||||
pub fn until_can_send(&self) -> Duration {
|
pub fn until_can_send(&self) -> Duration {
|
||||||
self.until_can_send_at(SystemTime::now())
|
self.until_can_send_at(SystemTime::now())
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Returns minimum possible update interval in milliseconds.
|
|
||||||
pub fn update_interval(&self) -> usize {
|
|
||||||
(self.window.as_millis() as f64 / self.quota) as usize
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
@@ -107,7 +102,6 @@ mod tests {
|
|||||||
|
|
||||||
let mut ratelimit = Ratelimit::new_at(Duration::new(60, 0), 3.0, now);
|
let mut ratelimit = Ratelimit::new_at(Duration::new(60, 0), 3.0, now);
|
||||||
assert!(ratelimit.can_send_at(now));
|
assert!(ratelimit.can_send_at(now));
|
||||||
assert_eq!(ratelimit.update_interval(), 20_000);
|
|
||||||
|
|
||||||
// Send burst of 3 messages.
|
// Send burst of 3 messages.
|
||||||
ratelimit.send_at(now);
|
ratelimit.send_at(now);
|
||||||
|
|||||||
@@ -1,21 +1,20 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "deltachat-repl"
|
name = "deltachat-repl"
|
||||||
version = "1.159.4"
|
version = "1.140.0"
|
||||||
license = "MPL-2.0"
|
license = "MPL-2.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
repository = "https://github.com/chatmail/core"
|
repository = "https://github.com/deltachat/deltachat-core-rust"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow = { workspace = true }
|
ansi_term = "0.12.1"
|
||||||
deltachat = { workspace = true, features = ["internals"]}
|
anyhow = "1"
|
||||||
dirs = "6"
|
deltachat = { path = "..", features = ["internals"]}
|
||||||
log = { workspace = true }
|
dirs = "5"
|
||||||
nu-ansi-term = { workspace = true }
|
log = "0.4.21"
|
||||||
qr2term = "0.3.3"
|
rusqlite = "0.31"
|
||||||
rusqlite = { workspace = true }
|
rustyline = "14"
|
||||||
rustyline = "15"
|
tokio = { version = "1.37.0", features = ["fs", "rt-multi-thread", "macros"] }
|
||||||
tokio = { workspace = true, features = ["fs", "rt-multi-thread", "macros"] }
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
||||||
tracing-subscriber = { workspace = true, features = ["env-filter"] }
|
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["vendored"]
|
default = ["vendored"]
|
||||||
|
|||||||
@@ -22,7 +22,6 @@ use deltachat::mimeparser::SystemMessage;
|
|||||||
use deltachat::peer_channels::{send_webxdc_realtime_advertisement, send_webxdc_realtime_data};
|
use deltachat::peer_channels::{send_webxdc_realtime_advertisement, send_webxdc_realtime_data};
|
||||||
use deltachat::peerstate::*;
|
use deltachat::peerstate::*;
|
||||||
use deltachat::qr::*;
|
use deltachat::qr::*;
|
||||||
use deltachat::qr_code_generator::create_qr_svg;
|
|
||||||
use deltachat::reaction::send_reaction;
|
use deltachat::reaction::send_reaction;
|
||||||
use deltachat::receive_imf::*;
|
use deltachat::receive_imf::*;
|
||||||
use deltachat::sql;
|
use deltachat::sql;
|
||||||
@@ -92,7 +91,7 @@ async fn reset_tables(context: &Context, bits: i32) {
|
|||||||
context.emit_msgs_changed_without_ids();
|
context.emit_msgs_changed_without_ids();
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn poke_eml_file(context: &Context, filename: &Path) -> Result<()> {
|
async fn poke_eml_file(context: &Context, filename: impl AsRef<Path>) -> Result<()> {
|
||||||
let data = read_file(context, filename).await?;
|
let data = read_file(context, filename).await?;
|
||||||
|
|
||||||
if let Err(err) = receive_imf(context, &data, false).await {
|
if let Err(err) = receive_imf(context, &data, false).await {
|
||||||
@@ -126,7 +125,7 @@ async fn poke_spec(context: &Context, spec: Option<&str>) -> bool {
|
|||||||
real_spec = rs.unwrap();
|
real_spec = rs.unwrap();
|
||||||
}
|
}
|
||||||
if let Some(suffix) = get_filesuffix_lc(&real_spec) {
|
if let Some(suffix) = get_filesuffix_lc(&real_spec) {
|
||||||
if suffix == "eml" && poke_eml_file(context, Path::new(&real_spec)).await.is_ok() {
|
if suffix == "eml" && poke_eml_file(context, &real_spec).await.is_ok() {
|
||||||
read_cnt += 1
|
read_cnt += 1
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
@@ -140,10 +139,7 @@ async fn poke_spec(context: &Context, spec: Option<&str>) -> bool {
|
|||||||
if name.ends_with(".eml") {
|
if name.ends_with(".eml") {
|
||||||
let path_plus_name = format!("{}/{}", &real_spec, name);
|
let path_plus_name = format!("{}/{}", &real_spec, name);
|
||||||
println!("Import: {path_plus_name}");
|
println!("Import: {path_plus_name}");
|
||||||
if poke_eml_file(context, Path::new(&path_plus_name))
|
if poke_eml_file(context, path_plus_name).await.is_ok() {
|
||||||
.await
|
|
||||||
.is_ok()
|
|
||||||
{
|
|
||||||
read_cnt += 1
|
read_cnt += 1
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -343,6 +339,7 @@ pub async fn cmdline(context: Context, line: &str, chat_id: &mut ChatId) -> Resu
|
|||||||
receive-backup <qr>\n\
|
receive-backup <qr>\n\
|
||||||
export-keys\n\
|
export-keys\n\
|
||||||
import-keys\n\
|
import-keys\n\
|
||||||
|
export-setup\n\
|
||||||
poke [<eml-file>|<folder>|<addr> <key-file>]\n\
|
poke [<eml-file>|<folder>|<addr> <key-file>]\n\
|
||||||
reset <flags>\n\
|
reset <flags>\n\
|
||||||
stop\n\
|
stop\n\
|
||||||
@@ -359,7 +356,6 @@ pub async fn cmdline(context: Context, line: &str, chat_id: &mut ChatId) -> Resu
|
|||||||
configure\n\
|
configure\n\
|
||||||
connect\n\
|
connect\n\
|
||||||
disconnect\n\
|
disconnect\n\
|
||||||
fetch\n\
|
|
||||||
connectivity\n\
|
connectivity\n\
|
||||||
maybenetwork\n\
|
maybenetwork\n\
|
||||||
housekeeping\n\
|
housekeeping\n\
|
||||||
@@ -429,7 +425,6 @@ pub async fn cmdline(context: Context, line: &str, chat_id: &mut ChatId) -> Resu
|
|||||||
checkqr <qr-content>\n\
|
checkqr <qr-content>\n\
|
||||||
joinqr <qr-content>\n\
|
joinqr <qr-content>\n\
|
||||||
setqr <qr-content>\n\
|
setqr <qr-content>\n\
|
||||||
createqrsvg <qr-content>\n\
|
|
||||||
providerinfo <addr>\n\
|
providerinfo <addr>\n\
|
||||||
fileinfo <file>\n\
|
fileinfo <file>\n\
|
||||||
estimatedeletion <seconds>\n\
|
estimatedeletion <seconds>\n\
|
||||||
@@ -492,9 +487,8 @@ pub async fn cmdline(context: Context, line: &str, chat_id: &mut ChatId) -> Resu
|
|||||||
}
|
}
|
||||||
"send-backup" => {
|
"send-backup" => {
|
||||||
let provider = BackupProvider::prepare(&context).await?;
|
let provider = BackupProvider::prepare(&context).await?;
|
||||||
let qr = format_backup(&provider.qr())?;
|
let qr = provider.qr();
|
||||||
println!("QR code: {}", qr);
|
println!("QR code: {}", format_backup(&qr)?);
|
||||||
qr2term::print_qr(qr.as_str())?;
|
|
||||||
provider.await?;
|
provider.await?;
|
||||||
}
|
}
|
||||||
"receive-backup" => {
|
"receive-backup" => {
|
||||||
@@ -510,6 +504,17 @@ pub async fn cmdline(context: Context, line: &str, chat_id: &mut ChatId) -> Resu
|
|||||||
"import-keys" => {
|
"import-keys" => {
|
||||||
imex(&context, ImexMode::ImportSelfKeys, arg1.as_ref(), None).await?;
|
imex(&context, ImexMode::ImportSelfKeys, arg1.as_ref(), None).await?;
|
||||||
}
|
}
|
||||||
|
"export-setup" => {
|
||||||
|
let setup_code = create_setup_code(&context);
|
||||||
|
let file_name = blobdir.join("autocrypt-setup-message.html");
|
||||||
|
let file_content = render_setup_file(&context, &setup_code).await?;
|
||||||
|
fs::write(&file_name, file_content).await?;
|
||||||
|
println!(
|
||||||
|
"Setup message written to: {}\nSetup code: {}",
|
||||||
|
file_name.display(),
|
||||||
|
&setup_code,
|
||||||
|
);
|
||||||
|
}
|
||||||
"poke" => {
|
"poke" => {
|
||||||
ensure!(poke_spec(&context, Some(arg1)).await, "Poke failed");
|
ensure!(poke_spec(&context, Some(arg1)).await, "Poke failed");
|
||||||
}
|
}
|
||||||
@@ -942,7 +947,7 @@ pub async fn cmdline(context: Context, line: &str, chat_id: &mut ChatId) -> Resu
|
|||||||
} else {
|
} else {
|
||||||
Viewtype::File
|
Viewtype::File
|
||||||
});
|
});
|
||||||
msg.set_file_and_deduplicate(&context, Path::new(arg1), None, None)?;
|
msg.set_file(arg1, None);
|
||||||
msg.set_text(arg2.to_string());
|
msg.set_text(arg2.to_string());
|
||||||
chat::send_msg(&context, sel_chat.as_ref().unwrap().get_id(), &mut msg).await?;
|
chat::send_msg(&context, sel_chat.as_ref().unwrap().get_id(), &mut msg).await?;
|
||||||
}
|
}
|
||||||
@@ -972,7 +977,9 @@ pub async fn cmdline(context: Context, line: &str, chat_id: &mut ChatId) -> Resu
|
|||||||
"Arguments <msg-id> <json status update> expected"
|
"Arguments <msg-id> <json status update> expected"
|
||||||
);
|
);
|
||||||
let msg_id = MsgId::new(arg1.parse()?);
|
let msg_id = MsgId::new(arg1.parse()?);
|
||||||
context.send_webxdc_status_update(msg_id, arg2).await?;
|
context
|
||||||
|
.send_webxdc_status_update(msg_id, arg2, "this is a webxdc status update")
|
||||||
|
.await?;
|
||||||
}
|
}
|
||||||
"videochat" => {
|
"videochat" => {
|
||||||
ensure!(sel_chat.is_some(), "No chat selected.");
|
ensure!(sel_chat.is_some(), "No chat selected.");
|
||||||
@@ -1005,7 +1012,8 @@ pub async fn cmdline(context: Context, line: &str, chat_id: &mut ChatId) -> Resu
|
|||||||
ensure!(sel_chat.is_some(), "No chat selected.");
|
ensure!(sel_chat.is_some(), "No chat selected.");
|
||||||
|
|
||||||
if !arg1.is_empty() {
|
if !arg1.is_empty() {
|
||||||
let mut draft = Message::new_text(arg1.to_string());
|
let mut draft = Message::new(Viewtype::Text);
|
||||||
|
draft.set_text(arg1.to_string());
|
||||||
sel_chat
|
sel_chat
|
||||||
.as_ref()
|
.as_ref()
|
||||||
.unwrap()
|
.unwrap()
|
||||||
@@ -1028,7 +1036,8 @@ pub async fn cmdline(context: Context, line: &str, chat_id: &mut ChatId) -> Resu
|
|||||||
!arg1.is_empty(),
|
!arg1.is_empty(),
|
||||||
"Please specify text to add as device message."
|
"Please specify text to add as device message."
|
||||||
);
|
);
|
||||||
let mut msg = Message::new_text(arg1.to_string());
|
let mut msg = Message::new(Viewtype::Text);
|
||||||
|
msg.set_text(arg1.to_string());
|
||||||
chat::add_device_msg(&context, None, Some(&mut msg)).await?;
|
chat::add_device_msg(&context, None, Some(&mut msg)).await?;
|
||||||
}
|
}
|
||||||
"listmedia" => {
|
"listmedia" => {
|
||||||
@@ -1250,19 +1259,12 @@ pub async fn cmdline(context: Context, line: &str, chat_id: &mut ChatId) -> Resu
|
|||||||
Err(err) => println!("Cannot set config from QR code: {err:?}"),
|
Err(err) => println!("Cannot set config from QR code: {err:?}"),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
"createqrsvg" => {
|
|
||||||
ensure!(!arg1.is_empty(), "Argument <qr-content> missing.");
|
|
||||||
let svg = create_qr_svg(arg1)?;
|
|
||||||
let file = dirs::home_dir().unwrap_or_default().join("qr.svg");
|
|
||||||
fs::write(&file, svg).await?;
|
|
||||||
println!("{file:#?} written.");
|
|
||||||
}
|
|
||||||
"providerinfo" => {
|
"providerinfo" => {
|
||||||
ensure!(!arg1.is_empty(), "Argument <addr> missing.");
|
ensure!(!arg1.is_empty(), "Argument <addr> missing.");
|
||||||
let proxy_enabled = context
|
let socks5_enabled = context
|
||||||
.get_config_bool(config::Config::ProxyEnabled)
|
.get_config_bool(config::Config::Socks5Enabled)
|
||||||
.await?;
|
.await?;
|
||||||
match provider::get_provider_info(&context, arg1, proxy_enabled).await {
|
match provider::get_provider_info(&context, arg1, socks5_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);
|
||||||
@@ -1281,7 +1283,7 @@ pub async fn cmdline(context: Context, line: &str, chat_id: &mut ChatId) -> Resu
|
|||||||
"fileinfo" => {
|
"fileinfo" => {
|
||||||
ensure!(!arg1.is_empty(), "Argument <file> missing.");
|
ensure!(!arg1.is_empty(), "Argument <file> missing.");
|
||||||
|
|
||||||
if let Ok(buf) = read_file(&context, Path::new(arg1)).await {
|
if let Ok(buf) = read_file(&context, &arg1).await {
|
||||||
let (width, height) = get_filemeta(&buf)?;
|
let (width, height) = get_filemeta(&buf)?;
|
||||||
println!("width={width}, height={height}");
|
println!("width={width}, height={height}");
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
@@ -9,7 +9,10 @@
|
|||||||
extern crate deltachat;
|
extern crate deltachat;
|
||||||
|
|
||||||
use std::borrow::Cow::{self, Borrowed, Owned};
|
use std::borrow::Cow::{self, Borrowed, Owned};
|
||||||
|
use std::io::{self, Write};
|
||||||
|
use std::process::Command;
|
||||||
|
|
||||||
|
use ansi_term::Color;
|
||||||
use anyhow::{bail, Error};
|
use anyhow::{bail, Error};
|
||||||
use deltachat::chat::ChatId;
|
use deltachat::chat::ChatId;
|
||||||
use deltachat::config;
|
use deltachat::config;
|
||||||
@@ -19,10 +22,9 @@ use deltachat::qr_code_generator::get_securejoin_qr_svg;
|
|||||||
use deltachat::securejoin::*;
|
use deltachat::securejoin::*;
|
||||||
use deltachat::EventType;
|
use deltachat::EventType;
|
||||||
use log::{error, info, warn};
|
use log::{error, info, warn};
|
||||||
use nu_ansi_term::Color;
|
|
||||||
use rustyline::completion::{Completer, FilenameCompleter, Pair};
|
use rustyline::completion::{Completer, FilenameCompleter, Pair};
|
||||||
use rustyline::error::ReadlineError;
|
use rustyline::error::ReadlineError;
|
||||||
use rustyline::highlight::{CmdKind as HighlightCmdKind, Highlighter, MatchingBracketHighlighter};
|
use rustyline::highlight::{Highlighter, MatchingBracketHighlighter};
|
||||||
use rustyline::hint::{Hinter, HistoryHinter};
|
use rustyline::hint::{Hinter, HistoryHinter};
|
||||||
use rustyline::validate::Validator;
|
use rustyline::validate::Validator;
|
||||||
use rustyline::{
|
use rustyline::{
|
||||||
@@ -150,7 +152,7 @@ impl Completer for DcHelper {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const IMEX_COMMANDS: [&str; 13] = [
|
const IMEX_COMMANDS: [&str; 14] = [
|
||||||
"initiate-key-transfer",
|
"initiate-key-transfer",
|
||||||
"get-setupcodebegin",
|
"get-setupcodebegin",
|
||||||
"continue-key-transfer",
|
"continue-key-transfer",
|
||||||
@@ -161,12 +163,13 @@ const IMEX_COMMANDS: [&str; 13] = [
|
|||||||
"receive-backup",
|
"receive-backup",
|
||||||
"export-keys",
|
"export-keys",
|
||||||
"import-keys",
|
"import-keys",
|
||||||
|
"export-setup",
|
||||||
"poke",
|
"poke",
|
||||||
"reset",
|
"reset",
|
||||||
"stop",
|
"stop",
|
||||||
];
|
];
|
||||||
|
|
||||||
const DB_COMMANDS: [&str; 11] = [
|
const DB_COMMANDS: [&str; 10] = [
|
||||||
"info",
|
"info",
|
||||||
"set",
|
"set",
|
||||||
"get",
|
"get",
|
||||||
@@ -174,7 +177,6 @@ const DB_COMMANDS: [&str; 11] = [
|
|||||||
"configure",
|
"configure",
|
||||||
"connect",
|
"connect",
|
||||||
"disconnect",
|
"disconnect",
|
||||||
"fetch",
|
|
||||||
"connectivity",
|
"connectivity",
|
||||||
"maybenetwork",
|
"maybenetwork",
|
||||||
"housekeeping",
|
"housekeeping",
|
||||||
@@ -240,13 +242,12 @@ const CONTACT_COMMANDS: [&str; 9] = [
|
|||||||
"unblock",
|
"unblock",
|
||||||
"listblocked",
|
"listblocked",
|
||||||
];
|
];
|
||||||
const MISC_COMMANDS: [&str; 12] = [
|
const MISC_COMMANDS: [&str; 11] = [
|
||||||
"getqr",
|
"getqr",
|
||||||
"getqrsvg",
|
"getqrsvg",
|
||||||
"getbadqr",
|
"getbadqr",
|
||||||
"checkqr",
|
"checkqr",
|
||||||
"joinqr",
|
"joinqr",
|
||||||
"createqrsvg",
|
|
||||||
"fileinfo",
|
"fileinfo",
|
||||||
"clear",
|
"clear",
|
||||||
"exit",
|
"exit",
|
||||||
@@ -298,8 +299,8 @@ impl Highlighter for DcHelper {
|
|||||||
self.highlighter.highlight(line, pos)
|
self.highlighter.highlight(line, pos)
|
||||||
}
|
}
|
||||||
|
|
||||||
fn highlight_char(&self, line: &str, pos: usize, kind: HighlightCmdKind) -> bool {
|
fn highlight_char(&self, line: &str, pos: usize, forced: bool) -> bool {
|
||||||
self.highlighter.highlight_char(line, pos, kind)
|
self.highlighter.highlight_char(line, pos, forced)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -323,7 +324,7 @@ async fn start(args: Vec<String>) -> Result<(), Error> {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
println!("Chatmail is awaiting your commands.");
|
println!("Delta Chat Core is awaiting your commands.");
|
||||||
|
|
||||||
let config = Config::builder()
|
let config = Config::builder()
|
||||||
.history_ignore_space(true)
|
.history_ignore_space(true)
|
||||||
@@ -417,9 +418,6 @@ async fn handle_cmd(
|
|||||||
"disconnect" => {
|
"disconnect" => {
|
||||||
ctx.stop_io().await;
|
ctx.stop_io().await;
|
||||||
}
|
}
|
||||||
"fetch" => {
|
|
||||||
ctx.background_fetch().await?;
|
|
||||||
}
|
|
||||||
"configure" => {
|
"configure" => {
|
||||||
ctx.configure().await?;
|
ctx.configure().await?;
|
||||||
}
|
}
|
||||||
@@ -449,7 +447,12 @@ async fn handle_cmd(
|
|||||||
qr.replace_range(12..22, "0000000000")
|
qr.replace_range(12..22, "0000000000")
|
||||||
}
|
}
|
||||||
println!("{qr}");
|
println!("{qr}");
|
||||||
qr2term::print_qr(qr.as_str())?;
|
let output = Command::new("qrencode")
|
||||||
|
.args(["-t", "ansiutf8", qr.as_str(), "-o", "-"])
|
||||||
|
.output()
|
||||||
|
.expect("failed to execute process");
|
||||||
|
io::stdout().write_all(&output.stdout).unwrap();
|
||||||
|
io::stderr().write_all(&output.stderr).unwrap();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
"getqrsvg" => {
|
"getqrsvg" => {
|
||||||
|
|||||||
@@ -25,8 +25,7 @@ $ pip install .
|
|||||||
## Testing
|
## Testing
|
||||||
|
|
||||||
1. Build `deltachat-rpc-server` with `cargo build -p deltachat-rpc-server`.
|
1. Build `deltachat-rpc-server` with `cargo build -p deltachat-rpc-server`.
|
||||||
2. Install tox `pip install -U tox`
|
2. Run `CHATMAIL_DOMAIN=nine.testrun.org PATH="../target/debug:$PATH" tox`.
|
||||||
3. Run `CHATMAIL_DOMAIN=nine.testrun.org PATH="../target/debug:$PATH" tox`.
|
|
||||||
|
|
||||||
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.
|
||||||
|
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "deltachat-rpc-client"
|
name = "deltachat-rpc-client"
|
||||||
version = "1.159.4"
|
version = "1.140.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",
|
||||||
@@ -23,7 +23,9 @@ classifiers = [
|
|||||||
"Topic :: Communications :: Email"
|
"Topic :: Communications :: Email"
|
||||||
]
|
]
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
requires-python = ">=3.8"
|
dependencies = [
|
||||||
|
"imap-tools",
|
||||||
|
]
|
||||||
|
|
||||||
[tool.setuptools.package-data]
|
[tool.setuptools.package-data]
|
||||||
deltachat_rpc_client = [
|
deltachat_rpc_client = [
|
||||||
@@ -70,11 +72,3 @@ line-length = 120
|
|||||||
|
|
||||||
[tool.isort]
|
[tool.isort]
|
||||||
profile = "black"
|
profile = "black"
|
||||||
|
|
||||||
[dependency-groups]
|
|
||||||
dev = [
|
|
||||||
"imap-tools",
|
|
||||||
"pytest",
|
|
||||||
"pytest-timeout",
|
|
||||||
"pytest-xdist",
|
|
||||||
]
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
"""Delta Chat JSON-RPC high-level API."""
|
"""Delta Chat JSON-RPC high-level API"""
|
||||||
|
|
||||||
from ._utils import AttrDict, run_bot_cli, run_client_cli
|
from ._utils import AttrDict, run_bot_cli, run_client_cli
|
||||||
from .account import Account
|
from .account import Account
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
import argparse
|
import argparse
|
||||||
import os
|
|
||||||
import re
|
import re
|
||||||
import sys
|
import sys
|
||||||
from threading import Thread
|
from threading import Thread
|
||||||
@@ -90,8 +89,8 @@ def _run_cli(
|
|||||||
help="accounts folder (default: current working directory)",
|
help="accounts folder (default: current working directory)",
|
||||||
nargs="?",
|
nargs="?",
|
||||||
)
|
)
|
||||||
parser.add_argument("--email", action="store", help="email address", default=os.getenv("DELTACHAT_EMAIL"))
|
parser.add_argument("--email", action="store", help="email address")
|
||||||
parser.add_argument("--password", action="store", help="password", default=os.getenv("DELTACHAT_PASSWORD"))
|
parser.add_argument("--password", action="store", help="password")
|
||||||
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:
|
||||||
@@ -115,7 +114,7 @@ def _run_cli(
|
|||||||
|
|
||||||
|
|
||||||
def extract_addr(text: str) -> str:
|
def extract_addr(text: str) -> str:
|
||||||
"""Extract email address from the given text."""
|
"""extract email address from the given text."""
|
||||||
match = re.match(r".*\((.+@.+)\)", text)
|
match = re.match(r".*\((.+@.+)\)", text)
|
||||||
if match:
|
if match:
|
||||||
text = match.group(1)
|
text = match.group(1)
|
||||||
@@ -124,7 +123,7 @@ def extract_addr(text: str) -> str:
|
|||||||
|
|
||||||
|
|
||||||
def parse_system_image_changed(text: str) -> Optional[Tuple[str, bool]]:
|
def parse_system_image_changed(text: str) -> Optional[Tuple[str, bool]]:
|
||||||
"""Return image changed/deleted info from parsing the given system message text."""
|
"""return image changed/deleted info from parsing the given system message text."""
|
||||||
text = text.lower()
|
text = text.lower()
|
||||||
match = re.match(r"group image (changed|deleted) by (.+).", text)
|
match = re.match(r"group image (changed|deleted) by (.+).", text)
|
||||||
if match:
|
if match:
|
||||||
@@ -143,7 +142,7 @@ def parse_system_title_changed(text: str) -> Optional[Tuple[str, str]]:
|
|||||||
|
|
||||||
|
|
||||||
def parse_system_add_remove(text: str) -> Optional[Tuple[str, str, str]]:
|
def parse_system_add_remove(text: str) -> Optional[Tuple[str, str, str]]:
|
||||||
"""Return add/remove info from parsing the given system message text.
|
"""return add/remove info from parsing the given system message text.
|
||||||
|
|
||||||
returns a (action, affected, actor) tuple.
|
returns a (action, affected, actor) tuple.
|
||||||
"""
|
"""
|
||||||
|
|||||||
@@ -1,5 +1,3 @@
|
|||||||
"""Account module."""
|
|
||||||
|
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
|
||||||
from dataclasses import dataclass
|
from dataclasses import dataclass
|
||||||
@@ -28,36 +26,18 @@ class Account:
|
|||||||
def _rpc(self) -> "Rpc":
|
def _rpc(self) -> "Rpc":
|
||||||
return self.manager.rpc
|
return self.manager.rpc
|
||||||
|
|
||||||
def wait_for_event(self, event_type=None) -> AttrDict:
|
def wait_for_event(self) -> AttrDict:
|
||||||
"""Wait until the next event and return it."""
|
"""Wait until the next event and return it."""
|
||||||
while True:
|
return AttrDict(self._rpc.wait_for_event(self.id))
|
||||||
next_event = AttrDict(self._rpc.wait_for_event(self.id))
|
|
||||||
if event_type is None or next_event.kind == event_type:
|
|
||||||
return next_event
|
|
||||||
|
|
||||||
def clear_all_events(self):
|
def clear_all_events(self):
|
||||||
"""Remove all queued-up events for a given account.
|
"""Removes all queued-up events for a given account. Useful for tests."""
|
||||||
|
|
||||||
Useful for tests.
|
|
||||||
"""
|
|
||||||
self._rpc.clear_all_events(self.id)
|
self._rpc.clear_all_events(self.id)
|
||||||
|
|
||||||
def remove(self) -> None:
|
def remove(self) -> None:
|
||||||
"""Remove the account."""
|
"""Remove the account."""
|
||||||
self._rpc.remove_account(self.id)
|
self._rpc.remove_account(self.id)
|
||||||
|
|
||||||
def clone(self) -> "Account":
|
|
||||||
"""Clone given account.
|
|
||||||
|
|
||||||
This uses backup-transfer via iroh, i.e. the 'Add second device' feature.
|
|
||||||
"""
|
|
||||||
future = self._rpc.provide_backup.future(self.id)
|
|
||||||
qr = self._rpc.get_backup_qr(self.id)
|
|
||||||
new_account = self.manager.add_account()
|
|
||||||
new_account._rpc.get_backup(new_account.id, qr)
|
|
||||||
future()
|
|
||||||
return new_account
|
|
||||||
|
|
||||||
def start_io(self) -> None:
|
def start_io(self) -> None:
|
||||||
"""Start the account I/O."""
|
"""Start the account I/O."""
|
||||||
self._rpc.start_io(self.id)
|
self._rpc.start_io(self.id)
|
||||||
@@ -87,7 +67,7 @@ class Account:
|
|||||||
return self._rpc.get_config(self.id, key)
|
return self._rpc.get_config(self.id, key)
|
||||||
|
|
||||||
def update_config(self, **kwargs) -> None:
|
def update_config(self, **kwargs) -> None:
|
||||||
"""Update config values."""
|
"""update config values."""
|
||||||
for key, value in kwargs.items():
|
for key, value in kwargs.items():
|
||||||
self.set_config(key, value)
|
self.set_config(key, value)
|
||||||
|
|
||||||
@@ -103,15 +83,9 @@ class Account:
|
|||||||
return self.get_config("selfavatar")
|
return self.get_config("selfavatar")
|
||||||
|
|
||||||
def check_qr(self, qr):
|
def check_qr(self, qr):
|
||||||
"""Parse QR code contents.
|
|
||||||
|
|
||||||
This function takes the raw text scanned
|
|
||||||
and checks what can be done with it.
|
|
||||||
"""
|
|
||||||
return self._rpc.check_qr(self.id, qr)
|
return self._rpc.check_qr(self.id, qr)
|
||||||
|
|
||||||
def set_config_from_qr(self, qr: str):
|
def set_config_from_qr(self, qr: str):
|
||||||
"""Set configuration values from a QR code."""
|
|
||||||
self._rpc.set_config_from_qr(self.id, qr)
|
self._rpc.set_config_from_qr(self.id, qr)
|
||||||
|
|
||||||
@futuremethod
|
@futuremethod
|
||||||
@@ -119,23 +93,15 @@ class Account:
|
|||||||
"""Configure an account."""
|
"""Configure an account."""
|
||||||
yield self._rpc.configure.future(self.id)
|
yield self._rpc.configure.future(self.id)
|
||||||
|
|
||||||
@futuremethod
|
|
||||||
def add_or_update_transport(self, params):
|
|
||||||
"""Add a new transport."""
|
|
||||||
yield self._rpc.add_or_update_transport.future(self.id, params)
|
|
||||||
|
|
||||||
@futuremethod
|
|
||||||
def list_transports(self):
|
|
||||||
"""Return the list of all email accounts that are used as a transport in the current profile."""
|
|
||||||
transports = yield self._rpc.list_transports.future(self.id)
|
|
||||||
return transports
|
|
||||||
|
|
||||||
def bring_online(self):
|
def bring_online(self):
|
||||||
"""Start I/O and wait until IMAP becomes IDLE."""
|
"""Start I/O and wait until IMAP becomes IDLE."""
|
||||||
self.start_io()
|
self.start_io()
|
||||||
self.wait_for_event(EventType.IMAP_INBOX_IDLE)
|
while True:
|
||||||
|
event = self.wait_for_event()
|
||||||
|
if event.kind == EventType.IMAP_INBOX_IDLE:
|
||||||
|
break
|
||||||
|
|
||||||
def create_contact(self, obj: Union[int, str, Contact, "Account"], name: Optional[str] = None) -> Contact:
|
def create_contact(self, obj: Union[int, str, Contact], name: Optional[str] = None) -> Contact:
|
||||||
"""Create a new Contact or return an existing one.
|
"""Create a new Contact or return an existing one.
|
||||||
|
|
||||||
Calling this method will always result in the same
|
Calling this method will always result in the same
|
||||||
@@ -143,42 +109,19 @@ class Account:
|
|||||||
with that e-mail address, it is unblocked and its display
|
with that e-mail address, it is unblocked and its display
|
||||||
name is updated if specified.
|
name is updated if specified.
|
||||||
|
|
||||||
:param obj: email-address, contact id or account.
|
:param obj: email-address or contact id.
|
||||||
:param name: (optional) display name for this contact.
|
:param name: (optional) display name for this contact.
|
||||||
"""
|
"""
|
||||||
if isinstance(obj, Account):
|
|
||||||
vcard = obj.self_contact.make_vcard()
|
|
||||||
[contact] = self.import_vcard(vcard)
|
|
||||||
if name:
|
|
||||||
contact.set_name(name)
|
|
||||||
return contact
|
|
||||||
if isinstance(obj, int):
|
if isinstance(obj, int):
|
||||||
obj = Contact(self, obj)
|
obj = Contact(self, obj)
|
||||||
if isinstance(obj, Contact):
|
if isinstance(obj, Contact):
|
||||||
obj = obj.get_snapshot().address
|
obj = obj.get_snapshot().address
|
||||||
return Contact(self, self._rpc.create_contact(self.id, obj, name))
|
return Contact(self, self._rpc.create_contact(self.id, obj, name))
|
||||||
|
|
||||||
def make_vcard(self, contacts: list[Contact]) -> str:
|
|
||||||
"""Create vCard with the given contacts."""
|
|
||||||
assert all(contact.account == self for contact in contacts)
|
|
||||||
contact_ids = [contact.id for contact in contacts]
|
|
||||||
return self._rpc.make_vcard(self.id, contact_ids)
|
|
||||||
|
|
||||||
def import_vcard(self, vcard: str) -> list[Contact]:
|
|
||||||
"""Import vCard.
|
|
||||||
|
|
||||||
Return created or modified contacts in the order they appear in vCard.
|
|
||||||
"""
|
|
||||||
contact_ids = self._rpc.import_vcard_contents(self.id, vcard)
|
|
||||||
return [Contact(self, contact_id) for contact_id in contact_ids]
|
|
||||||
|
|
||||||
def create_chat(self, account: "Account") -> Chat:
|
def create_chat(self, account: "Account") -> Chat:
|
||||||
"""Create a 1:1 chat with another account."""
|
addr = account.get_config("addr")
|
||||||
return self.create_contact(account).create_chat()
|
contact = self.create_contact(addr)
|
||||||
|
return contact.create_chat()
|
||||||
def get_device_chat(self) -> Chat:
|
|
||||||
"""Return device chat."""
|
|
||||||
return self.device_contact.create_chat()
|
|
||||||
|
|
||||||
def get_contact_by_id(self, contact_id: int) -> Contact:
|
def get_contact_by_id(self, contact_id: int) -> Contact:
|
||||||
"""Return Contact instance for the given contact ID."""
|
"""Return Contact instance for the given contact ID."""
|
||||||
@@ -237,14 +180,9 @@ class Account:
|
|||||||
|
|
||||||
@property
|
@property
|
||||||
def self_contact(self) -> Contact:
|
def self_contact(self) -> Contact:
|
||||||
"""Account's identity as a Contact."""
|
"""This account's identity as a Contact."""
|
||||||
return Contact(self, SpecialContactId.SELF)
|
return Contact(self, SpecialContactId.SELF)
|
||||||
|
|
||||||
@property
|
|
||||||
def device_contact(self) -> Chat:
|
|
||||||
"""Account's device contact."""
|
|
||||||
return Contact(self, SpecialContactId.DEVICE)
|
|
||||||
|
|
||||||
def get_chatlist(
|
def get_chatlist(
|
||||||
self,
|
self,
|
||||||
query: Optional[str] = None,
|
query: Optional[str] = None,
|
||||||
@@ -300,7 +238,8 @@ class Account:
|
|||||||
return Chat(self, chat_id)
|
return Chat(self, chat_id)
|
||||||
|
|
||||||
def secure_join(self, qrdata: str) -> Chat:
|
def secure_join(self, qrdata: str) -> Chat:
|
||||||
"""Continue a Setup-Contact or Verified-Group-Invite protocol started on another device.
|
"""Continue a Setup-Contact or Verified-Group-Invite protocol started on
|
||||||
|
another device.
|
||||||
|
|
||||||
The function returns immediately and the handshake runs in background, sending
|
The function returns immediately and the handshake runs in background, sending
|
||||||
and receiving several messages.
|
and receiving several messages.
|
||||||
@@ -311,16 +250,12 @@ class Account:
|
|||||||
"""
|
"""
|
||||||
return Chat(self, self._rpc.secure_join(self.id, qrdata))
|
return Chat(self, self._rpc.secure_join(self.id, qrdata))
|
||||||
|
|
||||||
def get_qr_code(self) -> str:
|
def get_qr_code(self) -> tuple[str, str]:
|
||||||
"""Get Setup-Contact QR Code text.
|
"""Get Setup-Contact QR Code text and SVG data.
|
||||||
|
|
||||||
This data needs to be transferred to another Delta Chat account
|
this data needs to be transferred to another Delta Chat account
|
||||||
in a second channel, typically used by mobiles with QRcode-show + scan UX.
|
in a second channel, typically used by mobiles with QRcode-show + scan UX.
|
||||||
"""
|
"""
|
||||||
return self._rpc.get_chat_securejoin_qr_code(self.id, None)
|
|
||||||
|
|
||||||
def get_qr_code_svg(self) -> tuple[str, str]:
|
|
||||||
"""Get Setup-Contact QR code text and SVG."""
|
|
||||||
return self._rpc.get_chat_securejoin_qr_code_svg(self.id, None)
|
return self._rpc.get_chat_securejoin_qr_code_svg(self.id, None)
|
||||||
|
|
||||||
def get_message_by_id(self, msg_id: int) -> Message:
|
def get_message_by_id(self, msg_id: int) -> Message:
|
||||||
@@ -357,40 +292,34 @@ class Account:
|
|||||||
|
|
||||||
def wait_for_incoming_msg_event(self):
|
def wait_for_incoming_msg_event(self):
|
||||||
"""Wait for incoming message event and return it."""
|
"""Wait for incoming message event and return it."""
|
||||||
return self.wait_for_event(EventType.INCOMING_MSG)
|
while True:
|
||||||
|
event = self.wait_for_event()
|
||||||
def wait_for_msgs_changed_event(self):
|
if event.kind == EventType.INCOMING_MSG:
|
||||||
"""Wait for messages changed event and return it."""
|
return event
|
||||||
return self.wait_for_event(EventType.MSGS_CHANGED)
|
|
||||||
|
|
||||||
def wait_for_msgs_noticed_event(self):
|
|
||||||
"""Wait for messages noticed event and return it."""
|
|
||||||
return self.wait_for_event(EventType.MSGS_NOTICED)
|
|
||||||
|
|
||||||
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.get_message_by_id(self.wait_for_incoming_msg_event().msg_id)
|
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."""
|
|
||||||
while True:
|
while True:
|
||||||
event = self.wait_for_event()
|
event = self.wait_for_event()
|
||||||
if event["kind"] == "SecurejoinInviterProgress" and event["progress"] == 1000:
|
if event["kind"] == "SecurejoinInviterProgress" and event["progress"] == 1000:
|
||||||
break
|
break
|
||||||
|
|
||||||
def wait_for_securejoin_joiner_success(self):
|
def wait_for_securejoin_joiner_success(self):
|
||||||
"""Wait until SecureJoin process finishes successfully on the joiner side."""
|
|
||||||
while True:
|
while True:
|
||||||
event = self.wait_for_event()
|
event = self.wait_for_event()
|
||||||
if event["kind"] == "SecurejoinJoinerProgress" and event["progress"] == 1000:
|
if event["kind"] == "SecurejoinJoinerProgress" and event["progress"] == 1000:
|
||||||
break
|
break
|
||||||
|
|
||||||
def wait_for_reactions_changed(self):
|
def wait_for_reactions_changed(self):
|
||||||
"""Wait for reaction change event."""
|
while True:
|
||||||
return self.wait_for_event(EventType.REACTIONS_CHANGED)
|
event = self.wait_for_event()
|
||||||
|
if event.kind == EventType.REACTIONS_CHANGED:
|
||||||
|
return event
|
||||||
|
|
||||||
def get_fresh_messages_in_arrival_order(self) -> list[Message]:
|
def get_fresh_messages_in_arrival_order(self) -> list[Message]:
|
||||||
"""Return fresh messages list sorted in the order of their arrival, with ascending IDs."""
|
"""Return fresh messages list sorted in the order of their arrival, with ascending IDs."""
|
||||||
@@ -419,7 +348,3 @@ class Account:
|
|||||||
"""Import keys."""
|
"""Import keys."""
|
||||||
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)
|
|
||||||
|
|||||||
@@ -1,5 +1,3 @@
|
|||||||
"""Chat module."""
|
|
||||||
|
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
|
||||||
import calendar
|
import calendar
|
||||||
@@ -91,19 +89,14 @@ class Chat:
|
|||||||
def set_ephemeral_timer(self, timer: int) -> None:
|
def set_ephemeral_timer(self, timer: int) -> None:
|
||||||
"""Set ephemeral timer of this chat in seconds.
|
"""Set ephemeral timer of this chat in seconds.
|
||||||
|
|
||||||
0 means the timer is disabled, use 1 for immediate deletion.
|
0 means the timer is disabled, use 1 for immediate deletion."""
|
||||||
"""
|
|
||||||
self._rpc.set_chat_ephemeral_timer(self.account.id, self.id, timer)
|
self._rpc.set_chat_ephemeral_timer(self.account.id, self.id, timer)
|
||||||
|
|
||||||
def get_encryption_info(self) -> str:
|
def get_encryption_info(self) -> str:
|
||||||
"""Return encryption info for this chat."""
|
"""Return encryption info for this chat."""
|
||||||
return self._rpc.get_chat_encryption_info(self.account.id, self.id)
|
return self._rpc.get_chat_encryption_info(self.account.id, self.id)
|
||||||
|
|
||||||
def get_qr_code(self) -> str:
|
def get_qr_code(self) -> tuple[str, str]:
|
||||||
"""Get Join-Group QR code text."""
|
|
||||||
return self._rpc.get_chat_securejoin_qr_code(self.account.id, self.id)
|
|
||||||
|
|
||||||
def get_qr_code_svg(self) -> tuple[str, str]:
|
|
||||||
"""Get Join-Group QR code text and SVG data."""
|
"""Get Join-Group QR code text and SVG data."""
|
||||||
return self._rpc.get_chat_securejoin_qr_code_svg(self.account.id, self.id)
|
return self._rpc.get_chat_securejoin_qr_code_svg(self.account.id, self.id)
|
||||||
|
|
||||||
@@ -127,7 +120,6 @@ class Chat:
|
|||||||
html: Optional[str] = None,
|
html: Optional[str] = None,
|
||||||
viewtype: Optional[ViewType] = None,
|
viewtype: Optional[ViewType] = None,
|
||||||
file: Optional[str] = None,
|
file: Optional[str] = None,
|
||||||
filename: Optional[str] = None,
|
|
||||||
location: Optional[tuple[float, float]] = None,
|
location: Optional[tuple[float, float]] = None,
|
||||||
override_sender_name: Optional[str] = None,
|
override_sender_name: Optional[str] = None,
|
||||||
quoted_msg: Optional[Union[int, Message]] = None,
|
quoted_msg: Optional[Union[int, Message]] = None,
|
||||||
@@ -141,7 +133,6 @@ class Chat:
|
|||||||
"html": html,
|
"html": html,
|
||||||
"viewtype": viewtype,
|
"viewtype": viewtype,
|
||||||
"file": file,
|
"file": file,
|
||||||
"filename": filename,
|
|
||||||
"location": location,
|
"location": location,
|
||||||
"overrideSenderName": override_sender_name,
|
"overrideSenderName": override_sender_name,
|
||||||
"quotedMessageId": quoted_msg,
|
"quotedMessageId": quoted_msg,
|
||||||
@@ -177,14 +168,13 @@ class Chat:
|
|||||||
self,
|
self,
|
||||||
text: Optional[str] = None,
|
text: Optional[str] = None,
|
||||||
file: Optional[str] = None,
|
file: Optional[str] = None,
|
||||||
filename: Optional[str] = None,
|
|
||||||
quoted_msg: Optional[int] = None,
|
quoted_msg: Optional[int] = None,
|
||||||
viewtype: Optional[str] = None,
|
viewtype: Optional[str] = None,
|
||||||
) -> None:
|
) -> None:
|
||||||
"""Set draft message."""
|
"""Set draft message."""
|
||||||
if isinstance(quoted_msg, Message):
|
if isinstance(quoted_msg, Message):
|
||||||
quoted_msg = quoted_msg.id
|
quoted_msg = quoted_msg.id
|
||||||
self._rpc.misc_set_draft(self.account.id, self.id, text, file, filename, quoted_msg, viewtype)
|
self._rpc.misc_set_draft(self.account.id, self.id, text, file, quoted_msg, viewtype)
|
||||||
|
|
||||||
def remove_draft(self) -> None:
|
def remove_draft(self) -> None:
|
||||||
"""Remove draft message."""
|
"""Remove draft message."""
|
||||||
@@ -202,12 +192,12 @@ class Chat:
|
|||||||
return snapshot
|
return snapshot
|
||||||
|
|
||||||
def get_messages(self, info_only: bool = False, 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, info_only, 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:
|
||||||
"""Get number of fresh messages in this chat."""
|
"""Get number of fresh messages in this chat"""
|
||||||
return self._rpc.get_fresh_msg_cnt(self.account.id, self.id)
|
return self._rpc.get_fresh_msg_cnt(self.account.id, self.id)
|
||||||
|
|
||||||
def mark_noticed(self) -> None:
|
def mark_noticed(self) -> None:
|
||||||
@@ -244,11 +234,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 get_past_contacts(self) -> list[Contact]:
|
|
||||||
"""Get past contacts for this chat."""
|
|
||||||
past_contacts = self._rpc.get_past_chat_contacts(self.account.id, self.id)
|
|
||||||
return [Contact(self.account, contact_id) for contact_id in past_contacts]
|
|
||||||
|
|
||||||
def set_image(self, path: str) -> None:
|
def set_image(self, path: str) -> None:
|
||||||
"""Set profile image of this chat.
|
"""Set profile image of this chat.
|
||||||
|
|
||||||
|
|||||||
@@ -48,7 +48,6 @@ class Client:
|
|||||||
self.add_hooks(hooks or [])
|
self.add_hooks(hooks or [])
|
||||||
|
|
||||||
def add_hooks(self, hooks: Iterable[tuple[Callable, Union[type, EventFilter]]]) -> None:
|
def add_hooks(self, hooks: Iterable[tuple[Callable, Union[type, EventFilter]]]) -> None:
|
||||||
"""Register multiple hooks."""
|
|
||||||
for hook, event in hooks:
|
for hook, event in hooks:
|
||||||
self.add_hook(hook, event)
|
self.add_hook(hook, event)
|
||||||
|
|
||||||
@@ -78,11 +77,9 @@ class Client:
|
|||||||
self._hooks.get(type(event), set()).remove((hook, event))
|
self._hooks.get(type(event), set()).remove((hook, event))
|
||||||
|
|
||||||
def is_configured(self) -> bool:
|
def is_configured(self) -> bool:
|
||||||
"""Return True if the client is configured."""
|
|
||||||
return self.account.is_configured()
|
return self.account.is_configured()
|
||||||
|
|
||||||
def configure(self, email: str, password: str, **kwargs) -> None:
|
def configure(self, email: str, password: str, **kwargs) -> None:
|
||||||
"""Configure the client."""
|
|
||||||
self.account.set_config("addr", email)
|
self.account.set_config("addr", email)
|
||||||
self.account.set_config("mail_pw", password)
|
self.account.set_config("mail_pw", password)
|
||||||
for key, value in kwargs.items():
|
for key, value in kwargs.items():
|
||||||
@@ -201,6 +198,5 @@ class Bot(Client):
|
|||||||
"""Simple bot implementation that listens to events of a single account."""
|
"""Simple bot implementation that listens to events of a single account."""
|
||||||
|
|
||||||
def configure(self, email: str, password: str, **kwargs) -> None:
|
def configure(self, email: str, password: str, **kwargs) -> None:
|
||||||
"""Configure the bot."""
|
|
||||||
kwargs.setdefault("bot", "1")
|
kwargs.setdefault("bot", "1")
|
||||||
super().configure(email, password, **kwargs)
|
super().configure(email, password, **kwargs)
|
||||||
|
|||||||
@@ -1,20 +1,14 @@
|
|||||||
"""Constants module."""
|
|
||||||
|
|
||||||
from enum import Enum, IntEnum
|
from enum import Enum, IntEnum
|
||||||
|
|
||||||
COMMAND_PREFIX = "/"
|
COMMAND_PREFIX = "/"
|
||||||
|
|
||||||
|
|
||||||
class ContactFlag(IntEnum):
|
class ContactFlag(IntEnum):
|
||||||
"""Bit flags for get_contacts() method."""
|
|
||||||
|
|
||||||
VERIFIED_ONLY = 0x01
|
VERIFIED_ONLY = 0x01
|
||||||
ADD_SELF = 0x02
|
ADD_SELF = 0x02
|
||||||
|
|
||||||
|
|
||||||
class ChatlistFlag(IntEnum):
|
class ChatlistFlag(IntEnum):
|
||||||
"""Bit flags for get_chatlist() method."""
|
|
||||||
|
|
||||||
ARCHIVED_ONLY = 0x01
|
ARCHIVED_ONLY = 0x01
|
||||||
NO_SPECIALS = 0x02
|
NO_SPECIALS = 0x02
|
||||||
ADD_ALLDONE_HINT = 0x04
|
ADD_ALLDONE_HINT = 0x04
|
||||||
@@ -22,8 +16,6 @@ class ChatlistFlag(IntEnum):
|
|||||||
|
|
||||||
|
|
||||||
class SpecialContactId(IntEnum):
|
class SpecialContactId(IntEnum):
|
||||||
"""Special contact IDs."""
|
|
||||||
|
|
||||||
SELF = 1
|
SELF = 1
|
||||||
INFO = 2 # centered messages as "member added", used in all chats
|
INFO = 2 # centered messages as "member added", used in all chats
|
||||||
DEVICE = 5 # messages "update info" in the device-chat
|
DEVICE = 5 # messages "update info" in the device-chat
|
||||||
@@ -31,7 +23,7 @@ class SpecialContactId(IntEnum):
|
|||||||
|
|
||||||
|
|
||||||
class EventType(str, Enum):
|
class EventType(str, Enum):
|
||||||
"""Core event types."""
|
"""Core event types"""
|
||||||
|
|
||||||
INFO = "Info"
|
INFO = "Info"
|
||||||
SMTP_CONNECTED = "SmtpConnected"
|
SMTP_CONNECTED = "SmtpConnected"
|
||||||
@@ -49,14 +41,12 @@ class EventType(str, Enum):
|
|||||||
REACTIONS_CHANGED = "ReactionsChanged"
|
REACTIONS_CHANGED = "ReactionsChanged"
|
||||||
INCOMING_MSG = "IncomingMsg"
|
INCOMING_MSG = "IncomingMsg"
|
||||||
INCOMING_MSG_BUNCH = "IncomingMsgBunch"
|
INCOMING_MSG_BUNCH = "IncomingMsgBunch"
|
||||||
INCOMING_REACTION = "IncomingReaction"
|
|
||||||
MSGS_NOTICED = "MsgsNoticed"
|
MSGS_NOTICED = "MsgsNoticed"
|
||||||
MSG_DELIVERED = "MsgDelivered"
|
MSG_DELIVERED = "MsgDelivered"
|
||||||
MSG_FAILED = "MsgFailed"
|
MSG_FAILED = "MsgFailed"
|
||||||
MSG_READ = "MsgRead"
|
MSG_READ = "MsgRead"
|
||||||
MSG_DELETED = "MsgDeleted"
|
MSG_DELETED = "MsgDeleted"
|
||||||
CHAT_MODIFIED = "ChatModified"
|
CHAT_MODIFIED = "ChatModified"
|
||||||
CHAT_DELETED = "ChatDeleted"
|
|
||||||
CHAT_EPHEMERAL_TIMER_MODIFIED = "ChatEphemeralTimerModified"
|
CHAT_EPHEMERAL_TIMER_MODIFIED = "ChatEphemeralTimerModified"
|
||||||
CONTACTS_CHANGED = "ContactsChanged"
|
CONTACTS_CHANGED = "ContactsChanged"
|
||||||
LOCATION_CHANGED = "LocationChanged"
|
LOCATION_CHANGED = "LocationChanged"
|
||||||
@@ -71,15 +61,12 @@ class EventType(str, Enum):
|
|||||||
WEBXDC_INSTANCE_DELETED = "WebxdcInstanceDeleted"
|
WEBXDC_INSTANCE_DELETED = "WebxdcInstanceDeleted"
|
||||||
CHATLIST_CHANGED = "ChatlistChanged"
|
CHATLIST_CHANGED = "ChatlistChanged"
|
||||||
CHATLIST_ITEM_CHANGED = "ChatlistItemChanged"
|
CHATLIST_ITEM_CHANGED = "ChatlistItemChanged"
|
||||||
ACCOUNTS_CHANGED = "AccountsChanged"
|
|
||||||
ACCOUNTS_ITEM_CHANGED = "AccountsItemChanged"
|
|
||||||
CONFIG_SYNCED = "ConfigSynced"
|
CONFIG_SYNCED = "ConfigSynced"
|
||||||
WEBXDC_REALTIME_DATA = "WebxdcRealtimeData"
|
WEBXDC_REALTIME_DATA = "WebxdcRealtimeData"
|
||||||
WEBXDC_REALTIME_ADVERTISEMENT_RECEIVED = "WebxdcRealtimeAdvertisementReceived"
|
|
||||||
|
|
||||||
|
|
||||||
class ChatId(IntEnum):
|
class ChatId(IntEnum):
|
||||||
"""Special chat IDs."""
|
"""Special chat ids"""
|
||||||
|
|
||||||
TRASH = 3
|
TRASH = 3
|
||||||
ARCHIVED_LINK = 6
|
ARCHIVED_LINK = 6
|
||||||
@@ -88,7 +75,7 @@ class ChatId(IntEnum):
|
|||||||
|
|
||||||
|
|
||||||
class ChatType(IntEnum):
|
class ChatType(IntEnum):
|
||||||
"""Chat type."""
|
"""Chat types"""
|
||||||
|
|
||||||
UNDEFINED = 0
|
UNDEFINED = 0
|
||||||
SINGLE = 100
|
SINGLE = 100
|
||||||
@@ -98,7 +85,7 @@ class ChatType(IntEnum):
|
|||||||
|
|
||||||
|
|
||||||
class ChatVisibility(str, Enum):
|
class ChatVisibility(str, Enum):
|
||||||
"""Chat visibility types."""
|
"""Chat visibility types"""
|
||||||
|
|
||||||
NORMAL = "Normal"
|
NORMAL = "Normal"
|
||||||
ARCHIVED = "Archived"
|
ARCHIVED = "Archived"
|
||||||
@@ -106,7 +93,7 @@ class ChatVisibility(str, Enum):
|
|||||||
|
|
||||||
|
|
||||||
class DownloadState(str, Enum):
|
class DownloadState(str, Enum):
|
||||||
"""Message download state."""
|
"""Message download state"""
|
||||||
|
|
||||||
DONE = "Done"
|
DONE = "Done"
|
||||||
AVAILABLE = "Available"
|
AVAILABLE = "Available"
|
||||||
@@ -167,14 +154,14 @@ class MessageState(IntEnum):
|
|||||||
|
|
||||||
|
|
||||||
class MessageId(IntEnum):
|
class MessageId(IntEnum):
|
||||||
"""Special message IDs."""
|
"""Special message ids"""
|
||||||
|
|
||||||
DAYMARKER = 9
|
DAYMARKER = 9
|
||||||
LAST_SPECIAL = 9
|
LAST_SPECIAL = 9
|
||||||
|
|
||||||
|
|
||||||
class CertificateChecks(IntEnum):
|
class CertificateChecks(IntEnum):
|
||||||
"""Certificate checks mode."""
|
"""Certificate checks mode"""
|
||||||
|
|
||||||
AUTOMATIC = 0
|
AUTOMATIC = 0
|
||||||
STRICT = 1
|
STRICT = 1
|
||||||
@@ -182,7 +169,7 @@ class CertificateChecks(IntEnum):
|
|||||||
|
|
||||||
|
|
||||||
class Connectivity(IntEnum):
|
class Connectivity(IntEnum):
|
||||||
"""Connectivity states."""
|
"""Connectivity states"""
|
||||||
|
|
||||||
NOT_CONNECTED = 1000
|
NOT_CONNECTED = 1000
|
||||||
CONNECTING = 2000
|
CONNECTING = 2000
|
||||||
@@ -191,7 +178,7 @@ class Connectivity(IntEnum):
|
|||||||
|
|
||||||
|
|
||||||
class KeyGenType(IntEnum):
|
class KeyGenType(IntEnum):
|
||||||
"""Type of the key to generate."""
|
"""Type of the key to generate"""
|
||||||
|
|
||||||
DEFAULT = 0
|
DEFAULT = 0
|
||||||
RSA2048 = 1
|
RSA2048 = 1
|
||||||
@@ -201,21 +188,21 @@ class KeyGenType(IntEnum):
|
|||||||
|
|
||||||
# "Lp" means "login parameters"
|
# "Lp" means "login parameters"
|
||||||
class LpAuthFlag(IntEnum):
|
class LpAuthFlag(IntEnum):
|
||||||
"""Authorization flags."""
|
"""Authorization flags"""
|
||||||
|
|
||||||
OAUTH2 = 0x2
|
OAUTH2 = 0x2
|
||||||
NORMAL = 0x4
|
NORMAL = 0x4
|
||||||
|
|
||||||
|
|
||||||
class MediaQuality(IntEnum):
|
class MediaQuality(IntEnum):
|
||||||
"""Media quality setting."""
|
"""Media quality setting"""
|
||||||
|
|
||||||
BALANCED = 0
|
BALANCED = 0
|
||||||
WORSE = 1
|
WORSE = 1
|
||||||
|
|
||||||
|
|
||||||
class ProviderStatus(IntEnum):
|
class ProviderStatus(IntEnum):
|
||||||
"""Provider status according to manual testing."""
|
"""Provider status according to manual testing"""
|
||||||
|
|
||||||
OK = 1
|
OK = 1
|
||||||
PREPARATION = 2
|
PREPARATION = 2
|
||||||
@@ -223,7 +210,7 @@ class ProviderStatus(IntEnum):
|
|||||||
|
|
||||||
|
|
||||||
class PushNotifyState(IntEnum):
|
class PushNotifyState(IntEnum):
|
||||||
"""Push notifications state."""
|
"""Push notifications state"""
|
||||||
|
|
||||||
NOT_CONNECTED = 0
|
NOT_CONNECTED = 0
|
||||||
HEARTBEAT = 1
|
HEARTBEAT = 1
|
||||||
@@ -231,7 +218,7 @@ class PushNotifyState(IntEnum):
|
|||||||
|
|
||||||
|
|
||||||
class ShowEmails(IntEnum):
|
class ShowEmails(IntEnum):
|
||||||
"""Show emails mode."""
|
"""Show emails mode"""
|
||||||
|
|
||||||
OFF = 0
|
OFF = 0
|
||||||
ACCEPTED_CONTACTS = 1
|
ACCEPTED_CONTACTS = 1
|
||||||
@@ -239,7 +226,7 @@ class ShowEmails(IntEnum):
|
|||||||
|
|
||||||
|
|
||||||
class SocketSecurity(IntEnum):
|
class SocketSecurity(IntEnum):
|
||||||
"""Socket security."""
|
"""Socket security"""
|
||||||
|
|
||||||
AUTOMATIC = 0
|
AUTOMATIC = 0
|
||||||
SSL = 1
|
SSL = 1
|
||||||
@@ -248,7 +235,7 @@ class SocketSecurity(IntEnum):
|
|||||||
|
|
||||||
|
|
||||||
class VideochatType(IntEnum):
|
class VideochatType(IntEnum):
|
||||||
"""Video chat URL type."""
|
"""Video chat URL type"""
|
||||||
|
|
||||||
UNKNOWN = 0
|
UNKNOWN = 0
|
||||||
BASICWEBRTC = 1
|
BASICWEBRTC = 1
|
||||||
|
|||||||
@@ -1,5 +1,3 @@
|
|||||||
"""Contact module."""
|
|
||||||
|
|
||||||
from dataclasses import dataclass
|
from dataclasses import dataclass
|
||||||
from typing import TYPE_CHECKING
|
from typing import TYPE_CHECKING
|
||||||
|
|
||||||
@@ -13,7 +11,8 @@ if TYPE_CHECKING:
|
|||||||
|
|
||||||
@dataclass
|
@dataclass
|
||||||
class Contact:
|
class Contact:
|
||||||
"""Contact API.
|
"""
|
||||||
|
Contact API.
|
||||||
|
|
||||||
Essentially a wrapper for RPC, account ID and a contact ID.
|
Essentially a wrapper for RPC, account ID and a contact ID.
|
||||||
"""
|
"""
|
||||||
@@ -37,18 +36,13 @@ class Contact:
|
|||||||
"""Delete contact."""
|
"""Delete contact."""
|
||||||
self._rpc.delete_contact(self.account.id, self.id)
|
self._rpc.delete_contact(self.account.id, self.id)
|
||||||
|
|
||||||
def reset_encryption(self) -> None:
|
|
||||||
"""Reset contact encryption."""
|
|
||||||
self._rpc.reset_contact_encryption(self.account.id, self.id)
|
|
||||||
|
|
||||||
def set_name(self, name: str) -> None:
|
def set_name(self, name: str) -> None:
|
||||||
"""Change the name of this contact."""
|
"""Change the name of this contact."""
|
||||||
self._rpc.change_contact_name(self.account.id, self.id, name)
|
self._rpc.change_contact_name(self.account.id, self.id, name)
|
||||||
|
|
||||||
def get_encryption_info(self) -> str:
|
def get_encryption_info(self) -> str:
|
||||||
"""Get a multi-line encryption info.
|
"""Get a multi-line encryption info, containing your fingerprint and
|
||||||
|
the fingerprint of the contact.
|
||||||
Encryption info contains your fingerprint and the fingerprint of the contact.
|
|
||||||
"""
|
"""
|
||||||
return self._rpc.get_contact_encryption_info(self.account.id, self.id)
|
return self._rpc.get_contact_encryption_info(self.account.id, self.id)
|
||||||
|
|
||||||
@@ -68,5 +62,4 @@ class Contact:
|
|||||||
)
|
)
|
||||||
|
|
||||||
def make_vcard(self) -> str:
|
def make_vcard(self) -> str:
|
||||||
"""Make a vCard for the contact."""
|
return self._rpc.make_vcard(self.account.id, [self.id])
|
||||||
return self.account.make_vcard([self])
|
|
||||||
|
|||||||
@@ -1,5 +1,3 @@
|
|||||||
"""Account manager module."""
|
|
||||||
|
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
|
||||||
from typing import TYPE_CHECKING
|
from typing import TYPE_CHECKING
|
||||||
@@ -12,13 +10,12 @@ if TYPE_CHECKING:
|
|||||||
|
|
||||||
|
|
||||||
class DeltaChat:
|
class DeltaChat:
|
||||||
"""Delta Chat accounts manager.
|
"""
|
||||||
|
Delta Chat accounts manager.
|
||||||
This is the root of the object oriented API.
|
This is the root of the object oriented API.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def __init__(self, rpc: "Rpc") -> None:
|
def __init__(self, rpc: "Rpc") -> None:
|
||||||
"""Initialize account manager."""
|
|
||||||
self.rpc = rpc
|
self.rpc = rpc
|
||||||
|
|
||||||
def add_account(self) -> Account:
|
def add_account(self) -> Account:
|
||||||
@@ -40,7 +37,9 @@ class DeltaChat:
|
|||||||
self.rpc.stop_io_for_all_accounts()
|
self.rpc.stop_io_for_all_accounts()
|
||||||
|
|
||||||
def maybe_network(self) -> None:
|
def maybe_network(self) -> None:
|
||||||
"""Indicate that the network conditions might have changed."""
|
"""Indicate that the network likely has come back or just that the network
|
||||||
|
conditions might have changed.
|
||||||
|
"""
|
||||||
self.rpc.maybe_network()
|
self.rpc.maybe_network()
|
||||||
|
|
||||||
def get_system_info(self) -> AttrDict:
|
def get_system_info(self) -> AttrDict:
|
||||||
|
|||||||
@@ -1,3 +1,7 @@
|
|||||||
|
"""
|
||||||
|
Internal Python-level IMAP handling used by the tests.
|
||||||
|
"""
|
||||||
|
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
|
||||||
import imaplib
|
import imaplib
|
||||||
@@ -5,13 +9,18 @@ import io
|
|||||||
import pathlib
|
import pathlib
|
||||||
import ssl
|
import ssl
|
||||||
from contextlib import contextmanager
|
from contextlib import contextmanager
|
||||||
from typing import TYPE_CHECKING
|
|
||||||
|
|
||||||
import pytest
|
from imap_tools import (
|
||||||
from imap_tools import AND, Header, MailBox, MailMessage, MailMessageFlags, errors
|
AND,
|
||||||
|
Header,
|
||||||
|
MailBox,
|
||||||
|
MailBoxTls,
|
||||||
|
MailMessage,
|
||||||
|
MailMessageFlags,
|
||||||
|
errors,
|
||||||
|
)
|
||||||
|
|
||||||
if TYPE_CHECKING:
|
from . import Account, const
|
||||||
from deltachat_rpc_client import Account
|
|
||||||
|
|
||||||
FLAGS = b"FLAGS"
|
FLAGS = b"FLAGS"
|
||||||
FETCH = b"FETCH"
|
FETCH = b"FETCH"
|
||||||
@@ -19,8 +28,6 @@ ALL = "1:*"
|
|||||||
|
|
||||||
|
|
||||||
class DirectImap:
|
class DirectImap:
|
||||||
"""Internal Python-level IMAP handling."""
|
|
||||||
|
|
||||||
def __init__(self, account: Account) -> None:
|
def __init__(self, account: Account) -> None:
|
||||||
self.account = account
|
self.account = account
|
||||||
self.logid = account.get_config("displayname") or id(account)
|
self.logid = account.get_config("displayname") or id(account)
|
||||||
@@ -28,15 +35,28 @@ class DirectImap:
|
|||||||
self.connect()
|
self.connect()
|
||||||
|
|
||||||
def connect(self):
|
def connect(self):
|
||||||
# Assume the testing server supports TLS on port 993.
|
|
||||||
host = self.account.get_config("configured_mail_server")
|
host = self.account.get_config("configured_mail_server")
|
||||||
port = 993
|
port = int(self.account.get_config("configured_mail_port"))
|
||||||
|
security = int(self.account.get_config("configured_mail_security"))
|
||||||
|
|
||||||
user = self.account.get_config("addr")
|
user = self.account.get_config("addr")
|
||||||
host = user.rsplit("@")[-1]
|
|
||||||
pw = self.account.get_config("mail_pw")
|
pw = self.account.get_config("mail_pw")
|
||||||
|
|
||||||
self.conn = MailBox(host, port, ssl_context=ssl.create_default_context())
|
if security == const.SocketSecurity.PLAIN:
|
||||||
|
ssl_context = None
|
||||||
|
else:
|
||||||
|
ssl_context = ssl.create_default_context()
|
||||||
|
|
||||||
|
# don't check if certificate hostname doesn't match target hostname
|
||||||
|
ssl_context.check_hostname = False
|
||||||
|
|
||||||
|
# don't check if the certificate is trusted by a certificate authority
|
||||||
|
ssl_context.verify_mode = ssl.CERT_NONE
|
||||||
|
|
||||||
|
if security == const.SocketSecurity.STARTTLS:
|
||||||
|
self.conn = MailBoxTls(host, port, ssl_context=ssl_context)
|
||||||
|
elif security == const.SocketSecurity.PLAIN or security == const.SocketSecurity.SSL:
|
||||||
|
self.conn = MailBox(host, port, ssl_context=ssl_context)
|
||||||
self.conn.login(user, pw)
|
self.conn.login(user, pw)
|
||||||
|
|
||||||
self.select_folder("INBOX")
|
self.select_folder("INBOX")
|
||||||
@@ -204,8 +224,3 @@ class IdleManager:
|
|||||||
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."""
|
||||||
return self.direct_imap.conn.idle.stop()
|
return self.direct_imap.conn.idle.stop()
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture
|
|
||||||
def direct_imap():
|
|
||||||
return DirectImap
|
|
||||||
@@ -36,7 +36,7 @@ class EventFilter(ABC):
|
|||||||
|
|
||||||
@abstractmethod
|
@abstractmethod
|
||||||
def __hash__(self) -> int:
|
def __hash__(self) -> int:
|
||||||
"""Object's unique hash."""
|
"""Object's unique hash"""
|
||||||
|
|
||||||
@abstractmethod
|
@abstractmethod
|
||||||
def __eq__(self, other) -> bool:
|
def __eq__(self, other) -> bool:
|
||||||
@@ -52,7 +52,9 @@ class EventFilter(ABC):
|
|||||||
|
|
||||||
@abstractmethod
|
@abstractmethod
|
||||||
def filter(self, event):
|
def filter(self, event):
|
||||||
"""Return True-like value if the event passed the filter."""
|
"""Return True-like value if the event passed the filter and should be
|
||||||
|
used, or False-like value otherwise.
|
||||||
|
"""
|
||||||
|
|
||||||
|
|
||||||
class RawEvent(EventFilter):
|
class RawEvent(EventFilter):
|
||||||
@@ -80,17 +82,31 @@ class RawEvent(EventFilter):
|
|||||||
return False
|
return False
|
||||||
|
|
||||||
def filter(self, event: "AttrDict") -> bool:
|
def filter(self, event: "AttrDict") -> bool:
|
||||||
"""Filter an event.
|
|
||||||
|
|
||||||
Return true if the event should be processed.
|
|
||||||
"""
|
|
||||||
if self.types and event.kind not in self.types:
|
if self.types and event.kind not in self.types:
|
||||||
return False
|
return False
|
||||||
return self._call_func(event)
|
return self._call_func(event)
|
||||||
|
|
||||||
|
|
||||||
class NewMessage(EventFilter):
|
class NewMessage(EventFilter):
|
||||||
"""Matches whenever a new message arrives."""
|
"""Matches whenever a new message arrives.
|
||||||
|
|
||||||
|
Warning: registering a handler for this event will cause the messages
|
||||||
|
to be marked as read. Its usage is mainly intended for bots.
|
||||||
|
|
||||||
|
:param pattern: if set, this Pattern will be used to filter the message by its text
|
||||||
|
content.
|
||||||
|
:param command: If set, only match messages with the given command (ex. /help).
|
||||||
|
Setting this property implies `is_info==False`.
|
||||||
|
:param is_bot: If set to True only match messages sent by bots, if set to None
|
||||||
|
match messages from bots and users. If omitted or set to False
|
||||||
|
only messages from users will be matched.
|
||||||
|
:param is_info: If set to True only match info/system messages, if set to False
|
||||||
|
only match messages that are not info/system messages. If omitted
|
||||||
|
info/system messages as well as normal messages will be matched.
|
||||||
|
:param func: A Callable function that should accept the event as input
|
||||||
|
parameter, and return a bool value indicating whether the event
|
||||||
|
should be dispatched or not.
|
||||||
|
"""
|
||||||
|
|
||||||
def __init__(
|
def __init__(
|
||||||
self,
|
self,
|
||||||
@@ -105,25 +121,6 @@ class NewMessage(EventFilter):
|
|||||||
is_info: Optional[bool] = None,
|
is_info: Optional[bool] = None,
|
||||||
func: Optional[Callable[["AttrDict"], bool]] = None,
|
func: Optional[Callable[["AttrDict"], bool]] = None,
|
||||||
) -> None:
|
) -> None:
|
||||||
"""Initialize a new message filter.
|
|
||||||
|
|
||||||
Warning: registering a handler for this event will cause the messages
|
|
||||||
to be marked as read. Its usage is mainly intended for bots.
|
|
||||||
|
|
||||||
:param pattern: if set, this Pattern will be used to filter the message by its text
|
|
||||||
content.
|
|
||||||
:param command: If set, only match messages with the given command (ex. /help).
|
|
||||||
Setting this property implies `is_info==False`.
|
|
||||||
:param is_bot: If set to True only match messages sent by bots, if set to None
|
|
||||||
match messages from bots and users. If omitted or set to False
|
|
||||||
only messages from users will be matched.
|
|
||||||
:param is_info: If set to True only match info/system messages, if set to False
|
|
||||||
only match messages that are not info/system messages. If omitted
|
|
||||||
info/system messages as well as normal messages will be matched.
|
|
||||||
:param func: A Callable function that should accept the event as input
|
|
||||||
parameter, and return a bool value indicating whether the event
|
|
||||||
should be dispatched or not.
|
|
||||||
"""
|
|
||||||
super().__init__(func=func)
|
super().__init__(func=func)
|
||||||
self.is_bot = is_bot
|
self.is_bot = is_bot
|
||||||
self.is_info = is_info
|
self.is_info = is_info
|
||||||
@@ -162,7 +159,6 @@ class NewMessage(EventFilter):
|
|||||||
return False
|
return False
|
||||||
|
|
||||||
def filter(self, event: "AttrDict") -> bool:
|
def filter(self, event: "AttrDict") -> bool:
|
||||||
"""Return true if if the event is a new message event."""
|
|
||||||
if self.is_bot is not None and self.is_bot != event.message_snapshot.is_bot:
|
if self.is_bot is not None and self.is_bot != event.message_snapshot.is_bot:
|
||||||
return False
|
return False
|
||||||
if self.is_info is not None and self.is_info != event.message_snapshot.is_info:
|
if self.is_info is not None and self.is_info != event.message_snapshot.is_info:
|
||||||
@@ -203,7 +199,6 @@ class MemberListChanged(EventFilter):
|
|||||||
return False
|
return False
|
||||||
|
|
||||||
def filter(self, event: "AttrDict") -> bool:
|
def filter(self, event: "AttrDict") -> bool:
|
||||||
"""Return true if if the event is a member addition event."""
|
|
||||||
if self.added is not None and self.added != event.member_added:
|
if self.added is not None and self.added != event.member_added:
|
||||||
return False
|
return False
|
||||||
return self._call_func(event)
|
return self._call_func(event)
|
||||||
@@ -236,7 +231,6 @@ class GroupImageChanged(EventFilter):
|
|||||||
return False
|
return False
|
||||||
|
|
||||||
def filter(self, event: "AttrDict") -> bool:
|
def filter(self, event: "AttrDict") -> bool:
|
||||||
"""Return True if event is matched."""
|
|
||||||
if self.deleted is not None and self.deleted != event.image_deleted:
|
if self.deleted is not None and self.deleted != event.image_deleted:
|
||||||
return False
|
return False
|
||||||
return self._call_func(event)
|
return self._call_func(event)
|
||||||
@@ -262,12 +256,13 @@ class GroupNameChanged(EventFilter):
|
|||||||
return False
|
return False
|
||||||
|
|
||||||
def filter(self, event: "AttrDict") -> bool:
|
def filter(self, event: "AttrDict") -> bool:
|
||||||
"""Return True if event is matched."""
|
|
||||||
return self._call_func(event)
|
return self._call_func(event)
|
||||||
|
|
||||||
|
|
||||||
class HookCollection:
|
class HookCollection:
|
||||||
"""Helper class to collect event hooks that can later be added to a Delta Chat client."""
|
"""
|
||||||
|
Helper class to collect event hooks that can later be added to a Delta Chat client.
|
||||||
|
"""
|
||||||
|
|
||||||
def __init__(self) -> None:
|
def __init__(self) -> None:
|
||||||
self._hooks: set[tuple[Callable, Union[type, EventFilter]]] = set()
|
self._hooks: set[tuple[Callable, Union[type, EventFilter]]] = set()
|
||||||
|
|||||||
@@ -1,5 +1,3 @@
|
|||||||
"""Message module."""
|
|
||||||
|
|
||||||
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
|
||||||
@@ -47,7 +45,6 @@ class Message:
|
|||||||
return None
|
return None
|
||||||
|
|
||||||
def get_sender_contact(self) -> Contact:
|
def get_sender_contact(self) -> Contact:
|
||||||
"""Return sender contact."""
|
|
||||||
from_id = self.get_snapshot().from_id
|
from_id = self.get_snapshot().from_id
|
||||||
return self.account.get_contact_by_id(from_id)
|
return self.account.get_contact_by_id(from_id)
|
||||||
|
|
||||||
@@ -55,14 +52,6 @@ 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 continue_autocrypt_key_transfer(self, setup_code: str) -> None:
|
|
||||||
"""Continue the Autocrypt Setup Message key transfer.
|
|
||||||
|
|
||||||
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."""
|
||||||
if not isinstance(update, str):
|
if not isinstance(update, str):
|
||||||
@@ -70,15 +59,9 @@ class Message:
|
|||||||
self._rpc.send_webxdc_status_update(self.account.id, self.id, update, description)
|
self._rpc.send_webxdc_status_update(self.account.id, self.id, update, description)
|
||||||
|
|
||||||
def get_webxdc_status_updates(self, last_known_serial: int = 0) -> list:
|
def get_webxdc_status_updates(self, last_known_serial: int = 0) -> list:
|
||||||
"""Return a list of Webxdc status updates for Webxdc instance message."""
|
|
||||||
return json.loads(self._rpc.get_webxdc_status_updates(self.account.id, self.id, last_known_serial))
|
return json.loads(self._rpc.get_webxdc_status_updates(self.account.id, self.id, last_known_serial))
|
||||||
|
|
||||||
def get_info(self) -> str:
|
|
||||||
"""Return message info."""
|
|
||||||
return self._rpc.get_message_info(self.account.id, self.id)
|
|
||||||
|
|
||||||
def get_webxdc_info(self) -> dict:
|
def get_webxdc_info(self) -> dict:
|
||||||
"""Get info from a Webxdc message in JSON format."""
|
|
||||||
return self._rpc.get_webxdc_info(self.account.id, self.id)
|
return self._rpc.get_webxdc_info(self.account.id, self.id)
|
||||||
|
|
||||||
def wait_until_delivered(self) -> None:
|
def wait_until_delivered(self) -> None:
|
||||||
@@ -90,10 +73,8 @@ class Message:
|
|||||||
|
|
||||||
@futuremethod
|
@futuremethod
|
||||||
def send_webxdc_realtime_advertisement(self):
|
def send_webxdc_realtime_advertisement(self):
|
||||||
"""Send an advertisement to join the realtime channel."""
|
|
||||||
yield self._rpc.send_webxdc_realtime_advertisement.future(self.account.id, self.id)
|
yield self._rpc.send_webxdc_realtime_advertisement.future(self.account.id, self.id)
|
||||||
|
|
||||||
@futuremethod
|
@futuremethod
|
||||||
def send_webxdc_realtime_data(self, data) -> None:
|
def send_webxdc_realtime_data(self, data) -> None:
|
||||||
"""Send data to the realtime channel."""
|
|
||||||
yield self._rpc.send_webxdc_realtime_data.future(self.account.id, self.id, list(data))
|
yield self._rpc.send_webxdc_realtime_data.future(self.account.id, self.id, list(data))
|
||||||
|
|||||||
@@ -1,12 +1,9 @@
|
|||||||
"""Pytest plugin module."""
|
|
||||||
|
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
|
||||||
import os
|
import os
|
||||||
import random
|
import random
|
||||||
from typing import AsyncGenerator, Optional
|
from typing import AsyncGenerator, Optional
|
||||||
|
|
||||||
import py
|
|
||||||
import pytest
|
import pytest
|
||||||
|
|
||||||
from . import Account, AttrDict, Bot, Chat, Client, DeltaChat, EventType, Message
|
from . import Account, AttrDict, Bot, Chat, Client, DeltaChat, EventType, Message
|
||||||
@@ -14,55 +11,55 @@ from ._utils import futuremethod
|
|||||||
from .rpc import Rpc
|
from .rpc import Rpc
|
||||||
|
|
||||||
|
|
||||||
class ACFactory:
|
def get_temp_credentials() -> dict:
|
||||||
"""Test account factory."""
|
domain = os.getenv("CHATMAIL_DOMAIN")
|
||||||
|
username = "ci-" + "".join(random.choice("2345789acdefghjkmnpqrstuvwxyz") for i in range(6))
|
||||||
|
password = f"{username}${username}"
|
||||||
|
addr = f"{username}@{domain}"
|
||||||
|
return {"email": addr, "password": password}
|
||||||
|
|
||||||
|
|
||||||
|
class ACFactory:
|
||||||
def __init__(self, deltachat: DeltaChat) -> None:
|
def __init__(self, deltachat: DeltaChat) -> None:
|
||||||
self.deltachat = deltachat
|
self.deltachat = deltachat
|
||||||
|
|
||||||
def get_unconfigured_account(self) -> Account:
|
def get_unconfigured_account(self) -> Account:
|
||||||
"""Create a new unconfigured account."""
|
|
||||||
account = self.deltachat.add_account()
|
account = self.deltachat.add_account()
|
||||||
account.set_config("verified_one_on_one_chats", "1")
|
account.set_config("verified_one_on_one_chats", "1")
|
||||||
return account
|
return account
|
||||||
|
|
||||||
def get_unconfigured_bot(self) -> Bot:
|
def get_unconfigured_bot(self) -> Bot:
|
||||||
"""Create a new unconfigured bot."""
|
|
||||||
return Bot(self.get_unconfigured_account())
|
return Bot(self.get_unconfigured_account())
|
||||||
|
|
||||||
def get_credentials(self) -> (str, str):
|
def new_preconfigured_account(self) -> Account:
|
||||||
"""Generate new credentials for chatmail account."""
|
"""Make a new account with configuration options set, but configuration not started."""
|
||||||
domain = os.getenv("CHATMAIL_DOMAIN")
|
credentials = get_temp_credentials()
|
||||||
username = "ci-" + "".join(random.choice("2345789acdefghjkmnpqrstuvwxyz") for i in range(6))
|
account = self.get_unconfigured_account()
|
||||||
return f"{username}@{domain}", f"{username}${username}"
|
account.set_config("addr", credentials["email"])
|
||||||
|
account.set_config("mail_pw", credentials["password"])
|
||||||
|
assert not account.is_configured()
|
||||||
|
return account
|
||||||
|
|
||||||
@futuremethod
|
@futuremethod
|
||||||
def new_configured_account(self):
|
def new_configured_account(self):
|
||||||
"""Create a new configured account."""
|
account = self.new_preconfigured_account()
|
||||||
addr, password = self.get_credentials()
|
yield account.configure.future()
|
||||||
account = self.get_unconfigured_account()
|
|
||||||
params = {"addr": addr, "password": password}
|
|
||||||
yield account.add_or_update_transport.future(params)
|
|
||||||
|
|
||||||
assert account.is_configured()
|
assert account.is_configured()
|
||||||
return account
|
return account
|
||||||
|
|
||||||
def new_configured_bot(self) -> Bot:
|
def new_configured_bot(self) -> Bot:
|
||||||
"""Create a new configured bot."""
|
credentials = get_temp_credentials()
|
||||||
addr, password = self.get_credentials()
|
|
||||||
bot = self.get_unconfigured_bot()
|
bot = self.get_unconfigured_bot()
|
||||||
bot.configure(addr, password)
|
bot.configure(credentials["email"], credentials["password"])
|
||||||
return bot
|
return bot
|
||||||
|
|
||||||
@futuremethod
|
@futuremethod
|
||||||
def get_online_account(self):
|
def get_online_account(self):
|
||||||
"""Create a new account and start I/O."""
|
|
||||||
account = yield self.new_configured_account.future()
|
account = yield self.new_configured_account.future()
|
||||||
account.bring_online()
|
account.bring_online()
|
||||||
return account
|
return account
|
||||||
|
|
||||||
def get_online_accounts(self, num: int) -> list[Account]:
|
def get_online_accounts(self, num: int) -> list[Account]:
|
||||||
"""Create multiple online accounts."""
|
|
||||||
futures = [self.get_online_account.future() for _ in range(num)]
|
futures = [self.get_online_account.future() for _ in range(num)]
|
||||||
return [f() for f in futures]
|
return [f() for f in futures]
|
||||||
|
|
||||||
@@ -77,10 +74,6 @@ class ACFactory:
|
|||||||
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:
|
||||||
"""Create a new 1:1 chat between ac1 and ac2 accepted on both sides.
|
|
||||||
|
|
||||||
Returned chat is a chat with ac2 from ac1 point of view.
|
|
||||||
"""
|
|
||||||
ac2.create_chat(ac1)
|
ac2.create_chat(ac1)
|
||||||
return ac1.create_chat(ac2)
|
return ac1.create_chat(ac2)
|
||||||
|
|
||||||
@@ -92,10 +85,9 @@ class ACFactory:
|
|||||||
file: Optional[str] = None,
|
file: Optional[str] = None,
|
||||||
group: Optional[str] = None,
|
group: Optional[str] = None,
|
||||||
) -> Message:
|
) -> Message:
|
||||||
"""Send a message."""
|
|
||||||
if not from_account:
|
if not from_account:
|
||||||
from_account = (self.get_online_accounts(1))[0]
|
from_account = (self.get_online_accounts(1))[0]
|
||||||
to_contact = from_account.create_contact(to_account)
|
to_contact = from_account.create_contact(to_account.get_config("addr"))
|
||||||
if group:
|
if group:
|
||||||
to_chat = from_account.create_group(group)
|
to_chat = from_account.create_group(group)
|
||||||
to_chat.add_contact(to_contact)
|
to_chat.add_contact(to_contact)
|
||||||
@@ -111,7 +103,6 @@ class ACFactory:
|
|||||||
file: Optional[str] = None,
|
file: Optional[str] = None,
|
||||||
group: Optional[str] = None,
|
group: Optional[str] = None,
|
||||||
) -> AttrDict:
|
) -> AttrDict:
|
||||||
"""Send a message and wait until recipient processes it."""
|
|
||||||
self.send_message(
|
self.send_message(
|
||||||
to_account=to_client.account,
|
to_account=to_client.account,
|
||||||
from_account=from_account,
|
from_account=from_account,
|
||||||
@@ -123,62 +114,13 @@ class ACFactory:
|
|||||||
return to_client.run_until(lambda e: e.kind == EventType.INCOMING_MSG)
|
return to_client.run_until(lambda e: e.kind == EventType.INCOMING_MSG)
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture
|
@pytest.fixture()
|
||||||
def rpc(tmp_path) -> AsyncGenerator:
|
def rpc(tmp_path) -> AsyncGenerator:
|
||||||
"""RPC client fixture."""
|
|
||||||
rpc_server = Rpc(accounts_dir=str(tmp_path / "accounts"))
|
rpc_server = Rpc(accounts_dir=str(tmp_path / "accounts"))
|
||||||
with rpc_server:
|
with rpc_server:
|
||||||
yield rpc_server
|
yield rpc_server
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture
|
@pytest.fixture()
|
||||||
def acfactory(rpc) -> AsyncGenerator:
|
def acfactory(rpc) -> AsyncGenerator:
|
||||||
"""Return account factory fixture."""
|
|
||||||
return ACFactory(DeltaChat(rpc))
|
return ACFactory(DeltaChat(rpc))
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture
|
|
||||||
def data():
|
|
||||||
"""Test data."""
|
|
||||||
|
|
||||||
class Data:
|
|
||||||
def __init__(self) -> None:
|
|
||||||
for path in reversed(py.path.local(__file__).parts()):
|
|
||||||
datadir = path.join("test-data")
|
|
||||||
if datadir.isdir():
|
|
||||||
self.path = datadir
|
|
||||||
return
|
|
||||||
raise Exception("Data path cannot be found")
|
|
||||||
|
|
||||||
def get_path(self, bn):
|
|
||||||
"""Return path of file or None if it doesn't exist."""
|
|
||||||
fn = os.path.join(self.path, *bn.split("/"))
|
|
||||||
assert os.path.exists(fn)
|
|
||||||
return fn
|
|
||||||
|
|
||||||
def read_path(self, bn, mode="r"):
|
|
||||||
fn = self.get_path(bn)
|
|
||||||
if fn is not None:
|
|
||||||
with open(fn, mode) as f:
|
|
||||||
return f.read()
|
|
||||||
return None
|
|
||||||
|
|
||||||
return Data()
|
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture
|
|
||||||
def log():
|
|
||||||
"""Log printer fixture."""
|
|
||||||
|
|
||||||
class Printer:
|
|
||||||
def section(self, msg: str) -> None:
|
|
||||||
print()
|
|
||||||
print("=" * 10, msg, "=" * 10)
|
|
||||||
|
|
||||||
def step(self, msg: str) -> None:
|
|
||||||
print("-" * 5, "step " + msg, "-" * 5)
|
|
||||||
|
|
||||||
def indent(self, msg: str) -> None:
|
|
||||||
print(" " + msg)
|
|
||||||
|
|
||||||
return Printer()
|
|
||||||
|
|||||||
@@ -1,5 +1,3 @@
|
|||||||
"""JSON-RPC client module."""
|
|
||||||
|
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
|
||||||
import itertools
|
import itertools
|
||||||
@@ -14,19 +12,16 @@ from typing import Any, Iterator, Optional
|
|||||||
|
|
||||||
|
|
||||||
class JsonRpcError(Exception):
|
class JsonRpcError(Exception):
|
||||||
"""JSON-RPC error."""
|
pass
|
||||||
|
|
||||||
|
|
||||||
class RpcFuture:
|
class RpcFuture:
|
||||||
"""RPC future waiting for RPC call result."""
|
|
||||||
|
|
||||||
def __init__(self, rpc: "Rpc", request_id: int, event: Event):
|
def __init__(self, rpc: "Rpc", request_id: int, event: Event):
|
||||||
self.rpc = rpc
|
self.rpc = rpc
|
||||||
self.request_id = request_id
|
self.request_id = request_id
|
||||||
self.event = event
|
self.event = event
|
||||||
|
|
||||||
def __call__(self):
|
def __call__(self):
|
||||||
"""Wait for the future to return the result."""
|
|
||||||
self.event.wait()
|
self.event.wait()
|
||||||
response = self.rpc.request_results.pop(self.request_id)
|
response = self.rpc.request_results.pop(self.request_id)
|
||||||
if "error" in response:
|
if "error" in response:
|
||||||
@@ -37,19 +32,17 @@ class RpcFuture:
|
|||||||
|
|
||||||
|
|
||||||
class RpcMethod:
|
class RpcMethod:
|
||||||
"""RPC method."""
|
|
||||||
|
|
||||||
def __init__(self, rpc: "Rpc", name: str):
|
def __init__(self, rpc: "Rpc", name: str):
|
||||||
self.rpc = rpc
|
self.rpc = rpc
|
||||||
self.name = name
|
self.name = name
|
||||||
|
|
||||||
def __call__(self, *args) -> Any:
|
def __call__(self, *args) -> Any:
|
||||||
"""Call JSON-RPC method synchronously."""
|
"""Synchronously calls JSON-RPC method."""
|
||||||
future = self.future(*args)
|
future = self.future(*args)
|
||||||
return future()
|
return future()
|
||||||
|
|
||||||
def future(self, *args) -> Any:
|
def future(self, *args) -> Any:
|
||||||
"""Call JSON-RPC method asynchronously."""
|
"""Asynchronously calls JSON-RPC method."""
|
||||||
request_id = next(self.rpc.id_iterator)
|
request_id = next(self.rpc.id_iterator)
|
||||||
request = {
|
request = {
|
||||||
"jsonrpc": "2.0",
|
"jsonrpc": "2.0",
|
||||||
@@ -65,13 +58,8 @@ class RpcMethod:
|
|||||||
|
|
||||||
|
|
||||||
class Rpc:
|
class Rpc:
|
||||||
"""RPC client."""
|
|
||||||
|
|
||||||
def __init__(self, accounts_dir: Optional[str] = None, **kwargs):
|
def __init__(self, accounts_dir: Optional[str] = None, **kwargs):
|
||||||
"""Initialize RPC client.
|
"""The given 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"] = {
|
||||||
**kwargs.get("env", os.environ),
|
**kwargs.get("env", os.environ),
|
||||||
@@ -93,7 +81,6 @@ class Rpc:
|
|||||||
self.events_thread: Thread
|
self.events_thread: Thread
|
||||||
|
|
||||||
def start(self) -> None:
|
def start(self) -> None:
|
||||||
"""Start RPC server subprocess."""
|
|
||||||
if sys.version_info >= (3, 11):
|
if sys.version_info >= (3, 11):
|
||||||
self.process = subprocess.Popen(
|
self.process = subprocess.Popen(
|
||||||
"deltachat-rpc-server",
|
"deltachat-rpc-server",
|
||||||
@@ -143,9 +130,11 @@ class Rpc:
|
|||||||
self.close()
|
self.close()
|
||||||
|
|
||||||
def reader_loop(self) -> None:
|
def reader_loop(self) -> None:
|
||||||
"""Process JSON-RPC responses from the RPC server process output."""
|
|
||||||
try:
|
try:
|
||||||
while line := self.process.stdout.readline():
|
while True:
|
||||||
|
line = self.process.stdout.readline()
|
||||||
|
if not line: # EOF
|
||||||
|
break
|
||||||
response = json.loads(line)
|
response = json.loads(line)
|
||||||
if "id" in response:
|
if "id" in response:
|
||||||
response_id = response["id"]
|
response_id = response["id"]
|
||||||
@@ -161,7 +150,10 @@ class Rpc:
|
|||||||
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."""
|
||||||
try:
|
try:
|
||||||
while request := self.request_queue.get():
|
while True:
|
||||||
|
request = self.request_queue.get()
|
||||||
|
if not request:
|
||||||
|
break
|
||||||
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()
|
||||||
@@ -171,13 +163,12 @@ class Rpc:
|
|||||||
logging.exception("Exception in the writer loop")
|
logging.exception("Exception in the writer loop")
|
||||||
|
|
||||||
def get_queue(self, account_id: int) -> Queue:
|
def get_queue(self, account_id: int) -> Queue:
|
||||||
"""Get event queue corresponding to the given account ID."""
|
|
||||||
if account_id not in self.event_queues:
|
if account_id not in self.event_queues:
|
||||||
self.event_queues[account_id] = Queue()
|
self.event_queues[account_id] = Queue()
|
||||||
return self.event_queues[account_id]
|
return self.event_queues[account_id]
|
||||||
|
|
||||||
def events_loop(self) -> None:
|
def events_loop(self) -> None:
|
||||||
"""Request new events and distributes them between queues."""
|
"""Requests new events and distributes them between queues."""
|
||||||
try:
|
try:
|
||||||
while True:
|
while True:
|
||||||
if self.closing:
|
if self.closing:
|
||||||
@@ -193,12 +184,12 @@ class Rpc:
|
|||||||
logging.exception("Exception in the event loop")
|
logging.exception("Exception in the event loop")
|
||||||
|
|
||||||
def wait_for_event(self, account_id: int) -> Optional[dict]:
|
def wait_for_event(self, account_id: int) -> Optional[dict]:
|
||||||
"""Wait for the next event from the given account and returns it."""
|
"""Waits for the next event from the given account and returns it."""
|
||||||
queue = self.get_queue(account_id)
|
queue = self.get_queue(account_id)
|
||||||
return queue.get()
|
return queue.get()
|
||||||
|
|
||||||
def clear_all_events(self, account_id: int):
|
def clear_all_events(self, account_id: int):
|
||||||
"""Remove all queued-up events for a given account. Useful for tests."""
|
"""Removes all queued-up events for a given account. Useful for tests."""
|
||||||
queue = self.get_queue(account_id)
|
queue = self.get_queue(account_id)
|
||||||
try:
|
try:
|
||||||
while True:
|
while True:
|
||||||
|
|||||||
@@ -1,30 +0,0 @@
|
|||||||
from __future__ import annotations
|
|
||||||
|
|
||||||
from typing import TYPE_CHECKING
|
|
||||||
|
|
||||||
from deltachat_rpc_client import EventType
|
|
||||||
|
|
||||||
if TYPE_CHECKING:
|
|
||||||
from deltachat_rpc_client.pytestplugin import ACFactory
|
|
||||||
|
|
||||||
|
|
||||||
def test_event_on_configuration(acfactory: ACFactory) -> None:
|
|
||||||
"""
|
|
||||||
Test if ACCOUNTS_ITEM_CHANGED event is emitted on configure
|
|
||||||
"""
|
|
||||||
|
|
||||||
addr, password = acfactory.get_credentials()
|
|
||||||
account = acfactory.get_unconfigured_account()
|
|
||||||
account.clear_all_events()
|
|
||||||
assert not account.is_configured()
|
|
||||||
future = account.add_or_update_transport.future({"addr": addr, "password": password})
|
|
||||||
while True:
|
|
||||||
event = account.wait_for_event()
|
|
||||||
if event.kind == EventType.ACCOUNTS_ITEM_CHANGED:
|
|
||||||
break
|
|
||||||
assert account.is_configured()
|
|
||||||
|
|
||||||
future()
|
|
||||||
|
|
||||||
|
|
||||||
# other tests are written in rust: src/tests/account_events.rs
|
|
||||||
@@ -48,7 +48,8 @@ def test_delivery_status(acfactory: ACFactory) -> None:
|
|||||||
"""
|
"""
|
||||||
alice, bob = acfactory.get_online_accounts(2)
|
alice, bob = acfactory.get_online_accounts(2)
|
||||||
|
|
||||||
alice_contact_bob = alice.create_contact(bob, "Bob")
|
bob_addr = bob.get_config("addr")
|
||||||
|
alice_contact_bob = alice.create_contact(bob_addr, "Bob")
|
||||||
alice_chat_bob = alice_contact_bob.create_chat()
|
alice_chat_bob = alice_contact_bob.create_chat()
|
||||||
|
|
||||||
alice.clear_all_events()
|
alice.clear_all_events()
|
||||||
@@ -118,7 +119,8 @@ def test_download_on_demand(acfactory: ACFactory) -> None:
|
|||||||
"""
|
"""
|
||||||
alice, bob = acfactory.get_online_accounts(2)
|
alice, bob = acfactory.get_online_accounts(2)
|
||||||
|
|
||||||
alice_contact_bob = alice.create_contact(bob, "Bob")
|
bob_addr = bob.get_config("addr")
|
||||||
|
alice_contact_bob = alice.create_contact(bob_addr, "Bob")
|
||||||
alice_chat_bob = alice_contact_bob.create_chat()
|
alice_chat_bob = alice_contact_bob.create_chat()
|
||||||
alice_chat_bob.send_text("hi")
|
alice_chat_bob.send_text("hi")
|
||||||
|
|
||||||
@@ -148,13 +150,18 @@ def test_download_on_demand(acfactory: ACFactory) -> None:
|
|||||||
def get_multi_account_test_setup(acfactory: ACFactory) -> [Account, Account, Account]:
|
def get_multi_account_test_setup(acfactory: ACFactory) -> [Account, Account, Account]:
|
||||||
alice, bob = acfactory.get_online_accounts(2)
|
alice, bob = acfactory.get_online_accounts(2)
|
||||||
|
|
||||||
alice_contact_bob = alice.create_contact(bob, "Bob")
|
bob_addr = bob.get_config("addr")
|
||||||
|
alice_contact_bob = alice.create_contact(bob_addr, "Bob")
|
||||||
alice_chat_bob = alice_contact_bob.create_chat()
|
alice_chat_bob = alice_contact_bob.create_chat()
|
||||||
alice_chat_bob.send_text("hi")
|
alice_chat_bob.send_text("hi")
|
||||||
|
|
||||||
bob.wait_for_incoming_msg_event()
|
bob.wait_for_incoming_msg_event()
|
||||||
|
|
||||||
alice_second_device = alice.clone()
|
alice_second_device: Account = acfactory.get_unconfigured_account()
|
||||||
|
|
||||||
|
alice._rpc.provide_backup.future(alice.id)
|
||||||
|
backup_code = alice._rpc.get_backup_qr(alice.id)
|
||||||
|
alice_second_device._rpc.get_backup(alice_second_device.id, backup_code)
|
||||||
alice_second_device.start_io()
|
alice_second_device.start_io()
|
||||||
alice.clear_all_events()
|
alice.clear_all_events()
|
||||||
alice_second_device.clear_all_events()
|
alice_second_device.clear_all_events()
|
||||||
@@ -203,7 +210,6 @@ def test_multidevice_sync_chat(acfactory: ACFactory) -> None:
|
|||||||
alice_second_device.clear_all_events()
|
alice_second_device.clear_all_events()
|
||||||
alice_chat_bob.pin()
|
alice_chat_bob.pin()
|
||||||
wait_for_chatlist_specific_item(alice_second_device, alice_chat_bob.id)
|
wait_for_chatlist_specific_item(alice_second_device, alice_chat_bob.id)
|
||||||
assert alice_second_device.get_chat_by_id(alice_chat_bob.id).get_basic_snapshot().pinned
|
|
||||||
|
|
||||||
alice_second_device.clear_all_events()
|
alice_second_device.clear_all_events()
|
||||||
alice_chat_bob.mute()
|
alice_chat_bob.mute()
|
||||||
|
|||||||
@@ -7,17 +7,15 @@ If you want to debug iroh at rust-trace/log level set
|
|||||||
RUST_LOG=iroh_net=trace,iroh_gossip=trace
|
RUST_LOG=iroh_net=trace,iroh_gossip=trace
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import logging
|
import sys
|
||||||
import os
|
|
||||||
import threading
|
import threading
|
||||||
import time
|
import time
|
||||||
|
|
||||||
import pytest
|
import pytest
|
||||||
|
|
||||||
from deltachat_rpc_client import EventType
|
from deltachat_rpc_client import EventType
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture
|
@pytest.fixture()
|
||||||
def path_to_webxdc(request):
|
def path_to_webxdc(request):
|
||||||
p = request.path.parent.parent.parent.joinpath("test-data/webxdc/chess.xdc")
|
p = request.path.parent.parent.parent.joinpath("test-data/webxdc/chess.xdc")
|
||||||
assert p.exists()
|
assert p.exists()
|
||||||
@@ -25,7 +23,9 @@ def path_to_webxdc(request):
|
|||||||
|
|
||||||
|
|
||||||
def log(msg):
|
def log(msg):
|
||||||
logging.info(msg)
|
print()
|
||||||
|
print("*" * 80 + "\n" + msg + "\n", file=sys.stderr)
|
||||||
|
print()
|
||||||
|
|
||||||
|
|
||||||
def setup_realtime_webxdc(ac1, ac2, path_to_webxdc):
|
def setup_realtime_webxdc(ac1, ac2, path_to_webxdc):
|
||||||
@@ -68,7 +68,7 @@ def wait_receive_realtime_data(msg_data_list):
|
|||||||
if event.kind == EventType.WEBXDC_REALTIME_DATA:
|
if event.kind == EventType.WEBXDC_REALTIME_DATA:
|
||||||
for i, (msg, data) in enumerate(msg_data_list):
|
for i, (msg, data) in enumerate(msg_data_list):
|
||||||
if msg.id == event.msg_id:
|
if msg.id == event.msg_id:
|
||||||
assert list(data) == event.data
|
assert data == event.data
|
||||||
log(f"msg {msg.id}: got correct realtime data {data}")
|
log(f"msg {msg.id}: got correct realtime data {data}")
|
||||||
del msg_data_list[i]
|
del msg_data_list[i]
|
||||||
break
|
break
|
||||||
@@ -106,15 +106,13 @@ def test_realtime_sequentially(acfactory, path_to_webxdc):
|
|||||||
assert snapshot.text == "ping2"
|
assert snapshot.text == "ping2"
|
||||||
|
|
||||||
log("sending realtime data ac1 -> ac2")
|
log("sending realtime data ac1 -> ac2")
|
||||||
# Test that 128 KB of data can be sent in a single message.
|
ac1_webxdc_msg.send_webxdc_realtime_data(b"foo")
|
||||||
data = os.urandom(128000)
|
|
||||||
ac1_webxdc_msg.send_webxdc_realtime_data(data)
|
|
||||||
|
|
||||||
log("ac2: waiting for realtime data")
|
log("ac2: waiting for realtime data")
|
||||||
while 1:
|
while 1:
|
||||||
event = ac2.wait_for_event()
|
event = ac2.wait_for_event()
|
||||||
if event.kind == EventType.WEBXDC_REALTIME_DATA:
|
if event.kind == EventType.WEBXDC_REALTIME_DATA:
|
||||||
assert event.data == list(data)
|
assert event.data == list(b"foo")
|
||||||
break
|
break
|
||||||
|
|
||||||
|
|
||||||
@@ -175,53 +173,14 @@ def test_no_duplicate_messages(acfactory, path_to_webxdc):
|
|||||||
|
|
||||||
threading.Thread(target=thread_run, daemon=True).start()
|
threading.Thread(target=thread_run, daemon=True).start()
|
||||||
|
|
||||||
event = ac2.wait_for_event(EventType.WEBXDC_REALTIME_DATA)
|
while 1:
|
||||||
n = int(bytes(event.data).decode())
|
event = ac2.wait_for_event()
|
||||||
|
if event.kind == EventType.WEBXDC_REALTIME_DATA:
|
||||||
|
n = int(bytes(event.data).decode())
|
||||||
|
break
|
||||||
|
|
||||||
event = ac2.wait_for_event(EventType.WEBXDC_REALTIME_DATA)
|
while 1:
|
||||||
assert int(bytes(event.data).decode()) > n
|
event = ac2.wait_for_event()
|
||||||
|
if event.kind == EventType.WEBXDC_REALTIME_DATA:
|
||||||
|
assert int(bytes(event.data).decode()) > n
|
||||||
def test_no_reordering(acfactory, path_to_webxdc):
|
break
|
||||||
"""Test that sending a lot of realtime messages does not result in reordering."""
|
|
||||||
ac1, ac2 = acfactory.get_online_accounts(2)
|
|
||||||
ac1.set_config("webxdc_realtime_enabled", "1")
|
|
||||||
ac2.set_config("webxdc_realtime_enabled", "1")
|
|
||||||
|
|
||||||
ac1_webxdc_msg, ac2_webxdc_msg = setup_realtime_webxdc(ac1, ac2, path_to_webxdc)
|
|
||||||
|
|
||||||
setup_thread_send_realtime_data(ac1_webxdc_msg, b"hello")
|
|
||||||
wait_receive_realtime_data([(ac2_webxdc_msg, b"hello")])
|
|
||||||
|
|
||||||
for i in range(200):
|
|
||||||
ac1_webxdc_msg.send_webxdc_realtime_data([i])
|
|
||||||
|
|
||||||
for i in range(200):
|
|
||||||
while 1:
|
|
||||||
event = ac2.wait_for_event()
|
|
||||||
if event.kind == EventType.WEBXDC_REALTIME_DATA and bytes(event.data) != b"hello":
|
|
||||||
if event.data[0] == i:
|
|
||||||
break
|
|
||||||
pytest.fail("Reordering detected")
|
|
||||||
|
|
||||||
|
|
||||||
def test_advertisement_after_chatting(acfactory, path_to_webxdc):
|
|
||||||
"""Test that realtime advertisement is assigned to the correct message after chatting."""
|
|
||||||
ac1, ac2 = acfactory.get_online_accounts(2)
|
|
||||||
ac1.set_config("webxdc_realtime_enabled", "1")
|
|
||||||
ac2.set_config("webxdc_realtime_enabled", "1")
|
|
||||||
|
|
||||||
ac1_ac2_chat = ac1.create_chat(ac2)
|
|
||||||
ac1_webxdc_msg = ac1_ac2_chat.send_message(text="WebXDC", file=path_to_webxdc)
|
|
||||||
ac2_webxdc_msg = ac2.wait_for_incoming_msg()
|
|
||||||
assert ac2_webxdc_msg.get_snapshot().text == "WebXDC"
|
|
||||||
|
|
||||||
ac1_ac2_chat.send_text("Hello!")
|
|
||||||
ac2_hello_msg = ac2.wait_for_incoming_msg()
|
|
||||||
ac2_hello_msg_snapshot = ac2_hello_msg.get_snapshot()
|
|
||||||
assert ac2_hello_msg_snapshot.text == "Hello!"
|
|
||||||
ac2_hello_msg_snapshot.chat.accept()
|
|
||||||
|
|
||||||
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
|
|
||||||
|
|||||||
@@ -1,53 +0,0 @@
|
|||||||
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)
|
|
||||||
@@ -1,110 +0,0 @@
|
|||||||
from imap_tools import AND
|
|
||||||
|
|
||||||
from deltachat_rpc_client import EventType
|
|
||||||
from deltachat_rpc_client.const import MessageState
|
|
||||||
|
|
||||||
|
|
||||||
def test_one_account_send_bcc_setting(acfactory, log, direct_imap):
|
|
||||||
ac1, ac2 = acfactory.get_online_accounts(2)
|
|
||||||
ac1_clone = ac1.clone()
|
|
||||||
ac1_clone.bring_online()
|
|
||||||
|
|
||||||
log.section("send out message without bcc to ourselves")
|
|
||||||
ac1.set_config("bcc_self", "0")
|
|
||||||
chat = ac1.create_chat(ac2)
|
|
||||||
self_addr = ac1.get_config("addr")
|
|
||||||
other_addr = ac2.get_config("addr")
|
|
||||||
|
|
||||||
msg_out = chat.send_text("message1")
|
|
||||||
assert not msg_out.get_snapshot().is_forwarded
|
|
||||||
|
|
||||||
# wait for send out (no BCC)
|
|
||||||
ev = ac1.wait_for_event(EventType.SMTP_MESSAGE_SENT)
|
|
||||||
assert ac1.get_config("bcc_self") == "0"
|
|
||||||
|
|
||||||
assert self_addr not in ev.msg
|
|
||||||
assert other_addr in ev.msg
|
|
||||||
|
|
||||||
log.section("ac1: setting bcc_self=1")
|
|
||||||
ac1.set_config("bcc_self", "1")
|
|
||||||
|
|
||||||
log.section("send out message with bcc to ourselves")
|
|
||||||
msg_out = chat.send_text("message2")
|
|
||||||
|
|
||||||
# wait for send out (BCC)
|
|
||||||
ev = ac1.wait_for_event(EventType.SMTP_MESSAGE_SENT)
|
|
||||||
assert ac1.get_config("bcc_self") == "1"
|
|
||||||
|
|
||||||
# Second client receives only second message, but not the first.
|
|
||||||
ev_msg = ac1_clone.wait_for_event(EventType.MSGS_CHANGED)
|
|
||||||
assert ac1_clone.get_message_by_id(ev_msg.msg_id).get_snapshot().text == msg_out.get_snapshot().text
|
|
||||||
|
|
||||||
# now make sure we are sending message to ourselves too
|
|
||||||
assert self_addr in ev.msg
|
|
||||||
assert self_addr in ev.msg
|
|
||||||
|
|
||||||
# BCC-self messages are marked as seen by the sender device.
|
|
||||||
while True:
|
|
||||||
event = ac1.wait_for_event()
|
|
||||||
if event.kind == EventType.INFO and event.msg.endswith("Marked messages 1 in folder INBOX as seen."):
|
|
||||||
break
|
|
||||||
|
|
||||||
# Check that the message is marked as seen on IMAP.
|
|
||||||
ac1_direct_imap = direct_imap(ac1)
|
|
||||||
ac1_direct_imap.connect()
|
|
||||||
ac1_direct_imap.select_folder("Inbox")
|
|
||||||
assert len(list(ac1_direct_imap.conn.fetch(AND(seen=True)))) == 1
|
|
||||||
|
|
||||||
|
|
||||||
def test_multidevice_sync_seen(acfactory, log):
|
|
||||||
"""Test that message marked as seen on one device is marked as seen on another."""
|
|
||||||
ac1, ac2 = acfactory.get_online_accounts(2)
|
|
||||||
ac1_clone = ac1.clone()
|
|
||||||
ac1_clone.bring_online()
|
|
||||||
|
|
||||||
ac1.set_config("bcc_self", "1")
|
|
||||||
ac1_clone.set_config("bcc_self", "1")
|
|
||||||
|
|
||||||
ac1_chat = ac1.create_chat(ac2)
|
|
||||||
ac1_clone_chat = ac1_clone.create_chat(ac2)
|
|
||||||
ac2_chat = ac2.create_chat(ac1)
|
|
||||||
|
|
||||||
log.section("Send a message from ac2 to ac1 and check that it's 'fresh'")
|
|
||||||
ac2_chat.send_text("Hi")
|
|
||||||
ac1_message = ac1.wait_for_incoming_msg()
|
|
||||||
ac1_clone_message = ac1_clone.wait_for_incoming_msg()
|
|
||||||
assert ac1_chat.get_fresh_message_count() == 1
|
|
||||||
assert ac1_clone_chat.get_fresh_message_count() == 1
|
|
||||||
assert ac1_message.get_snapshot().state == MessageState.IN_FRESH
|
|
||||||
assert ac1_clone_message.get_snapshot().state == MessageState.IN_FRESH
|
|
||||||
|
|
||||||
log.section("ac1 marks message as seen on the first device")
|
|
||||||
ac1.mark_seen_messages([ac1_message])
|
|
||||||
assert ac1_message.get_snapshot().state == MessageState.IN_SEEN
|
|
||||||
|
|
||||||
log.section("ac1 clone detects that message is marked as seen")
|
|
||||||
ev = ac1_clone.wait_for_event(EventType.MSGS_NOTICED)
|
|
||||||
assert ev.chat_id == ac1_clone_chat.id
|
|
||||||
|
|
||||||
log.section("Send an ephemeral message from ac2 to ac1")
|
|
||||||
ac2_chat.set_ephemeral_timer(60)
|
|
||||||
ac1.wait_for_event(EventType.CHAT_EPHEMERAL_TIMER_MODIFIED)
|
|
||||||
ac1.wait_for_incoming_msg()
|
|
||||||
ac1_clone.wait_for_event(EventType.CHAT_EPHEMERAL_TIMER_MODIFIED)
|
|
||||||
ac1_clone.wait_for_incoming_msg()
|
|
||||||
|
|
||||||
ac2_chat.send_text("Foobar")
|
|
||||||
ac1_message = ac1.wait_for_incoming_msg()
|
|
||||||
ac1_clone_message = ac1_clone.wait_for_incoming_msg()
|
|
||||||
assert "Ephemeral timer: 60\n" in ac1_message.get_info()
|
|
||||||
assert "Expires: " not in ac1_clone_message.get_info()
|
|
||||||
assert "Ephemeral timer: 60\n" in ac1_message.get_info()
|
|
||||||
assert "Expires: " not in ac1_clone_message.get_info()
|
|
||||||
|
|
||||||
ac1_message.mark_seen()
|
|
||||||
assert "Expires: " in ac1_message.get_info()
|
|
||||||
ev = ac1_clone.wait_for_event(EventType.MSGS_NOTICED)
|
|
||||||
assert ev.chat_id == ac1_clone_chat.id
|
|
||||||
assert ac1_clone_message.get_snapshot().state == MessageState.IN_SEEN
|
|
||||||
# Test that the timer is started on the second device after synchronizing the seen status.
|
|
||||||
assert "Expires: " in ac1_clone_message.get_info()
|
|
||||||
@@ -1,16 +1,13 @@
|
|||||||
import logging
|
import logging
|
||||||
import time
|
|
||||||
|
|
||||||
import pytest
|
import pytest
|
||||||
|
|
||||||
from deltachat_rpc_client import Chat, EventType, SpecialContactId
|
from deltachat_rpc_client import Chat, EventType, SpecialContactId
|
||||||
from deltachat_rpc_client.rpc import JsonRpcError
|
|
||||||
|
|
||||||
|
|
||||||
def test_qr_setup_contact(acfactory, tmp_path) -> None:
|
def test_qr_setup_contact(acfactory, tmp_path) -> None:
|
||||||
alice, bob = acfactory.get_online_accounts(2)
|
alice, bob = acfactory.get_online_accounts(2)
|
||||||
|
|
||||||
qr_code = alice.get_qr_code()
|
qr_code, _svg = alice.get_qr_code()
|
||||||
bob.secure_join(qr_code)
|
bob.secure_join(qr_code)
|
||||||
|
|
||||||
alice.wait_for_securejoin_inviter_success()
|
alice.wait_for_securejoin_inviter_success()
|
||||||
@@ -27,69 +24,49 @@ def test_qr_setup_contact(acfactory, tmp_path) -> None:
|
|||||||
bob_contact_alice_snapshot = bob_contact_alice.get_snapshot()
|
bob_contact_alice_snapshot = bob_contact_alice.get_snapshot()
|
||||||
assert bob_contact_alice_snapshot.is_verified
|
assert bob_contact_alice_snapshot.is_verified
|
||||||
|
|
||||||
# Test that if Bob imports a key,
|
# Test that if Bob changes the key, backwards verification is lost.
|
||||||
# backwards verification is not lost
|
|
||||||
# because default key is not changed.
|
|
||||||
logging.info("Bob 2 is created")
|
logging.info("Bob 2 is created")
|
||||||
bob2 = acfactory.new_configured_account()
|
bob2 = acfactory.new_configured_account()
|
||||||
bob2.export_self_keys(tmp_path)
|
bob2.export_self_keys(tmp_path)
|
||||||
|
|
||||||
logging.info("Bob tries to import a key")
|
logging.info("Bob imports a key")
|
||||||
# Importing a second key is not allowed.
|
bob.import_self_keys(tmp_path / "private-key-default.asc")
|
||||||
with pytest.raises(JsonRpcError):
|
|
||||||
bob.import_self_keys(tmp_path)
|
|
||||||
|
|
||||||
assert bob.get_config("key_id") == "1"
|
assert bob.get_config("key_id") == "2"
|
||||||
bob_contact_alice_snapshot = bob_contact_alice.get_snapshot()
|
bob_contact_alice_snapshot = bob_contact_alice.get_snapshot()
|
||||||
assert bob_contact_alice_snapshot.is_verified
|
assert not bob_contact_alice_snapshot.is_verified
|
||||||
|
|
||||||
|
|
||||||
def test_qr_setup_contact_svg(acfactory) -> None:
|
|
||||||
alice = acfactory.new_configured_account()
|
|
||||||
_, _, domain = alice.get_config("addr").rpartition("@")
|
|
||||||
|
|
||||||
_qr_code, svg = alice.get_qr_code_svg()
|
|
||||||
|
|
||||||
alice.set_config("displayname", "Alice")
|
|
||||||
|
|
||||||
# Test that display name is used
|
|
||||||
# in SVG and no address is visible.
|
|
||||||
_qr_code, svg = alice.get_qr_code_svg()
|
|
||||||
assert domain not in svg
|
|
||||||
assert "Alice" in svg
|
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.parametrize("protect", [True, False])
|
@pytest.mark.parametrize("protect", [True, False])
|
||||||
def test_qr_securejoin(acfactory, protect):
|
def test_qr_securejoin(acfactory, protect):
|
||||||
alice, bob, fiona = acfactory.get_online_accounts(3)
|
alice, bob = acfactory.get_online_accounts(2)
|
||||||
|
|
||||||
# Setup second device for Alice
|
logging.info("Alice creates a verified group")
|
||||||
# to test observing securejoin protocol.
|
alice_chat = alice.create_group("Verified group", protect=protect)
|
||||||
alice2 = alice.clone()
|
|
||||||
|
|
||||||
logging.info("Alice creates a group")
|
|
||||||
alice_chat = alice.create_group("Group", protect=protect)
|
|
||||||
assert alice_chat.get_basic_snapshot().is_protected == protect
|
assert alice_chat.get_basic_snapshot().is_protected == protect
|
||||||
|
|
||||||
logging.info("Bob joins the group")
|
logging.info("Bob joins verified group")
|
||||||
qr_code = alice_chat.get_qr_code()
|
qr_code, _svg = alice_chat.get_qr_code()
|
||||||
bob.secure_join(qr_code)
|
bob.secure_join(qr_code)
|
||||||
|
|
||||||
# Alice deletes "vg-request".
|
# Check that at least some of the handshake messages are deleted.
|
||||||
alice.wait_for_event(EventType.IMAP_MESSAGE_DELETED)
|
|
||||||
alice.wait_for_securejoin_inviter_success()
|
|
||||||
# Bob deletes "vg-auth-required", Alice deletes "vg-request-with-auth".
|
|
||||||
for ac in [alice, bob]:
|
for ac in [alice, bob]:
|
||||||
ac.wait_for_event(EventType.IMAP_MESSAGE_DELETED)
|
while True:
|
||||||
bob.wait_for_securejoin_joiner_success()
|
event = ac.wait_for_event()
|
||||||
|
if event["kind"] == "ImapMessageDeleted":
|
||||||
|
break
|
||||||
|
|
||||||
|
alice.wait_for_securejoin_inviter_success()
|
||||||
|
|
||||||
# Test that Alice verified Bob's profile.
|
# Test that Alice verified Bob's profile.
|
||||||
alice_contact_bob = alice.get_contact_by_addr(bob.get_config("addr"))
|
alice_contact_bob = alice.get_contact_by_addr(bob.get_config("addr"))
|
||||||
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
|
||||||
|
|
||||||
|
bob.wait_for_securejoin_joiner_success()
|
||||||
|
|
||||||
snapshot = bob.get_message_by_id(bob.wait_for_incoming_msg_event().msg_id).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(bob.get_config("addr"), alice.get_config("addr"))
|
||||||
assert snapshot.chat.get_basic_snapshot().is_protected == protect
|
assert snapshot.chat.get_basic_snapshot().is_protected == protect
|
||||||
|
|
||||||
# Test that Bob verified Alice's profile.
|
# Test that Bob verified Alice's profile.
|
||||||
@@ -97,27 +74,13 @@ def test_qr_securejoin(acfactory, protect):
|
|||||||
bob_contact_alice_snapshot = bob_contact_alice.get_snapshot()
|
bob_contact_alice_snapshot = bob_contact_alice.get_snapshot()
|
||||||
assert bob_contact_alice_snapshot.is_verified
|
assert bob_contact_alice_snapshot.is_verified
|
||||||
|
|
||||||
# Start second Alice device.
|
|
||||||
# Alice observes securejoin protocol and verifies Bob on second device.
|
|
||||||
alice2.start_io()
|
|
||||||
alice2.wait_for_securejoin_inviter_success()
|
|
||||||
alice2_contact_bob = alice2.get_contact_by_addr(bob.get_config("addr"))
|
|
||||||
alice2_contact_bob_snapshot = alice2_contact_bob.get_snapshot()
|
|
||||||
assert alice2_contact_bob_snapshot.is_verified
|
|
||||||
|
|
||||||
# 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()
|
|
||||||
|
|
||||||
|
|
||||||
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)
|
||||||
|
|
||||||
alice_contact_bob = alice.create_contact(bob, "Bob")
|
bob_addr = bob.get_config("addr")
|
||||||
|
alice_contact_bob = alice.create_contact(bob_addr, "Bob")
|
||||||
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!")
|
||||||
|
|
||||||
@@ -128,7 +91,7 @@ def test_qr_securejoin_contact_request(acfactory) -> None:
|
|||||||
|
|
||||||
alice_chat = alice.create_group("Verified group", protect=True)
|
alice_chat = alice.create_group("Verified group", protect=True)
|
||||||
logging.info("Bob joins verified group")
|
logging.info("Bob joins verified group")
|
||||||
qr_code = alice_chat.get_qr_code()
|
qr_code, _svg = alice_chat.get_qr_code()
|
||||||
bob.secure_join(qr_code)
|
bob.secure_join(qr_code)
|
||||||
while True:
|
while True:
|
||||||
event = bob.wait_for_event()
|
event = bob.wait_for_event()
|
||||||
@@ -143,7 +106,7 @@ def test_qr_readreceipt(acfactory) -> None:
|
|||||||
alice, bob, charlie = acfactory.get_online_accounts(3)
|
alice, bob, charlie = acfactory.get_online_accounts(3)
|
||||||
|
|
||||||
logging.info("Bob and Charlie setup contact with Alice")
|
logging.info("Bob and Charlie setup contact with Alice")
|
||||||
qr_code = alice.get_qr_code()
|
qr_code, _svg = alice.get_qr_code()
|
||||||
|
|
||||||
bob.secure_join(qr_code)
|
bob.secure_join(qr_code)
|
||||||
charlie.secure_join(qr_code)
|
charlie.secure_join(qr_code)
|
||||||
@@ -154,8 +117,11 @@ def test_qr_readreceipt(acfactory) -> None:
|
|||||||
logging.info("Alice creates a verified group")
|
logging.info("Alice creates a verified group")
|
||||||
group = alice.create_group("Group", protect=True)
|
group = alice.create_group("Group", protect=True)
|
||||||
|
|
||||||
alice_contact_bob = alice.create_contact(bob, "Bob")
|
bob_addr = bob.get_config("addr")
|
||||||
alice_contact_charlie = alice.create_contact(charlie, "Charlie")
|
charlie_addr = charlie.get_config("addr")
|
||||||
|
|
||||||
|
alice_contact_bob = alice.create_contact(bob_addr, "Bob")
|
||||||
|
alice_contact_charlie = alice.create_contact(charlie_addr, "Charlie")
|
||||||
|
|
||||||
group.add_contact(alice_contact_bob)
|
group.add_contact(alice_contact_bob)
|
||||||
group.add_contact(alice_contact_charlie)
|
group.add_contact(alice_contact_charlie)
|
||||||
@@ -182,7 +148,7 @@ def test_qr_readreceipt(acfactory) -> None:
|
|||||||
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!"
|
||||||
|
|
||||||
bob_contact_charlie = bob.create_contact(charlie, "Charlie")
|
bob_contact_charlie = bob.create_contact(charlie_addr, "Charlie")
|
||||||
assert not bob.get_chat_by_contact(bob_contact_charlie)
|
assert not bob.get_chat_by_contact(bob_contact_charlie)
|
||||||
|
|
||||||
logging.info("Charlie reads Bob's message")
|
logging.info("Charlie reads Bob's message")
|
||||||
@@ -202,13 +168,13 @@ def test_setup_contact_resetup(acfactory) -> None:
|
|||||||
"""Tests that setup contact works after Alice resets the device and changes the key."""
|
"""Tests that setup contact works after Alice resets the device and changes the key."""
|
||||||
alice, bob = acfactory.get_online_accounts(2)
|
alice, bob = acfactory.get_online_accounts(2)
|
||||||
|
|
||||||
qr_code = alice.get_qr_code()
|
qr_code, _svg = alice.get_qr_code()
|
||||||
bob.secure_join(qr_code)
|
bob.secure_join(qr_code)
|
||||||
bob.wait_for_securejoin_joiner_success()
|
bob.wait_for_securejoin_joiner_success()
|
||||||
|
|
||||||
alice = acfactory.resetup_account(alice)
|
alice = acfactory.resetup_account(alice)
|
||||||
|
|
||||||
qr_code = alice.get_qr_code()
|
qr_code, _svg = alice.get_qr_code()
|
||||||
bob.secure_join(qr_code)
|
bob.secure_join(qr_code)
|
||||||
bob.wait_for_securejoin_joiner_success()
|
bob.wait_for_securejoin_joiner_success()
|
||||||
|
|
||||||
@@ -222,7 +188,7 @@ def test_verified_group_recovery(acfactory) -> None:
|
|||||||
assert chat.get_basic_snapshot().is_protected
|
assert chat.get_basic_snapshot().is_protected
|
||||||
|
|
||||||
logging.info("ac2 joins verified group")
|
logging.info("ac2 joins verified group")
|
||||||
qr_code = chat.get_qr_code()
|
qr_code, _svg = 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()
|
||||||
|
|
||||||
@@ -239,7 +205,7 @@ def test_verified_group_recovery(acfactory) -> None:
|
|||||||
ac2 = acfactory.resetup_account(ac2)
|
ac2 = acfactory.resetup_account(ac2)
|
||||||
|
|
||||||
logging.info("ac2 reverifies with ac3")
|
logging.info("ac2 reverifies with ac3")
|
||||||
qr_code = ac3.get_qr_code()
|
qr_code, _svg = ac3.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()
|
||||||
|
|
||||||
@@ -286,7 +252,7 @@ def test_verified_group_member_added_recovery(acfactory) -> None:
|
|||||||
assert chat.get_basic_snapshot().is_protected
|
assert chat.get_basic_snapshot().is_protected
|
||||||
|
|
||||||
logging.info("ac2 joins verified group")
|
logging.info("ac2 joins verified group")
|
||||||
qr_code = chat.get_qr_code()
|
qr_code, _svg = 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()
|
||||||
|
|
||||||
@@ -303,7 +269,7 @@ def test_verified_group_member_added_recovery(acfactory) -> None:
|
|||||||
ac2 = acfactory.resetup_account(ac2)
|
ac2 = acfactory.resetup_account(ac2)
|
||||||
|
|
||||||
logging.info("ac2 reverifies with ac3")
|
logging.info("ac2 reverifies with ac3")
|
||||||
qr_code = ac3.get_qr_code()
|
qr_code, _svg = ac3.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()
|
||||||
|
|
||||||
@@ -321,6 +287,7 @@ def test_verified_group_member_added_recovery(acfactory) -> None:
|
|||||||
|
|
||||||
ac3_contact_ac2 = ac3.get_contact_by_addr(ac2.get_config("addr"))
|
ac3_contact_ac2 = ac3.get_contact_by_addr(ac2.get_config("addr"))
|
||||||
ac3_chat.remove_contact(ac3_contact_ac2)
|
ac3_chat.remove_contact(ac3_contact_ac2)
|
||||||
|
ac3_chat.add_contact(ac3_contact_ac2)
|
||||||
|
|
||||||
msg_id = ac2.wait_for_incoming_msg_event().msg_id
|
msg_id = ac2.wait_for_incoming_msg_event().msg_id
|
||||||
message = ac2.get_message_by_id(msg_id)
|
message = ac2.get_message_by_id(msg_id)
|
||||||
@@ -330,8 +297,6 @@ def test_verified_group_member_added_recovery(acfactory) -> None:
|
|||||||
snapshot = ac1.get_message_by_id(ac1.wait_for_incoming_msg_event().msg_id).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)
|
|
||||||
|
|
||||||
event = ac2.wait_for_incoming_msg_event()
|
event = ac2.wait_for_incoming_msg_event()
|
||||||
msg_id = event.msg_id
|
msg_id = event.msg_id
|
||||||
chat_id = event.chat_id
|
chat_id = event.chat_id
|
||||||
@@ -371,7 +336,7 @@ def test_qr_join_chat_with_pending_bobstate_issue4894(acfactory):
|
|||||||
ac1, ac2, ac3, ac4 = acfactory.get_online_accounts(4)
|
ac1, ac2, ac3, ac4 = acfactory.get_online_accounts(4)
|
||||||
|
|
||||||
logging.info("ac3: verify with ac2")
|
logging.info("ac3: verify with ac2")
|
||||||
qr_code = ac2.get_qr_code()
|
qr_code, _svg = ac2.get_qr_code()
|
||||||
ac3.secure_join(qr_code)
|
ac3.secure_join(qr_code)
|
||||||
ac2.wait_for_securejoin_inviter_success()
|
ac2.wait_for_securejoin_inviter_success()
|
||||||
|
|
||||||
@@ -381,7 +346,7 @@ def test_qr_join_chat_with_pending_bobstate_issue4894(acfactory):
|
|||||||
|
|
||||||
logging.info("ac1: create verified group that ac2 fully joins")
|
logging.info("ac1: create verified group that ac2 fully joins")
|
||||||
ch1 = ac1.create_group("Group", protect=True)
|
ch1 = ac1.create_group("Group", protect=True)
|
||||||
qr_code = ch1.get_qr_code()
|
qr_code, _svg = 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()
|
||||||
|
|
||||||
@@ -394,7 +359,7 @@ def test_qr_join_chat_with_pending_bobstate_issue4894(acfactory):
|
|||||||
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")
|
||||||
qr_code = ch1.get_qr_code()
|
qr_code, _svg = ch1.get_qr_code()
|
||||||
ac2.secure_join(qr_code)
|
ac2.secure_join(qr_code)
|
||||||
ac1.remove()
|
ac1.remove()
|
||||||
logging.info("ac2 now has pending bobstate but ac1 is shutoff")
|
logging.info("ac2 now has pending bobstate but ac1 is shutoff")
|
||||||
@@ -416,7 +381,7 @@ def test_qr_join_chat_with_pending_bobstate_issue4894(acfactory):
|
|||||||
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")
|
||||||
qr_code = vg.get_qr_code()
|
qr_code, _svg = vg.get_qr_code()
|
||||||
ac4.secure_join(qr_code)
|
ac4.secure_join(qr_code)
|
||||||
ac3.wait_for_securejoin_inviter_success()
|
ac3.wait_for_securejoin_inviter_success()
|
||||||
while 1:
|
while 1:
|
||||||
@@ -437,7 +402,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", protect=True)
|
ac1_chat = ac1.create_group("Group for joining", protect=True)
|
||||||
qr_code = ac1_chat.get_qr_code()
|
qr_code, _svg = ac1_chat.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()
|
||||||
@@ -453,21 +418,17 @@ def test_qr_new_group_unblocked(acfactory):
|
|||||||
assert ac2_msg.chat.get_basic_snapshot().is_contact_request
|
assert ac2_msg.chat.get_basic_snapshot().is_contact_request
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.skip(reason="AEAP is disabled for now")
|
|
||||||
def test_aeap_flow_verified(acfactory):
|
def test_aeap_flow_verified(acfactory):
|
||||||
"""Test that a new address is added to a contact when it changes its address."""
|
"""Test that a new address is added to a contact when it changes its address."""
|
||||||
ac1, ac2 = acfactory.get_online_accounts(2)
|
ac1, ac2, ac1new = acfactory.get_online_accounts(3)
|
||||||
|
|
||||||
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", protect=True)
|
chat = ac1.create_group("hello", protect=True)
|
||||||
assert chat.get_basic_snapshot().is_protected
|
assert chat.get_basic_snapshot().is_protected
|
||||||
qr_code = chat.get_qr_code()
|
qr_code, _svg = 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)
|
||||||
ac1.wait_for_securejoin_inviter_success()
|
ac1.wait_for_securejoin_inviter_success()
|
||||||
ac2.wait_for_securejoin_joiner_success()
|
|
||||||
|
|
||||||
logging.info("sending first message")
|
logging.info("sending first message")
|
||||||
msg_out = chat.send_text("old address").get_snapshot()
|
msg_out = chat.send_text("old address").get_snapshot()
|
||||||
@@ -478,8 +439,8 @@ def test_aeap_flow_verified(acfactory):
|
|||||||
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")
|
||||||
ac1.set_config("addr", addr)
|
ac1.set_config("addr", ac1new.get_config("addr"))
|
||||||
ac1.set_config("mail_pw", password)
|
ac1.set_config("mail_pw", ac1new.get_config("mail_pw"))
|
||||||
ac1.stop_io()
|
ac1.stop_io()
|
||||||
ac1.configure()
|
ac1.configure()
|
||||||
ac1.start_io()
|
ac1.start_io()
|
||||||
@@ -492,27 +453,29 @@ def test_aeap_flow_verified(acfactory):
|
|||||||
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
|
||||||
assert msg_in_2.get_sender_contact().get_snapshot().address == addr
|
assert msg_in_2.get_sender_contact().get_snapshot().address == ac1new.get_config("addr")
|
||||||
assert len(msg_in_2_snapshot.chat.get_contacts()) == 2
|
assert len(msg_in_2_snapshot.chat.get_contacts()) == 2
|
||||||
assert addr in [contact.get_snapshot().address for contact in msg_in_2_snapshot.chat.get_contacts()]
|
assert ac1new.get_config("addr") in [
|
||||||
|
contact.get_snapshot().address for contact in msg_in_2_snapshot.chat.get_contacts()
|
||||||
|
]
|
||||||
|
|
||||||
|
|
||||||
def test_gossip_verification(acfactory) -> None:
|
def test_gossip_verification(acfactory) -> None:
|
||||||
alice, bob, carol = acfactory.get_online_accounts(3)
|
alice, bob, carol = acfactory.get_online_accounts(3)
|
||||||
|
|
||||||
# Bob verifies Alice.
|
# Bob verifies Alice.
|
||||||
qr_code = alice.get_qr_code()
|
qr_code, _svg = alice.get_qr_code()
|
||||||
bob.secure_join(qr_code)
|
bob.secure_join(qr_code)
|
||||||
bob.wait_for_securejoin_joiner_success()
|
bob.wait_for_securejoin_joiner_success()
|
||||||
|
|
||||||
# Bob verifies Carol.
|
# Bob verifies Carol.
|
||||||
qr_code = carol.get_qr_code()
|
qr_code, _svg = carol.get_qr_code()
|
||||||
bob.secure_join(qr_code)
|
bob.secure_join(qr_code)
|
||||||
bob.wait_for_securejoin_joiner_success()
|
bob.wait_for_securejoin_joiner_success()
|
||||||
|
|
||||||
bob_contact_alice = bob.create_contact(alice, "Alice")
|
bob_contact_alice = bob.create_contact(alice.get_config("addr"), "Alice")
|
||||||
bob_contact_carol = bob.create_contact(carol, "Carol")
|
bob_contact_carol = bob.create_contact(carol.get_config("addr"), "Carol")
|
||||||
carol_contact_alice = carol.create_contact(alice, "Alice")
|
carol_contact_alice = carol.create_contact(alice.get_config("addr"), "Alice")
|
||||||
|
|
||||||
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")
|
||||||
@@ -557,50 +520,37 @@ def test_securejoin_after_contact_resetup(acfactory) -> None:
|
|||||||
ac3_chat = ac3.create_group("Verified group", protect=True)
|
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, _svg = ac3_chat.get_qr_code()
|
||||||
ac1.secure_join(ac3_qr_code)
|
ac1.secure_join(ac3_qr_code)
|
||||||
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.get_message_by_id(ac1.wait_for_incoming_msg_event().msg_id).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"))
|
ac1_qr_code, _svg = snapshot.chat.get_qr_code()
|
||||||
ac1_qr_code = snapshot.chat.get_qr_code()
|
|
||||||
|
|
||||||
# ac2 verifies ac1
|
# ac2 verifies ac1
|
||||||
qr_code = ac1.get_qr_code()
|
qr_code, _svg = ac1.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()
|
||||||
|
|
||||||
# ac1 is verified for ac2.
|
# ac1 is verified for ac2.
|
||||||
ac2_contact_ac1 = ac2.create_contact(ac1, "")
|
ac2_contact_ac1 = ac2.create_contact(ac1.get_config("addr"), "")
|
||||||
assert ac2_contact_ac1.get_snapshot().is_verified
|
assert ac2_contact_ac1.get_snapshot().is_verified
|
||||||
|
|
||||||
# ac1 resetups the account.
|
# ac1 resetups the account.
|
||||||
ac1 = acfactory.resetup_account(ac1)
|
ac1 = acfactory.resetup_account(ac1)
|
||||||
|
|
||||||
# Loop sending message from ac1 to ac2
|
# ac1 sends a message to ac2.
|
||||||
# until ac2 accepts new ac1 key.
|
ac1_contact_ac2 = ac1.create_contact(ac2.get_config("addr"), "")
|
||||||
#
|
ac1_chat_ac2 = ac1_contact_ac2.create_chat()
|
||||||
# This may not happen immediately because resetup of ac1
|
ac1_chat_ac2.send_text("Hello!")
|
||||||
# rewinds "smeared timestamp" so Date: header for messages
|
|
||||||
# sent by new ac1 are in the past compared to the last Date:
|
|
||||||
# header sent by old ac1.
|
|
||||||
while True:
|
|
||||||
# ac1 sends a message to ac2.
|
|
||||||
ac1_contact_ac2 = ac1.create_contact(ac2, "")
|
|
||||||
ac1_chat_ac2 = ac1_contact_ac2.create_chat()
|
|
||||||
ac1_chat_ac2.send_text("Hello!")
|
|
||||||
|
|
||||||
# ac2 receives a message.
|
# ac2 receives a message.
|
||||||
snapshot = ac2.get_message_by_id(ac2.wait_for_incoming_msg_event().msg_id).get_snapshot()
|
snapshot = ac2.get_message_by_id(ac2.wait_for_incoming_msg_event().msg_id).get_snapshot()
|
||||||
assert snapshot.text == "Hello!"
|
assert snapshot.text == "Hello!"
|
||||||
logging.info("ac2 received Hello!")
|
|
||||||
|
|
||||||
# ac1 is no longer verified for ac2 as new Autocrypt key is not the same as old verified key.
|
# ac1 is no longer verified for ac2 as new Autocrypt key is not the same as old verified key.
|
||||||
logging.info("ac2 addr={}, ac1 addr={}".format(ac2.get_config("addr"), ac1.get_config("addr")))
|
assert not ac2_contact_ac1.get_snapshot().is_verified
|
||||||
if not ac2_contact_ac1.get_snapshot().is_verified:
|
|
||||||
break
|
|
||||||
time.sleep(1)
|
|
||||||
|
|
||||||
# ac1 goes offline.
|
# ac1 goes offline.
|
||||||
ac1.remove()
|
ac1.remove()
|
||||||
@@ -639,18 +589,16 @@ def test_withdraw_securejoin_qr(acfactory):
|
|||||||
assert alice_chat.get_basic_snapshot().is_protected
|
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, _svg = alice_chat.get_qr_code()
|
||||||
bob_chat = bob.secure_join(qr_code)
|
bob_chat = bob.secure_join(qr_code)
|
||||||
bob.wait_for_securejoin_joiner_success()
|
bob.wait_for_securejoin_joiner_success()
|
||||||
|
|
||||||
alice.clear_all_events()
|
|
||||||
|
|
||||||
snapshot = bob.get_message_by_id(bob.wait_for_incoming_msg_event().msg_id).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(bob.get_config("addr"), alice.get_config("addr"))
|
||||||
assert snapshot.chat.get_basic_snapshot().is_protected
|
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_incoming_msg_event().msg_id).get_snapshot()
|
||||||
assert snapshot.text == "Group left by {}.".format(bob.get_config("addr"))
|
assert snapshot.text == "Group left by {}.".format(bob.get_config("addr"))
|
||||||
|
|
||||||
logging.info("Alice withdraws QR code.")
|
logging.info("Alice withdraws QR code.")
|
||||||
@@ -664,8 +612,7 @@ def test_withdraw_securejoin_qr(acfactory):
|
|||||||
logging.info("Bob scanned withdrawn QR code")
|
logging.info("Bob scanned withdrawn QR code")
|
||||||
while True:
|
while True:
|
||||||
event = alice.wait_for_event()
|
event = alice.wait_for_event()
|
||||||
if (
|
if event.kind == EventType.MSGS_CHANGED and event.chat_id != 0:
|
||||||
event.kind == EventType.WARNING
|
|
||||||
and "Ignoring vg-request-with-auth message because of invalid auth code." in event.msg
|
|
||||||
):
|
|
||||||
break
|
break
|
||||||
|
snapshot = alice.get_message_by_id(event.msg_id).get_snapshot()
|
||||||
|
assert snapshot.text == "Cannot establish guaranteed end-to-end encryption with {}".format(bob.get_config("addr"))
|
||||||
|
|||||||
@@ -1,17 +1,15 @@
|
|||||||
import base64
|
|
||||||
import concurrent.futures
|
import concurrent.futures
|
||||||
import json
|
import json
|
||||||
import logging
|
import logging
|
||||||
import os
|
import os
|
||||||
import socket
|
|
||||||
import subprocess
|
import subprocess
|
||||||
import time
|
import time
|
||||||
from unittest.mock import MagicMock
|
from unittest.mock import MagicMock
|
||||||
|
|
||||||
import pytest
|
import pytest
|
||||||
|
|
||||||
from deltachat_rpc_client import Contact, EventType, Message, events
|
from deltachat_rpc_client import Contact, EventType, Message, events
|
||||||
from deltachat_rpc_client.const import DownloadState, MessageState
|
from deltachat_rpc_client.const import DownloadState, MessageState
|
||||||
|
from deltachat_rpc_client.direct_imap import DirectImap
|
||||||
from deltachat_rpc_client.rpc import JsonRpcError
|
from deltachat_rpc_client.rpc import JsonRpcError
|
||||||
|
|
||||||
|
|
||||||
@@ -56,107 +54,34 @@ def test_acfactory(acfactory) -> None:
|
|||||||
if event.progress == 1000: # Success
|
if event.progress == 1000: # Success
|
||||||
break
|
break
|
||||||
else:
|
else:
|
||||||
logging.info(event)
|
print(event)
|
||||||
logging.info("Successful configuration")
|
print("Successful configuration")
|
||||||
|
|
||||||
|
|
||||||
def test_configure_starttls(acfactory) -> None:
|
def test_configure_starttls(acfactory) -> None:
|
||||||
addr, password = acfactory.get_credentials()
|
account = acfactory.new_preconfigured_account()
|
||||||
account = acfactory.get_unconfigured_account()
|
|
||||||
account.add_or_update_transport(
|
# Use STARTTLS
|
||||||
{
|
account.set_config("mail_security", "2")
|
||||||
"addr": addr,
|
account.set_config("send_security", "2")
|
||||||
"password": password,
|
account.configure()
|
||||||
"imapSecurity": "starttls",
|
|
||||||
"smtpSecurity": "starttls",
|
|
||||||
},
|
|
||||||
)
|
|
||||||
assert account.is_configured()
|
assert account.is_configured()
|
||||||
|
|
||||||
|
|
||||||
def test_lowercase_address(acfactory) -> None:
|
|
||||||
addr, password = acfactory.get_credentials()
|
|
||||||
addr_upper = addr.upper()
|
|
||||||
account = acfactory.get_unconfigured_account()
|
|
||||||
account.add_or_update_transport(
|
|
||||||
{
|
|
||||||
"addr": addr_upper,
|
|
||||||
"password": password,
|
|
||||||
},
|
|
||||||
)
|
|
||||||
assert account.is_configured()
|
|
||||||
assert addr_upper != addr
|
|
||||||
assert account.get_config("configured_addr") == addr
|
|
||||||
assert account.list_transports()[0]["addr"] == addr
|
|
||||||
|
|
||||||
for param in [
|
|
||||||
account.get_info()["used_account_settings"],
|
|
||||||
account.get_info()["entered_account_settings"],
|
|
||||||
]:
|
|
||||||
assert addr in param
|
|
||||||
assert addr_upper not in param
|
|
||||||
|
|
||||||
|
|
||||||
def test_configure_ip(acfactory) -> None:
|
|
||||||
addr, password = acfactory.get_credentials()
|
|
||||||
account = acfactory.get_unconfigured_account()
|
|
||||||
ip_address = socket.gethostbyname(addr.rsplit("@")[-1])
|
|
||||||
|
|
||||||
with pytest.raises(JsonRpcError):
|
|
||||||
account.add_or_update_transport(
|
|
||||||
{
|
|
||||||
"addr": addr,
|
|
||||||
"password": password,
|
|
||||||
# This should fail TLS check.
|
|
||||||
"imapServer": ip_address,
|
|
||||||
},
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
def test_configure_alternative_port(acfactory) -> None:
|
|
||||||
"""Test that configuration with alternative port 443 works."""
|
|
||||||
addr, password = acfactory.get_credentials()
|
|
||||||
account = acfactory.get_unconfigured_account()
|
|
||||||
account.add_or_update_transport(
|
|
||||||
{
|
|
||||||
"addr": addr,
|
|
||||||
"password": password,
|
|
||||||
"imapPort": 443,
|
|
||||||
"smtpPort": 443,
|
|
||||||
},
|
|
||||||
)
|
|
||||||
assert account.is_configured()
|
|
||||||
|
|
||||||
|
|
||||||
def test_list_transports(acfactory) -> None:
|
|
||||||
addr, password = acfactory.get_credentials()
|
|
||||||
account = acfactory.get_unconfigured_account()
|
|
||||||
account.add_or_update_transport(
|
|
||||||
{
|
|
||||||
"addr": addr,
|
|
||||||
"password": password,
|
|
||||||
"imapUser": addr,
|
|
||||||
},
|
|
||||||
)
|
|
||||||
transports = account.list_transports()
|
|
||||||
assert len(transports) == 1
|
|
||||||
params = transports[0]
|
|
||||||
assert params["addr"] == addr
|
|
||||||
assert params["password"] == password
|
|
||||||
assert params["imapUser"] == addr
|
|
||||||
|
|
||||||
|
|
||||||
def test_account(acfactory) -> None:
|
def test_account(acfactory) -> None:
|
||||||
alice, bob = acfactory.get_online_accounts(2)
|
alice, bob = acfactory.get_online_accounts(2)
|
||||||
|
|
||||||
bob_addr = bob.get_config("addr")
|
bob_addr = bob.get_config("addr")
|
||||||
alice_contact_bob = alice.create_contact(bob, "Bob")
|
alice_contact_bob = alice.create_contact(bob_addr, "Bob")
|
||||||
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!")
|
||||||
|
|
||||||
event = bob.wait_for_incoming_msg_event()
|
while True:
|
||||||
chat_id = event.chat_id
|
event = bob.wait_for_event()
|
||||||
msg_id = event.msg_id
|
if event.kind == EventType.INCOMING_MSG:
|
||||||
|
chat_id = event.chat_id
|
||||||
|
msg_id = event.msg_id
|
||||||
|
break
|
||||||
|
|
||||||
message = bob.get_message_by_id(msg_id)
|
message = bob.get_message_by_id(msg_id)
|
||||||
snapshot = message.get_snapshot()
|
snapshot = message.get_snapshot()
|
||||||
@@ -178,12 +103,12 @@ def test_account(acfactory) -> None:
|
|||||||
assert alice.get_chatlist(snapshot=True)
|
assert alice.get_chatlist(snapshot=True)
|
||||||
assert alice.get_qr_code()
|
assert alice.get_qr_code()
|
||||||
assert alice.get_fresh_messages()
|
assert alice.get_fresh_messages()
|
||||||
|
assert alice.get_next_messages()
|
||||||
|
|
||||||
# Test sending empty message.
|
# Test sending empty message.
|
||||||
assert len(bob.wait_next_messages()) == 0
|
assert len(bob.wait_next_messages()) == 0
|
||||||
alice_chat_bob.send_text("")
|
alice_chat_bob.send_text("")
|
||||||
messages = bob.wait_next_messages()
|
messages = bob.wait_next_messages()
|
||||||
assert bob.get_next_messages() == messages
|
|
||||||
assert len(messages) == 1
|
assert len(messages) == 1
|
||||||
message = messages[0]
|
message = messages[0]
|
||||||
snapshot = message.get_snapshot()
|
snapshot = message.get_snapshot()
|
||||||
@@ -215,7 +140,8 @@ def test_account(acfactory) -> None:
|
|||||||
def test_chat(acfactory) -> None:
|
def test_chat(acfactory) -> None:
|
||||||
alice, bob = acfactory.get_online_accounts(2)
|
alice, bob = acfactory.get_online_accounts(2)
|
||||||
|
|
||||||
alice_contact_bob = alice.create_contact(bob, "Bob")
|
bob_addr = bob.get_config("addr")
|
||||||
|
alice_contact_bob = alice.create_contact(bob_addr, "Bob")
|
||||||
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!")
|
||||||
|
|
||||||
@@ -271,9 +197,7 @@ def test_chat(acfactory) -> None:
|
|||||||
group.get_fresh_message_count()
|
group.get_fresh_message_count()
|
||||||
group.mark_noticed()
|
group.mark_noticed()
|
||||||
assert group.get_contacts()
|
assert group.get_contacts()
|
||||||
assert group.get_past_contacts() == []
|
group.remove_contact(alice_chat_bob)
|
||||||
group.remove_contact(alice_contact_bob)
|
|
||||||
assert len(group.get_past_contacts()) == 1
|
|
||||||
group.get_locations()
|
group.get_locations()
|
||||||
|
|
||||||
|
|
||||||
@@ -281,13 +205,12 @@ def test_contact(acfactory) -> None:
|
|||||||
alice, bob = acfactory.get_online_accounts(2)
|
alice, bob = acfactory.get_online_accounts(2)
|
||||||
|
|
||||||
bob_addr = bob.get_config("addr")
|
bob_addr = bob.get_config("addr")
|
||||||
alice_contact_bob = alice.create_contact(bob, "Bob")
|
alice_contact_bob = alice.create_contact(bob_addr, "Bob")
|
||||||
|
|
||||||
assert alice_contact_bob == alice.get_contact_by_id(alice_contact_bob.id)
|
assert alice_contact_bob == alice.get_contact_by_id(alice_contact_bob.id)
|
||||||
assert repr(alice_contact_bob)
|
assert repr(alice_contact_bob)
|
||||||
alice_contact_bob.block()
|
alice_contact_bob.block()
|
||||||
alice_contact_bob.unblock()
|
alice_contact_bob.unblock()
|
||||||
alice_contact_bob.reset_encryption()
|
|
||||||
alice_contact_bob.set_name("new name")
|
alice_contact_bob.set_name("new name")
|
||||||
alice_contact_bob.get_encryption_info()
|
alice_contact_bob.get_encryption_info()
|
||||||
snapshot = alice_contact_bob.get_snapshot()
|
snapshot = alice_contact_bob.get_snapshot()
|
||||||
@@ -298,7 +221,8 @@ def test_contact(acfactory) -> None:
|
|||||||
def test_message(acfactory) -> None:
|
def test_message(acfactory) -> None:
|
||||||
alice, bob = acfactory.get_online_accounts(2)
|
alice, bob = acfactory.get_online_accounts(2)
|
||||||
|
|
||||||
alice_contact_bob = alice.create_contact(bob, "Bob")
|
bob_addr = bob.get_config("addr")
|
||||||
|
alice_contact_bob = alice.create_contact(bob_addr, "Bob")
|
||||||
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!")
|
||||||
|
|
||||||
@@ -326,74 +250,28 @@ def test_message(acfactory) -> None:
|
|||||||
assert reactions == snapshot.reactions
|
assert reactions == snapshot.reactions
|
||||||
|
|
||||||
|
|
||||||
def test_selfavatar_sync(acfactory, data, log) -> None:
|
|
||||||
alice = acfactory.get_online_account()
|
|
||||||
|
|
||||||
log.section("Alice adds a second device")
|
|
||||||
alice2 = alice.clone()
|
|
||||||
|
|
||||||
log.section("Second device goes online")
|
|
||||||
alice2.start_io()
|
|
||||||
|
|
||||||
log.section("First device changes avatar")
|
|
||||||
image = data.get_path("image/avatar1000x1000.jpg")
|
|
||||||
alice.set_config("selfavatar", image)
|
|
||||||
avatar_config = alice.get_config("selfavatar")
|
|
||||||
avatar_hash = os.path.basename(avatar_config)
|
|
||||||
print("Info: avatar hash is ", avatar_hash)
|
|
||||||
|
|
||||||
log.section("First device receives avatar change")
|
|
||||||
alice2.wait_for_event(EventType.SELFAVATAR_CHANGED)
|
|
||||||
avatar_config2 = alice2.get_config("selfavatar")
|
|
||||||
avatar_hash2 = os.path.basename(avatar_config2)
|
|
||||||
print("Info: avatar hash on second device is ", avatar_hash2)
|
|
||||||
assert avatar_hash == avatar_hash2
|
|
||||||
assert avatar_config != avatar_config2
|
|
||||||
|
|
||||||
|
|
||||||
def test_reaction_seen_on_another_dev(acfactory) -> None:
|
|
||||||
alice, bob = acfactory.get_online_accounts(2)
|
|
||||||
alice2 = alice.clone()
|
|
||||||
alice2.start_io()
|
|
||||||
|
|
||||||
alice_contact_bob = alice.create_contact(bob, "Bob")
|
|
||||||
alice_chat_bob = alice_contact_bob.create_chat()
|
|
||||||
alice_chat_bob.send_text("Hello!")
|
|
||||||
|
|
||||||
event = bob.wait_for_incoming_msg_event()
|
|
||||||
msg_id = event.msg_id
|
|
||||||
|
|
||||||
message = bob.get_message_by_id(msg_id)
|
|
||||||
snapshot = message.get_snapshot()
|
|
||||||
snapshot.chat.accept()
|
|
||||||
message.send_reaction("😎")
|
|
||||||
for a in [alice, alice2]:
|
|
||||||
a.wait_for_event(EventType.INCOMING_REACTION)
|
|
||||||
|
|
||||||
alice2.clear_all_events()
|
|
||||||
alice_chat_bob.mark_noticed()
|
|
||||||
chat_id = alice2.wait_for_event(EventType.MSGS_NOTICED).chat_id
|
|
||||||
alice2_chat_bob = alice2.create_chat(bob)
|
|
||||||
assert chat_id == alice2_chat_bob.id
|
|
||||||
|
|
||||||
|
|
||||||
def test_is_bot(acfactory) -> None:
|
def test_is_bot(acfactory) -> None:
|
||||||
"""Test that we can recognize messages submitted by bots."""
|
"""Test that we can recognize messages submitted by bots."""
|
||||||
alice, bob = acfactory.get_online_accounts(2)
|
alice, bob = acfactory.get_online_accounts(2)
|
||||||
|
|
||||||
alice_contact_bob = alice.create_contact(bob, "Bob")
|
bob_addr = bob.get_config("addr")
|
||||||
|
alice_contact_bob = alice.create_contact(bob_addr, "Bob")
|
||||||
alice_chat_bob = alice_contact_bob.create_chat()
|
alice_chat_bob = alice_contact_bob.create_chat()
|
||||||
|
|
||||||
# Alice becomes a bot.
|
# Alice becomes a bot.
|
||||||
alice.set_config("bot", "1")
|
alice.set_config("bot", "1")
|
||||||
alice_chat_bob.send_text("Hello!")
|
alice_chat_bob.send_text("Hello!")
|
||||||
|
|
||||||
event = bob.wait_for_incoming_msg_event()
|
while True:
|
||||||
message = bob.get_message_by_id(event.msg_id)
|
event = bob.wait_for_event()
|
||||||
snapshot = message.get_snapshot()
|
if event.kind == EventType.INCOMING_MSG:
|
||||||
assert snapshot.chat_id == event.chat_id
|
msg_id = event.msg_id
|
||||||
assert snapshot.text == "Hello!"
|
message = bob.get_message_by_id(msg_id)
|
||||||
assert snapshot.is_bot
|
snapshot = message.get_snapshot()
|
||||||
|
assert snapshot.chat_id == event.chat_id
|
||||||
|
assert snapshot.text == "Hello!"
|
||||||
|
assert snapshot.is_bot
|
||||||
|
break
|
||||||
|
|
||||||
|
|
||||||
def test_bot(acfactory) -> None:
|
def test_bot(acfactory) -> None:
|
||||||
@@ -440,11 +318,9 @@ def test_wait_next_messages(acfactory) -> None:
|
|||||||
alice = acfactory.new_configured_account()
|
alice = acfactory.new_configured_account()
|
||||||
|
|
||||||
# Create a bot account so it does not receive device messages in the beginning.
|
# Create a bot account so it does not receive device messages in the beginning.
|
||||||
addr, password = acfactory.get_credentials()
|
bot = acfactory.new_preconfigured_account()
|
||||||
bot = acfactory.get_unconfigured_account()
|
|
||||||
bot.set_config("bot", "1")
|
bot.set_config("bot", "1")
|
||||||
bot.add_or_update_transport({"addr": addr, "password": password})
|
bot.configure()
|
||||||
assert bot.is_configured()
|
|
||||||
|
|
||||||
# There are no old messages and the call returns immediately.
|
# There are no old messages and the call returns immediately.
|
||||||
assert not bot.wait_next_messages()
|
assert not bot.wait_next_messages()
|
||||||
@@ -453,7 +329,8 @@ def test_wait_next_messages(acfactory) -> None:
|
|||||||
# Bot starts waiting for messages.
|
# Bot starts waiting for messages.
|
||||||
next_messages_task = executor.submit(bot.wait_next_messages)
|
next_messages_task = executor.submit(bot.wait_next_messages)
|
||||||
|
|
||||||
alice_contact_bot = alice.create_contact(bot, "Bot")
|
bot_addr = bot.get_config("addr")
|
||||||
|
alice_contact_bot = alice.create_contact(bot_addr, "Bot")
|
||||||
alice_chat_bot = alice_contact_bot.create_chat()
|
alice_chat_bot = alice_contact_bot.create_chat()
|
||||||
alice_chat_bot.send_text("Hello!")
|
alice_chat_bot.send_text("Hello!")
|
||||||
|
|
||||||
@@ -477,7 +354,9 @@ def test_import_export_backup(acfactory, tmp_path) -> None:
|
|||||||
def test_import_export_keys(acfactory, tmp_path) -> None:
|
def test_import_export_keys(acfactory, tmp_path) -> None:
|
||||||
alice, bob = acfactory.get_online_accounts(2)
|
alice, bob = acfactory.get_online_accounts(2)
|
||||||
|
|
||||||
alice_chat_bob = alice.create_chat(bob)
|
bob_addr = bob.get_config("addr")
|
||||||
|
alice_contact_bob = alice.create_contact(bob_addr, "Bob")
|
||||||
|
alice_chat_bob = alice_contact_bob.create_chat()
|
||||||
alice_chat_bob.send_text("Hello Bob!")
|
alice_chat_bob.send_text("Hello Bob!")
|
||||||
|
|
||||||
snapshot = bob.get_message_by_id(bob.wait_for_incoming_msg_event().msg_id).get_snapshot()
|
snapshot = bob.get_message_by_id(bob.wait_for_incoming_msg_event().msg_id).get_snapshot()
|
||||||
@@ -519,7 +398,7 @@ def test_provider_info(rpc) -> None:
|
|||||||
assert provider_info["id"] == "gmail"
|
assert provider_info["id"] == "gmail"
|
||||||
|
|
||||||
# Disable MX record resolution.
|
# Disable MX record resolution.
|
||||||
rpc.set_config(account_id, "proxy_enabled", "1")
|
rpc.set_config(account_id, "socks5_enabled", "1")
|
||||||
provider_info = rpc.get_provider_info(account_id, "github.com")
|
provider_info = rpc.get_provider_info(account_id, "github.com")
|
||||||
assert provider_info is None
|
assert provider_info is None
|
||||||
|
|
||||||
@@ -527,7 +406,9 @@ def test_provider_info(rpc) -> None:
|
|||||||
def test_mdn_doesnt_break_autocrypt(acfactory) -> None:
|
def test_mdn_doesnt_break_autocrypt(acfactory) -> None:
|
||||||
alice, bob = acfactory.get_online_accounts(2)
|
alice, bob = acfactory.get_online_accounts(2)
|
||||||
|
|
||||||
alice_contact_bob = alice.create_contact(bob, "Bob")
|
bob_addr = bob.get_config("addr")
|
||||||
|
|
||||||
|
alice_contact_bob = alice.create_contact(bob_addr, "Bob")
|
||||||
|
|
||||||
# Bob creates chat manually so chat with Alice is accepted.
|
# Bob creates chat manually so chat with Alice is accepted.
|
||||||
alice_chat_bob = alice_contact_bob.create_chat()
|
alice_chat_bob = alice_contact_bob.create_chat()
|
||||||
@@ -551,7 +432,10 @@ def test_mdn_doesnt_break_autocrypt(acfactory) -> None:
|
|||||||
|
|
||||||
# Alice reads Bob's message.
|
# Alice reads Bob's message.
|
||||||
message.mark_seen()
|
message.mark_seen()
|
||||||
bob.wait_for_event(EventType.MSG_READ)
|
while True:
|
||||||
|
event = bob.wait_for_event()
|
||||||
|
if event.kind == EventType.MSG_READ:
|
||||||
|
break
|
||||||
|
|
||||||
# Bob sends a message to Alice, it should also be encrypted.
|
# Bob sends a message to Alice, it should also be encrypted.
|
||||||
bob_chat_alice.send_text("Hi Alice!")
|
bob_chat_alice.send_text("Hi Alice!")
|
||||||
@@ -616,20 +500,16 @@ def test_reaction_to_partially_fetched_msg(acfactory, tmp_path):
|
|||||||
assert list(reactions.reactions_by_contact.values())[0] == [react_str]
|
assert list(reactions.reactions_by_contact.values())[0] == [react_str]
|
||||||
|
|
||||||
|
|
||||||
def test_reactions_for_a_reordering_move(acfactory, direct_imap):
|
def test_reactions_for_a_reordering_move(acfactory):
|
||||||
"""When a batch of messages is moved from Inbox to DeltaChat folder with a single MOVE command,
|
"""When a batch of messages is moved from Inbox to DeltaChat folder with a single MOVE command,
|
||||||
their UIDs may be reordered (e.g. Gmail is known for that) which led to that messages were
|
their UIDs may be reordered (e.g. Gmail is known for that) which led to that messages were
|
||||||
processed by receive_imf in the wrong order, and, particularly, reactions were processed before
|
processed by receive_imf in the wrong order, and, particularly, reactions were processed before
|
||||||
messages they refer to and thus dropped.
|
messages they refer to and thus dropped.
|
||||||
"""
|
"""
|
||||||
(ac1,) = acfactory.get_online_accounts(1)
|
(ac1,) = acfactory.get_online_accounts(1)
|
||||||
|
ac2 = acfactory.new_preconfigured_account()
|
||||||
addr, password = acfactory.get_credentials()
|
ac2.configure()
|
||||||
ac2 = acfactory.get_unconfigured_account()
|
|
||||||
ac2.add_or_update_transport({"addr": addr, "password": password})
|
|
||||||
ac2.set_config("mvbox_move", "1")
|
ac2.set_config("mvbox_move", "1")
|
||||||
assert ac2.is_configured()
|
|
||||||
|
|
||||||
ac2.bring_online()
|
ac2.bring_online()
|
||||||
chat1 = acfactory.get_accepted_chat(ac1, ac2)
|
chat1 = acfactory.get_accepted_chat(ac1, ac2)
|
||||||
ac2.stop_io()
|
ac2.stop_io()
|
||||||
@@ -644,7 +524,7 @@ def test_reactions_for_a_reordering_move(acfactory, direct_imap):
|
|||||||
msg1.send_reaction(react_str).wait_until_delivered()
|
msg1.send_reaction(react_str).wait_until_delivered()
|
||||||
|
|
||||||
logging.info("moving messages to ac2's DeltaChat folder in the reverse order")
|
logging.info("moving messages to ac2's DeltaChat folder in the reverse order")
|
||||||
ac2_direct_imap = direct_imap(ac2)
|
ac2_direct_imap = DirectImap(ac2)
|
||||||
ac2_direct_imap.connect()
|
ac2_direct_imap.connect()
|
||||||
for uid in sorted([m.uid for m in ac2_direct_imap.get_all_messages()], reverse=True):
|
for uid in sorted([m.uid for m in ac2_direct_imap.get_all_messages()], reverse=True):
|
||||||
ac2_direct_imap.conn.move(uid, "DeltaChat")
|
ac2_direct_imap.conn.move(uid, "DeltaChat")
|
||||||
@@ -673,7 +553,9 @@ def test_download_limit_chat_assignment(acfactory, tmp_path, n_accounts):
|
|||||||
chat.send_text("Hello Alice!")
|
chat.send_text("Hello Alice!")
|
||||||
assert alice.get_message_by_id(alice.wait_for_incoming_msg_event().msg_id).get_snapshot().text == "Hello Alice!"
|
assert alice.get_message_by_id(alice.wait_for_incoming_msg_event().msg_id).get_snapshot().text == "Hello Alice!"
|
||||||
|
|
||||||
contact = alice.create_contact(account)
|
contact_addr = account.get_config("addr")
|
||||||
|
contact = alice.create_contact(contact_addr, "")
|
||||||
|
|
||||||
alice_group.add_contact(contact)
|
alice_group.add_contact(contact)
|
||||||
|
|
||||||
if n_accounts == 2:
|
if n_accounts == 2:
|
||||||
@@ -704,7 +586,7 @@ def test_download_limit_chat_assignment(acfactory, tmp_path, n_accounts):
|
|||||||
assert snapshot.chat == bob_chat_alice
|
assert snapshot.chat == bob_chat_alice
|
||||||
|
|
||||||
|
|
||||||
def test_markseen_contact_request(acfactory):
|
def test_markseen_contact_request(acfactory, tmp_path):
|
||||||
"""
|
"""
|
||||||
Test that seen status is synchronized for contact request messages
|
Test that seen status is synchronized for contact request messages
|
||||||
even though read receipt is not sent.
|
even though read receipt is not sent.
|
||||||
@@ -712,7 +594,10 @@ def test_markseen_contact_request(acfactory):
|
|||||||
alice, bob = acfactory.get_online_accounts(2)
|
alice, bob = acfactory.get_online_accounts(2)
|
||||||
|
|
||||||
# Bob sets up a second device.
|
# Bob sets up a second device.
|
||||||
bob2 = bob.clone()
|
bob.export_backup(tmp_path)
|
||||||
|
files = list(tmp_path.glob("*.tar"))
|
||||||
|
bob2 = acfactory.get_unconfigured_account()
|
||||||
|
bob2.import_backup(files[0])
|
||||||
bob2.start_io()
|
bob2.start_io()
|
||||||
|
|
||||||
alice_chat_bob = alice.create_chat(bob)
|
alice_chat_bob = alice.create_chat(bob)
|
||||||
@@ -723,127 +608,8 @@ def test_markseen_contact_request(acfactory):
|
|||||||
assert message2.get_snapshot().state == MessageState.IN_FRESH
|
assert message2.get_snapshot().state == MessageState.IN_FRESH
|
||||||
|
|
||||||
message.mark_seen()
|
message.mark_seen()
|
||||||
bob2.wait_for_event(EventType.MSGS_NOTICED)
|
|
||||||
assert message2.get_snapshot().state == MessageState.IN_SEEN
|
|
||||||
|
|
||||||
|
|
||||||
def test_get_http_response(acfactory):
|
|
||||||
alice = acfactory.new_configured_account()
|
|
||||||
http_response = alice._rpc.get_http_response(alice.id, "https://example.org")
|
|
||||||
assert http_response["mimetype"] == "text/html"
|
|
||||||
assert b"<title>Example Domain</title>" in base64.b64decode((http_response["blob"] + "==").encode())
|
|
||||||
|
|
||||||
|
|
||||||
def test_configured_imap_certificate_checks(acfactory):
|
|
||||||
alice = acfactory.new_configured_account()
|
|
||||||
|
|
||||||
# Certificate checks should be configured (not None)
|
|
||||||
assert "cert_automatic" in alice.get_info().used_account_settings
|
|
||||||
|
|
||||||
# "cert_old_automatic" is the value old Delta Chat core versions used
|
|
||||||
# to mean user entered "imap_certificate_checks=0" (Automatic)
|
|
||||||
# and configuration failed to use strict TLS checks
|
|
||||||
# so it switched strict TLS checks off.
|
|
||||||
#
|
|
||||||
# New versions of Delta Chat are not disabling TLS checks
|
|
||||||
# unless users explicitly disables them
|
|
||||||
# or provider database says provider has invalid certificates.
|
|
||||||
#
|
|
||||||
# Core 1.142.4, 1.142.5 and 1.142.6 saved this value due to bug.
|
|
||||||
# This test is a regression test to prevent this happening again.
|
|
||||||
assert "cert_old_automatic" not in alice.get_info().used_account_settings
|
|
||||||
|
|
||||||
|
|
||||||
def test_no_old_msg_is_fresh(acfactory):
|
|
||||||
ac1, ac2 = acfactory.get_online_accounts(2)
|
|
||||||
ac1_clone = ac1.clone()
|
|
||||||
ac1_clone.start_io()
|
|
||||||
|
|
||||||
ac1.create_chat(ac2)
|
|
||||||
ac1_clone_chat = ac1_clone.create_chat(ac2)
|
|
||||||
|
|
||||||
ac1.get_device_chat().mark_noticed()
|
|
||||||
|
|
||||||
logging.info("Send a first message from ac2 to ac1 and check that it's 'fresh'")
|
|
||||||
first_msg = ac2.create_chat(ac1).send_text("Hi")
|
|
||||||
ac1.wait_for_incoming_msg_event()
|
|
||||||
assert ac1.create_chat(ac2).get_fresh_message_count() == 1
|
|
||||||
assert len(list(ac1.get_fresh_messages())) == 1
|
|
||||||
|
|
||||||
ac1.wait_for_event(EventType.IMAP_INBOX_IDLE)
|
|
||||||
|
|
||||||
logging.info("Send a message from ac1_clone to ac2 and check that ac1 marks the first message as 'noticed'")
|
|
||||||
ac1_clone_chat.send_text("Hi back")
|
|
||||||
ev = ac1.wait_for_msgs_noticed_event()
|
|
||||||
|
|
||||||
assert ev.chat_id == first_msg.get_snapshot().chat_id
|
|
||||||
assert ac1.create_chat(ac2).get_fresh_message_count() == 0
|
|
||||||
assert len(list(ac1.get_fresh_messages())) == 0
|
|
||||||
|
|
||||||
|
|
||||||
def test_rename_synchronization(acfactory):
|
|
||||||
"""Test synchronization of contact renaming."""
|
|
||||||
alice, bob = acfactory.get_online_accounts(2)
|
|
||||||
alice2 = alice.clone()
|
|
||||||
alice2.bring_online()
|
|
||||||
|
|
||||||
bob.set_config("displayname", "Bob")
|
|
||||||
bob.create_chat(alice).send_text("Hello!")
|
|
||||||
alice_msg = alice.wait_for_incoming_msg().get_snapshot()
|
|
||||||
alice2_msg = alice2.wait_for_incoming_msg().get_snapshot()
|
|
||||||
|
|
||||||
assert alice2_msg.sender.get_snapshot().display_name == "Bob"
|
|
||||||
alice_msg.sender.set_name("Bobby")
|
|
||||||
alice2.wait_for_event(EventType.CONTACTS_CHANGED)
|
|
||||||
assert alice2_msg.sender.get_snapshot().display_name == "Bobby"
|
|
||||||
|
|
||||||
|
|
||||||
def test_rename_group(acfactory):
|
|
||||||
"""Test renaming the group."""
|
|
||||||
alice, bob = acfactory.get_online_accounts(2)
|
|
||||||
|
|
||||||
alice_group = alice.create_group("Test group")
|
|
||||||
alice_contact_bob = alice.create_contact(bob)
|
|
||||||
alice_group.add_contact(alice_contact_bob)
|
|
||||||
alice_group.send_text("Hello!")
|
|
||||||
|
|
||||||
bob_msg = bob.wait_for_incoming_msg()
|
|
||||||
bob_chat = bob_msg.get_snapshot().chat
|
|
||||||
assert bob_chat.get_basic_snapshot().name == "Test group"
|
|
||||||
|
|
||||||
for name in ["Baz", "Foo bar", "Xyzzy"]:
|
|
||||||
alice_group.set_name(name)
|
|
||||||
bob.wait_for_incoming_msg_event()
|
|
||||||
assert bob_chat.get_basic_snapshot().name == name
|
|
||||||
|
|
||||||
|
|
||||||
def test_get_all_accounts_deadlock(rpc):
|
|
||||||
"""Regression test for get_all_accounts deadlock."""
|
|
||||||
for _ in range(100):
|
|
||||||
all_accounts = rpc.get_all_accounts.future()
|
|
||||||
rpc.add_account()
|
|
||||||
all_accounts()
|
|
||||||
|
|
||||||
|
|
||||||
def test_delete_deltachat_folder(acfactory, direct_imap):
|
|
||||||
"""Test that DeltaChat folder is recreated if user deletes it manually."""
|
|
||||||
ac1 = acfactory.new_configured_account()
|
|
||||||
ac1.set_config("mvbox_move", "1")
|
|
||||||
ac1.bring_online()
|
|
||||||
|
|
||||||
ac1_direct_imap = direct_imap(ac1)
|
|
||||||
ac1_direct_imap.conn.folder.delete("DeltaChat")
|
|
||||||
assert "DeltaChat" not in ac1_direct_imap.list_folders()
|
|
||||||
|
|
||||||
# Wait until new folder is created and UIDVALIDITY is updated.
|
|
||||||
while True:
|
while True:
|
||||||
event = ac1.wait_for_event()
|
event = bob2.wait_for_event()
|
||||||
if event.kind == EventType.INFO and "uid/validity change folder DeltaChat" in event.msg:
|
if event.kind == EventType.MSGS_NOTICED:
|
||||||
break
|
break
|
||||||
|
assert message2.get_snapshot().state == MessageState.IN_SEEN
|
||||||
ac2 = acfactory.get_online_account()
|
|
||||||
ac2.create_chat(ac1).send_text("hello")
|
|
||||||
msg = ac1.wait_for_incoming_msg().get_snapshot()
|
|
||||||
assert msg.text == "hello"
|
|
||||||
|
|
||||||
assert "DeltaChat" in ac1_direct_imap.list_folders()
|
|
||||||
|
|||||||
@@ -1,7 +1,8 @@
|
|||||||
def test_vcard(acfactory) -> None:
|
def test_vcard(acfactory) -> None:
|
||||||
alice, bob = acfactory.get_online_accounts(2)
|
alice, bob = acfactory.get_online_accounts(2)
|
||||||
|
|
||||||
alice_contact_bob = alice.create_contact(bob, "Bob")
|
bob_addr = bob.get_config("addr")
|
||||||
|
alice_contact_bob = alice.create_contact(bob_addr, "Bob")
|
||||||
alice_contact_charlie = alice.create_contact("charlie@example.org", "Charlie")
|
alice_contact_charlie = alice.create_contact("charlie@example.org", "Charlie")
|
||||||
|
|
||||||
alice_chat_bob = alice_contact_bob.create_chat()
|
alice_chat_bob = alice_contact_bob.create_chat()
|
||||||
|
|||||||
@@ -1,13 +1,20 @@
|
|||||||
|
from deltachat_rpc_client import EventType
|
||||||
|
|
||||||
|
|
||||||
def test_webxdc(acfactory) -> None:
|
def test_webxdc(acfactory) -> None:
|
||||||
alice, bob = acfactory.get_online_accounts(2)
|
alice, bob = acfactory.get_online_accounts(2)
|
||||||
|
|
||||||
alice_contact_bob = alice.create_contact(bob, "Bob")
|
bob_addr = bob.get_config("addr")
|
||||||
|
alice_contact_bob = alice.create_contact(bob_addr, "Bob")
|
||||||
alice_chat_bob = alice_contact_bob.create_chat()
|
alice_chat_bob = alice_contact_bob.create_chat()
|
||||||
alice_chat_bob.send_message(text="Let's play chess!", file="../test-data/webxdc/chess.xdc")
|
alice_chat_bob.send_message(text="Let's play chess!", file="../test-data/webxdc/chess.xdc")
|
||||||
|
|
||||||
event = bob.wait_for_incoming_msg_event()
|
while True:
|
||||||
bob_chat_alice = bob.get_chat_by_id(event.chat_id)
|
event = bob.wait_for_event()
|
||||||
message = bob.get_message_by_id(event.msg_id)
|
if event.kind == EventType.INCOMING_MSG:
|
||||||
|
bob_chat_alice = bob.get_chat_by_id(event.chat_id)
|
||||||
|
message = bob.get_message_by_id(event.msg_id)
|
||||||
|
break
|
||||||
|
|
||||||
webxdc_info = message.get_webxdc_info()
|
webxdc_info = message.get_webxdc_info()
|
||||||
assert webxdc_info == {
|
assert webxdc_info == {
|
||||||
@@ -17,9 +24,6 @@ def test_webxdc(acfactory) -> None:
|
|||||||
"name": "Chess Board",
|
"name": "Chess Board",
|
||||||
"sourceCodeUrl": None,
|
"sourceCodeUrl": None,
|
||||||
"summary": None,
|
"summary": None,
|
||||||
"selfAddr": webxdc_info["selfAddr"],
|
|
||||||
"sendUpdateInterval": 1000,
|
|
||||||
"sendUpdateMaxSize": 18874368,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
status_updates = message.get_webxdc_status_updates()
|
status_updates = message.get_webxdc_status_updates()
|
||||||
@@ -44,7 +48,8 @@ def test_webxdc(acfactory) -> None:
|
|||||||
def test_webxdc_insert_lots_of_updates(acfactory) -> None:
|
def test_webxdc_insert_lots_of_updates(acfactory) -> None:
|
||||||
alice, bob = acfactory.get_online_accounts(2)
|
alice, bob = acfactory.get_online_accounts(2)
|
||||||
|
|
||||||
alice_contact_bob = alice.create_contact(bob, "Bob")
|
bob_addr = bob.get_config("addr")
|
||||||
|
alice_contact_bob = alice.create_contact(bob_addr, "Bob")
|
||||||
alice_chat_bob = alice_contact_bob.create_chat()
|
alice_chat_bob = alice_contact_bob.create_chat()
|
||||||
message = alice_chat_bob.send_message(text="Let's play chess!", file="../test-data/webxdc/chess.xdc")
|
message = alice_chat_bob.send_message(text="Let's play chess!", file="../test-data/webxdc/chess.xdc")
|
||||||
|
|
||||||
|
|||||||
@@ -12,8 +12,10 @@ setenv =
|
|||||||
RUST_MIN_STACK=8388608
|
RUST_MIN_STACK=8388608
|
||||||
passenv =
|
passenv =
|
||||||
CHATMAIL_DOMAIN
|
CHATMAIL_DOMAIN
|
||||||
dependency_groups =
|
deps =
|
||||||
dev
|
pytest
|
||||||
|
pytest-timeout
|
||||||
|
pytest-xdist
|
||||||
|
|
||||||
[testenv:lint]
|
[testenv:lint]
|
||||||
skipsdist = True
|
skipsdist = True
|
||||||
@@ -21,10 +23,10 @@ skip_install = True
|
|||||||
deps =
|
deps =
|
||||||
ruff
|
ruff
|
||||||
commands =
|
commands =
|
||||||
ruff format --diff src/ examples/ tests/
|
ruff format --quiet --diff src/ examples/ tests/
|
||||||
ruff check src/ examples/ tests/
|
ruff check src/ examples/ tests/
|
||||||
|
|
||||||
[pytest]
|
[pytest]
|
||||||
timeout = 300
|
timeout = 300
|
||||||
log_cli = true
|
#log_cli = true
|
||||||
log_level = debug
|
log_level = debug
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "deltachat-rpc-server"
|
name = "deltachat-rpc-server"
|
||||||
version = "1.159.4"
|
version = "1.140.0"
|
||||||
description = "DeltaChat JSON-RPC server"
|
description = "DeltaChat JSON-RPC server"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
@@ -10,18 +10,18 @@ keywords = ["deltachat", "chat", "openpgp", "email", "encryption"]
|
|||||||
categories = ["cryptography", "std", "email"]
|
categories = ["cryptography", "std", "email"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
deltachat-jsonrpc = { workspace = true }
|
deltachat-jsonrpc = { path = "../deltachat-jsonrpc", default-features = false }
|
||||||
deltachat = { workspace = true }
|
deltachat = { path = "..", default-features = false }
|
||||||
|
|
||||||
anyhow = { workspace = true }
|
anyhow = "1"
|
||||||
futures-lite = { workspace = true }
|
futures-lite = "2.3.0"
|
||||||
log = { workspace = true }
|
log = "0.4"
|
||||||
serde_json = { workspace = true }
|
serde_json = "1"
|
||||||
serde = { workspace = true, features = ["derive"] }
|
serde = { version = "1.0", features = ["derive"] }
|
||||||
tokio = { workspace = true, features = ["io-std"] }
|
tokio = { version = "1.37.0", features = ["io-std"] }
|
||||||
tokio-util = { workspace = true }
|
tokio-util = "0.7.9"
|
||||||
tracing-subscriber = { workspace = true, features = ["env-filter"] }
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
||||||
yerpc = { workspace = true, features = ["anyhow_expose", "openrpc"] }
|
yerpc = { version = "0.5.2", features = ["anyhow_expose", "openrpc"] }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["vendored"]
|
default = ["vendored"]
|
||||||
|
|||||||
@@ -5,13 +5,13 @@ over standard I/O.
|
|||||||
|
|
||||||
## Install
|
## Install
|
||||||
|
|
||||||
To download binary pre-builds check the [releases page](https://github.com/chatmail/core/releases).
|
To download binary pre-builds check the [releases page](https://github.com/deltachat/deltachat-core-rust/releases).
|
||||||
Rename the downloaded binary to `deltachat-rpc-server` and add it to your `PATH`.
|
Rename the downloaded binary to `deltachat-rpc-server` and add it to your `PATH`.
|
||||||
|
|
||||||
To install from source run:
|
To install from source run:
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
cargo install --git https://github.com/chatmail/core/ deltachat-rpc-server
|
cargo install --git https://github.com/deltachat/deltachat-core-rust/ deltachat-rpc-server
|
||||||
```
|
```
|
||||||
|
|
||||||
The `deltachat-rpc-server` executable will be installed into `$HOME/.cargo/bin` that should be available
|
The `deltachat-rpc-server` executable will be installed into `$HOME/.cargo/bin` that should be available
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ This simplifies cross-compilation and even reduces binary size (no CFFI layer an
|
|||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
> The **minimum** nodejs version for this package is `16`
|
> The **minimum** nodejs version for this package is `20.11`
|
||||||
|
|
||||||
```
|
```
|
||||||
npm i @deltachat/stdio-rpc-server @deltachat/jsonrpc-client
|
npm i @deltachat/stdio-rpc-server @deltachat/jsonrpc-client
|
||||||
@@ -65,13 +65,13 @@ so by default it uses the prebuilds.
|
|||||||
- this will run `update_optional_dependencies_and_version.js` (in the `prepack` script),
|
- this will run `update_optional_dependencies_and_version.js` (in the `prepack` script),
|
||||||
which puts all platform packages into `optionalDependencies` and updates the `version` in `package.json`
|
which puts all platform packages into `optionalDependencies` and updates the `version` in `package.json`
|
||||||
|
|
||||||
## How to build a version you can use locally on your host machine for development
|
## How to build a version you can use localy on your host machine for development
|
||||||
|
|
||||||
You can not install the npm packet from the previous section locally, unless you have a local npm registry set up where you upload it too. This is why we have separate scripts for making it work for local installation.
|
You can not install the npm packet from the previous section locally, unless you have a local npm registry set up where you upload it too. This is why we have seperate scripts for making it work for local installation.
|
||||||
|
|
||||||
- If you just need your host platform run `python scripts/make_local_dev_version.py`
|
- If you just need your host platform run `python scripts/make_local_dev_version.py`
|
||||||
- note: this clears the `platform_package` folder
|
- note: this clears the `platform_package` folder
|
||||||
- (advanced) If you need more than one platform for local install you can just run `node scripts/update_optional_dependencies_and_version.js` after building multiple platforms with `build_platform_package.py`
|
- (advanced) If you need more than one platform for local install you can just run `node scripts/update_optional_dependencies_and_version.js` after building multiple plaftorms with `build_platform_package.py`
|
||||||
|
|
||||||
## Thanks to nlnet
|
## Thanks to nlnet
|
||||||
|
|
||||||
|
|||||||
@@ -11,6 +11,9 @@ import {
|
|||||||
NPM_NOT_FOUND_UNSUPPORTED_PLATFORM_ERROR,
|
NPM_NOT_FOUND_UNSUPPORTED_PLATFORM_ERROR,
|
||||||
} from "./src/errors.js";
|
} from "./src/errors.js";
|
||||||
|
|
||||||
|
// Because this is not compiled by typescript, esm needs this stuff (` with { type: "json" };`,
|
||||||
|
// nodejs still complains about it being experimental, but deno also uses it, so treefit bets taht it will become standard)
|
||||||
|
import package_json from "./package.json" with { type: "json" };
|
||||||
import { createRequire } from "node:module";
|
import { createRequire } from "node:module";
|
||||||
|
|
||||||
function findRPCServerInNodeModules() {
|
function findRPCServerInNodeModules() {
|
||||||
@@ -22,12 +25,7 @@ function findRPCServerInNodeModules() {
|
|||||||
return resolve(package_name);
|
return resolve(package_name);
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.debug("findRpcServerInNodeModules", error);
|
console.debug("findRpcServerInNodeModules", error);
|
||||||
const require = createRequire(import.meta.url);
|
if (Object.keys(package_json.optionalDependencies).includes(package_name)) {
|
||||||
if (
|
|
||||||
Object.keys(require("./package.json").optionalDependencies).includes(
|
|
||||||
package_name
|
|
||||||
)
|
|
||||||
) {
|
|
||||||
throw new Error(NPM_NOT_FOUND_SUPPORTED_PLATFORM_ERROR(package_name));
|
throw new Error(NPM_NOT_FOUND_SUPPORTED_PLATFORM_ERROR(package_name));
|
||||||
} else {
|
} else {
|
||||||
throw new Error(NPM_NOT_FOUND_UNSUPPORTED_PLATFORM_ERROR());
|
throw new Error(NPM_NOT_FOUND_UNSUPPORTED_PLATFORM_ERROR());
|
||||||
|
|||||||
@@ -8,12 +8,12 @@
|
|||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/chatmail/core.git"
|
"url": "https://github.com/deltachat/deltachat-core-rust.git"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"prepack": "node scripts/update_optional_dependencies_and_version.js"
|
"prepack": "node scripts/update_optional_dependencies_and_version.js"
|
||||||
},
|
},
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"types": "index.d.ts",
|
"types": "index.d.ts",
|
||||||
"version": "1.159.4"
|
"version": "1.140.0"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -25,7 +25,7 @@ def write_package_json(platform_path, rust_target, my_binary_name):
|
|||||||
"license": "MPL-2.0",
|
"license": "MPL-2.0",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/chatmail/core.git",
|
"url": "https://github.com/deltachat/deltachat-core-rust.git",
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ const expected_cwd = join(dirname(fileURLToPath(import.meta.url)), "..");
|
|||||||
|
|
||||||
if (process.cwd() !== expected_cwd) {
|
if (process.cwd() !== expected_cwd) {
|
||||||
console.error(
|
console.error(
|
||||||
"CWD mismatch: this script needs to be run from " + expected_cwd,
|
"CWD missmatch: this script needs to be run from " + expected_cwd,
|
||||||
{ actual: process.cwd(), expected: expected_cwd }
|
{ actual: process.cwd(), expected: expected_cwd }
|
||||||
);
|
);
|
||||||
process.exit(1);
|
process.exit(1);
|
||||||
@@ -40,7 +40,7 @@ const platform_package_names = await Promise.all(
|
|||||||
"has a different version than the version of the rpc server.",
|
"has a different version than the version of the rpc server.",
|
||||||
{ rpc_server: version, platform_package: p.version }
|
{ rpc_server: version, platform_package: p.version }
|
||||||
);
|
);
|
||||||
throw new Error("version mismatch");
|
throw new Error("version missmatch");
|
||||||
}
|
}
|
||||||
return { folder_name: name, package_name: p.name };
|
return { folder_name: name, package_name: p.name };
|
||||||
})
|
})
|
||||||
@@ -55,10 +55,9 @@ for (const { folder_name, package_name } of platform_package_names) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (is_local) {
|
if (is_local) {
|
||||||
package_json.peerDependencies["@deltachat/jsonrpc-client"] =
|
package_json.peerDependencies["@deltachat/jsonrpc-client"] = 'file:../../deltachat-jsonrpc/typescript'
|
||||||
`file:${join(expected_cwd, "/../../deltachat-jsonrpc/typescript")}`;
|
|
||||||
} else {
|
} else {
|
||||||
package_json.peerDependencies["@deltachat/jsonrpc-client"] = "*";
|
package_json.peerDependencies["@deltachat/jsonrpc-client"] = "*"
|
||||||
}
|
}
|
||||||
|
|
||||||
await fs.writeFile("./package.json", JSON.stringify(package_json, null, 4));
|
await fs.writeFile("./package.json", JSON.stringify(package_json, null, 4));
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
import { ENV_VAR_NAME } from "./const.js";
|
import { ENV_VAR_NAME } from "./const.js";
|
||||||
|
|
||||||
const cargoInstallCommand =
|
const cargoInstallCommand =
|
||||||
"cargo install --git https://github.com/chatmail/core deltachat-rpc-server";
|
"cargo install --git https://github.com/deltachat/deltachat-core-rust deltachat-rpc-server";
|
||||||
|
|
||||||
export function NPM_NOT_FOUND_SUPPORTED_PLATFORM_ERROR(package_name) {
|
export function NPM_NOT_FOUND_SUPPORTED_PLATFORM_ERROR(package_name) {
|
||||||
return `deltachat-rpc-server not found:
|
return `deltachat-rpc-server not found:
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user