-
Notifications
You must be signed in to change notification settings - Fork 0
Filter attributes
ServiceStack also contains a base class 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);
}
- 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);
}
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.
These two attributes have to be added to a request/response DTO or to the service implementation to enable them.
//Request DTO
[RestService("/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 : RestServiceBase<User>
{
public override object OnGet(Aspect request)
{
...
}
}
That's all, now ServiceStack recognizes the attributes and executes them on every call!
- Why ServiceStack?
- What is a message based web service?
- Advantages of message based web services
- Why remote services should use separate DTOs
- Getting Started
- Reference
- Clients
- Formats
- View Engines 4. Razor & Markdown Razor
- Hosts
- Advanced
- Configuration options
- Access HTTP specific features in services
- Logging
- Serialization/deserialization
- Request/response filters
- Filter attributes
- Concurrency Model
- Built-in caching options
- Built-in profiling
- Messaging and Redis
- Form Hijacking Prevention
- Auto-Mapping
- HTTP Utils
- Virtual File System
- Config API
- Physical Project Structure
- Modularizing Services
- Plugins
- Tests
- Other Languages
- Use Cases
- Performance
- How To
- Future