X-Git-Url: http://git.veekun.com/zzz-floof.git/blobdiff_plain/482924ec2b85600ccb905a3ee53b1ca6df419ab6..ce1c8b25f961df0810d735d2337a790e0563f4af:/floof/model/users.py diff --git a/floof/model/users.py b/floof/model/users.py index e2afd17..af4bfba 100644 --- a/floof/model/users.py +++ b/floof/model/users.py @@ -16,6 +16,8 @@ class User(Entity): # galleries = OneToMany('GalleryWidget') pages = OneToMany('UserPage', inverse="owner") primary_page = OneToOne('UserPage', inverse="owner") + relationships = OneToMany('UserRelationship', inverse='user') + target_of_relationships = OneToMany('UserRelationship', inverse='target_user') def __unicode__(self): @@ -53,4 +55,23 @@ class UserPage(Entity): title = Field(String) visible = Field(Boolean) - galleries = OneToMany('GalleryWidget') \ No newline at end of file + galleries = OneToMany('GalleryWidget') + + +class UserRelationshipTypes(object): + IS_WATCHING = 1 + +class UserRelationship(Entity): + """Represents some sort of connection between users. + + For the moment, this means "watching". Later, it may mean friending or + ignoring. + + XXX: Watching should be made more general than this; it should have the + power of an arbitrary query per watched artist without being unintelligible + to users. + """ + + user = ManyToOne('User') + target_user = ManyToOne('User') + type = Field(Integer) # UserRelationshipTypes above