coolify/apps/api/src/index.ts

463 lines
14 KiB
TypeScript
Raw Normal View History

2022-07-06 11:02:36 +02:00
import Fastify from 'fastify';
import cors from '@fastify/cors';
import serve from '@fastify/static';
import env from '@fastify/env';
import cookie from '@fastify/cookie';
2022-09-21 15:48:32 +02:00
import multipart from '@fastify/multipart';
2022-07-06 11:02:36 +02:00
import path, { join } from 'path';
import autoLoad from '@fastify/autoload';
2022-10-18 12:02:09 +02:00
import { asyncExecShell, cleanupDockerStorage, createRemoteEngineConfiguration, decrypt, encrypt, executeDockerCmd, executeSSHCmd, generateDatabaseConfiguration, getDomain, isDev, listSettings, prisma, startTraefikProxy, startTraefikTCPProxy, version } from './lib/common';
2022-10-06 11:37:28 +02:00
import { scheduler } from './lib/scheduler';
import { compareVersions } from 'compare-versions';
2022-08-26 08:29:06 +02:00
import Graceful from '@ladjs/graceful'
2022-10-06 11:44:36 +02:00
import axios from 'axios';
import fs from 'fs/promises';
import { verifyRemoteDockerEngineFn } from './routes/api/v1/destinations/handlers';
2022-10-06 11:44:36 +02:00
import { checkContainer } from './lib/docker';
2022-10-18 12:51:53 +02:00
import { migrateServicesToNewTemplate } from './lib';
2022-07-06 11:02:36 +02:00
declare module 'fastify' {
interface FastifyInstance {
config: {
COOLIFY_APP_ID: string,
COOLIFY_SECRET_KEY: string,
COOLIFY_DATABASE_URL: string,
COOLIFY_SENTRY_DSN: string,
COOLIFY_IS_ON: string,
2022-08-11 16:34:39 +02:00
COOLIFY_WHITE_LABELED: string,
2022-07-06 11:02:36 +02:00
COOLIFY_WHITE_LABELED_ICON: string | null,
2022-08-11 16:34:39 +02:00
COOLIFY_AUTO_UPDATE: string,
2022-07-06 11:02:36 +02:00
};
}
}
const port = isDev ? 3001 : 3000;
const host = '0.0.0.0';
(async () => {
2022-10-04 22:00:50 +02:00
const settings = await prisma.setting.findFirst()
2022-09-06 14:08:10 +02:00
const fastify = Fastify({
2022-10-04 22:00:50 +02:00
logger: settings?.isAPIDebuggingEnabled || false,
2022-09-06 14:08:10 +02:00
trustProxy: true
});
2022-09-21 15:48:32 +02:00
2022-09-06 14:08:10 +02:00
const schema = {
type: 'object',
required: ['COOLIFY_SECRET_KEY', 'COOLIFY_DATABASE_URL', 'COOLIFY_IS_ON'],
properties: {
COOLIFY_APP_ID: {
type: 'string',
},
COOLIFY_SECRET_KEY: {
type: 'string',
},
COOLIFY_DATABASE_URL: {
type: 'string',
default: 'file:../db/dev.db'
},
COOLIFY_SENTRY_DSN: {
type: 'string',
default: null
},
COOLIFY_IS_ON: {
type: 'string',
default: 'docker'
},
COOLIFY_WHITE_LABELED: {
type: 'string',
default: 'false'
},
COOLIFY_WHITE_LABELED_ICON: {
type: 'string',
default: null
},
COOLIFY_AUTO_UPDATE: {
type: 'string',
default: 'false'
},
2022-07-06 11:02:36 +02:00
2022-09-06 14:08:10 +02:00
}
};
const options = {
schema,
dotenv: true
};
fastify.register(env, options);
if (!isDev) {
fastify.register(serve, {
root: path.join(__dirname, './public'),
preCompressed: true
});
fastify.setNotFoundHandler(async function (request, reply) {
if (request.raw.url && request.raw.url.startsWith('/api')) {
return reply.status(404).send({
success: false
});
}
return reply.status(200).sendFile('index.html');
});
}
2022-09-21 15:48:32 +02:00
fastify.register(multipart, { limits: { fileSize: 100000 } });
2022-09-06 14:08:10 +02:00
fastify.register(autoLoad, {
dir: join(__dirname, 'plugins')
2022-07-06 11:02:36 +02:00
});
2022-09-06 14:08:10 +02:00
fastify.register(autoLoad, {
dir: join(__dirname, 'routes')
2022-07-06 11:02:36 +02:00
});
2022-09-06 14:08:10 +02:00
fastify.register(cookie)
fastify.register(cors);
2022-10-04 22:00:50 +02:00
fastify.addHook('onRequest', async (request, reply) => {
let allowedList = ['coolify:3000'];
const { ipv4, ipv6, fqdn } = await prisma.setting.findFirst({})
ipv4 && allowedList.push(`${ipv4}:3000`);
ipv6 && allowedList.push(ipv6);
fqdn && allowedList.push(getDomain(fqdn));
isDev && allowedList.push('localhost:3000') && allowedList.push('localhost:3001') && allowedList.push('host.docker.internal:3001');
const remotes = await prisma.destinationDocker.findMany({ where: { remoteEngine: true, remoteVerified: true } })
if (remotes.length > 0) {
remotes.forEach(remote => {
allowedList.push(`${remote.remoteIpAddress}:3000`);
})
}
if (!allowedList.includes(request.headers.host)) {
// console.log('not allowed', request.headers.host)
}
})
try {
2022-10-18 12:02:09 +02:00
await migrateServicesToNewTemplate()
2022-10-18 12:51:53 +02:00
await fastify.listen({ port, host })
2022-09-06 14:08:10 +02:00
console.log(`Coolify's API is listening on ${host}:${port}`);
await initServer();
2022-09-06 10:08:31 +02:00
2022-10-06 11:37:28 +02:00
const graceful = new Graceful({ brees: [scheduler] });
graceful.listen();
setInterval(async () => {
if (!scheduler.workers.has('deployApplication')) {
scheduler.run('deployApplication');
}
}, 2000)
// autoUpdater
setInterval(async () => {
2022-10-06 11:44:36 +02:00
await autoUpdater()
2022-10-06 11:37:28 +02:00
}, 60000 * 15)
// cleanupStorage
setInterval(async () => {
2022-10-06 11:44:36 +02:00
await cleanupStorage()
2022-10-06 11:37:28 +02:00
}, 60000 * 10)
// checkProxies and checkFluentBit
setInterval(async () => {
2022-10-06 11:44:36 +02:00
await checkProxies();
await checkFluentBit();
2022-10-06 11:37:28 +02:00
}, 10000)
setInterval(async () => {
2022-10-06 11:44:36 +02:00
await copySSLCertificates();
2022-10-06 11:37:28 +02:00
}, 2000)
await Promise.all([
getArch(),
getIPAddress(),
configureRemoteDockers(),
2022-10-18 12:02:09 +02:00
2022-10-06 11:37:28 +02:00
])
} catch (error) {
console.error(error);
process.exit(1);
}
})();
2022-10-18 12:02:09 +02:00
2022-07-22 22:48:04 +02:00
async function getIPAddress() {
const { publicIpv4, publicIpv6 } = await import('public-ip')
try {
const settings = await listSettings();
if (!settings.ipv4) {
console.log(`Getting public IPv4 address...`);
2022-07-22 22:48:04 +02:00
const ipv4 = await publicIpv4({ timeout: 2000 })
2022-10-04 22:00:50 +02:00
await prisma.setting.update({ where: { id: settings.id }, data: { ipv4 } })
2022-07-22 22:48:04 +02:00
}
if (!settings.ipv6) {
console.log(`Getting public IPv6 address...`);
2022-07-22 22:48:04 +02:00
const ipv6 = await publicIpv6({ timeout: 2000 })
2022-10-04 22:00:50 +02:00
await prisma.setting.update({ where: { id: settings.id }, data: { ipv6 } })
2022-07-22 22:48:04 +02:00
}
2022-07-06 11:02:36 +02:00
2022-07-22 22:48:04 +02:00
} catch (error) { }
}
2022-07-06 11:02:36 +02:00
async function initServer() {
try {
console.log(`Initializing server...`);
2022-07-06 11:02:36 +02:00
await asyncExecShell(`docker network create --attachable coolify`);
} catch (error) { }
2022-08-25 10:04:46 +02:00
try {
const isOlder = compareVersions('3.8.1', version);
2022-08-27 09:46:06 +02:00
if (isOlder === 1) {
2022-08-25 10:04:46 +02:00
await prisma.build.updateMany({ where: { status: { in: ['running', 'queued'] } }, data: { status: 'failed' } });
}
} catch (error) { }
2022-07-06 11:02:36 +02:00
}
2022-07-25 21:16:30 +02:00
async function getArch() {
try {
const settings = await prisma.setting.findFirst({})
if (settings && !settings.arch) {
console.log(`Getting architecture...`);
2022-07-25 21:16:30 +02:00
await prisma.setting.update({ where: { id: settings.id }, data: { arch: process.arch } })
}
} catch (error) { }
}
2022-07-06 11:02:36 +02:00
2022-09-05 12:09:13 +02:00
async function configureRemoteDockers() {
try {
const remoteDocker = await prisma.destinationDocker.findMany({
where: { remoteVerified: true, remoteEngine: true }
});
if (remoteDocker.length > 0) {
console.log(`Verifying Remote Docker Engines...`);
2022-09-05 12:09:13 +02:00
for (const docker of remoteDocker) {
console.log('Verifying:', docker.remoteIpAddress)
await verifyRemoteDockerEngineFn(docker.id);
2022-09-05 12:09:13 +02:00
}
}
} catch (error) {
console.log(error)
}
2022-09-05 12:09:13 +02:00
}
2022-10-06 11:44:36 +02:00
async function autoUpdater() {
try {
const currentVersion = version;
const { data: versions } = await axios
.get(
`https://get.coollabs.io/versions.json`
, {
params: {
appId: process.env['COOLIFY_APP_ID'] || undefined,
version: currentVersion
}
})
const latestVersion = versions['coolify'].main.version;
const isUpdateAvailable = compareVersions(latestVersion, currentVersion);
if (isUpdateAvailable === 1) {
const activeCount = 0
if (activeCount === 0) {
if (!isDev) {
const { isAutoUpdateEnabled } = await prisma.setting.findFirst();
if (isAutoUpdateEnabled) {
await asyncExecShell(`docker pull coollabsio/coolify:${latestVersion}`);
2022-10-06 14:15:05 +02:00
await asyncExecShell(`env | grep '^COOLIFY' > .env`);
2022-10-06 11:44:36 +02:00
await asyncExecShell(
`sed -i '/COOLIFY_AUTO_UPDATE=/cCOOLIFY_AUTO_UPDATE=${isAutoUpdateEnabled}' .env`
);
await asyncExecShell(
`docker run --rm -tid --env-file .env -v /var/run/docker.sock:/var/run/docker.sock -v coolify-db coollabsio/coolify:${latestVersion} /bin/sh -c "env | grep COOLIFY > .env && echo 'TAG=${latestVersion}' >> .env && docker stop -t 0 coolify coolify-fluentbit && docker rm coolify coolify-fluentbit && docker compose pull && docker compose up -d --force-recreate"`
);
}
} else {
console.log('Updating (not really in dev mode).');
}
}
}
} catch (error) { }
}
async function checkFluentBit() {
2022-10-06 12:01:24 +02:00
try {
2022-10-06 14:15:05 +02:00
if (!isDev) {
2022-10-06 12:01:24 +02:00
const engine = '/var/run/docker.sock';
const { id } = await prisma.destinationDocker.findFirst({
where: { engine, network: 'coolify' }
});
2022-10-06 14:15:05 +02:00
const { found } = await checkContainer({ dockerId: id, container: 'coolify-fluentbit', remove: true });
2022-10-06 12:01:24 +02:00
if (!found) {
2022-10-06 14:15:05 +02:00
await asyncExecShell(`env | grep '^COOLIFY' > .env`);
2022-10-06 12:01:24 +02:00
await asyncExecShell(`docker compose up -d fluent-bit`);
}
2022-10-06 11:44:36 +02:00
}
2022-10-06 12:01:24 +02:00
} catch (error) {
console.log(error)
2022-10-06 14:15:05 +02:00
}
2022-10-06 11:44:36 +02:00
}
async function checkProxies() {
try {
const { default: isReachable } = await import('is-port-reachable');
let portReachable;
const { arch, ipv4, ipv6 } = await listSettings();
// Coolify Proxy local
const engine = '/var/run/docker.sock';
const localDocker = await prisma.destinationDocker.findFirst({
where: { engine, network: 'coolify', isCoolifyProxyUsed: true }
});
if (localDocker) {
portReachable = await isReachable(80, { host: ipv4 || ipv6 })
if (!portReachable) {
await startTraefikProxy(localDocker.id);
}
}
// Coolify Proxy remote
const remoteDocker = await prisma.destinationDocker.findMany({
where: { remoteEngine: true, remoteVerified: true }
});
if (remoteDocker.length > 0) {
for (const docker of remoteDocker) {
if (docker.isCoolifyProxyUsed) {
portReachable = await isReachable(80, { host: docker.remoteIpAddress })
if (!portReachable) {
await startTraefikProxy(docker.id);
}
}
try {
await createRemoteEngineConfiguration(docker.id)
} catch (error) { }
}
}
// TCP Proxies
const databasesWithPublicPort = await prisma.database.findMany({
where: { publicPort: { not: null } },
include: { settings: true, destinationDocker: true }
});
for (const database of databasesWithPublicPort) {
const { destinationDockerId, destinationDocker, publicPort, id } = database;
if (destinationDockerId && destinationDocker.isCoolifyProxyUsed) {
const { privatePort } = generateDatabaseConfiguration(database, arch);
await startTraefikTCPProxy(destinationDocker, id, publicPort, privatePort);
}
}
const wordpressWithFtp = await prisma.wordpress.findMany({
where: { ftpPublicPort: { not: null } },
include: { service: { include: { destinationDocker: true } } }
});
for (const ftp of wordpressWithFtp) {
const { service, ftpPublicPort } = ftp;
const { destinationDockerId, destinationDocker, id } = service;
if (destinationDockerId && destinationDocker.isCoolifyProxyUsed) {
await startTraefikTCPProxy(destinationDocker, id, ftpPublicPort, 22, 'wordpressftp');
}
}
// HTTP Proxies
const minioInstances = await prisma.minio.findMany({
where: { publicPort: { not: null } },
include: { service: { include: { destinationDocker: true } } }
});
for (const minio of minioInstances) {
const { service, publicPort } = minio;
const { destinationDockerId, destinationDocker, id } = service;
if (destinationDockerId && destinationDocker.isCoolifyProxyUsed) {
await startTraefikTCPProxy(destinationDocker, id, publicPort, 9000);
}
}
} catch (error) {
}
}
async function copySSLCertificates() {
try {
const pAll = await import('p-all');
const actions = []
const certificates = await prisma.certificate.findMany({ include: { team: true } })
const teamIds = certificates.map(c => c.teamId)
const destinations = await prisma.destinationDocker.findMany({ where: { isCoolifyProxyUsed: true, teams: { some: { id: { in: [...teamIds] } } } } })
for (const certificate of certificates) {
const { id, key, cert } = certificate
const decryptedKey = decrypt(key)
await fs.writeFile(`/tmp/${id}-key.pem`, decryptedKey)
await fs.writeFile(`/tmp/${id}-cert.pem`, cert)
for (const destination of destinations) {
if (destination.remoteEngine) {
if (destination.remoteVerified) {
const { id: dockerId, remoteIpAddress } = destination
actions.push(async () => copyRemoteCertificates(id, dockerId, remoteIpAddress))
}
} else {
actions.push(async () => copyLocalCertificates(id))
}
}
}
await pAll.default(actions, { concurrency: 1 })
} catch (error) {
console.log(error)
} finally {
await asyncExecShell(`find /tmp/ -maxdepth 1 -type f -name '*-*.pem' -delete`)
}
}
async function copyRemoteCertificates(id: string, dockerId: string, remoteIpAddress: string) {
try {
await asyncExecShell(`scp /tmp/${id}-cert.pem /tmp/${id}-key.pem ${remoteIpAddress}:/tmp/`)
await executeSSHCmd({ dockerId, command: `docker exec coolify-proxy sh -c 'test -d /etc/traefik/acme/custom/ || mkdir -p /etc/traefik/acme/custom/'` })
await executeSSHCmd({ dockerId, command: `docker cp /tmp/${id}-key.pem coolify-proxy:/etc/traefik/acme/custom/` })
await executeSSHCmd({ dockerId, command: `docker cp /tmp/${id}-cert.pem coolify-proxy:/etc/traefik/acme/custom/` })
} catch (error) {
console.log({ error })
}
}
async function copyLocalCertificates(id: string) {
try {
await asyncExecShell(`docker exec coolify-proxy sh -c 'test -d /etc/traefik/acme/custom/ || mkdir -p /etc/traefik/acme/custom/'`)
await asyncExecShell(`docker cp /tmp/${id}-key.pem coolify-proxy:/etc/traefik/acme/custom/`)
await asyncExecShell(`docker cp /tmp/${id}-cert.pem coolify-proxy:/etc/traefik/acme/custom/`)
} catch (error) {
console.log({ error })
}
}
async function cleanupStorage() {
const destinationDockers = await prisma.destinationDocker.findMany();
let enginesDone = new Set()
for (const destination of destinationDockers) {
if (enginesDone.has(destination.engine) || enginesDone.has(destination.remoteIpAddress)) return
if (destination.engine) enginesDone.add(destination.engine)
if (destination.remoteIpAddress) enginesDone.add(destination.remoteIpAddress)
let lowDiskSpace = false;
try {
let stdout = null
if (!isDev) {
const output = await executeDockerCmd({ dockerId: destination.id, command: `CONTAINER=$(docker ps -lq | head -1) && docker exec $CONTAINER sh -c 'df -kPT /'` })
stdout = output.stdout;
} else {
const output = await asyncExecShell(
`df -kPT /`
);
stdout = output.stdout;
}
let lines = stdout.trim().split('\n');
let header = lines[0];
let regex =
/^Filesystem\s+|Type\s+|1024-blocks|\s+Used|\s+Available|\s+Capacity|\s+Mounted on\s*$/g;
const boundaries = [];
let match;
while ((match = regex.exec(header))) {
boundaries.push(match[0].length);
}
boundaries[boundaries.length - 1] = -1;
const data = lines.slice(1).map((line) => {
const cl = boundaries.map((boundary) => {
const column = boundary > 0 ? line.slice(0, boundary) : line;
line = line.slice(boundary);
return column.trim();
});
return {
capacity: Number.parseInt(cl[5], 10) / 100
};
});
if (data.length > 0) {
const { capacity } = data[0];
if (capacity > 0.8) {
lowDiskSpace = true;
}
}
} catch (error) { }
await cleanupDockerStorage(destination.id, lowDiskSpace, false)
}
}