mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-10 15:32:37 -07:00
moved everything up a directory
This commit is contained in:
parent
448cd8d92e
commit
9a78f790a6
76 changed files with 0 additions and 0 deletions
70
RequestPlex.UI/Modules/LoginModule.cs
Normal file
70
RequestPlex.UI/Modules/LoginModule.cs
Normal file
|
@ -0,0 +1,70 @@
|
|||
using System;
|
||||
using System.Dynamic;
|
||||
|
||||
using Nancy;
|
||||
using Nancy.Authentication.Forms;
|
||||
using Nancy.Extensions;
|
||||
|
||||
using RequestPlex.Core;
|
||||
|
||||
namespace RequestPlex.UI.Modules
|
||||
{
|
||||
public class LoginModule : NancyModule
|
||||
{
|
||||
public LoginModule()
|
||||
{
|
||||
Get["/login"] = _ =>
|
||||
{
|
||||
{
|
||||
dynamic model = new ExpandoObject();
|
||||
model.Errored = Request.Query.error.HasValue;
|
||||
|
||||
return View["Login/Index", model];
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
Get["/logout"] = x => this.LogoutAndRedirect("~/");
|
||||
|
||||
Post["/login"] = x =>
|
||||
{
|
||||
|
||||
var userId = UserMapper.ValidateUser((string)this.Request.Form.Username, (string)this.Request.Form.Password);
|
||||
|
||||
if (userId == null)
|
||||
{
|
||||
return this.Context.GetRedirect("~/login?error=true&username=" + (string)this.Request.Form.Username);
|
||||
}
|
||||
DateTime? expiry = null;
|
||||
if (Request.Form.RememberMe.HasValue)
|
||||
{
|
||||
expiry = DateTime.Now.AddDays(7);
|
||||
}
|
||||
return this.LoginAndRedirect(userId.Value, expiry);
|
||||
};
|
||||
|
||||
Get["/register"] = x => {
|
||||
{
|
||||
dynamic model = new ExpandoObject();
|
||||
model.Errored = Request.Query.error.HasValue;
|
||||
|
||||
return View["Login/Register", model];
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
Post["/register"] = x =>
|
||||
{
|
||||
var exists = UserMapper.DoUsersExist();
|
||||
if (exists)
|
||||
{
|
||||
return Context.GetRedirect("~/register?error=true&username=" + (string)Request.Form.Username);
|
||||
}
|
||||
var userId = UserMapper.CreateUser(Request.Form.Username, Request.Form.Password);
|
||||
return this.LoginAndRedirect((Guid)userId);
|
||||
};
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue