mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-05-05 12:25:10 +02:00
8df28a9875
* chore: update deps, make mobile script paths relative * feat(biometric): setup plugin folder * feat: implement iOS * add api * android * fix plugin name * also check empty info.plist entry * add example * fix android * supress * lint * better explanation * add partners & contributed by * change ext * license headers * update vite * add covector setup * tauri/dox removed * add example * docs --------- Co-authored-by: Lucas Nogueira <lucas@tauri.app>
73 lines
2.0 KiB
Rust
73 lines
2.0 KiB
Rust
// Copyright 2019-2023 Tauri Programme within The Commons Conservancy
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
#![cfg(mobile)]
|
|
|
|
use serde::Serialize;
|
|
use tauri::{
|
|
plugin::{Builder, PluginHandle, TauriPlugin},
|
|
Manager, Runtime,
|
|
};
|
|
|
|
pub use models::*;
|
|
|
|
mod error;
|
|
mod models;
|
|
|
|
pub use error::{Error, Result};
|
|
|
|
#[cfg(target_os = "android")]
|
|
const PLUGIN_IDENTIFIER: &str = "app.tauri.biometric";
|
|
|
|
#[cfg(target_os = "ios")]
|
|
tauri::ios_plugin_binding!(init_plugin_biometric);
|
|
|
|
/// Access to the biometric APIs.
|
|
pub struct Biometric<R: Runtime>(PluginHandle<R>);
|
|
|
|
#[derive(Serialize)]
|
|
struct AuthenticatePayload {
|
|
reason: String,
|
|
#[serde(flatten)]
|
|
options: AuthOptions,
|
|
}
|
|
|
|
impl<R: Runtime> Biometric<R> {
|
|
pub fn status(&self) -> crate::Result<Status> {
|
|
self.0.run_mobile_plugin("status", ()).map_err(Into::into)
|
|
}
|
|
|
|
pub fn authenticate(&self, reason: String, options: AuthOptions) -> crate::Result<()> {
|
|
self.0
|
|
.run_mobile_plugin("authenticate", AuthenticatePayload { reason, options })
|
|
.map_err(Into::into)
|
|
}
|
|
}
|
|
|
|
/// Extensions to [`tauri::App`], [`tauri::AppHandle`] and [`tauri::Window`] to access the biometric APIs.
|
|
pub trait BiometricExt<R: Runtime> {
|
|
fn biometric(&self) -> &Biometric<R>;
|
|
}
|
|
|
|
impl<R: Runtime, T: Manager<R>> crate::BiometricExt<R> for T {
|
|
fn biometric(&self) -> &Biometric<R> {
|
|
self.state::<Biometric<R>>().inner()
|
|
}
|
|
}
|
|
|
|
/// Initializes the plugin.
|
|
pub fn init<R: Runtime>() -> TauriPlugin<R> {
|
|
Builder::new("biometric")
|
|
.js_init_script(include_str!("api-iife.js").to_string())
|
|
.setup(|app, api| {
|
|
#[cfg(target_os = "android")]
|
|
let handle = api.register_android_plugin(PLUGIN_IDENTIFIER, "BiometricPlugin")?;
|
|
#[cfg(target_os = "ios")]
|
|
let handle = api.register_ios_plugin(init_plugin_biometric)?;
|
|
app.manage(Biometric(handle));
|
|
Ok(())
|
|
})
|
|
.build()
|
|
}
|