add rservice app notify

master
luoyang 5 years ago
parent 59dff3dc39
commit 62748d309f

@ -9,7 +9,7 @@
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>manage</artifactId> <artifactId>manage</artifactId>
<version>1.4.35</version> <version>1.4.36</version>
<properties> <properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jib-maven-plugin.version>1.8.0</jib-maven-plugin.version> <jib-maven-plugin.version>1.8.0</jib-maven-plugin.version>

@ -217,7 +217,10 @@ public class RetailRSvcServiceImpl implements RetailRSvcService {
String title = params.getString("title"); String title = params.getString("title");
String body = params.getString("body"); String body = params.getString("body");
String url = decData(params.getString("url"), key, svcInfo.getString("platform_pri_key")); String url = decData(params.getString("url"), key, svcInfo.getString("platform_pri_key"));
sendRServiceNotifyMessage(client, title, body, url); if (StringUtils.equalsIgnoreCase("PINE", client.getString("client_moniker"))||
StringUtils.equalsIgnoreCase("TUTU", client.getString("client_moniker"))) {
sendRServiceNotifyMessage(client, title, body, url);
}
result.put("result_status", "SUCCESS"); result.put("result_status", "SUCCESS");
} catch (Exception e) { } catch (Exception e) {
logger.error("geek notify app fail:{} - {}",sourceCode,e.getMessage()); logger.error("geek notify app fail:{} - {}",sourceCode,e.getMessage());
@ -254,45 +257,43 @@ public class RetailRSvcServiceImpl implements RetailRSvcService {
private void sendRServiceNotifyMessage(JSONObject client, String title, String body, String url) { private void sendRServiceNotifyMessage(JSONObject client, String title, String body, String url) {
logger.debug("sendGeekMessage Begin"); logger.debug("sendGeekMessage Begin");
// List<JSONObject> clientTokens = clientDeviceTokenMapper.listTokensByClient_id(client.getIntValue("client_id")); List<JSONObject> clientTokens = clientDeviceTokenMapper.listTokensByClient_id(client.getIntValue("client_id"));
// for (JSONObject token : clientTokens) { for (JSONObject tokenJson : clientTokens) {
// Runnable task = () -> {
// } String token = tokenJson.getString("token");
JSONObject devToken = clientDeviceTokenMapper.getTestTokens(); JSONObject log = saveAppMessageLog(tokenJson.getString("dev_id"),
Runnable task = () -> { tokenJson.getIntValue("client_id"),
String token = devToken.getString("token"); "annual_bill" + tokenJson.getString("client_type"),
JSONObject log = saveAppMessageLog(devToken.getString("dev_id"), token,
devToken.getIntValue("client_id"), "跨境商城推送"
"annual_bill" + devToken.getString("client_type"), );
token, try {
"跨境商城推送" JSONObject type = new JSONObject();
); type.put("send_type", "annual_bill");
try { type.put("id", tokenJson.getString("dev_token_id"));
JSONObject type = new JSONObject(); AppMsgSender sender = senderMap.get((tokenJson.getString("client_type")));
type.put("send_type", "annual_bill"); if (StringUtils.isBlank(token) || sender == null) {
type.put("id", devToken.getString("dev_token_id")); return;
AppMsgSender sender = senderMap.get((devToken.getString("client_type"))); }
if (StringUtils.isBlank(token) || sender == null) { JSONObject managerMsg = new JSONObject();
return; managerMsg.put("title", title);
managerMsg.put("body", body);
managerMsg.put("type", type);
JSONObject messageData = new JSONObject();
messageData.put("url", url);
managerMsg.put("data", messageData);
managerMsg.put("msgType", "annual_bill");
AppMessage appMessage = new AppManagerMessageBuilder(managerMsg).buildMessage();
sender.sendMessage(appMessage, tokenJson);
log.put("status", 2);
appMessageLogMapper.update(log);
} catch (Exception e) {
logger.error("出错了:" + e.getMessage());
appMessageLogMapper.updateStatus(log.getString("send_id"), 1, e.getMessage());
} }
JSONObject managerMsg = new JSONObject(); };
managerMsg.put("title", title); sendingAppleMsgPool.execute(task);
managerMsg.put("body", body); }
managerMsg.put("type", type);
JSONObject messageData = new JSONObject();
messageData.put("url", url);
managerMsg.put("data", messageData);
managerMsg.put("msgType", "annual_bill");
AppMessage appMessage = new AppManagerMessageBuilder(managerMsg).buildMessage();
sender.sendMessage(appMessage, devToken);
log.put("status", 2);
appMessageLogMapper.update(log);
} catch (Exception e) {
logger.error("出错了:" + e.getMessage());
appMessageLogMapper.updateStatus(log.getString("send_id"), 1, e.getMessage());
}
};
sendingAppleMsgPool.execute(task);
} }
private String encData(String data, Key key, String publicKey) { private String encData(String data, Key key, String publicKey) {

Loading…
Cancel
Save