mirror of
https://github.com/rzmk/learnhouse.git
synced 2025-12-19 04:19:25 +00:00
74 lines
No EOL
1.9 KiB
TypeScript
74 lines
No EOL
1.9 KiB
TypeScript
import { getAPIUrl } from '@services/config/config'
|
|
import {
|
|
RequestBodyWithAuthHeader,
|
|
errorHandling,
|
|
getResponseMetadata,
|
|
} from '@services/utils/ts/requests'
|
|
|
|
/*
|
|
This file includes certification-related API calls
|
|
GET requests are called from the frontend using SWR (https://swr.vercel.app/)
|
|
*/
|
|
|
|
export async function getCourseCertifications(
|
|
course_uuid: string,
|
|
next: any,
|
|
access_token: string
|
|
) {
|
|
const result = await fetch(
|
|
`${getAPIUrl()}certifications/course/${course_uuid}`,
|
|
RequestBodyWithAuthHeader('GET', null, next, access_token)
|
|
)
|
|
const res = await getResponseMetadata(result)
|
|
return res
|
|
}
|
|
|
|
export async function createCertification(
|
|
course_id: number,
|
|
config: any,
|
|
access_token: string
|
|
) {
|
|
const result = await fetch(
|
|
`${getAPIUrl()}certifications/`,
|
|
RequestBodyWithAuthHeader('POST', { course_id, config }, null, access_token)
|
|
)
|
|
const res = await errorHandling(result)
|
|
return res
|
|
}
|
|
|
|
export async function updateCertification(
|
|
certification_uuid: string,
|
|
config: any,
|
|
access_token: string
|
|
) {
|
|
const result = await fetch(
|
|
`${getAPIUrl()}certifications/${certification_uuid}`,
|
|
RequestBodyWithAuthHeader('PUT', { config }, null, access_token)
|
|
)
|
|
const res = await errorHandling(result)
|
|
return res
|
|
}
|
|
|
|
export async function deleteCertification(
|
|
certification_uuid: string,
|
|
access_token: string
|
|
) {
|
|
const result = await fetch(
|
|
`${getAPIUrl()}certifications/${certification_uuid}`,
|
|
RequestBodyWithAuthHeader('DELETE', null, null, access_token)
|
|
)
|
|
const res = await errorHandling(result)
|
|
return res
|
|
}
|
|
|
|
export async function getUserCertificates(
|
|
course_uuid: string,
|
|
access_token: string
|
|
) {
|
|
const result = await fetch(
|
|
`${getAPIUrl()}certifications/user/course/${course_uuid}`,
|
|
RequestBodyWithAuthHeader('GET', null, null, access_token)
|
|
)
|
|
const res = await getResponseMetadata(result)
|
|
return res
|
|
}
|