mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-10 15:32:37 -07:00
Added support for Managed Users #811
This commit is contained in:
parent
6048053c3c
commit
7f913de835
6 changed files with 21 additions and 12 deletions
|
@ -97,13 +97,16 @@ namespace Ombi.Services.Jobs
|
||||||
var needToUpdate = false;
|
var needToUpdate = false;
|
||||||
var usernameChanged = false;
|
var usernameChanged = false;
|
||||||
|
|
||||||
// Do we need up update any info?
|
if (!string.IsNullOrEmpty(user.Username)) // If true then this is a managed user, we do not want to update the email since Managed Users do not have email addresses
|
||||||
if (!dbUser.EmailAddress.Equals(user.Email, StringComparison.CurrentCultureIgnoreCase))
|
|
||||||
{
|
{
|
||||||
dbUser.EmailAddress = user.Email;
|
// Do we need up update any info?
|
||||||
needToUpdate = true;
|
if (!dbUser.EmailAddress.Equals(user.Email, StringComparison.CurrentCultureIgnoreCase))
|
||||||
|
{
|
||||||
|
dbUser.EmailAddress = user.Email;
|
||||||
|
needToUpdate = true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if (!dbUser.Username.Equals(user.Username, StringComparison.CurrentCultureIgnoreCase))
|
if (!dbUser.Username.Equals(user.Title, StringComparison.CurrentCultureIgnoreCase))
|
||||||
{
|
{
|
||||||
needToUpdate = true;
|
needToUpdate = true;
|
||||||
usernameChanged = true;
|
usernameChanged = true;
|
||||||
|
@ -114,8 +117,8 @@ namespace Ombi.Services.Jobs
|
||||||
if (usernameChanged)
|
if (usernameChanged)
|
||||||
{
|
{
|
||||||
// The username has changed, let's check if the username matches any local users
|
// The username has changed, let's check if the username matches any local users
|
||||||
var localUser = localUsers.FirstOrDefault(x => x.UserName.Equals(user.Username, StringComparison.CurrentCultureIgnoreCase));
|
var localUser = localUsers.FirstOrDefault(x => x.UserName.Equals(user.Title, StringComparison.CurrentCultureIgnoreCase));
|
||||||
dbUser.Username = user.Username;
|
dbUser.Username = user.Title;
|
||||||
if (localUser != null)
|
if (localUser != null)
|
||||||
{
|
{
|
||||||
// looks like we have a local user with the same name...
|
// looks like we have a local user with the same name...
|
||||||
|
@ -133,7 +136,7 @@ namespace Ombi.Services.Jobs
|
||||||
var requestsWithThisUser = requests.Where(x => x.RequestedUsers.Contains(user.Username)).ToList();
|
var requestsWithThisUser = requests.Where(x => x.RequestedUsers.Contains(user.Username)).ToList();
|
||||||
foreach (var r in requestsWithThisUser)
|
foreach (var r in requestsWithThisUser)
|
||||||
{
|
{
|
||||||
r.RequestedUsers.Remove(user.Username); // Remove old
|
r.RequestedUsers.Remove(user.Title); // Remove old
|
||||||
r.RequestedUsers.Add(dbUser.Username); // Add new
|
r.RequestedUsers.Add(dbUser.Username); // Add new
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -157,7 +160,7 @@ namespace Ombi.Services.Jobs
|
||||||
Features = UserManagementHelper.GetFeatures(userManagementSettings),
|
Features = UserManagementHelper.GetFeatures(userManagementSettings),
|
||||||
UserAlias = string.Empty,
|
UserAlias = string.Empty,
|
||||||
EmailAddress = user.Email,
|
EmailAddress = user.Email,
|
||||||
Username = user.Username,
|
Username = user.Title,
|
||||||
LoginId = Guid.NewGuid().ToString()
|
LoginId = Guid.NewGuid().ToString()
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -97,6 +97,8 @@ namespace Ombi.UI
|
||||||
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls;
|
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls;
|
||||||
ServicePointManager.ServerCertificateValidationCallback +=
|
ServicePointManager.ServerCertificateValidationCallback +=
|
||||||
(sender, certificate, chain, sslPolicyErrors) => true;
|
(sender, certificate, chain, sslPolicyErrors) => true;
|
||||||
|
|
||||||
|
ServicePointManager.Expect100Continue = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
#if DEBUG
|
#if DEBUG
|
||||||
|
|
|
@ -39,7 +39,7 @@
|
||||||
</div>
|
</div>
|
||||||
<strong>Email Address</strong>
|
<strong>Email Address</strong>
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<input id="emailAddress" type="email" ng-model="selectedUser.emailAddress" ng-disabled="selectedUser.type === 0" class="form-control form-control-custom" />
|
<input id="emailAddress" type="email" ng-model="selectedUser.emailAddress" ng-disabled="selectedUser.emailDisabled" class="form-control form-control-custom" />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<strong>Alias</strong>
|
<strong>Alias</strong>
|
||||||
|
|
|
@ -31,6 +31,7 @@
|
||||||
});
|
});
|
||||||
$scope.selectedUser = user[0];
|
$scope.selectedUser = user[0];
|
||||||
|
|
||||||
|
$scope.selectedUser.emailDisabled = $scope.selectedUser.type === 0 && $scope.selectedUser.managedUser == '';
|
||||||
openSidebar();
|
openSidebar();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -24,6 +24,7 @@ namespace Ombi.UI.Models.UserManagement
|
||||||
public DateTime LastLoggedIn { get; set; }
|
public DateTime LastLoggedIn { get; set; }
|
||||||
public List<CheckBox> Permissions { get; set; }
|
public List<CheckBox> Permissions { get; set; }
|
||||||
public List<CheckBox> Features { get; set; }
|
public List<CheckBox> Features { get; set; }
|
||||||
|
public bool ManagedUser { get; set; }
|
||||||
}
|
}
|
||||||
|
|
||||||
public class UserManagementPlexInformation
|
public class UserManagementPlexInformation
|
||||||
|
|
|
@ -231,6 +231,7 @@ namespace Ombi.UI.Modules
|
||||||
await UpdateRequests(plexDbUser.Username, plexDbUser.UserAlias, model.Alias);
|
await UpdateRequests(plexDbUser.Username, plexDbUser.UserAlias, model.Alias);
|
||||||
|
|
||||||
plexDbUser.UserAlias = model.Alias;
|
plexDbUser.UserAlias = model.Alias;
|
||||||
|
plexDbUser.EmailAddress = model.EmailAddress;
|
||||||
|
|
||||||
await PlexUsersRepository.UpdateAsync(plexDbUser);
|
await PlexUsersRepository.UpdateAsync(plexDbUser);
|
||||||
|
|
||||||
|
@ -266,7 +267,7 @@ namespace Ombi.UI.Modules
|
||||||
UserAlias = model.Alias,
|
UserAlias = model.Alias,
|
||||||
PlexUserId = plexUser.Id,
|
PlexUserId = plexUser.Id,
|
||||||
EmailAddress = plexUser.Email,
|
EmailAddress = plexUser.Email,
|
||||||
Username = plexUser.Username,
|
Username = plexUser.Title,
|
||||||
LoginId = Guid.NewGuid().ToString()
|
LoginId = Guid.NewGuid().ToString()
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -417,7 +418,7 @@ namespace Ombi.UI.Modules
|
||||||
Id = plexInfo.Id,
|
Id = plexInfo.Id,
|
||||||
PermissionsFormattedString = newUser ? "Processing..." :( permissions == 0 ? "None" : permissions.ToString()),
|
PermissionsFormattedString = newUser ? "Processing..." :( permissions == 0 ? "None" : permissions.ToString()),
|
||||||
FeaturesFormattedString = newUser ? "Processing..." : features.ToString(),
|
FeaturesFormattedString = newUser ? "Processing..." : features.ToString(),
|
||||||
Username = plexInfo.Username,
|
Username = plexInfo.Title,
|
||||||
Type = UserType.PlexUser,
|
Type = UserType.PlexUser,
|
||||||
EmailAddress = plexInfo.Email,
|
EmailAddress = plexInfo.Email,
|
||||||
Alias = dbUser?.UserAlias ?? string.Empty,
|
Alias = dbUser?.UserAlias ?? string.Empty,
|
||||||
|
@ -426,6 +427,7 @@ namespace Ombi.UI.Modules
|
||||||
{
|
{
|
||||||
Thumb = plexInfo.Thumb
|
Thumb = plexInfo.Thumb
|
||||||
},
|
},
|
||||||
|
ManagedUser = string.IsNullOrEmpty(plexInfo.Username)
|
||||||
};
|
};
|
||||||
|
|
||||||
m.Permissions.AddRange(GetPermissions(permissions));
|
m.Permissions.AddRange(GetPermissions(permissions));
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue