mirror of https://github.com/Ombi-app/Ombi
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
193 lines
6.3 KiB
193 lines
6.3 KiB
#region Copyright
|
|
// /************************************************************************
|
|
// Copyright (c) 2016 Jamie Rees
|
|
// File: BaseModule.cs
|
|
// Created By: Jamie Rees
|
|
//
|
|
// Permission is hereby granted, free of charge, to any person obtaining
|
|
// a copy of this software and associated documentation files (the
|
|
// "Software"), to deal in the Software without restriction, including
|
|
// without limitation the rights to use, copy, modify, merge, publish,
|
|
// distribute, sublicense, and/or sell copies of the Software, and to
|
|
// permit persons to whom the Software is furnished to do so, subject to
|
|
// the following conditions:
|
|
//
|
|
// The above copyright notice and this permission notice shall be
|
|
// included in all copies or substantial portions of the Software.
|
|
//
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
// ************************************************************************/
|
|
#endregion
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading;
|
|
using Nancy;
|
|
using Nancy.Security;
|
|
using NLog;
|
|
using Ombi.Core;
|
|
using Ombi.Core.SettingModels;
|
|
using Ombi.Helpers;
|
|
using Ombi.Helpers.Permissions;
|
|
using Ombi.UI.Helpers;
|
|
using ISecurityExtensions = Ombi.Core.ISecurityExtensions;
|
|
|
|
namespace Ombi.UI.Modules
|
|
{
|
|
public abstract class BaseModule : NancyModule
|
|
{
|
|
protected string BaseUrl { get; set; }
|
|
|
|
|
|
protected BaseModule(ISettingsService<PlexRequestSettings> settingsService, ISecurityExtensions security)
|
|
{
|
|
|
|
var settings = settingsService.GetSettings();
|
|
var baseUrl = settings.BaseUrl;
|
|
BaseUrl = baseUrl;
|
|
|
|
var modulePath = string.IsNullOrEmpty(baseUrl) ? string.Empty : baseUrl;
|
|
|
|
ModulePath = modulePath;
|
|
Security = security;
|
|
|
|
Before += (ctx) => SetCookie();
|
|
}
|
|
|
|
protected BaseModule(string modulePath, ISettingsService<PlexRequestSettings> settingsService, ISecurityExtensions security)
|
|
{
|
|
|
|
var settings = settingsService.GetSettings();
|
|
var baseUrl = settings.BaseUrl;
|
|
BaseUrl = baseUrl;
|
|
|
|
var settingModulePath = string.IsNullOrEmpty(baseUrl) ? modulePath : $"{baseUrl}/{modulePath}";
|
|
|
|
ModulePath = settingModulePath;
|
|
Security = security;
|
|
|
|
Before += (ctx) =>
|
|
{
|
|
SetCookie();
|
|
|
|
if (!string.IsNullOrEmpty(ctx.Request.Session["TempMessage"] as string))
|
|
{
|
|
ctx.ViewBag.TempMessage = ctx.Request.Session["TempMessage"];
|
|
ctx.ViewBag.TempType = ctx.Request.Session["TempType"];
|
|
ctx.Request.Session.DeleteAll();
|
|
}
|
|
return null;
|
|
};
|
|
}
|
|
|
|
private int _dateTimeOffset = -1;
|
|
protected int DateTimeOffset
|
|
{
|
|
get
|
|
{
|
|
if (_dateTimeOffset == -1)
|
|
{
|
|
_dateTimeOffset = (int?)Session[SessionKeys.ClientDateTimeOffsetKey] ?? new DateTimeOffset().Offset.Minutes;
|
|
}
|
|
return _dateTimeOffset;
|
|
}
|
|
}
|
|
|
|
|
|
private static Logger Log = LogManager.GetCurrentClassLogger();
|
|
private string _username;
|
|
/// <summary>
|
|
/// Returns the Username or UserAlias
|
|
/// </summary>
|
|
protected string Username
|
|
{
|
|
get
|
|
{
|
|
if (string.IsNullOrEmpty(_username))
|
|
{
|
|
try
|
|
{
|
|
var username = Security.GetUsername(User?.UserName, Session);
|
|
if (string.IsNullOrEmpty(username))
|
|
{
|
|
return string.Empty;
|
|
}
|
|
_username = username;
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
Log.Info(e);
|
|
return string.Empty;
|
|
}
|
|
}
|
|
return _username;
|
|
}
|
|
}
|
|
|
|
protected IDictionary<string, string> Cookies => Request?.Cookies;
|
|
|
|
protected bool IsAdmin
|
|
{
|
|
get
|
|
{
|
|
if (!LoggedIn)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
return Security.HasPermissions(Context?.CurrentUser, Permissions.Administrator);
|
|
}
|
|
}
|
|
|
|
protected IUserIdentity User => Context?.CurrentUser;
|
|
|
|
protected ISecurityExtensions Security { get; set; }
|
|
|
|
protected bool LoggedIn => Context?.CurrentUser != null;
|
|
|
|
private string Culture { get; set; }
|
|
protected const string CultureCookieName = "_culture";
|
|
|
|
private Response SetCookie()
|
|
{
|
|
try
|
|
{
|
|
string cultureName;
|
|
|
|
// Attempt to read the culture cookie from Request
|
|
var outCookie = string.Empty;
|
|
if (Cookies.TryGetValue(CultureCookieName, out outCookie))
|
|
{
|
|
cultureName = outCookie;
|
|
}
|
|
else
|
|
{
|
|
cultureName = Request.Headers?.AcceptLanguage?.FirstOrDefault()?.Item1;
|
|
}
|
|
|
|
// Validate culture name
|
|
cultureName = CultureHelper.GetImplementedCulture(cultureName); // This is safe
|
|
|
|
|
|
// Modify current thread's cultures
|
|
Thread.CurrentThread.CurrentCulture = new System.Globalization.CultureInfo(cultureName);
|
|
Thread.CurrentThread.CurrentUICulture = Thread.CurrentThread.CurrentCulture;
|
|
|
|
Culture = Thread.CurrentThread.CurrentCulture.Name;
|
|
}
|
|
catch (Exception)
|
|
{
|
|
// Couldn't Set the culture
|
|
}
|
|
return null;
|
|
}
|
|
|
|
}
|
|
} |