mirror of
https://git.teknik.io/Teknikode/Teknik.git
synced 2023-08-02 14:16:22 +02:00
93 lines
2.5 KiB
C#
93 lines
2.5 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Teknik.Configuration;
|
|
using Teknik.Utilities;
|
|
using Teknik.Utilities.Cryptography;
|
|
|
|
namespace StorageService
|
|
{
|
|
public class MemoryStorageService : StorageService
|
|
{
|
|
private static Dictionary<string, byte[]> _files;
|
|
private Dictionary<string, byte[]> Files
|
|
{
|
|
get
|
|
{
|
|
if (_files == null)
|
|
_files = new Dictionary<string, byte[]>();
|
|
return _files;
|
|
}
|
|
set
|
|
{
|
|
_files = value;
|
|
}
|
|
}
|
|
|
|
public MemoryStorageService(StorageConfig config) : base(config)
|
|
{
|
|
}
|
|
|
|
public override string GetUniqueFileName()
|
|
{
|
|
string filename = StringHelper.RandomString(_config.FileNameLength);
|
|
while (Files.ContainsKey(string.Format("{0}.{1}", filename, _config.FileExtension)))
|
|
{
|
|
filename = StringHelper.RandomString(_config.FileNameLength);
|
|
}
|
|
return filename;
|
|
}
|
|
|
|
public override List<string> GetFileNames()
|
|
{
|
|
return Files.Keys.ToList();
|
|
}
|
|
|
|
public override Stream GetFile(string fileName)
|
|
{
|
|
if (string.IsNullOrEmpty(fileName))
|
|
return null;
|
|
if (!Files.ContainsKey(fileName))
|
|
return null;
|
|
|
|
return new MemoryStream(Files[fileName]);
|
|
}
|
|
|
|
public override void SaveEncryptedFile(string fileName, Stream file, int chunkSize, byte[] key, byte[] iv)
|
|
{
|
|
if (file == null ||
|
|
Files.ContainsKey(fileName))
|
|
return;
|
|
|
|
using (var ms = new MemoryStream())
|
|
{
|
|
AesCounterManaged.EncryptToStream(file, ms, chunkSize, key, iv);
|
|
Files.Add(fileName, ms.ToArray());
|
|
}
|
|
}
|
|
|
|
public override void SaveFile(string fileName, Stream file)
|
|
{
|
|
if (file == null ||
|
|
Files.ContainsKey(fileName))
|
|
return;
|
|
|
|
using (var ms = new MemoryStream())
|
|
{
|
|
file.Seek(0, SeekOrigin.Begin);
|
|
file.CopyTo(ms);
|
|
Files.Add(fileName, ms.ToArray());
|
|
}
|
|
}
|
|
|
|
public override void DeleteFile(string fileName)
|
|
{
|
|
if (Files.ContainsKey(fileName))
|
|
Files.Remove(fileName);
|
|
}
|
|
}
|
|
}
|