CourseWork_EventVisitor/EventVisitor/EventVisitorClientApp/Controllers/HomeController.cs

269 lines
7.4 KiB
C#

using EventVisitorClientApp.Models;
using EventVisitorLogic.BindingModels;
using EventVisitorLogic.Logic;
using EventVisitorLogic.ViewModels;
using Microsoft.AspNetCore.Mvc;
using System;
using System.Diagnostics;
using System.Net.NetworkInformation;
using System.Net;
using System.Numerics;
using System.Security.Cryptography.Xml;
using System.Xml.Linq;
namespace EventVisitorClientApp.Controllers
{
public class HomeController : Controller
{
Random rnd = new Random();
public IActionResult Index()
{
return View();
}
[HttpGet]
public IActionResult Enter()
{
return View();
}
[HttpPost]
public void Enter(string login, string password)
{
if (string.IsNullOrEmpty(login) || string.IsNullOrEmpty(password))
{
throw new Exception("Ââåäèòå ëîãèí è ïàðîëü");
}
APIClient.Client = APIClient.GetRequest<OrganizerViewModel>($"api/Organizer/login?login={login}&password={password}");
if (APIClient.Client == null)
{
throw new Exception("Íåâåðíûé ëîãèí/ïàðîëü");
}
Response.Redirect("Index");
}
[HttpGet]
public IActionResult Privacy()
{
if (APIClient.Client == null)
{
return Redirect("~Home/Enter");
}
return View(APIClient.Client);
}
[HttpPost]
public void Privacy(string login, string password, string surname, string name, string lastname, string role, string organizationName, string phone)
{
if (APIClient.Client == null)
{
throw new Exception("Âû êàê ñþäà ïîïàëè? Ñþäà âõîä òîëüêî àâòîðèçîâàííûì");
}
if (string.IsNullOrEmpty(login))
{
throw new Exception("Ââåäèòå e-mail");
}
if (string.IsNullOrEmpty(password))
{
throw new Exception("Ââåäèòå ïàðîëü");
}
if (string.IsNullOrEmpty(name))
{
throw new Exception("Ââåäèòå èìÿ");
}
if (string.IsNullOrEmpty(surname))
{
throw new Exception("Ââåäèòå ôàìèëèþ");
}
if (string.IsNullOrEmpty(organizationName))
{
throw new Exception("Ââåäèòå íàçâàíèå îðãàíèçàöèè");
}
if (string.IsNullOrEmpty(role))
{
throw new Exception("Ââåäèòå ðîëü");
}
APIClient.PostRequest("api/client/updatedata", new OrganizerBindingModel
{
Id = APIClient.Client.Id,
Name = name,
Surname = surname,
LastName = lastname,
Role = role,
OrganizationName = organizationName,
Phone = phone,
Email = login,
Password = password
});
APIClient.Client.Name = name;
APIClient.Client.Surname = surname;
APIClient.Client.LastName = lastname;
APIClient.Client.Role = role;
APIClient.Client.OrganizationName = organizationName;
APIClient.Client.Phone = phone;
APIClient.Client.Email = login;
APIClient.Client.Password = password;
Response.Redirect("Index");
}
[HttpGet]
public IActionResult Register()
{
return View();
}
[HttpPost]
public void Register(string login, string password, string surname, string name, string lastname, string role, string organizationName, string phone, string code)
{
if (string.IsNullOrEmpty(login))
{
throw new Exception("Ââåäèòå e-mail");
}
if (string.IsNullOrEmpty(password))
{
throw new Exception("Ââåäèòå ïàðîëü");
}
if (string.IsNullOrEmpty(name))
{
throw new Exception("Ââåäèòå èìÿ");
}
if (string.IsNullOrEmpty(surname))
{
throw new Exception("Ââåäèòå ôàìèëèþ");
}
if (string.IsNullOrEmpty(organizationName))
{
throw new Exception("Ââåäèòå íàçâàíèå îðãàíèçàöèè");
}
if (string.IsNullOrEmpty(role))
{
throw new Exception("Ââåäèòå ðîëü");
}
APIClient.PostRequest("api/Organizer/Register", new OrganizerBindingModel
{
Name = name,
Surname = surname,
LastName = lastname,
Role = role,
OrganizationName = organizationName,
Phone = phone,
Email = login,
Password = password
});
Response.Redirect("Enter");
return;
}
public IActionResult MyEvents()
{
if (APIClient.Client == null)
{
return Redirect("~/Home/Enter");
}
return View(APIClient.GetRequest<List<EventViewModel>>($"api/main/GetEventList?ClientId={APIClient.Client.Id}"));
}
public IActionResult CreateEvent()
{
if (APIClient.Client == null)
{
return Redirect("~/Home/Enter");
}
return View();
}
public IActionResult ViewEvent(int id)
{
if (APIClient.Client == null)
{
return Redirect("~/Home/Enter");
}
var eventDetails = APIClient.GetRequest<EventViewModel>($"api/main/GetEvent?EventId={id}");
return View(eventDetails);
}
[HttpPost]
public void CreateEvent(string name, string description, string type, string phone, string email, string address, string city, string status, int count, DateTime timestart, DateTime timeend)
{
if (APIClient.Client == null)
{
throw new Exception("Âû êàê ñþäà ïîïàëè? Ñþäà âõîä òîëüêî àâòîðèçîâàííûì");
}
APIClient.PostRequest("api/main/createevent", new EventBindingModel
{
Name = name,
Description = description,
Type = type,
ContactPhone = phone,
Address = address,
City = city,
Status = status,
ContactEmail = email,
TimeEnd = timeend.ToUniversalTime(),
TimeStart = timestart.ToUniversalTime(),
Date = DateTime.Now.ToUniversalTime(),
CountVisitors = count,
FreePlaces = count,
OrganizerId = APIClient.Client.Id
});
Response.Redirect("MyEvents");
}
public IActionResult DeleteEvent(int id)
{
// Ïðîâåðêà íà àâòîðèçàöèþ ïîëüçîâàòåëÿ
if (APIClient.Client == null)
{
return Redirect("~/Home/Enter");
}
// Âûïîëíåíèå çàïðîñà íà óäàëåíèå ìåðîïðèÿòèÿ
APIClient.PostRequest($"api/main/DeleteEvent", new EventBindingModel { Id = id });
// Ïåðåíàïðàâëåíèå îáðàòíî íà ñòðàíèöó ñ ìåðîïðèÿòèÿìè
return RedirectToAction("MyEvents");
}
public IActionResult UpdateEvent(int id)
{
if (APIClient.Client == null)
{
return Redirect("~/Home/Enter");
}
var eventDetails = APIClient.GetRequest<EventViewModel>($"api/main/GetEvent?EventId={id}");
return View(eventDetails);
}
[HttpPost]
public void UpdateEvent(int id, string name, string description, string type, string phone, string email, string address, string city, string status, int count, DateTime timestart, DateTime timeend)
{
if (APIClient.Client == null)
{
throw new Exception("Íåîáõîäèìà àâòîðèçàöèÿ");
}
APIClient.PostRequest("api/main/UpdateEvent", new EventBindingModel
{
Id = id,
Name = name,
Description = description,
Type = type,
ContactPhone = phone,
Address = address,
City = city,
Status = status,
ContactEmail = email,
TimeEnd = timeend.ToUniversalTime(),
TimeStart = timestart.ToUniversalTime(),
Date = DateTime.Now.ToUniversalTime(),
CountVisitors = count,
FreePlaces = count,
OrganizerId = APIClient.Client.Id
});
Response.Redirect("MyEvents");
}
}
}