mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2025-04-30 08:06:30 +02:00
Version 3.0.381
This commit is contained in:
parent
f963c0a219
commit
3a363acf3a
1525 changed files with 60589 additions and 125098 deletions
|
@ -0,0 +1,56 @@
|
|||
|
||||
using Serilog;
|
||||
using ShareeBike.Repository.Request;
|
||||
|
||||
namespace ShareeBike.ViewModel.Login
|
||||
{
|
||||
/// <summary> Manages the copri web view when user is logged in. </summary>
|
||||
public class ManageAccountViewModel
|
||||
{
|
||||
|
||||
/// <summary> Holds the auth cookie of the user logged in.</summary>
|
||||
private string SessionCookie { get; }
|
||||
|
||||
/// <summary> Holds the merchant id.</summary>
|
||||
private string MerchantId { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Holds the current ui two letter ISO language name.
|
||||
/// </summary>
|
||||
private string UiIsoLanguageName { get; }
|
||||
|
||||
/// <summary> Holds the name of the host.</summary>
|
||||
private string HostName { get; }
|
||||
|
||||
/// <param name="uiIsoLangugageName">Two letter ISO language name.</param>
|
||||
public ManageAccountViewModel(
|
||||
string sessionCookie,
|
||||
string merchantId,
|
||||
string uiIsoLangugageName,
|
||||
string hostName)
|
||||
{
|
||||
SessionCookie = sessionCookie;
|
||||
MerchantId = merchantId;
|
||||
UiIsoLanguageName = uiIsoLangugageName;
|
||||
HostName = hostName;
|
||||
}
|
||||
|
||||
/// <summary> Get Uri of web view managing user account. </summary>
|
||||
public string Uri
|
||||
{
|
||||
get
|
||||
{
|
||||
var sessionIdQueryElement = QueryBuilderHelper.GetSessionIdQueryElement("?", MerchantId, SessionCookie);
|
||||
|
||||
string GetUriText()
|
||||
=> !string.IsNullOrEmpty(sessionIdQueryElement)
|
||||
? $"https://{HostName}{sessionIdQueryElement}{QueryBuilderHelper.GetLanguageQueryElement("&", UiIsoLanguageName)}"
|
||||
: $"https://{HostName}";
|
||||
|
||||
Log.ForContext<ManageAccountViewModel>().Debug($"Request to open url {GetUriText()} to get privacy info.");
|
||||
|
||||
return GetUriText();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,49 @@
|
|||
using Serilog;
|
||||
using ShareeBike.Repository.Request;
|
||||
|
||||
namespace ShareeBike.ViewModel.CopriWebView
|
||||
{
|
||||
/// <summary> Manages the copri web view for password forgotton use case. </summary>
|
||||
public class PasswordForgottonViewModel
|
||||
{
|
||||
/// <summary> Holds the merchant id.</summary>
|
||||
private string MerchantId { get; }
|
||||
|
||||
/// <summary> Holds the name of the host.</summary>
|
||||
private string HostName { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Holds the current ui two letter ISO language name.
|
||||
/// </summary>
|
||||
private string UiIsoLanguageName { get; }
|
||||
|
||||
/// <param name="uiIsoLangugageName">Two letter ISO language name.</param>
|
||||
public PasswordForgottonViewModel(
|
||||
string merchantId,
|
||||
string uiIsoLangugageName,
|
||||
string hostName)
|
||||
{
|
||||
MerchantId = merchantId;
|
||||
UiIsoLanguageName = uiIsoLangugageName;
|
||||
HostName = hostName;
|
||||
}
|
||||
|
||||
/// <summary> Get Uri of web view providing password forgotton functionality. </summary>
|
||||
public string Uri
|
||||
{
|
||||
get
|
||||
{
|
||||
var sessionIdQueryElement = QueryBuilderHelper.GetSessionIdQueryElement("?", MerchantId);
|
||||
|
||||
string GetUriText()
|
||||
=> !string.IsNullOrEmpty(sessionIdQueryElement)
|
||||
? $"https://{HostName}/app/Account{sessionIdQueryElement}{QueryBuilderHelper.GetLanguageQueryElement("&", UiIsoLanguageName)}"
|
||||
: $"https://{HostName}/app/Account";
|
||||
|
||||
Log.ForContext<PasswordForgottonViewModel>().Debug($"Request to open url {GetUriText()} to get privacy info.");
|
||||
|
||||
return GetUriText();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,47 @@
|
|||
using Serilog;
|
||||
using ShareeBike.Repository.Request;
|
||||
|
||||
namespace ShareeBike.ViewModel.CopriWebView
|
||||
{
|
||||
public class RegisterPageViewModel
|
||||
{
|
||||
/// <summary> Holds the merchant id.</summary>
|
||||
private string MerchantId { get; }
|
||||
|
||||
/// <summary> Holds the name of the host.</summary>
|
||||
private string HostName { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Holds the current ui two letter ISO language name.
|
||||
/// </summary>
|
||||
private string UiIsoLanguageName { get; }
|
||||
|
||||
/// <param name="uiIsoLangugageName">Two letter ISO language name.</param>
|
||||
public RegisterPageViewModel(
|
||||
string merchantId,
|
||||
string uiIsoLangugageName,
|
||||
string hostName)
|
||||
{
|
||||
HostName = hostName;
|
||||
UiIsoLanguageName = uiIsoLangugageName;
|
||||
MerchantId = merchantId;
|
||||
}
|
||||
|
||||
/// <summary>Get Uri of web view for creating account.</summary>
|
||||
public string Uri
|
||||
{
|
||||
get
|
||||
{
|
||||
var sessionIdQueryElement = QueryBuilderHelper.GetSessionIdQueryElement("?", MerchantId);
|
||||
|
||||
string GetUriText()
|
||||
=> !string.IsNullOrEmpty(sessionIdQueryElement)
|
||||
? $"https://{HostName}/app/Account/1.%20Kundendaten{sessionIdQueryElement}{QueryBuilderHelper.GetLanguageQueryElement("&", UiIsoLanguageName)}"
|
||||
: $"https://{HostName}/app/Account/1.%20Kundendaten";
|
||||
|
||||
Log.ForContext<RegisterPageViewModel>().Debug($"Request to open url {GetUriText()} to get privacy info.");
|
||||
return GetUriText();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue