1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- import { WorkerSafeElectronService } from '@ente/shared/electron/service';
- import {
- getLocalSentryUserID,
- setLocalSentryUserID,
- } from '@ente/shared/storage/localStorage/helpers';
- import isElectron from 'is-electron';
- import { isDisableSentryFlagSet } from '@ente/shared/apps/env';
- import { ApiError } from '../error';
- import { HttpStatusCode } from 'axios';
- import { isDevBuild } from '../network/api';
- export async function getSentryUserID() {
- if (isElectron()) {
- return await WorkerSafeElectronService.getSentryUserID();
- } else {
- let anonymizeUserID = getLocalSentryUserID();
- if (!anonymizeUserID) {
- anonymizeUserID = makeID(6);
- setLocalSentryUserID(anonymizeUserID);
- }
- return anonymizeUserID;
- }
- }
- function makeID(length) {
- let result = '';
- const characters =
- 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';
- const charactersLength = characters.length;
- for (let i = 0; i < length; i++) {
- result += characters.charAt(
- Math.floor(Math.random() * charactersLength)
- );
- }
- return result;
- }
- export function isErrorUnnecessaryForSentry(error: any) {
- if (error?.message?.includes('Network Error')) {
- return true;
- } else if (
- error instanceof ApiError &&
- error.httpStatusCode === HttpStatusCode.Unauthorized
- ) {
- return true;
- }
- return false;
- }
- export const getIsSentryEnabled = () => {
- const isSentryDisabled = isDisableSentryFlagSet();
- return !isDevBuild() && !isSentryDisabled;
- };
|