/* * Copyright (c) 2020 WildFireChat. All rights reserved. */ import wfc from "../../client/wfc"; import MessageContentType from "../messageContentType"; import GroupNotificationContent from "./groupNotification"; export default class ChangeGroupNameNotification extends GroupNotificationContent { operator = ""; name = ""; constructor(operator, name) { super(MessageContentType.ChangeGroupName_Notification); this.operator = operator; this.name = name; } formatNotification() { if (this.fromSelf) { return "您修改群名称为:" + this.name; } else { return wfc.getGroupMemberDisplayName(this.groupId, this.operator) + "修改群名称为:" + this.name; } } encode() { let payload = super.encode(); let obj = { g: this.groupId, n: this.name, o: this.operator, }; payload.binaryContent = wfc.utf8_to_b64(JSON.stringify(obj)); return payload; } decode(payload) { super.decode(payload); let json = wfc.b64_to_utf8(payload.binaryContent); let obj = JSON.parse(json); this.groupId = obj.g; this.operator = obj.o; this.name = obj.n; } }