2017-05-01 07:29:56 +02:00
# Generated by Django 1.11.2 on 2017-06-18 21:26
import os
2017-11-16 00:44:00 +01:00
import ujson
2017-05-01 07:29:56 +02:00
from django . db import migrations , models
2020-04-27 07:19:08 +02:00
from django . db . backends . postgresql . schema import DatabaseSchemaEditor
2017-05-01 07:29:56 +02:00
from django . db . migrations . state import StateApps
2020-01-14 21:59:46 +01:00
2017-10-26 11:36:30 +02:00
def populate_new_fields ( apps : StateApps , schema_editor : DatabaseSchemaEditor ) - > None :
2017-05-01 07:29:56 +02:00
# Open the JSON file which contains the data to be used for migration.
MIGRATION_DATA_PATH = os . path . join ( os . path . dirname ( os . path . dirname ( __file__ ) ) , " management " , " data " )
path_to_unified_reactions = os . path . join ( MIGRATION_DATA_PATH , " unified_reactions.json " )
unified_reactions = ujson . load ( open ( path_to_unified_reactions ) )
Reaction = apps . get_model ( ' zerver ' , ' Reaction ' )
for reaction in Reaction . objects . all ( ) :
reaction . emoji_code = unified_reactions . get ( reaction . emoji_name )
if reaction . emoji_code is None :
# If it's not present in the unified_reactions map, it's a realm emoji.
reaction . emoji_code = reaction . emoji_name
if reaction . emoji_name == ' zulip ' :
# `:zulip:` emoji is a zulip special custom emoji.
reaction . reaction_type = ' zulip_extra_emoji '
else :
reaction . reaction_type = ' realm_emoji '
reaction . save ( )
class Migration ( migrations . Migration ) :
dependencies = [
( ' zerver ' , ' 0096_add_password_required ' ) ,
]
operations = [
migrations . AddField (
model_name = ' reaction ' ,
name = ' emoji_code ' ,
field = models . TextField ( default = ' unset ' ) ,
preserve_default = False ,
) ,
migrations . AddField (
model_name = ' reaction ' ,
name = ' reaction_type ' ,
2018-03-17 01:16:18 +01:00
field = models . CharField ( choices = [ ( ' unicode_emoji ' , ' Unicode emoji ' ) , ( ' realm_emoji ' , ' Custom emoji ' ) , ( ' zulip_extra_emoji ' , ' Zulip extra emoji ' ) ] , default = ' unicode_emoji ' , max_length = 30 ) ,
2017-05-01 07:29:56 +02:00
) ,
migrations . RunPython ( populate_new_fields ,
2020-04-29 08:43:25 +02:00
reverse_code = migrations . RunPython . noop ,
elidable = True ) ,
2017-05-01 07:29:56 +02:00
]