mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-04-21 11:26:15 +02:00
fe79adb5c7
* feat: scaffold NFC plugin, initial iOS code * adjust script paths (api example) * update entitlements & plist * update class name * update api * sketch api, remove desktop * update response data * add write fn * remove commands * fixes for write mode * check nfc state before using the APIs * fix(example): downgrade internal-ip to v7 * feat: typed iOS arguments * update swift requirement * android updates * update tauri * fix icon * update example * fix build * fix notification example * fix clipboard * fix ios notification build * fix info.plist * update tauri * add change file * fmt * update to new args class syntax :( [skip ci] * add lang code handling in RTD_TEXT helper (written payload is broken without it) * update nfc to latest tauri. use tauri from git * update lockfile * android: add initial nfc writer implementation * check sdk version for pendingintent flag * quicksaving basic ndef reading that doesn't crash * add basic ndef reading (android) * small cleanup * change pending action type * validate available state * gradle 8.0.0 * use session class * implement keep session alive * fix notification crash?? * remove dox feature, fix breaking changes * update dependencies * fix shell tests [skip ci] * fmt [skip ci] * type safe args * scan kind options * commit .idea files * update api * update example * fix app check * alertmessage options for iOS * default to tag on example * fix(ios): always close session on write, remove keepsessionalive option * add kind input to write options * empty records if message not found * fill tag metadata for ndef read * add contributors * update vite * covector setup * tauri/dox removed * docs and examples * fmt [skip ci] --------- Co-authored-by: FabianLars-crabnebula <fabianlars@crabnebula.dev> Co-authored-by: Lucas Nogueira <lucas@tauri.app> Co-authored-by: Lucas Nogueira <lucas@tauri.studio>
120 lines
2.6 KiB
Rust
120 lines
2.6 KiB
Rust
// Copyright 2019-2023 Tauri Programme within The Commons Conservancy
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
use serde::{Deserialize, Serialize, Serializer};
|
|
use std::fmt::Display;
|
|
|
|
#[derive(Serialize)]
|
|
#[serde(rename_all = "camelCase")]
|
|
pub struct ScanRequest {
|
|
pub kind: ScanKind,
|
|
pub keep_session_alive: bool,
|
|
}
|
|
|
|
#[derive(Serialize)]
|
|
#[serde(rename_all = "camelCase")]
|
|
pub struct NfcRecord {
|
|
pub format: NFCTypeNameFormat,
|
|
pub kind: Vec<u8>,
|
|
pub id: Vec<u8>,
|
|
pub payload: Vec<u8>,
|
|
}
|
|
|
|
#[derive(serde_repr::Deserialize_repr, serde_repr::Serialize_repr)]
|
|
#[repr(u8)]
|
|
pub enum NFCTypeNameFormat {
|
|
Empty = 0,
|
|
NfcWellKnown = 1,
|
|
Media = 2,
|
|
AbsoluteURI = 3,
|
|
NfcExternal = 4,
|
|
Unknown = 5,
|
|
Unchanged = 6,
|
|
}
|
|
|
|
#[derive(Deserialize)]
|
|
pub struct NfcTagRecord {
|
|
pub tnf: NFCTypeNameFormat,
|
|
pub kind: Vec<u8>,
|
|
pub id: Vec<u8>,
|
|
pub payload: Vec<u8>,
|
|
}
|
|
|
|
#[derive(Deserialize)]
|
|
pub struct NfcTag {
|
|
pub id: String,
|
|
pub kind: String,
|
|
pub records: Vec<NfcTagRecord>,
|
|
}
|
|
|
|
#[derive(Deserialize)]
|
|
pub struct ScanResponse {
|
|
pub tag: NfcTag,
|
|
}
|
|
|
|
#[derive(Debug, Default, Serialize)]
|
|
pub struct UriFilter {
|
|
scheme: Option<String>,
|
|
host: Option<String>,
|
|
path_prefix: Option<String>,
|
|
}
|
|
|
|
#[derive(Debug)]
|
|
pub enum TechKind {
|
|
IsoDep,
|
|
MifareClassic,
|
|
MifareUltralight,
|
|
Ndef,
|
|
NdefFormatable,
|
|
NfcA,
|
|
NfcB,
|
|
NfcBarcode,
|
|
NfcF,
|
|
NfcV,
|
|
}
|
|
|
|
impl Display for TechKind {
|
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
|
write!(
|
|
f,
|
|
"{}",
|
|
match self {
|
|
Self::IsoDep => "IsoDep",
|
|
Self::MifareClassic => "MifareClassic",
|
|
Self::MifareUltralight => "MifareUltralight",
|
|
Self::Ndef => "Ndef",
|
|
Self::NdefFormatable => "NdefFormatable",
|
|
Self::NfcA => "NfcA",
|
|
Self::NfcB => "NfcB",
|
|
Self::NfcBarcode => "NfcBarcode",
|
|
Self::NfcF => "NfcF",
|
|
Self::NfcV => "NfcV",
|
|
}
|
|
)
|
|
}
|
|
}
|
|
|
|
impl Serialize for TechKind {
|
|
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
|
|
where
|
|
S: Serializer,
|
|
{
|
|
serializer.serialize_str(&self.to_string())
|
|
}
|
|
}
|
|
|
|
#[derive(Debug, Serialize)]
|
|
#[serde(rename_all = "camelCase")]
|
|
pub enum ScanKind {
|
|
Ndef {
|
|
mime_type: Option<String>,
|
|
uri: Option<UriFilter>,
|
|
tech_list: Option<Vec<Vec<TechKind>>>,
|
|
},
|
|
Tag {
|
|
mime_type: Option<String>,
|
|
uri: Option<UriFilter>,
|
|
},
|
|
}
|