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
| app.MapPost("/api/upload-img/{id}", async Task<IResult> (int id, HttpRequest request) => { Log.Information("Upload image request for id: {0}", id); if (!loginManager.IsLogin(request.HttpContext.GetIpAddress())) { return Results.Json(new ServerAckDash() { Success = false, Message = "Not logged in" }); } if (!request.HasFormContentType) return Results.Json(new ServerAckDash() { Success = false, Message = "Invalid content type" }); var form = await request.ReadFormAsync();
if (form.Files.Any() == false) return Results.Json(new ServerAckDash() { Success = false, Message = "No file found" });
var file = form.Files.FirstOrDefault();
if (file is null || file.Length == 0) return Results.Json(new ServerAckDash() { Success = false, Message = "No file found" });
using var stream = file.OpenReadStream(); byte[] data = new byte[file.Length]; await stream.ReadAsync(data, 0, (int)file.Length);
var fileName = file.FileName; Log.Information("Image file name: {0}", fileName);
var storePath = Path.Combine(Directory.GetCurrentDirectory(), "wwwroot", "customImg");
if (!Directory.Exists(storePath)) { Directory.CreateDirectory(storePath); } var filePath = Path.Combine(storePath, fileName); Log.Information("Image will be write to {0}", filePath);
if (File.Exists(filePath)) { File.Delete(filePath); } using var fileStream = new FileStream(filePath, FileMode.Create); await fileStream.WriteAsync(data, 0, data.Length); fileStream.Close(); return Results.Json(new ServerAckDash() { Success = true, Message = "Image uploaded" }); }).Accepts<IFormFile>("multipart/form-data");
|