tauri-plugin-media 0.1.1

Advanced system media control integration plugin for Tauri applications with comprehensive playback controls, rich metadata support, and seamless native OS media interface integration across Windows, macOS, and Linux
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
use crate::models::*;
use std::error::Error as StdError;

#[cfg(target_os = "macos")]
use cocoa::base::{id, nil};
#[cfg(target_os = "macos")]
use cocoa::foundation::{NSArray, NSDictionary, NSNumber, NSString};
#[cfg(target_os = "macos")]
use core_graphics::image::CGImage;
#[cfg(target_os = "macos")]
use objc::{class, msg_send, runtime::Object, sel, sel_impl};

pub struct MacOSMediaController {
    event_handler: Option<Box<dyn Fn(MediaControlEvent) + Send>>,
    metadata: Option<MediaMetadata>,
    playback_info: Option<PlaybackInfo>,
}

impl MacOSMediaController {
    pub fn new() -> Self {
        MacOSMediaController {
            event_handler: None,
            metadata: None,
            playback_info: None,
        }
    }

    #[cfg(target_os = "macos")]
    fn get_info_center() -> id {
        unsafe {
            let cls = class!(MPNowPlayingInfoCenter);
            let center: id = msg_send![cls, defaultCenter];
            center
        }
    }

    #[cfg(target_os = "macos")]
    fn get_command_center() -> id {
        unsafe {
            let cls = class!(MPRemoteCommandCenter);
            let center: id = msg_send![cls, sharedCommandCenter];
            center
        }
    }

    #[cfg(target_os = "macos")]
    fn setup_command_handlers(&mut self) -> Result<(), Box<dyn StdError>> {
        unsafe {
            let command_center = Self::get_command_center();

            // Play command
            let play_command: id = msg_send![command_center, playCommand];
            let _: () = msg_send![play_command, setEnabled: true];

            // Pause command
            let pause_command: id = msg_send![command_center, pauseCommand];
            let _: () = msg_send![pause_command, setEnabled: true];

            // Stop command
            let stop_command: id = msg_send![command_center, stopCommand];
            let _: () = msg_send![stop_command, setEnabled: true];

            // Next track command
            let next_command: id = msg_send![command_center, nextTrackCommand];
            let _: () = msg_send![next_command, setEnabled: true];

            // Previous track command
            let previous_command: id = msg_send![command_center, previousTrackCommand];
            let _: () = msg_send![previous_command, setEnabled: true];

            // Toggle play/pause command
            let toggle_command: id = msg_send![command_center, togglePlayPauseCommand];
            let _: () = msg_send![toggle_command, setEnabled: true];

            // Change playback position command
            let position_command: id = msg_send![command_center, changePlaybackPositionCommand];
            let _: () = msg_send![position_command, setEnabled: true];
        }

        Ok(())
    }
}

impl super::MediaController for MacOSMediaController {
    fn initialize_session(
        &mut self,
        _app_id: String,
        _app_name: String,
    ) -> Result<(), Box<dyn StdError>> {
        #[cfg(target_os = "macos")]
        {
            self.setup_command_handlers()?;
        }
        Ok(())
    }

    fn set_metadata(&mut self, metadata: MediaMetadata) -> Result<(), Box<dyn StdError>> {
        #[cfg(target_os = "macos")]
        {
            unsafe {
                let info_center = Self::get_info_center();
                let mut info = Vec::new();

                // Title
                let title_key = NSString::alloc(nil).init_str("MPMediaItemPropertyTitle");
                let title_value = NSString::alloc(nil).init_str(&metadata.title);
                info.push((title_key, title_value));

                // Artist
                if let Some(artist) = &metadata.artist {
                    let artist_key = NSString::alloc(nil).init_str("MPMediaItemPropertyArtist");
                    let artist_value = NSString::alloc(nil).init_str(artist);
                    info.push((artist_key, artist_value));
                }

                // Album
                if let Some(album) = &metadata.album {
                    let album_key = NSString::alloc(nil).init_str("MPMediaItemPropertyAlbumTitle");
                    let album_value = NSString::alloc(nil).init_str(album);
                    info.push((album_key, album_value));
                }

                // Album Artist
                if let Some(album_artist) = &metadata.album_artist {
                    let album_artist_key =
                        NSString::alloc(nil).init_str("MPMediaItemPropertyAlbumArtist");
                    let album_artist_value = NSString::alloc(nil).init_str(album_artist);
                    info.push((album_artist_key, album_artist_value));
                }

                // Duration
                if let Some(duration) = metadata.duration {
                    let duration_key =
                        NSString::alloc(nil).init_str("MPMediaItemPropertyPlaybackDuration");
                    let duration_value = NSNumber::alloc(nil).init_f64(duration);
                    info.push((duration_key, duration_value));
                }

                // Artwork
                // Note: MPMediaItemPropertyArtwork requires creating an MPMediaItemArtwork object
                // For simplicity, we're storing the URL or data path
                if let Some(artwork_url) = &metadata.artwork_url {
                    let artwork_key =
                        NSString::alloc(nil).init_str("MPMediaItemPropertyArtworkURL");
                    let artwork_value = NSString::alloc(nil).init_str(artwork_url);
                    info.push((artwork_key, artwork_value));
                } else if let Some(artwork_data) = &metadata.artwork_data {
                    // For binary data, save to temp file and use file URL
                    use std::fs;
                    let temp_dir = std::env::temp_dir();
                    let artwork_path = temp_dir.join("macos_artwork.jpg");

                    if let Ok(_) = fs::write(&artwork_path, artwork_data) {
                        let file_url = format!("file://{}", artwork_path.display());
                        let artwork_key =
                            NSString::alloc(nil).init_str("MPMediaItemPropertyArtworkURL");
                        let artwork_value = NSString::alloc(nil).init_str(&file_url);
                        info.push((artwork_key, artwork_value));
                    }
                }

                // Create dictionary
                let keys: Vec<id> = info.iter().map(|(k, _)| *k).collect();
                let values: Vec<id> = info.iter().map(|(_, v)| *v).collect();
                let dict = NSDictionary::dictionaryWithObjects_forKeys_(
                    nil,
                    NSArray::arrayWithObjects(nil, &values),
                    NSArray::arrayWithObjects(nil, &keys),
                );

                let _: () = msg_send![info_center, setNowPlayingInfo: dict];
            }

            self.metadata = Some(metadata);
        }
        #[cfg(not(target_os = "macos"))]
        {
            self.metadata = Some(metadata);
        }
        Ok(())
    }

    fn set_playback_info(&mut self, info: PlaybackInfo) -> Result<(), Box<dyn StdError>> {
        #[cfg(target_os = "macos")]
        {
            unsafe {
                let info_center = Self::get_info_center();
                let current_info: id = msg_send![info_center, nowPlayingInfo];

                if current_info != nil {
                    let mut_dict: id = msg_send![current_info, mutableCopy];

                    // Position
                    let position_key = NSString::alloc(nil)
                        .init_str("MPNowPlayingInfoPropertyElapsedPlaybackTime");
                    let position_value = NSNumber::alloc(nil).init_f64(info.position);
                    let _: () = msg_send![mut_dict, setObject:position_value forKey:position_key];

                    // Playback rate
                    let rate_key =
                        NSString::alloc(nil).init_str("MPNowPlayingInfoPropertyPlaybackRate");
                    let rate_value =
                        NSNumber::alloc(nil).init_f64(if info.status == PlaybackStatus::Playing {
                            info.playback_rate
                        } else {
                            0.0
                        });
                    let _: () = msg_send![mut_dict, setObject:rate_value forKey:rate_key];

                    let _: () = msg_send![info_center, setNowPlayingInfo: mut_dict];
                }
            }

            self.playback_info = Some(info);
        }
        #[cfg(not(target_os = "macos"))]
        {
            self.playback_info = Some(info);
        }
        Ok(())
    }

    fn set_playback_status(&mut self, status: PlaybackStatus) -> Result<(), Box<dyn StdError>> {
        #[cfg(target_os = "macos")]
        {
            unsafe {
                let info_center = Self::get_info_center();
                let current_info: id = msg_send![info_center, nowPlayingInfo];

                if current_info != nil {
                    let mut_dict: id = msg_send![current_info, mutableCopy];

                    let rate_key =
                        NSString::alloc(nil).init_str("MPNowPlayingInfoPropertyPlaybackRate");
                    let rate = if status == PlaybackStatus::Playing {
                        1.0
                    } else {
                        0.0
                    };
                    let rate_value = NSNumber::alloc(nil).init_f64(rate);
                    let _: () = msg_send![mut_dict, setObject:rate_value forKey:rate_key];

                    let _: () = msg_send![info_center, setNowPlayingInfo: mut_dict];
                }
            }

            if let Some(mut info) = self.playback_info.clone() {
                info.status = status;
                self.playback_info = Some(info);
            }
        }
        #[cfg(not(target_os = "macos"))]
        {
            if let Some(mut info) = self.playback_info.clone() {
                info.status = status;
                self.playback_info = Some(info);
            }
        }
        Ok(())
    }

    fn set_position(&mut self, position: f64) -> Result<(), Box<dyn StdError>> {
        #[cfg(target_os = "macos")]
        {
            unsafe {
                let info_center = Self::get_info_center();
                let current_info: id = msg_send![info_center, nowPlayingInfo];

                if current_info != nil {
                    let mut_dict: id = msg_send![current_info, mutableCopy];

                    let position_key = NSString::alloc(nil)
                        .init_str("MPNowPlayingInfoPropertyElapsedPlaybackTime");
                    let position_value = NSNumber::alloc(nil).init_f64(position);
                    let _: () = msg_send![mut_dict, setObject:position_value forKey:position_key];

                    let _: () = msg_send![info_center, setNowPlayingInfo: mut_dict];
                }
            }

            if let Some(mut info) = self.playback_info.clone() {
                info.position = position;
                self.playback_info = Some(info);
            }
        }
        #[cfg(not(target_os = "macos"))]
        {
            if let Some(mut info) = self.playback_info.clone() {
                info.position = position;
                self.playback_info = Some(info);
            }
        }
        Ok(())
    }

    fn clear_metadata(&mut self) -> Result<(), Box<dyn StdError>> {
        #[cfg(target_os = "macos")]
        {
            unsafe {
                let info_center = Self::get_info_center();
                let _: () = msg_send![info_center, setNowPlayingInfo: nil];
            }

            self.metadata = None;
        }
        #[cfg(not(target_os = "macos"))]
        {
            self.metadata = None;
        }
        Ok(())
    }

    fn set_event_handler(&mut self, handler: Box<dyn Fn(MediaControlEvent) + Send>) {
        self.event_handler = Some(handler);
        // Note: Actual event handler setup would require more complex Objective-C runtime manipulation
        // This is a simplified version. In production, you'd need to create proper target-action pairs
    }

    fn get_metadata(&self) -> Result<Option<MediaMetadata>, Box<dyn StdError>> {
        #[cfg(target_os = "macos")]
        unsafe {
            // Get current now playing info from the system
            let info_center = Self::get_info_center();
            let now_playing_info: id = msg_send![info_center, nowPlayingInfo];

            if now_playing_info != nil {
                // Extract metadata from NSDictionary
                let title_key = NSString::alloc(nil).init_str("MPMediaItemPropertyTitle");
                let title: id = msg_send![now_playing_info, objectForKey: title_key];

                if title != nil {
                    let title_str = CStr::from_ptr(msg_send![title, UTF8String])
                        .to_string_lossy()
                        .into_owned();

                    let mut metadata = MediaMetadata {
                        title: title_str,
                        artist: None,
                        album: None,
                        album_artist: None,
                        duration: None,
                        artwork_url: None,
                        artwork_data: None,
                    };

                    // Get artist
                    let artist_key = NSString::alloc(nil).init_str("MPMediaItemPropertyArtist");
                    let artist: id = msg_send![now_playing_info, objectForKey: artist_key];
                    if artist != nil {
                        metadata.artist = Some(
                            CStr::from_ptr(msg_send![artist, UTF8String])
                                .to_string_lossy()
                                .into_owned(),
                        );
                    }

                    // Get album
                    let album_key = NSString::alloc(nil).init_str("MPMediaItemPropertyAlbumTitle");
                    let album: id = msg_send![now_playing_info, objectForKey: album_key];
                    if album != nil {
                        metadata.album = Some(
                            CStr::from_ptr(msg_send![album, UTF8String])
                                .to_string_lossy()
                                .into_owned(),
                        );
                    }

                    // Get artwork URL if available
                    let artwork_key =
                        NSString::alloc(nil).init_str("MPMediaItemPropertyArtworkURL");
                    let artwork: id = msg_send![now_playing_info, objectForKey: artwork_key];
                    if artwork != nil {
                        metadata.artwork_url = Some(
                            CStr::from_ptr(msg_send![artwork, UTF8String])
                                .to_string_lossy()
                                .into_owned(),
                        );
                    }

                    // Get duration
                    let duration_key =
                        NSString::alloc(nil).init_str("MPMediaItemPropertyPlaybackDuration");
                    let duration: id = msg_send![now_playing_info, objectForKey: duration_key];
                    if duration != nil {
                        let duration_val: f64 = msg_send![duration, doubleValue];
                        metadata.duration = Some(duration_val);
                    }

                    return Ok(Some(metadata));
                }
            }
        }

        // Fall back to our own metadata
        Ok(self.metadata.clone())
    }

    fn get_playback_info(&self) -> Result<Option<PlaybackInfo>, Box<dyn StdError>> {
        Ok(self.playback_info.clone())
    }

    fn get_playback_status(&self) -> Result<PlaybackStatus, Box<dyn StdError>> {
        Ok(self
            .playback_info
            .as_ref()
            .map(|info| info.status)
            .unwrap_or(PlaybackStatus::Stopped))
    }

    fn get_position(&self) -> Result<f64, Box<dyn StdError>> {
        Ok(self
            .playback_info
            .as_ref()
            .map(|info| info.position)
            .unwrap_or(0.0))
    }

    fn is_enabled(&self) -> Result<bool, Box<dyn StdError>> {
        // On macOS, media controls are always available once initialized
        Ok(self.initialized)
    }
}