1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-07-19 03:29:37 +02:00
flame/controllers/apps.js

216 lines
4.8 KiB
JavaScript
Raw Normal View History

const asyncWrapper = require('../middleware/asyncWrapper');
const ErrorResponse = require('../utils/ErrorResponse');
const App = require('../models/App');
const Config = require('../models/Config');
const { Sequelize } = require('sequelize');
2021-08-04 22:19:35 +02:00
const axios = require('axios');
2021-08-05 08:56:02 +02:00
const Logger = require('../utils/Logger');
const logger = new Logger();
// @desc Create new app
// @route POST /api/apps
// @access Public
exports.createApp = asyncWrapper(async (req, res, next) => {
// Get config from database
const pinApps = await Config.findOne({
where: { key: 'pinAppsByDefault' }
});
let app;
let _body = { ...req.body };
if (req.file) {
_body.icon = req.file.filename;
}
if (pinApps) {
if (parseInt(pinApps.value)) {
app = await App.create({
..._body,
isPinned: true
});
} else {
app = await App.create(req.body);
}
}
res.status(201).json({
success: true,
data: app
});
});
// @desc Get all apps
// @route GET /api/apps
// @access Public
exports.getApps = asyncWrapper(async (req, res, next) => {
2021-06-17 10:56:27 +02:00
// Get config from database
const useOrdering = await Config.findOne({
where: { key: 'useOrdering' }
});
2021-08-04 22:19:35 +02:00
const useDockerApi = await Config.findOne({
where: { key: 'dockerApps' }
});
const unpinStoppedApps = await Config.findOne({
where: { key: 'unpinStoppedApps' }
});
2021-06-17 10:56:27 +02:00
const orderType = useOrdering ? useOrdering.value : 'createdAt';
let apps;
if (useDockerApi && useDockerApi.value == 1) {
2021-08-05 08:56:02 +02:00
let containers = null;
try {
let { data } = await axios.get(
'http://localhost/containers/json?{"status":["running"]}',
{
socketPath: '/var/run/docker.sock'
}
);
containers = data;
} catch {
logger.log("Can't connect to the docker socket", 'ERROR');
}
2021-08-04 22:19:35 +02:00
if (containers) {
apps = await App.findAll({
order: [[orderType, 'ASC']]
2021-08-04 22:19:35 +02:00
});
containers = containers.filter(e => Object.keys(e.Labels).length !== 0);
2021-08-04 22:19:35 +02:00
const dockerApps = [];
for (const container of containers) {
const labels = container.Labels;
if (
'flame.name' in labels &&
'flame.url' in labels &&
/^app/.test(labels['flame.type'])
) {
2021-08-04 22:19:35 +02:00
dockerApps.push({
name: labels['flame.name'],
url: labels['flame.url'],
icon: labels['flame.icon'] || 'docker'
});
2021-08-04 22:19:35 +02:00
}
}
if (unpinStoppedApps && unpinStoppedApps.value == 1) {
2021-08-04 22:19:35 +02:00
for (const app of apps) {
await app.update({ isPinned: false });
}
}
for (const item of dockerApps) {
if (apps.some(app => app.name === item.name)) {
const app = apps.filter(e => e.name === item.name)[0];
await app.update({ ...item, isPinned: true });
2021-08-04 22:19:35 +02:00
} else {
await App.create({
...item,
isPinned: true
});
2021-08-04 22:19:35 +02:00
}
}
}
}
2021-06-17 10:56:27 +02:00
if (orderType == 'name') {
apps = await App.findAll({
order: [[Sequelize.fn('lower', Sequelize.col('name')), 'ASC']]
2021-06-17 10:56:27 +02:00
});
} else {
apps = await App.findAll({
order: [[orderType, 'ASC']]
2021-06-17 10:56:27 +02:00
});
}
2021-08-04 22:19:35 +02:00
// Set header to fetch containers info every time
res.status(200).setHeader('Cache-Control', 'no-store').json({
success: true,
data: apps
});
});
// @desc Get single app
// @route GET /api/apps/:id
// @access Public
exports.getApp = asyncWrapper(async (req, res, next) => {
const app = await App.findOne({
where: { id: req.params.id }
});
if (!app) {
return next(
new ErrorResponse(`App with id of ${req.params.id} was not found`, 404)
);
}
res.status(200).json({
success: true,
data: app
});
});
// @desc Update app
// @route PUT /api/apps/:id
// @access Public
exports.updateApp = asyncWrapper(async (req, res, next) => {
let app = await App.findOne({
where: { id: req.params.id }
});
if (!app) {
return next(
new ErrorResponse(`App with id of ${req.params.id} was not found`, 404)
);
}
2021-07-28 11:36:48 +02:00
let _body = { ...req.body };
if (req.file) {
_body.icon = req.file.filename;
}
app = await app.update(_body);
res.status(200).json({
success: true,
data: app
});
});
// @desc Delete app
// @route DELETE /api/apps/:id
// @access Public
exports.deleteApp = asyncWrapper(async (req, res, next) => {
await App.destroy({
where: { id: req.params.id }
});
res.status(200).json({
success: true,
data: {}
});
});
// @desc Reorder apps
// @route PUT /api/apps/0/reorder
// @access Public
exports.reorderApps = asyncWrapper(async (req, res, next) => {
req.body.apps.forEach(async ({ id, orderId }) => {
await App.update(
{ orderId },
{
where: { id }
}
);
});
res.status(200).json({
success: true,
data: {}
});
});