DepartmentProject/DepartmentPortal/Department/DepartmentWindowsDesktop/EntityControls/Student/ControlStudentElement.cs

115 lines
4.0 KiB
C#
Raw Normal View History

2021-04-12 16:57:29 +04:00
using DepartmentBusinessLogic.BindingModels;
using DepartmentBusinessLogic.BusinessLogics;
using DepartmentBusinessLogic.ViewModels;
using DesktopTools.BaseControls;
using DesktopTools.Controls;
using DesktopTools.Helpers;
using DesktopTools.Interfaces;
using DesktopTools.Models;
using ModuleTools.BusinessLogics;
using ModuleTools.Extensions;
using SecurityBusinessLogic.BindingModels;
using SecurityBusinessLogic.BusinessLogics;
using SecurityBusinessLogic.ViewModels;
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
2021-04-12 16:57:29 +04:00
namespace DepartmentWindowsDesktop.EntityControls
{
/// <summary>
/// Реализация контрола для студента
/// </summary>
public partial class ControlStudentElement :
GenericControlEntityElement<StudentGetBindingModel, StudentSetBindingModel, StudentListViewModel, StudentViewModel, StudentBusinessLogic>,
IGenericControlEntityElement
{
public ControlStudentElement()
{
InitializeComponent();
Title = "Студент";
ControlId = new Guid("cbddf92c-8c00-4ad2-93e8-33c0d998a899");
_genericControlViewEntityElement = this;
}
public IControl GetInstanceGenericControl() => new ControlStudentElement() { ControlId = Guid.NewGuid() };
public ControlViewEntityElementConfiguration GetConfigControl() => new()
{
ControlOnMoveElem = new Dictionary<string, (string Title, EventHandler Event)>
{
{ "ToolStripMenuItemAddUser", ("Добавить пользователя", async (object sender, EventArgs e) => { await AddUserAsync(); }) },
{ "ToolStripMenuItemPasswordReset", ("Сброс пароля пользователя", async (object sender, EventArgs e) => { await PasswordResetAsync(); }) }
2021-04-12 16:57:29 +04:00
}
};
/// <summary>
/// Поиск пользователя под учетку, либо добавление нового, если не найдено
/// </summary>
private async Task AddUserAsync()
2021-04-12 16:57:29 +04:00
{
var model = new StudentSetBindingModel();
if (FillModel(model))
{
var logic = DependencyManager.Instance.Resolve<UserBusinessLogic>();
var userName = $"{model.LastName}{(model.FirstName.IsNotEmpty() ? $" {model.FirstName[0]}." : string.Empty)}{(model.Patronymic.IsNotEmpty() ? $"{model.Patronymic[0]}." : string.Empty)}";
var user = await logic.GetElementAsync(new UserGetBindingModel { Login = model.NumberOfBook });
if (user == null)
2021-04-12 16:57:29 +04:00
{
if (logic.Errors.Count > 0)
2021-04-12 16:57:29 +04:00
{
DialogHelper.MessageException(logic.Errors, "Ошибка при создании пользователя");
2021-04-12 16:57:29 +04:00
return;
}
user = await logic.CreateAsync(new UserSetBindingModel
2021-04-12 16:57:29 +04:00
{
Login = model.NumberOfBook,
Password = userName,
Avatar = model.Photo
});
if (user == null)
2021-04-12 16:57:29 +04:00
{
DialogHelper.MessageException(logic.Errors, "Ошибка при создании пользователя");
return;
2021-04-12 16:57:29 +04:00
}
}
model.UserId = user.Id;
var controls = tabPageMain.Controls.Find($"ControlUserId", true);
if (controls != null)
{
(controls[0] as AbstractBaseControl).SetValue(model);
}
2021-04-12 16:57:29 +04:00
}
}
/// <summary>
/// Сброс пароля пользователя
/// </summary>
private async Task PasswordResetAsync()
2021-04-12 16:57:29 +04:00
{
if (_element == null)
{
return;
}
var model = new StudentSetBindingModel();
if (FillModel(model))
{
var logic = DependencyManager.Instance.Resolve<UserBusinessLogic>();
var user = await logic.GetElementAsync(new UserGetBindingModel { Id = _element.UserId });
2021-04-12 16:57:29 +04:00
if (user == null)
{
DialogHelper.MessageException(logic.Errors, "Ошибка при получении пользователя");
return;
}
user.Password = model.NumberOfBook;
user = await logic.UpdateAsync(Mapper.MapToClass<UserViewModel, UserSetBindingModel>(user, true));
2021-04-12 16:57:29 +04:00
if (user == null)
{
DialogHelper.MessageException(logic.Errors, "Ошибка при получении пользователя");
return;
}
DialogHelper.MessageInformation("Пароль сброшен", "Успех");
}
}
}
}