Structr.Operations allows you to introduce some filtering in operation processing pipeline. This could be helpful if some verification or logging is needed. Filtering setup is rather simple, just register your filter as a service and everything is done.
Filter implies implementing IOperationFilter<TOperation, TResult> interface and registering corresponding service in DI container:
Filter gets operation-object itself, cancellation token and supplied with delegate representing next filter to be applied or operation handler itself. So it should be called in some place in code to not to brake processing chain. Or if you need it could be made conditional. Example of such filter is provided below:
With filtering pipeline u could implement you custom post- and pre- processors for any operations you need.
Special filters
As you can see in example before we've used some ICommand<TResult> interface. This could be a suitable solution to separate your data-changing and not-data-changing operations i.e. commands and queries respectively. Suggested interfaces you could create in your App are:
Using them you can create filters separately for queries and separately for commands:
// This one only for commands.publicclassCommandValidationFilter<TCommand,TResult> :IOperationFilter<TCommand,TResult> whereTCommand:ICommand<TResult>{}// This is for queries.publicclassQueryLoggingFilter<TQuery,TResult> :IOperationFilter<TQuery,TResult> whereTQuery:IQuery<TResult>{}// And this one would work for both operations types.publicclassUniversalFilter<TOperation,TResult> :IOperationFilter<TOperation,TResult> whereTOperation:IOperation<TResult>{}