A TypeScript package for handling callbacks in Unraid applications. This package provides a flexible and type-safe way to handle encrypted callbacks between different parts of the Unraid ecosystem.
- Type-safe callback handling
- AES encryption/decryption of payloads
- Support for various callback types (sign in, sign out, key actions, etc.)
- Flexible URL handling with support for different redirect types
pnpm add @unraid/shared-callbacks
import { createCallbackStore, CallbackActionsStore } from '@unraid/shared-callbacks';
// Define your callback actions store
const useCallbackActions = (): CallbackActionsStore => ({
saveCallbackData: (decryptedData) => {
// Handle the decrypted callback data
console.log(decryptedData);
},
encryptionKey: 'your-encryption-key',
sendType: 'forUpc'
});
// Create the callback store
const callbackStore = createCallbackStore(useCallbackActions);
// Use the store to send callbacks
callbackStore.send('https://example.com/callback', [
{
type: 'signIn',
apiKey: 'your-api-key',
user: {
// user info
}
}
]);
// Watch for incoming callbacks
callbackStore.watcher();
SignIn
,SignOut
,OemSignOut
, etc. - Various callback action typesServerData
- Server information structureUserInfo
- User information structureExternalActions
- Union type of all external actionsUpcActions
- Union type of all UPC actionsQueryPayloads
- Union type of all payload types
interface CallbackStore {
send: (url: string, payload: SendPayloads, redirectType?: 'newTab' | 'replace', sendType?: string) => void;
watcher: () => void;
}
interface CallbackActionsStore {
saveCallbackData: (decryptedData: QueryPayloads) => void;
encryptionKey: string;
sendType: 'fromUpc' | 'forUpc';
}