-
Notifications
You must be signed in to change notification settings - Fork 14k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[dashboard] Refactor API using SIP-35 (#9315)
* [dashboard] Refactor API using SIP-35 * [dashboard] Fix, import * [dashboard] more tests * [dashboards] a misc of improvements * [charts] Fix, DAO and tests * [dashboards] small exceptions refactor * [dashboards] lint * [dashboards] Improves comments on base classes * [dashboards] lint
- Loading branch information
Showing
27 changed files
with
1,473 additions
and
401 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# 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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,111 @@ | ||
# 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 typing import Dict, Optional | ||
|
||
from flask_appbuilder.models.filters import BaseFilter | ||
from flask_appbuilder.models.sqla import Model | ||
from flask_appbuilder.models.sqla.interface import SQLAInterface | ||
from sqlalchemy.exc import SQLAlchemyError | ||
|
||
from superset.dao.exceptions import ( | ||
DAOConfigError, | ||
DAOCreateFailedError, | ||
DAODeleteFailedError, | ||
DAOUpdateFailedError, | ||
) | ||
from superset.extensions import db | ||
|
||
|
||
class BaseDAO: | ||
""" | ||
Base DAO, implement base CRUD sqlalchemy operations | ||
""" | ||
|
||
model_cls: Optional[Model] = None | ||
""" | ||
Child classes need to state the Model class so they don't need to implement basic | ||
create, update and delete methods | ||
""" # pylint: disable=pointless-string-statement | ||
base_filter: Optional[BaseFilter] = None | ||
""" | ||
Child classes can register base filtering to be aplied to all filter methods | ||
""" # pylint: disable=pointless-string-statement | ||
|
||
@classmethod | ||
def find_by_id(cls, model_id: int) -> Model: | ||
""" | ||
Retrives a model by id, if defined applies `base_filter` | ||
""" | ||
query = db.session.query(cls.model_cls) | ||
if cls.base_filter: | ||
data_model = SQLAInterface(cls.model_cls, db.session) | ||
query = cls.base_filter( # pylint: disable=not-callable | ||
"id", data_model | ||
).apply(query, None) | ||
return query.filter_by(id=model_id).one_or_none() | ||
|
||
@classmethod | ||
def create(cls, properties: Dict, commit=True) -> Optional[Model]: | ||
""" | ||
Generic for creating models | ||
:raises: DAOCreateFailedError | ||
""" | ||
if cls.model_cls is None: | ||
raise DAOConfigError() | ||
model = cls.model_cls() # pylint: disable=not-callable | ||
for key, value in properties.items(): | ||
setattr(model, key, value) | ||
try: | ||
db.session.add(model) | ||
if commit: | ||
db.session.commit() | ||
except SQLAlchemyError as e: # pragma: no cover | ||
db.session.rollback() | ||
raise DAOCreateFailedError(exception=e) | ||
return model | ||
|
||
@classmethod | ||
def update(cls, model: Model, properties: Dict, commit=True) -> Optional[Model]: | ||
""" | ||
Generic update a model | ||
:raises: DAOCreateFailedError | ||
""" | ||
for key, value in properties.items(): | ||
setattr(model, key, value) | ||
try: | ||
db.session.merge(model) | ||
if commit: | ||
db.session.commit() | ||
except SQLAlchemyError as e: # pragma: no cover | ||
db.session.rollback() | ||
raise DAOUpdateFailedError(exception=e) | ||
return model | ||
|
||
@classmethod | ||
def delete(cls, model: Model, commit=True): | ||
""" | ||
Generic delete a model | ||
:raises: DAOCreateFailedError | ||
""" | ||
try: | ||
db.session.delete(model) | ||
if commit: | ||
db.session.commit() | ||
except SQLAlchemyError as e: # pragma: no cover | ||
db.session.rollback() | ||
raise DAODeleteFailedError(exception=e) | ||
return model |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
# 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 superset.exceptions import SupersetException | ||
|
||
|
||
class DAOException(SupersetException): | ||
""" | ||
Base DAO exception class | ||
""" | ||
|
||
pass | ||
|
||
|
||
class DAOCreateFailedError(DAOException): | ||
""" | ||
DAO Create failed | ||
""" | ||
|
||
message = "Create failed" | ||
|
||
|
||
class DAOUpdateFailedError(DAOException): | ||
""" | ||
DAO Update failed | ||
""" | ||
|
||
message = "Updated failed" | ||
|
||
|
||
class DAODeleteFailedError(DAOException): | ||
""" | ||
DAO Delete failed | ||
""" | ||
|
||
message = "Delete failed" | ||
|
||
|
||
class DAOConfigError(DAOException): | ||
""" | ||
DAO is miss configured | ||
""" | ||
|
||
message = "DAO is not configured correctly missing model definition" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# 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. |
Oops, something went wrong.