mirror of
https://github.com/apache/superset.git
synced 2026-04-13 05:07:53 +00:00
* changing slice names in dashboard should not change chart title * comprehensions > loops
146 lines
5.6 KiB
Python
146 lines
5.6 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.
|
|
import json
|
|
import logging
|
|
from typing import Any, Dict, List, Optional
|
|
|
|
from sqlalchemy.exc import SQLAlchemyError
|
|
|
|
from superset.dao.base import BaseDAO
|
|
from superset.dashboards.filters import DashboardFilter
|
|
from superset.extensions import db
|
|
from superset.models.dashboard import Dashboard
|
|
from superset.models.slice import Slice
|
|
from superset.utils.dashboard_filter_scopes_converter import copy_filter_scopes
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
class DashboardDAO(BaseDAO):
|
|
model_cls = Dashboard
|
|
base_filter = DashboardFilter
|
|
|
|
@staticmethod
|
|
def validate_slug_uniqueness(slug: str) -> bool:
|
|
if not slug:
|
|
return True
|
|
dashboard_query = db.session.query(Dashboard).filter(Dashboard.slug == slug)
|
|
return not db.session.query(dashboard_query.exists()).scalar()
|
|
|
|
@staticmethod
|
|
def validate_update_slug_uniqueness(dashboard_id: int, slug: Optional[str]) -> bool:
|
|
if slug is not None:
|
|
dashboard_query = db.session.query(Dashboard).filter(
|
|
Dashboard.slug == slug, Dashboard.id != dashboard_id
|
|
)
|
|
return not db.session.query(dashboard_query.exists()).scalar()
|
|
return True
|
|
|
|
@staticmethod
|
|
def update_charts_owners(model: Dashboard, commit: bool = True) -> Dashboard:
|
|
owners = list(model.owners)
|
|
for slc in model.slices:
|
|
slc.owners = list(set(owners) | set(slc.owners))
|
|
if commit:
|
|
db.session.commit()
|
|
return model
|
|
|
|
@staticmethod
|
|
def bulk_delete(models: Optional[List[Dashboard]], commit: bool = True) -> None:
|
|
item_ids = [model.id for model in models] if models else []
|
|
# bulk delete, first delete related data
|
|
if models:
|
|
for model in models:
|
|
model.slices = []
|
|
model.owners = []
|
|
db.session.merge(model)
|
|
# bulk delete itself
|
|
try:
|
|
db.session.query(Dashboard).filter(Dashboard.id.in_(item_ids)).delete(
|
|
synchronize_session="fetch"
|
|
)
|
|
if commit:
|
|
db.session.commit()
|
|
except SQLAlchemyError as ex:
|
|
if commit:
|
|
db.session.rollback()
|
|
raise ex
|
|
|
|
@staticmethod
|
|
def set_dash_metadata( # pylint: disable=too-many-locals,too-many-branches,too-many-statements
|
|
dashboard: Dashboard,
|
|
data: Dict[Any, Any],
|
|
old_to_new_slice_ids: Optional[Dict[int, int]] = None,
|
|
) -> None:
|
|
positions = data["positions"]
|
|
# find slices in the position data
|
|
slice_ids = [
|
|
value.get("meta", {}).get("chartId")
|
|
for value in positions.values()
|
|
if isinstance(value, dict)
|
|
]
|
|
|
|
session = db.session()
|
|
current_slices = session.query(Slice).filter(Slice.id.in_(slice_ids)).all()
|
|
|
|
dashboard.slices = current_slices
|
|
|
|
# remove leading and trailing white spaces in the dumped json
|
|
dashboard.position_json = json.dumps(
|
|
positions, indent=None, separators=(",", ":"), sort_keys=True
|
|
)
|
|
md = dashboard.params_dict
|
|
dashboard.css = data.get("css")
|
|
dashboard.dashboard_title = data["dashboard_title"]
|
|
|
|
if "timed_refresh_immune_slices" not in md:
|
|
md["timed_refresh_immune_slices"] = []
|
|
new_filter_scopes = {}
|
|
if "filter_scopes" in data:
|
|
# replace filter_id and immune ids from old slice id to new slice id:
|
|
# and remove slice ids that are not in dash anymore
|
|
slc_id_dict: Dict[int, int] = {}
|
|
if old_to_new_slice_ids:
|
|
slc_id_dict = {
|
|
old: new
|
|
for old, new in old_to_new_slice_ids.items()
|
|
if new in slice_ids
|
|
}
|
|
else:
|
|
slc_id_dict = {sid: sid for sid in slice_ids}
|
|
new_filter_scopes = copy_filter_scopes(
|
|
old_to_new_slc_id_dict=slc_id_dict,
|
|
old_filter_scopes=json.loads(data["filter_scopes"] or "{}"),
|
|
)
|
|
if new_filter_scopes:
|
|
md["filter_scopes"] = new_filter_scopes
|
|
else:
|
|
md.pop("filter_scopes", None)
|
|
md["expanded_slices"] = data.get("expanded_slices", {})
|
|
md["refresh_frequency"] = data.get("refresh_frequency", 0)
|
|
default_filters_data = json.loads(data.get("default_filters", "{}"))
|
|
applicable_filters = {
|
|
key: v for key, v in default_filters_data.items() if int(key) in slice_ids
|
|
}
|
|
md["default_filters"] = json.dumps(applicable_filters)
|
|
md["color_scheme"] = data.get("color_scheme")
|
|
if data.get("color_namespace"):
|
|
md["color_namespace"] = data.get("color_namespace")
|
|
if data.get("label_colors"):
|
|
md["label_colors"] = data.get("label_colors")
|
|
dashboard.json_metadata = json.dumps(md)
|