mirror of
https://github.com/Dokploy/dokploy
synced 2025-06-26 18:27:59 +00:00
* feat: add start monitoring remote servers * reafctor: update * refactor: update * refactor: update * refactor: update * refactor: update * refactor: update * refactor: update * refactor: * refactor: add metrics * feat: add disk monitoring * refactor: translate to english * refacotor: add stats * refactor: remove color * feat: add log server metrics * refactor: remove unused deps * refactor: add origin * refactor: add logs * refactor: update * feat: add series monitoring * refactor: add system monitoring * feat: add benchmark to optimize data * refactor: update fn * refactor: remove comments * refactor: update * refactor: exclude items * feat: add refresh rate * feat: add monitoring remote servers * refactor: update * refactor: remove unsued volumes * refactor: update monitoring * refactor: add more presets * feat: add container metrics * feat: add docker monitoring * refactor: update conversion * refactor: remove unused code * refactor: update * refactor: add docker compose logs * refactor: add docker cli * refactor: add install curl * refactor: add get update * refactor: add monitoring remote servers * refactor: add containers config * feat: add container specification * refactor: update path * refactor: add server filter * refactor: simplify logic * fix: verify if file exist before get stats * refactor: update * refactor: remove unused deps * test: add test for containers * refactor: update * refactor add memory collector * refactor: update * refactor: update * refactor: update * refactor: remove * refactor: add memory * refactor: add server memory usage * refactor: change memory * refactor: update * refactor: update * refactor: add container metrics * refactor: comment code * refactor: mount proc bind * refactor: change interval with node cron * refactor: remove opening file * refactor: use streams * refactor: remove unused ws * refactor: disable live when is all * refactor: add sqlite * refactor: update * feat: add golang benchmark * refactor: update go * refactor: update dockerfile * refactor: update db * refactor: add env * refactor: separate logic * refactor: split logic * refactor: update logs * refactor: update dockerfile * refactor: hide .env * refactor: update * chore: hide ,.ebnv * refactor: add end angle * refactor: update * refactor: update * refactor: update * refactor: update * refactor: update * refactor: update monitoring * refactor: add mount db * refactor: add metrics and url callback * refactor: add middleware * refactor: add threshold property * feat: add memory and cpu threshold notification * feat: send notifications to the server * feat: add metrics for dokploy server * refactor: add dokploy server to monitoring * refactor: update methods * refactor: add admin to useeffect * refactor: stop monitoring containers if elements are 0 * refactor: cancel request if appName is empty * refactor: reuse methods * chore; add feat monitoring * refactor: set base url * refactor: adjust monitoring * refactor: delete migrations * feat: add columns * fix: add missing flag * refactor: add free metrics * refactor: add paid monitoring * refactor: update methods * feat: improve ui * feat: add container stats * refactor: add all container metrics * refactor: add color primary * refactor: change default rate limiting refresher * refactor: update retention days * refactor: use json instead of individual properties * refactor: lint * refactor: pass json env * refactor: update * refactor: delete * refactor: update * refactor: fix types * refactor: add retention days * chore: add license * refactor: create db * refactor: update path * refactor: update setup * refactor: update * refactor: create files * refactor: update * refactor: delete * refactor: update * refactor: update token metrics * fix: typechecks * refactor: setup web server * refactor: update error handling and add monitoring * refactor: add local storage save * refactor: add spacing * refactor: update * refactor: upgrade drizzle * refactor: delete * refactor: uppgrade drizzle kit * refactor: update search with jsonB * chore: upgrade drizzle * chore: update packages * refactor: add missing type * refactor: add serverType * refactor: update url * refactor: update * refactor: update * refactor: hide monitoring on self hosted * refactor: update server * refactor: update * refactor: update * refactor: pin node version
192 lines
3.8 KiB
TypeScript
192 lines
3.8 KiB
TypeScript
import { randomBytes } from "node:crypto";
|
|
import { db } from "@dokploy/server/db";
|
|
import {
|
|
admins,
|
|
type apiCreateUserInvitation,
|
|
auth,
|
|
users,
|
|
} from "@dokploy/server/db/schema";
|
|
import { TRPCError } from "@trpc/server";
|
|
import * as bcrypt from "bcrypt";
|
|
import { eq } from "drizzle-orm";
|
|
import { IS_CLOUD } from "../constants";
|
|
|
|
export type Admin = typeof admins.$inferSelect;
|
|
export const createInvitation = async (
|
|
input: typeof apiCreateUserInvitation._type,
|
|
adminId: string,
|
|
) => {
|
|
await db.transaction(async (tx) => {
|
|
const result = await tx
|
|
.insert(auth)
|
|
.values({
|
|
email: input.email.toLowerCase(),
|
|
rol: "user",
|
|
password: bcrypt.hashSync("01231203012312", 10),
|
|
})
|
|
.returning()
|
|
.then((res) => res[0]);
|
|
|
|
if (!result) {
|
|
throw new TRPCError({
|
|
code: "BAD_REQUEST",
|
|
message: "Error creating the user",
|
|
});
|
|
}
|
|
const expiresIn24Hours = new Date();
|
|
expiresIn24Hours.setDate(expiresIn24Hours.getDate() + 1);
|
|
const token = randomBytes(32).toString("hex");
|
|
await tx
|
|
.insert(users)
|
|
.values({
|
|
adminId: adminId,
|
|
authId: result.id,
|
|
token,
|
|
expirationDate: expiresIn24Hours.toISOString(),
|
|
})
|
|
.returning();
|
|
});
|
|
};
|
|
|
|
export const findAdminById = async (adminId: string) => {
|
|
const admin = await db.query.admins.findFirst({
|
|
where: eq(admins.adminId, adminId),
|
|
});
|
|
if (!admin) {
|
|
throw new TRPCError({
|
|
code: "NOT_FOUND",
|
|
message: "Admin not found",
|
|
});
|
|
}
|
|
return admin;
|
|
};
|
|
|
|
export const updateAdmin = async (
|
|
authId: string,
|
|
adminData: Partial<Admin>,
|
|
) => {
|
|
const admin = await db
|
|
.update(admins)
|
|
.set({
|
|
...adminData,
|
|
})
|
|
.where(eq(admins.authId, authId))
|
|
.returning()
|
|
.then((res) => res[0]);
|
|
|
|
return admin;
|
|
};
|
|
|
|
export const updateAdminById = async (
|
|
adminId: string,
|
|
adminData: Partial<Admin>,
|
|
) => {
|
|
const admin = await db
|
|
.update(admins)
|
|
.set({
|
|
...adminData,
|
|
})
|
|
.where(eq(admins.adminId, adminId))
|
|
.returning()
|
|
.then((res) => res[0]);
|
|
|
|
return admin;
|
|
};
|
|
|
|
export const isAdminPresent = async () => {
|
|
const admin = await db.query.admins.findFirst();
|
|
if (!admin) {
|
|
return false;
|
|
}
|
|
return true;
|
|
};
|
|
|
|
export const findAdminByAuthId = async (authId: string) => {
|
|
const admin = await db.query.admins.findFirst({
|
|
where: eq(admins.authId, authId),
|
|
with: {
|
|
users: true,
|
|
},
|
|
});
|
|
if (!admin) {
|
|
throw new TRPCError({
|
|
code: "NOT_FOUND",
|
|
message: "Admin not found",
|
|
});
|
|
}
|
|
return admin;
|
|
};
|
|
|
|
export const findAdmin = async () => {
|
|
const admin = await db.query.admins.findFirst({});
|
|
if (!admin) {
|
|
throw new TRPCError({
|
|
code: "NOT_FOUND",
|
|
message: "Admin not found",
|
|
});
|
|
}
|
|
return admin;
|
|
};
|
|
|
|
export const getUserByToken = async (token: string) => {
|
|
const user = await db.query.users.findFirst({
|
|
where: eq(users.token, token),
|
|
with: {
|
|
auth: {
|
|
columns: {
|
|
password: false,
|
|
},
|
|
},
|
|
},
|
|
});
|
|
|
|
if (!user) {
|
|
throw new TRPCError({
|
|
code: "NOT_FOUND",
|
|
message: "Invitation not found",
|
|
});
|
|
}
|
|
return {
|
|
...user,
|
|
isExpired: user.isRegistered,
|
|
};
|
|
};
|
|
|
|
export const removeUserByAuthId = async (authId: string) => {
|
|
await db
|
|
.delete(auth)
|
|
.where(eq(auth.id, authId))
|
|
.returning()
|
|
.then((res) => res[0]);
|
|
};
|
|
|
|
export const removeAdminByAuthId = async (authId: string) => {
|
|
const admin = await findAdminByAuthId(authId);
|
|
if (!admin) return null;
|
|
|
|
// First delete all associated users
|
|
const users = admin.users;
|
|
|
|
for (const user of users) {
|
|
await removeUserByAuthId(user.authId);
|
|
}
|
|
// Then delete the auth record which will cascade delete the admin
|
|
return await db
|
|
.delete(auth)
|
|
.where(eq(auth.id, authId))
|
|
.returning()
|
|
.then((res) => res[0]);
|
|
};
|
|
|
|
export const getDokployUrl = async () => {
|
|
if (IS_CLOUD) {
|
|
return "https://app.dokploy.com";
|
|
}
|
|
const admin = await findAdmin();
|
|
|
|
if (admin.host) {
|
|
return `https://${admin.host}`;
|
|
}
|
|
return `http://${admin.serverIp}:${process.env.PORT}`;
|
|
};
|