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.
137 lines
4.2 KiB
137 lines
4.2 KiB
// ==========================================================================
|
|
// MongoAppRepository.cs
|
|
// Squidex Headless CMS
|
|
// ==========================================================================
|
|
// Copyright (c) Squidex Group
|
|
// All rights reserved.
|
|
// ==========================================================================
|
|
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using MongoDB.Driver;
|
|
using Squidex.Events.Apps;
|
|
using Squidex.Infrastructure.CQRS;
|
|
using Squidex.Infrastructure.CQRS.Events;
|
|
using Squidex.Infrastructure.Dispatching;
|
|
using Squidex.Infrastructure.Reflection;
|
|
using Squidex.Read.Apps;
|
|
using Squidex.Read.Apps.Repositories;
|
|
using Squidex.Store.MongoDb.Utils;
|
|
using Squidex.Infrastructure;
|
|
using Squidex.Infrastructure.MongoDb;
|
|
|
|
namespace Squidex.Store.MongoDb.Apps
|
|
{
|
|
public class MongoAppRepository : MongoRepositoryBase<MongoAppEntity>, IAppRepository, ICatchEventConsumer
|
|
{
|
|
public MongoAppRepository(IMongoDatabase database)
|
|
: base(database)
|
|
{
|
|
}
|
|
|
|
protected override string CollectionName()
|
|
{
|
|
return "Projections_Apps";
|
|
}
|
|
|
|
protected override Task SetupCollectionAsync(IMongoCollection<MongoAppEntity> collection)
|
|
{
|
|
return collection.Indexes.CreateOneAsync(IndexKeys.Ascending(x => x.Name));
|
|
}
|
|
|
|
public async Task<IReadOnlyList<IAppEntity>> QueryAllAsync(string subjectId)
|
|
{
|
|
var entities =
|
|
await Collection.Find(s => s.Contributors.ContainsKey(subjectId)).ToListAsync();
|
|
|
|
return entities;
|
|
}
|
|
|
|
public async Task<IAppEntity> FindAppByNameAsync(string name)
|
|
{
|
|
var entity =
|
|
await Collection.Find(s => s.Name == name).FirstOrDefaultAsync();
|
|
|
|
return entity;
|
|
}
|
|
|
|
protected Task On(AppCreated @event, EnvelopeHeaders headers)
|
|
{
|
|
return Collection.CreateAsync(headers, a =>
|
|
{
|
|
SimpleMapper.Map(@event, a);
|
|
});
|
|
}
|
|
|
|
protected Task On(AppContributorAssigned @event, EnvelopeHeaders headers)
|
|
{
|
|
return Collection.UpdateAsync(headers, a =>
|
|
{
|
|
var contributor = a.Contributors.GetOrAddNew(@event.ContributorId);
|
|
|
|
SimpleMapper.Map(@event, contributor);
|
|
});
|
|
}
|
|
|
|
protected Task On(AppContributorRemoved @event, EnvelopeHeaders headers)
|
|
{
|
|
return Collection.UpdateAsync(headers, a =>
|
|
{
|
|
a.Contributors.Remove(@event.ContributorId);
|
|
});
|
|
}
|
|
|
|
protected Task On(AppClientAttached @event, EnvelopeHeaders headers)
|
|
{
|
|
return Collection.UpdateAsync(headers, a =>
|
|
{
|
|
a.Clients.Add(@event.Id, SimpleMapper.Map(@event, new MongoAppClientEntity()));
|
|
});
|
|
}
|
|
|
|
protected Task On(AppClientRevoked @event, EnvelopeHeaders headers)
|
|
{
|
|
return Collection.UpdateAsync(headers, a =>
|
|
{
|
|
a.Clients.Remove(@event.Id);
|
|
});
|
|
}
|
|
|
|
protected Task On(AppClientRenamed @event, EnvelopeHeaders headers)
|
|
{
|
|
return Collection.UpdateAsync(headers, a =>
|
|
{
|
|
a.Clients[@event.Id].Name = @event.Name;
|
|
});
|
|
}
|
|
|
|
protected Task On(AppLanguageAdded @event, EnvelopeHeaders headers)
|
|
{
|
|
return Collection.UpdateAsync(headers, a =>
|
|
{
|
|
a.Languages.Add(@event.Language.Iso2Code);
|
|
});
|
|
}
|
|
|
|
protected Task On(AppLanguageRemoved @event, EnvelopeHeaders headers)
|
|
{
|
|
return Collection.UpdateAsync(headers, a =>
|
|
{
|
|
a.Languages.Remove(@event.Language.Iso2Code);
|
|
});
|
|
}
|
|
|
|
protected Task On(AppMasterLanguageSet @event, EnvelopeHeaders headers)
|
|
{
|
|
return Collection.UpdateAsync(headers, a =>
|
|
{
|
|
a.MasterLanguage = @event.Language.Iso2Code;
|
|
});
|
|
}
|
|
|
|
public Task On(Envelope<IEvent> @event)
|
|
{
|
|
return this.DispatchActionAsync(@event.Payload, @event.Headers);
|
|
}
|
|
}
|
|
}
|
|
|