2020-09-12 04:18:53 +02:00
|
|
|
from typing import Optional
|
2022-05-12 06:27:31 +02:00
|
|
|
from urllib.parse import urlencode
|
2020-09-12 04:18:53 +02:00
|
|
|
|
2020-08-07 01:09:47 +02:00
|
|
|
import orjson
|
2020-01-29 20:41:23 +01:00
|
|
|
from django.conf import settings
|
2020-09-15 03:04:07 +02:00
|
|
|
from django.contrib.auth.views import redirect_to_login
|
2020-01-29 20:41:23 +01:00
|
|
|
from django.http import HttpRequest, HttpResponse, HttpResponseRedirect
|
2020-05-08 06:37:58 +02:00
|
|
|
from django.template.response import TemplateResponse
|
2020-01-29 20:41:23 +01:00
|
|
|
|
2022-12-15 20:27:17 +01:00
|
|
|
from corporate.lib.stripe import is_realm_on_free_trial
|
|
|
|
from corporate.models import get_customer_by_realm
|
2020-05-08 06:37:58 +02:00
|
|
|
from zerver.context_processors import get_realm_from_request, latest_info_context
|
2020-09-15 03:04:07 +02:00
|
|
|
from zerver.decorator import add_google_analytics
|
2022-11-17 09:30:48 +01:00
|
|
|
from zerver.lib.github import (
|
|
|
|
InvalidPlatformError,
|
|
|
|
get_latest_github_release_download_link_for_platform,
|
|
|
|
)
|
2022-08-30 07:47:43 +02:00
|
|
|
from zerver.lib.realm_description import get_realm_text_description
|
|
|
|
from zerver.lib.realm_icon import get_realm_icon_url
|
2021-06-10 03:59:43 +02:00
|
|
|
from zerver.lib.subdomains import is_subdomain_root_or_alias
|
2020-01-29 20:41:23 +01:00
|
|
|
from zerver.models import Realm
|
2020-06-11 00:54:34 +02:00
|
|
|
|
2020-01-29 20:41:23 +01:00
|
|
|
|
2020-05-08 06:37:58 +02:00
|
|
|
@add_google_analytics
|
2020-09-12 04:18:53 +02:00
|
|
|
def apps_view(request: HttpRequest, platform: Optional[str] = None) -> HttpResponse:
|
apps: Fix redirect from /apps -> https://zulip.com/apps/.
When this code was moved from being in zerver in 21a2fd482eae, it kept
the `if ZILENCER_ENABLED` blocks. Since ZILENCER and CORPORATE are
generally either both on or both off, the if statement became
mostly-unnecessary.
However, because tests cannot easily remove elements from
INSTALLED_APPS and re-determine URL resolution, we switch to checking
`if CORPORATE_ENABLED` as a guard, and leave these in-place.
The other side effect of this is that with e54ded49c44c, most Zulip
deployments started to 404 requests for `/apps` instead of redirecting
them to `https://zulip.com/apps/` since they no longer had any path
configured for `/apps`. Unfortunately, this URL is in widespread use
in the app (e.g. in links from the Welcome Bot), so we should ensure
that it does successfully redirect.
Add the `/apps` path to `zerver`, but only if not CORPORATE_ENABLED,
so the URLs do not overlap.
2022-12-16 15:17:00 +01:00
|
|
|
if not settings.CORPORATE_ENABLED:
|
|
|
|
# This seems impossible (CORPORATE_ENABLED set to false when
|
|
|
|
# rendering a "corporate" view) -- but we add it to make
|
|
|
|
# testing possible. Tests default to running with the
|
|
|
|
# "corporate" app installed, and unsetting that is difficult,
|
|
|
|
# as one cannot easily reload the URL resolution -- so we add
|
|
|
|
# a redirect here, equivalent to the one zerver would have
|
|
|
|
# installed when "corporate" is not enabled, to make the
|
|
|
|
# behaviour testable with CORPORATE_ENABLED set to false.
|
|
|
|
return HttpResponseRedirect("https://zulip.com/apps/", status=301)
|
|
|
|
return TemplateResponse(
|
|
|
|
request,
|
|
|
|
"corporate/apps.html",
|
|
|
|
)
|
2020-01-29 20:41:23 +01:00
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
2020-10-22 13:39:55 +02:00
|
|
|
def app_download_link_redirect(request: HttpRequest, platform: str) -> HttpResponse:
|
|
|
|
try:
|
|
|
|
download_link = get_latest_github_release_download_link_for_platform(platform)
|
|
|
|
return HttpResponseRedirect(download_link, status=302)
|
2022-11-17 09:30:48 +01:00
|
|
|
except InvalidPlatformError:
|
2020-10-22 13:39:55 +02:00
|
|
|
return TemplateResponse(request, "404.html", status=404)
|
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
2020-05-08 06:37:58 +02:00
|
|
|
@add_google_analytics
|
2020-01-29 20:41:23 +01:00
|
|
|
def plans_view(request: HttpRequest) -> HttpResponse:
|
|
|
|
realm = get_realm_from_request(request)
|
2020-05-14 18:21:23 +02:00
|
|
|
free_trial_days = settings.FREE_TRIAL_DAYS
|
2020-06-09 12:24:32 +02:00
|
|
|
sponsorship_pending = False
|
2023-03-22 20:05:41 +01:00
|
|
|
sponsorship_url = "/upgrade/#sponsorship"
|
2021-06-10 03:59:43 +02:00
|
|
|
if is_subdomain_root_or_alias(request):
|
|
|
|
# If we're on the root domain, we make this link first ask you which organization.
|
2022-05-12 06:27:31 +02:00
|
|
|
sponsorship_url = f"/accounts/go/?{urlencode({'next': sponsorship_url})}"
|
2020-10-08 16:22:59 +02:00
|
|
|
realm_on_free_trial = False
|
2020-06-09 12:24:32 +02:00
|
|
|
|
2020-01-29 20:41:23 +01:00
|
|
|
if realm is not None:
|
2021-10-18 23:28:17 +02:00
|
|
|
if realm.plan_type == Realm.PLAN_TYPE_SELF_HOSTED and settings.PRODUCTION:
|
2021-02-12 08:20:45 +01:00
|
|
|
return HttpResponseRedirect("https://zulip.com/plans")
|
2020-01-29 20:41:23 +01:00
|
|
|
if not request.user.is_authenticated:
|
2021-06-15 22:23:45 +02:00
|
|
|
return redirect_to_login(next="/plans")
|
2020-07-15 22:18:32 +02:00
|
|
|
if request.user.is_guest:
|
|
|
|
return TemplateResponse(request, "404.html", status=404)
|
2022-12-15 20:27:17 +01:00
|
|
|
customer = get_customer_by_realm(realm)
|
|
|
|
if customer is not None:
|
|
|
|
sponsorship_pending = customer.sponsorship_pending
|
|
|
|
realm_on_free_trial = is_realm_on_free_trial(realm)
|
2020-06-09 12:24:32 +02:00
|
|
|
|
2020-05-08 06:37:58 +02:00
|
|
|
return TemplateResponse(
|
|
|
|
request,
|
2022-08-03 10:45:56 +02:00
|
|
|
"corporate/plans.html",
|
2021-02-12 08:19:30 +01:00
|
|
|
context={
|
2020-10-08 12:33:49 +02:00
|
|
|
"realm": realm,
|
2021-02-12 08:20:45 +01:00
|
|
|
"free_trial_days": free_trial_days,
|
2020-10-08 16:22:59 +02:00
|
|
|
"realm_on_free_trial": realm_on_free_trial,
|
2021-02-12 08:20:45 +01:00
|
|
|
"sponsorship_pending": sponsorship_pending,
|
2021-06-10 03:59:43 +02:00
|
|
|
"sponsorship_url": sponsorship_url,
|
2021-02-12 08:19:30 +01:00
|
|
|
},
|
2020-05-08 06:37:58 +02:00
|
|
|
)
|
2020-01-29 20:41:23 +01:00
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
2020-05-08 06:37:58 +02:00
|
|
|
@add_google_analytics
|
2020-01-29 20:41:23 +01:00
|
|
|
def team_view(request: HttpRequest) -> HttpResponse:
|
2020-04-07 19:27:07 +02:00
|
|
|
if not settings.ZILENCER_ENABLED:
|
2021-02-12 08:20:45 +01:00
|
|
|
return HttpResponseRedirect("https://zulip.com/team/", status=301)
|
2020-04-07 19:27:07 +02:00
|
|
|
|
|
|
|
try:
|
2020-08-07 01:09:47 +02:00
|
|
|
with open(settings.CONTRIBUTOR_DATA_FILE_PATH, "rb") as f:
|
|
|
|
data = orjson.loads(f.read())
|
2020-04-07 19:27:07 +02:00
|
|
|
except FileNotFoundError:
|
2021-02-12 08:20:45 +01:00
|
|
|
data = {"contributors": {}, "date": "Never ran."}
|
2020-01-29 20:41:23 +01:00
|
|
|
|
2020-05-08 06:37:58 +02:00
|
|
|
return TemplateResponse(
|
2020-01-29 20:41:23 +01:00
|
|
|
request,
|
2022-08-16 13:10:28 +02:00
|
|
|
"corporate/team.html",
|
2020-01-29 20:41:23 +01:00
|
|
|
context={
|
2021-02-12 08:20:45 +01:00
|
|
|
"page_params": {
|
|
|
|
"contributors": data["contributors"],
|
2020-01-29 20:41:23 +01:00
|
|
|
},
|
2021-02-12 08:20:45 +01:00
|
|
|
"date": data["date"],
|
2020-01-29 20:41:23 +01:00
|
|
|
},
|
|
|
|
)
|
2020-01-29 00:05:06 +01:00
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
2020-05-08 06:37:58 +02:00
|
|
|
@add_google_analytics
|
|
|
|
def landing_view(request: HttpRequest, template_name: str) -> HttpResponse:
|
2021-10-16 01:12:43 +02:00
|
|
|
return TemplateResponse(request, template_name, latest_info_context())
|
2020-05-08 06:37:58 +02:00
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
2020-05-08 06:37:58 +02:00
|
|
|
@add_google_analytics
|
|
|
|
def hello_view(request: HttpRequest) -> HttpResponse:
|
2022-08-16 13:27:45 +02:00
|
|
|
return TemplateResponse(request, "corporate/hello.html", latest_info_context())
|
2022-08-30 07:47:43 +02:00
|
|
|
|
|
|
|
|
|
|
|
@add_google_analytics
|
|
|
|
def communities_view(request: HttpRequest) -> HttpResponse:
|
|
|
|
eligible_realms = []
|
|
|
|
unique_org_type_ids = set()
|
|
|
|
want_to_be_advertised_realms = Realm.objects.filter(
|
|
|
|
want_advertise_in_communities_directory=True
|
|
|
|
).order_by("name")
|
|
|
|
for realm in want_to_be_advertised_realms:
|
2022-10-10 13:23:18 +02:00
|
|
|
open_to_public = not realm.invite_required and not realm.emails_restricted_to_domains
|
|
|
|
if realm.allow_web_public_streams_access() or open_to_public:
|
2022-08-30 07:47:43 +02:00
|
|
|
eligible_realms.append(
|
|
|
|
{
|
|
|
|
"id": realm.id,
|
|
|
|
"name": realm.name,
|
|
|
|
"realm_url": realm.uri,
|
|
|
|
"logo_url": get_realm_icon_url(realm),
|
|
|
|
"description": get_realm_text_description(realm),
|
|
|
|
"org_type_key": [
|
|
|
|
org_type
|
|
|
|
for org_type in Realm.ORG_TYPES
|
|
|
|
if Realm.ORG_TYPES[org_type]["id"] == realm.org_type
|
|
|
|
][0],
|
|
|
|
}
|
|
|
|
)
|
|
|
|
unique_org_type_ids.add(realm.org_type)
|
|
|
|
|
|
|
|
# Remove org_types for which there are no open organizations.
|
|
|
|
org_types = dict()
|
|
|
|
for org_type in Realm.ORG_TYPES:
|
|
|
|
if Realm.ORG_TYPES[org_type]["id"] in unique_org_type_ids:
|
|
|
|
org_types[org_type] = Realm.ORG_TYPES[org_type]
|
|
|
|
|
|
|
|
# Remove `Unspecified` ORG_TYPE
|
|
|
|
org_types.pop("unspecified", None)
|
|
|
|
|
2022-09-13 13:18:13 +02:00
|
|
|
# Change display name of non-profit orgs.
|
|
|
|
if org_types.get("nonprofit"):
|
|
|
|
org_types["nonprofit"]["name"] = "Non-profit"
|
|
|
|
|
2022-08-30 07:47:43 +02:00
|
|
|
return TemplateResponse(
|
|
|
|
request,
|
|
|
|
"corporate/communities.html",
|
|
|
|
context={
|
|
|
|
"eligible_realms": eligible_realms,
|
|
|
|
"org_types": org_types,
|
|
|
|
},
|
|
|
|
)
|