forked from Teknikode/Teknik
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
100 lines
4.5 KiB
100 lines
4.5 KiB
using System; |
|
using System.Collections.Generic; |
|
using System.Linq; |
|
using System.Web; |
|
using System.IO; |
|
using Teknik.Configuration; |
|
using Teknik.Models; |
|
using Teknik.Utilities; |
|
using System.Text; |
|
|
|
namespace Teknik.Areas.Upload |
|
{ |
|
public static class Uploader |
|
{ |
|
public static Models.Upload SaveFile(TeknikEntities db, Config config, System.IO.Stream file, string contentType, int contentLength, bool encrypt) |
|
{ |
|
return SaveFile(db, config, file, contentType, contentLength, encrypt, string.Empty, null, null, false, 256, 128); |
|
} |
|
public static Models.Upload SaveFile(TeknikEntities db, Config config, System.IO.Stream file, string contentType, int contentLength, bool encrypt, string defaultExtension) |
|
{ |
|
return SaveFile(db, config, file, contentType, contentLength, encrypt, defaultExtension, null, null, false, 256, 128); |
|
} |
|
|
|
public static Models.Upload SaveFile(TeknikEntities db, Config config, System.IO.Stream file, string contentType, int contentLength, bool encrypt, string defaultExtension, string iv) |
|
{ |
|
return SaveFile(db, config, file, contentType, contentLength, encrypt, defaultExtension, iv, null, false, 256, 128); |
|
} |
|
|
|
public static Models.Upload SaveFile(TeknikEntities db, Config config, System.IO.Stream file, string contentType, int contentLength, bool encrypt, string defaultExtension, string iv, string key, bool saveKey) |
|
{ |
|
return SaveFile(db, config, file, contentType, contentLength, encrypt, defaultExtension, iv, key, saveKey, 256, 128); |
|
} |
|
|
|
public static Models.Upload SaveFile(TeknikEntities db, Config config, System.IO.Stream file, string contentType, int contentLength, bool encrypt, string defaultExtension, string iv, string key, bool saveKey, int keySize, int blockSize) |
|
{ |
|
if (!Directory.Exists(config.UploadConfig.UploadDirectory)) |
|
{ |
|
Directory.CreateDirectory(config.UploadConfig.UploadDirectory); |
|
} |
|
|
|
// Generate a unique file name that does not currently exist |
|
string filePath = FileHelper.GenerateRandomFileName(config.UploadConfig.UploadDirectory, config.UploadConfig.FileExtension, 10); |
|
string fileName = Path.GetFileName(filePath); |
|
|
|
// once we have the filename, lets save the file |
|
if (encrypt) |
|
{ |
|
// Generate key and iv if empty |
|
if (string.IsNullOrEmpty(key)) |
|
{ |
|
key = StringHelper.RandomString(keySize / 8); |
|
} |
|
if (string.IsNullOrEmpty(iv)) |
|
{ |
|
iv = StringHelper.RandomString(blockSize / 8); |
|
} |
|
|
|
byte[] keyBytes = Encoding.UTF8.GetBytes(key); |
|
byte[] ivBytes = Encoding.UTF8.GetBytes(iv); |
|
|
|
// Encrypt the file to disk |
|
AES.EncryptToFile(filePath, file, config.UploadConfig.ChunkSize, keyBytes, ivBytes, "CTR", "NoPadding"); |
|
} |
|
else |
|
{ |
|
// Just write the stream to the file |
|
using (FileStream fileStream = new FileStream(filePath, FileMode.Create, FileAccess.Write)) |
|
{ |
|
file.Seek(0, SeekOrigin.Begin); |
|
file.CopyTo(fileStream); |
|
} |
|
} |
|
|
|
// Generate a unique url |
|
string extension = (config.UploadConfig.IncludeExtension) ? FileHelper.GetDefaultExtension(contentType, defaultExtension) : string.Empty; |
|
string url = StringHelper.RandomString(config.UploadConfig.UrlLength) + extension; |
|
while (db.Uploads.Where(u => u.Url == url).FirstOrDefault() != null) |
|
{ |
|
url = StringHelper.RandomString(config.UploadConfig.UrlLength) + extension; |
|
} |
|
|
|
// Now we need to update the database with the new upload information |
|
Models.Upload upload = db.Uploads.Create(); |
|
upload.DateUploaded = DateTime.Now; |
|
upload.Url = url; |
|
upload.FileName = fileName; |
|
upload.ContentType = (!string.IsNullOrEmpty(contentType)) ? contentType : "application/octet-stream"; |
|
upload.ContentLength = contentLength; |
|
upload.Key = (saveKey) ? key : null; |
|
upload.IV = iv; |
|
upload.KeySize = keySize; |
|
upload.BlockSize = blockSize; |
|
|
|
db.Uploads.Add(upload); |
|
db.SaveChanges(); |
|
|
|
return upload; |
|
} |
|
} |
|
} |