summary refs log tree commit diff
path: root/SystemdCtl/Controllers/UnitController.cs
blob: a1285848b00079dd86a057debff5018efbc8e773 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
using LibSystemdCli;
using LibSystemdCli.Models;
using Microsoft.AspNetCore.Mvc;

namespace SystemdCtl.Controllers;
[ApiController]
[Route("/api/")]
public class UnitController : ControllerBase
{
    [HttpGet("listUnits")]
    public async IAsyncEnumerable<SystemdUnitListItem> GetUnits()
    {
        await foreach (var unit in SystemdExecutor.GetUnits())
        {
            yield return unit;
            await Response.Body.FlushAsync();
        }
    }
    
    [HttpGet("unit/{serviceName}/logs")]
    public async IAsyncEnumerable<SystemdJournalLogItem> GetUnitLogs(string serviceName, [FromQuery] int contextLines = 100)
    {
        await foreach (var log in SystemdExecutor.GetUnitLogs(serviceName, contextLines: contextLines))
        {
            Console.WriteLine(log.Message);
            yield return log;
            await Response.Body.FlushAsync();
        }
    }
    
    [HttpGet("unit/{serviceName}/data")]
    public Task<SystemdServiceData> GetUnitData(string serviceName) => SystemdExecutor.GetUnitData(serviceName);
    
    [HttpGet("unit/{serviceName}/start")]
    public Task StartUnit(string serviceName) => CommandExecutor.ExecuteCommand("systemctl", $"start {serviceName}");
    
    [HttpGet("unit/{serviceName}/stop")]
    public Task StopUnit(string serviceName) => CommandExecutor.ExecuteCommand("systemctl", $"stop {serviceName}");
    
    [HttpGet("unit/{serviceName}/restart")]
    public Task RestartUnit(string serviceName) => CommandExecutor.ExecuteCommand("systemctl", $"restart {serviceName}");
    
    [HttpGet("unit/{serviceName}/reload")]
    public Task ReloadUnit(string serviceName) => CommandExecutor.ExecuteCommand("systemctl", $"reload {serviceName}");
    
    [HttpGet("unit/{serviceName}/enable")]
    public Task EnableUnit(string serviceName) => CommandExecutor.ExecuteCommand("systemctl", $"enable {serviceName}");
    
    [HttpGet("unit/{serviceName}/disable")]
    public Task DisableUnit(string serviceName) => CommandExecutor.ExecuteCommand("systemctl", $"disable {serviceName}");
}