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.
78 lines
2.6 KiB
78 lines
2.6 KiB
// ==========================================================================
|
|
// AppContributors.cs
|
|
// Squidex Headless CMS
|
|
// ==========================================================================
|
|
// Copyright (c) Squidex Group
|
|
// All rights reserved.
|
|
// ==========================================================================
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using Squidex.Domain.Apps.Core.Apps;
|
|
using Squidex.Infrastructure;
|
|
|
|
namespace Squidex.Domain.Apps.Write.Apps
|
|
{
|
|
public class AppContributors
|
|
{
|
|
private readonly Dictionary<string, PermissionLevel> contributors = new Dictionary<string, PermissionLevel>();
|
|
|
|
public int Count
|
|
{
|
|
get { return contributors.Count; }
|
|
}
|
|
|
|
public void Assign(string contributorId, PermissionLevel permission)
|
|
{
|
|
string Message() => "Cannot assign contributor";
|
|
|
|
ThrowIfFound(contributorId, permission, Message);
|
|
ThrowIfNoOwner(c => c[contributorId] = permission, Message);
|
|
|
|
contributors[contributorId] = permission;
|
|
}
|
|
|
|
public void Remove(string contributorId)
|
|
{
|
|
string Message() => "Cannot remove contributor";
|
|
|
|
ThrowIfNotFound(contributorId);
|
|
ThrowIfNoOwner(c => c.Remove(contributorId), Message);
|
|
|
|
contributors.Remove(contributorId);
|
|
}
|
|
|
|
private void ThrowIfNotFound(string contributorId)
|
|
{
|
|
if (!contributors.ContainsKey(contributorId))
|
|
{
|
|
throw new DomainObjectNotFoundException(contributorId, "Contributors", typeof(AppDomainObject));
|
|
}
|
|
}
|
|
|
|
private void ThrowIfFound(string contributorId, PermissionLevel permission, Func<string> message)
|
|
{
|
|
if (contributors.TryGetValue(contributorId, out var currentPermission) && currentPermission == permission)
|
|
{
|
|
var error = new ValidationError("Contributor is already part of the app with same permissions", "ContributorId");
|
|
|
|
throw new ValidationException(message(), error);
|
|
}
|
|
}
|
|
|
|
private void ThrowIfNoOwner(Action<Dictionary<string, PermissionLevel>> change, Func<string> message)
|
|
{
|
|
var contributorsCopy = new Dictionary<string, PermissionLevel>(contributors);
|
|
|
|
change(contributorsCopy);
|
|
|
|
if (contributorsCopy.All(x => x.Value != PermissionLevel.Owner))
|
|
{
|
|
var error = new ValidationError("Contributor is the last owner", "ContributorId");
|
|
|
|
throw new ValidationException(message(), error);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|