public IActionResult txtDecoder(txtFileModel model) { if (string.IsNullOrEmpty(model.Key) || string.IsNullOrWhiteSpace(model.Key)) { ModelState.AddModelError("Key", "Введите ключ."); return(View(model)); } if (string.IsNullOrEmpty(model.Name) || string.IsNullOrWhiteSpace(model.Name)) { ModelState.AddModelError("Name", "Введите название файла."); return(View(model)); } if (string.IsNullOrEmpty(model.Path) || string.IsNullOrWhiteSpace(model.Path)) { ModelState.AddModelError("Path", "Введите путь."); return(View(model)); } if (string.IsNullOrEmpty(model.Txt) || string.IsNullOrWhiteSpace(model.Txt)) { ModelState.AddModelError("Txt", "Введите текст для шифровки."); return(View(model)); } string key = model.Key; string path = model.Path; if (!DeNcoder.HasNotCyrillicChars(key)) { ModelState.AddModelError("Key", "Введён ключ с некиррилическими символами."); } if (!Directory.Exists(path)) { ModelState.AddModelError("Path", "Такой директории не существует"); } if (ModelState.IsValid) { try { System.IO.File.WriteAllText(Path.Combine(path, $"{model.Name}.txt"), DeNcoder.Encrypt(model.Txt, model.Key)); return(RedirectToAction("Index")); } catch { ModelState.AddModelError("Name", "Может введено неверное имя?"); } } return(View(model)); }
public IActionResult docDecoder(docFileModel doc) { if (doc.File == null) { ModelState.AddModelError("File", "Файл не выбран."); return(View(doc)); } if (string.IsNullOrEmpty(doc.Key) || string.IsNullOrWhiteSpace(doc.Key)) { ModelState.AddModelError("Key", "Введите ключ."); return(View(doc)); } if (string.IsNullOrEmpty(doc.Path) || string.IsNullOrWhiteSpace(doc.Path)) { ModelState.AddModelError("Path", "Введите путь."); return(View(doc)); } string ext = Path.GetExtension(doc.File.FileName); string key = doc.Key; string path = doc.Path; if (!(ext == ".docx")) { ModelState.AddModelError("File", "Выбран файл неверного расширения."); return(View(doc)); } if (!DeNcoder.HasNotCyrillicChars(key)) { ModelState.AddModelError("Key", "Введён ключ с некиррилическими символами."); return(View(doc)); } if (!Directory.Exists(path)) { ModelState.AddModelError("Path", "Такой директории не существует"); return(View(doc)); } if (ModelState.IsValid) { WordReader.ReadDoc(doc); return(RedirectToAction("Index")); } return(View(doc)); }