mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
110 lines
3.2 KiB
C#
110 lines
3.2 KiB
C#
using Avalonia.Controls;
|
|
using Avalonia.Threading;
|
|
using ReactiveUI;
|
|
using Remotely.Desktop.Core.Interfaces;
|
|
using Remotely.Desktop.Core.Services;
|
|
using Remotely.Desktop.Core.ViewModels;
|
|
using Remotely.Desktop.Linux.Services;
|
|
using Remotely.Desktop.Linux.Views;
|
|
using System;
|
|
using System.Collections.ObjectModel;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Input;
|
|
|
|
namespace Remotely.Desktop.Linux.ViewModels
|
|
{
|
|
public class FileTransferWindowViewModel : ReactiveObject
|
|
{
|
|
private readonly IFileTransferService _fileTransferService;
|
|
private readonly Viewer _viewer;
|
|
private string _viewerConnectionId;
|
|
private string _viewerName;
|
|
|
|
public FileTransferWindowViewModel() { }
|
|
|
|
public FileTransferWindowViewModel(
|
|
Viewer viewer,
|
|
IFileTransferService fileTransferService)
|
|
{
|
|
_fileTransferService = fileTransferService;
|
|
_viewer = viewer;
|
|
ViewerName = viewer.Name;
|
|
ViewerConnectionId = viewer.ViewerConnectionID;
|
|
}
|
|
|
|
public ObservableCollection<FileUpload> FileUploads { get; } = new ObservableCollection<FileUpload>();
|
|
|
|
public ICommand OpenFileUploadDialog => new Executor(async (param) =>
|
|
{
|
|
var initialDir = Environment.GetFolderPath(Environment.SpecialFolder.DesktopDirectory);
|
|
if (!Directory.Exists(initialDir))
|
|
{
|
|
initialDir = Directory.CreateDirectory(Path.Combine(Path.GetTempPath(), "Remotely_Shared")).FullName;
|
|
}
|
|
|
|
var ofd = new OpenFileDialog
|
|
{
|
|
Title = "Upload File via Remotely",
|
|
AllowMultiple = true,
|
|
Directory = initialDir
|
|
};
|
|
|
|
var result = await ofd.ShowAsync(param as FileTransferWindow);
|
|
if (result?.Any() != true)
|
|
{
|
|
return;
|
|
}
|
|
foreach (var file in result)
|
|
{
|
|
if (File.Exists(file))
|
|
{
|
|
await UploadFile(file);
|
|
}
|
|
}
|
|
});
|
|
|
|
public string ViewerConnectionId
|
|
{
|
|
get => _viewerConnectionId;
|
|
set => this.RaiseAndSetIfChanged(ref _viewerConnectionId, value);
|
|
}
|
|
|
|
public string ViewerName
|
|
{
|
|
get => _viewerName;
|
|
set => this.RaiseAndSetIfChanged(ref _viewerName, value);
|
|
}
|
|
|
|
public async Task UploadFile(string filePath)
|
|
{
|
|
var fileUpload = new FileUpload()
|
|
{
|
|
FilePath = filePath
|
|
};
|
|
|
|
await Dispatcher.UIThread.InvokeAsync(() =>
|
|
{
|
|
FileUploads.Add(fileUpload);
|
|
});
|
|
|
|
await _fileTransferService.UploadFile(fileUpload, _viewer, async progress =>
|
|
{
|
|
await Dispatcher.UIThread.InvokeAsync(() =>
|
|
{
|
|
fileUpload.PercentProgress = progress;
|
|
});
|
|
});
|
|
}
|
|
|
|
public ICommand RemoveFileUpload => new Executor((param) =>
|
|
{
|
|
if (param is FileUpload fileUpload)
|
|
{
|
|
FileUploads.Remove(fileUpload);
|
|
}
|
|
});
|
|
}
|
|
}
|