app/soc/models/follower.py
author Lennard de Rijk <ljvderijk@gmail.com>
Tue, 25 Aug 2009 11:43:14 +0200
changeset 2795 776aae4d0499
parent 1874 35b65c11d6a1
permissions -rw-r--r--
Set new Melange version number to 0-5-20090825 in app.yaml.template.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1872
7b3ba4d80b35 Added the Follower model.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
     1
#!/usr/bin/python2.5
7b3ba4d80b35 Added the Follower model.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
     2
#
7b3ba4d80b35 Added the Follower model.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
     3
# Copyright 2009 the Melange authors.
7b3ba4d80b35 Added the Follower model.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
     4
#
7b3ba4d80b35 Added the Follower model.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
     5
# Licensed under the Apache License, Version 2.0 (the "License");
7b3ba4d80b35 Added the Follower model.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
     6
# you may not use this file except in compliance with the License.
7b3ba4d80b35 Added the Follower model.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
     7
# You may obtain a copy of the License at
7b3ba4d80b35 Added the Follower model.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
     8
#
7b3ba4d80b35 Added the Follower model.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
     9
#   http://www.apache.org/licenses/LICENSE-2.0
7b3ba4d80b35 Added the Follower model.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    10
#
7b3ba4d80b35 Added the Follower model.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    11
# Unless required by applicable law or agreed to in writing, software
7b3ba4d80b35 Added the Follower model.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    12
# distributed under the License is distributed on an "AS IS" BASIS,
7b3ba4d80b35 Added the Follower model.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    13
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
7b3ba4d80b35 Added the Follower model.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    14
# See the License for the specific language governing permissions and
7b3ba4d80b35 Added the Follower model.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    15
# limitations under the License.
7b3ba4d80b35 Added the Follower model.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    16
7b3ba4d80b35 Added the Follower model.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    17
"""This module contains the Follower Model."""
7b3ba4d80b35 Added the Follower model.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    18
7b3ba4d80b35 Added the Follower model.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    19
__authors__ = [
7b3ba4d80b35 Added the Follower model.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    20
  '"Lennard de Rijk" <ljvderijk@gmail.com>',
7b3ba4d80b35 Added the Follower model.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    21
]
7b3ba4d80b35 Added the Follower model.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    22
7b3ba4d80b35 Added the Follower model.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    23
7b3ba4d80b35 Added the Follower model.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    24
from google.appengine.ext import db
7b3ba4d80b35 Added the Follower model.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    25
7b3ba4d80b35 Added the Follower model.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    26
import soc.models.linkable
7b3ba4d80b35 Added the Follower model.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    27
7b3ba4d80b35 Added the Follower model.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    28
7b3ba4d80b35 Added the Follower model.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    29
class Follower(soc.models.linkable.Linkable):
7b3ba4d80b35 Added the Follower model.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    30
  """Details specific to a Follower.
7b3ba4d80b35 Added the Follower model.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    31
7b3ba4d80b35 Added the Follower model.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    32
    A Follower is a generic model which indicates that a User is following
7b3ba4d80b35 Added the Follower model.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    33
    some other Linkable entity in the application.
7b3ba4d80b35 Added the Follower model.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    34
7b3ba4d80b35 Added the Follower model.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    35
    Scope and scope_path should be set to the entity being followed.
7b3ba4d80b35 Added the Follower model.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    36
    The link_id should be used to indicate which user is following.
7b3ba4d80b35 Added the Follower model.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    37
7b3ba4d80b35 Added the Follower model.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    38
    If more functionality is needed like for instance when following 
7b3ba4d80b35 Added the Follower model.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    39
    either a public or private review for Student Proposals this model
7b3ba4d80b35 Added the Follower model.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    40
    should be extended. As to make it possible to create different types
7b3ba4d80b35 Added the Follower model.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    41
    of following.
7b3ba4d80b35 Added the Follower model.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    42
  """
7b3ba4d80b35 Added the Follower model.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    43
7b3ba4d80b35 Added the Follower model.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    44
  #: Required property to tie a user to the entity it is following
7b3ba4d80b35 Added the Follower model.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    45
  user = db.ReferenceProperty(reference_class=soc.models.user.User,
7b3ba4d80b35 Added the Follower model.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    46
                              required=True, collection_name='following')
7b3ba4d80b35 Added the Follower model.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    47