8657 roleactivities: adds role event activities and handlers for workflows (#8658)

* Added Role Event Activities and Handlers for workflows.

* Removed and sorted using

* Added user as the Content parameter for worflow triggers when possible (UserAdded and UserRemoved role events).
This commit is contained in:
Andrea Piovanelli 2023-03-17 08:59:24 +01:00 committed by GitHub
parent babe1d665d
commit 9728831556
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 133 additions and 0 deletions

View File

@ -0,0 +1,54 @@
using System.Collections.Generic;
using Orchard.Localization;
using Orchard.Workflows.Models;
using Orchard.Workflows.Services;
namespace Orchard.Roles.Activities {
public class RoleEventActivity : Event {
public Localizer T { get; set; }
public RoleEventActivity() {
T = NullLocalizer.Instance;
}
public override bool CanStartWorkflow {
get { return true; }
}
public override string Name {
get {
return "OnRoleEvent";
}
}
public override LocalizedString Category {
get {
return T("Roles");
}
}
public override LocalizedString Description {
get {
return T("Manage Role Event");
}
}
public override IEnumerable<LocalizedString> Execute(WorkflowContext workflowContext, ActivityContext activityContext) {
string operatore = workflowContext.Tokens["Action"].ToString();
LocalizedString msg = T(operatore);
yield return msg;
}
public override IEnumerable<LocalizedString> GetPossibleOutcomes(WorkflowContext workflowContext, ActivityContext activityContext) {
return new[] {
T("Created"),
T("Removed"),
T("Renamed"),
T("UserAdded"),
T("UserRemoved"),
T("PermissionAdded"),
T("PermissionRemoved")
};
}
}
}

View File

@ -0,0 +1,77 @@
using System.Collections.Generic;
using Orchard.Workflows.Services;
namespace Orchard.Roles.Events {
public class RoleEventHandler : IRoleEventHandler {
private readonly IWorkflowManager _workflowManager;
public RoleEventHandler(IWorkflowManager workflowManager) {
_workflowManager = workflowManager;
}
public void Created(RoleCreatedContext context) {
_workflowManager.TriggerEvent("OnRoleEvent",
null,
() => new Dictionary<string, object> {
{ "Role", context.Role },
{ "Action", "RoleCreated" } });
}
public void PermissionAdded(PermissionAddedContext context) {
_workflowManager.TriggerEvent("OnRoleEvent",
null,
() => new Dictionary<string, object> {
{ "Role", context.Role },
{ "Permission", context.Permission },
{ "Action", "PermissionAdded" } });
}
public void PermissionRemoved(PermissionRemovedContext context) {
_workflowManager.TriggerEvent("OnRoleEvent",
null,
() => new Dictionary<string, object> {
{ "Role", context.Role },
{ "Permission", context.Permission },
{ "Action", "PermissionRemoved" } });
}
public void Removed(RoleRemovedContext context) {
_workflowManager.TriggerEvent("OnRoleEvent",
null,
() => new Dictionary<string, object> {
{ "Role", context.Role },
{ "Action", "RoleRemoved" } });
}
public void Renamed(RoleRenamedContext context) {
_workflowManager.TriggerEvent("OnRoleEvent",
null,
() => new Dictionary<string, object> {
{ "PreviousName", context.PreviousRoleName },
{ "NewName", context.NewRoleName },
{ "Action", "RoleRenamed" } });
}
public void UserAdded(UserAddedContext context) {
// Content of workflow event is the user
var content = context.User.ContentItem;
_workflowManager.TriggerEvent("OnRoleEvent",
content,
() => new Dictionary<string, object> {
{ "Role", context.Role },
{ "User", context.User },
{ "Action", "UserAdded" } });
}
public void UserRemoved(UserRemovedContext context) {
// Content of workflow event is the user
var content = context.User.ContentItem;
_workflowManager.TriggerEvent("OnRoleEvent",
content,
() => new Dictionary<string, object> {
{ "Role", context.Role },
{ "User", context.User },
{ "Action", "UserRemoved" } });
}
}
}

View File

@ -92,6 +92,7 @@
<Reference Include="System.Xml.Linq" />
</ItemGroup>
<ItemGroup>
<Compile Include="Activities\RoleEventActivity.cs" />
<Compile Include="Activities\UnassignRoleActivity.cs" />
<Compile Include="Activities\AssignRoleActivity.cs" />
<Compile Include="Activities\IsInRoleActivity.cs" />
@ -107,6 +108,7 @@
<Compile Include="Events\PermissionRoleContext.cs" />
<Compile Include="Events\RoleContext.cs" />
<Compile Include="Events\RoleCreatedContext.cs" />
<Compile Include="Events\RoleEventHandler.cs" />
<Compile Include="Events\RoleRemovedContext.cs" />
<Compile Include="Events\RoleRenamedContext.cs" />
<Compile Include="Events\UserAddedContext.cs" />