New: Require password confirmation when setting or changing password
This commit is contained in:
parent
d95660d3c7
commit
b248163df5
|
@ -34,7 +34,8 @@ function AuthenticationRequiredModalContent(props) {
|
||||||
authenticationMethod,
|
authenticationMethod,
|
||||||
authenticationRequired,
|
authenticationRequired,
|
||||||
username,
|
username,
|
||||||
password
|
password,
|
||||||
|
passwordConfirmation
|
||||||
} = settings;
|
} = settings;
|
||||||
|
|
||||||
const authenticationEnabled = authenticationMethod && authenticationMethod.value !== 'none';
|
const authenticationEnabled = authenticationMethod && authenticationMethod.value !== 'none';
|
||||||
|
@ -120,6 +121,18 @@ function AuthenticationRequiredModalContent(props) {
|
||||||
{...password}
|
{...password}
|
||||||
/>
|
/>
|
||||||
</FormGroup>
|
</FormGroup>
|
||||||
|
|
||||||
|
<FormGroup>
|
||||||
|
<FormLabel>{translate('PasswordConfirmation')}</FormLabel>
|
||||||
|
|
||||||
|
<FormInputGroup
|
||||||
|
type={inputTypes.PASSWORD}
|
||||||
|
name="passwordConfirmation"
|
||||||
|
onChange={onInputChange}
|
||||||
|
helpTextWarning={passwordConfirmation?.value ? undefined : translate('AuthenticationRequiredPasswordConfirmationHelpTextWarning')}
|
||||||
|
{...passwordConfirmation}
|
||||||
|
/>
|
||||||
|
</FormGroup>
|
||||||
</div> :
|
</div> :
|
||||||
null
|
null
|
||||||
}
|
}
|
||||||
|
|
|
@ -124,6 +124,7 @@ class SecuritySettings extends Component {
|
||||||
authenticationRequired,
|
authenticationRequired,
|
||||||
username,
|
username,
|
||||||
password,
|
password,
|
||||||
|
passwordConfirmation,
|
||||||
apiKey,
|
apiKey,
|
||||||
certificateValidation
|
certificateValidation
|
||||||
} = settings;
|
} = settings;
|
||||||
|
@ -193,6 +194,21 @@ class SecuritySettings extends Component {
|
||||||
null
|
null
|
||||||
}
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
authenticationEnabled ?
|
||||||
|
<FormGroup>
|
||||||
|
<FormLabel>{translate('PasswordConfirmation')}</FormLabel>
|
||||||
|
|
||||||
|
<FormInputGroup
|
||||||
|
type={inputTypes.PASSWORD}
|
||||||
|
name="passwordConfirmation"
|
||||||
|
onChange={onInputChange}
|
||||||
|
{...passwordConfirmation}
|
||||||
|
/>
|
||||||
|
</FormGroup> :
|
||||||
|
null
|
||||||
|
}
|
||||||
|
|
||||||
<FormGroup>
|
<FormGroup>
|
||||||
<FormLabel>{translate('ApiKey')}</FormLabel>
|
<FormLabel>{translate('ApiKey')}</FormLabel>
|
||||||
|
|
||||||
|
|
|
@ -114,6 +114,7 @@
|
||||||
"AuthenticationRequired": "Authentication Required",
|
"AuthenticationRequired": "Authentication Required",
|
||||||
"AuthenticationRequiredHelpText": "Change which requests authentication is required for. Do not change unless you understand the risks.",
|
"AuthenticationRequiredHelpText": "Change which requests authentication is required for. Do not change unless you understand the risks.",
|
||||||
"AuthenticationRequiredPasswordHelpTextWarning": "Enter a new password",
|
"AuthenticationRequiredPasswordHelpTextWarning": "Enter a new password",
|
||||||
|
"AuthenticationRequiredPasswordConfirmationHelpTextWarning": "Confirm new password",
|
||||||
"AuthenticationRequiredUsernameHelpTextWarning": "Enter a new username",
|
"AuthenticationRequiredUsernameHelpTextWarning": "Enter a new username",
|
||||||
"AuthenticationRequiredWarning": "To prevent remote access without authentication, {appName} now requires authentication to be enabled. You can optionally disable authentication from local addresses.",
|
"AuthenticationRequiredWarning": "To prevent remote access without authentication, {appName} now requires authentication to be enabled. You can optionally disable authentication from local addresses.",
|
||||||
"AutoAdd": "Auto Add",
|
"AutoAdd": "Auto Add",
|
||||||
|
@ -1137,6 +1138,7 @@
|
||||||
"ParseModalUnableToParse": "Unable to parse the provided title, please try again.",
|
"ParseModalUnableToParse": "Unable to parse the provided title, please try again.",
|
||||||
"PartialSeason": "Partial Season",
|
"PartialSeason": "Partial Season",
|
||||||
"Password": "Password",
|
"Password": "Password",
|
||||||
|
"PasswordConfirmation": "Password Confirmation",
|
||||||
"Path": "Path",
|
"Path": "Path",
|
||||||
"Paused": "Paused",
|
"Paused": "Paused",
|
||||||
"Peers": "Peers",
|
"Peers": "Peers",
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
using FluentValidation.Validators;
|
using FluentValidation.Validators;
|
||||||
using NzbDrone.Common.Disk;
|
using NzbDrone.Common.Disk;
|
||||||
|
|
||||||
namespace NzbDrone.Core.Validation.Paths
|
namespace NzbDrone.Core.Validation.Paths
|
||||||
|
|
|
@ -47,6 +47,9 @@ namespace Sonarr.Api.V3.Config
|
||||||
SharedValidator.RuleFor(c => c.Password).NotEmpty().When(c => c.AuthenticationMethod == AuthenticationType.Basic ||
|
SharedValidator.RuleFor(c => c.Password).NotEmpty().When(c => c.AuthenticationMethod == AuthenticationType.Basic ||
|
||||||
c.AuthenticationMethod == AuthenticationType.Forms);
|
c.AuthenticationMethod == AuthenticationType.Forms);
|
||||||
|
|
||||||
|
SharedValidator.RuleFor(c => c.PasswordConfirmation)
|
||||||
|
.Must((resource, p) => IsMatchingPassword(resource)).WithMessage("Must match Password");
|
||||||
|
|
||||||
SharedValidator.RuleFor(c => c.SslPort).ValidPort().When(c => c.EnableSsl);
|
SharedValidator.RuleFor(c => c.SslPort).ValidPort().When(c => c.EnableSsl);
|
||||||
SharedValidator.RuleFor(c => c.SslPort).NotEqual(c => c.Port).When(c => c.EnableSsl);
|
SharedValidator.RuleFor(c => c.SslPort).NotEqual(c => c.Port).When(c => c.EnableSsl);
|
||||||
|
|
||||||
|
@ -81,6 +84,23 @@ namespace Sonarr.Api.V3.Config
|
||||||
return cert != null;
|
return cert != null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private bool IsMatchingPassword(HostConfigResource resource)
|
||||||
|
{
|
||||||
|
var user = _userService.FindUser();
|
||||||
|
|
||||||
|
if (user != null && user.Password == resource.Password)
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (resource.Password == resource.PasswordConfirmation)
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
protected override HostConfigResource GetResourceById(int id)
|
protected override HostConfigResource GetResourceById(int id)
|
||||||
{
|
{
|
||||||
return GetHostConfig();
|
return GetHostConfig();
|
||||||
|
@ -93,11 +113,10 @@ namespace Sonarr.Api.V3.Config
|
||||||
resource.Id = 1;
|
resource.Id = 1;
|
||||||
|
|
||||||
var user = _userService.FindUser();
|
var user = _userService.FindUser();
|
||||||
if (user != null)
|
|
||||||
{
|
resource.Username = user?.Username ?? string.Empty;
|
||||||
resource.Username = user.Username;
|
resource.Password = user?.Password ?? string.Empty;
|
||||||
resource.Password = user.Password;
|
resource.PasswordConfirmation = string.Empty;
|
||||||
}
|
|
||||||
|
|
||||||
return resource;
|
return resource;
|
||||||
}
|
}
|
||||||
|
|
|
@ -19,6 +19,7 @@ namespace Sonarr.Api.V3.Config
|
||||||
public bool AnalyticsEnabled { get; set; }
|
public bool AnalyticsEnabled { get; set; }
|
||||||
public string Username { get; set; }
|
public string Username { get; set; }
|
||||||
public string Password { get; set; }
|
public string Password { get; set; }
|
||||||
|
public string PasswordConfirmation { get; set; }
|
||||||
public string LogLevel { get; set; }
|
public string LogLevel { get; set; }
|
||||||
public string ConsoleLogLevel { get; set; }
|
public string ConsoleLogLevel { get; set; }
|
||||||
public string Branch { get; set; }
|
public string Branch { get; set; }
|
||||||
|
|
Loading…
Reference in New Issue