Browse Source
* [Improvement][api] Introduce session service interface for clear code * Update SessionService.java * [Improvement][api] Add @Service * Add licensespull/3/MERGE
Yichao Yang
4 years ago
committed by
GitHub
5 changed files with 184 additions and 126 deletions
@ -0,0 +1,158 @@ |
|||||||
|
/* |
||||||
|
* Licensed to the Apache Software Foundation (ASF) under one or more |
||||||
|
* contributor license agreements. See the NOTICE file distributed with |
||||||
|
* this work for additional information regarding copyright ownership. |
||||||
|
* The ASF licenses this file to You 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 org.apache.dolphinscheduler.api.service.impl; |
||||||
|
|
||||||
|
import java.util.Date; |
||||||
|
import java.util.List; |
||||||
|
import java.util.UUID; |
||||||
|
|
||||||
|
import javax.servlet.http.Cookie; |
||||||
|
import javax.servlet.http.HttpServletRequest; |
||||||
|
|
||||||
|
import org.apache.commons.lang.StringUtils; |
||||||
|
import org.apache.dolphinscheduler.api.controller.BaseController; |
||||||
|
import org.apache.dolphinscheduler.api.service.BaseService; |
||||||
|
import org.apache.dolphinscheduler.api.service.SessionService; |
||||||
|
import org.apache.dolphinscheduler.common.Constants; |
||||||
|
import org.apache.dolphinscheduler.common.utils.CollectionUtils; |
||||||
|
import org.apache.dolphinscheduler.dao.entity.Session; |
||||||
|
import org.apache.dolphinscheduler.dao.entity.User; |
||||||
|
import org.apache.dolphinscheduler.dao.mapper.SessionMapper; |
||||||
|
import org.slf4j.Logger; |
||||||
|
import org.slf4j.LoggerFactory; |
||||||
|
import org.springframework.beans.factory.annotation.Autowired; |
||||||
|
import org.springframework.stereotype.Service; |
||||||
|
import org.springframework.transaction.annotation.Transactional; |
||||||
|
|
||||||
|
/** |
||||||
|
* session service implement |
||||||
|
*/ |
||||||
|
@Service |
||||||
|
public class SessionServiceImpl extends BaseService implements SessionService { |
||||||
|
|
||||||
|
private static final Logger logger = LoggerFactory.getLogger(SessionService.class); |
||||||
|
|
||||||
|
@Autowired |
||||||
|
private SessionMapper sessionMapper; |
||||||
|
|
||||||
|
/** |
||||||
|
* get user session from request |
||||||
|
* |
||||||
|
* @param request request |
||||||
|
* @return session |
||||||
|
*/ |
||||||
|
public Session getSession(HttpServletRequest request) { |
||||||
|
String sessionId = request.getHeader(Constants.SESSION_ID); |
||||||
|
|
||||||
|
if (StringUtils.isBlank(sessionId)) { |
||||||
|
Cookie cookie = getCookie(request, Constants.SESSION_ID); |
||||||
|
|
||||||
|
if (cookie != null) { |
||||||
|
sessionId = cookie.getValue(); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
if (StringUtils.isBlank(sessionId)) { |
||||||
|
return null; |
||||||
|
} |
||||||
|
|
||||||
|
String ip = BaseController.getClientIpAddress(request); |
||||||
|
logger.debug("get session: {}, ip: {}", sessionId, ip); |
||||||
|
|
||||||
|
return sessionMapper.selectById(sessionId); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* create session |
||||||
|
* |
||||||
|
* @param user user |
||||||
|
* @param ip ip |
||||||
|
* @return session string |
||||||
|
*/ |
||||||
|
@Transactional(rollbackFor = RuntimeException.class) |
||||||
|
public String createSession(User user, String ip) { |
||||||
|
Session session = null; |
||||||
|
|
||||||
|
// logined
|
||||||
|
List<Session> sessionList = sessionMapper.queryByUserId(user.getId()); |
||||||
|
|
||||||
|
Date now = new Date(); |
||||||
|
|
||||||
|
/** |
||||||
|
* if you have logged in and are still valid, return directly |
||||||
|
*/ |
||||||
|
if (CollectionUtils.isNotEmpty(sessionList)) { |
||||||
|
// is session list greater 1 , delete other ,get one
|
||||||
|
if (sessionList.size() > 1) { |
||||||
|
for (int i = 1; i < sessionList.size(); i++) { |
||||||
|
sessionMapper.deleteById(sessionList.get(i).getId()); |
||||||
|
} |
||||||
|
} |
||||||
|
session = sessionList.get(0); |
||||||
|
if (now.getTime() - session.getLastLoginTime().getTime() <= Constants.SESSION_TIME_OUT * 1000) { |
||||||
|
/** |
||||||
|
* updateProcessInstance the latest login time |
||||||
|
*/ |
||||||
|
session.setLastLoginTime(now); |
||||||
|
sessionMapper.updateById(session); |
||||||
|
|
||||||
|
return session.getId(); |
||||||
|
|
||||||
|
} else { |
||||||
|
/** |
||||||
|
* session expired, then delete this session first |
||||||
|
*/ |
||||||
|
sessionMapper.deleteById(session.getId()); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
// assign new session
|
||||||
|
session = new Session(); |
||||||
|
|
||||||
|
session.setId(UUID.randomUUID().toString()); |
||||||
|
session.setIp(ip); |
||||||
|
session.setUserId(user.getId()); |
||||||
|
session.setLastLoginTime(now); |
||||||
|
|
||||||
|
sessionMapper.insert(session); |
||||||
|
|
||||||
|
return session.getId(); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* sign out |
||||||
|
* remove ip restrictions |
||||||
|
* |
||||||
|
* @param ip no use |
||||||
|
* @param loginUser login user |
||||||
|
*/ |
||||||
|
public void signOut(String ip, User loginUser) { |
||||||
|
try { |
||||||
|
/** |
||||||
|
* query session by user id and ip |
||||||
|
*/ |
||||||
|
Session session = sessionMapper.queryByUserIdAndIp(loginUser.getId(), ip); |
||||||
|
|
||||||
|
//delete session
|
||||||
|
sessionMapper.deleteById(session.getId()); |
||||||
|
} catch (Exception e) { |
||||||
|
logger.warn("userId : {} , ip : {} , find more one session", loginUser.getId(), ip); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
} |
Loading…
Reference in new issue