* Update docker-compose.yml No dotenv file needed. All environment values are now defined in docker-compose * Update RU.json * Updated docker-compose * Update README.md * Resolved issue where playback didn’t start after user joined channel 247 * Added logging system * Updated logging system * Update player.py * Added 24/7 required intent * Update main.py * Added logs folder * Updated logging system * Updated logging system * Added some typehint * Removed error_log * Renamed a valuable * Removed unnecessary value * Fixed some bugs * Added bot status settings * Added autocomplete in playtop * Added a new emoji in Loop button * Optimized code * Update requirements.txt * Fixed autoplay with empty queue This commit addresses the issue where autoplay was being activated even when the history queue had no tracks. The problem has been resolved to ensure smooth user experience * Enhanced Loop Control Button Functionality * Updated the loop button in controller * Fixed activity update Resolved the issue where activity updates were not reflected when the value remained the same. * Added sync function in debug view * Optimized code * Added version in the debug * Added nodes panel in debug view * Merged .env into settings.json * Rewritten ipc_client * Separated the dashboard from the project * Removed some necessary requirements * Remove support for replit * Update README.md * Update settings Example.json * Added get_recommendations into node class * Saved log file when updating * Rewritten some method in ipc_client * Written swap and remove method in queue * Added remove_track and swap_track method in player * Update methods.py * Added secure protocol in ipc client * Fixed some bugs * Added some method in ipc cilent * Update methods.py * Update methods.py * Added playlist method * Optimized Spotify client code * Added Category class in Spotify client * Added settings method in ipc client * Fixed some bugs * Send track requester_id in initPlayer * Fixed some bugs * Fixed some bugs * Optimized some code * Dump discord.py * Added start and end position for each track * Update methods.py * Fixed a bug * Fixed some bugs * Fixed IPC client creation issue * Rewrote filters * Fixed some bugs * Added filter event in ipc method * Added filter selector in music controller * Added inbox method * Optimized some code * Updated zh-TW local_lang * Fixed some bugs * Delete supervisord.conf * Fixed some bugs * Updated wording in IPC client * Update pool.py * Fixed no song suggestions when spotify_client is None * Fixed connection problem from the dashboard * Fixed some bugs * Added voice status (#33) * Updated the placeholder name for clarity * Added voice status * Dump bot version * Added global template for voice status * Added new placeholder * Updated settings view * Updated version tag * Improved codes * Fixed some bugs * Supported clear queue endpoint in ipc * Update methods.py * Update README.md * Remove PLACEHOLDERS.MD --------- Co-authored-by: Azarath7 <158289825+Azarath7@users.noreply.github.com>
208 lines
6.9 KiB
Python
208 lines
6.9 KiB
Python
"""MIT License
|
|
|
|
Copyright (c) 2023 - present Vocard Development
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
in the Software without restriction, including without limitation the rights
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
The above copyright notice and this permission notice shall be included in all
|
|
copies or substantial portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
SOFTWARE.
|
|
"""
|
|
|
|
import random
|
|
import time
|
|
import socket
|
|
from timeit import default_timer as timer
|
|
from itertools import zip_longest
|
|
|
|
from typing import Dict, Optional
|
|
|
|
__all__ = [
|
|
"ExponentialBackoff",
|
|
"NodeStats",
|
|
"NodeInfoVersion",
|
|
"NodeInfo",
|
|
"Plugin",
|
|
"Ping"
|
|
]
|
|
|
|
class ExponentialBackoff:
|
|
"""
|
|
The MIT License (MIT)
|
|
Copyright (c) 2015-present Rapptz
|
|
Permission is hereby granted, free of charge, to any person obtaining a
|
|
copy of this software and associated documentation files (the "Software"),
|
|
to deal in the Software without restriction, including without limitation
|
|
the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
and/or sell copies of the Software, and to permit persons to whom the
|
|
Software is furnished to do so, subject to the following conditions:
|
|
The above copyright notice and this permission notice shall be included in
|
|
all copies or substantial portions of the Software.
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
DEALINGS IN THE SOFTWARE.
|
|
"""
|
|
|
|
def __init__(self, base: int = 1, *, integral: bool = False) -> None:
|
|
|
|
self._base = base
|
|
|
|
self._exp = 0
|
|
self._max = 10
|
|
self._reset_time = base * 2 ** 11
|
|
self._last_invocation = time.monotonic()
|
|
|
|
rand = random.Random()
|
|
rand.seed()
|
|
|
|
self._randfunc = rand.randrange if integral else rand.uniform
|
|
|
|
def delay(self) -> float:
|
|
|
|
invocation = time.monotonic()
|
|
interval = invocation - self._last_invocation
|
|
self._last_invocation = invocation
|
|
|
|
if interval > self._reset_time:
|
|
self._exp = 0
|
|
|
|
self._exp = min(self._exp + 1, self._max)
|
|
return self._randfunc(0, self._base * 2 ** self._exp)
|
|
|
|
|
|
class NodeStats:
|
|
"""The base class for the node stats object.
|
|
Gives critical information on the node, which is updated every minute.
|
|
"""
|
|
|
|
def __init__(self, data: Dict) -> None:
|
|
|
|
memory: Dict = data.get("memory")
|
|
self.used: int = memory.get("used")
|
|
self.free: int = memory.get("free")
|
|
self.reservable: int = memory.get("reservable")
|
|
self.allocated: int = memory.get("allocated")
|
|
|
|
cpu: Dict = data.get("cpu")
|
|
self.cpu_cores: int = cpu.get("cores")
|
|
self.cpu_system_load: float = cpu.get("systemLoad")
|
|
self.cpu_process_load: float = cpu.get("lavalinkLoad")
|
|
|
|
self.players_active: int = data.get("playingPlayers")
|
|
self.players_total: int = data.get("players")
|
|
self.uptime: int = data.get("uptime")
|
|
|
|
def __repr__(self) -> str:
|
|
return f"<Voicelink.NodeStats total_players={self.players_total!r} playing_active={self.players_active!r}>"
|
|
|
|
class NodeInfoVersion:
|
|
"""The base class for the node info object.
|
|
Gives version information on the node.
|
|
"""
|
|
def __init__(self, data: Dict) -> None:
|
|
self.semver: str = data.get("semver")
|
|
self.major: int = data.get("major")
|
|
self.minor: int = data.get("minor")
|
|
self.patch: int = data.get("patch")
|
|
self.pre_release: Optional[str] = data.get("preRelease")
|
|
self.build: Optional[str] = data.get("build")
|
|
|
|
class NodeInfo:
|
|
"""The base class for the node info object.
|
|
Gives basic information on the node.
|
|
"""
|
|
def __init__(self, data: Dict) -> None:
|
|
self.version: NodeInfoVersion = NodeInfoVersion(data.get("version"))
|
|
self.build_time: int = data.get("buildTime")
|
|
self.jvm: str = data.get("jvm")
|
|
self.lavaplayer: str = data.get("lavaplayer")
|
|
self.plugins: Optional[Dict[str, Plugin]] = [Plugin(plugin_data) for plugin_data in data.get("plugins")]
|
|
|
|
class Plugin:
|
|
"""The base class for the plugin object.
|
|
Gives basic information on the plugin.
|
|
"""
|
|
def __init__(self, data: Dict) -> None:
|
|
self.name: str = data.get("name")
|
|
self.version: str = data.get("version")
|
|
|
|
class Ping:
|
|
# Thanks to https://github.com/zhengxiaowai/tcping for the nice ping impl
|
|
def __init__(self, host, port, timeout=5):
|
|
self.timer = self.Timer()
|
|
|
|
self._successed = 0
|
|
self._failed = 0
|
|
self._conn_time = None
|
|
self._host = host
|
|
self._port = port
|
|
self._timeout = timeout
|
|
|
|
class Socket(object):
|
|
def __init__(self, family, type_, timeout):
|
|
s = socket.socket(family, type_)
|
|
s.settimeout(timeout)
|
|
self._s = s
|
|
|
|
def connect(self, host, port):
|
|
self._s.connect((host, int(port)))
|
|
|
|
def shutdown(self):
|
|
self._s.shutdown(socket.SHUT_RD)
|
|
|
|
def close(self):
|
|
self._s.close()
|
|
|
|
|
|
class Timer(object):
|
|
def __init__(self):
|
|
self._start = 0
|
|
self._stop = 0
|
|
|
|
def start(self):
|
|
self._start = timer()
|
|
|
|
def stop(self):
|
|
self._stop = timer()
|
|
|
|
def cost(self, funcs, args):
|
|
self.start()
|
|
for func, arg in zip_longest(funcs, args):
|
|
if arg:
|
|
func(*arg)
|
|
else:
|
|
func()
|
|
|
|
self.stop()
|
|
return self._stop - self._start
|
|
|
|
def _create_socket(self, family, type_):
|
|
return self.Socket(family, type_, self._timeout)
|
|
|
|
def get_ping(self):
|
|
s = self._create_socket(socket.AF_INET, socket.SOCK_STREAM)
|
|
|
|
cost_time = self.timer.cost(
|
|
(s.connect, s.shutdown),
|
|
((self._host, self._port), None))
|
|
s_runtime = 1000 * (cost_time)
|
|
|
|
return s_runtime
|
|
|