2024-05-08 18:49:10 +00:00
|
|
|
import * as plugins from './spark.plugins.js';
|
|
|
|
import * as paths from './spark.paths.js';
|
|
|
|
import { Spark } from './spark.classes.spark.js';
|
|
|
|
import { logger } from './spark.logging.js';
|
|
|
|
|
|
|
|
export class SparkUpdateManager {
|
|
|
|
public sparkRef: Spark;
|
|
|
|
public dockerHost: plugins.docker.DockerHost;
|
|
|
|
public smartupdate: plugins.smartupdate.SmartUpdate;
|
|
|
|
constructor(sparkrefArg: Spark) {
|
|
|
|
this.sparkRef = sparkrefArg;
|
2024-06-13 13:12:07 +00:00
|
|
|
this.dockerHost = new plugins.docker.DockerHost({});
|
2024-05-08 18:49:10 +00:00
|
|
|
this.smartupdate = new plugins.smartupdate.SmartUpdate();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* start the instance
|
|
|
|
*/
|
|
|
|
public async start() {
|
|
|
|
await this.dockerHost.activateSwarm();
|
|
|
|
}
|
|
|
|
|
|
|
|
public async updateServices() {
|
|
|
|
if (
|
|
|
|
plugins.smartfile.fs.isDirectory(plugins.path.join(paths.homeDir, 'serve.zone/spark')) &&
|
|
|
|
(await plugins.smartfile.fs.fileExists(
|
|
|
|
plugins.path.join(paths.homeDir, 'serve.zone/spark/spark.json')
|
|
|
|
))
|
|
|
|
) {
|
|
|
|
const services: Array<{
|
|
|
|
name: string;
|
|
|
|
image: string;
|
|
|
|
url: string;
|
|
|
|
port: string;
|
|
|
|
environment: string;
|
|
|
|
secretJson: any;
|
|
|
|
}> = [];
|
2024-06-13 13:12:07 +00:00
|
|
|
// lets add coreflow
|
|
|
|
services.push({
|
|
|
|
name: `coreflow`,
|
|
|
|
image: `code.foss.global/serve.zone/coreflow`,
|
|
|
|
url: `coreflow`,
|
|
|
|
environment: `production`,
|
|
|
|
port: `3000`,
|
|
|
|
secretJson: {
|
|
|
|
SERVEZONE_PORT: `3000`,
|
|
|
|
SERVEZONE_ENVIRONMENT: `production`,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
services.push({
|
|
|
|
name: `coretraffic`,
|
|
|
|
image: `code.foss.global/serve.zone/coretraffic`,
|
|
|
|
url: `coreflow`,
|
|
|
|
environment: `production`,
|
|
|
|
port: `3000`,
|
|
|
|
secretJson: {
|
|
|
|
SERVEZONE_PORT: `3000`,
|
|
|
|
SERVEZONE_ENVIRONMENT: `production`,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
services.push({
|
|
|
|
name: `corelog`,
|
|
|
|
image: `code.foss.global/serve.zone/corelog`,
|
|
|
|
url: `coreflow`,
|
|
|
|
environment: `production`,
|
|
|
|
port: `3000`,
|
|
|
|
secretJson: {
|
|
|
|
SERVEZONE_PORT: `3000`,
|
|
|
|
SERVEZONE_ENVIRONMENT: `production`,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
// lets add coretraffic
|
|
|
|
|
2024-05-08 18:49:10 +00:00
|
|
|
for (const service of services) {
|
|
|
|
const existingService = await plugins.docker.DockerService.getServiceByName(
|
|
|
|
this.dockerHost,
|
|
|
|
service.name
|
|
|
|
);
|
|
|
|
const existingServiceSecret = await plugins.docker.DockerSecret.getSecretByName(
|
|
|
|
this.dockerHost,
|
|
|
|
`${service.name}Secret`
|
|
|
|
);
|
|
|
|
if (existingService) {
|
|
|
|
const needsUpdate: boolean = await existingService.needsUpdate();
|
|
|
|
if (!needsUpdate) {
|
|
|
|
logger.log('info', `not needing update.`);
|
2024-06-13 13:12:07 +00:00
|
|
|
// we simply return here to end the functions
|
2024-05-08 18:49:10 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
logger.log('ok', `${service.name} needs to be updated!`);
|
|
|
|
await existingService.remove();
|
|
|
|
await existingServiceSecret.remove();
|
|
|
|
}
|
|
|
|
if (!existingService && existingServiceSecret) {
|
|
|
|
await existingServiceSecret.remove();
|
|
|
|
}
|
|
|
|
|
|
|
|
const newServiceImage = await plugins.docker.DockerImage.createFromRegistry(
|
|
|
|
this.dockerHost,
|
|
|
|
{
|
2024-06-13 13:12:07 +00:00
|
|
|
creationObject: {
|
|
|
|
imageUrl: service.image,
|
|
|
|
},
|
2024-05-08 18:49:10 +00:00
|
|
|
}
|
|
|
|
);
|
|
|
|
const newServiceSecret = await plugins.docker.DockerSecret.createSecret(this.dockerHost, {
|
|
|
|
name: `${service.name}Secret`,
|
|
|
|
contentArg: plugins.smartjson.stringify(service.secretJson),
|
|
|
|
version: await newServiceImage.getVersion(),
|
|
|
|
labels: {},
|
|
|
|
});
|
|
|
|
const newService = await plugins.docker.DockerService.createService(this.dockerHost, {
|
|
|
|
image: newServiceImage,
|
|
|
|
labels: {},
|
|
|
|
name: service.name,
|
|
|
|
networkAlias: service.name,
|
|
|
|
networks: [],
|
|
|
|
secrets: [newServiceSecret],
|
|
|
|
ports: [`${service.port}:${service.secretJson.SERVEZONE_PORT}`],
|
|
|
|
});
|
2024-06-13 13:12:07 +00:00
|
|
|
logger.log('ok', `updated service >>${newService.Spec.Name}<<!`);
|
2024-05-08 18:49:10 +00:00
|
|
|
}
|
2024-06-13 13:12:07 +00:00
|
|
|
logger.log('success', `updated ${services.length} services!`);
|
2024-05-08 18:49:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|