2020-06-11 00:54:34 +02:00
|
|
|
from typing import Dict, List
|
|
|
|
|
2020-08-07 01:09:47 +02:00
|
|
|
import orjson
|
2020-04-15 12:34:26 +02:00
|
|
|
from django.db import migrations
|
2020-06-03 04:09:50 +02:00
|
|
|
from django.db.backends.postgresql.schema import DatabaseSchemaEditor
|
2020-04-15 12:34:26 +02:00
|
|
|
from django.db.migrations.state import StateApps
|
2020-06-11 00:54:34 +02:00
|
|
|
|
2020-04-15 12:34:26 +02:00
|
|
|
|
|
|
|
def move_to_seperate_table(apps: StateApps, schema_editor: DatabaseSchemaEditor) -> None:
|
2021-02-12 08:20:45 +01:00
|
|
|
UserProfile = apps.get_model("zerver", "UserProfile")
|
|
|
|
AlertWord = apps.get_model("zerver", "AlertWord")
|
2020-04-15 12:34:26 +02:00
|
|
|
|
|
|
|
for user_profile in UserProfile.objects.all():
|
2020-08-07 01:09:47 +02:00
|
|
|
list_of_words = orjson.loads(user_profile.alert_words)
|
2020-04-27 20:04:38 +02:00
|
|
|
|
|
|
|
# Remove duplicates with our case-insensitive model.
|
|
|
|
word_dict: Dict[str, str] = {}
|
|
|
|
for word in list_of_words:
|
|
|
|
word_dict[word.lower()] = word
|
|
|
|
|
2020-04-15 12:34:26 +02:00
|
|
|
AlertWord.objects.bulk_create(
|
2020-04-27 20:04:38 +02:00
|
|
|
AlertWord(user_profile=user_profile, word=word, realm=user_profile.realm)
|
|
|
|
for word in word_dict.values()
|
|
|
|
)
|
2020-04-15 12:34:26 +02:00
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
2020-04-15 12:34:26 +02:00
|
|
|
def move_back_to_user_profile(apps: StateApps, schema_editor: DatabaseSchemaEditor) -> None:
|
2021-02-12 08:20:45 +01:00
|
|
|
AlertWord = apps.get_model("zerver", "AlertWord")
|
|
|
|
UserProfile = apps.get_model("zerver", "UserProfile")
|
2020-04-15 12:34:26 +02:00
|
|
|
|
|
|
|
user_ids_and_words = AlertWord.objects.all().values("user_profile_id", "word")
|
2020-09-02 08:14:51 +02:00
|
|
|
user_ids_with_words: Dict[int, List[str]] = {}
|
2020-04-15 12:34:26 +02:00
|
|
|
|
|
|
|
for id_and_word in user_ids_and_words:
|
|
|
|
user_ids_with_words.setdefault(id_and_word["user_profile_id"], [])
|
|
|
|
user_ids_with_words[id_and_word["user_profile_id"]].append(id_and_word["word"])
|
|
|
|
|
|
|
|
for (user_id, words) in user_ids_with_words.items():
|
|
|
|
user_profile = UserProfile.objects.get(id=user_id)
|
2020-08-07 01:09:47 +02:00
|
|
|
user_profile.alert_words = orjson.dumps(words).decode()
|
2021-02-12 08:20:45 +01:00
|
|
|
user_profile.save(update_fields=["alert_words"])
|
2020-04-15 12:34:26 +02:00
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
2020-04-15 12:34:26 +02:00
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
|
|
|
dependencies = [
|
2021-02-12 08:20:45 +01:00
|
|
|
("zerver", "0276_alertword"),
|
2020-04-15 12:34:26 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
operations = [
|
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
|
|
|
migrations.RunPython(move_to_seperate_table, move_back_to_user_profile, elidable=True),
|
2020-04-15 12:34:26 +02:00
|
|
|
]
|