2022-07-06 09:02:36 +00:00
|
|
|
const dotEnvExtended = require('dotenv-extended');
|
|
|
|
dotEnvExtended.load();
|
|
|
|
const crypto = require('crypto');
|
|
|
|
const generator = require('generate-password');
|
|
|
|
const cuid = require('cuid');
|
|
|
|
const { PrismaClient } = require('@prisma/client');
|
|
|
|
const prisma = new PrismaClient();
|
|
|
|
|
|
|
|
function generatePassword(length = 24) {
|
|
|
|
return generator.generate({
|
|
|
|
length,
|
|
|
|
numbers: true,
|
|
|
|
strict: true
|
|
|
|
});
|
|
|
|
}
|
|
|
|
const algorithm = 'aes-256-ctr';
|
|
|
|
|
|
|
|
async function main() {
|
|
|
|
// Enable registration for the first user
|
|
|
|
// Set initial HAProxy password
|
|
|
|
const settingsFound = await prisma.setting.findFirst({});
|
|
|
|
if (!settingsFound) {
|
|
|
|
await prisma.setting.create({
|
|
|
|
data: {
|
|
|
|
isRegistrationEnabled: true,
|
2022-07-06 09:49:07 +00:00
|
|
|
proxyPassword: encrypt(generatePassword()),
|
2022-07-25 19:16:30 +00:00
|
|
|
proxyUser: cuid(),
|
|
|
|
arch: process.arch
|
2022-07-06 09:02:36 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
await prisma.setting.update({
|
|
|
|
where: {
|
|
|
|
id: settingsFound.id
|
|
|
|
},
|
|
|
|
data: {
|
|
|
|
isTraefikUsed: true,
|
|
|
|
proxyHash: null
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
const localDocker = await prisma.destinationDocker.findFirst({
|
|
|
|
where: { engine: '/var/run/docker.sock' }
|
|
|
|
});
|
|
|
|
if (!localDocker) {
|
|
|
|
await prisma.destinationDocker.create({
|
|
|
|
data: {
|
|
|
|
engine: '/var/run/docker.sock',
|
|
|
|
name: 'Local Docker',
|
|
|
|
isCoolifyProxyUsed: true,
|
|
|
|
network: 'coolify'
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set auto-update based on env variable
|
|
|
|
const isAutoUpdateEnabled = process.env['COOLIFY_AUTO_UPDATE'] === 'true';
|
|
|
|
const settings = await prisma.setting.findFirst({});
|
|
|
|
if (settings) {
|
|
|
|
await prisma.setting.update({
|
|
|
|
where: {
|
|
|
|
id: settings.id
|
|
|
|
},
|
|
|
|
data: {
|
|
|
|
isAutoUpdateEnabled
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2022-08-18 09:53:42 +00:00
|
|
|
const github = await prisma.gitSource.findFirst({
|
|
|
|
where: { htmlUrl: 'https://github.com', forPublic: true }
|
|
|
|
});
|
|
|
|
const gitlab = await prisma.gitSource.findFirst({
|
|
|
|
where: { htmlUrl: 'https://gitlab.com', forPublic: true }
|
|
|
|
});
|
|
|
|
if (!github) {
|
|
|
|
await prisma.gitSource.create({
|
|
|
|
data: {
|
|
|
|
apiUrl: 'https://api.github.com',
|
|
|
|
htmlUrl: 'https://github.com',
|
|
|
|
forPublic: true,
|
|
|
|
name: 'Github Public',
|
|
|
|
type: 'github'
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
if (!gitlab) {
|
|
|
|
await prisma.gitSource.create({
|
|
|
|
data: {
|
|
|
|
apiUrl: 'https://gitlab.com/api/v4',
|
|
|
|
htmlUrl: 'https://gitlab.com',
|
|
|
|
forPublic: true,
|
|
|
|
name: 'Gitlab Public',
|
|
|
|
type: 'gitlab'
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2022-07-06 09:02:36 +00:00
|
|
|
}
|
|
|
|
main()
|
|
|
|
.catch((e) => {
|
|
|
|
console.error(e);
|
|
|
|
process.exit(1);
|
|
|
|
})
|
|
|
|
.finally(async () => {
|
|
|
|
await prisma.$disconnect();
|
2022-07-06 09:49:07 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
const encrypt = (text) => {
|
|
|
|
if (text) {
|
|
|
|
const iv = crypto.randomBytes(16);
|
|
|
|
const cipher = crypto.createCipheriv(algorithm, process.env['COOLIFY_SECRET_KEY'], iv);
|
|
|
|
const encrypted = Buffer.concat([cipher.update(text), cipher.final()]);
|
|
|
|
return JSON.stringify({
|
|
|
|
iv: iv.toString('hex'),
|
|
|
|
content: encrypted.toString('hex')
|
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|