forked from github/plane
9b7b23f5a2
* dev: magic link login and email password disable * dev: user account deactivation * dev: change nginx conf routes * feat: changemod space * fix: space app dir fixes * dev: invalidate cache for instances when creating workspace * dev: update email templates for test email * dev: fix build errors * fix: auth fixes and improvement (#4452) * chore: change password api updated and missing password error code added * chore: auth helper updated * chore: disable send code input suggestion * chore: change password function updated * fix: application error on sign in page * chore: change password validation added and enhancement * dev: space base path in web * dev: admin user deactivated * dev: user and instance admin session endpoint * fix: last_workspace_id endpoint updated * fix: magic sign in and email password check added --------- Co-authored-by: pablohashescobar <nikhilschacko@gmail.com> Co-authored-by: sriram veeraghanta <veeraghanta.sriram@gmail.com> Co-authored-by: guru_sainath <gurusainath007@gmail.com>
250 lines
6.7 KiB
TypeScript
250 lines
6.7 KiB
TypeScript
// services
|
|
import type {
|
|
TIssue,
|
|
IUser,
|
|
IUserActivityResponse,
|
|
IInstanceAdminStatus,
|
|
IUserProfileData,
|
|
IUserProfileProjectSegregation,
|
|
IUserSettings,
|
|
IUserEmailNotificationSettings,
|
|
TUserProfile,
|
|
} from "@plane/types";
|
|
import { API_BASE_URL } from "@/helpers/common.helper";
|
|
import { APIService } from "@/services/api.service";
|
|
// types
|
|
// helpers
|
|
|
|
export class UserService extends APIService {
|
|
constructor() {
|
|
super(API_BASE_URL);
|
|
}
|
|
|
|
currentUserConfig() {
|
|
return {
|
|
url: `${this.baseURL}/api/users/me/`,
|
|
};
|
|
}
|
|
|
|
async userIssues(
|
|
workspaceSlug: string,
|
|
params: any
|
|
): Promise<
|
|
| {
|
|
[key: string]: TIssue[];
|
|
}
|
|
| TIssue[]
|
|
> {
|
|
return this.get(`/api/workspaces/${workspaceSlug}/my-issues/`, {
|
|
params,
|
|
})
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
|
|
async currentUser(): Promise<IUser> {
|
|
return this.get("/api/users/me/")
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response;
|
|
});
|
|
}
|
|
|
|
async getCurrentUserProfile(): Promise<TUserProfile> {
|
|
return this.get("/api/users/me/profile/")
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response;
|
|
});
|
|
}
|
|
async updateCurrentUserProfile(data: any): Promise<any> {
|
|
return this.patch("/api/users/me/profile/", data)
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response;
|
|
});
|
|
}
|
|
|
|
async getCurrentUserAccounts(): Promise<any> {
|
|
return this.get("/api/users/me/accounts/")
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response;
|
|
});
|
|
}
|
|
|
|
async currentUserInstanceAdminStatus(): Promise<IInstanceAdminStatus> {
|
|
return this.get("/api/users/me/instance-admin/")
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response;
|
|
});
|
|
}
|
|
|
|
async currentUserSettings(): Promise<IUserSettings> {
|
|
return this.get("/api/users/me/settings/")
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response;
|
|
});
|
|
}
|
|
|
|
async currentUserEmailNotificationSettings(): Promise<IUserEmailNotificationSettings> {
|
|
return this.get("/api/users/me/notification-preferences/")
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response;
|
|
});
|
|
}
|
|
|
|
async updateUser(data: Partial<IUser>): Promise<any> {
|
|
return this.patch("/api/users/me/", data)
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
|
|
async updateUserOnBoard(): Promise<any> {
|
|
return this.patch("/api/users/me/onboard/", {
|
|
is_onboarded: true,
|
|
})
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
|
|
async updateUserTourCompleted(): Promise<any> {
|
|
return this.patch("/api/users/me/tour-completed/", {
|
|
is_tour_completed: true,
|
|
})
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
|
|
async updateCurrentUserEmailNotificationSettings(data: Partial<IUserEmailNotificationSettings>): Promise<any> {
|
|
return this.patch("/api/users/me/notification-preferences/", data)
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
|
|
async getUserActivity(params: { per_page: number; cursor?: string }): Promise<IUserActivityResponse> {
|
|
return this.get("/api/users/me/activities/", { params })
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
|
|
async changePassword(token: string, data: { old_password: string; new_password: string }): Promise<any> {
|
|
return this.post(`/auth/change-password/`, data, {
|
|
headers: {
|
|
"X-CSRFTOKEN": token,
|
|
},
|
|
})
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
|
|
async getUserProfileData(workspaceSlug: string, userId: string): Promise<IUserProfileData> {
|
|
return this.get(`/api/workspaces/${workspaceSlug}/user-stats/${userId}/`)
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
|
|
async getUserProfileProjectsSegregation(
|
|
workspaceSlug: string,
|
|
userId: string
|
|
): Promise<IUserProfileProjectSegregation> {
|
|
return this.get(`/api/workspaces/${workspaceSlug}/user-profile/${userId}/`)
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
|
|
async getUserProfileActivity(
|
|
workspaceSlug: string,
|
|
userId: string,
|
|
params: {
|
|
per_page: number;
|
|
cursor?: string;
|
|
}
|
|
): Promise<IUserActivityResponse> {
|
|
return this.get(`/api/workspaces/${workspaceSlug}/user-activity/${userId}/`, {
|
|
params,
|
|
})
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
|
|
async downloadProfileActivity(
|
|
workspaceSlug: string,
|
|
userId: string,
|
|
data: {
|
|
date: string;
|
|
}
|
|
): Promise<any> {
|
|
return this.post(`/api/workspaces/${workspaceSlug}/user-activity/${userId}/export/`, data)
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
|
|
async getUserProfileIssues(workspaceSlug: string, userId: string, params: any): Promise<TIssue[]> {
|
|
return this.get(`/api/workspaces/${workspaceSlug}/user-issues/${userId}/`, {
|
|
params,
|
|
})
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
|
|
async deactivateAccount() {
|
|
return this.delete(`/api/users/me/`)
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
|
|
async leaveWorkspace(workspaceSlug: string) {
|
|
return this.post(`/api/workspaces/${workspaceSlug}/members/leave/`)
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
|
|
async joinProject(workspaceSlug: string, project_ids: string[]): Promise<any> {
|
|
return this.post(`/api/users/me/workspaces/${workspaceSlug}/projects/invitations/`, { project_ids })
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
|
|
async leaveProject(workspaceSlug: string, projectId: string) {
|
|
return this.post(`/api/workspaces/${workspaceSlug}/projects/${projectId}/members/leave/`)
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
}
|