Skip to content
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

Add template method: sha512 #548

Merged
merged 1 commit into from
Jan 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
"""Spook - Not your homie."""
from __future__ import annotations

import hashlib
from typing import TYPE_CHECKING, Any

from ....templating import AbstractSpookTemplateFunction

if TYPE_CHECKING:
from collections.abc import Callable


class SpookTemplateFunction(AbstractSpookTemplateFunction):
"""Spook template function to generate sha512 hashes."""

name = "sha512"

requires_hass_object = False
is_available_in_limited_environment = True
is_filter = True
is_global = True

def _function(
self,
value: str,
) -> str:
"""Generate sha512 hash from a string."""
return hashlib.sha512(value.encode()).hexdigest()

def function(self) -> Callable[..., Any]:
"""Return the python method that runs this template function."""
return self._function
Loading