mirror of
https://github.com/duplicati/duplicati.git
synced 2025-11-28 11:30:24 +08:00
This PR adds the ability to manage backup configurations outside of the the client. The implementation ensures that locally created configurations cannot be affected by the remotely managed backups. If the instance is not connected to a remote console, this has no effect. This PR updates the local database to add the column `ExternalID` that tracks backups that are managed remotely.
175 lines
7.6 KiB
C#
175 lines
7.6 KiB
C#
// Copyright (C) 2025, The Duplicati Team
|
|
// https://duplicati.com, hello@duplicati.com
|
|
//
|
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
// copy of this software and associated documentation files (the "Software"),
|
|
// to deal in the Software without restriction, including without limitation
|
|
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
// and/or sell copies of the Software, and to permit persons to whom the
|
|
// Software is furnished to do so, subject to the following conditions:
|
|
//
|
|
// The above copyright notice and this permission notice shall be included in
|
|
// all copies or substantial portions of the Software.
|
|
//
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
// DEALINGS IN THE SOFTWARE.
|
|
using Duplicati.Server;
|
|
using Duplicati.Server.Database;
|
|
using Duplicati.Server.Serialization;
|
|
using Duplicati.Server.Serialization.Interface;
|
|
using Duplicati.WebserverCore.Abstractions;
|
|
using Duplicati.WebserverCore.Exceptions;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace Duplicati.WebserverCore.Endpoints.V1.Backup;
|
|
|
|
public class BackupPutDelete : IEndpointV1
|
|
{
|
|
public static void Map(RouteGroupBuilder group)
|
|
{
|
|
group.MapPut("/backup/{id}", ([FromServices] Connection connection, [FromRoute] string id, [FromBody] Dto.BackupAndScheduleInputDto input)
|
|
=> ExecutePut(GetBackup(connection, id), connection, input))
|
|
.RequireAuthorization();
|
|
|
|
group.MapDelete("/backup/{id}", ([FromServices] Connection connection, [FromServices] ISchedulerService schedulerService, [FromServices] IQueueRunnerService queueRunnerService, [FromServices] LiveControls liveControls, [FromServices] IHttpContextAccessor httpContextAccessor, [FromRoute] string id, [FromQuery(Name = "delete-remote-files")] bool? delete_remote_files, [FromQuery(Name = "delete-local-db")] bool? delete_local_db, [FromQuery] bool? force) =>
|
|
{
|
|
var res = ExecuteDelete(GetBackup(connection, id), schedulerService, queueRunnerService, liveControls, delete_remote_files ?? false, delete_local_db, force ?? false);
|
|
if (res.Status != "OK" && httpContextAccessor.HttpContext != null)
|
|
httpContextAccessor.HttpContext.Response.StatusCode = 500;
|
|
return res;
|
|
})
|
|
.RequireAuthorization();
|
|
}
|
|
|
|
private static IBackup GetBackup(Connection connection, string id)
|
|
=> connection.GetBackup(id) ?? throw new NotFoundException("Backup not found");
|
|
|
|
private static void ExecutePut(IBackup existing, Connection connection, Dto.BackupAndScheduleInputDto input)
|
|
{
|
|
// TODO: This method and "POST /backups" are 99% identical
|
|
|
|
if (input.Backup == null)
|
|
throw new BadRequestException("No backup data found in request body");
|
|
|
|
var filters = input.Backup.Filters ?? Array.Empty<Dto.BackupAndScheduleInputDto.FilterInputDto>();
|
|
var settings = input.Backup.Settings ?? Array.Empty<Dto.BackupAndScheduleInputDto.SettingInputDto>();
|
|
|
|
try
|
|
{
|
|
var backup = new Server.Database.Backup()
|
|
{
|
|
ID = existing.ID,
|
|
Name = input.Backup.Name,
|
|
Description = input.Backup.Description,
|
|
Tags = input.Backup.Tags,
|
|
TargetURL = input.Backup.TargetURL,
|
|
Sources = input.Backup.Sources,
|
|
Settings = settings.Select(x => new Setting()
|
|
{
|
|
Name = x.Name,
|
|
Value = x.Value,
|
|
Filter = x.Filter
|
|
}).ToArray(),
|
|
Filters = filters.Select(x => new Filter()
|
|
{
|
|
Order = x.Order,
|
|
Include = x.Include,
|
|
Expression = x.Expression
|
|
}).ToArray(),
|
|
Metadata = input.Backup.Metadata
|
|
};
|
|
|
|
var schedule = input.Schedule == null ? null : new Schedule()
|
|
{
|
|
ID = input.Schedule.ID,
|
|
Tags = input.Schedule.Tags,
|
|
Time = input.Schedule.Time ?? new DateTime(0),
|
|
Repeat = input.Schedule.Repeat,
|
|
LastRun = input.Schedule.LastRun ?? new DateTime(0),
|
|
Rule = input.Schedule.Rule,
|
|
AllowedDays = input.Schedule.AllowedDays
|
|
};
|
|
|
|
if (backup.IsTemporary && !existing.IsTemporary)
|
|
throw new BadRequestException("Cannot update a temporary backup with a non-temporary backup");
|
|
|
|
lock (connection.m_lock)
|
|
{
|
|
if (connection.Backups.Any(x => x.Name.Equals(backup.Name, StringComparison.OrdinalIgnoreCase) && x.ID != backup.ID))
|
|
throw new ConflictException($"There already exists a backup with the name: {backup.Name}");
|
|
|
|
backup.UnmaskSensitiveInformation(existing);
|
|
var err = connection.ValidateBackup(backup, schedule);
|
|
if (!string.IsNullOrWhiteSpace(err))
|
|
throw new BadRequestException(err);
|
|
|
|
connection.AddOrUpdateBackupAndSchedule(backup, schedule);
|
|
}
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
if (ex is UserReportedHttpException)
|
|
throw;
|
|
|
|
throw new ServerErrorException($"Unable to save backup or schedule: {ex.Message}");
|
|
}
|
|
}
|
|
|
|
private static Dto.DeleteBackupOutputDto ExecuteDelete(IBackup backup, ISchedulerService schedulerService, IQueueRunnerService queueRunnerService, LiveControls liveControls, bool delete_remote_files, bool? delete_local_db, bool force)
|
|
{
|
|
try
|
|
{
|
|
var nt = queueRunnerService.GetCurrentTask();
|
|
if (backup.ID == nt?.BackupID)
|
|
{
|
|
if (!force)
|
|
return new Dto.DeleteBackupOutputDto("failed", "backup-in-progress", nt?.TaskID);
|
|
|
|
|
|
bool hasPaused = liveControls.State != LiveControls.LiveControlState.Paused;
|
|
if (hasPaused)
|
|
liveControls.Pause(true);
|
|
nt.Abort();
|
|
|
|
for (int i = 0; i < 10; i++)
|
|
{
|
|
var tt = queueRunnerService.GetCurrentTask();
|
|
if (backup.ID == tt?.BackupID)
|
|
Thread.Sleep(1000);
|
|
else
|
|
break;
|
|
}
|
|
|
|
var t = queueRunnerService.GetCurrentTask();
|
|
if (backup.ID == t?.BackupID)
|
|
{
|
|
if (hasPaused)
|
|
liveControls.Resume();
|
|
|
|
return new Dto.DeleteBackupOutputDto("failed", "backup-unstoppable", t?.TaskID);
|
|
}
|
|
|
|
if (hasPaused)
|
|
liveControls.Resume();
|
|
}
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
return new Dto.DeleteBackupOutputDto("error", ex.Message, null);
|
|
}
|
|
|
|
var extra = new Dictionary<string, string?>();
|
|
if (delete_local_db.HasValue)
|
|
extra["delete-local-db"] = delete_local_db.Value.ToString();
|
|
if (delete_remote_files)
|
|
extra["delete-remote-files"] = "true";
|
|
|
|
return new Dto.DeleteBackupOutputDto("OK", null, queueRunnerService.AddTask(Runner.CreateDeleteTask(backup, extra, (_) => schedulerService.Reschedule())));
|
|
}
|
|
|
|
}
|