/* * 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; import org.apache.dolphinscheduler.api.enums.Status; import org.apache.dolphinscheduler.api.utils.Constants; import org.apache.dolphinscheduler.api.utils.PageInfo; import org.apache.dolphinscheduler.common.enums.UserType; import org.apache.dolphinscheduler.dao.entity.AccessToken; import org.apache.dolphinscheduler.dao.entity.User; import com.baomidou.mybatisplus.core.metadata.IPage; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import org.apache.dolphinscheduler.common.utils.DateUtils; import org.apache.dolphinscheduler.common.utils.EncryptionUtils; import org.apache.dolphinscheduler.dao.mapper.AccessTokenMapper; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import java.util.*; /** * user service */ @Service public class AccessTokenService extends BaseService { private static final Logger logger = LoggerFactory.getLogger(AccessTokenService.class); @Autowired private AccessTokenMapper accessTokenMapper; /** * query access token list * * @param loginUser * @param searchVal * @param pageNo * @param pageSize * @return */ public Map queryAccessTokenList(User loginUser, String searchVal, Integer pageNo, Integer pageSize) { Map result = new HashMap<>(5); PageInfo pageInfo = new PageInfo<>(pageNo, pageSize); Page page = new Page(pageNo, pageSize); int userId = loginUser.getId(); if (loginUser.getUserType() == UserType.ADMIN_USER){ userId = 0; } IPage accessTokenList = accessTokenMapper.selectAccessTokenPage(page, searchVal, userId); pageInfo.setTotalCount((int)accessTokenList.getTotal()); pageInfo.setLists(accessTokenList.getRecords()); result.put(Constants.DATA_LIST, pageInfo); putMsg(result, Status.SUCCESS); return result; } /** * check * * @param result * @param bool * @param userNoOperationPerm * @param status * @return */ private boolean check(Map result, boolean bool, Status userNoOperationPerm, String status) { //only admin can operate if (bool) { result.put(Constants.STATUS, userNoOperationPerm); result.put(status, userNoOperationPerm.getMsg()); return true; } return false; } /** * create token * * @param userId * @param expireTime * @param token * @return */ public Map createToken(int userId, String expireTime, String token) { Map result = new HashMap<>(5); AccessToken accessToken = new AccessToken(); accessToken.setUserId(userId); accessToken.setExpireTime(DateUtils.stringToDate(expireTime)); accessToken.setToken(token); accessToken.setCreateTime(new Date()); accessToken.setUpdateTime(new Date()); // insert int insert = accessTokenMapper.insert(accessToken); if (insert > 0) { putMsg(result, Status.SUCCESS); } else { putMsg(result, Status.CREATE_ALERT_GROUP_ERROR); } return result; } /** * generate token * @param userId * @param expireTime * @return */ public Map generateToken(int userId, String expireTime) { Map result = new HashMap<>(5); String token = EncryptionUtils.getMd5(userId + expireTime + String.valueOf(System.currentTimeMillis())); result.put(Constants.DATA_LIST, token); putMsg(result, Status.SUCCESS); return result; } /** * delete access token * @param loginUser * @param id * @return */ public Map delAccessTokenById(User loginUser, int id) { Map result = new HashMap<>(5); //only admin can operate if (checkAdmin(loginUser, result)) { return result; } accessTokenMapper.deleteById(id); putMsg(result, Status.SUCCESS); return result; } /** * update token by id * @param id * @param userId * @param expireTime * @param token * @return */ public Map updateToken(int id,int userId, String expireTime, String token) { Map result = new HashMap<>(5); AccessToken accessToken = new AccessToken(); accessToken.setId(id); accessToken.setUserId(userId); accessToken.setExpireTime(DateUtils.stringToDate(expireTime)); accessToken.setToken(token); accessToken.setUpdateTime(new Date()); accessTokenMapper.updateById(accessToken); putMsg(result, Status.SUCCESS); return result; } }