2018-08-16 01:26:55 +02:00
|
|
|
from django.conf import settings
|
|
|
|
|
|
|
|
from zerver.lib.upload import upload_backend
|
|
|
|
from zerver.models import Realm
|
|
|
|
|
2019-01-27 08:25:10 +01:00
|
|
|
def realm_logo_url(realm: Realm, night: bool) -> str:
|
|
|
|
return get_realm_logo_url(realm, night)
|
2018-08-16 01:26:55 +02:00
|
|
|
|
2019-01-27 08:25:10 +01:00
|
|
|
def get_realm_logo_url(realm: Realm, night: bool) -> str:
|
|
|
|
if not night:
|
|
|
|
if realm.logo_source == 'U':
|
|
|
|
return upload_backend.get_realm_logo_url(realm.id, realm.logo_version, night)
|
|
|
|
else:
|
|
|
|
return settings.DEFAULT_LOGO_URI+'?version=0'
|
2018-08-16 01:26:55 +02:00
|
|
|
else:
|
2019-01-27 08:25:10 +01:00
|
|
|
if realm.night_logo_source == 'U':
|
|
|
|
return upload_backend.get_realm_logo_url(realm.id, realm.night_logo_version, night)
|
|
|
|
else:
|
|
|
|
return settings.DEFAULT_LOGO_URI+'?version=0'
|