DocsUpload.razor 4.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. @page "/docsupload"
  2. @using System.IO;
  3. <EditForm Model="@articleModel" OnValidSubmit="@HandleValidSubmit">
  4. <DataAnnotationsValidator />
  5. <ValidationSummary />
  6. <h1>Загрузка материала</h1>
  7. <div style="width: 50%;">
  8. <p><InputFile id="inputDefault" OnChange="@HandleSelection" accept="application/pdf, application/msword, application/vnd.openxmlformats-officedocument.wordprocessingml.document" /></p>
  9. <p><InputText id="article_name" class="form-control" @bind-Value="articleModel.Name" placeholder="Наименование статьи" /></p>
  10. <p><InputDate id="date_publish" class="form-control" @bind-Value="articleModel.PublishDate" placeholder="Дата издания" /></p>
  11. <p><InputText id="author" class="form-control" @bind-Value="articleModel.Author" placeholder="Автор" /></p>
  12. <p><InputTextArea id="keywords" class="form-control" @bind-Value="articleModel.Keywords" placeholder="Ключевые слова" /></p>
  13. <p><InputTextArea rows="5" id="annotation" class="form-control" @bind-Value="articleModel.Annotation" placeholder="Аннотация" /></p>
  14. <p><InputTextArea rows="10" id="text" class="form-control" @bind-Value="@text" placeholder="Текст" /></p>
  15. <p><button class="btn btn-primary" type="submit">Загрузить</button></p>
  16. <p>Статус: @status</p>
  17. </div>
  18. </EditForm>
  19. @code {
  20. @inject NavigationManager NavigationManager;
  21. @inject IJSRuntime JsRuntime;
  22. private const string FOLDER_NAME = "articles_storage";
  23. private const long MAX_FILE_SIZE = 5120000; //bytes
  24. private Models.ArticleModel articleModel = new Models.ArticleModel();
  25. private string status;
  26. private string text;
  27. private IBrowserFile file;
  28. private async void HandleValidSubmit()
  29. {
  30. MySQLConnector dbCon = MySQLConnector.Instance();
  31. string stringSQL = $"INSERT INTO articles (filename, article_name, authors, date_publish, annotation, keywords)" +
  32. $"VALUES ('{articleModel.Filename}', '{articleModel.Name}', '{articleModel.Author}', '{articleModel.PublishDate.ToString("yyyy-MM-dd")}'," +
  33. $"'{articleModel.Annotation}', '{articleModel.Keywords}')";
  34. long id = dbCon.SQLInsert(stringSQL);
  35. stringSQL = $"INSERT INTO actions_history (article_id, action_type, acc_id)" +
  36. $"VALUES ('{id}', {1}, {1})";
  37. dbCon.SQLInsert(stringSQL);
  38. dbCon.Close();
  39. string path = System.AppDomain.CurrentDomain.BaseDirectory;
  40. Directory.CreateDirectory(Path.Combine(path, FOLDER_NAME));
  41. string fullpath = Path.Combine(path, FOLDER_NAME, $"{id}_{articleModel.Filename}");
  42. FileStream fs = new(fullpath, FileMode.Create, FileAccess.Write);
  43. Stream stream = file.OpenReadStream(MAX_FILE_SIZE);
  44. byte[] bytes = new byte[stream.Length];
  45. await stream.ReadAsync(bytes, 0, (int)stream.Length);
  46. await fs.WriteAsync(bytes, 0, bytes.Length);
  47. stream.Close();
  48. fs.Close();
  49. Console.WriteLine("Article data saved");
  50. status = "Article data saved";
  51. bool confirmed = await JsRuntime.InvokeAsync<bool>("confirm", "{Хотите загрузить еще статью?");
  52. if(confirmed)
  53. NavigationManager.NavigateTo("docsupload", true);
  54. else
  55. NavigationManager.NavigateTo("");
  56. }
  57. async Task HandleSelection(InputFileChangeEventArgs e)
  58. {
  59. file = e.File;
  60. if (file != null)
  61. {
  62. status = $"Finished loading {file.Size} bytes from {file.Name}";
  63. //передавать из парсинга ArticleModel!!!
  64. DocParse docParse = new DocParse();
  65. Dictionary<string, string> docFields = await DocParse.ReadPDF(file);
  66. articleModel.Filename = file.Name;
  67. articleModel.Name = docFields["name"];
  68. //articleModel.PublishDate = docFields["date"];
  69. articleModel.Author = docFields["authors"];
  70. articleModel.Keywords = docFields["keywords"];
  71. articleModel.Annotation = docFields["annotation"];
  72. text = docFields["text"];
  73. }
  74. }
  75. }