/* * KINGSTAR MEDIA SOLUTIONS Co.,LTD. Copyright c 2005-2013. All rights reserved. * * This source code is the property of KINGSTAR MEDIA SOLUTIONS LTD. It is intended * only for the use of KINGSTAR MEDIA application development. Reengineering, reproduction * arose from modification of the original source, or other redistribution of this source * is not permitted without written permission of the KINGSTAR MEDIA SOLUTIONS LTD. */ package me.chanjar.weixin.mp.util.json; import com.google.gson.JsonElement; import com.google.gson.JsonObject; import com.google.gson.JsonSerializationContext; import com.google.gson.JsonSerializer; import me.chanjar.weixin.common.api.WxConsts; import me.chanjar.weixin.mp.bean.WxMpMassGroupMessage; import java.lang.reflect.Type; public class WxMpMassGroupMessageGsonAdapter implements JsonSerializer<WxMpMassGroupMessage> { public JsonElement serialize(WxMpMassGroupMessage message, Type typeOfSrc, JsonSerializationContext context) { JsonObject messageJson = new JsonObject(); JsonObject filter = new JsonObject(); if(null == message.getGroupId()) { filter.addProperty("is_to_all", true); } else { filter.addProperty("is_to_all", false); filter.addProperty("group_id", message.getGroupId()); } messageJson.add("filter", filter); if (WxConsts.MASS_MSG_NEWS.equals(message.getMsgtype())) { JsonObject sub = new JsonObject(); sub.addProperty("media_id", message.getMediaId()); messageJson.add(WxConsts.MASS_MSG_NEWS, sub); } if (WxConsts.MASS_MSG_TEXT.equals(message.getMsgtype())) { JsonObject sub = new JsonObject(); sub.addProperty("content", message.getContent()); messageJson.add(WxConsts.MASS_MSG_TEXT, sub); } if (WxConsts.MASS_MSG_VOICE.equals(message.getMsgtype())) { JsonObject sub = new JsonObject(); sub.addProperty("media_id", message.getMediaId()); messageJson.add(WxConsts.MASS_MSG_VOICE, sub); } if (WxConsts.MASS_MSG_IMAGE.equals(message.getMsgtype())) { JsonObject sub = new JsonObject(); sub.addProperty("media_id", message.getMediaId()); messageJson.add(WxConsts.MASS_MSG_IMAGE, sub); } if (WxConsts.MASS_MSG_VIDEO.equals(message.getMsgtype())) { JsonObject sub = new JsonObject(); sub.addProperty("media_id", message.getMediaId()); messageJson.add(WxConsts.MASS_MSG_VIDEO, sub); } messageJson.addProperty("msgtype", message.getMsgtype()); return messageJson; } }