|
| 1 | +using AventStack.ExtentReports.Model; |
| 2 | + |
| 3 | +using System; |
| 4 | +using System.Collections.Generic; |
| 5 | +using System.Globalization; |
| 6 | +using System.IO; |
| 7 | +using System.Net; |
| 8 | +using System.Net.Http; |
| 9 | +using System.Net.Http.Headers; |
| 10 | +using System.Runtime.CompilerServices; |
| 11 | + |
| 12 | +namespace AventStack.ExtentReports.MediaStorage |
| 13 | +{ |
| 14 | + internal class KlovHttpMediaManager |
| 15 | + { |
| 16 | + private const string Route = "files/upload"; |
| 17 | + |
| 18 | + private string _host; |
| 19 | + |
| 20 | + public void Init(string host) |
| 21 | + { |
| 22 | + if (!host.Substring(host.Length - 1).Equals("/")) |
| 23 | + { |
| 24 | + host += "/"; |
| 25 | + } |
| 26 | + _host = host; |
| 27 | + } |
| 28 | + |
| 29 | + [MethodImpl(MethodImplOptions.Synchronized)] |
| 30 | + public void StoreMedia(Media m) |
| 31 | + { |
| 32 | + if (string.IsNullOrEmpty(m.Path) || !string.IsNullOrEmpty(m.Base64String)) |
| 33 | + { |
| 34 | + return; |
| 35 | + } |
| 36 | + |
| 37 | + if (!File.Exists(m.Path)) |
| 38 | + { |
| 39 | + throw new IOException("The system cannot find the file specified " + m.Path); |
| 40 | + } |
| 41 | + |
| 42 | + var uri = new Uri(_host); |
| 43 | + var file = File.ReadAllBytes(m.Path); |
| 44 | + var fileName = m.Sequence + Path.GetExtension(m.Path); |
| 45 | + |
| 46 | + using (var reader = new StreamReader(m.Path)) |
| 47 | + { |
| 48 | + using (var handler = new HttpClientHandler() { UseCookies = false }) |
| 49 | + using (var client = new HttpClient(handler)) |
| 50 | + { |
| 51 | + client.BaseAddress = uri; |
| 52 | + |
| 53 | + client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json")); |
| 54 | + client.DefaultRequestHeaders.Add("Accept", "application/json"); |
| 55 | + client.DefaultRequestHeaders.Add("Connection", "keep-alive"); |
| 56 | + client.DefaultRequestHeaders.Add("User-Agent", "Mozilla/5.0"); |
| 57 | + |
| 58 | + using (var content = new MultipartFormDataContent(DateTime.Now.ToString(CultureInfo.InvariantCulture))) |
| 59 | + { |
| 60 | + string logId = m.LogObjectId == null ? "" : m.LogObjectId.ToString(); |
| 61 | + |
| 62 | + var values = new[] |
| 63 | + { |
| 64 | + new KeyValuePair<string, string>("name", m.Sequence + Path.GetExtension(m.Path)), |
| 65 | + new KeyValuePair<string, string>("id", m.ObjectId.ToString()), |
| 66 | + new KeyValuePair<string, string>("reportId", m.ReportObjectId.ToString()), |
| 67 | + new KeyValuePair<string, string>("testId", m.TestObjectId.ToString()), |
| 68 | + new KeyValuePair<string, string>("mediaType", "img"), |
| 69 | + new KeyValuePair<string, string>("logId", logId) |
| 70 | + }; |
| 71 | + |
| 72 | + foreach (var keyValuePair in values) |
| 73 | + { |
| 74 | + content.Add(new StringContent(keyValuePair.Value), String.Format("\"{0}\"", keyValuePair.Key)); |
| 75 | + } |
| 76 | + |
| 77 | + var imageContent = new ByteArrayContent(file); |
| 78 | + content.Add(imageContent, "f", fileName); |
| 79 | + |
| 80 | + var result = client.PostAsync(_host + Route, content).Result; |
| 81 | + |
| 82 | + if (result.StatusCode != HttpStatusCode.OK) |
| 83 | + { |
| 84 | + throw new IOException("Unable to upload file to server: " + m.Path); |
| 85 | + } |
| 86 | + } |
| 87 | + } |
| 88 | + } |
| 89 | + } |
| 90 | + } |
| 91 | +} |
0 commit comments