|
using ServiceStack; |
|
using SitefinityWebApp.DeleteOrphanedUserProfiles.Dto; |
|
using System; |
|
using System.Collections.Generic; |
|
using System.Linq; |
|
using Telerik.Sitefinity.Data; |
|
using Telerik.Sitefinity.Security; |
|
using Telerik.Sitefinity.Security.Model; |
|
using Telerik.Sitefinity.Web.Services; |
|
|
|
namespace SitefinityWebApp.DeleteOrphanedUserProfiles.Secured |
|
{ |
|
public class DeleteOrphanedUserProfilesServiceSecured : IService |
|
{ |
|
// Any means the method accepts all verbs (e.g. GET, POST, PUT, etc.) |
|
// You can explicitly specify which verb the method supports by naming it "Get", "Post", "Delete", etc. |
|
public object Any(DeleteOrphanedUserProfilesRequest request) |
|
{ |
|
// Secure the method for authenticated backend users only |
|
ServiceUtility.RequestBackendUserAuthentication(); |
|
|
|
if (request.UserId == Guid.Empty) |
|
{ |
|
throw new ArgumentException("Invalid UserId"); |
|
} |
|
|
|
string result; |
|
var transactionName = string.Concat("DeleteUserProfileById_", Guid.NewGuid()); |
|
bool hasItemsToDelete = DeleteUserProfiles(transactionName, request.UserId); |
|
|
|
if (hasItemsToDelete) |
|
{ |
|
TransactionManager.CommitTransaction(transactionName); |
|
result = $"Orphaned Profiles for user with Id {request.UserId} have been deleted"; |
|
} |
|
else |
|
{ |
|
result = $"No orphaned profiles for user with Id {request.UserId} have been found"; |
|
} |
|
|
|
return new DeleteOrphanedUserProfilesResponse { Result = result }; |
|
} |
|
|
|
public object Any(DeleteAllOrphanedUserProfilesRequest request) |
|
{ |
|
// Secure the method for authenticated backend users only |
|
ServiceUtility.RequestBackendUserAuthentication(); |
|
|
|
var transactionName = string.Concat("DeleteAllOrphanedUserProfiles_", Guid.NewGuid()); |
|
string result; |
|
bool hasItemsToDelete = DeleteUserProfiles(transactionName, Guid.Empty, request.ProviderName); |
|
|
|
if (hasItemsToDelete) |
|
{ |
|
TransactionManager.CommitTransaction(transactionName); |
|
result = $"Orphaned Profiles for users in {request.ProviderName} membership provider have been deleted"; |
|
} |
|
else |
|
{ |
|
result = $"No orphaned profiles have been found"; |
|
} |
|
|
|
return new DeleteAllOrphanedUserProfilesResponse { Result = result }; |
|
} |
|
|
|
public bool DeleteUserProfiles(string transactionName, Guid userId, string membershipProviderName = "Default") |
|
{ |
|
|
|
var providers = UserProfileManager.ProvidersCollection; |
|
var hasItemsToDelete = false; |
|
foreach (var provider in providers) |
|
{ |
|
var manager = UserProfileManager.GetManager(provider.Name, transactionName); |
|
var profiles = new List<UserProfile>(); |
|
if (userId != Guid.Empty) |
|
{ |
|
profiles = manager.GetUserProfileLinks() |
|
.Where(l => l.UserId == userId) |
|
.Select(l => l.Profile) |
|
.ToList(); |
|
} |
|
else |
|
{ |
|
profiles = manager.GetUserProfileLinks() |
|
.Where(l => l.MembershipManagerInfo.ProviderName == membershipProviderName) |
|
.Select(l => l.Profile) |
|
.ToList(); |
|
} |
|
|
|
foreach (var profile in profiles) |
|
{ |
|
if (profile.User == null) |
|
{ |
|
manager.Delete(profile); |
|
hasItemsToDelete = true; |
|
} |
|
} |
|
} |
|
return hasItemsToDelete; |
|
} |
|
} |
|
} |