155 lines
5.5 KiB
TypeScript
155 lines
5.5 KiB
TypeScript
import { asyncExecShell, getDomain, getEngine } from '$lib/common';
|
|
import { checkContainer } from '$lib/haproxy';
|
|
import * as db from '$lib/database';
|
|
import { dev } from '$app/env';
|
|
import cuid from 'cuid';
|
|
import getPort, { portNumbers } from 'get-port';
|
|
|
|
export async function letsEncrypt(domain, id = null, isCoolify = false) {
|
|
try {
|
|
const data = await db.prisma.setting.findFirst();
|
|
const { minPort, maxPort } = data;
|
|
|
|
const nakedDomain = domain.replace('www.', '');
|
|
const wwwDomain = `www.${nakedDomain}`;
|
|
const randomCuid = cuid();
|
|
const randomPort = await getPort({ port: portNumbers(minPort, maxPort) });
|
|
|
|
let host;
|
|
let dualCerts = false;
|
|
if (isCoolify) {
|
|
dualCerts = data.dualCerts;
|
|
host = 'unix:///var/run/docker.sock';
|
|
} else {
|
|
const applicationData = await db.prisma.application.findUnique({
|
|
where: { id },
|
|
include: { destinationDocker: true, settings: true }
|
|
});
|
|
if (applicationData) {
|
|
if (applicationData?.destinationDockerId && applicationData?.destinationDocker) {
|
|
host = getEngine(applicationData.destinationDocker.engine);
|
|
}
|
|
if (applicationData?.settings?.dualCerts) {
|
|
dualCerts = applicationData.settings.dualCerts;
|
|
}
|
|
}
|
|
// Check Service
|
|
const serviceData = await db.prisma.service.findUnique({
|
|
where: { id },
|
|
include: { destinationDocker: true }
|
|
});
|
|
if (serviceData) {
|
|
if (serviceData?.destinationDockerId && serviceData?.destinationDocker) {
|
|
host = getEngine(serviceData.destinationDocker.engine);
|
|
}
|
|
if (serviceData?.dualCerts) {
|
|
dualCerts = serviceData.dualCerts;
|
|
}
|
|
}
|
|
}
|
|
if (dualCerts) {
|
|
await asyncExecShell(
|
|
`DOCKER_HOST=${host} docker run --rm --name certbot-${randomCuid} -p 9080:${randomPort} -v "coolify-letsencrypt:/etc/letsencrypt" certbot/certbot --logs-dir /etc/letsencrypt/logs certonly --standalone --preferred-challenges http --http-01-address 0.0.0.0 --http-01-port ${randomPort} -d ${nakedDomain} -d ${wwwDomain} --expand --agree-tos --non-interactive --register-unsafely-without-email ${
|
|
dev ? '--test-cert' : ''
|
|
}`
|
|
);
|
|
await asyncExecShell(
|
|
`DOCKER_HOST=${host} docker run --rm -v "coolify-letsencrypt:/etc/letsencrypt" -v "coolify-ssl-certs:/app/ssl" alpine:latest sh -c "test -d /etc/letsencrypt/live/${nakedDomain}/ && cat /etc/letsencrypt/live/${nakedDomain}/fullchain.pem /etc/letsencrypt/live/${nakedDomain}/privkey.pem > /app/ssl/${nakedDomain}.pem || cat /etc/letsencrypt/live/${wwwDomain}/fullchain.pem /etc/letsencrypt/live/${wwwDomain}/privkey.pem > /app/ssl/${wwwDomain}.pem"`
|
|
);
|
|
} else {
|
|
await asyncExecShell(
|
|
`DOCKER_HOST=${host} docker run --rm --name certbot-${randomCuid} -p 9080:${randomPort} -v "coolify-letsencrypt:/etc/letsencrypt" certbot/certbot --logs-dir /etc/letsencrypt/logs certonly --standalone --preferred-challenges http --http-01-address 0.0.0.0 --http-01-port ${randomPort} -d ${domain} --expand --agree-tos --non-interactive --register-unsafely-without-email ${
|
|
dev ? '--test-cert' : ''
|
|
}`
|
|
);
|
|
await asyncExecShell(
|
|
`DOCKER_HOST=${host} docker run --rm -v "coolify-letsencrypt:/etc/letsencrypt" -v "coolify-ssl-certs:/app/ssl" alpine:latest sh -c "cat /etc/letsencrypt/live/${domain}/fullchain.pem /etc/letsencrypt/live/${domain}/privkey.pem > /app/ssl/${domain}.pem"`
|
|
);
|
|
}
|
|
} catch (error) {
|
|
if (error.code !== 0) {
|
|
throw error;
|
|
}
|
|
}
|
|
}
|
|
|
|
export async function generateSSLCerts() {
|
|
const ssls = [];
|
|
const applications = await db.prisma.application.findMany({
|
|
include: { destinationDocker: true, settings: true }
|
|
});
|
|
for (const application of applications) {
|
|
const {
|
|
fqdn,
|
|
id,
|
|
destinationDocker: { engine, network },
|
|
settings: { previews }
|
|
} = application;
|
|
const isRunning = await checkContainer(engine, id);
|
|
const domain = getDomain(fqdn);
|
|
const isHttps = fqdn.startsWith('https://');
|
|
if (isRunning) {
|
|
if (isHttps) ssls.push({ domain, id, isCoolify: false });
|
|
}
|
|
if (previews) {
|
|
const host = getEngine(engine);
|
|
const { stdout } = await asyncExecShell(
|
|
`DOCKER_HOST=${host} docker container ls --filter="status=running" --filter="network=${network}" --filter="name=${id}-" --format="{{json .Names}}"`
|
|
);
|
|
const containers = stdout
|
|
.trim()
|
|
.split('\n')
|
|
.filter((a) => a)
|
|
.map((c) => c.replace(/"/g, ''));
|
|
if (containers.length > 0) {
|
|
for (const container of containers) {
|
|
let previewDomain = `${container.split('-')[1]}.${domain}`;
|
|
if (isHttps) ssls.push({ domain: previewDomain, id, isCoolify: false });
|
|
}
|
|
}
|
|
}
|
|
}
|
|
const services = await db.prisma.service.findMany({
|
|
include: {
|
|
destinationDocker: true,
|
|
minio: true,
|
|
plausibleAnalytics: true,
|
|
vscodeserver: true,
|
|
wordpress: true
|
|
}
|
|
});
|
|
|
|
for (const service of services) {
|
|
const {
|
|
fqdn,
|
|
id,
|
|
type,
|
|
destinationDocker: { engine }
|
|
} = service;
|
|
const found = db.supportedServiceTypesAndVersions.find((a) => a.name === type);
|
|
if (found) {
|
|
const domain = getDomain(fqdn);
|
|
const isHttps = fqdn.startsWith('https://');
|
|
const isRunning = await checkContainer(engine, id);
|
|
if (isRunning) {
|
|
if (isHttps) ssls.push({ domain, id, isCoolify: false });
|
|
}
|
|
}
|
|
}
|
|
const { fqdn } = await db.prisma.setting.findFirst();
|
|
if (fqdn) {
|
|
const domain = getDomain(fqdn);
|
|
const isHttps = fqdn.startsWith('https://');
|
|
if (isHttps) ssls.push({ domain, id: 'coolify', isCoolify: true });
|
|
}
|
|
if (ssls.length > 0) {
|
|
for (const ssl of ssls) {
|
|
if (!dev) {
|
|
await letsEncrypt(ssl.domain, ssl.id, ssl.isCoolify);
|
|
} else {
|
|
console.log('Generate ssl for', ssl.domain);
|
|
}
|
|
}
|
|
}
|
|
}
|