Child: [59154f] (diff)

Download this file

neighborhood.py    103 lines (86 with data), 3.8 kB

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
from ming import schema as S
from ming.orm import MappedClass
from ming.orm import FieldProperty, RelationProperty, ForeignIdProperty
from pylons import request, c
from allura.lib import plugin
from .session import main_orm_session
from .filesystem import File
class NeighborhoodFile(File):
class __mongometa__:
session = main_orm_session
# Override the metadata schema here
metadata=FieldProperty(dict(
neighborhood_id=S.ObjectId,
filename=str))
class Neighborhood(MappedClass):
'''Provide a grouping of related projects.
url_prefix - location of neighborhood (may include scheme and/or host)
css - block of CSS text to add to all neighborhood pages
acl - list of user IDs who have rights to perform ops on neighborhood. Empty
acl implies that any authenticated user can perform the op
'read' - access the neighborhood (usually [ User.anonymous()._id ])
'create' - create projects within the neighborhood (open neighborhoods
will typically have this empty)
'moderate' - invite projects into the neighborhood, evict projects from
the neighborhood
'admin' - update neighborhood ACLs, acts as a superuser with all
permissions in neighborhood projects
'''
class __mongometa__:
session = main_orm_session
name = 'neighborhood'
_id = FieldProperty(S.ObjectId)
name = FieldProperty(str)
url_prefix = FieldProperty(str) # e.g. http://adobe.openforge.com/ or projects/
shortname_prefix = FieldProperty(str, if_missing='')
css = FieldProperty(str, if_missing='')
homepage = FieldProperty(str, if_missing='')
acl = FieldProperty({
'read':[S.ObjectId], # access neighborhood at all
'create':[S.ObjectId], # create project in neighborhood
'moderate':[S.ObjectId], # invite/evict projects
'admin':[S.ObjectId], # update ACLs
})
redirect = FieldProperty(str, if_missing='')
projects = RelationProperty('Project')
allow_browse = FieldProperty(bool, if_missing=True)
def url(self):
url = self.url_prefix
if url.startswith('//'):
try:
return request.scheme + ':' + url
except TypeError: # pragma no cover
return 'http:' + url
else:
return url
def register_project(self, shortname, user=None, user_project=False):
'''Register a new project in the neighborhood. The given user will
become the project's superuser. If no user is specified, c.user is used.
'''
provider = plugin.ProjectRegistrationProvider.get()
return provider.register_project(self, shortname, user or c.user, user_project)
def bind_controller(self, controller):
from allura.controllers.project import NeighborhoodController
controller_attr = self.url_prefix[1:-1]
setattr(controller, controller_attr, NeighborhoodController(
self.name, self.shortname_prefix))
@property
def icon(self):
return NeighborhoodFile.query.find({'metadata.neighborhood_id':self._id}).first()
@property
def theme(self):
return Theme.query.find({'neighborhood_id':self._id}).first()
class Theme(MappedClass):
class __mongometa__:
session = main_orm_session
name = 'theme'
_id=FieldProperty(S.ObjectId)
name = FieldProperty(str)
label = FieldProperty(str)
neighborhood_id = ForeignIdProperty(Neighborhood)
color1 = FieldProperty(str)
color2 = FieldProperty(str)
color3 = FieldProperty(str)
color4 = FieldProperty(str)
color5 = FieldProperty(str)
color6 = FieldProperty(str)