mirror of
https://github.com/i701/sarlink-portal.git
synced 2025-02-22 17:22:17 +00:00
Add user rejection and device addition functionalities
- Implemented Rejectuser function to delete a user and send rejection details via SMS. - Added SendUserRejectionDetailSMS function for SMS notifications. - Introduced AddDevice function to create new devices associated with users. - Updated user-actions.ts to include new functionalities and improve user management. - Refactored auth-guard.ts to ensure proper session handling for admin access.
This commit is contained in:
parent
3f8bb4e70a
commit
2cbf9fb773
@ -2,6 +2,7 @@
|
|||||||
|
|
||||||
import prisma from "@/lib/db";
|
import prisma from "@/lib/db";
|
||||||
import { revalidatePath } from "next/cache";
|
import { revalidatePath } from "next/cache";
|
||||||
|
import { redirect } from "next/navigation";
|
||||||
import { CreateClient } from "./ninja/client";
|
import { CreateClient } from "./ninja/client";
|
||||||
|
|
||||||
export async function VerifyUser(userId: string) {
|
export async function VerifyUser(userId: string) {
|
||||||
@ -46,3 +47,67 @@ export async function VerifyUser(userId: string) {
|
|||||||
});
|
});
|
||||||
revalidatePath("/users");
|
revalidatePath("/users");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export async function Rejectuser({
|
||||||
|
userId,
|
||||||
|
reason,
|
||||||
|
}: { userId: string; reason: string }) {
|
||||||
|
const user = await prisma.user.findUnique({
|
||||||
|
where: {
|
||||||
|
id: userId,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
if (!user) {
|
||||||
|
throw new Error("User not found");
|
||||||
|
}
|
||||||
|
await prisma.user.delete({
|
||||||
|
where: {
|
||||||
|
id: userId,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
await SendUserRejectionDetailSMS({
|
||||||
|
details: reason,
|
||||||
|
phoneNumber: user.phoneNumber,
|
||||||
|
});
|
||||||
|
revalidatePath("/users");
|
||||||
|
redirect("/users");
|
||||||
|
}
|
||||||
|
|
||||||
|
export const SendUserRejectionDetailSMS = async ({
|
||||||
|
details,
|
||||||
|
phoneNumber,
|
||||||
|
}: {
|
||||||
|
details: string;
|
||||||
|
phoneNumber: string;
|
||||||
|
}) => {
|
||||||
|
const respose = await fetch("https://smsapi.sarlink.link/send", {
|
||||||
|
method: "POST",
|
||||||
|
headers: {
|
||||||
|
"Content-Type": "application/json",
|
||||||
|
},
|
||||||
|
body: JSON.stringify({
|
||||||
|
api_key: process.env.SMS_API_KEY,
|
||||||
|
number: phoneNumber,
|
||||||
|
text: details,
|
||||||
|
}),
|
||||||
|
});
|
||||||
|
const data = await respose.json();
|
||||||
|
console.log(data);
|
||||||
|
return data;
|
||||||
|
};
|
||||||
|
|
||||||
|
export async function AddDevice({
|
||||||
|
name,
|
||||||
|
mac_address,
|
||||||
|
user_id,
|
||||||
|
}: { name: string; mac_address: string; user_id: string }) {
|
||||||
|
const newDevice = await prisma.device.create({
|
||||||
|
data: {
|
||||||
|
name: name,
|
||||||
|
mac: mac_address,
|
||||||
|
userId: user_id,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
revalidatePath("/devices");
|
||||||
|
return newDevice;
|
||||||
|
}
|
||||||
|
@ -1,11 +1,12 @@
|
|||||||
|
"use server";
|
||||||
import { auth } from "@/lib/auth";
|
import { auth } from "@/lib/auth";
|
||||||
import { redirect } from "next/navigation";
|
|
||||||
import { headers } from "next/headers";
|
import { headers } from "next/headers";
|
||||||
|
import { redirect } from "next/navigation";
|
||||||
|
|
||||||
const session = await auth.api.getSession({
|
|
||||||
headers: await headers(),
|
|
||||||
});
|
|
||||||
export async function AdminAuthGuard() {
|
export async function AdminAuthGuard() {
|
||||||
|
const session = await auth.api.getSession({
|
||||||
|
headers: await headers(),
|
||||||
|
});
|
||||||
if (session?.user.role !== "ADMIN") {
|
if (session?.user.role !== "ADMIN") {
|
||||||
return redirect("/login");
|
return redirect("/login");
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user