No description
Find a file
2019-01-31 19:17:59 +01:00
config bug fixes 2019-01-17 01:35:51 +01:00
features I tried so hard 2019-01-21 18:53:33 +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 I tried so hard 2019-01-21 18:53:33 +01:00
static I tried so hard 2019-01-21 18:53:33 +01:00
templates test uncommit 2019-01-22 00:00:22 +01:00
.dockerignore Docker 2019-01-16 23:22:46 +01:00
.gitignore initial commit 2019-01-14 21:07:11 +01:00
Dockerfile Solved Conflict 2019-01-31 18:06:19 +01:00
main.go Fixing Port issue 2019-01-31 19:17:59 +01:00
README.md Fix README.md Markdown syntax 2019-01-17 09:25:04 +01:00

tsviewer [WIP]

A TS3 Viewer with REST API.

Features

Config

The config file is generated automatically on first startup.

{
    "user": {
        "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
}