/** * Copyright 2018-2028 Akaxin Group * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.windchat.im.business.impl.hai; import java.util.List; import com.windchat.im.business.dao.SiteUserDao; import com.windchat.im.business.impl.AbstractRequest; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import com.windchat.common.command.Command; import com.windchat.common.command.CommandResponse; import com.windchat.common.constant.ErrorCode2; import com.windchat.common.logs.LogUtils; import com.akaxin.proto.plugin.HaiPushNoticesProto.HaiPushNoticesRequest; import com.windchat.im.business.dao.SiteUserDao; import com.windchat.im.business.impl.AbstractRequest; import com.windchat.im.business.push.PushNotification; /** * 扩展使用的PUSH服务 * * @author Sam{@link an.guoyue254@gmail.com} * @since 2018-04-14 12:03:55 */ public class HttpPushService extends AbstractRequest { private static final Logger logger = LoggerFactory.getLogger(HttpPushService.class); /** * 向站点所有人推送PUSH通知消息 * * @param command * @return */ public CommandResponse notices(Command command) { CommandResponse commandResponse = new CommandResponse(); ErrorCode2 errCode = ErrorCode2.ERROR; try { HaiPushNoticesRequest request = HaiPushNoticesRequest.parseFrom(command.getParams()); String pushGoto = request.getPushGoto(); String pushTitle = request.getSubtitle(); String pushContent = request.getContent(); String siteUserId = command.getSiteUserId(); LogUtils.requestDebugLog(logger, command, request.toString()); int pageNum = 1; int pageSize = 200; while (true) { List userList = SiteUserDao.getInstance().getSiteUsersByPage(pageNum++, pageSize); if (userList != null) { for (String userId : userList) { PushNotification.send(siteUserId, userId, pushTitle, pushContent, pushGoto); } } if (userList == null || userList.size() < pageSize) { break; } } errCode = ErrorCode2.SUCCESS; } catch (Exception e) { errCode = ErrorCode2.ERROR_SYSTEMERROR; LogUtils.requestErrorLog(logger, command, e); } return commandResponse.setErrCode2(errCode); } }