2017-08-30 02:19:34 +02:00
|
|
|
# Generated by Django 1.11.4 on 2017-08-30 00:26
|
2020-08-07 01:09:47 +02:00
|
|
|
import orjson
|
2017-11-16 00:44:00 +01:00
|
|
|
from django.db import connection, migrations
|
2023-03-04 01:40:40 +01:00
|
|
|
from django.db.backends.base.schema import BaseDatabaseSchemaEditor
|
2017-08-30 02:19:34 +02:00
|
|
|
from django.db.migrations.state import StateApps
|
2020-06-09 11:58:27 +02:00
|
|
|
from psycopg2.sql import SQL
|
2017-08-30 02:19:34 +02:00
|
|
|
|
2020-01-14 21:59:46 +01:00
|
|
|
|
2022-05-27 23:33:51 +02:00
|
|
|
def convert_muted_topics(apps: StateApps, schema_editor: BaseDatabaseSchemaEditor) -> None:
|
2021-02-12 08:19:30 +01:00
|
|
|
stream_query = SQL(
|
2021-02-12 08:20:45 +01:00
|
|
|
"""
|
2017-08-30 02:19:34 +02:00
|
|
|
SELECT
|
|
|
|
zerver_stream.name,
|
|
|
|
zerver_stream.realm_id,
|
|
|
|
zerver_stream.id,
|
|
|
|
zerver_recipient.id
|
|
|
|
FROM
|
|
|
|
zerver_stream
|
|
|
|
INNER JOIN zerver_recipient ON (
|
|
|
|
zerver_recipient.type_id = zerver_stream.id AND
|
|
|
|
zerver_recipient.type = 2
|
|
|
|
)
|
2021-02-12 08:20:45 +01:00
|
|
|
"""
|
2021-02-12 08:19:30 +01:00
|
|
|
)
|
2017-08-30 02:19:34 +02:00
|
|
|
|
|
|
|
stream_dict = {}
|
|
|
|
|
|
|
|
with connection.cursor() as cursor:
|
|
|
|
cursor.execute(stream_query)
|
|
|
|
rows = cursor.fetchall()
|
2023-02-02 04:35:24 +01:00
|
|
|
for stream_name, realm_id, stream_id, recipient_id in rows:
|
2017-08-30 02:19:34 +02:00
|
|
|
stream_name = stream_name.lower()
|
|
|
|
stream_dict[(stream_name, realm_id)] = (stream_id, recipient_id)
|
|
|
|
|
|
|
|
UserProfile = apps.get_model("zerver", "UserProfile")
|
|
|
|
MutedTopic = apps.get_model("zerver", "MutedTopic")
|
|
|
|
|
|
|
|
new_objs = []
|
|
|
|
|
|
|
|
user_query = UserProfile.objects.values(
|
2021-02-12 08:20:45 +01:00
|
|
|
"id",
|
|
|
|
"realm_id",
|
|
|
|
"muted_topics",
|
2017-08-30 02:19:34 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
for row in user_query:
|
2021-02-12 08:20:45 +01:00
|
|
|
user_profile_id = row["id"]
|
|
|
|
realm_id = row["realm_id"]
|
|
|
|
muted_topics = row["muted_topics"]
|
2017-08-30 02:19:34 +02:00
|
|
|
|
2020-08-07 01:09:47 +02:00
|
|
|
tups = orjson.loads(muted_topics)
|
2023-02-02 04:35:24 +01:00
|
|
|
for stream_name, topic_name in tups:
|
2017-08-30 02:19:34 +02:00
|
|
|
stream_name = stream_name.lower()
|
|
|
|
val = stream_dict.get((stream_name, realm_id))
|
|
|
|
if val is not None:
|
|
|
|
stream_id, recipient_id = val
|
|
|
|
muted_topic = MutedTopic(
|
|
|
|
user_profile_id=user_profile_id,
|
|
|
|
stream_id=stream_id,
|
|
|
|
recipient_id=recipient_id,
|
|
|
|
topic_name=topic_name,
|
|
|
|
)
|
|
|
|
new_objs.append(muted_topic)
|
|
|
|
|
|
|
|
with connection.cursor() as cursor:
|
2021-02-12 08:20:45 +01:00
|
|
|
cursor.execute("DELETE from zerver_mutedtopic")
|
2017-08-30 02:19:34 +02:00
|
|
|
|
|
|
|
MutedTopic.objects.bulk_create(new_objs)
|
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
2017-08-30 02:19:34 +02:00
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
2021-02-12 08:20:45 +01:00
|
|
|
("zerver", "0101_muted_topic"),
|
2017-08-30 02:19:34 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
operations = [
|
2020-04-29 08:43:25 +02:00
|
|
|
migrations.RunPython(convert_muted_topics, elidable=True),
|
2017-08-30 02:19:34 +02:00
|
|
|
]
|