Session#
Session.
Session related objects.
Session
#
Session(
client: Client,
name: str,
ssl: bool,
host: str,
port: int,
password: str,
attempts: int,
)
Session.
The base session object.
PARAMETER | DESCRIPTION |
---|---|
client |
The ongaku client attached to this session.
TYPE:
|
name |
The name of the session.
TYPE:
|
ssl |
Whether the server is
TYPE:
|
host |
The host of the lavalink server.
TYPE:
|
port |
The port of the lavalink server.
TYPE:
|
password |
The password of the lavalink server.
TYPE:
|
attempts |
The attempts that the session is allowed to use, before completely shutting down.
TYPE:
|
auth_headers
property
#
The headers required for authorization.
session_id
property
#
session_id: str | None
The current session id.
Note
Shows up as none if the current session failed to connect, or has not connected yet.
request
async
#
request(
method: str,
path: str,
return_type: typing.Type[types.RequestT] | None,
*,
headers: typing.Mapping[str, typing.Any] = {},
json: (
typing.Mapping[str, typing.Any]
| typing.Sequence[typing.Any]
) = {},
params: typing.Mapping[str, typing.Any] = {},
ignore_default_headers: bool = False,
version: bool = True
) -> types.RequestT | None
Request.
Make a http(s) request to the current session
PARAMETER | DESCRIPTION |
---|---|
method |
The method to send the request as.
TYPE:
|
path |
The path to the url. e.g.
TYPE:
|
return_type |
The response type you expect. |
headers |
The headers to send. |
json |
The json data to send.
TYPE:
|
params |
The parameters to send. |
ignore_default_headers |
Whether to ignore the default headers or not.
TYPE:
|
version |
Whether or not to include the version in the path.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
types.RequestT | None
|
Your requested type of data. |
RAISES | DESCRIPTION |
---|---|
TimeoutError
|
Raised when the request takes too long to respond. |
RestEmptyError
|
Raised when the request required a return type, but received nothing, or a 204 response. |
RestStatusError
|
Raised when a 4XX or a 5XX status is received. |
BuildError
|
Raised when the mapping or sequence could not be built. |
RestRequestError
|
Raised when a 4XX or a 5XX status is received, and lavalink gives more information. |
RestError
|
Raised when an unknown error is caught. |
transfer
async
#
transfer(session_handler: handler_.SessionHandler) -> None
Transfer.
Transfer all the players from this session, to a different one.
Warning
This will close the current sessions connection.
PARAMETER | DESCRIPTION |
---|---|
session_handler |
The session handler, that will allow this session to move its players too.
TYPE:
|