public void Delete(DeleteClientDto toDelete) { Logger.LogInformation(String.Format("Try to create delete by user {0}", toDelete != null ? toDelete.UserName : String.Empty)); Validate(toDelete); using (var context = RepositoriesFactory.CreateContext()) { var clientRepo = RepositoriesFactory.GetClientRepository(context); var userClientRepo = RepositoriesFactory.GetUserClientRepository(context); var userRepo = RepositoriesFactory.GetUserRepository(context); var clientScopeRepo = RepositoriesFactory.GetClientScopeRepository(context); var clientReturnUrlRepo = RepositoriesFactory.GetClientReturnUrlRepository(context); var myUser = userRepo.GetByUserName(toDelete.UserName); if (myUser == null || !myUser.IsValid) { throw new DaOAuthServiceException("DeleteClientInvalidUserName"); } var myClient = clientRepo.GetById(toDelete.Id); if (myClient == null) { throw new DaOAuthServiceException("DeleteClientUnknowClient"); } var myUserClient = userClientRepo .GetUserClientByClientPublicIdAndUserName(myClient.PublicId, toDelete.UserName); if (myUserClient == null || !myUserClient.Client.UserCreator.UserName.Equals(toDelete.UserName, StringComparison.OrdinalIgnoreCase)) { throw new DaOAuthServiceException("DeleteClientWrongUser"); } foreach (var cr in clientReturnUrlRepo.GetAllByClientPublicId(myClient.PublicId).ToList()) { clientReturnUrlRepo.Delete(cr); } foreach (var cs in clientScopeRepo.GetAllByClientId(myClient.Id).ToList()) { clientScopeRepo.Delete(cs); } foreach (var uc in userClientRepo.GetAllByClientId(myClient.Id).ToList()) { userClientRepo.Delete(uc); } userClientRepo.Delete(myUserClient); clientRepo.Delete(myClient); context.Commit(); } }
public void Delete(DeleteRessourceServerDto toDelete) { Logger.LogInformation(String.Format("Try to delete ressource server for user {0}", toDelete != null ? toDelete.UserName : String.Empty)); Validate(toDelete); using (var context = RepositoriesFactory.CreateContext()) { var userRepo = RepositoriesFactory.GetUserRepository(context); var rsRepo = RepositoriesFactory.GetRessourceServerRepository(context); var scopeRepo = RepositoriesFactory.GetScopeRepository(context); var clientScopeRepo = RepositoriesFactory.GetClientScopeRepository(context); var myUser = userRepo.GetByUserName(toDelete.UserName); if (myUser == null || !myUser.IsValid) { throw new DaOAuthServiceException("DeleteRessourceServerInvalidUserName"); } if (myUser.UsersRoles.FirstOrDefault(r => r.RoleId.Equals((int)ERole.ADMIN)) == null) { throw new DaOAuthServiceException("DeleteRessourceServerNonAdminUserName"); } var myRs = rsRepo.GetById(toDelete.Id); if (myRs == null) { throw new DaOAuthServiceException("DeleteRessourceServerRessourceServerNotFound"); } foreach (var s in myRs.Scopes.ToList()) { foreach (var cs in clientScopeRepo.GetAllByScopeId(s.Id).ToList()) { clientScopeRepo.Delete(cs); } scopeRepo.Delete(s); } rsRepo.Delete(myRs); context.Commit(); } }
public RessourceServerDto Update(UpdateRessourceServerDto toUpdate) { Logger.LogInformation(String.Format("Try to update ressource server for user {0}", toUpdate != null ? toUpdate.UserName : String.Empty)); Validate(toUpdate); using (var context = RepositoriesFactory.CreateContext()) { var userRepo = RepositoriesFactory.GetUserRepository(context); var rsRepo = RepositoriesFactory.GetRessourceServerRepository(context); var scopeRepo = RepositoriesFactory.GetScopeRepository(context); var clientScopeRepo = RepositoriesFactory.GetClientScopeRepository(context); var myUser = userRepo.GetByUserName(toUpdate.UserName); if (myUser == null || !myUser.IsValid) { throw new DaOAuthServiceException("UpdateRessourceServerInvalidUserName"); } if (myUser.UsersRoles.FirstOrDefault(r => r.RoleId.Equals((int)ERole.ADMIN)) == null) { throw new DaOAuthServiceException("UpdateRessourceServerNonAdminUserName"); } var myRs = rsRepo.GetById(toUpdate.Id); if (myRs == null) { throw new DaOAuthServiceException("UpdateRessourceServerRessourceServerNotFound"); } myRs.IsValid = toUpdate.IsValid; myRs.Name = toUpdate.Name; myRs.Description = toUpdate.Description; rsRepo.Update(myRs); if (toUpdate.Scopes == null) { toUpdate.Scopes = new List <UpdateRessourceServerScopesDto>(); } if (myRs.Scopes == null) { myRs.Scopes = new List <Scope>(); } IList <int> newScopesTempIds = new List <int>(); foreach (var toUpdateScope in toUpdate.Scopes) { if (toUpdateScope.IdScope.HasValue && myRs.Scopes.Select(s => s.Id).Contains(toUpdateScope.IdScope.Value)) { var myScope = myRs.Scopes.Where(s => s.Id.Equals(toUpdateScope.IdScope.Value)).First(); myScope.NiceWording = toUpdateScope.NiceWording; myScope.Wording = toUpdateScope.NiceWording.ToScopeWording(toUpdateScope.IsReadWrite); scopeRepo.Update(myScope); } else if (!toUpdateScope.IdScope.HasValue) { var toAdd = new Scope() { NiceWording = toUpdateScope.NiceWording, Wording = toUpdateScope.NiceWording.ToScopeWording(toUpdateScope.IsReadWrite), RessourceServerId = myRs.Id }; scopeRepo.Add(toAdd); newScopesTempIds.Add(toAdd.Id); } } foreach (var toDeleteScope in myRs.Scopes.Where(s => s.Id > 0 && !newScopesTempIds.Contains(s.Id))) // only existings scopes { if (!toUpdate.Scopes.Where(s => s.IdScope.HasValue).Select(s => s.IdScope.Value).Contains(toDeleteScope.Id)) { foreach (var cs in clientScopeRepo.GetAllByScopeId(toDeleteScope.Id).ToList()) { clientScopeRepo.Delete(cs); } scopeRepo.Delete(toDeleteScope); } } context.Commit(); return(myRs.ToDto()); } }
public ClientDto Update(UpdateClientDto toUpdate) { IList <ValidationResult> ExtendValidation(UpdateClientDto toValidate) { var resource = this.GetErrorStringLocalizer(); IList <ValidationResult> result = new List <ValidationResult>(); if (toValidate.ReturnUrls == null || toValidate.ReturnUrls.Count() == 0) { result.Add(new ValidationResult(resource["UpdateClientDtoDefaultReturnUrlRequired"])); } if (toValidate.ReturnUrls != null) { foreach (var ur in toValidate.ReturnUrls) { if (!Uri.TryCreate(ur, UriKind.Absolute, out var u)) { result.Add(new ValidationResult(resource["UpdateClientDtoReturnUrlIncorrect"])); } } } if (toValidate.ClientType != ClientTypeName.Confidential && toValidate.ClientType != ClientTypeName.Public) { result.Add(new ValidationResult(resource["UpdateClientDtoTypeIncorrect"])); } if (!toValidate.ClientSecret.IsMatchClientSecretPolicy()) { result.Add(new ValidationResult(resource["UpdateClientDtoClientSecretDontMatchPolicy"])); } return(result); } Logger.LogInformation(String.Format("Try to update client for user {0}", toUpdate != null ? toUpdate.UserName : String.Empty)); Validate(toUpdate, ExtendValidation); using (var context = RepositoriesFactory.CreateContext()) { var resource = this.GetErrorStringLocalizer(); var clientRepo = RepositoriesFactory.GetClientRepository(context); var userClientRepo = RepositoriesFactory.GetUserClientRepository(context); var scopeRepo = RepositoriesFactory.GetScopeRepository(context); var userRepo = RepositoriesFactory.GetUserRepository(context); var clientReturnUrlRepo = RepositoriesFactory.GetClientReturnUrlRepository(context); var clientScopeRepo = RepositoriesFactory.GetClientScopeRepository(context); var myClient = clientRepo.GetById(toUpdate.Id); if (myClient == null || !myClient.IsValid) { throw new DaOAuthServiceException(resource["UpdateClientInvalidClient"]); } var ucs = userClientRepo.GetAllByCriterias(toUpdate.UserName, toUpdate.Name, null, null, 0, 50); if (ucs != null && ucs.Count() > 0) { var myUc = ucs.First(); if (myUc.ClientId != myClient.Id) { throw new DaOAuthServiceException(resource["UpdateClientNameAlreadyUsed"]); } } var cl = clientRepo.GetByPublicId(toUpdate.PublicId); if (cl != null && cl.Id != myClient.Id) { throw new DaOAuthServiceException(resource["UpdateClientpublicIdAlreadyUsed"]); } var scopes = scopeRepo.GetAll(); if (toUpdate.ScopesIds != null) { IList <int> ids = scopes.Select(s => s.Id).ToList(); foreach (var scopeId in toUpdate.ScopesIds) { if (!ids.Contains(scopeId)) { throw new DaOAuthServiceException(resource["UpdateClientScopeDontExists"]); } } } var myUser = userRepo.GetByUserName(toUpdate.UserName); if (myUser == null || !myUser.IsValid) { throw new DaOAuthServiceException(resource["UpdateClientInvalidUser"]); } var myUserClient = userClientRepo. GetUserClientByClientPublicIdAndUserName(myClient.PublicId, toUpdate.UserName); if (myUserClient == null || !myUserClient.Client.UserCreator.UserName.Equals(toUpdate.UserName, StringComparison.OrdinalIgnoreCase)) { throw new DaOAuthServiceException(resource["UpdateClientInvalidUser"]); } // update returns urls foreach (var ru in clientReturnUrlRepo.GetAllByClientPublicId(myClient.PublicId).ToList()) { clientReturnUrlRepo.Delete(ru); } foreach (var ru in toUpdate.ReturnUrls) { clientReturnUrlRepo.Add(new ClientReturnUrl() { ClientId = myClient.Id, ReturnUrl = ru }); } // updates clients scopes foreach (var s in clientScopeRepo.GetAllByClientId(myClient.Id).ToList()) { clientScopeRepo.Delete(s); } if (toUpdate.ScopesIds != null) { foreach (var s in toUpdate.ScopesIds) { clientScopeRepo.Add(new ClientScope() { ClientId = myClient.Id, ScopeId = s }); } } // update client myClient.ClientSecret = toUpdate.ClientSecret; myClient.ClientTypeId = toUpdate.ClientType.Equals( ClientTypeName.Confidential, StringComparison.OrdinalIgnoreCase) ? (int)EClientType.CONFIDENTIAL : (int)EClientType.PUBLIC; myClient.Description = toUpdate.Description; myClient.Name = toUpdate.Name; myClient.PublicId = toUpdate.PublicId; clientRepo.Update(myClient); context.Commit(); return(myClient.ToDto(true)); } }
public int CreateClient(CreateClientDto toCreate) { IList <ValidationResult> ExtendValidation(CreateClientDto toValidate) { var resource = this.GetErrorStringLocalizer(); IList <ValidationResult> result = new List <ValidationResult>(); if (toValidate.ReturnUrls == null || toValidate.ReturnUrls.Count() == 0) { result.Add(new ValidationResult(resource["CreateClientDtoDefaultReturnUrlRequired"])); } foreach (var ur in toValidate.ReturnUrls) { if (!Uri.TryCreate(ur, UriKind.Absolute, out var u)) { result.Add(new ValidationResult(resource["CreateClientDtoReturnUrlIncorrect"])); } } if (toValidate.ClientType != ClientTypeName.Confidential && toValidate.ClientType != ClientTypeName.Public) { result.Add(new ValidationResult(resource["CreateClientDtoTypeIncorrect"])); } using (var context = RepositoriesFactory.CreateContext()) { var userRepo = RepositoriesFactory.GetUserRepository(context); var user = userRepo.GetByUserName(toValidate.UserName); if (user == null || !user.IsValid) { result.Add(new ValidationResult(String.Format(resource["CreateClientDtoInvalidUser"], toCreate.UserName))); } var userClientRepo = RepositoriesFactory.GetUserClientRepository(context); if (!String.IsNullOrEmpty(toValidate.Name) && userClientRepo.GetAllByCriteriasCount(toValidate.UserName, toValidate.Name, null, null) > 0) { result.Add(new ValidationResult(resource["CreateClientDtoNameAlreadyUse"])); } } return(result); } Logger.LogInformation(String.Format("Try to create client by user {0}", toCreate != null ? toCreate.UserName : String.Empty)); this.Validate(toCreate, ExtendValidation); using (var context = RepositoriesFactory.CreateContext()) { var returnUrlRepo = RepositoriesFactory.GetClientReturnUrlRepository(context); var clientRepo = RepositoriesFactory.GetClientRepository(context); var userClientRepo = RepositoriesFactory.GetUserClientRepository(context); var userRepo = RepositoriesFactory.GetUserRepository(context); var clientScopeRepo = RepositoriesFactory.GetClientScopeRepository(context); var user = userRepo.GetByUserName(toCreate.UserName); var client = new Client() { ClientSecret = RandomService.GenerateRandomString(16), ClientTypeId = toCreate.ClientType.Equals(ClientTypeName.Confidential, StringComparison.OrdinalIgnoreCase) ? (int)EClientType.CONFIDENTIAL : (int)EClientType.PUBLIC, CreationDate = DateTime.Now, Description = toCreate.Description, IsValid = true, Name = toCreate.Name, PublicId = RandomService.GenerateRandomString(16), UserCreatorId = user.Id }; clientRepo.Add(client); foreach (var ur in toCreate.ReturnUrls) { var clientReturnUrl = new ClientReturnUrl() { ReturnUrl = ur, ClientId = client.Id }; returnUrlRepo.Add(clientReturnUrl); } var userClient = new UserClient() { ClientId = client.Id, CreationDate = DateTime.Now, IsActif = true, RefreshToken = String.Empty, UserId = user.Id }; userClientRepo.Add(userClient); if (toCreate.ScopesIds != null) { foreach (var sId in toCreate.ScopesIds) { clientScopeRepo.Add(new ClientScope() { ClientId = client.Id, ScopeId = sId }); } } context.Commit(); return(client.Id); } }