123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371 |
- import * as Sentry from '@sentry/react';
- import isNil from 'lodash/isNil';
- import GroupActions from 'sentry/actions/groupActions';
- import {Client, RequestCallbacks, RequestOptions} from 'sentry/api';
- import GroupStore from 'sentry/stores/groupStore';
- import {Actor, Group, Member, Note, User} from 'sentry/types';
- import {buildTeamId, buildUserId} from 'sentry/utils';
- import {uniqueId} from 'sentry/utils/guid';
- type AssignedBy = 'suggested_assignee' | 'assignee_selector';
- type AssignToUserParams = {
- assignedBy: AssignedBy;
- /**
- * Issue id
- */
- id: string;
- user: User | Actor;
- member?: Member;
- };
- export function assignToUser(params: AssignToUserParams) {
- const api = new Client();
- const endpoint = `/issues/${params.id}/`;
- const id = uniqueId();
- GroupActions.assignTo(id, params.id, {
- email: (params.member && params.member.email) || '',
- });
- const request = api.requestPromise(endpoint, {
- method: 'PUT',
- // Sending an empty value to assignedTo is the same as "clear",
- // so if no member exists, that implies that we want to clear the
- // current assignee.
- data: {
- assignedTo: params.user ? buildUserId(params.user.id) : '',
- assignedBy: params.assignedBy,
- },
- });
- request
- .then(data => {
- GroupActions.assignToSuccess(id, params.id, data);
- })
- .catch(data => {
- GroupActions.assignToError(id, params.id, data);
- });
- return request;
- }
- export function clearAssignment(groupId: string, assignedBy: AssignedBy) {
- const api = new Client();
- const endpoint = `/issues/${groupId}/`;
- const id = uniqueId();
- GroupActions.assignTo(id, groupId, {
- email: '',
- });
- const request = api.requestPromise(endpoint, {
- method: 'PUT',
- // Sending an empty value to assignedTo is the same as "clear"
- data: {
- assignedTo: '',
- assignedBy,
- },
- });
- request
- .then(data => {
- GroupActions.assignToSuccess(id, groupId, data);
- })
- .catch(data => {
- GroupActions.assignToError(id, groupId, data);
- });
- return request;
- }
- type AssignToActorParams = {
- actor: Pick<Actor, 'id' | 'type'>;
- assignedBy: AssignedBy;
- /**
- * Issue id
- */
- id: string;
- };
- export function assignToActor({id, actor, assignedBy}: AssignToActorParams) {
- const api = new Client();
- const endpoint = `/issues/${id}/`;
- const guid = uniqueId();
- let actorId;
- GroupActions.assignTo(guid, id, {email: ''});
- switch (actor.type) {
- case 'user':
- actorId = buildUserId(actor.id);
- break;
- case 'team':
- actorId = buildTeamId(actor.id);
- break;
- default:
- Sentry.withScope(scope => {
- scope.setExtra('actor', actor);
- Sentry.captureException('Unknown assignee type');
- });
- }
- return api
- .requestPromise(endpoint, {
- method: 'PUT',
- data: {assignedTo: actorId, assignedBy},
- })
- .then(data => {
- GroupActions.assignToSuccess(guid, id, data);
- })
- .catch(data => {
- GroupActions.assignToError(guid, id, data);
- });
- }
- export function deleteNote(api: Client, group: Group, id: string, _oldText: string) {
- const restore = group.activity.find(activity => activity.id === id);
- const index = GroupStore.removeActivity(group.id, id);
- if (index === -1) {
- // I dunno, the id wasn't found in the GroupStore
- return Promise.reject(new Error('Group was not found in store'));
- }
- const promise = api.requestPromise(`/issues/${group.id}/comments/${id}/`, {
- method: 'DELETE',
- });
- promise.catch(() => GroupStore.addActivity(group.id, restore, index));
- return promise;
- }
- export function createNote(api: Client, group: Group, note: Note) {
- const promise = api.requestPromise(`/issues/${group.id}/comments/`, {
- method: 'POST',
- data: note,
- });
- promise.then(data => GroupStore.addActivity(group.id, data));
- return promise;
- }
- export function updateNote(
- api: Client,
- group: Group,
- note: Note,
- id: string,
- oldText: string
- ) {
- GroupStore.updateActivity(group.id, id, {text: note.text});
- const promise = api.requestPromise(`/issues/${group.id}/comments/${id}/`, {
- method: 'PUT',
- data: note,
- });
- promise.catch(() => GroupStore.updateActivity(group.id, id, {text: oldText}));
- return promise;
- }
- type ParamsType = {
- environment?: string | Array<string> | null;
- itemIds?: Array<number> | Array<string>;
- project?: Array<number> | null;
- query?: string;
- };
- type UpdateParams = ParamsType & {
- orgId: string;
- projectId?: string;
- };
- type QueryArgs =
- | {
- query: string;
- environment?: string | Array<string>;
- project?: Array<number>;
- }
- | {
- id: Array<number> | Array<string>;
- environment?: string | Array<string>;
- project?: Array<number>;
- }
- | {
- environment?: string | Array<string>;
- project?: Array<number>;
- };
- /**
- * Converts input parameters to API-compatible query arguments
- */
- export function paramsToQueryArgs(params: ParamsType): QueryArgs {
- const p: QueryArgs = params.itemIds
- ? {id: params.itemIds} // items matching array of itemids
- : params.query
- ? {query: params.query} // items matching search query
- : {}; // all items
- // only include environment if it is not null/undefined
- if (params.query && !isNil(params.environment)) {
- p.environment = params.environment;
- }
- // only include projects if it is not null/undefined/an empty array
- if (params.project?.length) {
- p.project = params.project;
- }
- // only include date filters if they are not null/undefined
- if (params.query) {
- ['start', 'end', 'period', 'utc'].forEach(prop => {
- if (!isNil(params[prop])) {
- p[prop === 'period' ? 'statsPeriod' : prop] = params[prop];
- }
- });
- }
- return p;
- }
- function getUpdateUrl({projectId, orgId}: UpdateParams) {
- return projectId
- ? `/projects/${orgId}/${projectId}/issues/`
- : `/organizations/${orgId}/issues/`;
- }
- function chainUtil<Args extends any[]>(
- ...funcs: Array<((...args: Args) => any) | undefined>
- ) {
- const filteredFuncs = funcs.filter(
- (f): f is (...args: Args) => any => typeof f === 'function'
- );
- return (...args: Args): void => {
- filteredFuncs.forEach(func => {
- func.apply(funcs, args);
- });
- };
- }
- function wrapRequest(
- api: Client,
- path: string,
- options: RequestOptions,
- extraParams: RequestCallbacks = {}
- ) {
- options.success = chainUtil(options.success, extraParams.success);
- options.error = chainUtil(options.error, extraParams.error);
- options.complete = chainUtil(options.complete, extraParams.complete);
- return api.request(path, options);
- }
- type BulkDeleteParams = UpdateParams;
- export function bulkDelete(
- api: Client,
- params: BulkDeleteParams,
- options: RequestCallbacks
- ) {
- const {itemIds} = params;
- const path = getUpdateUrl(params);
- const query: QueryArgs = paramsToQueryArgs(params);
- const id = uniqueId();
- GroupActions.delete(id, itemIds);
- return wrapRequest(
- api,
- path,
- {
- query,
- method: 'DELETE',
- success: response => {
- GroupActions.deleteSuccess(id, itemIds, response);
- },
- error: error => {
- GroupActions.deleteError(id, itemIds, error);
- },
- },
- options
- );
- }
- type BulkUpdateParams = UpdateParams & {
- data?: any;
- failSilently?: boolean;
- };
- export function bulkUpdate(
- api: Client,
- params: BulkUpdateParams,
- options: RequestCallbacks
- ) {
- const {itemIds, failSilently, data} = params;
- const path = getUpdateUrl(params);
- const query: QueryArgs = paramsToQueryArgs(params);
- const id = uniqueId();
- GroupActions.update(id, itemIds, data);
- return wrapRequest(
- api,
- path,
- {
- query,
- method: 'PUT',
- data,
- success: response => {
- GroupActions.updateSuccess(id, itemIds, response);
- },
- error: error => {
- GroupActions.updateError(id, itemIds, error, failSilently);
- },
- },
- options
- );
- }
- type MergeGroupsParams = UpdateParams;
- export function mergeGroups(
- api: Client,
- params: MergeGroupsParams,
- options: RequestCallbacks
- ) {
- const {itemIds} = params;
- const path = getUpdateUrl(params);
- const query: QueryArgs = paramsToQueryArgs(params);
- const id = uniqueId();
- GroupActions.merge(id, itemIds);
- return wrapRequest(
- api,
- path,
- {
- query,
- method: 'PUT',
- data: {merge: 1},
- success: response => {
- GroupActions.mergeSuccess(id, itemIds, response);
- },
- error: error => {
- GroupActions.mergeError(id, itemIds, error);
- },
- },
- options
- );
- }
|