mirror of
https://github.com/chatmail/core.git
synced 2026-04-17 21:46:35 +03:00
- [x] figgure out how to build the packages (that it installs native optional package automatically) - [X] Make the gluecode - [x] expose both the lowerlevel api that desktop uses (~~send objects and receive objects~~, getting path of rpc-server is enough) - [X] and the higher level api needed for bots (jsonrpc client) - [X] typescript types - [x] automatically pick the right binary from npm or allow getting it from env var, or give out an error (throw error) - [x] find out how to dev locally (use local built core in dc desktop) - there is the question of how to link the typescript client and the task to add a search in the cargo target folder for a debug build or a different way, find out some good flow that we can use and document for dc desktop + locally built core development - [x] build the packages in ci - [x] fix that deltachat-rpc-server is not executable postponed: - [ ] publish from ci - [ ] add key/token to deploy to npm Closes #4694 ## Related prs - https://github.com/deltachat-bot/echo/pull/69 - https://github.com/deltachat/deltachat-desktop/pull/3567 --------- Co-authored-by: link2xt <link2xt@testrun.org>
42 lines
1.5 KiB
JavaScript
42 lines
1.5 KiB
JavaScript
//@ts-check
|
|
import { ENV_VAR_NAME } from "./const.js";
|
|
|
|
const cargoInstallCommand =
|
|
"cargo install --git https://github.com/deltachat/deltachat-core-rust deltachat-rpc-server";
|
|
|
|
export function NPM_NOT_FOUND_SUPPORTED_PLATFORM_ERROR(package_name) {
|
|
return `deltachat-rpc-server not found:
|
|
|
|
- Install it with "npm i ${package_name}"
|
|
- or download/compile deltachat-rpc-server for your platform and
|
|
- either put it into your PATH (for example with "${cargoInstallCommand}")
|
|
- or set the "${ENV_VAR_NAME}" env var to the path to deltachat-rpc-server"`;
|
|
}
|
|
|
|
export function NPM_NOT_FOUND_UNSUPPORTED_PLATFORM_ERROR() {
|
|
return `deltachat-rpc-server not found:
|
|
|
|
Unfortunately no prebuild is available for your system, so you need to provide deltachat-rpc-server yourself.
|
|
|
|
- Download or Compile deltachat-rpc-server for your platform and
|
|
- either put it into your PATH (for example with "${cargoInstallCommand}")
|
|
- or set the "${ENV_VAR_NAME}" env var to the path to deltachat-rpc-server"`;
|
|
}
|
|
|
|
export function ENV_VAR_LOCATION_NOT_FOUND(error) {
|
|
return `deltachat-rpc-server not found in ${ENV_VAR_NAME}:
|
|
|
|
Error: ${error}
|
|
|
|
Content of ${ENV_VAR_NAME}: "${process.env[ENV_VAR_NAME]}"`;
|
|
}
|
|
|
|
export function FAILED_TO_START_SERVER_EXECUTABLE(pathToServerBinary, error) {
|
|
return `Failed to start server executable at '${pathToServerBinary}',
|
|
|
|
Error: ${error}
|
|
|
|
Make sure the deltachat-rpc-server binary exists at this location
|
|
and you can start it with \`${pathToServerBinary} --version\``;
|
|
}
|