2024-05-17 23:18:15 -07:00
|
|
|
"use server";
|
2024-04-23 01:53:37 -04:00
|
|
|
|
2024-05-17 23:18:15 -07:00
|
|
|
import { revalidatePath } from "next/cache";
|
2024-05-23 01:35:08 -07:00
|
|
|
import ecsClient, { ec2Client } from "./ecs";
|
|
|
|
import {
|
|
|
|
CreateServiceCommand,
|
|
|
|
DescribeClustersCommand,
|
|
|
|
DescribeServicesCommand,
|
|
|
|
DescribeTasksCommand,
|
|
|
|
ListTasksCommand,
|
|
|
|
} from "@aws-sdk/client-ecs";
|
|
|
|
import { DescribeNetworkInterfacesCommand } from "@aws-sdk/client-ec2";
|
2024-04-27 21:24:20 -04:00
|
|
|
|
2024-04-23 01:53:37 -04:00
|
|
|
export async function createSandbox(body: {
|
2024-05-17 23:18:15 -07:00
|
|
|
type: string;
|
|
|
|
name: string;
|
|
|
|
userId: string;
|
|
|
|
visibility: string;
|
2024-04-23 01:53:37 -04:00
|
|
|
}) {
|
2024-05-05 22:33:24 -07:00
|
|
|
const res = await fetch(
|
|
|
|
"https://database.ishaan1013.workers.dev/api/sandbox",
|
|
|
|
{
|
|
|
|
method: "PUT",
|
|
|
|
headers: {
|
|
|
|
"Content-Type": "application/json",
|
|
|
|
},
|
|
|
|
body: JSON.stringify(body),
|
|
|
|
}
|
2024-05-17 23:18:15 -07:00
|
|
|
);
|
2024-04-27 16:22:35 -04:00
|
|
|
|
2024-05-17 23:18:15 -07:00
|
|
|
return await res.text();
|
2024-04-23 01:53:37 -04:00
|
|
|
}
|
2024-04-27 21:24:20 -04:00
|
|
|
|
|
|
|
export async function updateSandbox(body: {
|
2024-05-17 23:18:15 -07:00
|
|
|
id: string;
|
|
|
|
name?: string;
|
|
|
|
visibility?: "public" | "private";
|
2024-04-27 21:24:20 -04:00
|
|
|
}) {
|
2024-05-05 22:33:24 -07:00
|
|
|
await fetch("https://database.ishaan1013.workers.dev/api/sandbox", {
|
2024-04-27 21:24:20 -04:00
|
|
|
method: "POST",
|
|
|
|
headers: {
|
|
|
|
"Content-Type": "application/json",
|
|
|
|
},
|
|
|
|
body: JSON.stringify(body),
|
2024-05-17 23:18:15 -07:00
|
|
|
});
|
2024-04-27 21:24:20 -04:00
|
|
|
|
2024-05-17 23:18:15 -07:00
|
|
|
revalidatePath("/dashboard");
|
2024-04-27 21:24:20 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
export async function deleteSandbox(id: string) {
|
2024-05-05 22:33:24 -07:00
|
|
|
await fetch(`https://database.ishaan1013.workers.dev/api/sandbox?id=${id}`, {
|
2024-04-27 21:24:20 -04:00
|
|
|
method: "DELETE",
|
2024-05-17 23:18:15 -07:00
|
|
|
});
|
2024-04-27 21:24:20 -04:00
|
|
|
|
2024-05-17 23:18:15 -07:00
|
|
|
revalidatePath("/dashboard");
|
2024-04-27 21:24:20 -04:00
|
|
|
}
|
2024-05-01 01:29:16 -04:00
|
|
|
|
|
|
|
export async function shareSandbox(sandboxId: string, email: string) {
|
2024-05-05 22:33:24 -07:00
|
|
|
const res = await fetch(
|
|
|
|
"https://database.ishaan1013.workers.dev/api/sandbox/share",
|
|
|
|
{
|
|
|
|
method: "POST",
|
|
|
|
headers: {
|
|
|
|
"Content-Type": "application/json",
|
|
|
|
},
|
|
|
|
body: JSON.stringify({ sandboxId, email }),
|
|
|
|
}
|
2024-05-17 23:18:15 -07:00
|
|
|
);
|
|
|
|
const text = await res.text();
|
2024-05-01 01:53:49 -04:00
|
|
|
|
|
|
|
if (res.status !== 200) {
|
2024-05-17 23:18:15 -07:00
|
|
|
return { success: false, message: text };
|
2024-05-01 01:29:16 -04:00
|
|
|
}
|
2024-05-01 01:53:49 -04:00
|
|
|
|
2024-05-17 23:18:15 -07:00
|
|
|
revalidatePath(`/code/${sandboxId}`);
|
|
|
|
return { success: true, message: "Shared successfully." };
|
2024-05-01 01:29:16 -04:00
|
|
|
}
|
2024-05-01 02:22:02 -04:00
|
|
|
|
|
|
|
export async function unshareSandbox(sandboxId: string, userId: string) {
|
2024-05-05 22:33:24 -07:00
|
|
|
await fetch("https://database.ishaan1013.workers.dev/api/sandbox/share", {
|
2024-05-01 02:22:02 -04:00
|
|
|
method: "DELETE",
|
|
|
|
headers: {
|
|
|
|
"Content-Type": "application/json",
|
|
|
|
},
|
|
|
|
body: JSON.stringify({ sandboxId, userId }),
|
2024-05-17 23:18:15 -07:00
|
|
|
});
|
2024-05-01 02:22:02 -04:00
|
|
|
|
2024-05-17 23:18:15 -07:00
|
|
|
revalidatePath(`/code/${sandboxId}`);
|
|
|
|
}
|
|
|
|
|
2024-05-23 01:35:08 -07:00
|
|
|
export async function describeService(serviceName: string) {
|
|
|
|
const command = new DescribeServicesCommand({
|
|
|
|
cluster: process.env.NEXT_PUBLIC_AWS_ECS_CLUSTER!,
|
|
|
|
services: [serviceName],
|
|
|
|
});
|
|
|
|
|
|
|
|
return await ecsClient.send(command);
|
|
|
|
}
|
|
|
|
|
|
|
|
export async function getTaskIp(serviceName: string) {
|
|
|
|
const listCommand = new ListTasksCommand({
|
|
|
|
cluster: process.env.NEXT_PUBLIC_AWS_ECS_CLUSTER!,
|
|
|
|
serviceName,
|
|
|
|
});
|
|
|
|
|
|
|
|
const listResponse = await ecsClient.send(listCommand);
|
|
|
|
const taskArns = listResponse.taskArns;
|
|
|
|
|
|
|
|
const describeCommand = new DescribeTasksCommand({
|
|
|
|
cluster: process.env.NEXT_PUBLIC_AWS_ECS_CLUSTER!,
|
|
|
|
tasks: taskArns,
|
|
|
|
});
|
|
|
|
|
|
|
|
const describeResponse = await ecsClient.send(describeCommand);
|
|
|
|
const tasks = describeResponse.tasks;
|
|
|
|
const taskAttachment = tasks?.[0].attachments?.[0].details;
|
|
|
|
if (!taskAttachment) {
|
|
|
|
throw new Error("Task attachment not found");
|
|
|
|
}
|
|
|
|
|
|
|
|
const eni = taskAttachment.find(
|
|
|
|
(detail) => detail.name === "networkInterfaceId"
|
|
|
|
)?.value;
|
|
|
|
if (!eni) {
|
|
|
|
throw new Error("Network interface not found");
|
|
|
|
}
|
|
|
|
|
|
|
|
const describeNetworkInterfacesCommand = new DescribeNetworkInterfacesCommand(
|
|
|
|
{
|
|
|
|
NetworkInterfaceIds: [eni],
|
|
|
|
}
|
|
|
|
);
|
|
|
|
const describeNetworkInterfacesResponse = await ec2Client.send(
|
|
|
|
describeNetworkInterfacesCommand
|
|
|
|
);
|
|
|
|
|
|
|
|
const ip =
|
|
|
|
describeNetworkInterfacesResponse.NetworkInterfaces?.[0].Association
|
|
|
|
?.PublicIp;
|
|
|
|
if (!ip) {
|
|
|
|
throw new Error("Public IP not found");
|
|
|
|
}
|
|
|
|
|
|
|
|
return ip;
|
|
|
|
}
|
|
|
|
|
|
|
|
async function doesServiceExist(serviceName: string) {
|
|
|
|
const response = await describeService(serviceName);
|
|
|
|
const activeServices = response.services?.filter(
|
|
|
|
(service) => service.status === "ACTIVE"
|
|
|
|
);
|
|
|
|
|
|
|
|
console.log("activeServices: ", activeServices);
|
|
|
|
|
|
|
|
return activeServices?.length === 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
async function countServices() {
|
|
|
|
const command = new DescribeClustersCommand({
|
|
|
|
clusters: [process.env.NEXT_PUBLIC_AWS_ECS_CLUSTER!],
|
|
|
|
});
|
|
|
|
|
|
|
|
const response = await ecsClient.send(command);
|
|
|
|
return response.clusters?.[0].activeServicesCount!;
|
|
|
|
}
|
|
|
|
|
|
|
|
export async function startServer(
|
|
|
|
serviceName: string
|
|
|
|
): Promise<{ success: boolean; message: string }> {
|
|
|
|
const serviceExists = await doesServiceExist(serviceName);
|
|
|
|
if (serviceExists) {
|
|
|
|
return { success: true, message: "" };
|
|
|
|
}
|
|
|
|
|
|
|
|
const activeServices = await countServices();
|
|
|
|
if (activeServices >= 100) {
|
|
|
|
return {
|
|
|
|
success: false,
|
|
|
|
message:
|
|
|
|
"Too many servers are running! Please try again later or contact @ishaandey_ on Twitter/X.",
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2024-05-17 23:18:15 -07:00
|
|
|
const command = new CreateServiceCommand({
|
2024-05-23 01:35:08 -07:00
|
|
|
cluster: process.env.NEXT_PUBLIC_AWS_ECS_CLUSTER!,
|
2024-05-17 23:18:15 -07:00
|
|
|
serviceName,
|
|
|
|
taskDefinition: "Sandbox1",
|
|
|
|
desiredCount: 1,
|
2024-05-23 01:35:08 -07:00
|
|
|
launchType: "FARGATE",
|
2024-05-17 23:18:15 -07:00
|
|
|
networkConfiguration: {
|
|
|
|
awsvpcConfiguration: {
|
2024-05-21 00:57:52 -07:00
|
|
|
securityGroups: [process.env.AWS_ECS_SECURITY_GROUP!],
|
2024-05-17 23:18:15 -07:00
|
|
|
subnets: [
|
|
|
|
"subnet-06d04f2a6ebb1710c",
|
|
|
|
"subnet-097c000f157c26a78",
|
|
|
|
"subnet-00f931ecbabaf87dd",
|
|
|
|
"subnet-0adcb82d77db9f263",
|
|
|
|
"subnet-0c6874150d8e63a7c",
|
|
|
|
"subnet-0b76f9ee3fe20660d",
|
|
|
|
],
|
|
|
|
assignPublicIp: "ENABLED",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
try {
|
|
|
|
const response = await ecsClient.send(command);
|
2024-05-21 00:57:52 -07:00
|
|
|
console.log("started server:", response.service?.serviceName);
|
|
|
|
|
2024-05-23 01:35:08 -07:00
|
|
|
return { success: true, message: "" };
|
|
|
|
|
2024-05-21 00:57:52 -07:00
|
|
|
// store in workers kv:
|
|
|
|
// {
|
|
|
|
// userId: {
|
|
|
|
// sandboxId,
|
|
|
|
// serviceName,
|
|
|
|
// startedAt,
|
|
|
|
|
|
|
|
// }
|
|
|
|
// }
|
2024-05-23 01:35:08 -07:00
|
|
|
} catch (error: any) {
|
|
|
|
// console.error("Error starting server:", error.message);
|
|
|
|
return {
|
|
|
|
success: false,
|
|
|
|
message: `Error starting server: ${error.message}. Try again in a minute, or contact @ishaandey_ on Twitter/X if it still doesn't work.`,
|
|
|
|
};
|
2024-05-17 23:18:15 -07:00
|
|
|
}
|
2024-05-01 02:22:02 -04:00
|
|
|
}
|