コード例 #1
0
        public async Task WriteAsync(Guid key, ContentState value, long oldVersion, long newVersion)
        {
            if (value.SchemaId.Id == Guid.Empty)
            {
                return;
            }

            var schema = await GetSchemaAsync(value.AppId.Id, value.SchemaId.Id);

            var idData = value.Data?.ToIdModel(schema.SchemaDef, true);

            var id = key.ToString();

            var document = SimpleMapper.Map(value, new MongoContentEntity
            {
                AppIdId       = value.AppId.Id,
                SchemaIdId    = value.SchemaId.Id,
                IsDeleted     = value.IsDeleted,
                DocumentId    = key.ToString(),
                DataText      = idData?.ToFullText(),
                DataByIds     = idData,
                ReferencedIds = idData?.ToReferencedIds(schema.SchemaDef),
            });

            document.Version = newVersion;
            if (document.Status == Core.Contents.Status.Published)
            {
                try
                {
                    await Collection.ReplaceOneAsync(x => x.DocumentId == id, document, Upsert);
                }
                catch (MongoWriteException ex)
                {
                    if (ex.WriteError.Category == ServerErrorCategory.DuplicateKey)
                    {
                        var existingVersion =
                            await Collection.Find(x => x.DocumentId == id).Only(x => x.DocumentId, x => x.Version)
                            .FirstOrDefaultAsync();

                        if (existingVersion != null)
                        {
                            throw new InconsistentStateException(existingVersion["vs"].AsInt64, oldVersion, ex);
                        }
                    }
                    else
                    {
                        throw;
                    }
                }
            }

            await LatestCollection.ReplaceOneAsync(x => x.DocumentId == document.DocumentId, document, Upsert);

            document.DocumentId = $"{key}_{newVersion}";

            await ArchiveCollection.ReplaceOneAsync(x => x.DocumentId == document.DocumentId, document, Upsert);
        }
コード例 #2
0
        public async Task <(ContentState Value, long Version)> ReadAsync(Guid key)
        {
            var contentEntity =
                await LatestCollection.Find(x => x.Id == key).SortByDescending(x => x.Version)
                .FirstOrDefaultAsync();

            if (contentEntity != null)
            {
                var schema = await GetSchemaAsync(contentEntity.AppIdId, contentEntity.SchemaIdId);

                contentEntity?.ParseData(schema.SchemaDef);

                return(SimpleMapper.Map(contentEntity, new ContentState()), contentEntity.Version);
            }

            return(null, EtagVersion.NotFound);
        }