mirror of
https://github.com/apache/superset.git
synced 2026-04-11 12:26:05 +00:00
165 lines
4.4 KiB
Python
165 lines
4.4 KiB
Python
# 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.
|
|
from flask_babel import _
|
|
from marshmallow.validate import ValidationError
|
|
|
|
from superset.commands.exceptions import (
|
|
CommandException,
|
|
CommandInvalidError,
|
|
CreateFailedError,
|
|
DeleteFailedError,
|
|
ForbiddenError,
|
|
ImportFailedError,
|
|
UpdateFailedError,
|
|
)
|
|
|
|
|
|
class TimeRangeAmbiguousError(ValidationError):
|
|
"""
|
|
Time range is ambiguous error.
|
|
"""
|
|
|
|
def __init__(self, human_readable: str) -> None:
|
|
super().__init__(
|
|
_(
|
|
"Time string is ambiguous."
|
|
" Please specify [%(human_readable)s ago]"
|
|
" or [%(human_readable)s later].",
|
|
human_readable=human_readable,
|
|
),
|
|
field_name="time_range",
|
|
)
|
|
|
|
|
|
class TimeRangeParseFailError(ValidationError):
|
|
def __init__(self, human_readable: str) -> None:
|
|
super().__init__(
|
|
_(
|
|
"Cannot parse time string [%(human_readable)s]",
|
|
human_readable=human_readable,
|
|
),
|
|
field_name="time_range",
|
|
)
|
|
|
|
|
|
class TimeDeltaAmbiguousError(ValidationError):
|
|
"""
|
|
Time delta is ambiguous error.
|
|
"""
|
|
|
|
def __init__(self, human_readable: str) -> None:
|
|
super().__init__(
|
|
_(
|
|
"Time delta is ambiguous."
|
|
" Please specify [%(human_readable)s ago]"
|
|
" or [%(human_readable)s later].",
|
|
human_readable=human_readable,
|
|
),
|
|
field_name="time_range",
|
|
)
|
|
|
|
|
|
class DatabaseNotFoundValidationError(ValidationError):
|
|
"""
|
|
Marshmallow validation error for database does not exist
|
|
"""
|
|
|
|
def __init__(self) -> None:
|
|
super().__init__(_("Database does not exist"), field_name="database")
|
|
|
|
|
|
class DashboardsNotFoundValidationError(ValidationError):
|
|
"""
|
|
Marshmallow validation error for dashboards don't exist
|
|
"""
|
|
|
|
def __init__(self) -> None:
|
|
super().__init__(_("Dashboards do not exist"), field_name="dashboards")
|
|
|
|
|
|
class DatasourceTypeUpdateRequiredValidationError(ValidationError):
|
|
"""
|
|
Marshmallow validation error for dashboards don't exist
|
|
"""
|
|
|
|
def __init__(self) -> None:
|
|
super().__init__(
|
|
_("Datasource type is required when datasource_id is given"),
|
|
field_names=["datasource_type"],
|
|
)
|
|
|
|
|
|
class ChartNotFoundError(CommandException):
|
|
message = "Chart not found."
|
|
|
|
|
|
class ChartInvalidError(CommandInvalidError):
|
|
message = _("Chart parameters are invalid.")
|
|
|
|
|
|
class ChartCreateFailedError(CreateFailedError):
|
|
message = _("Chart could not be created.")
|
|
|
|
|
|
class ChartUpdateFailedError(UpdateFailedError):
|
|
message = _("Chart could not be updated.")
|
|
|
|
|
|
class ChartDeleteFailedError(DeleteFailedError):
|
|
message = _("Charts could not be deleted.")
|
|
|
|
|
|
class ChartDeleteFailedReportsExistError(ChartDeleteFailedError):
|
|
message = _("There are associated alerts or reports")
|
|
|
|
|
|
class ChartAccessDeniedError(ForbiddenError):
|
|
message = _("You don't have access to this chart.")
|
|
|
|
|
|
class ChartForbiddenError(ForbiddenError):
|
|
message = _("Changing this chart is forbidden")
|
|
|
|
|
|
class ChartDataQueryFailedError(CommandException):
|
|
pass
|
|
|
|
|
|
class ChartDataCacheLoadError(CommandException):
|
|
pass
|
|
|
|
|
|
class ChartImportError(ImportFailedError):
|
|
message = _("Import chart failed for an unknown reason")
|
|
|
|
|
|
class DashboardsForbiddenError(ForbiddenError):
|
|
message = _("Changing one or more of these dashboards is forbidden")
|
|
|
|
|
|
class WarmUpCacheChartNotFoundError(CommandException):
|
|
status = 404
|
|
message = _("Chart not found")
|
|
|
|
|
|
class ChartFaveError(CommandException):
|
|
message = _("Error faving chart")
|
|
|
|
|
|
class ChartUnfaveError(CommandException):
|
|
message = _("Error unfaving chart")
|