app/soc/models/work.py
author Sverre Rabbelier <srabbelier@gmail.com>
Mon, 03 Nov 2008 19:47:02 +0000
changeset 439 0658c3c9a9dc
parent 410 2af7f84f4fc7
child 477 8a8b1bd035c4
permissions -rw-r--r--
Minor fixes needed for generic key name We no longer try to retreive an entity when there are unset fields. This sort of makes 'getIfFields' obsolete, since we check if fields now anyway. This is needed because getKeyFieldsFromDict expects the fields to be set. Also a minor fix in a Django template so that the generic 'edit' page has a working delete button again.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
16
300f7606e100 Initial definition of the Work Model.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
     1
#!/usr/bin/python2.5
300f7606e100 Initial definition of the Work Model.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
     2
#
300f7606e100 Initial definition of the Work Model.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
     3
# Copyright 2008 the Melange authors.
300f7606e100 Initial definition of the Work Model.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
     4
#
300f7606e100 Initial definition of the Work Model.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
     5
# Licensed under the Apache License, Version 2.0 (the "License");
300f7606e100 Initial definition of the Work Model.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
     6
# you may not use this file except in compliance with the License.
300f7606e100 Initial definition of the Work Model.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
     7
# You may obtain a copy of the License at
300f7606e100 Initial definition of the Work Model.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
     8
#
300f7606e100 Initial definition of the Work Model.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
     9
#   http://www.apache.org/licenses/LICENSE-2.0
300f7606e100 Initial definition of the Work Model.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    10
#
300f7606e100 Initial definition of the Work Model.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    11
# Unless required by applicable law or agreed to in writing, software
300f7606e100 Initial definition of the Work Model.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    12
# distributed under the License is distributed on an "AS IS" BASIS,
300f7606e100 Initial definition of the Work Model.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    13
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
300f7606e100 Initial definition of the Work Model.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    14
# See the License for the specific language governing permissions and
300f7606e100 Initial definition of the Work Model.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    15
# limitations under the License.
300f7606e100 Initial definition of the Work Model.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    16
300f7606e100 Initial definition of the Work Model.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    17
"""This module contains the Work Model."""
300f7606e100 Initial definition of the Work Model.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    18
300f7606e100 Initial definition of the Work Model.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    19
__authors__ = [
300f7606e100 Initial definition of the Work Model.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    20
  '"Todd Larsen" <tlarsen@google.com>',
300f7606e100 Initial definition of the Work Model.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    21
  '"Sverre Rabbelier" <sverre@rabbelier.nl>',
300f7606e100 Initial definition of the Work Model.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    22
]
300f7606e100 Initial definition of the Work Model.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    23
342
72482d8e5b34 Remove the proposed WorksAuthors many:many relation and promote the "founder"
Todd Larsen <tlarsen@google.com>
parents: 329
diff changeset
    24
72482d8e5b34 Remove the proposed WorksAuthors many:many relation and promote the "founder"
Todd Larsen <tlarsen@google.com>
parents: 329
diff changeset
    25
import polymodel
72482d8e5b34 Remove the proposed WorksAuthors many:many relation and promote the "founder"
Todd Larsen <tlarsen@google.com>
parents: 329
diff changeset
    26
16
300f7606e100 Initial definition of the Work Model.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    27
from google.appengine.ext import db
300f7606e100 Initial definition of the Work Model.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    28
206
832335761384 Make use of PolyModel for Works, Documents, etc. Add some (but not all) of
Todd Larsen <tlarsen@google.com>
parents: 181
diff changeset
    29
from django.utils.translation import ugettext_lazy
16
300f7606e100 Initial definition of the Work Model.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    30
342
72482d8e5b34 Remove the proposed WorksAuthors many:many relation and promote the "founder"
Todd Larsen <tlarsen@google.com>
parents: 329
diff changeset
    31
import soc.models.user
16
300f7606e100 Initial definition of the Work Model.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    32
300f7606e100 Initial definition of the Work Model.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    33
206
832335761384 Make use of PolyModel for Works, Documents, etc. Add some (but not all) of
Todd Larsen <tlarsen@google.com>
parents: 181
diff changeset
    34
class Work(polymodel.PolyModel):
832335761384 Make use of PolyModel for Works, Documents, etc. Add some (but not all) of
Todd Larsen <tlarsen@google.com>
parents: 181
diff changeset
    35
  """Model of a Work created by one or more Persons in Roles.
16
300f7606e100 Initial definition of the Work Model.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    36
206
832335761384 Make use of PolyModel for Works, Documents, etc. Add some (but not all) of
Todd Larsen <tlarsen@google.com>
parents: 181
diff changeset
    37
  Work is a "base entity" of other more specific "works" created by Persons
832335761384 Make use of PolyModel for Works, Documents, etc. Add some (but not all) of
Todd Larsen <tlarsen@google.com>
parents: 181
diff changeset
    38
  serving in "roles".
832335761384 Make use of PolyModel for Works, Documents, etc. Add some (but not all) of
Todd Larsen <tlarsen@google.com>
parents: 181
diff changeset
    39
342
72482d8e5b34 Remove the proposed WorksAuthors many:many relation and promote the "founder"
Todd Larsen <tlarsen@google.com>
parents: 329
diff changeset
    40
    reviews)  a 1:many relationship between a Work and the zero or more
72482d8e5b34 Remove the proposed WorksAuthors many:many relation and promote the "founder"
Todd Larsen <tlarsen@google.com>
parents: 329
diff changeset
    41
      Reviews of that Work.  This relation is implemented as the 'reviews'
72482d8e5b34 Remove the proposed WorksAuthors many:many relation and promote the "founder"
Todd Larsen <tlarsen@google.com>
parents: 329
diff changeset
    42
      back-reference Query of the Review model 'reviewed' reference.
16
300f7606e100 Initial definition of the Work Model.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    43
  """
400
8f07048d84ef Added a generic version of the Document views
Sverre Rabbelier <srabbelier@gmail.com>
parents: 351
diff changeset
    44
342
72482d8e5b34 Remove the proposed WorksAuthors many:many relation and promote the "founder"
Todd Larsen <tlarsen@google.com>
parents: 329
diff changeset
    45
  #: Required 1:1 relationship indicating the User who initially authored the
72482d8e5b34 Remove the proposed WorksAuthors many:many relation and promote the "founder"
Todd Larsen <tlarsen@google.com>
parents: 329
diff changeset
    46
  #: Work (this relationship is needed to keep track of lifetime document
72482d8e5b34 Remove the proposed WorksAuthors many:many relation and promote the "founder"
Todd Larsen <tlarsen@google.com>
parents: 329
diff changeset
    47
  #: creation limits, used to prevent spamming, etc.).
72482d8e5b34 Remove the proposed WorksAuthors many:many relation and promote the "founder"
Todd Larsen <tlarsen@google.com>
parents: 329
diff changeset
    48
  author = db.ReferenceProperty(reference_class=soc.models.user.User,
72482d8e5b34 Remove the proposed WorksAuthors many:many relation and promote the "founder"
Todd Larsen <tlarsen@google.com>
parents: 329
diff changeset
    49
                                 required=True, collection_name="documents",
72482d8e5b34 Remove the proposed WorksAuthors many:many relation and promote the "founder"
Todd Larsen <tlarsen@google.com>
parents: 329
diff changeset
    50
                                 verbose_name=ugettext_lazy('Created by'))
16
300f7606e100 Initial definition of the Work Model.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    51
300f7606e100 Initial definition of the Work Model.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    52
  #: Required field indicating the "title" of the work, which may have
300f7606e100 Initial definition of the Work Model.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    53
  #: different uses depending on the specific type of the work. Works
300f7606e100 Initial definition of the Work Model.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    54
  #: can be indexed, filtered, and sorted by 'title'.
206
832335761384 Make use of PolyModel for Works, Documents, etc. Add some (but not all) of
Todd Larsen <tlarsen@google.com>
parents: 181
diff changeset
    55
  title = db.StringProperty(required=True,
832335761384 Make use of PolyModel for Works, Documents, etc. Add some (but not all) of
Todd Larsen <tlarsen@google.com>
parents: 181
diff changeset
    56
      verbose_name=ugettext_lazy('Title'))
832335761384 Make use of PolyModel for Works, Documents, etc. Add some (but not all) of
Todd Larsen <tlarsen@google.com>
parents: 181
diff changeset
    57
  title.help_text = ugettext_lazy(
832335761384 Make use of PolyModel for Works, Documents, etc. Add some (but not all) of
Todd Larsen <tlarsen@google.com>
parents: 181
diff changeset
    58
      'title of the document; often used in the window title')
832335761384 Make use of PolyModel for Works, Documents, etc. Add some (but not all) of
Todd Larsen <tlarsen@google.com>
parents: 181
diff changeset
    59
220
3ebe00b44212 Add partial_path property explicitly to the Work model.
Todd Larsen <tlarsen@google.com>
parents: 206
diff changeset
    60
  #: Required path, prepended to a "link name" to form the document URL.
3ebe00b44212 Add partial_path property explicitly to the Work model.
Todd Larsen <tlarsen@google.com>
parents: 206
diff changeset
    61
  #: The combined path and link name must be globally unique on the
3ebe00b44212 Add partial_path property explicitly to the Work model.
Todd Larsen <tlarsen@google.com>
parents: 206
diff changeset
    62
  #: site.  Except in /site/docs (Developer) forms, this field is not
3ebe00b44212 Add partial_path property explicitly to the Work model.
Todd Larsen <tlarsen@google.com>
parents: 206
diff changeset
    63
  #: usually directly editable by the User, but is instead set by controller
3ebe00b44212 Add partial_path property explicitly to the Work model.
Todd Larsen <tlarsen@google.com>
parents: 206
diff changeset
    64
  #: logic to match the "scope" of the document.
3ebe00b44212 Add partial_path property explicitly to the Work model.
Todd Larsen <tlarsen@google.com>
parents: 206
diff changeset
    65
  partial_path = db.StringProperty(required=True,
3ebe00b44212 Add partial_path property explicitly to the Work model.
Todd Larsen <tlarsen@google.com>
parents: 206
diff changeset
    66
      verbose_name=ugettext_lazy('Partial path'))
3ebe00b44212 Add partial_path property explicitly to the Work model.
Todd Larsen <tlarsen@google.com>
parents: 206
diff changeset
    67
  partial_path.help_text = ugettext_lazy(
3ebe00b44212 Add partial_path property explicitly to the Work model.
Todd Larsen <tlarsen@google.com>
parents: 206
diff changeset
    68
    'path portion of URLs, prepended to link name')
3ebe00b44212 Add partial_path property explicitly to the Work model.
Todd Larsen <tlarsen@google.com>
parents: 206
diff changeset
    69
206
832335761384 Make use of PolyModel for Works, Documents, etc. Add some (but not all) of
Todd Larsen <tlarsen@google.com>
parents: 181
diff changeset
    70
  #: Required link name, appended to a "path" to form the document URL.
220
3ebe00b44212 Add partial_path property explicitly to the Work model.
Todd Larsen <tlarsen@google.com>
parents: 206
diff changeset
    71
  #: The combined path and link name must be globally unique on the
206
832335761384 Make use of PolyModel for Works, Documents, etc. Add some (but not all) of
Todd Larsen <tlarsen@google.com>
parents: 181
diff changeset
    72
  #: site (but, unlike some link names, a Work link name can be reused,
832335761384 Make use of PolyModel for Works, Documents, etc. Add some (but not all) of
Todd Larsen <tlarsen@google.com>
parents: 181
diff changeset
    73
  #: as long as the combination with the preceding path is unique).
832335761384 Make use of PolyModel for Works, Documents, etc. Add some (but not all) of
Todd Larsen <tlarsen@google.com>
parents: 181
diff changeset
    74
  link_name = db.StringProperty(required=True,
832335761384 Make use of PolyModel for Works, Documents, etc. Add some (but not all) of
Todd Larsen <tlarsen@google.com>
parents: 181
diff changeset
    75
      verbose_name=ugettext_lazy('Link name'))
832335761384 Make use of PolyModel for Works, Documents, etc. Add some (but not all) of
Todd Larsen <tlarsen@google.com>
parents: 181
diff changeset
    76
  link_name.help_text = ugettext_lazy('link name used in URLs')
832335761384 Make use of PolyModel for Works, Documents, etc. Add some (but not all) of
Todd Larsen <tlarsen@google.com>
parents: 181
diff changeset
    77
832335761384 Make use of PolyModel for Works, Documents, etc. Add some (but not all) of
Todd Larsen <tlarsen@google.com>
parents: 181
diff changeset
    78
  #: short name used in places such as the sidebar menu and breadcrumb trail
832335761384 Make use of PolyModel for Works, Documents, etc. Add some (but not all) of
Todd Larsen <tlarsen@google.com>
parents: 181
diff changeset
    79
  #: (optional: title will be used if short_name is not present)
832335761384 Make use of PolyModel for Works, Documents, etc. Add some (but not all) of
Todd Larsen <tlarsen@google.com>
parents: 181
diff changeset
    80
  short_name = db.StringProperty(verbose_name=ugettext_lazy('Short name'))
832335761384 Make use of PolyModel for Works, Documents, etc. Add some (but not all) of
Todd Larsen <tlarsen@google.com>
parents: 181
diff changeset
    81
  short_name.help_text = ugettext_lazy(
832335761384 Make use of PolyModel for Works, Documents, etc. Add some (but not all) of
Todd Larsen <tlarsen@google.com>
parents: 181
diff changeset
    82
      'short name used, for example, in the sidebar menu')
351
b37fc4c1e189 Eliminate the Work.abstract property and move the Document.content property
Todd Larsen <tlarsen@google.com>
parents: 342
diff changeset
    83
b37fc4c1e189 Eliminate the Work.abstract property and move the Document.content property
Todd Larsen <tlarsen@google.com>
parents: 342
diff changeset
    84
  #: Required db.TextProperty containing the contents of the Work.
b37fc4c1e189 Eliminate the Work.abstract property and move the Document.content property
Todd Larsen <tlarsen@google.com>
parents: 342
diff changeset
    85
  #: The content is only to be displayed to Persons in Roles eligible to
b37fc4c1e189 Eliminate the Work.abstract property and move the Document.content property
Todd Larsen <tlarsen@google.com>
parents: 342
diff changeset
    86
  #: view them (which may be anyone, for example, with the site front page).
b37fc4c1e189 Eliminate the Work.abstract property and move the Document.content property
Todd Larsen <tlarsen@google.com>
parents: 342
diff changeset
    87
  content = db.TextProperty(verbose_name=ugettext_lazy('Content'))
206
832335761384 Make use of PolyModel for Works, Documents, etc. Add some (but not all) of
Todd Larsen <tlarsen@google.com>
parents: 181
diff changeset
    88
  
832335761384 Make use of PolyModel for Works, Documents, etc. Add some (but not all) of
Todd Larsen <tlarsen@google.com>
parents: 181
diff changeset
    89
  #: date when the work was created
832335761384 Make use of PolyModel for Works, Documents, etc. Add some (but not all) of
Todd Larsen <tlarsen@google.com>
parents: 181
diff changeset
    90
  created = db.DateTimeProperty(auto_now_add=True)
832335761384 Make use of PolyModel for Works, Documents, etc. Add some (but not all) of
Todd Larsen <tlarsen@google.com>
parents: 181
diff changeset
    91
  
832335761384 Make use of PolyModel for Works, Documents, etc. Add some (but not all) of
Todd Larsen <tlarsen@google.com>
parents: 181
diff changeset
    92
  #: date when the work was last modified
832335761384 Make use of PolyModel for Works, Documents, etc. Add some (but not all) of
Todd Larsen <tlarsen@google.com>
parents: 181
diff changeset
    93
  modified = db.DateTimeProperty(auto_now=True)
242
17984abf0c74 Some TODOs on access control that I didn't want to forget.
Todd Larsen <tlarsen@google.com>
parents: 220
diff changeset
    94
17984abf0c74 Some TODOs on access control that I didn't want to forget.
Todd Larsen <tlarsen@google.com>
parents: 220
diff changeset
    95
  # TODO: some sort of access control preferences are needed at this basic
17984abf0c74 Some TODOs on access control that I didn't want to forget.
Todd Larsen <tlarsen@google.com>
parents: 220
diff changeset
    96
  #   level.  Works need to be restrict-able to:
17984abf0c74 Some TODOs on access control that I didn't want to forget.
Todd Larsen <tlarsen@google.com>
parents: 220
diff changeset
    97
  #    * the authors only
17984abf0c74 Some TODOs on access control that I didn't want to forget.
Todd Larsen <tlarsen@google.com>
parents: 220
diff changeset
    98
  #    * the administrators of the Groups that the authors are in
17984abf0c74 Some TODOs on access control that I didn't want to forget.
Todd Larsen <tlarsen@google.com>
parents: 220
diff changeset
    99
  #    * any member of the authors' Groups
17984abf0c74 Some TODOs on access control that I didn't want to forget.
Todd Larsen <tlarsen@google.com>
parents: 220
diff changeset
   100
  #    * logged-in User with a profile
17984abf0c74 Some TODOs on access control that I didn't want to forget.
Todd Larsen <tlarsen@google.com>
parents: 220
diff changeset
   101
  #    * logged-in Users, but no profile is necessary
17984abf0c74 Some TODOs on access control that I didn't want to forget.
Todd Larsen <tlarsen@google.com>
parents: 220
diff changeset
   102
  #    * anyone, even those not logged in
17984abf0c74 Some TODOs on access control that I didn't want to forget.
Todd Larsen <tlarsen@google.com>
parents: 220
diff changeset
   103
  #  (and possibly others)
17984abf0c74 Some TODOs on access control that I didn't want to forget.
Todd Larsen <tlarsen@google.com>
parents: 220
diff changeset
   104
329
2d90d49ce78a Add is_featured boolean property to the Work model, so that Works can be
Todd Larsen <tlarsen@google.com>
parents: 242
diff changeset
   105
  #: field storing whether a link to the Work should be featured in
2d90d49ce78a Add is_featured boolean property to the Work model, so that Works can be
Todd Larsen <tlarsen@google.com>
parents: 242
diff changeset
   106
  #: the sidebar menu (and possibly elsewhere); FAQs, Terms of Service,
2d90d49ce78a Add is_featured boolean property to the Work model, so that Works can be
Todd Larsen <tlarsen@google.com>
parents: 242
diff changeset
   107
  #: and the like are examples of "featured" Works
2d90d49ce78a Add is_featured boolean property to the Work model, so that Works can be
Todd Larsen <tlarsen@google.com>
parents: 242
diff changeset
   108
  is_featured = db.BooleanProperty(
2d90d49ce78a Add is_featured boolean property to the Work model, so that Works can be
Todd Larsen <tlarsen@google.com>
parents: 242
diff changeset
   109
      verbose_name=ugettext_lazy('Is Featured'))
2d90d49ce78a Add is_featured boolean property to the Work model, so that Works can be
Todd Larsen <tlarsen@google.com>
parents: 242
diff changeset
   110
  is_featured.help_text = ugettext_lazy(
2d90d49ce78a Add is_featured boolean property to the Work model, so that Works can be
Todd Larsen <tlarsen@google.com>
parents: 242
diff changeset
   111
      'Field used to indicate if a Work should be featured, for example,'
2d90d49ce78a Add is_featured boolean property to the Work model, so that Works can be
Todd Larsen <tlarsen@google.com>
parents: 242
diff changeset
   112
      ' in the sidebar menu.')