mirror of
https://github.com/zulip/zulip.git
synced 2025-11-01 20:44:04 +00:00
This is useful in the support view in case the audit log data is stale and user counts are not updated for billing. Also, renames formatting function for optional datetimes that is used in the support and activity views/charts. And instead of showing these datetime strings in the eastern US timezone, we now show and label them as UTC.
414 lines
15 KiB
Python
414 lines
15 KiB
Python
from collections import defaultdict
|
|
from dataclasses import dataclass
|
|
from datetime import datetime
|
|
from decimal import Decimal
|
|
from typing import Any, Callable, Dict, List, Optional, Sequence, Union
|
|
from urllib.parse import urlencode
|
|
|
|
from django.conf import settings
|
|
from django.db import connection
|
|
from django.db.backends.utils import CursorWrapper
|
|
from django.db.models import Prefetch
|
|
from django.template import loader
|
|
from django.urls import reverse
|
|
from django.utils.timezone import now as timezone_now
|
|
from markupsafe import Markup
|
|
from psycopg2.sql import Composable
|
|
|
|
from corporate.lib.stripe import (
|
|
RealmBillingSession,
|
|
RemoteRealmBillingSession,
|
|
RemoteServerBillingSession,
|
|
)
|
|
from corporate.models import Customer, CustomerPlan, LicenseLedger
|
|
from zerver.lib.pysa import mark_sanitized
|
|
from zerver.lib.url_encoding import append_url_query_string
|
|
from zerver.lib.utils import assert_is_not_none
|
|
from zerver.models import Realm
|
|
from zilencer.models import (
|
|
RemoteCustomerUserCount,
|
|
RemoteRealm,
|
|
RemoteRealmAuditLog,
|
|
RemoteZulipServer,
|
|
get_remote_customer_user_count,
|
|
)
|
|
|
|
|
|
@dataclass
|
|
class RemoteActivityPlanData:
|
|
current_status: str
|
|
current_plan_name: str
|
|
annual_revenue: int
|
|
rate: str
|
|
|
|
|
|
def make_table(
|
|
title: str,
|
|
cols: Sequence[str],
|
|
rows: Sequence[Any],
|
|
*,
|
|
totals: Optional[Any] = None,
|
|
stats_link: Optional[Markup] = None,
|
|
has_row_class: bool = False,
|
|
) -> str:
|
|
if not has_row_class:
|
|
|
|
def fix_row(row: Any) -> Dict[str, Any]:
|
|
return dict(cells=row, row_class=None)
|
|
|
|
rows = list(map(fix_row, rows))
|
|
|
|
data = dict(title=title, cols=cols, rows=rows, totals=totals, stats_link=stats_link)
|
|
|
|
content = loader.render_to_string(
|
|
"corporate/activity/activity_table.html",
|
|
dict(data=data),
|
|
)
|
|
|
|
return content
|
|
|
|
|
|
def fix_rows(
|
|
rows: List[List[Any]],
|
|
i: int,
|
|
fixup_func: Union[Callable[[str], Markup], Callable[[datetime], str], Callable[[int], int]],
|
|
) -> None:
|
|
for row in rows:
|
|
row[i] = fixup_func(row[i])
|
|
|
|
|
|
def get_query_data(query: Composable) -> List[List[Any]]:
|
|
cursor = connection.cursor()
|
|
cursor.execute(query)
|
|
rows = cursor.fetchall()
|
|
rows = list(map(list, rows))
|
|
cursor.close()
|
|
return rows
|
|
|
|
|
|
def dictfetchall(cursor: CursorWrapper) -> List[Dict[str, Any]]:
|
|
"""Returns all rows from a cursor as a dict"""
|
|
desc = cursor.description
|
|
return [dict(zip((col[0] for col in desc), row)) for row in cursor.fetchall()]
|
|
|
|
|
|
def format_optional_datetime(date: Optional[datetime], display_none: bool = False) -> str:
|
|
if date:
|
|
return date.strftime("%Y-%m-%d %H:%M")
|
|
elif display_none:
|
|
return "None"
|
|
else:
|
|
return ""
|
|
|
|
|
|
def format_none_as_zero(value: Optional[int]) -> int:
|
|
if value:
|
|
return value
|
|
else:
|
|
return 0
|
|
|
|
|
|
def user_activity_link(email: str, user_profile_id: int) -> Markup:
|
|
from corporate.views.user_activity import get_user_activity
|
|
|
|
url = reverse(get_user_activity, kwargs=dict(user_profile_id=user_profile_id))
|
|
return Markup('<a href="{url}">{email}</a>').format(url=url, email=email)
|
|
|
|
|
|
def realm_activity_link(realm_str: str) -> Markup:
|
|
from corporate.views.realm_activity import get_realm_activity
|
|
|
|
url = reverse(get_realm_activity, kwargs=dict(realm_str=realm_str))
|
|
return Markup('<a href="{url}">{realm_str}</a>').format(url=url, realm_str=realm_str)
|
|
|
|
|
|
def realm_stats_link(realm_str: str) -> Markup:
|
|
from analytics.views.stats import stats_for_realm
|
|
|
|
url = reverse(stats_for_realm, kwargs=dict(realm_str=realm_str))
|
|
return Markup('<a href="{url}"><i class="fa fa-pie-chart"></i></a>').format(url=url)
|
|
|
|
|
|
def realm_support_link(realm_str: str) -> Markup:
|
|
support_url = reverse("support")
|
|
query = urlencode({"q": realm_str})
|
|
url = append_url_query_string(support_url, query)
|
|
return Markup('<a href="{url}"><i class="fa fa-gear"></i></a>').format(url=url)
|
|
|
|
|
|
def realm_url_link(realm_str: str) -> Markup:
|
|
host = Realm.host_for_subdomain(realm_str)
|
|
url = settings.EXTERNAL_URI_SCHEME + mark_sanitized(host)
|
|
return Markup('<a href="{url}"><i class="fa fa-home"></i></a>').format(url=url)
|
|
|
|
|
|
def remote_installation_stats_link(server_id: int) -> Markup:
|
|
from analytics.views.stats import stats_for_remote_installation
|
|
|
|
url = reverse(stats_for_remote_installation, kwargs=dict(remote_server_id=server_id))
|
|
return Markup('<a href="{url}"><i class="fa fa-pie-chart"></i></a>').format(url=url)
|
|
|
|
|
|
def remote_installation_support_link(hostname: str) -> Markup:
|
|
support_url = reverse("remote_servers_support")
|
|
query = urlencode({"q": hostname})
|
|
url = append_url_query_string(support_url, query)
|
|
return Markup('<a href="{url}"><i class="fa fa-gear"></i></a>').format(url=url)
|
|
|
|
|
|
def get_plan_rate_percentage(discount: Optional[Decimal]) -> str:
|
|
if discount is None or discount == Decimal(0):
|
|
return "100%"
|
|
|
|
rate = 100 - discount
|
|
if rate * 100 % 100 == 0:
|
|
precision = 0
|
|
else:
|
|
precision = 2
|
|
return f"{rate:.{precision}f}%"
|
|
|
|
|
|
def get_remote_activity_plan_data(
|
|
plan: CustomerPlan,
|
|
license_ledger: LicenseLedger,
|
|
*,
|
|
remote_realm: Optional[RemoteRealm] = None,
|
|
remote_server: Optional[RemoteZulipServer] = None,
|
|
) -> RemoteActivityPlanData:
|
|
if plan.tier == CustomerPlan.TIER_SELF_HOSTED_LEGACY or plan.status in (
|
|
CustomerPlan.DOWNGRADE_AT_END_OF_FREE_TRIAL,
|
|
CustomerPlan.DOWNGRADE_AT_END_OF_CYCLE,
|
|
):
|
|
renewal_cents = 0
|
|
current_rate = "---"
|
|
elif plan.tier == CustomerPlan.TIER_SELF_HOSTED_COMMUNITY:
|
|
renewal_cents = 0
|
|
current_rate = "0%"
|
|
elif remote_realm is not None:
|
|
renewal_cents = RemoteRealmBillingSession(
|
|
remote_realm=remote_realm
|
|
).get_customer_plan_renewal_amount(plan, license_ledger)
|
|
current_rate = get_plan_rate_percentage(plan.discount)
|
|
else:
|
|
assert remote_server is not None
|
|
renewal_cents = RemoteServerBillingSession(
|
|
remote_server=remote_server
|
|
).get_customer_plan_renewal_amount(plan, license_ledger)
|
|
current_rate = get_plan_rate_percentage(plan.discount)
|
|
|
|
if plan.billing_schedule == CustomerPlan.BILLING_SCHEDULE_MONTHLY:
|
|
renewal_cents *= 12
|
|
|
|
return RemoteActivityPlanData(
|
|
current_status=plan.get_plan_status_as_text(),
|
|
current_plan_name=plan.name,
|
|
annual_revenue=renewal_cents,
|
|
rate=current_rate,
|
|
)
|
|
|
|
|
|
def get_realms_with_default_discount_dict() -> Dict[str, Decimal]:
|
|
realms_with_default_discount: Dict[str, Any] = {}
|
|
customers = (
|
|
Customer.objects.exclude(default_discount=None)
|
|
.exclude(default_discount=0)
|
|
.exclude(realm=None)
|
|
)
|
|
for customer in customers:
|
|
assert customer.realm is not None
|
|
realms_with_default_discount[customer.realm.string_id] = assert_is_not_none(
|
|
customer.default_discount
|
|
)
|
|
return realms_with_default_discount
|
|
|
|
|
|
def estimate_annual_recurring_revenue_by_realm() -> Dict[str, int]: # nocoverage
|
|
annual_revenue = {}
|
|
plans = (
|
|
CustomerPlan.objects.filter(
|
|
status=CustomerPlan.ACTIVE,
|
|
customer__remote_realm__isnull=True,
|
|
customer__remote_server__isnull=True,
|
|
)
|
|
.prefetch_related(
|
|
Prefetch(
|
|
"licenseledger_set",
|
|
queryset=LicenseLedger.objects.order_by("plan", "-id").distinct("plan"),
|
|
to_attr="latest_ledger_entry",
|
|
)
|
|
)
|
|
.select_related("customer__realm")
|
|
)
|
|
|
|
for plan in plans:
|
|
assert plan.customer.realm is not None
|
|
latest_ledger_entry = plan.latest_ledger_entry[0] # type: ignore[attr-defined] # attribute from prefetch_related query
|
|
assert latest_ledger_entry is not None
|
|
renewal_cents = RealmBillingSession(
|
|
realm=plan.customer.realm
|
|
).get_customer_plan_renewal_amount(plan, latest_ledger_entry)
|
|
if plan.billing_schedule == CustomerPlan.BILLING_SCHEDULE_MONTHLY:
|
|
renewal_cents *= 12
|
|
annual_revenue[plan.customer.realm.string_id] = renewal_cents
|
|
return annual_revenue
|
|
|
|
|
|
def get_plan_data_by_remote_server() -> Dict[int, RemoteActivityPlanData]: # nocoverage
|
|
remote_server_plan_data: Dict[int, RemoteActivityPlanData] = {}
|
|
plans = (
|
|
CustomerPlan.objects.filter(
|
|
status__lt=CustomerPlan.LIVE_STATUS_THRESHOLD,
|
|
customer__realm__isnull=True,
|
|
customer__remote_realm__isnull=True,
|
|
customer__remote_server__deactivated=False,
|
|
)
|
|
.prefetch_related(
|
|
Prefetch(
|
|
"licenseledger_set",
|
|
queryset=LicenseLedger.objects.order_by("plan", "-id").distinct("plan"),
|
|
to_attr="latest_ledger_entry",
|
|
)
|
|
)
|
|
.select_related("customer__remote_server")
|
|
)
|
|
|
|
for plan in plans:
|
|
server_id = None
|
|
assert plan.customer.remote_server is not None
|
|
server_id = plan.customer.remote_server.id
|
|
assert server_id is not None
|
|
|
|
latest_ledger_entry = plan.latest_ledger_entry[0] # type: ignore[attr-defined] # attribute from prefetch_related query
|
|
assert latest_ledger_entry is not None
|
|
|
|
plan_data = get_remote_activity_plan_data(
|
|
plan, latest_ledger_entry, remote_server=plan.customer.remote_server
|
|
)
|
|
|
|
current_data = remote_server_plan_data.get(server_id)
|
|
if current_data is not None:
|
|
current_revenue = remote_server_plan_data[server_id].annual_revenue
|
|
current_plans = remote_server_plan_data[server_id].current_plan_name
|
|
# There should only ever be one CustomerPlan for a remote server with
|
|
# a status that is less than the CustomerPlan.LIVE_STATUS_THRESHOLD.
|
|
remote_server_plan_data[server_id] = RemoteActivityPlanData(
|
|
current_status="ERROR: MULTIPLE PLANS",
|
|
current_plan_name=f"{current_plans}, {plan_data.current_plan_name}",
|
|
annual_revenue=current_revenue + plan_data.annual_revenue,
|
|
rate="",
|
|
)
|
|
else:
|
|
remote_server_plan_data[server_id] = plan_data
|
|
return remote_server_plan_data
|
|
|
|
|
|
def get_plan_data_by_remote_realm() -> Dict[int, Dict[int, RemoteActivityPlanData]]: # nocoverage
|
|
remote_server_plan_data_by_realm: Dict[int, Dict[int, RemoteActivityPlanData]] = {}
|
|
plans = (
|
|
CustomerPlan.objects.filter(
|
|
status__lt=CustomerPlan.LIVE_STATUS_THRESHOLD,
|
|
customer__realm__isnull=True,
|
|
customer__remote_server__isnull=True,
|
|
customer__remote_realm__is_system_bot_realm=False,
|
|
customer__remote_realm__realm_deactivated=False,
|
|
)
|
|
.prefetch_related(
|
|
Prefetch(
|
|
"licenseledger_set",
|
|
queryset=LicenseLedger.objects.order_by("plan", "-id").distinct("plan"),
|
|
to_attr="latest_ledger_entry",
|
|
)
|
|
)
|
|
.select_related("customer__remote_realm")
|
|
)
|
|
|
|
for plan in plans:
|
|
server_id = None
|
|
assert plan.customer.remote_realm is not None
|
|
server_id = plan.customer.remote_realm.server_id
|
|
assert server_id is not None
|
|
|
|
latest_ledger_entry = plan.latest_ledger_entry[0] # type: ignore[attr-defined] # attribute from prefetch_related query
|
|
assert latest_ledger_entry is not None
|
|
|
|
plan_data = get_remote_activity_plan_data(
|
|
plan, latest_ledger_entry, remote_realm=plan.customer.remote_realm
|
|
)
|
|
|
|
current_server_data = remote_server_plan_data_by_realm.get(server_id)
|
|
realm_id = plan.customer.remote_realm.id
|
|
|
|
if current_server_data is None:
|
|
realm_dict = {realm_id: plan_data}
|
|
remote_server_plan_data_by_realm[server_id] = realm_dict
|
|
else:
|
|
assert current_server_data is not None
|
|
current_realm_data = current_server_data.get(realm_id)
|
|
if current_realm_data is not None:
|
|
# There should only ever be one CustomerPlan for a remote realm with
|
|
# a status that is less than the CustomerPlan.LIVE_STATUS_THRESHOLD.
|
|
current_revenue = current_realm_data.annual_revenue
|
|
current_plans = current_realm_data.current_plan_name
|
|
current_server_data[realm_id] = RemoteActivityPlanData(
|
|
current_status="ERROR: MULTIPLE PLANS",
|
|
current_plan_name=f"{current_plans}, {plan_data.current_plan_name}",
|
|
annual_revenue=current_revenue + plan_data.annual_revenue,
|
|
rate="",
|
|
)
|
|
else:
|
|
current_server_data[realm_id] = plan_data
|
|
|
|
return remote_server_plan_data_by_realm
|
|
|
|
|
|
def get_remote_realm_user_counts(
|
|
event_time: datetime = timezone_now(),
|
|
) -> Dict[int, RemoteCustomerUserCount]: # nocoverage
|
|
user_counts_by_realm: Dict[int, RemoteCustomerUserCount] = {}
|
|
for log in (
|
|
RemoteRealmAuditLog.objects.filter(
|
|
event_type__in=RemoteRealmAuditLog.SYNCED_BILLING_EVENTS,
|
|
event_time__lte=event_time,
|
|
remote_realm__isnull=False,
|
|
)
|
|
# Important: extra_data is empty for some pre-2020 audit logs
|
|
# prior to the introduction of realm_user_count_by_role
|
|
# logging. Meanwhile, modern Zulip servers using
|
|
# bulk_create_users to create the users in the system bot
|
|
# realm also generate such audit logs. Such audit logs should
|
|
# never be the latest in a normal realm.
|
|
.exclude(extra_data={})
|
|
.order_by("remote_realm", "-event_time")
|
|
.distinct("remote_realm")
|
|
.select_related("remote_realm")
|
|
):
|
|
assert log.remote_realm is not None
|
|
user_counts_by_realm[log.remote_realm.id] = get_remote_customer_user_count([log])
|
|
|
|
return user_counts_by_realm
|
|
|
|
|
|
def get_remote_server_audit_logs(
|
|
event_time: datetime = timezone_now(),
|
|
) -> Dict[int, List[RemoteRealmAuditLog]]:
|
|
logs_per_server: Dict[int, List[RemoteRealmAuditLog]] = defaultdict(list)
|
|
for log in (
|
|
RemoteRealmAuditLog.objects.filter(
|
|
event_type__in=RemoteRealmAuditLog.SYNCED_BILLING_EVENTS,
|
|
event_time__lte=event_time,
|
|
)
|
|
# Important: extra_data is empty for some pre-2020 audit logs
|
|
# prior to the introduction of realm_user_count_by_role
|
|
# logging. Meanwhile, modern Zulip servers using
|
|
# bulk_create_users to create the users in the system bot
|
|
# realm also generate such audit logs. Such audit logs should
|
|
# never be the latest in a normal realm.
|
|
.exclude(extra_data={})
|
|
.order_by("server_id", "realm_id", "-event_time")
|
|
.distinct("server_id", "realm_id")
|
|
.select_related("server")
|
|
):
|
|
logs_per_server[log.server.id].append(log)
|
|
|
|
return logs_per_server
|