mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.9 KiB
54 lines
1.9 KiB
// ==========================================================================
|
|
// Squidex Headless CMS
|
|
// ==========================================================================
|
|
// Copyright (c) Squidex UG (haftungsbeschraenkt)
|
|
// All rights reserved. Licensed under the MIT license.
|
|
// ==========================================================================
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using Squidex.Domain.Apps.Entities.Backup;
|
|
using Squidex.Domain.Apps.Entities.Contents.Repositories;
|
|
using Squidex.Domain.Apps.Entities.Contents.State;
|
|
using Squidex.Domain.Apps.Events.Contents;
|
|
using Squidex.Infrastructure;
|
|
using Squidex.Infrastructure.EventSourcing;
|
|
using Squidex.Infrastructure.States;
|
|
using Squidex.Infrastructure.Tasks;
|
|
|
|
namespace Squidex.Domain.Apps.Entities.Contents
|
|
{
|
|
public sealed class BackupContents : BackupHandlerWithStore
|
|
{
|
|
private readonly HashSet<Guid> contentIds = new HashSet<Guid>();
|
|
private readonly IContentRepository contentRepository;
|
|
|
|
public override string Name { get; } = "Contents";
|
|
|
|
public BackupContents(IStore<Guid> store, IContentRepository contentRepository)
|
|
: base(store)
|
|
{
|
|
Guard.NotNull(contentRepository, nameof(contentRepository));
|
|
|
|
this.contentRepository = contentRepository;
|
|
}
|
|
|
|
public override Task RestoreEventAsync(Envelope<IEvent> @event, Guid appId, BackupReader reader, RefToken actor)
|
|
{
|
|
switch (@event.Payload)
|
|
{
|
|
case ContentCreated contentCreated:
|
|
contentIds.Add(contentCreated.ContentId);
|
|
break;
|
|
}
|
|
|
|
return TaskHelper.Done;
|
|
}
|
|
|
|
public override Task RestoreAsync(Guid appId, BackupReader reader)
|
|
{
|
|
return RebuildManyAsync(contentIds, id => RebuildAsync<ContentState, ContentGrain>(id, (e, s) => s.Apply(e)));
|
|
}
|
|
}
|
|
}
|
|
|