Trying to adhere to DRY principles, would the following be a valid way of having multiple objects share a common role relationship table.
If we have the following types (created purely for this example):
class User
{
...
}
class Article
{
...
}
Both of these objects need to have roles defined against them. As such, Role is not unique to any of these objects.
My idea was to have Repositories perform CRUD operations on these objects, but also to let Role have it's own Repository perhaps accessed via a service?
Repositories would feed out UserDTO and ArticleDTO to a Builder class which would produce the necessary Domain objects. In this case:
class User
{
...
IList<Role> Roles { get; set; }
//Other Domain objs/logic
}
class Article
{
...
IList<Role> Roles { get; set; }
//Other Domain objs/logic
}
Role object would have a Role table:
ID Name
And a relationship table:
itemId roleId itemType
the role builder/service used to attach roles to the domain object could perhaps look something like this:
static class RoleBuilder
{
IEnumerable<Role> Fetch(int id, typeof(obj))
{
//fetch from RoleRep
}
bool Save(IEnumerable<Role>, int id, typeof(obj))
{
//save through role rep
}
}
Is there anything inherently wrong with this idea? e.g:
public static UserBuilder
{
public User FetchUser(int id)
{
//map userDTO to user
var user = map...
//populate roles
if(user != null)
user.Roles = RoleBuilder.Fetch(id, typeof(user));
}
}
The alternative is to have User and Article manage their own Role manipulation and perhaps have multiple role relationship tables e.g. user_has_roles, article_has_roles
The first solution would allow roles to be modified by the end user too (renamed, new roles added etc) without corrupting the domain model whereas in the second solution, i'm not sure how to do that cleanly (update them through user, through article?)