2023-01-26 18:12:20 +00:00
|
|
|
// services
|
|
|
|
import APIService from "services/api.service";
|
2023-03-29 06:54:19 +00:00
|
|
|
import trackEventServices from "services/track-event.service";
|
|
|
|
|
2023-01-26 18:12:20 +00:00
|
|
|
// types
|
2023-02-23 12:42:07 +00:00
|
|
|
import type {
|
|
|
|
GithubRepositoriesResponse,
|
2023-06-06 16:06:00 +00:00
|
|
|
ICurrentUserResponse,
|
2023-03-04 12:17:03 +00:00
|
|
|
IFavoriteProject,
|
2023-02-23 12:42:07 +00:00
|
|
|
IProject,
|
|
|
|
IProjectMember,
|
|
|
|
IProjectMemberInvitation,
|
2023-06-23 07:48:38 +00:00
|
|
|
ISearchIssueResponse,
|
2023-02-23 12:42:07 +00:00
|
|
|
ProjectViewTheme,
|
2023-06-23 07:48:38 +00:00
|
|
|
TProjectIssuesSearchParams,
|
2023-02-23 12:42:07 +00:00
|
|
|
} from "types";
|
2023-01-26 18:12:20 +00:00
|
|
|
|
|
|
|
const { NEXT_PUBLIC_API_BASE_URL } = process.env;
|
|
|
|
|
2023-03-29 06:54:19 +00:00
|
|
|
const trackEvent =
|
|
|
|
process.env.NEXT_PUBLIC_TRACK_EVENTS === "true" || process.env.NEXT_PUBLIC_TRACK_EVENTS === "1";
|
|
|
|
|
2023-01-26 18:12:20 +00:00
|
|
|
class ProjectServices extends APIService {
|
|
|
|
constructor() {
|
|
|
|
super(NEXT_PUBLIC_API_BASE_URL || "http://localhost:8000");
|
|
|
|
}
|
|
|
|
|
2023-06-06 16:06:00 +00:00
|
|
|
async createProject(
|
|
|
|
workspaceSlug: string,
|
|
|
|
data: Partial<IProject>,
|
|
|
|
user: ICurrentUserResponse | undefined
|
|
|
|
): Promise<IProject> {
|
2023-01-26 18:12:20 +00:00
|
|
|
return this.post(`/api/workspaces/${workspaceSlug}/projects/`, data)
|
2023-03-29 06:54:19 +00:00
|
|
|
.then((response) => {
|
2023-06-06 16:06:00 +00:00
|
|
|
if (trackEvent) trackEventServices.trackProjectEvent(response.data, "CREATE_PROJECT", user);
|
2023-03-29 06:54:19 +00:00
|
|
|
return response?.data;
|
|
|
|
})
|
2023-01-26 18:12:20 +00:00
|
|
|
.catch((error) => {
|
|
|
|
throw error?.response;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
async checkProjectIdentifierAvailability(workspaceSlug: string, data: string): Promise<any> {
|
|
|
|
return this.get(`/api/workspaces/${workspaceSlug}/project-identifiers`, {
|
|
|
|
params: {
|
|
|
|
name: data,
|
|
|
|
},
|
|
|
|
})
|
|
|
|
.then((response) => response?.data)
|
|
|
|
.catch((error) => {
|
|
|
|
throw error?.response?.data;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
async getProjects(workspaceSlug: string): Promise<IProject[]> {
|
|
|
|
return this.get(`/api/workspaces/${workspaceSlug}/projects/`)
|
|
|
|
.then((response) => response?.data)
|
|
|
|
.catch((error) => {
|
|
|
|
throw error?.response?.data;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
async getProject(workspaceSlug: string, projectId: string): Promise<IProject> {
|
|
|
|
return this.get(`/api/workspaces/${workspaceSlug}/projects/${projectId}/`)
|
|
|
|
.then((response) => response?.data)
|
|
|
|
.catch((error) => {
|
|
|
|
throw error?.response?.data;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
async updateProject(
|
|
|
|
workspaceSlug: string,
|
|
|
|
projectId: string,
|
2023-06-06 16:06:00 +00:00
|
|
|
data: Partial<IProject>,
|
|
|
|
user: ICurrentUserResponse | undefined
|
2023-01-26 18:12:20 +00:00
|
|
|
): Promise<IProject> {
|
|
|
|
return this.patch(`/api/workspaces/${workspaceSlug}/projects/${projectId}/`, data)
|
2023-03-29 06:54:19 +00:00
|
|
|
.then((response) => {
|
2023-06-06 16:06:00 +00:00
|
|
|
if (trackEvent) trackEventServices.trackProjectEvent(response.data, "UPDATE_PROJECT", user);
|
2023-03-29 06:54:19 +00:00
|
|
|
return response?.data;
|
|
|
|
})
|
2023-01-26 18:12:20 +00:00
|
|
|
.catch((error) => {
|
|
|
|
throw error?.response?.data;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2023-06-06 16:06:00 +00:00
|
|
|
async deleteProject(
|
|
|
|
workspaceSlug: string,
|
|
|
|
projectId: string,
|
|
|
|
user: ICurrentUserResponse | undefined
|
|
|
|
): Promise<any> {
|
2023-01-26 18:12:20 +00:00
|
|
|
return this.delete(`/api/workspaces/${workspaceSlug}/projects/${projectId}/`)
|
2023-03-29 06:54:19 +00:00
|
|
|
.then((response) => {
|
2023-06-06 16:06:00 +00:00
|
|
|
if (trackEvent) trackEventServices.trackProjectEvent({ projectId }, "DELETE_PROJECT", user);
|
2023-03-29 06:54:19 +00:00
|
|
|
return response?.data;
|
|
|
|
})
|
2023-01-26 18:12:20 +00:00
|
|
|
.catch((error) => {
|
|
|
|
throw error?.response?.data;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2023-06-06 16:06:00 +00:00
|
|
|
async inviteProject(
|
|
|
|
workspaceSlug: string,
|
|
|
|
projectId: string,
|
|
|
|
data: any,
|
|
|
|
user: ICurrentUserResponse | undefined
|
|
|
|
): Promise<any> {
|
2023-01-26 18:12:20 +00:00
|
|
|
return this.post(`/api/workspaces/${workspaceSlug}/projects/${projectId}/members/add/`, data)
|
2023-04-06 06:38:52 +00:00
|
|
|
.then((response) => {
|
|
|
|
if (trackEvent)
|
|
|
|
trackEventServices.trackProjectEvent(
|
|
|
|
{
|
|
|
|
workspaceId: response?.data?.workspace?.id,
|
|
|
|
workspaceSlug,
|
|
|
|
projectId,
|
|
|
|
projectName: response?.data?.project?.name,
|
|
|
|
memberEmail: response?.data?.member?.email,
|
|
|
|
},
|
2023-06-06 16:06:00 +00:00
|
|
|
"PROJECT_MEMBER_INVITE",
|
|
|
|
user
|
2023-04-06 06:38:52 +00:00
|
|
|
);
|
|
|
|
return response?.data;
|
|
|
|
})
|
2023-01-26 18:12:20 +00:00
|
|
|
.catch((error) => {
|
|
|
|
throw error?.response?.data;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
async joinProject(workspaceSlug: string, data: any): Promise<any> {
|
|
|
|
return this.post(`/api/workspaces/${workspaceSlug}/projects/join/`, data)
|
|
|
|
.then((response) => response?.data)
|
|
|
|
.catch((error) => {
|
|
|
|
throw error?.response?.data;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
async joinProjects(data: any): Promise<any> {
|
|
|
|
return this.post("/api/users/me/invitations/projects/", data)
|
|
|
|
.then((response) => response?.data)
|
|
|
|
.catch((error) => {
|
|
|
|
throw error?.response?.data;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
async projectMembers(workspaceSlug: string, projectId: string): Promise<IProjectMember[]> {
|
|
|
|
return this.get(`/api/workspaces/${workspaceSlug}/projects/${projectId}/members/`)
|
|
|
|
.then((response) => response?.data)
|
|
|
|
.catch((error) => {
|
|
|
|
throw error?.response?.data;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
async projectMemberMe(workspaceSlug: string, projectId: string): Promise<IProjectMember> {
|
|
|
|
return this.get(`/api/workspaces/${workspaceSlug}/projects/${projectId}/project-members/me/`)
|
|
|
|
.then((response) => response?.data)
|
|
|
|
.catch((error) => {
|
2023-04-08 08:16:46 +00:00
|
|
|
throw error?.response;
|
2023-01-26 18:12:20 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
async getProjectMember(
|
|
|
|
workspaceSlug: string,
|
|
|
|
projectId: string,
|
|
|
|
memberId: string
|
|
|
|
): Promise<IProjectMember> {
|
|
|
|
return this.get(`/api/workspaces/${workspaceSlug}/projects/${projectId}/members/${memberId}/`)
|
|
|
|
.then((response) => response?.data)
|
|
|
|
.catch((error) => {
|
|
|
|
throw error?.response?.data;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
async updateProjectMember(
|
|
|
|
workspaceSlug: string,
|
|
|
|
projectId: string,
|
|
|
|
memberId: string,
|
|
|
|
data: Partial<IProjectMember>
|
|
|
|
): Promise<IProjectMember> {
|
2023-05-15 18:28:41 +00:00
|
|
|
return this.patch(
|
2023-01-26 18:12:20 +00:00
|
|
|
`/api/workspaces/${workspaceSlug}/projects/${projectId}/members/${memberId}/`,
|
|
|
|
data
|
|
|
|
)
|
|
|
|
.then((response) => response?.data)
|
|
|
|
.catch((error) => {
|
|
|
|
throw error?.response?.data;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
async deleteProjectMember(
|
|
|
|
workspaceSlug: string,
|
|
|
|
projectId: string,
|
|
|
|
memberId: string
|
|
|
|
): Promise<any> {
|
|
|
|
return this.delete(
|
|
|
|
`/api/workspaces/${workspaceSlug}/projects/${projectId}/members/${memberId}/`
|
|
|
|
)
|
|
|
|
.then((response) => response?.data)
|
|
|
|
.catch((error) => {
|
|
|
|
throw error?.response?.data;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
async projectInvitations(
|
|
|
|
workspaceSlug: string,
|
|
|
|
projectId: string
|
|
|
|
): Promise<IProjectMemberInvitation[]> {
|
|
|
|
return this.get(`/api/workspaces/${workspaceSlug}/projects/${projectId}/invitations/`)
|
|
|
|
.then((response) => response?.data)
|
|
|
|
.catch((error) => {
|
|
|
|
throw error?.response?.data;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
async updateProjectInvitation(
|
|
|
|
workspaceSlug: string,
|
|
|
|
projectId: string,
|
|
|
|
invitationId: string
|
|
|
|
): Promise<any> {
|
|
|
|
return this.put(
|
|
|
|
`/api/workspaces/${workspaceSlug}/projects/${projectId}/invitations/${invitationId}/`
|
|
|
|
)
|
|
|
|
.then((response) => response?.data)
|
|
|
|
.catch((error) => {
|
|
|
|
throw error?.response?.data;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
async deleteProjectInvitation(
|
|
|
|
workspaceSlug: string,
|
|
|
|
projectId: string,
|
|
|
|
invitationId: string
|
|
|
|
): Promise<any> {
|
|
|
|
return this.delete(
|
|
|
|
`/api/workspaces/${workspaceSlug}/projects/${projectId}/invitations/${invitationId}/`
|
|
|
|
)
|
|
|
|
.then((response) => response?.data)
|
|
|
|
.catch((error) => {
|
|
|
|
throw error?.response?.data;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
async setProjectView(
|
|
|
|
workspaceSlug: string,
|
|
|
|
projectId: string,
|
|
|
|
data: {
|
|
|
|
view_props?: ProjectViewTheme;
|
|
|
|
default_props?: ProjectViewTheme;
|
|
|
|
}
|
|
|
|
): Promise<any> {
|
|
|
|
await this.post(`/api/workspaces/${workspaceSlug}/projects/${projectId}/project-views/`, data)
|
|
|
|
.then((response) => response?.data)
|
|
|
|
.catch((error) => {
|
|
|
|
throw error?.response?.data;
|
|
|
|
});
|
|
|
|
}
|
2023-02-22 14:10:57 +00:00
|
|
|
|
2023-03-10 10:33:49 +00:00
|
|
|
async getGithubRepositories(url: string): Promise<GithubRepositoriesResponse> {
|
|
|
|
return this.getWithoutBase(url)
|
2023-02-22 14:10:57 +00:00
|
|
|
.then((response) => response?.data)
|
|
|
|
.catch((error) => {
|
|
|
|
throw error?.response?.data;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2023-04-22 18:16:19 +00:00
|
|
|
async syncGithubRepository(
|
2023-03-01 08:41:27 +00:00
|
|
|
workspaceSlug: string,
|
2023-02-22 14:10:57 +00:00
|
|
|
projectId: string,
|
|
|
|
workspaceIntegrationId: string,
|
|
|
|
data: {
|
|
|
|
name: string;
|
|
|
|
owner: string;
|
|
|
|
repository_id: string;
|
|
|
|
url: string;
|
|
|
|
}
|
|
|
|
): Promise<any> {
|
|
|
|
return this.post(
|
2023-03-01 08:41:27 +00:00
|
|
|
`/api/workspaces/${workspaceSlug}/projects/${projectId}/workspace-integrations/${workspaceIntegrationId}/github-repository-sync/`,
|
2023-02-22 14:10:57 +00:00
|
|
|
data
|
|
|
|
)
|
|
|
|
.then((response) => response?.data)
|
|
|
|
.catch((error) => {
|
|
|
|
throw error?.response?.data;
|
|
|
|
});
|
|
|
|
}
|
2023-02-23 12:42:07 +00:00
|
|
|
|
|
|
|
async getProjectGithubRepository(
|
|
|
|
workspaceSlug: string,
|
|
|
|
projectId: string,
|
|
|
|
integrationId: string
|
|
|
|
): Promise<any> {
|
|
|
|
return this.get(
|
|
|
|
`/api/workspaces/${workspaceSlug}/projects/${projectId}/workspace-integrations/${integrationId}/github-repository-sync/`
|
|
|
|
)
|
|
|
|
.then((response) => response?.data)
|
|
|
|
.catch((error) => {
|
|
|
|
throw error?.response?.data;
|
|
|
|
});
|
|
|
|
}
|
2023-03-01 08:41:27 +00:00
|
|
|
|
2023-03-04 12:17:03 +00:00
|
|
|
async getFavoriteProjects(workspaceSlug: string): Promise<IFavoriteProject[]> {
|
2023-03-06 06:07:18 +00:00
|
|
|
return this.get(`/api/workspaces/${workspaceSlug}/user-favorite-projects/`)
|
2023-03-04 12:17:03 +00:00
|
|
|
.then((response) => response?.data)
|
|
|
|
.catch((error) => {
|
|
|
|
throw error?.response?.data;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2023-03-06 06:07:18 +00:00
|
|
|
async addProjectToFavorites(
|
2023-03-01 08:41:27 +00:00
|
|
|
workspaceSlug: string,
|
|
|
|
data: {
|
|
|
|
project: string;
|
|
|
|
}
|
|
|
|
): Promise<any> {
|
2023-03-06 06:07:18 +00:00
|
|
|
return this.post(`/api/workspaces/${workspaceSlug}/user-favorite-projects/`, data)
|
2023-03-01 08:41:27 +00:00
|
|
|
.then((response) => response?.data)
|
|
|
|
.catch((error) => {
|
|
|
|
throw error?.response?.data;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2023-03-06 06:07:18 +00:00
|
|
|
async removeProjectFromFavorites(workspaceSlug: string, projectId: string): Promise<any> {
|
|
|
|
return this.delete(`/api/workspaces/${workspaceSlug}/user-favorite-projects/${projectId}/`)
|
2023-03-01 08:41:27 +00:00
|
|
|
.then((response) => response?.data)
|
|
|
|
.catch((error) => {
|
|
|
|
throw error?.response?.data;
|
|
|
|
});
|
|
|
|
}
|
2023-06-23 07:48:38 +00:00
|
|
|
|
|
|
|
async projectIssuesSearch(
|
|
|
|
workspaceSlug: string,
|
|
|
|
projectId: string,
|
|
|
|
params: TProjectIssuesSearchParams
|
|
|
|
): Promise<ISearchIssueResponse[]> {
|
|
|
|
return this.get(`/api/workspaces/${workspaceSlug}/projects/${projectId}/search-issues/`, {
|
|
|
|
params,
|
|
|
|
})
|
|
|
|
.then((response) => response?.data)
|
|
|
|
.catch((error) => {
|
|
|
|
throw error?.response?.data;
|
|
|
|
});
|
|
|
|
}
|
2023-01-26 18:12:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export default new ProjectServices();
|