tauri-plugin-music-notification-api 0.2.0

A Tauri plugin for music notifications
Documentation
use serde::de::DeserializeOwned;
use tauri::{
  plugin::{PluginApi, PluginHandle},
  AppHandle, Runtime,
};

use crate::models::*;

#[cfg(target_os = "ios")]
tauri::ios_plugin_binding!(init_plugin_music_notification);

// initializes the Kotlin or Swift plugin classes
pub fn init<R: Runtime, C: DeserializeOwned>(
  _app: &AppHandle<R>,
  api: PluginApi<R, C>,
) -> crate::Result<MusicNotification<R>> {
  #[cfg(target_os = "android")]
  let handle = api.register_android_plugin("com.plugin.music_notification", "MusicNotificationPlugin")?;
  #[cfg(target_os = "ios")]
  let handle = api.register_ios_plugin(init_plugin_music_notification)?;
  Ok(MusicNotification(handle))
}

/// Access to the music-notification APIs.
pub struct MusicNotification<R: Runtime>(PluginHandle<R>);

impl<R: Runtime> MusicNotification<R> {
  pub fn ping(&self, payload: PingRequest) -> crate::Result<PingResponse> {
    self
      .0
      .run_mobile_plugin("ping", payload)
      .map_err(Into::into)
  }

  pub fn play(&self, payload: PlayRequest) -> crate::Result<PlayResponse> {
    self
      .0
      .run_mobile_plugin("play", payload)
      .map_err(Into::into)
  }

  pub fn pause(&self) -> crate::Result<EmptyResponse> {
    self
      .0
      .run_mobile_plugin("pause", EmptyRequest {})
      .map_err(Into::into)
  }

  pub fn resume(&self) -> crate::Result<EmptyResponse> {
    self
      .0
      .run_mobile_plugin("resume", EmptyRequest {})
      .map_err(Into::into)
  }

  pub fn stop(&self) -> crate::Result<EmptyResponse> {
    self
      .0
      .run_mobile_plugin("stop", EmptyRequest {})
      .map_err(Into::into)
  }

  pub fn next(&self) -> crate::Result<EmptyResponse> {
    self
      .0
      .run_mobile_plugin("next", EmptyRequest {})
      .map_err(Into::into)
  }

  pub fn previous(&self) -> crate::Result<EmptyResponse> {
    self
      .0
      .run_mobile_plugin("previous", EmptyRequest {})
      .map_err(Into::into)
  }

  pub fn seek(&self, position: i64) -> crate::Result<EmptyResponse> {
    #[derive(serde::Serialize)]
    struct SeekRequest {
      position: i64,
    }
    self
      .0
      .run_mobile_plugin("seek", SeekRequest { position })
      .map_err(Into::into)
  }

  pub fn get_state(&self) -> crate::Result<PlaybackState> {
    self
      .0
      .run_mobile_plugin("getState", EmptyRequest {})
      .map_err(Into::into)
  }
}