No description
Find a file
2019-02-07 21:46:45 +01:00
config added mutable nickname 2019-02-03 20:08:48 +01:00
features fixed channels route 2019-02-04 00:40:43 +01:00
gui added templating 2019-01-17 22:09:41 +01:00
request initial commit 2019-01-14 21:07:11 +01:00
response bug fixes 2019-01-17 01:35:51 +01:00
service fixed channels route 2019-02-04 00:40:43 +01:00
static updated templates && styles 2019-02-04 00:54:14 +01:00
templates updated templates && styles 2019-02-04 00:54:14 +01:00
.dockerignore Docker 2019-01-16 23:22:46 +01:00
.gitignore chnages 2019-02-07 15:13:13 +01:00
config.json added mutable nickname 2019-02-03 20:08:48 +01:00
Dockerfile Chillin 2019-02-04 01:01:58 +01:00
main.go added Cors-Header 2019-02-07 12:13:32 +01:00
README.md Change ReadME 2019-02-07 21:46:45 +01:00

tsviewer [ALPHA 1.0.1]

A TS3 Viewer with REST API.

DOCKER-Config

docker build -t name/cont:ver .

docker run -e TS3_IP="<SERVER-IP>" -e TS3_PW="<SERVER-ADMIN_PW>" -e WEB_PORT="8080" -d -p 8080:8080 name/cont:ver

ENV:


ENV TS3_IP=127.0.0.1
ENV TS3_NAME=serveradmin
ENV TS3_PW=<changeMe>
ENV TS3_PORT=9987
ENV TS3_QUERY=10011
ENV WEB_PORT=8080
ENV BLACKLIST_USER=USER


Features

Config

The config file is generated automatically on first startup.

{
    "user": {
        "nickname": "serveradmin",
        "name": "serveradmin",
        "password": ""
    },
    "serverTS": {
        "ip": "127.0.0.1",
        "portServer": 9987,
        "portQuery": 10011
    },
    "serverWeb": {
        "port": 80
    }
}

URL-Parameter

Name Type Description
pretty bool pretty-prints JSON
envelope bool wraps JSON in data array

Channels

  • GET /v1/channels/:id
  • GET /v1/channels
{
    "databaseId": 1,
    "channelId": 1,
    "nickname": "serveradmin from 127.0.0.1:58359",
    "type": 1,
    "away": false,
    "awayMessage": ""
}

Clients

  • GET /v1/clients/:id
  • GET /v1/clients/
{
    "id": 1,
    "subchannels": [
        ... (contains all subchannel)
    ],
    "name": "main1",
    "totalClients": 0,
    "neededSubscribePower": 0
}

Server

  • GET /v1/server/info
{
    "name": "TeamSpeak ]I[ Server",
    "status": "online",
    "version": "3.5.1 [Build: 1545076855]",
    "welcomeMessage": "Welcome to TeamSpeak, check [URL]www.teamspeak.com[/URL] for latest information",
    "maxClients": 32,
    "clientsOnline": 2,
    "reservedSlots": 0,
    "uptime": 5976,
    "totalPing": 0,
    "minAndroidVersion": 1502275280,
    "minClientVersion": 1513163251,
    "miniOSVersion": 1502275280
}