import { addErrorMessage, addLoadingMessage, clearIndicators, } from 'sentry/actionCreators/indicator'; import {Client} from 'sentry/api'; import {t} from 'sentry/locale'; import {logException} from 'sentry/utils/logging'; import RequestError from 'sentry/utils/requestError/requestError'; import {Monitor} from 'sentry/views/monitors/types'; export async function deleteMonitor(api: Client, orgId: string, monitorSlug: string) { addLoadingMessage(t('Deleting Monitor...')); try { await api.requestPromise(`/organizations/${orgId}/monitors/${monitorSlug}/`, { method: 'DELETE', }); clearIndicators(); } catch { addErrorMessage(t('Unable to remove monitor.')); } } export async function deleteMonitorEnvironment( api: Client, orgId: string, monitorSlug: string, environment: string ): Promise { addLoadingMessage(t('Deleting Environment...')); try { await api.requestPromise(`/organizations/${orgId}/monitors/${monitorSlug}/`, { method: 'DELETE', query: { environment, }, }); clearIndicators(); return true; } catch { addErrorMessage(t('Unable to remove environment from monitor.')); } return false; } export async function updateMonitor( api: Client, orgId: string, monitorSlug: string, data: Partial ): Promise { addLoadingMessage(); try { const resp = await api.requestPromise( `/organizations/${orgId}/monitors/${monitorSlug}/`, {method: 'PUT', data} ); clearIndicators(); return resp; } catch (err) { const respError: RequestError = err; const updateKeys = Object.keys(data); // If we are updating a single value in the monitor we can read the // validation error for that key, otherwise fallback to the default error const validationError = updateKeys.length === 1 ? respError.responseJSON?.[updateKeys[0]]?.[0] : undefined; logException(err); addErrorMessage(validationError ?? t('Unable to update monitor.')); } return null; } export async function setEnvironmentIsMuted( api: Client, orgId: string, monitorSlug: string, environment: string, isMuted: boolean ) { addLoadingMessage(); try { const resp = await api.requestPromise( `/organizations/${orgId}/monitors/${monitorSlug}/environments/${environment}`, {method: 'PUT', data: {isMuted}} ); clearIndicators(); return resp; } catch (err) { logException(err); addErrorMessage( isMuted ? t('Unable to mute environment.') : t('Unable to unmute environment.') ); } return null; }