123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Text.RegularExpressions;
- using System.Threading.Tasks;
- using System.Windows;
- namespace LibraryRDK
- {
- public class InputValidation
- {
- public static bool Pattern(string text)
- {
- string pattern = @"\b[0-2][0-9]:[0-5][0-9]-[0-2][0-9]:[0-5][0-9]\b";
- Regex regex = new Regex(pattern);
- if (regex.IsMatch(text))
- {
- return true;
- }
- else
- {
- return false;
- }
- }
- public static bool PatternNumbers(string text)
- {
- string pattern = @"8\d{10}$";
- Regex regex = new Regex(pattern);
- if (regex.IsMatch(text))
- {
- return true;
- }
- else { return false; }
- }
- public static bool CheckAuthorization(string login, string password)
- {
- if (!string.IsNullOrWhiteSpace(login))
- {
- if (!string.IsNullOrEmpty(password))
- {
- return true;
- }
- else
- {
- MessageBox.Show("Заполните Пароль", "Ошибка", MessageBoxButton.OK, MessageBoxImage.Error);
- return false;
- }
- }
- else
- {
- MessageBox.Show("Заполните Логин", "Ошибка", MessageBoxButton.OK, MessageBoxImage.Error);
- return false;
- }
- }
- public static bool CheckUsers(string name, string surname, string patronymis, string number, int power, int post)
- {
- if (!string.IsNullOrWhiteSpace(name))
- {
- if (!string.IsNullOrWhiteSpace(surname))
- {
- if (!string.IsNullOrWhiteSpace(patronymis))
- {
- if (!string.IsNullOrWhiteSpace(number))
- {
- if(power >= 0)
- {
- if(post >= 0)
- {
- return true;
- }
- else
- {
- MessageBox.Show("Выберите Должность", "Ошибка", MessageBoxButton.OK, MessageBoxImage.Error);
- return false;
- }
- }
- else
- {
- MessageBox.Show("Выберите Права", "Ошибка", MessageBoxButton.OK, MessageBoxImage.Error);
- return false;
- }
- }
- else
- {
- MessageBox.Show("Заполните Номер", "Ошибка", MessageBoxButton.OK, MessageBoxImage.Error);
- return false;
- }
- }
- else
- {
- MessageBox.Show("Заполните Отчество", "Ошибка", MessageBoxButton.OK, MessageBoxImage.Error);
- return false;
- }
- }
- else
- {
- MessageBox.Show("Заполните Фамилию", "Ошибка", MessageBoxButton.OK, MessageBoxImage.Error);
- return false;
- }
- }
- else
- {
- MessageBox.Show("Заполните Имя", "Ошибка", MessageBoxButton.OK, MessageBoxImage.Error);
- return false;
- }
- }
- }
- }
|