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
|
2020-04-27 07:19:08 +02:00
|
|
|
from django.db.backends.postgresql.schema import DatabaseSchemaEditor
|
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
|
|
|
|
2017-10-26 11:36:30 +02:00
|
|
|
def convert_muted_topics(apps: StateApps, schema_editor: DatabaseSchemaEditor) -> None:
|
2020-06-09 11:58:27 +02:00
|
|
|
stream_query = SQL('''
|
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
|
|
|
|
)
|
2020-06-09 11:58:27 +02:00
|
|
|
''')
|
2017-08-30 02:19:34 +02:00
|
|
|
|
|
|
|
stream_dict = {}
|
|
|
|
|
|
|
|
with connection.cursor() as cursor:
|
|
|
|
cursor.execute(stream_query)
|
|
|
|
rows = cursor.fetchall()
|
|
|
|
for (stream_name, realm_id, stream_id, recipient_id) in rows:
|
|
|
|
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(
|
|
|
|
'id',
|
|
|
|
'realm_id',
|
python: Use trailing commas consistently.
Automatically generated by the following script, based on the output
of lint with flake8-comma:
import re
import sys
last_filename = None
last_row = None
lines = []
for msg in sys.stdin:
m = re.match(
r"\x1b\[35mflake8 \|\x1b\[0m \x1b\[1;31m(.+):(\d+):(\d+): (\w+)", msg
)
if m:
filename, row_str, col_str, err = m.groups()
row, col = int(row_str), int(col_str)
if filename == last_filename:
assert last_row != row
else:
if last_filename is not None:
with open(last_filename, "w") as f:
f.writelines(lines)
with open(filename) as f:
lines = f.readlines()
last_filename = filename
last_row = row
line = lines[row - 1]
if err in ["C812", "C815"]:
lines[row - 1] = line[: col - 1] + "," + line[col - 1 :]
elif err in ["C819"]:
assert line[col - 2] == ","
lines[row - 1] = line[: col - 2] + line[col - 1 :].lstrip(" ")
if last_filename is not None:
with open(last_filename, "w") as f:
f.writelines(lines)
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-04-10 05:23:40 +02:00
|
|
|
'muted_topics',
|
2017-08-30 02:19:34 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
for row in user_query:
|
|
|
|
user_profile_id = row['id']
|
|
|
|
realm_id = row['realm_id']
|
|
|
|
muted_topics = row['muted_topics']
|
|
|
|
|
2020-08-07 01:09:47 +02:00
|
|
|
tups = orjson.loads(muted_topics)
|
2017-08-30 02:19:34 +02:00
|
|
|
for (stream_name, topic_name) in tups:
|
|
|
|
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:
|
|
|
|
cursor.execute('DELETE from zerver_mutedtopic')
|
|
|
|
|
|
|
|
MutedTopic.objects.bulk_create(new_objs)
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
|
|
|
dependencies = [
|
|
|
|
('zerver', '0101_muted_topic'),
|
|
|
|
]
|
|
|
|
|
|
|
|
operations = [
|
2020-04-29 08:43:25 +02:00
|
|
|
migrations.RunPython(convert_muted_topics, elidable=True),
|
2017-08-30 02:19:34 +02:00
|
|
|
]
|