WindChat/windchat-business/src/main/java/com/windchat/im/business/dao/SiteLoginDao.java

109 lines
3.2 KiB
Java
Raw Normal View History

2019-07-29 23:42:16 +08:00
/**
2020-10-21 23:35:02 +08:00
* Copyright 2018-2028 WindChat Group
2019-07-29 23:42:16 +08:00
*
* 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-11-27 23:33:33 +08:00
package com.windchat.im.business.dao;
2019-07-29 23:42:16 +08:00
import java.sql.SQLException;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
2019-07-31 23:12:30 +08:00
import com.windchat.im.storage.api.IUserDeviceDao;
import com.windchat.im.storage.api.IUserProfileDao;
import com.windchat.im.storage.api.IUserSessionDao;
import com.windchat.im.storage.bean.UserDeviceBean;
import com.windchat.im.storage.bean.UserProfileBean;
import com.windchat.im.storage.bean.UserSessionBean;
import com.windchat.im.storage.service.DeviceDaoService;
import com.windchat.im.storage.service.UserProfileDaoService;
import com.windchat.im.storage.service.UserSessionDaoService;
2019-07-29 23:42:16 +08:00
/**
* 用户登陆使用dao负责用户信息入库
*
* @author Sam{@link an.guoyue254@gmail.com}
* @since 2017.10.20
*/
public class SiteLoginDao {
private static final Logger logger = LoggerFactory.getLogger(SiteLoginDao.class);
private static SiteLoginDao userLoginDao = new SiteLoginDao();
private IUserDeviceDao userDeviceDao = new DeviceDaoService();
private IUserProfileDao userProfileDao = new UserProfileDaoService();
private IUserSessionDao userSessionDao = new UserSessionDaoService();
public static SiteLoginDao getInstance() {
return userLoginDao;
}
public boolean registerUser(UserProfileBean userBean) {
try {
return userProfileDao.saveProfile(userBean);
} catch (SQLException e) {
logger.error("register user error.", e);
}
return false;
}
public boolean saveUserDevice(UserDeviceBean deviceBean) {
try {
return userDeviceDao.saveUserDevice(deviceBean);
} catch (SQLException e) {
logger.error("save user Device error.", e);
}
return false;
}
public boolean updateUserDevice(UserDeviceBean deviceBean) {
try {
return userDeviceDao.updateUserDevice(deviceBean);
} catch (SQLException e) {
logger.error("update user Device error.", e);
}
return false;
}
public boolean saveUserSession(UserSessionBean sessionBean) {
try {
return userSessionDao.saveUserSession(sessionBean);
} catch (SQLException e) {
logger.error("save user session error.", e);
}
return false;
}
public String checkDeviceId(String userId, String userDevicePuk) {
try {
return userDeviceDao.getDeviceId(userId, userDevicePuk);
} catch (SQLException e) {
logger.error("check device id error,", e);
}
return null;
}
public boolean deleteSession(String siteUserId, String deviceId) {
try {
return userSessionDao.deleteUserSession(siteUserId, deviceId);
} catch (SQLException e) {
logger.error("delete session error.", e);
}
return false;
}
public boolean addDefault(UserProfileBean regBean) {
return true;
}
}