2024-04-29 19:06:11 +04:00
|
|
|
|
using Microsoft.AspNetCore.Mvc;
|
2024-05-27 00:50:40 +04:00
|
|
|
|
using PlumbingRepairClientApp;
|
2024-04-29 19:06:11 +04:00
|
|
|
|
using System.Diagnostics;
|
|
|
|
|
using UniversityClientAppWorker.Models;
|
2024-05-27 00:50:40 +04:00
|
|
|
|
using UniversityContracts.BindingModels;
|
|
|
|
|
using UniversityContracts.ViewModels;
|
2024-04-29 19:06:11 +04:00
|
|
|
|
using UniversityDataModels.Enums;
|
2024-05-28 17:08:06 +04:00
|
|
|
|
using UniversityDataModels.Models;
|
2024-04-29 19:06:11 +04:00
|
|
|
|
|
|
|
|
|
namespace UniversityClientAppWorker.Controllers
|
|
|
|
|
{
|
|
|
|
|
public class HomeController : Controller
|
|
|
|
|
{
|
|
|
|
|
private readonly ILogger<HomeController> _logger;
|
|
|
|
|
|
|
|
|
|
public HomeController(ILogger<HomeController> logger)
|
|
|
|
|
{
|
|
|
|
|
_logger = logger;
|
|
|
|
|
}
|
2024-05-28 19:50:44 +04:00
|
|
|
|
/*[HttpGet]
|
2024-05-27 00:50:40 +04:00
|
|
|
|
public IActionResult Index()
|
2024-04-29 19:06:11 +04:00
|
|
|
|
{
|
2024-05-27 00:50:40 +04:00
|
|
|
|
if (APIClient.User == null)
|
|
|
|
|
{
|
|
|
|
|
return Redirect("~/Home/Enter");
|
|
|
|
|
}
|
2024-05-28 19:50:44 +04:00
|
|
|
|
ViewBag.Teachers = APIClient.GetRequest<List<TeacherViewModel>>($"api/teacher/getallteachers");
|
2024-05-27 00:50:40 +04:00
|
|
|
|
return View(APIClient.GetRequest<List<PlanOfStudyViewModel>>($"api/planofstudys/getplanofstudys?userId={APIClient.User.Id}"));
|
2024-05-28 19:50:44 +04:00
|
|
|
|
}*/
|
|
|
|
|
[HttpGet]
|
|
|
|
|
public async Task<IActionResult> Index()
|
|
|
|
|
{
|
|
|
|
|
if (APIClient.User == null)
|
|
|
|
|
{
|
|
|
|
|
return Redirect("~/Home/Enter");
|
|
|
|
|
}
|
|
|
|
|
ViewBag.Teachers = APIClient.GetRequest<List<TeacherViewModel>>($"api/teacher/getallteachers");
|
|
|
|
|
var planOfStudys = await APIClient.GetRequestPlanOfStudyAsync<List<PlanOfStudyViewModel>>($"api/planofstudys/getplanofstudys?userId={APIClient.User.Id}");
|
|
|
|
|
|
|
|
|
|
return View(planOfStudys);
|
2024-04-29 19:06:11 +04:00
|
|
|
|
}
|
2024-05-28 19:50:44 +04:00
|
|
|
|
[HttpGet]
|
|
|
|
|
public async Task<IActionResult> InfoPlanOfStudy(int id)
|
|
|
|
|
{
|
|
|
|
|
if (APIClient.User == null)
|
|
|
|
|
{
|
|
|
|
|
return Redirect("~/Home/Enter");
|
|
|
|
|
}
|
|
|
|
|
var obj1 = APIClient.GetRequest<List<TeacherViewModel>>($"api/teacher/getallteachers");
|
|
|
|
|
ViewBag.Teachers = obj1;
|
|
|
|
|
|
|
|
|
|
var obj = await APIClient.GetRequestPlanOfStudyAsync<PlanOfStudyViewModel>($"api/planofstudys/getplanofstudy?id={id}&userId={APIClient.User.Id}");
|
|
|
|
|
return View(obj);
|
|
|
|
|
}
|
|
|
|
|
[HttpPost]
|
|
|
|
|
public void CreatePlanOfStudy(string profile, string formOfStudy, List<int> teacherIds)
|
2024-04-29 19:06:11 +04:00
|
|
|
|
{
|
2024-05-27 00:50:40 +04:00
|
|
|
|
if (APIClient.User == null)
|
|
|
|
|
{
|
|
|
|
|
throw new Exception("<22><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>");
|
|
|
|
|
}
|
|
|
|
|
if (string.IsNullOrEmpty(formOfStudy) || string.IsNullOrEmpty(profile))
|
|
|
|
|
{
|
|
|
|
|
throw new Exception("<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>");
|
|
|
|
|
}
|
|
|
|
|
APIClient.PostRequest("api/planofstudys/createplanofstudy", new PlanOfStudyBindingModel
|
|
|
|
|
{
|
|
|
|
|
Profile = profile,
|
|
|
|
|
FormOfStudy = formOfStudy,
|
2024-05-28 19:50:44 +04:00
|
|
|
|
UserId = APIClient.User.Id,
|
|
|
|
|
PlanOfStudyTeachers = teacherIds.ToDictionary(id => id, id => (ITeacherModel)null)
|
|
|
|
|
});
|
2024-05-27 00:50:40 +04:00
|
|
|
|
Response.Redirect("Index");
|
2024-04-29 19:06:11 +04:00
|
|
|
|
}
|
2024-05-27 17:32:21 +04:00
|
|
|
|
[HttpPost]
|
|
|
|
|
public void DeletePlanOfStudy(int id)
|
|
|
|
|
{
|
|
|
|
|
if (id == 0)
|
|
|
|
|
{
|
|
|
|
|
throw new Exception("id <20><> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> 0");
|
|
|
|
|
}
|
|
|
|
|
APIClient.PostRequest("api/planofstudys/deleteplanofstudy", new PlanOfStudyBindingModel
|
|
|
|
|
{
|
|
|
|
|
Id = id
|
|
|
|
|
});
|
|
|
|
|
Response.Redirect("Index");
|
|
|
|
|
}
|
2024-05-28 17:08:06 +04:00
|
|
|
|
[HttpPost]
|
2024-05-28 19:50:44 +04:00
|
|
|
|
public void UpdatePlanOfStudy(int id, string profile, string formOfStudy, List<int> teacherIds)
|
2024-05-27 17:32:21 +04:00
|
|
|
|
{
|
|
|
|
|
if (id == 0)
|
|
|
|
|
{
|
|
|
|
|
throw new Exception("id <20><> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> 0");
|
|
|
|
|
}
|
|
|
|
|
APIClient.PostRequest("api/planofstudys/updateplanofstudy", new PlanOfStudyBindingModel
|
|
|
|
|
{
|
2024-05-28 17:08:06 +04:00
|
|
|
|
Id = id,
|
|
|
|
|
Profile = profile,
|
2024-05-28 19:50:44 +04:00
|
|
|
|
FormOfStudy = formOfStudy,
|
|
|
|
|
PlanOfStudyTeachers = teacherIds.ToDictionary(id => id, id => (ITeacherModel)null)
|
2024-05-28 17:08:06 +04:00
|
|
|
|
});
|
2024-05-27 17:32:21 +04:00
|
|
|
|
Response.Redirect("Index");
|
|
|
|
|
}
|
2024-05-28 17:08:06 +04:00
|
|
|
|
[HttpGet]
|
2024-05-27 00:50:40 +04:00
|
|
|
|
public IActionResult Privacy()
|
|
|
|
|
{
|
|
|
|
|
if (APIClient.User == null)
|
|
|
|
|
{
|
|
|
|
|
return Redirect("~/Home/Enter");
|
|
|
|
|
}
|
|
|
|
|
return View(APIClient.User);
|
|
|
|
|
}
|
|
|
|
|
[HttpPost]
|
|
|
|
|
public void Privacy(string login, string password, string email)
|
|
|
|
|
{
|
|
|
|
|
if (APIClient.User == null)
|
|
|
|
|
{
|
|
|
|
|
throw new Exception("<22><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>");
|
|
|
|
|
}
|
|
|
|
|
if (string.IsNullOrEmpty(login) || string.IsNullOrEmpty(password) || string.IsNullOrEmpty(email))
|
|
|
|
|
{
|
|
|
|
|
throw new Exception("<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>, <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD>");
|
|
|
|
|
}
|
|
|
|
|
APIClient.PostRequest("api/user/updatedata", new UserViewModel
|
|
|
|
|
{
|
|
|
|
|
Id = APIClient.User.Id,
|
|
|
|
|
Email = email,
|
|
|
|
|
Login = login,
|
|
|
|
|
Password = password
|
|
|
|
|
});
|
2024-04-29 19:06:11 +04:00
|
|
|
|
|
2024-05-27 00:50:40 +04:00
|
|
|
|
APIClient.User.Login = login;
|
|
|
|
|
APIClient.User.Email = email;
|
|
|
|
|
APIClient.User.Password = password;
|
|
|
|
|
Response.Redirect("Index");
|
|
|
|
|
}
|
|
|
|
|
[HttpGet]
|
|
|
|
|
public IActionResult Attestations()
|
2024-04-29 19:06:11 +04:00
|
|
|
|
{
|
2024-05-27 00:50:40 +04:00
|
|
|
|
if (APIClient.User == null)
|
|
|
|
|
{
|
|
|
|
|
return Redirect("~/Home/Enter");
|
|
|
|
|
}
|
2024-05-28 00:44:23 +04:00
|
|
|
|
ViewBag.Students = APIClient.GetRequest<List<StudentViewModel>>($"api/student/getstudents?userId={APIClient.User.Id}");
|
|
|
|
|
ViewBag.AttestationScore = Enum.GetValues(typeof(AttestationScore)).Cast<AttestationScore>();
|
|
|
|
|
return View(APIClient.GetRequest<List<AttestationViewModel>>($"api/attestation/getattestations?userId={APIClient.User.Id}"));
|
2024-04-29 19:06:11 +04:00
|
|
|
|
}
|
2024-05-28 00:44:23 +04:00
|
|
|
|
[HttpPost]
|
|
|
|
|
public void CreateAttestation(string formOfEvaluation, int student, AttestationScore score)
|
|
|
|
|
{
|
|
|
|
|
if (APIClient.User == null)
|
|
|
|
|
{
|
|
|
|
|
throw new Exception("<22><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>");
|
|
|
|
|
}
|
|
|
|
|
if (string.IsNullOrEmpty(formOfEvaluation) || student == 0)
|
|
|
|
|
{
|
|
|
|
|
throw new Exception("<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>");
|
|
|
|
|
}
|
|
|
|
|
APIClient.PostRequest("api/attestation/createattestation", new AttestationBindingModel
|
|
|
|
|
{
|
|
|
|
|
UserId = APIClient.User.Id,
|
|
|
|
|
FormOfEvaluation = formOfEvaluation,
|
|
|
|
|
StudentId = student,
|
|
|
|
|
Score = score
|
|
|
|
|
});
|
|
|
|
|
Response.Redirect("Attestations");
|
|
|
|
|
}
|
|
|
|
|
[HttpGet]
|
2024-05-27 00:50:40 +04:00
|
|
|
|
public IActionResult Students()
|
|
|
|
|
{
|
|
|
|
|
if (APIClient.User == null)
|
|
|
|
|
{
|
|
|
|
|
return Redirect("~/Home/Enter");
|
|
|
|
|
}
|
2024-05-27 22:35:38 +04:00
|
|
|
|
ViewBag.PlanOfStudys = APIClient.GetRequest<List<PlanOfStudyViewModel>>
|
|
|
|
|
($"api/planofstudys/getplanofstudys?userId={APIClient.User.Id}");
|
2024-05-27 17:32:21 +04:00
|
|
|
|
return View(APIClient.GetRequest<List<StudentViewModel>>($"api/student/getstudents?userId={APIClient.User.Id}"));
|
2024-05-27 00:50:40 +04:00
|
|
|
|
}
|
2024-05-27 22:35:38 +04:00
|
|
|
|
[HttpPost]
|
|
|
|
|
public void CreateStudent(string name, int planOfStudy, string phoneNumber)
|
|
|
|
|
{
|
|
|
|
|
if (APIClient.User == null)
|
|
|
|
|
{
|
|
|
|
|
throw new Exception("<22><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>");
|
|
|
|
|
}
|
|
|
|
|
if (string.IsNullOrEmpty(name) || planOfStudy == 0 || string.IsNullOrEmpty(phoneNumber))
|
|
|
|
|
{
|
|
|
|
|
throw new Exception("<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>, <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>");
|
|
|
|
|
}
|
|
|
|
|
APIClient.PostRequest("api/student/createstudent", new StudentBindingModel
|
|
|
|
|
{
|
|
|
|
|
UserId = APIClient.User.Id,
|
|
|
|
|
Name = name,
|
|
|
|
|
PlanOfStudyId = planOfStudy,
|
|
|
|
|
PhoneNumber = phoneNumber,
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
Response.Redirect("Students");
|
|
|
|
|
}
|
|
|
|
|
[HttpGet]
|
2024-05-27 00:50:40 +04:00
|
|
|
|
public IActionResult Enter()
|
2024-04-29 19:06:11 +04:00
|
|
|
|
{
|
|
|
|
|
return View();
|
|
|
|
|
}
|
2024-05-27 00:50:40 +04:00
|
|
|
|
[HttpGet]
|
|
|
|
|
public IActionResult Register()
|
2024-04-29 19:06:11 +04:00
|
|
|
|
{
|
|
|
|
|
return View();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)]
|
|
|
|
|
public IActionResult Error()
|
|
|
|
|
{
|
|
|
|
|
return View(new ErrorViewModel { RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier });
|
|
|
|
|
}
|
2024-05-27 00:50:40 +04:00
|
|
|
|
[HttpPost]
|
|
|
|
|
public void Enter(string login, string password)
|
|
|
|
|
{
|
|
|
|
|
if (string.IsNullOrEmpty(login) || string.IsNullOrEmpty(password))
|
|
|
|
|
{
|
|
|
|
|
throw new Exception("<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>");
|
|
|
|
|
}
|
|
|
|
|
APIClient.User = APIClient.GetRequest<UserViewModel>($"api/user/loginworker?login={login}&password={password}");
|
|
|
|
|
if (APIClient.User == null)
|
|
|
|
|
{
|
|
|
|
|
throw new Exception("<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>/<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>");
|
|
|
|
|
}
|
|
|
|
|
Response.Redirect("Index");
|
|
|
|
|
}
|
|
|
|
|
[HttpPost]
|
|
|
|
|
public void Register(string login, string password, string email)
|
|
|
|
|
{
|
|
|
|
|
if (string.IsNullOrEmpty(login) || string.IsNullOrEmpty(password) || string.IsNullOrEmpty(email))
|
|
|
|
|
{
|
|
|
|
|
throw new Exception("<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>, <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD>");
|
|
|
|
|
}
|
|
|
|
|
APIClient.PostRequest("api/user/registerworker", new UserBindingModel
|
|
|
|
|
{
|
|
|
|
|
Email = email,
|
|
|
|
|
Login = login,
|
|
|
|
|
Password = password
|
|
|
|
|
});
|
|
|
|
|
Response.Redirect("Enter");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-04-29 19:06:11 +04:00
|
|
|
|
}
|