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

109 lines
3.2 KiB
Java
Executable File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* Copyright 2018-2028 WindChat 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.dao;
import java.sql.SQLException;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
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;
/**
* 用户登陆使用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;
}
}