from django.template.defaultfilters import slugify
from django import template
from forum.utils import html
+from forum.models.user import AnonymousUser
from ui import Registry
from copy import copy
class Visibility(object):
- def __init__(self, level='public'):
+ def __init__(self, level='public', negated=False):
if level not in ['public', 'authenticated', 'staff', 'superuser', 'owner']:
try:
int(level)
self.by_reputation = False
self.level = level
- self.negated = False
+ self.negated = negated
def show_to(self, user):
if self.by_reputation:
return res
def __invert__(self):
- inverted = copy(self)
- inverted.negated = True
+ return Visibility(self.level, not self.negated)
Visibility.PUBLIC = Visibility('public')
+Visibility.ANONYMOUS = Visibility('authenticated', negated=True)
Visibility.AUTHENTICATED = Visibility('authenticated')
Visibility.STAFF = Visibility('staff')
Visibility.SUPERUSER = Visibility('superuser')
def __call__(self, context):
if callable(self.argument):
- user = context.get('request', None) and context['request'].user or None
+ user = context.get('request', None) and context['request'].user or AnonymousUser()
return self.argument(user, context)
else:
return self.argument
- def __init__(self, visibility=None, weight=500):
+ def __init__(self, visibility=None, weight=500, name=''):
self.visibility = visibility
self.weight = weight
+ self.name = name
def _visible_to(self, user):
return (not self.visibility) or (self.visibility and self.visibility.show_to(user))
try:
return self._visible_to(context['request'].user)
except KeyError:
- return True
+ try:
+ return self._visible_to(context['viewer'])
+ except KeyError:
+ return self._visible_to(AnonymousUser())
def render(self, context):
return ''
class Link(ObjectBase):
- def __init__(self, text, url, attrs=None, pre_code='', post_code='', visibility=None, weight=500):
- super(Link, self).__init__(visibility, weight)
+ def __init__(self, text, url, attrs=None, pre_code='', post_code='', visibility=None, weight=500, name=''):
+ super(Link, self).__init__(visibility, weight, name)
self.text = self.Argument(text)
self.url = self.Argument(url)
self.attrs = self.Argument(attrs or {})
self.post_code(context))
class Include(ObjectBase):
- def __init__(self, tpl, visibility=None, weight=500):
- super(Include, self).__init__(visibility, weight)
+ def __init__(self, tpl, visibility=None, weight=500, name=''):
+ super(Include, self).__init__(visibility, weight, name)
self.template = template.loader.get_template(tpl)
def render(self, context):
class LoopContext(LoopBase):
- def __init__(self, loop_context, visibility=None, weight=500):
- super(LoopContext, self).__init__(visibility, weight)
+ def __init__(self, loop_context, visibility=None, weight=500, name=''):
+ super(LoopContext, self).__init__(visibility, weight, name)
self.loop_context = self.Argument(loop_context)
def update_context(self, context):
class PageTab(LoopBase):
- def __init__(self, tab_name, tab_title, url_getter, weight):
- super(PageTab, self).__init__(weight=weight)
+ def __init__(self, tab_name, tab_title, url_getter, weight, name=''):
+ super(PageTab, self).__init__(weight=weight, name=name)
self.tab_name = tab_name
self.tab_title = tab_title
self.url_getter = url_getter
class ProfileTab(LoopBase):
def __init__(self, name, title, description, url_getter, private=False, render_to=None, weight=500):
- super(ProfileTab, self).__init__(weight=weight)
+ super(ProfileTab, self).__init__(weight=weight, name=name)
self.name = name
self.title = title
self.description = description
class AjaxMenuItem(ObjectBase):
- def __init__(self, label, url, a_attrs=None, span_label='', span_attrs=None, visibility=None, weight=500):
- super(AjaxMenuItem, self).__init__(visibility, weight)
+ def __init__(self, label, url, a_attrs=None, span_label='', span_attrs=None, visibility=None, weight=500, name=''):
+ super(AjaxMenuItem, self).__init__(visibility, weight, name)
self.label = self.Argument(label)
self.url = self.Argument(url)
self.a_attrs = self.Argument(a_attrs or {})
**{'class': 'item'})
class AjaxMenuGroup(ObjectBase, Registry):
- def __init__(self, label, items, visibility=None, weight=500):
- super(AjaxMenuGroup, self).__init__(visibility, weight)
+ def __init__(self, label, items, visibility=None, weight=500, name=''):
+ super(AjaxMenuGroup, self).__init__(visibility, weight, name)
self.label = label
for item in items: