forked from cedrozor/myrtille
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFileStorage.cs
115 lines (96 loc) · 4.39 KB
/
FileStorage.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
/*
Myrtille: A native HTML4/5 Remote Desktop Protocol client.
Copyright(c) 2014-2019 Cedric Coste
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using Myrtille.Helpers;
using Myrtille.Services.Contracts;
namespace Myrtille.Services
{
public class FileStorage : IFileStorage
{
public List<string> GetUserDocumentsFolderFiles(
Guid remoteSessionId,
string userDomain,
string userName,
string userPassword)
{
var documentsFolder = AccountHelper.GetUserDocumentsFolder(userDomain, userName, userPassword);
try
{
var fileNames = Directory.GetFiles(documentsFolder);
for (var i = 0; i < fileNames.Length; i++)
{
fileNames[i] = Path.GetFileName(fileNames[i]);
}
return new List<string>(fileNames);
}
catch (Exception exc)
{
Trace.TraceError("Failed to retrieve file(s) from user {0} documents folder {1}, remote session {2} ({3})", userName, documentsFolder, remoteSessionId, exc);
throw;
}
}
public void UploadFileToUserDocumentsFolder(
UploadRequest uploadRequest)
{
var documentsFolder = AccountHelper.GetUserDocumentsFolder(uploadRequest.UserDomain, uploadRequest.UserName, uploadRequest.UserPassword);
try
{
// replace if already exists
if (File.Exists(Path.Combine(documentsFolder, uploadRequest.FileName)))
{
File.Delete(Path.Combine(documentsFolder, uploadRequest.FileName));
}
var fileStream = File.Create(Path.Combine(documentsFolder, uploadRequest.FileName));
int bytesRead;
var buffer = new byte[4096];
while ((bytesRead = uploadRequest.FileStream.Read(buffer, 0, buffer.Length)) > 0)
{
fileStream.Write(buffer, 0, bytesRead);
}
fileStream.Close();
uploadRequest.FileStream.Close();
}
catch (Exception exc)
{
Trace.TraceError("Failed to upload file {0} to user {1} documents folder {2}, remote session {3} ({4})", uploadRequest.FileName, uploadRequest.UserName, documentsFolder, uploadRequest.RemoteSessionId, exc);
throw;
}
Trace.TraceInformation("Uploaded file {0} to user {1} documents folder {2}, remote session {3}", uploadRequest.FileName, uploadRequest.UserName, documentsFolder, uploadRequest.RemoteSessionId);
}
public Stream DownloadFileFromUserDocumentsFolder(
Guid remoteSessionId,
string userDomain,
string userName,
string userPassword,
string fileName)
{
var documentsFolder = AccountHelper.GetUserDocumentsFolder(userDomain, userName, userPassword);
Stream fileStream = null;
try
{
fileStream = File.Open(Path.Combine(documentsFolder, fileName), FileMode.Open, FileAccess.Read, FileShare.Read);
}
catch (Exception exc)
{
Trace.TraceError("Failed to download file {0} from user {1} documents folder {2}, remote session {3} ({4})", fileName, userName, documentsFolder, remoteSessionId, exc);
throw;
}
Trace.TraceInformation("Downloaded file {0} from user {1} documents folder {2}, remote session {3}", fileName, userName, documentsFolder, remoteSessionId);
return fileStream;
}
}
}