Module slack_bolt.workflows.step.async_step
Expand source code
from functools import wraps
from typing import Callable, Union, Optional, Awaitable, Sequence, List, Pattern
from slack_sdk.web.async_client import AsyncWebClient
from slack_bolt.context.async_context import AsyncBoltContext
from slack_bolt.listener.async_listener import AsyncListener, AsyncCustomListener
from slack_bolt.listener_matcher.builtins import (
workflow_step_edit,
workflow_step_save,
workflow_step_execute,
)
from slack_bolt.middleware.async_custom_middleware import AsyncCustomMiddleware
from slack_bolt.response import BoltResponse
from .internals import _is_used_without_argument
from .utilities.async_complete import AsyncComplete
from .utilities.async_configure import AsyncConfigure
from .utilities.async_fail import AsyncFail
from .utilities.async_update import AsyncUpdate
from ...error import BoltError
from ...listener_matcher.async_listener_matcher import (
AsyncListenerMatcher,
AsyncCustomListenerMatcher,
)
from ...middleware.async_middleware import AsyncMiddleware
class AsyncWorkflowStepBuilder:
"""Steps from Apps
Refer to https://api.slack.com/workflows/steps for details.
"""
callback_id: Union[str, Pattern]
_edit: Optional[AsyncListener]
_save: Optional[AsyncListener]
_execute: Optional[AsyncListener]
def __init__(
self,
callback_id: Union[str, Pattern],
app_name: Optional[str] = None,
):
"""This builder is supposed to be used as decorator.
my_step = AsyncWorkflowStep.builder("my_step")
@my_step.edit
async def edit_my_step(ack, configure):
pass
@my_step.save
async def save_my_step(ack, step, update):
pass
@my_step.execute
async def execute_my_step(step, complete, fail):
pass
app.step(my_step)
For further information about AsyncWorkflowStep specific function arguments
such as `configure`, `update`, `complete`, and `fail`,
refer to the `async` prefixed ones in `slack_bolt.workflows.step.utilities` API documents.
Args:
callback_id: The callback_id for the workflow
app_name: The application name mainly for logging
"""
self.callback_id = callback_id
self.app_name = app_name or __name__
self._edit = None
self._save = None
self._execute = None
def edit(
self,
*args,
matchers: Optional[
Union[Callable[..., Awaitable[bool]], AsyncListenerMatcher]
] = None,
middleware: Optional[Union[Callable, AsyncMiddleware]] = None,
lazy: Optional[List[Callable[..., Awaitable[None]]]] = None,
):
"""Registers a new edit listener with details.
You can use this method as decorator as well.
@my_step.edit
def edit_my_step(ack, configure):
pass
It's also possible to add additional listener matchers and/or middleware
@my_step.edit(matchers=[is_valid], middleware=[update_context])
def edit_my_step(ack, configure):
pass
For further information about AsyncWorkflowStep specific function arguments
such as `configure`, `update`, `complete`, and `fail`,
refer to the `async` prefixed ones in `slack_bolt.workflows.step.utilities` API documents.
Args:
*args: This method can behave as either decorator or a method
matchers: Listener matchers
middleware: Listener middleware
lazy: Lazy listeners
"""
if _is_used_without_argument(args):
func = args[0]
self._edit = self._to_listener("edit", func, matchers, middleware)
return func
def _inner(func):
functions = [func] + (lazy if lazy is not None else [])
self._edit = self._to_listener("edit", functions, matchers, middleware)
@wraps(func)
async def _wrapper(*args, **kwargs):
return await func(*args, **kwargs)
return _wrapper
return _inner
def save(
self,
*args,
matchers: Optional[
Union[Callable[..., Awaitable[bool]], AsyncListenerMatcher]
] = None,
middleware: Optional[Union[Callable, AsyncMiddleware]] = None,
lazy: Optional[List[Callable[..., Awaitable[None]]]] = None,
):
"""Registers a new save listener with details.
You can use this method as decorator as well.
@my_step.save
def save_my_step(ack, step, update):
pass
It's also possible to add additional listener matchers and/or middleware
@my_step.save(matchers=[is_valid], middleware=[update_context])
def save_my_step(ack, step, update):
pass
For further information about AsyncWorkflowStep specific function arguments
such as `configure`, `update`, `complete`, and `fail`,
refer to the `async` prefixed ones in `slack_bolt.workflows.step.utilities` API documents.
Args:
*args: This method can behave as either decorator or a method
matchers: Listener matchers
middleware: Listener middleware
lazy: Lazy listeners
"""
if _is_used_without_argument(args):
func = args[0]
self._save = self._to_listener("save", func, matchers, middleware)
return func
def _inner(func):
functions = [func] + (lazy if lazy is not None else [])
self._save = self._to_listener("save", functions, matchers, middleware)
@wraps(func)
async def _wrapper(*args, **kwargs):
return await func(*args, **kwargs)
return _wrapper
return _inner
def execute(
self,
*args,
matchers: Optional[
Union[Callable[..., Awaitable[bool]], AsyncListenerMatcher]
] = None,
middleware: Optional[Union[Callable, AsyncMiddleware]] = None,
lazy: Optional[List[Callable[..., Awaitable[None]]]] = None,
):
"""Registers a new execute listener with details.
You can use this method as decorator as well.
@my_step.execute
def execute_my_step(step, complete, fail):
pass
It's also possible to add additional listener matchers and/or middleware
@my_step.save(matchers=[is_valid], middleware=[update_context])
def execute_my_step(step, complete, fail):
pass
For further information about AsyncWorkflowStep specific function arguments
such as `configure`, `update`, `complete`, and `fail`,
refer to the `async` prefixed ones in `slack_bolt.workflows.step.utilities` API documents.
Args:
*args: This method can behave as either decorator or a method
matchers: Listener matchers
middleware: Listener middleware
lazy: Lazy listeners
"""
if _is_used_without_argument(args):
func = args[0]
self._execute = self._to_listener("execute", func, matchers, middleware)
return func
def _inner(func):
functions = [func] + (lazy if lazy is not None else [])
self._execute = self._to_listener(
"execute", functions, matchers, middleware
)
@wraps(func)
async def _wrapper(*args, **kwargs):
return await func(*args, **kwargs)
return _wrapper
return _inner
def build(self) -> "AsyncWorkflowStep":
"""Constructs a WorkflowStep object. This method may raise an exception
if the builder doesn't have enough configurations to build the object.
Returns:
An `AsyncWorkflowStep` object
"""
if self._edit is None:
raise BoltError(f"edit listener is not registered")
if self._save is None:
raise BoltError(f"save listener is not registered")
if self._execute is None:
raise BoltError(f"execute listener is not registered")
return AsyncWorkflowStep(
callback_id=self.callback_id,
edit=self._edit,
save=self._save,
execute=self._execute,
app_name=self.app_name,
)
# ---------------------------------------
def _to_listener(
self,
name: str,
listener_or_functions: Union[AsyncListener, Callable, List[Callable]],
matchers: Optional[
Union[Callable[..., Awaitable[bool]], AsyncListenerMatcher]
] = None,
middleware: Optional[Union[Callable, AsyncMiddleware]] = None,
) -> AsyncListener:
return AsyncWorkflowStep.build_listener(
callback_id=self.callback_id,
app_name=self.app_name,
listener_or_functions=listener_or_functions,
name=name,
matchers=self.to_listener_matchers(self.app_name, matchers),
middleware=self.to_listener_middleware(self.app_name, middleware),
)
@staticmethod
def to_listener_matchers(
app_name: str,
matchers: Optional[
List[Union[Callable[..., Awaitable[bool]], AsyncListenerMatcher]]
],
) -> List[AsyncListenerMatcher]:
_matchers = []
if matchers is not None:
for m in matchers:
if isinstance(m, AsyncListenerMatcher):
_matchers.append(m)
elif isinstance(m, Callable):
_matchers.append(
AsyncCustomListenerMatcher(app_name=app_name, func=m)
)
else:
raise ValueError(f"Invalid matcher: {type(m)}")
return _matchers # type: ignore
@staticmethod
def to_listener_middleware(
app_name: str, middleware: Optional[List[Union[Callable, AsyncMiddleware]]]
) -> List[AsyncMiddleware]:
_middleware = []
if middleware is not None:
for m in middleware:
if isinstance(m, AsyncMiddleware):
_middleware.append(m)
elif isinstance(m, Callable):
_middleware.append(AsyncCustomMiddleware(app_name=app_name, func=m))
else:
raise ValueError(f"Invalid middleware: {type(m)}")
return _middleware # type: ignore
class AsyncWorkflowStep:
callback_id: Union[str, Pattern]
"""The Callback ID of the workflow step"""
edit: AsyncListener
"""`edit` listener, which displays a modal in Workflow Builder"""
save: AsyncListener
"""`save` listener, which accepts workflow creator's data submission in Workflow Builder"""
execute: AsyncListener
"""`execute` listener, which processes workflow step execution"""
def __init__(
self,
*,
callback_id: Union[str, Pattern],
edit: Union[
Callable[..., Awaitable[BoltResponse]], AsyncListener, Sequence[Callable]
],
save: Union[
Callable[..., Awaitable[BoltResponse]], AsyncListener, Sequence[Callable]
],
execute: Union[
Callable[..., Awaitable[BoltResponse]], AsyncListener, Sequence[Callable]
],
app_name: Optional[str] = None,
):
self.callback_id = callback_id
app_name = app_name or __name__
self.edit = self.build_listener(callback_id, app_name, edit, "edit")
self.save = self.build_listener(callback_id, app_name, save, "save")
self.execute = self.build_listener(callback_id, app_name, execute, "execute")
@classmethod
def builder(cls, callback_id: Union[str, Pattern]) -> AsyncWorkflowStepBuilder:
return AsyncWorkflowStepBuilder(callback_id)
@classmethod
def build_listener(
cls,
callback_id: Union[str, Pattern],
app_name: str,
listener_or_functions: Union[AsyncListener, Callable, List[Callable]],
name: str,
matchers: Optional[List[AsyncListenerMatcher]] = None,
middleware: Optional[List[AsyncMiddleware]] = None,
):
if listener_or_functions is None:
raise BoltError(f"{name} listener is required (callback_id: {callback_id})")
if isinstance(listener_or_functions, Callable):
listener_or_functions = [listener_or_functions]
if isinstance(listener_or_functions, AsyncListener):
return listener_or_functions
elif isinstance(listener_or_functions, list):
matchers = matchers if matchers else []
matchers.insert(0, cls._build_primary_matcher(name, callback_id))
middleware = middleware if middleware else []
middleware.insert(0, cls._build_single_middleware(name, callback_id))
functions = listener_or_functions
ack_function = functions.pop(0)
return AsyncCustomListener(
app_name=app_name,
matchers=matchers,
middleware=middleware,
ack_function=ack_function,
lazy_functions=functions,
auto_acknowledgement=name == "execute",
)
else:
raise BoltError(
f"Invalid {name} listener: {type(listener_or_functions)} detected (callback_id: {callback_id})"
)
@classmethod
def _build_primary_matcher(
cls, name: str, callback_id: str
) -> AsyncListenerMatcher:
if name == "edit":
return workflow_step_edit(callback_id, asyncio=True)
elif name == "save":
return workflow_step_save(callback_id, asyncio=True)
elif name == "execute":
return workflow_step_execute(callback_id, asyncio=True)
else:
raise ValueError(f"Invalid name {name}")
@classmethod
def _build_single_middleware(cls, name: str, callback_id: str) -> AsyncMiddleware:
if name == "edit":
return _build_edit_listener_middleware(callback_id)
elif name == "save":
return _build_save_listener_middleware()
elif name == "execute":
return _build_execute_listener_middleware()
else:
raise ValueError(f"Invalid name {name}")
#######################
# Edit
#######################
def _build_edit_listener_middleware(callback_id: str) -> AsyncMiddleware:
async def edit_listener_middleware(
context: AsyncBoltContext,
client: AsyncWebClient,
body: dict,
next: Callable[[], Awaitable[BoltResponse]],
):
context["configure"] = AsyncConfigure(
callback_id=callback_id,
client=client,
body=body,
)
return await next()
return AsyncCustomMiddleware(app_name=__name__, func=edit_listener_middleware)
#######################
# Save
#######################
def _build_save_listener_middleware() -> AsyncMiddleware:
async def save_listener_middleware(
context: AsyncBoltContext,
client: AsyncWebClient,
body: dict,
next: Callable[[], Awaitable[BoltResponse]],
):
context["update"] = AsyncUpdate(
client=client,
body=body,
)
return await next()
return AsyncCustomMiddleware(app_name=__name__, func=save_listener_middleware)
#######################
# Execute
#######################
def _build_execute_listener_middleware() -> AsyncMiddleware:
async def execute_listener_middleware(
context: AsyncBoltContext,
client: AsyncWebClient,
body: dict,
next: Callable[[], Awaitable[BoltResponse]],
):
context["complete"] = AsyncComplete(
client=client,
body=body,
)
context["fail"] = AsyncFail(
client=client,
body=body,
)
return await next()
return AsyncCustomMiddleware(app_name=__name__, func=execute_listener_middleware)
Classes
class AsyncWorkflowStep (*, callback_id: Union[str, Pattern], edit: Union[Callable[..., Awaitable[BoltResponse]], AsyncListener, Sequence[Callable]], save: Union[Callable[..., Awaitable[BoltResponse]], AsyncListener, Sequence[Callable]], execute: Union[Callable[..., Awaitable[BoltResponse]], AsyncListener, Sequence[Callable]], app_name: Optional[str] = None)
-
Expand source code
class AsyncWorkflowStep: callback_id: Union[str, Pattern] """The Callback ID of the workflow step""" edit: AsyncListener """`edit` listener, which displays a modal in Workflow Builder""" save: AsyncListener """`save` listener, which accepts workflow creator's data submission in Workflow Builder""" execute: AsyncListener """`execute` listener, which processes workflow step execution""" def __init__( self, *, callback_id: Union[str, Pattern], edit: Union[ Callable[..., Awaitable[BoltResponse]], AsyncListener, Sequence[Callable] ], save: Union[ Callable[..., Awaitable[BoltResponse]], AsyncListener, Sequence[Callable] ], execute: Union[ Callable[..., Awaitable[BoltResponse]], AsyncListener, Sequence[Callable] ], app_name: Optional[str] = None, ): self.callback_id = callback_id app_name = app_name or __name__ self.edit = self.build_listener(callback_id, app_name, edit, "edit") self.save = self.build_listener(callback_id, app_name, save, "save") self.execute = self.build_listener(callback_id, app_name, execute, "execute") @classmethod def builder(cls, callback_id: Union[str, Pattern]) -> AsyncWorkflowStepBuilder: return AsyncWorkflowStepBuilder(callback_id) @classmethod def build_listener( cls, callback_id: Union[str, Pattern], app_name: str, listener_or_functions: Union[AsyncListener, Callable, List[Callable]], name: str, matchers: Optional[List[AsyncListenerMatcher]] = None, middleware: Optional[List[AsyncMiddleware]] = None, ): if listener_or_functions is None: raise BoltError(f"{name} listener is required (callback_id: {callback_id})") if isinstance(listener_or_functions, Callable): listener_or_functions = [listener_or_functions] if isinstance(listener_or_functions, AsyncListener): return listener_or_functions elif isinstance(listener_or_functions, list): matchers = matchers if matchers else [] matchers.insert(0, cls._build_primary_matcher(name, callback_id)) middleware = middleware if middleware else [] middleware.insert(0, cls._build_single_middleware(name, callback_id)) functions = listener_or_functions ack_function = functions.pop(0) return AsyncCustomListener( app_name=app_name, matchers=matchers, middleware=middleware, ack_function=ack_function, lazy_functions=functions, auto_acknowledgement=name == "execute", ) else: raise BoltError( f"Invalid {name} listener: {type(listener_or_functions)} detected (callback_id: {callback_id})" ) @classmethod def _build_primary_matcher( cls, name: str, callback_id: str ) -> AsyncListenerMatcher: if name == "edit": return workflow_step_edit(callback_id, asyncio=True) elif name == "save": return workflow_step_save(callback_id, asyncio=True) elif name == "execute": return workflow_step_execute(callback_id, asyncio=True) else: raise ValueError(f"Invalid name {name}") @classmethod def _build_single_middleware(cls, name: str, callback_id: str) -> AsyncMiddleware: if name == "edit": return _build_edit_listener_middleware(callback_id) elif name == "save": return _build_save_listener_middleware() elif name == "execute": return _build_execute_listener_middleware() else: raise ValueError(f"Invalid name {name}")
Class variables
var callback_id : Union[str, Pattern]
-
The Callback ID of the workflow step
var edit : AsyncListener
-
edit
listener, which displays a modal in Workflow Builder var execute : AsyncListener
-
execute
listener, which processes workflow step execution var save : AsyncListener
-
save
listener, which accepts workflow creator's data submission in Workflow Builder
Static methods
def build_listener(callback_id: Union[str, Pattern], app_name: str, listener_or_functions: Union[AsyncListener, Callable, List[Callable]], name: str, matchers: Optional[List[AsyncListenerMatcher]] = None, middleware: Optional[List[AsyncMiddleware]] = None)
-
Expand source code
@classmethod def build_listener( cls, callback_id: Union[str, Pattern], app_name: str, listener_or_functions: Union[AsyncListener, Callable, List[Callable]], name: str, matchers: Optional[List[AsyncListenerMatcher]] = None, middleware: Optional[List[AsyncMiddleware]] = None, ): if listener_or_functions is None: raise BoltError(f"{name} listener is required (callback_id: {callback_id})") if isinstance(listener_or_functions, Callable): listener_or_functions = [listener_or_functions] if isinstance(listener_or_functions, AsyncListener): return listener_or_functions elif isinstance(listener_or_functions, list): matchers = matchers if matchers else [] matchers.insert(0, cls._build_primary_matcher(name, callback_id)) middleware = middleware if middleware else [] middleware.insert(0, cls._build_single_middleware(name, callback_id)) functions = listener_or_functions ack_function = functions.pop(0) return AsyncCustomListener( app_name=app_name, matchers=matchers, middleware=middleware, ack_function=ack_function, lazy_functions=functions, auto_acknowledgement=name == "execute", ) else: raise BoltError( f"Invalid {name} listener: {type(listener_or_functions)} detected (callback_id: {callback_id})" )
def builder(callback_id: Union[str, Pattern]) ‑> AsyncWorkflowStepBuilder
-
Expand source code
@classmethod def builder(cls, callback_id: Union[str, Pattern]) -> AsyncWorkflowStepBuilder: return AsyncWorkflowStepBuilder(callback_id)
class AsyncWorkflowStepBuilder (callback_id: Union[str, Pattern], app_name: Optional[str] = None)
-
Steps from Apps Refer to https://api.slack.com/workflows/steps for details.
This builder is supposed to be used as decorator.
my_step = AsyncWorkflowStep.builder("my_step") @my_step.edit async def edit_my_step(ack, configure): pass @my_step.save async def save_my_step(ack, step, update): pass @my_step.execute async def execute_my_step(step, complete, fail): pass app.step(my_step)
For further information about AsyncWorkflowStep specific function arguments such as
configure
,update
,complete
, andfail
, refer to theasync
prefixed ones inslack_bolt.workflows.step.utilities
API documents.Args
callback_id
- The callback_id for the workflow
app_name
- The application name mainly for logging
Expand source code
class AsyncWorkflowStepBuilder: """Steps from Apps Refer to https://api.slack.com/workflows/steps for details. """ callback_id: Union[str, Pattern] _edit: Optional[AsyncListener] _save: Optional[AsyncListener] _execute: Optional[AsyncListener] def __init__( self, callback_id: Union[str, Pattern], app_name: Optional[str] = None, ): """This builder is supposed to be used as decorator. my_step = AsyncWorkflowStep.builder("my_step") @my_step.edit async def edit_my_step(ack, configure): pass @my_step.save async def save_my_step(ack, step, update): pass @my_step.execute async def execute_my_step(step, complete, fail): pass app.step(my_step) For further information about AsyncWorkflowStep specific function arguments such as `configure`, `update`, `complete`, and `fail`, refer to the `async` prefixed ones in `slack_bolt.workflows.step.utilities` API documents. Args: callback_id: The callback_id for the workflow app_name: The application name mainly for logging """ self.callback_id = callback_id self.app_name = app_name or __name__ self._edit = None self._save = None self._execute = None def edit( self, *args, matchers: Optional[ Union[Callable[..., Awaitable[bool]], AsyncListenerMatcher] ] = None, middleware: Optional[Union[Callable, AsyncMiddleware]] = None, lazy: Optional[List[Callable[..., Awaitable[None]]]] = None, ): """Registers a new edit listener with details. You can use this method as decorator as well. @my_step.edit def edit_my_step(ack, configure): pass It's also possible to add additional listener matchers and/or middleware @my_step.edit(matchers=[is_valid], middleware=[update_context]) def edit_my_step(ack, configure): pass For further information about AsyncWorkflowStep specific function arguments such as `configure`, `update`, `complete`, and `fail`, refer to the `async` prefixed ones in `slack_bolt.workflows.step.utilities` API documents. Args: *args: This method can behave as either decorator or a method matchers: Listener matchers middleware: Listener middleware lazy: Lazy listeners """ if _is_used_without_argument(args): func = args[0] self._edit = self._to_listener("edit", func, matchers, middleware) return func def _inner(func): functions = [func] + (lazy if lazy is not None else []) self._edit = self._to_listener("edit", functions, matchers, middleware) @wraps(func) async def _wrapper(*args, **kwargs): return await func(*args, **kwargs) return _wrapper return _inner def save( self, *args, matchers: Optional[ Union[Callable[..., Awaitable[bool]], AsyncListenerMatcher] ] = None, middleware: Optional[Union[Callable, AsyncMiddleware]] = None, lazy: Optional[List[Callable[..., Awaitable[None]]]] = None, ): """Registers a new save listener with details. You can use this method as decorator as well. @my_step.save def save_my_step(ack, step, update): pass It's also possible to add additional listener matchers and/or middleware @my_step.save(matchers=[is_valid], middleware=[update_context]) def save_my_step(ack, step, update): pass For further information about AsyncWorkflowStep specific function arguments such as `configure`, `update`, `complete`, and `fail`, refer to the `async` prefixed ones in `slack_bolt.workflows.step.utilities` API documents. Args: *args: This method can behave as either decorator or a method matchers: Listener matchers middleware: Listener middleware lazy: Lazy listeners """ if _is_used_without_argument(args): func = args[0] self._save = self._to_listener("save", func, matchers, middleware) return func def _inner(func): functions = [func] + (lazy if lazy is not None else []) self._save = self._to_listener("save", functions, matchers, middleware) @wraps(func) async def _wrapper(*args, **kwargs): return await func(*args, **kwargs) return _wrapper return _inner def execute( self, *args, matchers: Optional[ Union[Callable[..., Awaitable[bool]], AsyncListenerMatcher] ] = None, middleware: Optional[Union[Callable, AsyncMiddleware]] = None, lazy: Optional[List[Callable[..., Awaitable[None]]]] = None, ): """Registers a new execute listener with details. You can use this method as decorator as well. @my_step.execute def execute_my_step(step, complete, fail): pass It's also possible to add additional listener matchers and/or middleware @my_step.save(matchers=[is_valid], middleware=[update_context]) def execute_my_step(step, complete, fail): pass For further information about AsyncWorkflowStep specific function arguments such as `configure`, `update`, `complete`, and `fail`, refer to the `async` prefixed ones in `slack_bolt.workflows.step.utilities` API documents. Args: *args: This method can behave as either decorator or a method matchers: Listener matchers middleware: Listener middleware lazy: Lazy listeners """ if _is_used_without_argument(args): func = args[0] self._execute = self._to_listener("execute", func, matchers, middleware) return func def _inner(func): functions = [func] + (lazy if lazy is not None else []) self._execute = self._to_listener( "execute", functions, matchers, middleware ) @wraps(func) async def _wrapper(*args, **kwargs): return await func(*args, **kwargs) return _wrapper return _inner def build(self) -> "AsyncWorkflowStep": """Constructs a WorkflowStep object. This method may raise an exception if the builder doesn't have enough configurations to build the object. Returns: An `AsyncWorkflowStep` object """ if self._edit is None: raise BoltError(f"edit listener is not registered") if self._save is None: raise BoltError(f"save listener is not registered") if self._execute is None: raise BoltError(f"execute listener is not registered") return AsyncWorkflowStep( callback_id=self.callback_id, edit=self._edit, save=self._save, execute=self._execute, app_name=self.app_name, ) # --------------------------------------- def _to_listener( self, name: str, listener_or_functions: Union[AsyncListener, Callable, List[Callable]], matchers: Optional[ Union[Callable[..., Awaitable[bool]], AsyncListenerMatcher] ] = None, middleware: Optional[Union[Callable, AsyncMiddleware]] = None, ) -> AsyncListener: return AsyncWorkflowStep.build_listener( callback_id=self.callback_id, app_name=self.app_name, listener_or_functions=listener_or_functions, name=name, matchers=self.to_listener_matchers(self.app_name, matchers), middleware=self.to_listener_middleware(self.app_name, middleware), ) @staticmethod def to_listener_matchers( app_name: str, matchers: Optional[ List[Union[Callable[..., Awaitable[bool]], AsyncListenerMatcher]] ], ) -> List[AsyncListenerMatcher]: _matchers = [] if matchers is not None: for m in matchers: if isinstance(m, AsyncListenerMatcher): _matchers.append(m) elif isinstance(m, Callable): _matchers.append( AsyncCustomListenerMatcher(app_name=app_name, func=m) ) else: raise ValueError(f"Invalid matcher: {type(m)}") return _matchers # type: ignore @staticmethod def to_listener_middleware( app_name: str, middleware: Optional[List[Union[Callable, AsyncMiddleware]]] ) -> List[AsyncMiddleware]: _middleware = [] if middleware is not None: for m in middleware: if isinstance(m, AsyncMiddleware): _middleware.append(m) elif isinstance(m, Callable): _middleware.append(AsyncCustomMiddleware(app_name=app_name, func=m)) else: raise ValueError(f"Invalid middleware: {type(m)}") return _middleware # type: ignore
Class variables
var callback_id : Union[str, Pattern]
Static methods
def to_listener_matchers(app_name: str, matchers: Optional[List[Union[Callable[..., Awaitable[bool]], AsyncListenerMatcher]]]) ‑> List[AsyncListenerMatcher]
-
Expand source code
@staticmethod def to_listener_matchers( app_name: str, matchers: Optional[ List[Union[Callable[..., Awaitable[bool]], AsyncListenerMatcher]] ], ) -> List[AsyncListenerMatcher]: _matchers = [] if matchers is not None: for m in matchers: if isinstance(m, AsyncListenerMatcher): _matchers.append(m) elif isinstance(m, Callable): _matchers.append( AsyncCustomListenerMatcher(app_name=app_name, func=m) ) else: raise ValueError(f"Invalid matcher: {type(m)}") return _matchers # type: ignore
def to_listener_middleware(app_name: str, middleware: Optional[List[Union[Callable, AsyncMiddleware]]]) ‑> List[AsyncMiddleware]
-
Expand source code
@staticmethod def to_listener_middleware( app_name: str, middleware: Optional[List[Union[Callable, AsyncMiddleware]]] ) -> List[AsyncMiddleware]: _middleware = [] if middleware is not None: for m in middleware: if isinstance(m, AsyncMiddleware): _middleware.append(m) elif isinstance(m, Callable): _middleware.append(AsyncCustomMiddleware(app_name=app_name, func=m)) else: raise ValueError(f"Invalid middleware: {type(m)}") return _middleware # type: ignore
Methods
def build(self) ‑> AsyncWorkflowStep
-
Constructs a WorkflowStep object. This method may raise an exception if the builder doesn't have enough configurations to build the object.
Returns
An
AsyncWorkflowStep
objectExpand source code
def build(self) -> "AsyncWorkflowStep": """Constructs a WorkflowStep object. This method may raise an exception if the builder doesn't have enough configurations to build the object. Returns: An `AsyncWorkflowStep` object """ if self._edit is None: raise BoltError(f"edit listener is not registered") if self._save is None: raise BoltError(f"save listener is not registered") if self._execute is None: raise BoltError(f"execute listener is not registered") return AsyncWorkflowStep( callback_id=self.callback_id, edit=self._edit, save=self._save, execute=self._execute, app_name=self.app_name, )
def edit(self, *args, matchers: Union[Callable[..., Awaitable[bool]], AsyncListenerMatcher, NoneType] = None, middleware: Union[Callable, AsyncMiddleware, NoneType] = None, lazy: Optional[List[Callable[..., Awaitable[NoneType]]]] = None)
-
Registers a new edit listener with details. You can use this method as decorator as well.
@my_step.edit def edit_my_step(ack, configure): pass
It's also possible to add additional listener matchers and/or middleware
@my_step.edit(matchers=[is_valid], middleware=[update_context]) def edit_my_step(ack, configure): pass
For further information about AsyncWorkflowStep specific function arguments such as
configure
,update
,complete
, andfail
, refer to theasync
prefixed ones inslack_bolt.workflows.step.utilities
API documents.Args
*args
- This method can behave as either decorator or a method
matchers
- Listener matchers
middleware
- Listener middleware
lazy
- Lazy listeners
Expand source code
def edit( self, *args, matchers: Optional[ Union[Callable[..., Awaitable[bool]], AsyncListenerMatcher] ] = None, middleware: Optional[Union[Callable, AsyncMiddleware]] = None, lazy: Optional[List[Callable[..., Awaitable[None]]]] = None, ): """Registers a new edit listener with details. You can use this method as decorator as well. @my_step.edit def edit_my_step(ack, configure): pass It's also possible to add additional listener matchers and/or middleware @my_step.edit(matchers=[is_valid], middleware=[update_context]) def edit_my_step(ack, configure): pass For further information about AsyncWorkflowStep specific function arguments such as `configure`, `update`, `complete`, and `fail`, refer to the `async` prefixed ones in `slack_bolt.workflows.step.utilities` API documents. Args: *args: This method can behave as either decorator or a method matchers: Listener matchers middleware: Listener middleware lazy: Lazy listeners """ if _is_used_without_argument(args): func = args[0] self._edit = self._to_listener("edit", func, matchers, middleware) return func def _inner(func): functions = [func] + (lazy if lazy is not None else []) self._edit = self._to_listener("edit", functions, matchers, middleware) @wraps(func) async def _wrapper(*args, **kwargs): return await func(*args, **kwargs) return _wrapper return _inner
def execute(self, *args, matchers: Union[Callable[..., Awaitable[bool]], AsyncListenerMatcher, NoneType] = None, middleware: Union[Callable, AsyncMiddleware, NoneType] = None, lazy: Optional[List[Callable[..., Awaitable[NoneType]]]] = None)
-
Registers a new execute listener with details. You can use this method as decorator as well.
@my_step.execute def execute_my_step(step, complete, fail): pass
It's also possible to add additional listener matchers and/or middleware
@my_step.save(matchers=[is_valid], middleware=[update_context]) def execute_my_step(step, complete, fail): pass
For further information about AsyncWorkflowStep specific function arguments such as
configure
,update
,complete
, andfail
, refer to theasync
prefixed ones inslack_bolt.workflows.step.utilities
API documents.Args
*args
- This method can behave as either decorator or a method
matchers
- Listener matchers
middleware
- Listener middleware
lazy
- Lazy listeners
Expand source code
def execute( self, *args, matchers: Optional[ Union[Callable[..., Awaitable[bool]], AsyncListenerMatcher] ] = None, middleware: Optional[Union[Callable, AsyncMiddleware]] = None, lazy: Optional[List[Callable[..., Awaitable[None]]]] = None, ): """Registers a new execute listener with details. You can use this method as decorator as well. @my_step.execute def execute_my_step(step, complete, fail): pass It's also possible to add additional listener matchers and/or middleware @my_step.save(matchers=[is_valid], middleware=[update_context]) def execute_my_step(step, complete, fail): pass For further information about AsyncWorkflowStep specific function arguments such as `configure`, `update`, `complete`, and `fail`, refer to the `async` prefixed ones in `slack_bolt.workflows.step.utilities` API documents. Args: *args: This method can behave as either decorator or a method matchers: Listener matchers middleware: Listener middleware lazy: Lazy listeners """ if _is_used_without_argument(args): func = args[0] self._execute = self._to_listener("execute", func, matchers, middleware) return func def _inner(func): functions = [func] + (lazy if lazy is not None else []) self._execute = self._to_listener( "execute", functions, matchers, middleware ) @wraps(func) async def _wrapper(*args, **kwargs): return await func(*args, **kwargs) return _wrapper return _inner
def save(self, *args, matchers: Union[Callable[..., Awaitable[bool]], AsyncListenerMatcher, NoneType] = None, middleware: Union[Callable, AsyncMiddleware, NoneType] = None, lazy: Optional[List[Callable[..., Awaitable[NoneType]]]] = None)
-
Registers a new save listener with details. You can use this method as decorator as well.
@my_step.save def save_my_step(ack, step, update): pass
It's also possible to add additional listener matchers and/or middleware
@my_step.save(matchers=[is_valid], middleware=[update_context]) def save_my_step(ack, step, update): pass
For further information about AsyncWorkflowStep specific function arguments such as
configure
,update
,complete
, andfail
, refer to theasync
prefixed ones inslack_bolt.workflows.step.utilities
API documents.Args
*args
- This method can behave as either decorator or a method
matchers
- Listener matchers
middleware
- Listener middleware
lazy
- Lazy listeners
Expand source code
def save( self, *args, matchers: Optional[ Union[Callable[..., Awaitable[bool]], AsyncListenerMatcher] ] = None, middleware: Optional[Union[Callable, AsyncMiddleware]] = None, lazy: Optional[List[Callable[..., Awaitable[None]]]] = None, ): """Registers a new save listener with details. You can use this method as decorator as well. @my_step.save def save_my_step(ack, step, update): pass It's also possible to add additional listener matchers and/or middleware @my_step.save(matchers=[is_valid], middleware=[update_context]) def save_my_step(ack, step, update): pass For further information about AsyncWorkflowStep specific function arguments such as `configure`, `update`, `complete`, and `fail`, refer to the `async` prefixed ones in `slack_bolt.workflows.step.utilities` API documents. Args: *args: This method can behave as either decorator or a method matchers: Listener matchers middleware: Listener middleware lazy: Lazy listeners """ if _is_used_without_argument(args): func = args[0] self._save = self._to_listener("save", func, matchers, middleware) return func def _inner(func): functions = [func] + (lazy if lazy is not None else []) self._save = self._to_listener("save", functions, matchers, middleware) @wraps(func) async def _wrapper(*args, **kwargs): return await func(*args, **kwargs) return _wrapper return _inner