How do you implement Roles and Security in your C# Domain Driven Designs? We have some debate raging on wether it should be implemented by the calling application (ASP.NET MVC) or in the Domain Model itself (model entities and services). Some argue that it should be in the web site itself since that's where the authentication already exists. But that means you have to re-implement security every time you integrate with the core business systems.
As an example: an Admin should be able to do pretty much any action in the system such as edit and deleting records (ie they can delete a user's order). A User on the other hand should only be able to edit and delete their own records (ie they can add/remove items from their shopping cart).
BTW Here is a nice thesis on the topic which covers 7 different scenarios regarding DDD & Security:
Security in Domain-Driven Design
- Chapter 4 Security service design scenarios
- 4.1 Scenario 1: Security service as regular service
- 4.2 Scenario 2: Security embedded in the UI
- 4.3 Scenario 3: Security service encapsulating the domain model
- 4.4 Scenario 4: Security service as a gateway for the UI
- 4.5 Scenario 5: Security service as an adapter for the UI
- 4.6 Scenario 6: Security service integrated by AOP with adapters
- 4.7 Scenario 7: Security service integrated with AOP
I would personally lean towards AOP using PostSharp but not having do much with it before I'm hesitant to take the leap.