mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-19 12:59:39 -07:00
parent
a7bc93889b
commit
1eea7927a5
1 changed files with 40 additions and 11 deletions
|
@ -3,7 +3,7 @@ using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Net;
|
using System.Net;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
using System.Web;
|
||||||
using AutoMapper;
|
using AutoMapper;
|
||||||
using Hangfire;
|
using Hangfire;
|
||||||
using Microsoft.AspNetCore.Authorization;
|
using Microsoft.AspNetCore.Authorization;
|
||||||
|
@ -621,25 +621,54 @@ namespace Ombi.Controllers
|
||||||
return defaultMessage;
|
return defaultMessage;
|
||||||
}
|
}
|
||||||
|
|
||||||
// We have the user
|
|
||||||
var token = await UserManager.GeneratePasswordResetTokenAsync(user);
|
|
||||||
// We now need to email the user with this token
|
|
||||||
var emailSettings = await EmailSettings.GetSettingsAsync();
|
|
||||||
var customizationSettings = await CustomizationSettings.GetSettingsAsync();
|
var customizationSettings = await CustomizationSettings.GetSettingsAsync();
|
||||||
var appName = (string.IsNullOrEmpty(customizationSettings.ApplicationName)
|
var appName = (string.IsNullOrEmpty(customizationSettings.ApplicationName)
|
||||||
? "Ombi"
|
? "Ombi"
|
||||||
: customizationSettings.ApplicationName);
|
: customizationSettings.ApplicationName);
|
||||||
|
|
||||||
|
var emailSettings = await EmailSettings.GetSettingsAsync();
|
||||||
|
|
||||||
customizationSettings.AddToUrl("/token?token=");
|
customizationSettings.AddToUrl("/token?token=");
|
||||||
var url = customizationSettings.ApplicationUrl;
|
var url = customizationSettings.ApplicationUrl;
|
||||||
|
|
||||||
await EmailProvider.SendAdHoc(new NotificationMessage
|
if (user.UserType == UserType.PlexUser)
|
||||||
{
|
{
|
||||||
To = user.Email,
|
await EmailProvider.SendAdHoc(new NotificationMessage
|
||||||
Subject = $"{appName} Password Reset",
|
{
|
||||||
Message = $"You recently made a request to reset your {appName} account. Please click the link below to complete the process.<br/><br/>" +
|
To = user.Email,
|
||||||
$"<a href=\"{url}{token}\"> Reset </a>"
|
Subject = $"{appName} Password Reset",
|
||||||
}, emailSettings);
|
Message =
|
||||||
|
$"You recently made a request to reset your {appName} account. Please click the link below to complete the process.<br/><br/>" +
|
||||||
|
$"<a href=\"https://www.plex.tv/sign-in/password-reset/\"> Reset </a>"
|
||||||
|
}, emailSettings);
|
||||||
|
}
|
||||||
|
else if (user.UserType == UserType.EmbyUser && user.IsEmbyConnect)
|
||||||
|
{
|
||||||
|
await EmailProvider.SendAdHoc(new NotificationMessage
|
||||||
|
{
|
||||||
|
To = user.Email,
|
||||||
|
Subject = $"{appName} Password Reset",
|
||||||
|
Message =
|
||||||
|
$"You recently made a request to reset your {appName} account.<br/><br/>" +
|
||||||
|
$"To reset your password you need to go to <a href=\"https://emby.media/community/index.php\">Emby.Media</a> and then click on your Username > Edit Profile > Email and Password"
|
||||||
|
}, emailSettings);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
// We have the user
|
||||||
|
var token = await UserManager.GeneratePasswordResetTokenAsync(user);
|
||||||
|
var encodedToken = WebUtility.UrlEncode(token);
|
||||||
|
|
||||||
|
await EmailProvider.SendAdHoc(new NotificationMessage
|
||||||
|
{
|
||||||
|
To = user.Email,
|
||||||
|
Subject = $"{appName} Password Reset",
|
||||||
|
Message =
|
||||||
|
$"You recently made a request to reset your {appName} account. Please click the link below to complete the process.<br/><br/>" +
|
||||||
|
$"<a href=\"{url}{encodedToken}\"> Reset </a>"
|
||||||
|
}, emailSettings);
|
||||||
|
}
|
||||||
|
|
||||||
return defaultMessage;
|
return defaultMessage;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue