WindChat/openzaly-message/src/main/java/com/windchat/im/message/dao/ImUserGroupDao.java

88 lines
2.5 KiB
Java
Raw Normal View History

2019-07-29 23:42:16 +08:00
/**
* 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.
*/
2019-07-31 23:14:26 +08:00
package com.windchat.im.message.dao;
2019-07-29 23:42:16 +08:00
import java.sql.SQLException;
import org.apache.commons.lang3.StringUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
2019-07-31 23:12:30 +08:00
import com.windchat.im.storage.api.IGroupDao;
import com.windchat.im.storage.api.IUserGroupDao;
import com.windchat.im.storage.bean.GroupMemberBean;
import com.windchat.im.storage.bean.GroupProfileBean;
import com.windchat.im.storage.service.GroupDaoService;
import com.windchat.im.storage.service.UserGroupDaoService;
2019-07-29 23:42:16 +08:00
public class ImUserGroupDao {
private static final Logger logger = LoggerFactory.getLogger(ImUserGroupDao.class);
private IGroupDao groupDao = new GroupDaoService();
private IUserGroupDao userGroupDao = new UserGroupDaoService();
private ImUserGroupDao() {
}
static class SingletonHolder {
private static ImUserGroupDao instance = new ImUserGroupDao();
}
public static ImUserGroupDao getInstance() {
return SingletonHolder.instance;
}
public boolean isGroupMember(String siteUserId, String groupId) {
try {
GroupMemberBean bean = groupDao.getGroupMember(siteUserId, groupId);
if (bean != null && StringUtils.isNotEmpty(bean.getUserId())) {
return true;
}
} catch (SQLException e) {
logger.error("is group member error.", e);
}
return false;
}
public GroupProfileBean getGroupProfile(String groupId) {
try {
return groupDao.queryGroupProfile(groupId);
} catch (SQLException e) {
logger.error("get group profile error.");
}
return null;
}
public GroupProfileBean getSimpleGroupProfile(String groupId) {
try {
return groupDao.querySimpleGroupProfile(groupId);
} catch (SQLException e) {
logger.error("get group profile error.");
}
return null;
}
public boolean isMesageMute(String siteUserId, String siteGroupId) {
try {
return userGroupDao.isMute(siteUserId, siteGroupId);
} catch (SQLException e) {
logger.error("query message mutet status error", e);
}
return true;
}
}