Files
automatisch/packages/backend/src/apps/pushover/auth/verify-credentials.js
2024-01-05 17:44:21 +01:00

25 lines
584 B
JavaScript

import HttpError from '../../../errors/http.js';
const verifyCredentials = async ($) => {
try {
await $.http.post(`/1/users/validate.json`, {
token: $.auth.data.apiToken,
user: $.auth.data.userKey,
});
} catch (error) {
const noDeviceError = 'user is valid but has no active devices';
const hasNoDeviceError =
error.response?.data?.errors?.includes(noDeviceError);
if (!hasNoDeviceError) {
throw new HttpError(error);
}
}
await $.auth.set({
screenName: $.auth.data.screenName,
});
};
export default verifyCredentials;