Browse Source
* [Improvement][api] Introduce base service interface for clear code * [Improvement][api] Unify all controllers, services and tests of api * [Fix][api] Fix unit tests left over from the past * [Improvement][api] Use RegexUtils.escapeNRT instead of StringUtils.replaceNRTtoUnderline for vulnerable checkpull/3/MERGE
Shiwen Cheng
4 years ago
committed by
GitHub
107 changed files with 877 additions and 534 deletions
@ -0,0 +1,136 @@ |
|||||||
|
/* |
||||||
|
* 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 org.apache.dolphinscheduler.api.enums.Status; |
||||||
|
import org.apache.dolphinscheduler.api.service.BaseService; |
||||||
|
import org.apache.dolphinscheduler.api.utils.Result; |
||||||
|
import org.apache.dolphinscheduler.common.Constants; |
||||||
|
import org.apache.dolphinscheduler.common.enums.UserType; |
||||||
|
import org.apache.dolphinscheduler.common.utils.HadoopUtils; |
||||||
|
import org.apache.dolphinscheduler.dao.entity.User; |
||||||
|
|
||||||
|
import java.io.IOException; |
||||||
|
import java.text.MessageFormat; |
||||||
|
import java.util.Map; |
||||||
|
|
||||||
|
/** |
||||||
|
* base service impl |
||||||
|
*/ |
||||||
|
public class BaseServiceImpl implements BaseService { |
||||||
|
|
||||||
|
/** |
||||||
|
* check admin |
||||||
|
* |
||||||
|
* @param user input user |
||||||
|
* @return ture if administrator, otherwise return false |
||||||
|
*/ |
||||||
|
public boolean isAdmin(User user) { |
||||||
|
return user.getUserType() == UserType.ADMIN_USER; |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* isNotAdmin |
||||||
|
* |
||||||
|
* @param loginUser login user |
||||||
|
* @param result result code |
||||||
|
* @return true if not administrator, otherwise false |
||||||
|
*/ |
||||||
|
public boolean isNotAdmin(User loginUser, Map<String, Object> result) { |
||||||
|
//only admin can operate
|
||||||
|
if (!isAdmin(loginUser)) { |
||||||
|
putMsg(result, Status.USER_NO_OPERATION_PERM); |
||||||
|
return true; |
||||||
|
} |
||||||
|
return false; |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* put message to map |
||||||
|
* |
||||||
|
* @param result result code |
||||||
|
* @param status status |
||||||
|
* @param statusParams status message |
||||||
|
*/ |
||||||
|
public void putMsg(Map<String, Object> result, Status status, Object... statusParams) { |
||||||
|
result.put(Constants.STATUS, status); |
||||||
|
if (statusParams != null && statusParams.length > 0) { |
||||||
|
result.put(Constants.MSG, MessageFormat.format(status.getMsg(), statusParams)); |
||||||
|
} else { |
||||||
|
result.put(Constants.MSG, status.getMsg()); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* put message to result object |
||||||
|
* |
||||||
|
* @param result result code |
||||||
|
* @param status status |
||||||
|
* @param statusParams status message |
||||||
|
*/ |
||||||
|
public void putMsg(Result result, Status status, Object... statusParams) { |
||||||
|
result.setCode(status.getCode()); |
||||||
|
if (statusParams != null && statusParams.length > 0) { |
||||||
|
result.setMsg(MessageFormat.format(status.getMsg(), statusParams)); |
||||||
|
} else { |
||||||
|
result.setMsg(status.getMsg()); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* check |
||||||
|
* |
||||||
|
* @param result result |
||||||
|
* @param bool bool |
||||||
|
* @param userNoOperationPerm status |
||||||
|
* @return check result |
||||||
|
*/ |
||||||
|
public boolean check(Map<String, Object> result, boolean bool, Status userNoOperationPerm) { |
||||||
|
// only admin can operate
|
||||||
|
if (bool) { |
||||||
|
result.put(Constants.STATUS, userNoOperationPerm); |
||||||
|
result.put(Constants.MSG, userNoOperationPerm.getMsg()); |
||||||
|
return true; |
||||||
|
} |
||||||
|
return false; |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* create tenant dir if not exists |
||||||
|
* |
||||||
|
* @param tenantCode tenant code |
||||||
|
* @throws IOException if hdfs operation exception |
||||||
|
*/ |
||||||
|
public void createTenantDirIfNotExists(String tenantCode) throws IOException { |
||||||
|
String resourcePath = HadoopUtils.getHdfsResDir(tenantCode); |
||||||
|
String udfsPath = HadoopUtils.getHdfsUdfDir(tenantCode); |
||||||
|
// init resource path and udf path
|
||||||
|
HadoopUtils.getInstance().mkdir(resourcePath); |
||||||
|
HadoopUtils.getInstance().mkdir(udfsPath); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* has perm |
||||||
|
* |
||||||
|
* @param operateUser operate user |
||||||
|
* @param createUserId create user id |
||||||
|
*/ |
||||||
|
public boolean hasPerm(User operateUser, int createUserId) { |
||||||
|
return operateUser.getId() == createUserId || isAdmin(operateUser); |
||||||
|
} |
||||||
|
} |
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue