2021-06-03 15:22:16 +02:00
|
|
|
from rest_framework import serializers
|
2023-06-08 12:52:25 +02:00
|
|
|
from django.utils import timezone
|
2021-06-03 15:22:16 +02:00
|
|
|
from ee.models.property_definition import EnterprisePropertyDefinition
|
|
|
|
from posthog.api.shared import UserBasicSerializer
|
2022-02-18 17:47:05 +01:00
|
|
|
from posthog.api.tagged_item import TaggedItemSerializerMixin
|
2023-04-24 13:18:18 +02:00
|
|
|
from posthog.models import PropertyDefinition
|
2023-10-26 12:38:15 +02:00
|
|
|
from posthog.models.activity_logging.activity_log import (
|
|
|
|
dict_changes_between,
|
|
|
|
log_activity,
|
|
|
|
Detail,
|
|
|
|
)
|
2024-01-11 13:33:10 +01:00
|
|
|
from loginas.utils import is_impersonated_session
|
2021-06-03 15:22:16 +02:00
|
|
|
|
|
|
|
|
2022-02-18 17:47:05 +01:00
|
|
|
class EnterprisePropertyDefinitionSerializer(TaggedItemSerializerMixin, serializers.ModelSerializer):
|
2021-06-10 01:45:42 +02:00
|
|
|
updated_by = UserBasicSerializer(read_only=True)
|
2023-06-08 12:52:25 +02:00
|
|
|
verified_by = UserBasicSerializer(read_only=True)
|
2021-06-03 15:22:16 +02:00
|
|
|
|
|
|
|
class Meta:
|
|
|
|
model = EnterprisePropertyDefinition
|
|
|
|
fields = (
|
|
|
|
"id",
|
|
|
|
"name",
|
|
|
|
"description",
|
|
|
|
"tags",
|
|
|
|
"is_numerical",
|
|
|
|
"updated_at",
|
|
|
|
"updated_by",
|
2023-01-23 09:59:37 +01:00
|
|
|
"is_seen_on_filtered_events",
|
2021-12-22 11:48:15 +01:00
|
|
|
"property_type",
|
2023-06-08 12:52:25 +02:00
|
|
|
"verified",
|
|
|
|
"verified_at",
|
|
|
|
"verified_by",
|
2021-06-03 15:22:16 +02:00
|
|
|
)
|
2023-06-08 12:52:25 +02:00
|
|
|
read_only_fields = [
|
|
|
|
"id",
|
|
|
|
"name",
|
|
|
|
"is_numerical",
|
|
|
|
"is_seen_on_filtered_events",
|
|
|
|
"verified_at",
|
|
|
|
"verified_by",
|
|
|
|
]
|
2021-06-03 15:22:16 +02:00
|
|
|
|
2023-04-24 13:18:18 +02:00
|
|
|
def update(self, property_definition: EnterprisePropertyDefinition, validated_data):
|
2021-06-03 15:22:16 +02:00
|
|
|
validated_data["updated_by"] = self.context["request"].user
|
2022-07-20 14:55:25 +02:00
|
|
|
if "property_type" in validated_data:
|
|
|
|
if validated_data["property_type"] == "Numeric":
|
|
|
|
validated_data["is_numerical"] = True
|
|
|
|
else:
|
|
|
|
validated_data["is_numerical"] = False
|
|
|
|
|
2023-06-08 12:52:25 +02:00
|
|
|
if "verified" in validated_data:
|
|
|
|
if validated_data["verified"] and not property_definition.verified:
|
|
|
|
# Verify property only if previously unverified
|
|
|
|
validated_data["verified_by"] = self.context["request"].user
|
|
|
|
validated_data["verified_at"] = timezone.now()
|
|
|
|
validated_data["verified"] = True
|
|
|
|
elif not validated_data["verified"]:
|
|
|
|
# Unverifying property nullifies verified properties
|
|
|
|
validated_data["verified_by"] = None
|
|
|
|
validated_data["verified_at"] = None
|
|
|
|
validated_data["verified"] = False
|
|
|
|
else:
|
|
|
|
# Attempting to re-verify an already verified property, invalid action. Ignore attribute.
|
|
|
|
validated_data.pop("verified")
|
|
|
|
|
2023-04-24 13:18:18 +02:00
|
|
|
before_state = {
|
|
|
|
k: property_definition.__dict__[k] for k in validated_data.keys() if k in property_definition.__dict__
|
|
|
|
}
|
|
|
|
# KLUDGE: if we get a None value for tags, and we're not adding any
|
|
|
|
# then we get an activity log that we went from null to the empty array ¯\_(ツ)_/¯
|
|
|
|
if "tags" not in before_state or before_state["tags"] is None:
|
|
|
|
before_state["tags"] = []
|
|
|
|
|
|
|
|
changes = dict_changes_between("PropertyDefinition", before_state, validated_data, True)
|
|
|
|
|
|
|
|
log_activity(
|
|
|
|
organization_id=None,
|
|
|
|
team_id=self.context["team_id"],
|
|
|
|
user=self.context["request"].user,
|
2024-01-11 13:33:10 +01:00
|
|
|
was_impersonated=is_impersonated_session(self.context["request"]),
|
2023-04-24 13:18:18 +02:00
|
|
|
item_id=str(property_definition.id),
|
|
|
|
scope="PropertyDefinition",
|
|
|
|
activity="changed",
|
|
|
|
detail=Detail(
|
|
|
|
name=str(property_definition.name),
|
|
|
|
type=PropertyDefinition.Type(property_definition.type).label,
|
|
|
|
changes=changes,
|
|
|
|
),
|
|
|
|
)
|
|
|
|
|
|
|
|
return super().update(property_definition, validated_data)
|