Client#
Client.
The base client for ongaku.
Client
#
Client(
app: hikari.GatewayBotAware,
*,
session_handler: typing.Type[
SessionHandler
] = BasicSessionHandler,
logs: str | int = "INFO",
attempts: int = 3
)
Client.
The client for ongaku.
Note
The lowest log level for ongaku is TRACE_ONGAKU
which will result in all traces being printed to the terminal.
PARAMETER | DESCRIPTION |
---|---|
app |
The application that the client will attach too.
TYPE:
|
session_handler |
The session handler to use for the current client.
TYPE:
|
logs |
The log level for ongaku. |
attempts |
The amount of attempts a session will try to connect to the server.
TYPE:
|
is_alive
property
#
is_alive: bool
Whether the session handler is alive.
Note
If the hikari.StartedEvent
has occurred, and this is False, ongaku is no longer running and has crashed. Check your logs.
session_handler
property
#
session_handler: SessionHandler
Session handler.
The session handler that is currently controlling the sessions.
Warning
This should not be touched, or used if you do not know what you are doing. Please use the other methods in client for anything session handler related.
from_arc
classmethod
#
from_arc(
client: arc.GatewayClient,
*,
session_handler: typing.Type[
SessionHandler
] = BasicSessionHandler,
logs: str | int = "INFO",
attempts: int = 3
) -> Client
From Arc.
This supports client
and player
injection for Arc
Example
PARAMETER | DESCRIPTION |
---|---|
client |
Your Gateway client for arc.
TYPE:
|
session_handler |
The session handler to use for the current client.
TYPE:
|
logs |
The log level for ongaku. |
attempts |
The amount of attempts a session will try to connect to the server.
TYPE:
|
from_tanjun
classmethod
#
from_tanjun(
client: tanjun.abc.Client,
*,
session_handler: typing.Type[
SessionHandler
] = BasicSessionHandler,
logs: str | int = "INFO",
attempts: int = 3
) -> Client
From Tanjun.
This supports client
injection for Tanjun
Example
PARAMETER | DESCRIPTION |
---|---|
client |
Your Gateway client from tanjun. |
session_handler |
The session handler to use for the current client.
TYPE:
|
logs |
The log level for ongaku. |
attempts |
The amount of attempts a session will try to connect to the server.
TYPE:
|
create_session
#
create_session(
name: str,
ssl: bool = False,
host: str = "127.0.0.1",
port: int = 2333,
password: str = "youshallnotpass",
) -> Session
Create Session.
Create a new session for the session handler.
Example
Warning
The name set must be unique, otherwise an error will be raised.
Parameters
name
The name of the session
ssl
Whether the server uses https
or just http
.
host
The host of the lavalink server.
port
The port of the lavalink server.
password
The password of the lavalink server.
attempts
The attempts that the session is allowed to use, before completely shutting down.
RETURNS | DESCRIPTION |
---|---|
Session
|
The session that was added to the handler. |
RAISES | DESCRIPTION |
---|---|
UniqueError
|
|
fetch_session
#
delete_session
async
#
delete_session(name: str) -> None
Delete a session.
Delete a session from the session handler.
PARAMETER | DESCRIPTION |
---|---|
name |
The name of the session
TYPE:
|
RAISES | DESCRIPTION |
---|---|
SessionMissingError
|
Raised when the session does not exist. |
create_player
#
create_player(
guild: hikari.SnowflakeishOr[hikari.Guild],
) -> Player
Create a player.
Create a new player to play songs on.
Example
PARAMETER | DESCRIPTION |
---|---|
guild |
The
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
Player
|
The player that was created. |
RAISES | DESCRIPTION |
---|---|
NoSessionsError
|
When there is no available sessions. |
fetch_player
#
fetch_player(
guild: hikari.SnowflakeishOr[hikari.Guild],
) -> Player
Fetch a player.
Fetches an existing player.
Example
PARAMETER | DESCRIPTION |
---|---|
guild |
The
TYPE:
|
RAISES | DESCRIPTION |
---|---|
PlayerMissingError
|
Raised when the player for the specified guild does not exist. |
delete_player
async
#
delete_player(
guild: hikari.SnowflakeishOr[hikari.Guild],
) -> None
Delete a player.
Delete a pre-existing player.
PARAMETER | DESCRIPTION |
---|---|
guild |
The
TYPE:
|
RAISES | DESCRIPTION |
---|---|
PlayerMissingError
|
Raised when the player for the specified guild does not exist. |