mirror of
https://github.com/bitsocialnet/5chan.git
synced 2026-08-03 07:41:04 +02:00
feat(media-hosting): add multi-provider configurable upload with fallback
Add Random/Preferred/None modes, preferred provider selection, and provider-order fallback. Catbox/Imgur/PostImages on Android via WebView; Electron CDP automation for Imgur/PostImages. Hide upload controls on web runtime.
This commit is contained in:
Vendored
+5
-4
@@ -4,14 +4,15 @@ declare global {
|
||||
}
|
||||
}
|
||||
|
||||
import type { ProviderId } from './lib/media-hosting/types';
|
||||
|
||||
declare global {
|
||||
interface Window {
|
||||
electronApi?: {
|
||||
isElectron: boolean;
|
||||
invoke: (channel: string, ...args: any[]) => Promise<any>;
|
||||
getNotificationStatus: () => Promise<'granted' | 'denied' | 'not-determined' | 'not-supported'>;
|
||||
getPlatform: () => Promise<NodeJS.Platform>;
|
||||
testNotification: () => Promise<{ success: boolean; reason?: string }>;
|
||||
copyToClipboard: (text: string) => Promise<{ success: boolean; error?: string }>;
|
||||
getPlatform: () => Promise<{ platform: NodeJS.Platform; arch: string; version: string }>;
|
||||
automateUploadMedia: (options: { provider: ProviderId; filePath: string }) => Promise<{ url: string; provider: ProviderId }>;
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user