forked from 00dani/lemoncurry
16 lines
414 B
Python
16 lines
414 B
Python
from django.apps import apps
|
|
from django.conf import settings
|
|
|
|
from .convert import id_to_abc
|
|
|
|
prefixes = {}
|
|
|
|
|
|
def short_url(entity):
|
|
if not prefixes:
|
|
for k, m in settings.SHORTEN_MODELS.items():
|
|
prefixes[apps.get_model(m)] = k
|
|
base = '/'
|
|
if hasattr(settings, 'SHORT_BASE_URL'):
|
|
base = settings.SHORT_BASE_URL
|
|
return base + prefixes[type(entity)] + id_to_abc(entity.id)
|