616c6b1c62
Release Docker multi arch / docker (push) Has been cancelled
Test Install Script / Test Script Syntax (push) Has been cancelled
Test Install Script / Test on almalinux-10 (default) (push) Has been cancelled
Test Install Script / Test on almalinux-10 (root) (push) Has been cancelled
Test Install Script / Test on almalinux-8 (default) (push) Has been cancelled
Test Install Script / Test on almalinux-8 (root) (push) Has been cancelled
Test Install Script / Test on almalinux-9 (default) (push) Has been cancelled
Test Install Script / Test on almalinux-9 (root) (push) Has been cancelled
Test Install Script / Test on amazonlinux-2 (default) (push) Has been cancelled
Test Install Script / Test on amazonlinux-2 (root) (push) Has been cancelled
Test Install Script / Test on debian-11 (default) (push) Has been cancelled
Test Install Script / Test on debian-11 (root) (push) Has been cancelled
Test Install Script / Test on debian-12 (default) (push) Has been cancelled
Test Install Script / Test on debian-12 (root) (push) Has been cancelled
Test Install Script / Test on debian-13 (default) (push) Has been cancelled
Test Install Script / Test on debian-13 (root) (push) Has been cancelled
Test Install Script / Test on fedora-latest (default) (push) Has been cancelled
Test Install Script / Test on fedora-latest (root) (push) Has been cancelled
Test Install Script / Test on rocky-10 (default) (push) Has been cancelled
Test Install Script / Test on rocky-10 (root) (push) Has been cancelled
Test Install Script / Test on rocky-8 (default) (push) Has been cancelled
Test Install Script / Test on rocky-8 (root) (push) Has been cancelled
Test Install Script / Test on rocky-9 (default) (push) Has been cancelled
Test Install Script / Test on rocky-9 (root) (push) Has been cancelled
Test Install Script / Test on ubuntu-22.04 (default) (push) Has been cancelled
Test Install Script / Test on ubuntu-22.04 (root) (push) Has been cancelled
Test Install Script / Test on ubuntu-24.04 (default) (push) Has been cancelled
Test Install Script / Test on ubuntu-24.04 (root) (push) Has been cancelled
29 lines
756 B
Go
29 lines
756 B
Go
package tgbot
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
|
|
tele "gopkg.in/telebot.v4"
|
|
"server/settings"
|
|
"server/torr"
|
|
)
|
|
|
|
func cmdServer(c tele.Context) error {
|
|
uid := c.Sender().ID
|
|
host := getHost()
|
|
torrents := torr.ListTorrent()
|
|
streams := torr.GetActiveStreams()
|
|
|
|
var sb strings.Builder
|
|
sb.WriteString("🖥 <b>" + tr(uid, "server_title") + "</b>\n\n")
|
|
fmt.Fprintf(&sb, "%s: <code>%s</code>\n", tr(uid, "server_url"), host)
|
|
fmt.Fprintf(&sb, "%s: %s\n", tr(uid, "server_port"), settings.Port)
|
|
if settings.Ssl {
|
|
fmt.Fprintf(&sb, "SSL %s: %s\n", tr(uid, "server_port"), settings.SslPort)
|
|
}
|
|
fmt.Fprintf(&sb, "%s: %d\n", tr(uid, "stats_torrents"), len(torrents))
|
|
fmt.Fprintf(&sb, "%s: %d\n", tr(uid, "server_streams"), streams)
|
|
return c.Send(sb.String())
|
|
}
|