-
-
Notifications
You must be signed in to change notification settings - Fork 37.5k
Allow template in query in sql #150287
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Allow template in query in sql #150287
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
c1fe1eb
Allow template in query in sql
gjohansson-ST 50032b6
Add tests
gjohansson-ST ddda885
More tests
gjohansson-ST baa29cb
Add tests
gjohansson-ST 52642db
Fix tests
gjohansson-ST fdb984c
ruff
gjohansson-ST d7af6d8
fixes
gjohansson-ST 2693e5b
Mod
gjohansson-ST 3c80d34
Fix query template selector
gjohansson-ST 56893e5
Use exceptions
gjohansson-ST File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
|
|
@@ -19,11 +19,13 @@ | |
| ) | ||
| from homeassistant.exceptions import ServiceValidationError | ||
| from homeassistant.helpers import config_validation as cv | ||
| from homeassistant.helpers.trigger_template_entity import ValueTemplate | ||
| from homeassistant.util.json import JsonValueType | ||
|
|
||
| from .const import CONF_QUERY, DOMAIN | ||
| from .util import ( | ||
| async_create_sessionmaker, | ||
| check_and_render_sql_query, | ||
| convert_value, | ||
| generate_lambda_stmt, | ||
| redact_credentials, | ||
|
|
@@ -37,7 +39,9 @@ | |
| SERVICE_QUERY = "query" | ||
| SERVICE_QUERY_SCHEMA = vol.Schema( | ||
| { | ||
| vol.Required(CONF_QUERY): vol.All(cv.string, validate_sql_select), | ||
| vol.Required(CONF_QUERY): vol.All( | ||
| cv.template, ValueTemplate.from_template, validate_sql_select | ||
| ), | ||
|
Comment on lines
+42
to
+44
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is a schema for a service. It should not contain templates, as template support for services is handled automatically by Core prior to this validation. |
||
| vol.Optional(CONF_DB_URL): cv.string, | ||
| } | ||
| ) | ||
|
|
@@ -72,8 +76,9 @@ async def _async_query_service( | |
| def _execute_and_convert_query() -> list[JsonValueType]: | ||
| """Execute the query and return the results with converted types.""" | ||
| sess: Session = sessmaker() | ||
| rendered_query = check_and_render_sql_query(call.hass, query_str) | ||
| try: | ||
| result: Result = sess.execute(generate_lambda_stmt(query_str)) | ||
| result: Result = sess.execute(generate_lambda_stmt(rendered_query)) | ||
| except SQLAlchemyError as err: | ||
| _LOGGER.debug( | ||
| "Error executing query %s: %s", | ||
|
|
||
This file contains hidden or 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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.