You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.1 KiB
57 lines
1.1 KiB
1 year ago
|
import ExternalAPI from './externalapi';
|
||
|
|
||
|
interface PushoverSoundsResponse {
|
||
|
sounds: {
|
||
|
[name: string]: string;
|
||
|
};
|
||
|
status: number;
|
||
|
request: string;
|
||
|
}
|
||
|
|
||
|
export interface PushoverSound {
|
||
|
name: string;
|
||
|
description: string;
|
||
|
}
|
||
|
|
||
|
export const mapSounds = (sounds: {
|
||
|
[name: string]: string;
|
||
|
}): PushoverSound[] =>
|
||
|
Object.entries(sounds).map(
|
||
|
([name, description]) =>
|
||
|
({
|
||
|
name,
|
||
|
description,
|
||
|
} as PushoverSound)
|
||
|
);
|
||
|
|
||
|
class PushoverAPI extends ExternalAPI {
|
||
|
constructor() {
|
||
|
super(
|
||
|
'https://api.pushover.net/1',
|
||
|
{},
|
||
|
{
|
||
|
headers: {
|
||
|
'Content-Type': 'application/json',
|
||
|
Accept: 'application/json',
|
||
|
},
|
||
|
}
|
||
|
);
|
||
|
}
|
||
|
|
||
|
public async getSounds(appToken: string): Promise<PushoverSound[]> {
|
||
|
try {
|
||
|
const data = await this.get<PushoverSoundsResponse>('/sounds.json', {
|
||
|
params: {
|
||
|
token: appToken,
|
||
|
},
|
||
|
});
|
||
|
|
||
|
return mapSounds(data.sounds);
|
||
|
} catch (e) {
|
||
|
throw new Error(`[Pushover] Failed to retrieve sounds: ${e.message}`);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default PushoverAPI;
|