158 lines
5.7 KiB
C#
158 lines
5.7 KiB
C#
using AsyncEvent;
|
|
using FileTime.Core.Models;
|
|
using FileTime.Core.Providers;
|
|
using SMBLibrary;
|
|
using SMBLibrary.Client;
|
|
|
|
namespace FileTime.Providers.Smb
|
|
{
|
|
public class SmbShare : IContainer
|
|
{
|
|
private IReadOnlyList<IItem>? _items;
|
|
private IReadOnlyList<IContainer>? _containers;
|
|
private IReadOnlyList<IElement>? _elements;
|
|
private Func<Task<ISMBClient>> _getSmbClient;
|
|
private readonly IContainer? _parent;
|
|
|
|
public string Name { get; }
|
|
|
|
public string? FullName { get; }
|
|
|
|
public bool IsHidden => false;
|
|
public bool IsLoaded => _items != null;
|
|
|
|
public SmbContentProvider Provider { get; }
|
|
IContentProvider IItem.Provider => Provider;
|
|
public bool CanDelete => false;
|
|
public bool CanRename => false;
|
|
|
|
public AsyncEventHandler Refreshed { get; } = new();
|
|
|
|
public SmbShare(string name, SmbContentProvider contentProvider, IContainer parent, Func<Task<ISMBClient>> getSmbClient)
|
|
{
|
|
_parent = parent;
|
|
_getSmbClient = getSmbClient;
|
|
|
|
Name = name;
|
|
FullName = parent?.FullName == null ? Name : parent.FullName + Constants.SeparatorChar + Name;
|
|
Provider = contentProvider;
|
|
}
|
|
|
|
public async Task<IReadOnlyList<IItem>?> GetItems(CancellationToken token = default)
|
|
{
|
|
if (_items == null) await Refresh();
|
|
return _items;
|
|
}
|
|
public async Task<IReadOnlyList<IContainer>?> GetContainers(CancellationToken token = default)
|
|
{
|
|
if (_containers == null) await Refresh();
|
|
return _containers;
|
|
}
|
|
public async Task<IReadOnlyList<IElement>?> GetElements(CancellationToken token = default)
|
|
{
|
|
if (_elements == null) await Refresh();
|
|
return _elements;
|
|
}
|
|
|
|
public Task<IContainer> CreateContainer(string name)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public Task<IElement> CreateElement(string name)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public Task Delete()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public async Task<IItem?> GetByPath(string path)
|
|
{
|
|
var paths = path.Split(Constants.SeparatorChar);
|
|
|
|
var item = (await GetItems())?.FirstOrDefault(i => i.Name == paths[0]);
|
|
|
|
if (paths.Length == 1)
|
|
{
|
|
return item;
|
|
}
|
|
|
|
if (item is IContainer container)
|
|
{
|
|
return await container.GetByPath(string.Join(Constants.SeparatorChar, paths.Skip(1)));
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
public IContainer? GetParent() => _parent;
|
|
|
|
public Task<IContainer> Clone() => Task.FromResult((IContainer)this);
|
|
|
|
public Task<bool> IsExists(string name)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public async Task Refresh()
|
|
{
|
|
var containers = new List<IContainer>();
|
|
var elements = new List<IElement>();
|
|
|
|
try
|
|
{
|
|
(containers, elements) = await ListFolder(this, Name, string.Empty);
|
|
}
|
|
catch { }
|
|
|
|
_containers = containers.AsReadOnly();
|
|
_elements = elements.AsReadOnly();
|
|
|
|
_items = _containers.Cast<IItem>().Concat(_elements).ToList().AsReadOnly();
|
|
await Refreshed.InvokeAsync(this, AsyncEventArgs.Empty);
|
|
}
|
|
|
|
public async Task<(List<IContainer> containers, List<IElement> elements)> ListFolder(IContainer parent, string shareName, string folderName)
|
|
{
|
|
var containers = new List<IContainer>();
|
|
var elements = new List<IElement>();
|
|
|
|
var client = await _getSmbClient();
|
|
ISMBFileStore fileStore = client.TreeConnect(shareName, out var status);
|
|
if (status == NTStatus.STATUS_SUCCESS)
|
|
{
|
|
status = fileStore.CreateFile(out object directoryHandle, out FileStatus fileStatus, folderName, AccessMask.GENERIC_READ, SMBLibrary.FileAttributes.Directory, ShareAccess.Read | ShareAccess.Write, CreateDisposition.FILE_OPEN, CreateOptions.FILE_DIRECTORY_FILE, null);
|
|
if (status == NTStatus.STATUS_SUCCESS)
|
|
{
|
|
status = fileStore.QueryDirectory(out List<QueryDirectoryFileInformation> fileList, directoryHandle, "*", FileInformationClass.FileDirectoryInformation);
|
|
status = fileStore.CloseFile(directoryHandle);
|
|
|
|
foreach (var item in fileList)
|
|
{
|
|
if (item is FileDirectoryInformation fileDirectoryInformation && fileDirectoryInformation.FileName != "." && fileDirectoryInformation.FileName != "..")
|
|
{
|
|
if ((fileDirectoryInformation.FileAttributes & SMBLibrary.FileAttributes.Directory) == SMBLibrary.FileAttributes.Directory)
|
|
{
|
|
containers.Add(new SmbFolder(fileDirectoryInformation.FileName, Provider, this, parent));
|
|
}
|
|
else
|
|
{
|
|
elements.Add(new SmbFile(fileDirectoryInformation.FileName, Provider, parent));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
containers = containers.OrderBy(c => c.Name).ToList();
|
|
elements = elements.OrderBy(e => e.Name).ToList();
|
|
|
|
return (containers, elements);
|
|
}
|
|
|
|
public Task Rename(string newName) => throw new NotSupportedException();
|
|
}
|
|
} |