Files
event-sourcing-jambo/source/Producer/Jambo.Producer.Application/CommandHandlers/Posts/UpdateContentCommandHandler.cs
Ivan Paulovich fc74b10766 Spliting projects
2017-12-21 15:59:03 -02:00

38 lines
1.3 KiB
C#

using Jambo.Producer.Application.Commands;
using Jambo.Producer.Application.Commands.Blogs;
using Jambo.Producer.Application.Commands.Posts;
using Jambo.Domain.Model.Blogs;
using Jambo.Domain.Model.Posts;
using MediatR;
using System;
using System.Threading.Tasks;
using Jambo.Domain.ServiceBus;
namespace Jambo.Producer.Application.CommandHandlers.Posts
{
public class UpdateContentCommandHandler : IAsyncRequestHandler<UpdatePostContentCommand>
{
private readonly IPublisher bus;
private readonly IPostReadOnlyRepository postReadOnlyRepository;
public UpdateContentCommandHandler(
IPublisher bus,
IPostReadOnlyRepository postReadOnlyRepository)
{
this.bus = bus ??
throw new ArgumentNullException(nameof(bus));
this.postReadOnlyRepository = postReadOnlyRepository ??
throw new ArgumentNullException(nameof(postReadOnlyRepository));
}
public async Task Handle(UpdatePostContentCommand message)
{
Post post = await postReadOnlyRepository.GetPost(message.Id);
post.UpdateContent(Title.Create(message.Title), Content.Create(message.Content));
await bus.Publish(post.GetEvents(), message.Header);
}
}
}