2020-10-23 14:18:53 +11:00
|
|
|
|
using System;
|
2022-01-21 13:10:34 +01:00
|
|
|
|
using System.Collections.Generic;
|
2020-10-23 14:18:53 +11:00
|
|
|
|
using System.Text;
|
|
|
|
|
|
using Microsoft.AspNetCore.Http;
|
2020-04-20 12:20:47 +02:00
|
|
|
|
using Microsoft.AspNetCore.Mvc.ViewFeatures;
|
2022-01-21 13:10:34 +01:00
|
|
|
|
using Umbraco.Cms.Core.Models;
|
2021-02-18 11:06:02 +01:00
|
|
|
|
using Umbraco.Cms.Core.Security;
|
|
|
|
|
|
using Umbraco.Cms.Core.Semver;
|
|
|
|
|
|
using Umbraco.Cms.Core.Serialization;
|
2020-04-20 12:20:47 +02:00
|
|
|
|
|
2020-05-12 17:16:42 +10:00
|
|
|
|
namespace Umbraco.Extensions
|
2020-04-20 12:20:47 +02:00
|
|
|
|
{
|
|
|
|
|
|
public static class ViewDataExtensions
|
|
|
|
|
|
{
|
|
|
|
|
|
public const string TokenUmbracoPath = "UmbracoPath";
|
|
|
|
|
|
public const string TokenInstallApiBaseUrl = "InstallApiBaseUrl";
|
|
|
|
|
|
public const string TokenUmbracoBaseFolder = "UmbracoBaseFolder";
|
2020-05-05 14:28:01 +02:00
|
|
|
|
public const string TokenUmbracoVersion = "UmbracoVersion";
|
2020-04-20 12:20:47 +02:00
|
|
|
|
public const string TokenExternalSignInError = "ExternalSignInError";
|
|
|
|
|
|
public const string TokenPasswordResetCode = "PasswordResetCode";
|
2022-01-21 13:10:34 +01:00
|
|
|
|
public const string TokenTwoFactorRequired = "TwoFactorRequired";
|
2020-04-20 12:20:47 +02:00
|
|
|
|
|
2020-05-21 15:43:33 +10:00
|
|
|
|
public static bool FromTempData(this ViewDataDictionary viewData, ITempDataDictionary tempData, string token)
|
2020-04-20 12:20:47 +02:00
|
|
|
|
{
|
|
|
|
|
|
if (tempData[token] == null) return false;
|
|
|
|
|
|
viewData[token] = tempData[token];
|
|
|
|
|
|
return true;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-10-23 14:18:53 +11:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Copies data from a request cookie to view data and then clears the cookie in the response
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="viewData"></param>
|
|
|
|
|
|
/// <param name="httpContext"></param>
|
|
|
|
|
|
/// <param name="cookieName"></param>
|
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
|
/// <remarks>
|
|
|
|
|
|
/// <para>
|
|
|
|
|
|
/// This is similar to TempData but in some cases we cannot use TempData which relies on the temp data provider and session.
|
|
|
|
|
|
/// The cookie value can either be a simple string value
|
|
|
|
|
|
/// </para>
|
|
|
|
|
|
/// </remarks>
|
|
|
|
|
|
public static bool FromBase64CookieData<T>(this ViewDataDictionary viewData, HttpContext httpContext, string cookieName, IJsonSerializer serializer)
|
|
|
|
|
|
{
|
|
|
|
|
|
var hasCookie = httpContext.Request.Cookies.ContainsKey(cookieName);
|
|
|
|
|
|
if (!hasCookie) return false;
|
|
|
|
|
|
|
|
|
|
|
|
// get the cookie value
|
|
|
|
|
|
if (!httpContext.Request.Cookies.TryGetValue(cookieName, out var cookieVal))
|
|
|
|
|
|
{
|
|
|
|
|
|
return false;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// ensure the cookie is expired (must be done after reading the value)
|
|
|
|
|
|
httpContext.Response.Cookies.Delete(cookieName);
|
|
|
|
|
|
|
|
|
|
|
|
if (cookieVal.IsNullOrWhiteSpace())
|
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
|
{
|
|
|
|
|
|
var decoded = Encoding.UTF8.GetString(Convert.FromBase64String(System.Net.WebUtility.UrlDecode(cookieVal)));
|
|
|
|
|
|
// deserialize to T and store in viewdata
|
|
|
|
|
|
viewData[cookieName] = serializer.Deserialize<T>(decoded);
|
|
|
|
|
|
return true;
|
|
|
|
|
|
}
|
|
|
|
|
|
catch (Exception)
|
|
|
|
|
|
{
|
|
|
|
|
|
return false;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-04-20 12:20:47 +02:00
|
|
|
|
public static string GetUmbracoPath(this ViewDataDictionary viewData)
|
|
|
|
|
|
{
|
|
|
|
|
|
return (string)viewData[TokenUmbracoPath];
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public static void SetUmbracoPath(this ViewDataDictionary viewData, string value)
|
|
|
|
|
|
{
|
|
|
|
|
|
viewData[TokenUmbracoPath] = value;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public static string GetInstallApiBaseUrl(this ViewDataDictionary viewData)
|
|
|
|
|
|
{
|
|
|
|
|
|
return (string)viewData[TokenInstallApiBaseUrl];
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public static void SetInstallApiBaseUrl(this ViewDataDictionary viewData, string value)
|
|
|
|
|
|
{
|
|
|
|
|
|
viewData[TokenInstallApiBaseUrl] = value;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public static string GetUmbracoBaseFolder(this ViewDataDictionary viewData)
|
|
|
|
|
|
{
|
|
|
|
|
|
return (string)viewData[TokenUmbracoBaseFolder];
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public static void SetUmbracoBaseFolder(this ViewDataDictionary viewData, string value)
|
|
|
|
|
|
{
|
|
|
|
|
|
viewData[TokenUmbracoBaseFolder] = value;
|
|
|
|
|
|
}
|
2020-05-05 14:28:01 +02:00
|
|
|
|
public static void SetUmbracoVersion(this ViewDataDictionary viewData, SemVersion version)
|
|
|
|
|
|
{
|
|
|
|
|
|
viewData[TokenUmbracoVersion] = version;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public static SemVersion GetUmbracoVersion(this ViewDataDictionary viewData)
|
|
|
|
|
|
{
|
|
|
|
|
|
return (SemVersion) viewData[TokenUmbracoVersion];
|
|
|
|
|
|
}
|
2020-04-20 12:20:47 +02:00
|
|
|
|
|
2020-10-23 14:18:53 +11:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Used by the back office login screen to get any registered external login provider errors
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="viewData"></param>
|
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
|
public static BackOfficeExternalLoginProviderErrors GetExternalSignInProviderErrors(this ViewDataDictionary viewData)
|
2020-04-20 12:20:47 +02:00
|
|
|
|
{
|
2020-10-23 14:18:53 +11:00
|
|
|
|
return (BackOfficeExternalLoginProviderErrors)viewData[TokenExternalSignInError];
|
2020-04-20 12:20:47 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
2020-10-23 14:18:53 +11:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Used by the back office controller to register any external login provider errors
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="viewData"></param>
|
|
|
|
|
|
/// <param name="errors"></param>
|
|
|
|
|
|
public static void SetExternalSignInProviderErrors(this ViewDataDictionary viewData, BackOfficeExternalLoginProviderErrors errors)
|
2020-04-20 12:20:47 +02:00
|
|
|
|
{
|
2020-10-23 14:18:53 +11:00
|
|
|
|
viewData[TokenExternalSignInError] = errors;
|
2020-04-20 12:20:47 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public static string GetPasswordResetCode(this ViewDataDictionary viewData)
|
|
|
|
|
|
{
|
|
|
|
|
|
return (string)viewData[TokenPasswordResetCode];
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public static void SetPasswordResetCode(this ViewDataDictionary viewData, string value)
|
|
|
|
|
|
{
|
|
|
|
|
|
viewData[TokenPasswordResetCode] = value;
|
|
|
|
|
|
}
|
2022-01-21 13:10:34 +01:00
|
|
|
|
|
|
|
|
|
|
public static void SetTwoFactorProviderNames(this ViewDataDictionary viewData, IEnumerable<string> providerNames)
|
|
|
|
|
|
{
|
|
|
|
|
|
viewData[TokenTwoFactorRequired] = providerNames;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public static bool TryGetTwoFactorProviderNames(this ViewDataDictionary viewData, out IEnumerable<string> providerNames)
|
|
|
|
|
|
{
|
|
|
|
|
|
providerNames = viewData[TokenTwoFactorRequired] as IEnumerable<string>;
|
|
|
|
|
|
return providerNames is not null;
|
|
|
|
|
|
}
|
2020-04-20 12:20:47 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|