All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.dolphinscheduler.dao.mapper.ResourceMapper Maven / Gradle / Ivy

There is a newer version: 3.2.1
Show newest version
/*
 * 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.dao.mapper;

import org.apache.dolphinscheduler.dao.entity.Resource;

import org.apache.ibatis.annotations.Param;

import java.util.List;

import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.core.metadata.IPage;

/**
 * resource mapper interface
 */
public interface ResourceMapper extends BaseMapper {

    /**
     * query resource list
     * @param fullName full name
     * @param userId userId
     * @param type type
     * @return resource list
     */
    List queryResourceList(@Param("fullName") String fullName,
                                     @Param("userId") int userId,
                                     @Param("type") int type);

    /**
     * query resource list
     * @param userId userId
     * @param type type
     * @return resource list
     */
    List queryResourceListAuthored(@Param("userId") int userId,
                                             @Param("type") int type);

    /**
     * resource page
     * @param page page
     * @param userId userId
     * @param id id
     * @param type type
     * @param searchVal searchVal
     * @param resIds resIds
     * @return resource page
     */
    IPage queryResourcePaging(IPage page,
                                        @Param("userId") int userId,
                                        @Param("id") int id,
                                        @Param("type") int type,
                                        @Param("searchVal") String searchVal,
                                        @Param("resIds") List resIds);

    /**
     *  query resource except userId
     * @param userId userId
     * @return resource list
     */
    List queryResourceExceptUserId(@Param("userId") int userId);

    /**
     * list authorized resource
     * @param userId userId
     * @param resNames resNames
     * @param  T
     * @return resource list
     */
     List listAuthorizedResource(@Param("userId") int userId, @Param("resNames") T[] resNames);

    /**
     * list resources by id
     * @param resIds resIds
     * @return resource list
     */
    List queryResourceListById(@Param("resIds") List resIds);

    /**
     * list authorized resource
     * @param userId userId
     * @param resIds resIds
     * @param  T
     * @return resource list
     */
     List listAuthorizedResourceById(@Param("userId") int userId,@Param("resIds")T[] resIds);

    /**
     * delete resource by id array
     * @param resIds resource id array
     * @return delete num
     */
    int deleteIds(@Param("resIds")Integer[] resIds);

    /**
     * list children
     * @param direcotyId directory id
     * @return resource id array
     */
    List listChildren(@Param("direcotyId") int direcotyId);

    /**
     * query resource by full name or pid
     * @param fullName  full name
     * @param type      resource type
     * @return resource
     */
    List queryResource(@Param("fullName") String fullName,@Param("type") int type);

    /**
     * list resource by id array
     * @param resIds resource id array
     * @return resource list
     */
    List listResourceByIds(@Param("resIds")Integer[] resIds);

    /**
     * update resource
     * @param resourceList  resource list
     * @return update num
     */
    int batchUpdateResource(@Param("resourceList") List resourceList);

    /**
     * check resource exist
     * @param fullName full name
     * @param userId userId
     * @param type type
     * @return true if exist else return null
     */
    Boolean existResource(@Param("fullName") String fullName,
                              @Param("userId") int userId,
                              @Param("type") int type);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy