X-Git-Url: http://git.veekun.com/zzz-floof.git/blobdiff_plain/40a5c182712d31d44aeacddd16a457f5ab707de7..73fe4db9e53797b3dff9d5a369cb838daebeaee4:/floof/model/users.py diff --git a/floof/model/users.py b/floof/model/users.py index 4f83a75..7601cf5 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): @@ -56,9 +58,23 @@ class UserPage(Entity): visible = Field(Boolean) galleries = OneToMany('GalleryWidget') - - - - -# class ArtRelation(Entity): -# \ No newline at end of file + + +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 +