This repository has been archived on 2022-11-03. You can view files and clone it, but cannot push or open issues or pull requests.
DevOpsOpenHack/support/tripviewer/web/Controllers/UserProfileController.cs

117 lines
3.2 KiB
C#
Raw Permalink Normal View History

2022-11-03 20:41:13 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net.Http;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.Options;
using Simulator.DataObjects;
using Simulator.DataStore.Stores;
using TripViewer.Utility;
namespace TripViewer.Controllers
{
public class UserProfileController : Controller
{
private readonly IConfiguration Configuration;
private readonly IHttpClientFactory _clientFactory;
public UserProfileController(IConfiguration configuration, IHttpClientFactory clientFactory)
{
Configuration = configuration;
_clientFactory = clientFactory;
}
// GET: UserProfile
public ActionResult Index()
{
//"http://akstraefikopenhackefh3.eastus.cloudapp.azure.com";
var teamendpoint = Configuration.GetValue<string>("USER_ROOT_URL");
UserStore up = new UserStore(_clientFactory, teamendpoint, Configuration);
List<User> userColl = up.GetItemsAsync().Result;
var user = userColl[0];
user.ProfilePictureUri = $"https://cdn4.iconfinder.com/data/icons/danger-soft/512/people_user_business_web_man_person_social-512.png";
if (user.TotalTrips > 0 && user.HardStops > 0)
{
var score = ((Convert.ToDouble(user.HardStops) / Convert.ToDouble(user.TotalTrips)) * 100);
if (score < 100) { user.Rating = 80; } else { user.Rating = 50; }
}
return View(userColl);
}
// GET: UserProfile/Details/5
public ActionResult Details(int id)
{
return View(id);
}
// GET: UserProfile/Create
public ActionResult Create()
{
return View();
}
// POST: UserProfile/Create
[HttpPost]
[ValidateAntiForgeryToken]
public ActionResult Create(IFormCollection collection)
{
try
{
return RedirectToAction(nameof(Index));
}
catch
{
return View();
}
}
// GET: UserProfile/Edit/5
public ActionResult Edit(int id)
{
return View(id);
}
// POST: UserProfile/Edit/5
[HttpPost]
[ValidateAntiForgeryToken]
public ActionResult Edit(int id, IFormCollection collection)
{
try
{
return RedirectToAction(nameof(Index));
}
catch
{
return View();
}
}
// GET: UserProfile/Delete/5
public ActionResult Delete(int id)
{
return View();
}
// POST: UserProfile/Delete/5
[HttpPost]
[ValidateAntiForgeryToken]
public ActionResult Delete(int id, IFormCollection collection)
{
try
{
// TODO: Add delete logic here
return RedirectToAction(nameof(Index));
}
catch
{
return View();
}
}
}
}