mirror of
https://github.com/apache/superset.git
synced 2026-04-21 17:14:57 +00:00
chore(command): Organize Commands according to SIP-92 (#25850)
This commit is contained in:
234
superset/commands/sql_lab/execute.py
Normal file
234
superset/commands/sql_lab/execute.py
Normal file
@@ -0,0 +1,234 @@
|
||||
# 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.
|
||||
# pylint: disable=too-few-public-methods, too-many-arguments
|
||||
from __future__ import annotations
|
||||
|
||||
import copy
|
||||
import logging
|
||||
from typing import Any, TYPE_CHECKING
|
||||
|
||||
from flask_babel import gettext as __
|
||||
|
||||
from superset.commands.base import BaseCommand
|
||||
from superset.common.db_query_status import QueryStatus
|
||||
from superset.daos.exceptions import DAOCreateFailedError
|
||||
from superset.errors import SupersetErrorType
|
||||
from superset.exceptions import (
|
||||
SupersetErrorException,
|
||||
SupersetErrorsException,
|
||||
SupersetGenericErrorException,
|
||||
)
|
||||
from superset.models.core import Database
|
||||
from superset.models.sql_lab import Query
|
||||
from superset.sqllab.command_status import SqlJsonExecutionStatus
|
||||
from superset.sqllab.exceptions import (
|
||||
QueryIsForbiddenToAccessException,
|
||||
SqlLabException,
|
||||
)
|
||||
from superset.sqllab.execution_context_convertor import ExecutionContextConvertor
|
||||
from superset.sqllab.limiting_factor import LimitingFactor
|
||||
|
||||
if TYPE_CHECKING:
|
||||
from superset.daos.database import DatabaseDAO
|
||||
from superset.daos.query import QueryDAO
|
||||
from superset.sqllab.sql_json_executer import SqlJsonExecutor
|
||||
from superset.sqllab.sqllab_execution_context import SqlJsonExecutionContext
|
||||
|
||||
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
CommandResult = dict[str, Any]
|
||||
|
||||
|
||||
class ExecuteSqlCommand(BaseCommand):
|
||||
_execution_context: SqlJsonExecutionContext
|
||||
_query_dao: QueryDAO
|
||||
_database_dao: DatabaseDAO
|
||||
_access_validator: CanAccessQueryValidator
|
||||
_sql_query_render: SqlQueryRender
|
||||
_sql_json_executor: SqlJsonExecutor
|
||||
_execution_context_convertor: ExecutionContextConvertor
|
||||
_sqllab_ctas_no_limit: bool
|
||||
_log_params: dict[str, Any] | None = None
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
execution_context: SqlJsonExecutionContext,
|
||||
query_dao: QueryDAO,
|
||||
database_dao: DatabaseDAO,
|
||||
access_validator: CanAccessQueryValidator,
|
||||
sql_query_render: SqlQueryRender,
|
||||
sql_json_executor: SqlJsonExecutor,
|
||||
execution_context_convertor: ExecutionContextConvertor,
|
||||
sqllab_ctas_no_limit_flag: bool,
|
||||
log_params: dict[str, Any] | None = None,
|
||||
) -> None:
|
||||
self._execution_context = execution_context
|
||||
self._query_dao = query_dao
|
||||
self._database_dao = database_dao
|
||||
self._access_validator = access_validator
|
||||
self._sql_query_render = sql_query_render
|
||||
self._sql_json_executor = sql_json_executor
|
||||
self._execution_context_convertor = execution_context_convertor
|
||||
self._sqllab_ctas_no_limit = sqllab_ctas_no_limit_flag
|
||||
self._log_params = log_params
|
||||
|
||||
def validate(self) -> None:
|
||||
pass
|
||||
|
||||
def run( # pylint: disable=too-many-statements,useless-suppression
|
||||
self,
|
||||
) -> CommandResult:
|
||||
"""Runs arbitrary sql and returns data as json"""
|
||||
try:
|
||||
query = self._try_get_existing_query()
|
||||
if self.is_query_handled(query):
|
||||
self._execution_context.set_query(query) # type: ignore
|
||||
status = SqlJsonExecutionStatus.QUERY_ALREADY_CREATED
|
||||
else:
|
||||
status = self._run_sql_json_exec_from_scratch()
|
||||
|
||||
self._execution_context_convertor.set_payload(
|
||||
self._execution_context, status
|
||||
)
|
||||
|
||||
# save columns into metadata_json
|
||||
self._query_dao.save_metadata(
|
||||
self._execution_context.query, self._execution_context_convertor.payload
|
||||
)
|
||||
|
||||
return {
|
||||
"status": status,
|
||||
"payload": self._execution_context_convertor.serialize_payload(),
|
||||
}
|
||||
except (SupersetErrorException, SupersetErrorsException) as ex:
|
||||
# to make sure we raising the original
|
||||
# SupersetErrorsException || SupersetErrorsException
|
||||
raise ex
|
||||
except Exception as ex:
|
||||
raise SqlLabException(self._execution_context, exception=ex) from ex
|
||||
|
||||
def _try_get_existing_query(self) -> Query | None:
|
||||
return self._query_dao.find_one_or_none(
|
||||
client_id=self._execution_context.client_id,
|
||||
user_id=self._execution_context.user_id,
|
||||
sql_editor_id=self._execution_context.sql_editor_id,
|
||||
)
|
||||
|
||||
@classmethod
|
||||
def is_query_handled(cls, query: Query | None) -> bool:
|
||||
return query is not None and query.status in [
|
||||
QueryStatus.RUNNING,
|
||||
QueryStatus.PENDING,
|
||||
QueryStatus.TIMED_OUT,
|
||||
]
|
||||
|
||||
def _run_sql_json_exec_from_scratch(self) -> SqlJsonExecutionStatus:
|
||||
self._execution_context.set_database(self._get_the_query_db())
|
||||
query = self._execution_context.create_query()
|
||||
self._save_new_query(query)
|
||||
try:
|
||||
logger.info("Triggering query_id: %i", query.id)
|
||||
|
||||
self._execution_context.set_query(query)
|
||||
rendered_query = self._sql_query_render.render(self._execution_context)
|
||||
validate_rendered_query = copy.copy(query)
|
||||
validate_rendered_query.sql = rendered_query
|
||||
self._validate_access(validate_rendered_query)
|
||||
self._set_query_limit_if_required(rendered_query)
|
||||
self._query_dao.update(
|
||||
query, {"limit": self._execution_context.query.limit}
|
||||
)
|
||||
return self._sql_json_executor.execute(
|
||||
self._execution_context, rendered_query, self._log_params
|
||||
)
|
||||
except Exception as ex:
|
||||
self._query_dao.update(query, {"status": QueryStatus.FAILED})
|
||||
raise ex
|
||||
|
||||
def _get_the_query_db(self) -> Database:
|
||||
mydb: Any = self._database_dao.find_by_id(self._execution_context.database_id)
|
||||
self._validate_query_db(mydb)
|
||||
return mydb
|
||||
|
||||
@classmethod
|
||||
def _validate_query_db(cls, database: Database | None) -> None:
|
||||
if not database:
|
||||
raise SupersetGenericErrorException(
|
||||
__(
|
||||
"The database referenced in this query was not found. Please "
|
||||
"contact an administrator for further assistance or try again."
|
||||
)
|
||||
)
|
||||
|
||||
def _save_new_query(self, query: Query) -> None:
|
||||
try:
|
||||
self._query_dao.create(query)
|
||||
except DAOCreateFailedError as ex:
|
||||
raise SqlLabException(
|
||||
self._execution_context,
|
||||
SupersetErrorType.GENERIC_DB_ENGINE_ERROR,
|
||||
"The query record was not created as expected",
|
||||
ex,
|
||||
"Please contact an administrator for further assistance or try again.",
|
||||
) from ex
|
||||
|
||||
def _validate_access(self, query: Query) -> None:
|
||||
try:
|
||||
self._access_validator.validate(query)
|
||||
except Exception as ex:
|
||||
raise QueryIsForbiddenToAccessException(self._execution_context, ex) from ex
|
||||
|
||||
def _set_query_limit_if_required(
|
||||
self,
|
||||
rendered_query: str,
|
||||
) -> None:
|
||||
if self._is_required_to_set_limit():
|
||||
self._set_query_limit(rendered_query)
|
||||
|
||||
def _is_required_to_set_limit(self) -> bool:
|
||||
return not (
|
||||
self._sqllab_ctas_no_limit and self._execution_context.select_as_cta
|
||||
)
|
||||
|
||||
def _set_query_limit(self, rendered_query: str) -> None:
|
||||
db_engine_spec = self._execution_context.database.db_engine_spec # type: ignore
|
||||
limits = [
|
||||
db_engine_spec.get_limit_from_sql(rendered_query),
|
||||
self._execution_context.limit,
|
||||
]
|
||||
if limits[0] is None or limits[0] > limits[1]: # type: ignore
|
||||
self._execution_context.query.limiting_factor = LimitingFactor.DROPDOWN
|
||||
elif limits[1] > limits[0]: # type: ignore
|
||||
self._execution_context.query.limiting_factor = LimitingFactor.QUERY
|
||||
else: # limits[0] == limits[1]
|
||||
self._execution_context.query.limiting_factor = (
|
||||
LimitingFactor.QUERY_AND_DROPDOWN
|
||||
)
|
||||
self._execution_context.query.limit = min(
|
||||
lim for lim in limits if lim is not None
|
||||
)
|
||||
|
||||
|
||||
class CanAccessQueryValidator:
|
||||
def validate(self, query: Query) -> None:
|
||||
raise NotImplementedError()
|
||||
|
||||
|
||||
class SqlQueryRender:
|
||||
def render(self, execution_context: SqlJsonExecutionContext) -> str:
|
||||
raise NotImplementedError()
|
||||
Reference in New Issue
Block a user