Adding more function
This commit is contained in:
parent
bdcc985f7a
commit
974e92a96d
@ -1,3 +1,5 @@
|
|||||||
{
|
{
|
||||||
"Token": "546410284:AAHXKhEsAB5OZTrAXCFI4kiZSFjN5i0h_wk"
|
"Token": "546410284:AAHXKhEsAB5OZTrAXCFI4kiZSFjN5i0h_wk",
|
||||||
|
"SonarrAPIURL": "http://dvr.linuxrocker.com/tv/api/",
|
||||||
|
"SonarrAPIKey": "69e7a095a1c94f42b150380864a6c92a"
|
||||||
}
|
}
|
BIN
go_telegram
BIN
go_telegram
Binary file not shown.
92
main.go
92
main.go
@ -3,19 +3,75 @@ package main
|
|||||||
import (
|
import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"flag"
|
"flag"
|
||||||
|
"io/ioutil"
|
||||||
"log"
|
"log"
|
||||||
|
"net/http"
|
||||||
"os"
|
"os"
|
||||||
"time"
|
|
||||||
|
|
||||||
tb "gopkg.in/tucnak/telebot.v2"
|
"github.com/yanzay/tbot"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Configuration - Specify what to look for in Config file
|
// Config - Specify what to look for in Config file
|
||||||
type Configuration struct {
|
var Config struct {
|
||||||
Token string
|
BotToken string
|
||||||
|
SonarrAPIURL string
|
||||||
|
SonarrAPIKey string
|
||||||
|
PlexPyAPIURL string
|
||||||
|
PlexPyAPIKey string
|
||||||
|
RadarrAPIURL string
|
||||||
|
RadarrAPIKey string
|
||||||
|
CouchPotatoAPIURL string
|
||||||
|
CouchPotatoAPIKey string
|
||||||
|
PlexAPIURL string
|
||||||
|
PlexAPIKey string
|
||||||
}
|
}
|
||||||
|
|
||||||
// ReadConfig from file
|
func sonarrStatus(message *tbot.Message) {
|
||||||
|
response, err := http.Get(Config.SonarrAPIURL + "system/status?apikey=" + Config.SonarrAPIKey)
|
||||||
|
|
||||||
|
if err != nil {
|
||||||
|
log.Fatal(err)
|
||||||
|
os.Exit(1)
|
||||||
|
}
|
||||||
|
|
||||||
|
responseData, err := ioutil.ReadAll(response.Body)
|
||||||
|
if err != nil {
|
||||||
|
log.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
message.Replyf("%s", responseData)
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
func sonarrVersion(message *tbot.Message) {
|
||||||
|
response, err := http.Get(Config.SonarrAPIURL + "system/status?apikey=" + Config.SonarrAPIKey)
|
||||||
|
if err != nil {
|
||||||
|
log.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
responseData, err := ioutil.ReadAll(response.Body)
|
||||||
|
if err != nil {
|
||||||
|
log.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
type Version struct {
|
||||||
|
Version string `json:"version"`
|
||||||
|
}
|
||||||
|
|
||||||
|
version := Version{}
|
||||||
|
jsonErr := json.Unmarshal(responseData, &version)
|
||||||
|
if jsonErr != nil {
|
||||||
|
log.Fatal(jsonErr)
|
||||||
|
}
|
||||||
|
|
||||||
|
message.Replyf("%s", version.Version)
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
// func activeSteamers(message *tbot.Message) {
|
||||||
|
// response, err := http.Get(Config.PlexAPIURL + "api/v2?apikey=" + Config.PlexAPIKey + "&cmd=")
|
||||||
|
// }
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
c := flag.String("c", "./config.json", "Specify the configuration file.")
|
c := flag.String("c", "./config.json", "Specify the configuration file.")
|
||||||
flag.Parse()
|
flag.Parse()
|
||||||
@ -25,27 +81,27 @@ func main() {
|
|||||||
}
|
}
|
||||||
defer file.Close()
|
defer file.Close()
|
||||||
decoder := json.NewDecoder(file)
|
decoder := json.NewDecoder(file)
|
||||||
Config := Configuration{}
|
|
||||||
err = decoder.Decode(&Config)
|
err = decoder.Decode(&Config)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatal("can't decode config JSON: ", err)
|
log.Fatal("can't decode config JSON: ", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
b, err := tb.NewBot(tb.Settings{
|
bot, err := tbot.NewServer(Config.BotToken)
|
||||||
Token: Config.Token,
|
|
||||||
Poller: &tb.LongPoller{Timeout: 10 * time.Second},
|
|
||||||
})
|
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatal(err)
|
log.Fatal(err)
|
||||||
return
|
|
||||||
}
|
}
|
||||||
|
|
||||||
b.Handle("/ping", func(m *tb.Message) {
|
whitelist := []string{"WARBIRD199"}
|
||||||
b.Send(m.Sender, "pong")
|
bot.AddMiddleware(tbot.NewAuth(whitelist))
|
||||||
})
|
|
||||||
|
|
||||||
log.Print("Starting bot...")
|
bot.Handle("/ping", "pong!")
|
||||||
|
|
||||||
|
bot.HandleFunc("/sonarr_status", sonarrStatus)
|
||||||
|
|
||||||
|
bot.HandleFunc("/sonarr_version", sonarrVersion)
|
||||||
|
|
||||||
|
// Start Listening
|
||||||
|
err = bot.ListenAndServe()
|
||||||
|
log.Fatal(err)
|
||||||
|
|
||||||
b.Start()
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user