Skip to content
jokecamp edited this page Apr 12, 2013 · 14 revisions

ServiceStack also contains interfaces for attributes which can be executed before and after a request like request/response filters. The filter attributes make a great job when the services get bloated more and more, because you can put the new functionality probably into a filter attribute and as result the services stay clean. You can also reuse your custom filter attributes, which is another great advantage, because there would be no duplicate code in the service implementations.

For example, ServiceStack internally uses filter attributes for Authenticate and RequiredPermission to mark that the specific service needs authentication or a specific permission (see Authentication and authorization).

There are two interfaces which you have to implement in your custom attribute:

If you implement this interface, the method RequestFilter will be executed before the service gets called.

    public interface IHasRequestFilter {
        void RequestFilter(IHttpRequest req, IHttpResponse res, object requestDto);
        int Priority { get; }      // <0 Run before global filters. >=0 Run after
        IHasRequestFilter Copy();  // Optimization: fast creation of new instances
    }

If you implement this interface, the method ResponseFilter will be executed after the service was called.

    public interface IHasResponseFilter {
        void ResponseFilter(IHttpRequest req, IHttpResponse res, object responseDto);
        int Priority { get; }      // <0 Run before global filters. >=0 Run after
        IHasResponseFilter Copy();  // Optimization: fast creation of new instances
    }

It's recommended that you create separate attributes for each interface, but of course you can implement both interfaces in one attribute, too.

    public class RequestFilterAttribute : Attribute, IHasRequestFilter {
        public void RequestFilter(IHttpRequest req, IHttpResponse res, object requestDto)
        {
            //This code is executed before the service
            string userAgent = req.UserAgent;
            StatisticManager.SaveUserAgent(userAgent);
        }
    }
    public class ResponseFilterAttribute : Attribute, IHasResponseFilter {
        public void ResponseFilter(IHttpRequest req, IHttpResponse res, object responseDto)
        {
            //This code is executed after the service
            res.AddHeader("Cache-Control", "max-age=3600");
        }
    }

As you can see, you can access the IHttpRequest, IHttpResponse and the request/response DTO. So you can change the DTO, the http response (eg status code) or look for a specific header in the http request. You can also attach any data to this request via the IHttpRequest.Items dictionary that all subsequent filters and services can access.


These two attributes have to be added to a request/response DTO or to the service implementation to enable them.

    //Request DTO
    [Route("/aspect")]
    [RequestFilter]
    public class User
    {
        public string Name { get; set; }
        public string Company { get; set; }
        public int Age { get; set; }
        public int Count { get; set; }
    }
    
    //Response DTO
    [ResponseFilter]
    public class UserResponse : IHasResponseStatus
    {
        public string Car { get; set; }
        public ResponseStatus ResponseStatus { get; set; }
    }

...or if you don't want the code-first DTOs messed with attributes:

    [RequestFilter]
    [ResponseFilter]
    public class AspectService : Service
    {
        public object Get(Aspect request)
        {
            ...
        }
    }

That's all, now ServiceStack recognizes the attributes and executes them on every call!


For filter attributes auto-wiring is also supported (like in services and validators):

    public class RequestFilterAttribute : Attribute, IHasRequestFilter
    {
        //This property will be resolved by the IoC container
        public ICacheClient Cache { get; set; }
        
        public void RequestFilter(IHttpRequest req, IHttpResponse res, object requestDto)
        {
            //Access the property 'Cache' here
            
            //This code is executed before the service
            string userAgent = req.UserAgent;
            StatisticManager.SaveUserAgent(userAgent);
        }
    }

In this case the property Cache will be tried to be resolved by the IoC container.


ServiceStack also has two base classes, which implement the above interfaces, which make it easier to create contextual filters. Contextual filters are only executed on specific HTTP verbs (GET, POST...).

    public class StatisticFilterAttribute : RequestFilterAttribute
    {
        //This property will be resolved by the IoC container
        public ICacheClient Cache { get; set; }
        
        public StatisticFilterAttribute()
        {
        }

        public StatisticFilterAttribute(ApplyTo applyTo)
            : base(applyTo)
        {
        }

        public override void Execute(IHttpRequest req, IHttpResponse res, object requestDto)
        {
            //This code is executed before the service
            string userAgent = req.UserAgent;
            StatisticManager.SaveUserAgent(userAgent);
        }
    }

The base class RequestFilterAttribute has an empty constructor and a constructor which takes the ApplyTo flag. If the empty constructor is called, the method Execute will be called on every HTTP verb (ApplyTo.All), with the other constructor it will be called only on the configured HTTP verbs (eg ApplyTo.Get | ApplyTo.Post).

So you can use the attribute on your request DTO/service like that:

//Filter will be executed on every request
[StatisticFilter]
...

//Filter will be executed only on GET and POST requests
[StatisticFilter(ApplyTo.Get | ApplyTo.Post)]
...

For response filters, there's the base class ResponseFilterAttribute which works the same as RequestFilterAttribute.



  1. Getting Started
    1. Create your first webservice
    2. Your first webservice explained
    3. ServiceStack's new API Design
    4. Designing a REST-ful service with ServiceStack
    5. Example Projects Overview
  2. Reference
    1. Order of Operations
    2. The IoC container
    3. Metadata page
    4. Rest, SOAP & default endpoints
    5. SOAP support
    6. Routing
    7. Service return types
    8. Customize HTTP Responses
    9. Plugins
    10. Validation
    11. Error Handling
    12. Security
  3. Clients
    1. Overview
    2. C# client
    3. Silverlight client
    4. JavaScript client
    5. Dart Client
    6. MQ Clients
  4. Formats
    1. Overview
    2. JSON/JSV and XML
    3. ServiceStack's new HTML5 Report Format
    4. ServiceStack's new CSV Format
    5. MessagePack Format
    6. ProtoBuf Format
  5. View Engines 4. Razor & Markdown Razor
    1. Markdown Razor
  6. Hosts
    1. IIS
    2. Self-hosting
    3. Mono
  7. Advanced
    1. Configuration options
    2. Access HTTP specific features in services
    3. Logging
    4. Serialization/deserialization
    5. Request/response filters
    6. Filter attributes
    7. Concurrency Model
    8. Built-in caching options
    9. Built-in profiling
    10. Messaging and Redis
    11. Form Hijacking Prevention
    12. Auto-Mapping
    13. HTTP Utils
    14. Virtual File System
    15. Config API
    16. Physical Project Structure
    17. Modularizing Services
  8. Plugins
    1. Sessions
    2. Authentication/authorization
    3. Request logger
    4. Swagger API
  9. Tests
    1. Testing
    2. HowTo write unit/integration tests
  10. Other Languages
    1. FSharp
    2. VB.NET
  11. Use Cases
    1. Single Page Apps
    2. Azure
    3. Logging
    4. Bundling and Minification
    5. NHibernate
  12. Performance
    1. Real world performance
  13. How To
    1. Sending stream to ServiceStack
    2. Setting UserAgent in ServiceStack JsonServiceClient
    3. ServiceStack adding to allowed file extensions
    4. Default web service page how to
  14. Future
    1. Roadmap
Clone this wiki locally