-
Notifications
You must be signed in to change notification settings - Fork 265
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #988 from abdulmalikyusuf/feat/roles-and-permissions
Feat/roles and permissions API integration
- Loading branch information
Showing
5 changed files
with
721 additions
and
86 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,178 @@ | ||
"use server"; | ||
|
||
import axios from "axios"; | ||
import { z } from "zod"; | ||
|
||
import { auth } from "~/lib/auth"; | ||
import { roleSchema } from "~/schemas"; | ||
|
||
const apiUrl = process.env.API_URL; | ||
|
||
export const getRoles = async (org_id: string) => { | ||
const session = await auth(); | ||
|
||
try { | ||
const response = await axios.get( | ||
`${apiUrl}/api/v1/organisations/${org_id}/roles`, | ||
{ | ||
headers: { | ||
Authorization: `Bearer ${session?.access_token}`, | ||
}, | ||
}, | ||
); | ||
|
||
return { | ||
data: response.data, | ||
}; | ||
} catch (error) { | ||
return axios.isAxiosError(error) && error.response | ||
? { | ||
error: error.response.data.message || "Failed.", | ||
status: error.response.status, | ||
} | ||
: { | ||
error: "An unexpected error occurred.", | ||
}; | ||
} | ||
}; | ||
export const getPermissions = async () => { | ||
const session = await auth(); | ||
|
||
try { | ||
const response = await axios.get( | ||
`${apiUrl}/api/v1/organisations/permissions`, | ||
{ | ||
headers: { | ||
Authorization: `Bearer ${session?.access_token}`, | ||
}, | ||
}, | ||
); | ||
|
||
return { | ||
data: response.data.data, | ||
}; | ||
} catch (error) { | ||
return axios.isAxiosError(error) && error.response | ||
? { | ||
error: error.response.data.message || "Failed.", | ||
status: error.response.status, | ||
} | ||
: { | ||
error: "An unexpected error occurred.", | ||
}; | ||
} | ||
}; | ||
|
||
export const getRolePermissions = async ( | ||
currentOrgId: string, | ||
roleId: string, | ||
) => { | ||
const session = await auth(); | ||
|
||
try { | ||
const response = await axios.get( | ||
`${apiUrl}/api/v1/organisations/${currentOrgId}/roles/${roleId}`, | ||
{ | ||
headers: { | ||
Authorization: `Bearer ${session?.access_token}`, | ||
}, | ||
}, | ||
); | ||
|
||
return { | ||
data: response.data.data, | ||
}; | ||
} catch (error) { | ||
return axios.isAxiosError(error) && error.response | ||
? { | ||
error: error.response.data.message || "Failed.", | ||
status: error.response.status, | ||
} | ||
: { | ||
error: "An unexpected error occurred.", | ||
}; | ||
} | ||
}; | ||
|
||
export const createRole = async ( | ||
values: z.infer<typeof roleSchema>, | ||
org_id: string, | ||
) => { | ||
const validatedFields = roleSchema.safeParse(values); | ||
if (!validatedFields.success) { | ||
return { | ||
error: "Create Role Failed. Please check your inputs.", | ||
}; | ||
} | ||
|
||
const session = await auth(); | ||
const payload = validatedFields.data; | ||
|
||
try { | ||
const response = await axios.post( | ||
`${apiUrl}/api/v1/organisations/${org_id}/roles`, | ||
payload, | ||
{ | ||
headers: { | ||
Authorization: `Bearer ${session?.access_token}`, | ||
}, | ||
}, | ||
); | ||
|
||
return { | ||
data: response.data, | ||
}; | ||
} catch (error) { | ||
return axios.isAxiosError(error) && error.response | ||
? { | ||
error: error.response.data.message || "Role creation failed.", | ||
status: error.response.status, | ||
} | ||
: { | ||
error: "An unexpected error occurred.", | ||
}; | ||
} | ||
}; | ||
const roleSchemaWithId = roleSchema.extend({ | ||
id: z.string().uuid(), | ||
permissions: z.array(z.string().uuid()), | ||
}); | ||
export const updateRole = async ( | ||
values: z.infer<typeof roleSchemaWithId>, | ||
currentOrgId: string, | ||
roleId: string, | ||
) => { | ||
const validatedFields = roleSchemaWithId.safeParse(values); | ||
if (!validatedFields.success) { | ||
return { | ||
error: "Create Role Failed. Please check your inputs.", | ||
}; | ||
} | ||
|
||
const session = await auth(); | ||
const payload = validatedFields.data; | ||
|
||
try { | ||
const response = await axios.put( | ||
`${apiUrl}/organisations/${currentOrgId}/roles/${roleId}`, | ||
payload, | ||
{ | ||
headers: { | ||
Authorization: `Bearer ${session?.access_token}`, | ||
}, | ||
}, | ||
); | ||
return { | ||
data: response.data, | ||
}; | ||
} catch (error) { | ||
return axios.isAxiosError(error) && error.response | ||
? { | ||
error: error.response.data.message || "Role creation failed.", | ||
status: error.response.status, | ||
} | ||
: { | ||
error: "An unexpected error occurred.", | ||
}; | ||
} | ||
}; |
Oops, something went wrong.