blob: 5c4c95b76d028aa91d08ca11128698e428bac5f2 [file] [log] [blame]
/*
* Copyright 2019 WeBank
*
* 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.webank.wedatasphere.linkis.entrance.interceptor.impl
import com.webank.wedatasphere.linkis.common.utils.Utils
import com.webank.wedatasphere.linkis.entrance.interceptor.EntranceInterceptor
import com.webank.wedatasphere.linkis.entrance.interceptor.exception.PythonCodeCheckException
import com.webank.wedatasphere.linkis.protocol.query.RequestPersistTask
import com.webank.wedatasphere.linkis.protocol.task.Task
import org.apache.commons.lang.exception.ExceptionUtils
/**
* created by enjoyyin on 2018/10/22
* Description: Check for python code, prohibiting the use of sys, os, and creating processes(用于python代码的检查,禁止使用sys、os以及创建进程等行为)
*/
class PythonCodeCheckInterceptor extends EntranceInterceptor{
override def apply(task: Task, logAppender: java.lang.StringBuilder): Task = task match{
case requestPersistTask:RequestPersistTask =>
val error = new StringBuilder
requestPersistTask.getRunType match {
case "python" | "pyspark" =>
Utils.tryThrow(PythonExplain.authPass(requestPersistTask.getExecutionCode, error)){
case PythonCodeCheckException(errCode,errDesc) =>
requestPersistTask.setErrCode(errCode)
requestPersistTask.setErrDesc(errDesc)
PythonCodeCheckException(errCode, errDesc)
case t: Throwable =>
val exception = PythonCodeCheckException(20073, "Checking python code failed!(检查python代码失败!)" + ExceptionUtils.getRootCauseMessage(t))
exception.initCause(t)
exception
}
case _ =>
}
requestPersistTask
}
}