Esempio n. 1
0
        public async Task <SCIMRepresentation> Handle(PatchRepresentationCommand patchRepresentationCommand)
        {
            CheckParameter(patchRepresentationCommand.PatchRepresentation);
            var lockName = $"representation-{patchRepresentationCommand.Id}";
            await _distributedLock.WaitLock(lockName, CancellationToken.None);

            try
            {
                var existingRepresentation = await _scimRepresentationQueryRepository.FindSCIMRepresentationById(patchRepresentationCommand.Id);

                if (existingRepresentation == null)
                {
                    throw new SCIMNotFoundException(string.Format(Global.ResourceNotFound, patchRepresentationCommand.Id));
                }

                existingRepresentation.ApplyPatches(patchRepresentationCommand.PatchRepresentation.Operations, _options.IgnoreUnsupportedCanonicalValues);
                existingRepresentation.SetUpdated(DateTime.UtcNow);
                using (var transaction = await _scimRepresentationCommandRepository.StartTransaction())
                {
                    await _scimRepresentationCommandRepository.Update(existingRepresentation);

                    await transaction.Commit();
                }

                return(existingRepresentation);
            }
            finally
            {
                await _distributedLock.ReleaseLock(lockName, CancellationToken.None);
            }
        }
        public async Task <SCIMRepresentation> Handle(ReplaceRepresentationCommand replaceRepresentationCommand)
        {
            var requestedSchemas = replaceRepresentationCommand.Representation.GetSchemas();

            if (!requestedSchemas.Any())
            {
                throw new SCIMBadRequestException("invalidRequest", $"{SCIMConstants.StandardSCIMRepresentationAttributes.Schemas} attribute is missing");
            }

            if (!replaceRepresentationCommand.SchemaIds.Any(s => requestedSchemas.Contains(s)))
            {
                throw new SCIMBadRequestException("invalidRequest", $"some schemas are not recognized by the endpoint");
            }

            var schemas = await _scimSchemaQueryRepository.FindSCIMSchemaByIdentifiers(requestedSchemas);

            var unsupportedSchemas = requestedSchemas.Where(s => !schemas.Any(sh => sh.Id == s));

            if (unsupportedSchemas.Any())
            {
                throw new SCIMBadRequestException("invalidRequest", $"{string.Join(",", unsupportedSchemas)} schemas are unknown");
            }

            var existingRepresentation = await _scimRepresentationQueryRepository.FindSCIMRepresentationById(replaceRepresentationCommand.Id);

            if (existingRepresentation == null)
            {
                throw new SCIMNotFoundException("notFound", "Resource does not exist");
            }

            var updatedRepresentation = _scimRepresentationHelper.ExtractSCIMRepresentationFromJSON(replaceRepresentationCommand.Representation, schemas.ToList());

            foreach (var updatedAttribute in updatedRepresentation.Attributes)
            {
                if (updatedAttribute.SchemaAttribute.Mutability == SCIMSchemaAttributeMutabilities.IMMUTABLE)
                {
                    throw new SCIMImmutableAttributeException($"attribute {updatedAttribute.Id} is immutable");
                }

                if (updatedAttribute.SchemaAttribute.Mutability == SCIMSchemaAttributeMutabilities.WRITEONLY || updatedAttribute.SchemaAttribute.Mutability == SCIMSchemaAttributeMutabilities.READWRITE)
                {
                    var existingAttribute = existingRepresentation.Attributes.FirstOrDefault(a => a.SchemaAttribute.Id == updatedAttribute.SchemaAttribute.Id);
                    if (existingAttribute == null)
                    {
                        existingRepresentation.AddAttribute(updatedAttribute);
                    }
                    else
                    {
                        existingRepresentation.Attributes.Remove(existingAttribute);
                        existingRepresentation.AddAttribute(updatedAttribute);
                    }
                }
            }

            existingRepresentation.SetUpdated(DateTime.UtcNow);
            _scimRepresentationCommandRepository.Update(existingRepresentation);
            await _scimRepresentationCommandRepository.SaveChanges();

            return(existingRepresentation);
        }
Esempio n. 3
0
        public async Task <SCIMRepresentation> Handle(DeleteRepresentationCommand request)
        {
            var representation = await _scimRepresentationQueryRepository.FindSCIMRepresentationById(request.Id, request.ResourceType);

            if (representation == null)
            {
                throw new SCIMNotFoundException(string.Format(Global.ResourceNotFound, request.Id));
            }

            var references = await _representationReferenceSync.Sync(request.ResourceType, representation, representation, request.Location, true, true);

            using (var transaction = await _scimRepresentationCommandRepository.StartTransaction())
            {
                await _scimRepresentationCommandRepository.Delete(representation);

                foreach (var reference in references.Representations)
                {
                    await _scimRepresentationCommandRepository.Update(reference);
                }

                await transaction.Commit();
            }

            await Notify(references);

            return(representation);
        }
Esempio n. 4
0
        public async Task <SCIMRepresentation> Handle(ReplaceRepresentationCommand replaceRepresentationCommand)
        {
            var requestedSchemas = replaceRepresentationCommand.Representation.GetSchemas();

            if (!requestedSchemas.Any())
            {
                throw new SCIMBadSyntaxException(string.Format(Global.AttributeMissing, SCIMConstants.StandardSCIMRepresentationAttributes.Schemas));
            }

            var schema = await _scimSchemaQueryRepository.FindRootSCIMSchemaByResourceType(replaceRepresentationCommand.ResourceType);

            var allSchemas = new List <string> {
                schema.Id
            };

            allSchemas.AddRange(schema.SchemaExtensions.Select(s => s.Schema));
            var unsupportedSchemas = requestedSchemas.Where(s => !allSchemas.Contains(s));

            if (unsupportedSchemas.Any())
            {
                throw new SCIMBadSyntaxException(string.Format(Global.SchemasAreUnknown, string.Join(",", unsupportedSchemas)));
            }

            var schemas = await _scimSchemaQueryRepository.FindSCIMSchemaByIdentifiers(requestedSchemas);

            var existingRepresentation = await _scimRepresentationQueryRepository.FindSCIMRepresentationById(replaceRepresentationCommand.Id);

            if (existingRepresentation == null)
            {
                throw new SCIMNotFoundException(string.Format(Global.ResourceNotFound, replaceRepresentationCommand.Id));
            }

            var updatedRepresentation = _scimRepresentationHelper.ExtractSCIMRepresentationFromJSON(replaceRepresentationCommand.Representation, schemas.ToList());

            existingRepresentation.RemoveAttributes(updatedRepresentation.Attributes.Select(_ => _.SchemaAttribute.Id));
            foreach (var updatedAttribute in updatedRepresentation.Attributes)
            {
                if (updatedAttribute.SchemaAttribute.Mutability == SCIMSchemaAttributeMutabilities.IMMUTABLE)
                {
                    throw new SCIMImmutableAttributeException(string.Format(Global.AttributeImmutable, updatedAttribute.Id));
                }

                if (updatedAttribute.SchemaAttribute.Mutability == SCIMSchemaAttributeMutabilities.WRITEONLY || updatedAttribute.SchemaAttribute.Mutability == SCIMSchemaAttributeMutabilities.READWRITE)
                {
                    existingRepresentation.AddAttribute(updatedAttribute);
                }
            }

            existingRepresentation.SetUpdated(DateTime.UtcNow);
            using (var transaction = await _scimRepresentationCommandRepository.StartTransaction())
            {
                await _scimRepresentationCommandRepository.Update(existingRepresentation);

                await transaction.Commit();
            }

            return(existingRepresentation);
        }
Esempio n. 5
0
        private async Task <IActionResult> InternalGet(string id)
        {
            var representation = await _scimRepresentationQueryRepository.FindSCIMRepresentationById(id, _scimEndpoint);

            if (representation == null)
            {
                return(this.BuildError(HttpStatusCode.NotFound, $"Resource {id} not found."));
            }

            return(BuildHTTPResult(representation, HttpStatusCode.OK, true));
        }
        public async Task <bool> Handle(DeleteRepresentationCommand request)
        {
            var representation = await _scimRepresentationQueryRepository.FindSCIMRepresentationById(request.Id, request.ResourceType);

            if (representation == null)
            {
                throw new SCIMNotFoundException(null, null);
            }

            _scimRepresentationCommandRepository.Delete(representation);
            await _scimRepresentationCommandRepository.SaveChanges();

            return(true);
        }
        public async Task <IActionResult> Provision(string id)
        {
            var representation = await _scimRepresentationQueryRepository.FindSCIMRepresentationById(id);

            if (representation == null)
            {
                _logger.LogError(string.Format(Global.ResourceNotFound, id));
                return(this.BuildError(HttpStatusCode.NotFound, string.Format(Global.ResourceNotFound, id)));
            }

            var content = representation.ToResponse(string.Empty, false);
            await _busControl.Publish(new RepresentationAddedEvent(representation.Id, representation.VersionNumber, representation.ResourceType, content));

            return(new NoContentResult());
        }
Esempio n. 8
0
        private async Task <IActionResult> InternalGet(string id)
        {
            _logger.LogInformation(string.Format(Global.StartGetResource, id));
            var representation = await _scimRepresentationQueryRepository.FindSCIMRepresentationById(id, _resourceType);

            if (representation == null)
            {
                _logger.LogError(string.Format(Global.ResourceNotFound, id));
                return(this.BuildError(HttpStatusCode.NotFound, string.Format(Global.ResourceNotFound, id)));
            }

            await _attributeReferenceEnricher.Enrich(_resourceType, new List <SCIMRepresentation> {
                representation
            }, Request.GetAbsoluteUriWithVirtualPath());

            return(BuildHTTPResult(representation, HttpStatusCode.OK, true));
        }
        public async Task <SCIMRepresentation> Handle(PatchRepresentationCommand patchRepresentationCommand)
        {
            var patches = ExtractPatchOperationsFromRequest(patchRepresentationCommand.Content);
            var existingRepresentation = await _scimRepresentationQueryRepository.FindSCIMRepresentationById(patchRepresentationCommand.Id);

            if (existingRepresentation == null)
            {
                throw new SCIMNotFoundException(string.Format(Global.ResourceNotFound, patchRepresentationCommand.Id));
            }

            existingRepresentation.ApplyPatches(patches);
            existingRepresentation.SetUpdated(DateTime.UtcNow);
            _scimRepresentationCommandRepository.Update(existingRepresentation);
            await _scimRepresentationCommandRepository.SaveChanges();

            return(existingRepresentation);
        }
        public async Task <bool> Handle(DeleteRepresentationCommand request)
        {
            var representation = await _scimRepresentationQueryRepository.FindSCIMRepresentationById(request.Id, request.ResourceType);

            if (representation == null)
            {
                throw new SCIMNotFoundException(string.Format(Global.ResourceNotFound, request.Id));
            }

            using (var transaction = await _scimRepresentationCommandRepository.StartTransaction())
            {
                await _scimRepresentationCommandRepository.Delete(representation);

                await transaction.Commit();
            }

            return(true);
        }
Esempio n. 11
0
        public async Task <IActionResult> Provision(string id)
        {
            var representation = await _scimRepresentationQueryRepository.FindSCIMRepresentationById(id);

            if (representation == null)
            {
                _logger.LogError(string.Format(Global.ResourceNotFound, id));
                return(this.BuildError(HttpStatusCode.NotFound, string.Format(Global.ResourceNotFound, id)));
            }

            if (SCIMConstants.MappingScimResourceTypeToCommonType.ContainsKey(representation.ResourceType))
            {
                var content = representation.ToResponse(string.Empty, false);
                await _busControl.Publish(new RepresentationAddedEvent(representation.Id, representation.Version, SCIMConstants.MappingScimResourceTypeToCommonType[representation.ResourceType], content, _options.IncludeToken ? Request.GetToken() : string.Empty));
            }

            return(new NoContentResult());
        }
        public async Task <SCIMRepresentation> Handle(PatchRepresentationCommand patchRepresentationCommand)
        {
            CheckParameter(patchRepresentationCommand.PatchRepresentation);
            var lockName = $"representation-{patchRepresentationCommand.Id}";
            await _distributedLock.WaitLock(lockName, CancellationToken.None);

            try
            {
                var existingRepresentation = await _scimRepresentationQueryRepository.FindSCIMRepresentationById(patchRepresentationCommand.Id);

                if (existingRepresentation == null)
                {
                    throw new SCIMNotFoundException(string.Format(Global.ResourceNotFound, patchRepresentationCommand.Id));
                }

                var oldRepresentation = existingRepresentation.Clone() as SCIMRepresentation;
                var patchResult       = existingRepresentation.ApplyPatches(patchRepresentationCommand.PatchRepresentation.Operations, _options.IgnoreUnsupportedCanonicalValues);
                existingRepresentation.SetUpdated(DateTime.UtcNow);
                var references = await _representationReferenceSync.Sync(patchRepresentationCommand.ResourceType, existingRepresentation, patchResult, patchRepresentationCommand.Location);

                using (var transaction = await _scimRepresentationCommandRepository.StartTransaction())
                {
                    await _scimRepresentationCommandRepository.Update(existingRepresentation);

                    foreach (var reference in references.Representations)
                    {
                        await _scimRepresentationCommandRepository.Update(reference);
                    }

                    await transaction.Commit();
                }

                await Notify(references);

                existingRepresentation.ApplyEmptyArray();
                return(existingRepresentation);
            }
            finally
            {
                await _distributedLock.ReleaseLock(lockName, CancellationToken.None);
            }
        }
Esempio n. 13
0
        public async Task <SCIMRepresentation> Handle(PatchRepresentationCommand patchRepresentationCommand)
        {
            var patches = ExtractPatchOperationsFromRequest(patchRepresentationCommand.Content);
            var existingRepresentation = await _scimRepresentationQueryRepository.FindSCIMRepresentationById(patchRepresentationCommand.Id);

            if (existingRepresentation == null)
            {
                throw new SCIMNotFoundException(string.Format(Global.ResourceNotFound, patchRepresentationCommand.Id));
            }

            existingRepresentation.ApplyPatches(patches, _options.IgnoreUnsupportedCanonicalValues);
            existingRepresentation.SetUpdated(DateTime.UtcNow);
            using (var transaction = await _scimRepresentationCommandRepository.StartTransaction())
            {
                await _scimRepresentationCommandRepository.Update(existingRepresentation);

                await transaction.Commit();
            }

            return(existingRepresentation);
        }
Esempio n. 14
0
        public async Task <SCIMRepresentation> Handle(ReplaceRepresentationCommand replaceRepresentationCommand)
        {
            var requestedSchemas = replaceRepresentationCommand.Representation.Schemas;

            if (!requestedSchemas.Any())
            {
                throw new SCIMBadSyntaxException(string.Format(Global.AttributeMissing, StandardSCIMRepresentationAttributes.Schemas));
            }

            var schema = await _scimSchemaQueryRepository.FindRootSCIMSchemaByResourceType(replaceRepresentationCommand.ResourceType);

            var allSchemas = new List <string> {
                schema.Id
            };

            allSchemas.AddRange(schema.SchemaExtensions.Select(s => s.Schema));
            var unsupportedSchemas = requestedSchemas.Where(s => !allSchemas.Contains(s));

            if (unsupportedSchemas.Any())
            {
                throw new SCIMBadSyntaxException(string.Format(Global.SchemasAreUnknown, string.Join(",", unsupportedSchemas)));
            }

            var schemas = await _scimSchemaQueryRepository.FindSCIMSchemaByIdentifiers(requestedSchemas);

            var lockName = $"representation-{replaceRepresentationCommand.Id}";
            await _distributedLock.WaitLock(lockName, CancellationToken.None);

            try
            {
                var existingRepresentation = await _scimRepresentationQueryRepository.FindSCIMRepresentationById(replaceRepresentationCommand.Id);

                if (existingRepresentation == null)
                {
                    throw new SCIMNotFoundException(string.Format(Global.ResourceNotFound, replaceRepresentationCommand.Id));
                }

                var oldRepresentation     = (SCIMRepresentation)existingRepresentation.Clone();
                var mainSchema            = schemas.First(s => s.Id == schema.Id);
                var extensionSchemas      = schemas.Where(s => s.Id != schema.Id).ToList();
                var updatedRepresentation = _scimRepresentationHelper.ExtractSCIMRepresentationFromJSON(
                    replaceRepresentationCommand.Representation.Attributes,
                    replaceRepresentationCommand.Representation.ExternalId,
                    mainSchema,
                    extensionSchemas);
                var allExistingAttributes = existingRepresentation.HierarchicalAttributes;
                existingRepresentation.RemoveAttributesBySchemaAttrId(updatedRepresentation.FlatAttributes.Select(_ => _.SchemaAttribute.Id));
                foreach (var kvp in updatedRepresentation.HierarchicalAttributes.GroupBy(h => h.FullPath))
                {
                    var fullPath = kvp.Key;
                    var filteredExistingAttributes = allExistingAttributes.Where(a => a.FullPath == fullPath);
                    var invalidAttrs = filteredExistingAttributes.Where(fa => !kvp.Any(a => a.IsMutabilityValid(fa)));
                    if (invalidAttrs.Any())
                    {
                        throw new SCIMImmutableAttributeException(string.Format(Global.AttributeImmutable, string.Join(",", invalidAttrs.Select(a => a.FullPath))));
                    }

                    foreach (var rootAttr in kvp)
                    {
                        if (rootAttr.SchemaAttribute.Mutability == SCIMSchemaAttributeMutabilities.WRITEONLY || rootAttr.SchemaAttribute.Mutability == SCIMSchemaAttributeMutabilities.READWRITE || rootAttr.SchemaAttribute.Mutability == SCIMSchemaAttributeMutabilities.IMMUTABLE)
                        {
                            var flatAttrs = rootAttr.ToFlat();
                            foreach (var attr in flatAttrs)
                            {
                                existingRepresentation.AddAttribute(attr);
                            }
                        }
                    }
                }

                existingRepresentation.SetDisplayName(updatedRepresentation.DisplayName);
                existingRepresentation.SetExternalId(updatedRepresentation.ExternalId);
                existingRepresentation.SetUpdated(DateTime.UtcNow);
                var isReferenceProperty = await _representationReferenceSync.IsReferenceProperty(replaceRepresentationCommand.Representation.Attributes.GetKeys());

                var references = await _representationReferenceSync.Sync(replaceRepresentationCommand.ResourceType, oldRepresentation, existingRepresentation, replaceRepresentationCommand.Location, !isReferenceProperty);

                using (var transaction = await _scimRepresentationCommandRepository.StartTransaction())
                {
                    await _scimRepresentationCommandRepository.Update(existingRepresentation);

                    foreach (var reference in references.Representations)
                    {
                        await _scimRepresentationCommandRepository.Update(reference);
                    }

                    await transaction.Commit();
                }

                await Notify(references);

                existingRepresentation.ApplyEmptyArray();
                return(existingRepresentation);
            }
            finally
            {
                await _distributedLock.ReleaseLock(lockName, CancellationToken.None);
            }
        }