Project-Unite/Project-Unite/Controllers/APIController.cs
2017-04-30 12:57:09 -04:00

171 lines
No EOL
5.3 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Web;
using System.Web.Mvc;
using System.Web.Script.Serialization;
using Microsoft.AspNet.Identity;
using Project_Unite.Models;
namespace Project_Unite.Controllers
{
public class APIController : Controller
{
public ActionResult GetCodepoints()
{
try
{
string token = Request.Headers["Authentication"].Remove(0, 6);
var user = ACL.GetUserFromToken(token);
if (user == null)
return new HttpStatusCodeResult(HttpStatusCode.Forbidden);
return Content(user.Codepoints.ToString());
}
catch
{
return new HttpStatusCodeResult(HttpStatusCode.BadRequest);
}
}
public ActionResult SetCodepoints(long id)
{
try
{
string token = Request.Headers["Authentication"].Remove(0, 6);
var db = new ApplicationDbContext();
var t = db.OAuthTokens.FirstOrDefault(x => x.Id == token);
var user = db.Users.FirstOrDefault(x => x.Id == t.UserId);
user.Codepoints = id;
db.SaveChanges();
return new HttpStatusCodeResult(200);
}
catch
{
return new HttpStatusCodeResult(HttpStatusCode.BadRequest);
}
}
public ActionResult GetDisplayName()
{
try
{
string token = Request.Headers["Authentication"].Remove(0, 6);
var user = ACL.GetUserFromToken(token);
if (user == null)
return new HttpStatusCodeResult(HttpStatusCode.Forbidden);
return Content(user.DisplayName);
}
catch
{
return new HttpStatusCodeResult(HttpStatusCode.BadRequest);
}
}
public ActionResult SetDisplayName(string id)
{
try
{
string token = Request.Headers["Authentication"].Remove(0, 6);
var db = new ApplicationDbContext();
var t = db.OAuthTokens.FirstOrDefault(x => x.Id == token);
var user = db.Users.FirstOrDefault(x => x.Id == t.UserId);
user.DisplayName = id;
db.SaveChanges();
return new HttpStatusCodeResult(200);
}
catch
{
return new HttpStatusCodeResult(HttpStatusCode.BadRequest);
}
}
public ActionResult GetFullName()
{
try
{
string token = Request.Headers["Authentication"].Remove(0, 6);
var user = ACL.GetUserFromToken(token);
if (user == null)
return new HttpStatusCodeResult(HttpStatusCode.Forbidden);
return Content(user.FullName);
}
catch
{
return new HttpStatusCodeResult(HttpStatusCode.BadRequest);
}
}
public ActionResult SetFullName(string id)
{
try
{
string token = Request.Headers["Authentication"].Remove(0, 6);
var db = new ApplicationDbContext();
var t = db.OAuthTokens.FirstOrDefault(x => x.Id == token);
var user = db.Users.FirstOrDefault(x => x.Id == t.UserId);
user.FullName = id;
db.SaveChanges();
return new HttpStatusCodeResult(200);
}
catch
{
return new HttpStatusCodeResult(HttpStatusCode.BadRequest);
}
}
public JavaScriptSerializer Serializer
{
get; set;
}
//I'll put those curly braces on their own line just to piss a certain smiley off.
public APIController()
{
Serializer = new JavaScriptSerializer();
}
// GET: API
public ActionResult Index()
{
return Content("Please use a valid API endpoint.");
}
public ActionResult Releases(bool showUnstable = false, bool showObsolete = false)
{
var db = new ApplicationDbContext();
var releases = db.Downloads.ToArray();
if (!showUnstable)
releases = releases.Where(x => x.IsStable == true).ToArray();
if (!showObsolete)
releases = releases.Where(x => x.Obsolete == false).ToArray();
return Content(Serializer.Serialize(releases));
}
public ActionResult Skins()
{
var db = new ApplicationDbContext();
return Content(Serializer.Serialize(db.Skins.ToArray()));
}
public ActionResult TestNotification()
{
NotificationDaemon.NotifyEveryone(User.Identity.GetUserId(), "Test notification", "This is a test of the real-time notification system.", "#");
return Content("Sent.");
}
[Authorize]
public ActionResult GetNotificationCount()
{
return Content(ACL.NotificationCountRaw(User.Identity.Name).ToString());
}
}
}