/usr/lib/python3/dist-packages/sitetree/sitetreeapp.py is in python3-django-sitetree 1.5.1-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 | from __future__ import unicode_literals
import warnings
from collections import defaultdict
from copy import copy, deepcopy
from threading import local
from functools import partial
from django.conf import settings
from django import VERSION
from django.core.cache import cache
from django.db.models import signals
from django.utils import six
from django.utils.http import urlquote
from django.utils.translation import get_language
from django.utils.encoding import python_2_unicode_compatible
from django.template import Context
from django.template.loader import get_template
from django.template.base import (
FilterExpression, Lexer, Parser, Token, Variable, VariableDoesNotExist, TOKEN_BLOCK, UNKNOWN_SOURCE, TOKEN_TEXT,
TOKEN_VAR, VARIABLE_TAG_START)
from django.template.defaulttags import url as url_tag
from .utils import get_tree_model, get_tree_item_model, import_app_sitetree_module, generate_id_for
from .settings import (
ALIAS_TRUNK, ALIAS_THIS_CHILDREN, ALIAS_THIS_SIBLINGS, ALIAS_THIS_PARENT_SIBLINGS, ALIAS_THIS_ANCESTOR_CHILDREN,
UNRESOLVED_ITEM_MARKER, RAISE_ITEMS_ERRORS_ON_DEBUG, CACHE_TIMEOUT)
if VERSION >= (1, 9, 0):
get_lexer = partial(Lexer)
else:
get_lexer = partial(Lexer, origin=UNKNOWN_SOURCE)
MODEL_TREE_CLASS = get_tree_model()
MODEL_TREE_ITEM_CLASS = get_tree_item_model()
# Holds tree items processor callable or None.
_ITEMS_PROCESSOR = None
# Holds aliases of trees that support internationalization.
_I18N_TREES = []
# Holds trees dynamically loaded from project apps.
_DYNAMIC_TREES = {}
# Dictionary index in `_DYNAMIC_TREES` for orphaned trees list.
_IDX_ORPHAN_TREES = 'orphans'
# Dictinary index name template in `_DYNAMIC_TREES`.
_IDX_TPL = '%s|:|%s'
# SiteTree app-wise object.
_SITETREE = None
_THREAD_LOCAL = local()
_THREAD_LANG = 'sitetree_lang'
def get_sitetree():
"""Returns SiteTree [singleton] object, implementing utility methods.
:return: SiteTree
"""
global _SITETREE
if _SITETREE is None:
_SITETREE = SiteTree()
return _SITETREE
def register_items_hook(callable):
"""Registers a hook callable to process tree items right before they are passed to templates.
Callable should be able to:
a) handle ``tree_items`` and ``tree_sender`` key params.
``tree_items`` will contain a list of extended TreeItem objects ready to pass to template.
``tree_sender`` will contain navigation type identifier
(e.g.: `menu`, `sitetree`, `breadcrumbs`, `menu.children`, `sitetree.children`)
b) return a list of extended TreeItems objects to pass to template.
Example::
# Put the following code somewhere where it'd be triggered as expected. E.g. in app view.py.
# First import the register function.
from sitetree.sitetreeapp import register_items_hook
# The following function will be used as items processor.
def my_items_processor(tree_items, tree_sender):
# Suppose we want to process only menu child items.
if tree_sender == 'menu.children':
# Lets add 'Hooked: ' to resolved titles of every item.
for item in tree_items:
item.title_resolved = 'Hooked: %s' % item.title_resolved
# Return items list mutated or not.
return tree_items
# And we register items processor.
register_items_hook(my_items_processor)
"""
global _ITEMS_PROCESSOR
_ITEMS_PROCESSOR = callable
def register_i18n_trees(aliases):
"""Registers aliases of internationalized sitetrees.
Internationalized sitetrees are those, which are dubbed by other trees having
locale identifying suffixes in their aliases.
Lets suppose ``my_tree`` is the alias of a generic tree. This tree is the one
that we call by its alias in templates, and it is the one which is used
if no i18n version of that tree is found.
Given that ``my_tree_en``, ``my_tree_ru`` and other ``my_tree_{locale-id}``-like
trees are considered internationalization sitetrees. These are used (if available)
in accordance with current locale used by project.
Example::
# Put the following code somewhere where it'd be triggered as expected. E.g. in main urls.py.
# First import the register function.
from sitetree.sitetreeapp import register_i18n_trees
# At last we register i18n trees.
register_i18n_trees(['my_tree', 'my_another_tree'])
"""
global _I18N_TREES
_I18N_TREES = aliases
def register_dynamic_trees(trees, *args, **kwargs):
"""Registers dynamic trees to be available for `sitetree` runtime.
Expects `trees` to be an iterable with structures created with `compose_dynamic_tree()`.
Example::
register_dynamic_trees(
# Get all the trees from `my_app`.
compose_dynamic_tree('my_app'),
# Get all the trees from `my_app` and attach them to `main` tree root.
compose_dynamic_tree('my_app', target_tree_alias='main'),
# Get all the trees from `my_app` and attach them to `has_dynamic` aliased item in `main` tree.
compose_dynamic_tree('articles', target_tree_alias='main', parent_tree_item_alias='has_dynamic'),
# Define a tree right on the registration.
compose_dynamic_tree((
tree('dynamic', items=(
item('dynamic_1', 'dynamic_1_url', children=(
item('dynamic_1_sub_1', 'dynamic_1_sub_1_url'),
)),
item('dynamic_2', 'dynamic_2_url'),
)),
)),
)
Accepted kwargs:
:param bool reset_cache: Resets tree cache, to introduce all changes made to a tree immediately.
"""
global _DYNAMIC_TREES
if _IDX_ORPHAN_TREES not in _DYNAMIC_TREES:
_DYNAMIC_TREES[_IDX_ORPHAN_TREES] = {}
if isinstance(trees, dict): # New `less-brackets` style registration.
trees = [trees]
trees.extend(args)
for tree in trees:
if tree is not None and tree['sitetrees'] is not None:
if tree['tree'] is None:
# Register trees as they are defined in app.
for st in tree['sitetrees']:
if st.alias not in _DYNAMIC_TREES[_IDX_ORPHAN_TREES]:
_DYNAMIC_TREES[_IDX_ORPHAN_TREES][st.alias] = []
_DYNAMIC_TREES[_IDX_ORPHAN_TREES][st.alias].append(st)
else:
# Register tree items as parts of existing trees.
index = _IDX_TPL % (tree['tree'], tree['parent_item'])
if index not in _DYNAMIC_TREES:
_DYNAMIC_TREES[index] = []
_DYNAMIC_TREES[index].extend(tree['sitetrees'])
reset_cache = kwargs.get('reset_cache', False)
if reset_cache:
cache = get_sitetree().cache
cache.empty()
cache.reset()
def get_dynamic_trees():
"""Returns a dictionary with currently registered dynamic trees."""
return _DYNAMIC_TREES
def compose_dynamic_tree(src, target_tree_alias=None, parent_tree_item_alias=None, include_trees=None):
"""Returns a structure describing a dynamic sitetree.utils
The structure can be built from various sources,
Thus, if a string is passed to `src`, it'll be treated as the name of an app,
from where one want to import sitetrees definitions.
On the other hand, `src` can be an iterable of trees definitions
(see `sitetree.utils.tree()` and `item()` functions).
`target_tree_alias` - expects a static tree alias to attach items from dynamic trees to.
`parent_tree_item_alias` - expects a tree item alias from a static tree to attach items from dynamic trees to.
`include_trees` - expects a list of sitetree aliases to filter `src`.
"""
def result(sitetrees=src):
if include_trees is not None:
sitetrees = [tree for tree in sitetrees if tree.alias in include_trees]
return {'app': src, 'sitetrees': sitetrees, 'tree': target_tree_alias, 'parent_item': parent_tree_item_alias}
if isinstance(src, six.string_types):
# Considered an application name.
try:
module = import_app_sitetree_module(src)
if module is None:
return None
return result(getattr(module, 'sitetrees', None))
except ImportError as e:
if settings.DEBUG:
warnings.warn('Unable to register dynamic sitetree(s) for `%s` application: %s. ' % (src, e))
else:
return result()
return None
@python_2_unicode_compatible
class LazyTitle(object):
"""Lazily resolves any variable found in a title of an item.
Produces resolved title as unicode representation."""
def __init__(self, title):
self.title = title
def __str__(self):
my_lexer = get_lexer(self.title)
my_tokens = my_lexer.tokenize()
# Deliberately strip off template tokens that are not text or variable.
for my_token in my_tokens:
if my_token.token_type not in (TOKEN_TEXT, TOKEN_VAR):
my_tokens.remove(my_token)
my_parser = Parser(my_tokens)
return my_parser.parse().render(SiteTree.get_global_context())
def __eq__(self, other):
return self.__str__() == other
class Cache(object):
"""Contains cache-related stuff."""
def __init__(self):
self.cache = None
cache_empty = self.empty
# Listen for signals from the models.
signals.post_save.connect(cache_empty, sender=MODEL_TREE_CLASS)
signals.post_save.connect(cache_empty, sender=MODEL_TREE_ITEM_CLASS)
signals.post_delete.connect(cache_empty, sender=MODEL_TREE_ITEM_CLASS)
# Listen to the changes in item permissions table.
signals.m2m_changed.connect(cache_empty, sender=MODEL_TREE_ITEM_CLASS.access_permissions)
@classmethod
def reset(cls):
"""Instructs sitetree to drop and recreate cache.
Could be used to show up tree changes made in a different process.
"""
cache.get('sitetrees_reset', True)
def init(self):
"""Initializes local cache from Django cache."""
# Drop cache flag set by .reset() method.
cache.get('sitetrees_reset') and self.empty()
cache_ = cache.get('sitetrees')
if cache_ is None:
# Init cache dictionary with predefined entries.
cache_ = {'sitetrees': {}, 'urls': {}, 'parents': {}, 'items_by_ids': {}, 'tree_aliases': {}}
self.cache = cache_
def save(self):
"""Saves sitetree data to Django cache."""
cache.set('sitetrees', self.cache, CACHE_TIMEOUT)
def empty(self, **kwargs):
"""Empties cached sitetree data."""
self.cache = None
cache.delete('sitetrees')
cache.delete('sitetrees_reset')
def get_entry(self, entry_name, key):
"""Returns cache entry parameter value by its name."""
return self.cache[entry_name].get(key, False)
def update_entry_value(self, entry_name, key, value):
"""Updates cache entry parameter with new data."""
if key not in self.cache[entry_name]:
self.cache[entry_name][key] = {}
self.cache[entry_name][key].update(value)
def set_entry(self, entry_name, key, value):
"""Replaces entire cache entry parameter data by its name with new data."""
self.cache[entry_name][key] = value
class SiteTree(object):
_global_context = Context()
def __init__(self):
self.cache = Cache()
@classmethod
def set_global_context(cls, context):
"""Saves context as global context if not already set or if changed.
Almost all variables are resolved against global context.
"""
if not cls._global_context or id(context) != id(cls._global_context):
cls._global_context = context
@classmethod
def get_global_context(cls):
"""Returns current sitetree global context."""
return cls._global_context
def resolve_tree_i18n_alias(self, alias):
"""Resolves internationalized tree alias.
Verifies whether a separate sitetree is available for currently active language.
If so, returns i18n alias. If not, returns the initial alias.
"""
if alias in _I18N_TREES:
current_language_code = self.lang_get().replace('_', '-').split('-')[0]
i18n_tree_alias = '%s_%s' % (alias, current_language_code)
trees_count = self.cache.get_entry('tree_aliases', i18n_tree_alias)
if trees_count is False:
trees_count = MODEL_TREE_CLASS.objects.filter(alias=i18n_tree_alias).count()
self.cache.set_entry('tree_aliases', i18n_tree_alias, trees_count)
if trees_count:
alias = i18n_tree_alias
return alias
@staticmethod
def attach_dynamic_tree_items(tree_alias, src_tree_items):
"""Attaches dynamic sitetrees items registered with `register_dynamic_trees()`
to an initial (source) items list.
"""
if not _DYNAMIC_TREES:
return src_tree_items
# This guarantees that a dynamic source stays intact,
# no matter how dynamic sitetrees are attached.
TREES = deepcopy(_DYNAMIC_TREES)
items = []
if not src_tree_items:
if _IDX_ORPHAN_TREES in TREES and tree_alias in TREES[_IDX_ORPHAN_TREES]:
for tree in TREES[_IDX_ORPHAN_TREES][tree_alias]:
items.extend(tree.dynamic_items)
else:
# TODO Seems to be underoptimized %)
# Tree item attachment by alias.
for static_item in list(src_tree_items):
items.append(static_item)
if static_item.alias:
idx = _IDX_TPL % (tree_alias, static_item.alias)
if idx in TREES:
for tree in TREES[idx]:
tree.alias = tree_alias
for dyn_item in tree.dynamic_items:
if dyn_item.parent is None:
dyn_item.parent = static_item
# Unique IDs are required for the same trees attached
# to different parents.
dyn_item.id = generate_id_for(dyn_item)
items.append(dyn_item)
# Tree root attachment.
idx = _IDX_TPL % (tree_alias, None)
if idx in _DYNAMIC_TREES:
TREES = deepcopy(_DYNAMIC_TREES)
for tree in TREES[idx]:
tree.alias = tree_alias
items.extend(tree.dynamic_items)
return items
def current_app_is_admin(self):
"""Returns boolean whether current application is Admin contrib."""
current_app = (
getattr(self._global_context.get('request', None), 'current_app',
self._global_context.current_app))
return current_app == 'admin'
def get_sitetree(self, alias):
"""Gets site tree items from the given site tree.
Caches result to dictionary.
Returns (tree alias, tree items) tuple.
"""
# Cache aliases for speedup.
cache = self.cache
get_cache_entry = cache.get_entry
set_cache_entry = cache.set_entry
cache.init()
sitetree_needs_caching = False
if not self.current_app_is_admin():
# We do not need i18n for a tree rendered in Admin dropdown.
alias = self.resolve_tree_i18n_alias(alias)
sitetree = get_cache_entry('sitetrees', alias)
if not sitetree:
sitetree = MODEL_TREE_ITEM_CLASS.objects.select_related('parent', 'tree').\
filter(tree__alias__exact=alias).order_by('parent__sort_order', 'sort_order')
sitetree = self.attach_dynamic_tree_items(alias, sitetree)
set_cache_entry('sitetrees', alias, sitetree)
sitetree_needs_caching = True
parents = get_cache_entry('parents', alias)
if not parents:
parents = defaultdict(list)
for item in sitetree:
parent = getattr(item, 'parent')
parents[parent].append(item)
set_cache_entry('parents', alias, parents)
# Prepare items by ids cache if needed.
if sitetree_needs_caching:
# We need this extra pass to avoid future problems on items depth calculation.
for item in sitetree:
cache.update_entry_value('items_by_ids', alias, {item.id: item})
for item in sitetree:
if sitetree_needs_caching:
item.has_children = False
if not hasattr(item, 'depth'):
item.depth = self.calculate_item_depth(alias, item.id)
item.depth_range = range(item.depth)
# Resolve item permissions.
if item.access_restricted:
permissions_src = (
item.permissions if getattr(item, 'is_dynamic', False)
else item.access_permissions.select_related())
item.perms = set(
['%s.%s' % (perm.content_type.app_label, perm.codename) for perm in permissions_src])
# Contextual properties.
item.url_resolved = self.url(item)
if VARIABLE_TAG_START in item.title:
item.title_resolved = LazyTitle(item.title)
else:
item.title_resolved = item.title
item.is_current = False
item.in_current_branch = False
# Get current item for the given sitetree.
self.get_tree_current_item(alias)
# Save sitetree data into cache if needed.
if sitetree_needs_caching:
cache.save()
return alias, sitetree
def calculate_item_depth(self, tree_alias, item_id, depth=0):
"""Calculates depth of the item in the tree."""
item = self.get_item_by_id(tree_alias, item_id)
if not hasattr(item, 'depth'):
if item.parent is not None:
depth = self.calculate_item_depth(tree_alias, item.parent.id, depth + 1)
else:
depth = item.depth + depth
return depth
def get_item_by_id(self, tree_alias, item_id):
"""Get the item from the tree by its ID."""
return self.cache.get_entry('items_by_ids', tree_alias)[item_id]
def get_tree_current_item(self, tree_alias):
"""Resolves current tree item of 'tree_alias' tree matching current
request path against URL of given tree item.
"""
if self.current_app_is_admin():
return None
current_item = None
if 'request' not in self._global_context:
if settings.DEBUG:
raise SiteTreeError(
'Sitetree needs "django.core.context_processors.request" to be in TEMPLATE_CONTEXT_PROCESSORS '
'in your settings file. If it is, check that your view pushes request data into the template.')
else:
# urlquote is an attempt to support non-ascii in url.
current_url = urlquote(self._global_context['request'].path)
urls_cache = self.cache.get_entry('urls', '%s%s' % (tree_alias, self.lang_get()))
if urls_cache:
for url_item in urls_cache:
urls_cache[url_item][1].is_current = False
if urls_cache[url_item][0] == current_url:
current_item = urls_cache[url_item][1]
if current_item is not None:
current_item.is_current = True
return current_item
@classmethod
def lang_get(cls):
"""Returns language code for current thread.
:return:
"""
return getattr(_THREAD_LOCAL, _THREAD_LANG, '') or cls.lang_init()
@classmethod
def lang_init(cls):
"""Initializes and returns language code for current thread.
:return:
"""
lang = get_language()
setattr(_THREAD_LOCAL, _THREAD_LANG, lang)
return lang
def url(self, sitetree_item, context=None):
"""Resolves item's URL.
'sitetree_item' points to TreeItem object, 'url' property of which
is processed as URL pattern or simple URL.
"""
if context is None:
context = self._global_context
if not isinstance(sitetree_item, MODEL_TREE_ITEM_CLASS):
sitetree_item = self.resolve_var(sitetree_item, context)
# Resolve only if item's URL is marked as pattern.
if sitetree_item.urlaspattern:
url = sitetree_item.url
view_path = url
all_arguments = []
if ' ' in url:
view_path = url.split(' ')
# We should try to resolve URL parameters from site tree item.
for view_argument in view_path[1:]:
resolved = self.resolve_var(view_argument)
# In case of non-ascii data we leave variable unresolved.
if isinstance(resolved, six.text_type):
if resolved.encode('ascii', 'ignore').decode('ascii') != resolved:
resolved = view_argument
# We enclose arg in double quotes as already resolved.
all_arguments.append('"%s"' % str(resolved))
view_path = view_path[0].strip('"\' ')
if VERSION >= (1, 5, 0): # "new-style" url tag - consider sitetree named urls literals.
view_path = "'%s'" % view_path
url_pattern = u'%s %s' % (view_path, ' '.join(all_arguments))
else:
url_pattern = str(sitetree_item.url)
# i18n_patterns compatibility organized using compound cache key.
cache_key = '%s%s' % (sitetree_item.tree.alias, self.lang_get())
entry_from_cache = self.cache.get_entry('urls', cache_key)
if not entry_from_cache:
# Create 'cache_urls' for this tree.
entry_from_cache = {}
self.cache.set_entry('urls', cache_key, {})
if url_pattern in entry_from_cache:
resolved_url = entry_from_cache[url_pattern][0]
else:
if sitetree_item.urlaspattern:
# Form token to pass to Django 'url' tag.
url_token = u'url %s as item.url_resolved' % url_pattern
url_tag(
Parser(None),
Token(token_type=TOKEN_BLOCK, contents=url_token)
).render(context)
# We make an anchor link from an unresolved URL as a reminder.
if not context['item.url_resolved']:
resolved_url = UNRESOLVED_ITEM_MARKER
else:
resolved_url = context['item.url_resolved']
else:
resolved_url = url_pattern
self.cache.update_entry_value('urls', cache_key, {url_pattern: (resolved_url, sitetree_item)})
return resolved_url
def init_tree(self, tree_alias, context):
"""Tries to initialize sitetree in memory.
Returns tuple with resolved tree alias and items on success.
On fail returns False.
"""
# Current context we will consider global.
self.set_global_context(context)
# Initialize language to use it in current thread.
self.lang_init()
# Resolve tree_alias from the context.
tree_alias = self.resolve_var(tree_alias)
# Get tree.
tree_alias, sitetree_items = self.get_sitetree(tree_alias)
# No items in tree, fail silently.
if not sitetree_items:
return False, False
return tree_alias, sitetree_items
def get_current_page_title(self, tree_alias, context):
"""Returns resolved from sitetree title for current page."""
return self.get_current_page_attr('title_resolved', tree_alias, context)
def get_current_page_attr(self, attr_name, tree_alias, context):
"""Returns an arbitrary attribute of a sitetree item resolved as current for current page."""
tree_alias, sitetree_items = self.init_tree(tree_alias, context)
current_item = self.get_tree_current_item(tree_alias)
# Current item is unresolved, fail silently.
if current_item is None:
if settings.DEBUG and RAISE_ITEMS_ERRORS_ON_DEBUG:
raise SiteTreeError(
'Unable to resolve current sitetree item to get a `%s` for current page. Check whether '
'there is an appropriate sitetree item defined for current URL.' % attr_name)
return ''
return getattr(current_item, attr_name, '')
def get_ancestor_level(self, current_item, deep=1):
"""Returns ancestor of level `deep` recursively"""
if current_item.parent is not None:
if deep <= 1:
return current_item.parent
else:
return self.get_ancestor_level(current_item.parent, deep=deep-1)
else:
return current_item
def menu(self, tree_alias, tree_branches, context):
"""Builds and returns menu structure for 'sitetree_menu' tag."""
tree_alias, sitetree_items = self.init_tree(tree_alias, context)
# No items in tree, fail silently.
if not sitetree_items:
return ''
tree_branches = self.resolve_var(tree_branches)
parent_isnull = False
parent_ids = []
parent_aliases = []
current_item = self.get_tree_current_item(tree_alias)
self.tree_climber(tree_alias, current_item)
# Support item addressing both through identifiers and aliases.
for branch_id in tree_branches.split(','):
branch_id = branch_id.strip()
if branch_id == ALIAS_TRUNK:
parent_isnull = True
elif branch_id == ALIAS_THIS_CHILDREN and current_item is not None:
branch_id = current_item.id
parent_ids.append(branch_id)
elif branch_id == ALIAS_THIS_ANCESTOR_CHILDREN and current_item is not None:
branch_id = self.get_ancestor_item(tree_alias, current_item).id
parent_ids.append(branch_id)
elif branch_id == ALIAS_THIS_SIBLINGS and current_item is not None and current_item.parent is not None:
branch_id = current_item.parent.id
parent_ids.append(branch_id)
elif branch_id == ALIAS_THIS_PARENT_SIBLINGS and current_item is not None:
branch_id = self.get_ancestor_level(current_item, deep=2).id
parent_ids.append(branch_id)
elif branch_id.isdigit():
parent_ids.append(int(branch_id))
else:
parent_aliases.append(branch_id)
menu_items = []
for item in sitetree_items:
if not item.hidden and item.inmenu and self.check_access(item, context):
if item.parent is None:
if parent_isnull:
menu_items.append(item)
else:
if item.parent.id in parent_ids or item.parent.alias in parent_aliases:
menu_items.append(item)
# Parse titles for variables.
menu_items = self.apply_hook(menu_items, 'menu')
menu_items = self.update_has_children(tree_alias, menu_items, 'menu')
return menu_items
def apply_hook(self, items, sender):
"""Applies item processing hook, registered with ``register_item_hook()``
to items supplied, and returns processed list.
Returns initial items list if no hook is registered.
"""
if _ITEMS_PROCESSOR is None:
return items
return _ITEMS_PROCESSOR(tree_items=items, tree_sender=sender)
def check_access(self, item, context):
"""Checks whether a current user has an access to a certain item."""
authenticated = self._global_context['request'].user.is_authenticated()
if item.access_loggedin and not authenticated:
return False
if item.access_guest and authenticated:
return False
if item.access_restricted:
user_perms = set(context['user'].get_all_permissions())
if item.access_perm_type == MODEL_TREE_ITEM_CLASS.PERM_TYPE_ALL:
if len(item.perms) != len(item.perms.intersection(user_perms)):
return False
else:
if not len(item.perms.intersection(user_perms)):
return False
return True
def breadcrumbs(self, tree_alias, context):
"""Builds and returns breadcrumb trail structure for 'sitetree_breadcrumbs' tag."""
tree_alias, sitetree_items = self.init_tree(tree_alias, context)
# No items in tree, fail silently.
if not sitetree_items:
return ''
current_item = self.get_tree_current_item(tree_alias)
self.cache_breadcrumbs = []
if current_item is not None:
self.breadcrumbs_climber(tree_alias, current_item)
self.cache_breadcrumbs.reverse()
items = self.apply_hook(self.cache_breadcrumbs, 'breadcrumbs')
items = self.update_has_children(tree_alias, items, 'breadcrumbs')
return items
def tree(self, tree_alias, context):
"""Builds and returns tree structure for 'sitetree_tree' tag."""
tree_alias, sitetree_items = self.init_tree(tree_alias, context)
# No items in tree, fail silently.
if not sitetree_items:
return ''
tree_items = self.filter_items(self.get_children(tree_alias, None), 'sitetree')
tree_items = self.apply_hook(tree_items, 'sitetree')
tree_items = self.update_has_children(tree_alias, tree_items, 'sitetree')
return tree_items
def children(self, parent_item, navigation_type, use_template, context):
"""Builds and returns site tree item children structure
for 'sitetree_children' tag.
"""
# Resolve parent item and current tree alias.
parent_item = self.resolve_var(parent_item, context)
tree_alias, tree_items = self.get_sitetree(parent_item.tree.alias)
# Mark path to current item.
self.tree_climber(tree_alias, self.get_tree_current_item(tree_alias))
tree_items = self.get_children(tree_alias, parent_item)
tree_items = self.filter_items(tree_items, navigation_type)
tree_items = self.apply_hook(tree_items, '%s.children' % navigation_type)
tree_items = self.update_has_children(tree_alias, tree_items, navigation_type)
my_template = get_template(use_template)
context.update({'sitetree_items': tree_items})
return my_template.render(context)
def get_children(self, tree_alias, item):
if not self.current_app_is_admin():
# We do not need i18n for a tree rendered in Admin dropdown.
tree_alias = self.resolve_tree_i18n_alias(tree_alias)
return self.cache.get_entry('parents', tree_alias)[item]
def update_has_children(self, tree_alias, tree_items, navigation_type):
"""Updates 'has_children' attribute for tree items."""
items = []
for tree_item in tree_items:
children = self.get_children(tree_alias, tree_item)
children = self.filter_items(children, navigation_type)
children = self.apply_hook(children, '%s.has_children' % navigation_type)
tree_item.has_children = len(children) > 0
items.append(tree_item)
return items
def filter_items(self, items, navigation_type=None):
"""Filters site tree item's children if hidden and by navigation type.
NB: We do not apply any filters to sitetree in admin app.
"""
items_out = copy(items)
if not self.current_app_is_admin():
for item in items:
no_access = not self.check_access(item, self._global_context)
hidden_for_nav_type = navigation_type is not None and not getattr(item, 'in' + navigation_type, False)
if item.hidden or no_access or hidden_for_nav_type:
items_out.remove(item)
return items_out
def get_ancestor_item(self, tree_alias, start_from):
"""Climbs up the site tree to resolve root item for chosen one."""
parent = None
if hasattr(start_from, 'parent') and start_from.parent is not None:
parent = self.get_ancestor_item(tree_alias, self.get_item_by_id(tree_alias, start_from.parent.id))
if parent is None:
return start_from
return parent
def tree_climber(self, tree_alias, start_from):
"""Climbs up the site tree to mark items of current branch."""
if start_from is not None:
start_from.in_current_branch = True
if hasattr(start_from, 'parent') and start_from.parent is not None:
self.tree_climber(tree_alias, self.get_item_by_id(tree_alias, start_from.parent.id))
def breadcrumbs_climber(self, tree_alias, start_from):
"""Climbs up the site tree to build breadcrumb path."""
if start_from.inbreadcrumbs and start_from.hidden == False and self.check_access(start_from,
self._global_context):
self.cache_breadcrumbs.append(start_from)
if hasattr(start_from, 'parent') and start_from.parent is not None:
self.breadcrumbs_climber(tree_alias, self.get_item_by_id(tree_alias, start_from.parent.id))
def resolve_var(self, varname, context=None):
"""Tries to resolve name as a variable in a given context.
If no context specified 'global_context' is considered
as context.
"""
if context is None:
context = self._global_context
if isinstance(varname, FilterExpression):
varname = varname.resolve(context)
else:
varname = varname.strip()
try:
varname = Variable(varname).resolve(context)
except VariableDoesNotExist:
varname = varname
return varname
class SiteTreeError(Exception):
"""Exception class for sitetree application."""
|