mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-05-01 12:08:06 +02:00
47 lines
1.3 KiB
Rust
47 lines
1.3 KiB
Rust
// Copyright 2019-2023 Tauri Programme within The Commons Conservancy
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
// This module is also imported in build.rs!
|
|
|
|
use serde::{Deserialize, Deserializer};
|
|
use tauri_utils::config::DeepLinkProtocol;
|
|
|
|
#[derive(Deserialize)]
|
|
pub struct AssociatedDomain {
|
|
#[serde(deserialize_with = "deserialize_associated_host")]
|
|
pub host: String,
|
|
#[serde(default, alias = "path-prefix", rename = "pathPrefix")]
|
|
pub path_prefix: Vec<String>,
|
|
}
|
|
|
|
fn deserialize_associated_host<'de, D>(deserializer: D) -> Result<String, D::Error>
|
|
where
|
|
D: Deserializer<'de>,
|
|
{
|
|
let host = String::deserialize(deserializer)?;
|
|
if let Some((scheme, _host)) = host.split_once("://") {
|
|
Err(serde::de::Error::custom(format!(
|
|
"host `{host}` cannot start with a scheme, please remove the `{scheme}://` prefix"
|
|
)))
|
|
} else {
|
|
Ok(host)
|
|
}
|
|
}
|
|
|
|
#[derive(Deserialize)]
|
|
pub struct Config {
|
|
/// Mobile requires `https://<host>` urls.
|
|
pub mobile: Vec<AssociatedDomain>,
|
|
/// Desktop requires urls starting with `<scheme>://`.
|
|
/// These urls are also active in dev mode on Android.
|
|
pub desktop: DesktopProtocol,
|
|
}
|
|
|
|
#[derive(Deserialize)]
|
|
#[serde(untagged)]
|
|
pub enum DesktopProtocol {
|
|
One(DeepLinkProtocol),
|
|
List(Vec<DeepLinkProtocol>),
|
|
}
|