2023-06-01 02:16:58 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2023-07-27 02:27:04 +00:00
|
|
|
"context"
|
2023-07-06 22:21:11 +00:00
|
|
|
"fmt"
|
2023-07-09 01:17:47 +00:00
|
|
|
"os"
|
2023-07-09 20:00:49 +00:00
|
|
|
"runtime"
|
2023-07-06 22:21:11 +00:00
|
|
|
"strings"
|
2023-06-01 02:16:58 +00:00
|
|
|
|
2023-07-08 20:51:26 +00:00
|
|
|
"atomicgo.dev/keyboard"
|
|
|
|
"atomicgo.dev/keyboard/keys"
|
|
|
|
"github.com/Cynosphere/comcord/commands"
|
2023-07-06 22:21:11 +00:00
|
|
|
"github.com/Cynosphere/comcord/events"
|
|
|
|
"github.com/Cynosphere/comcord/rcfile"
|
|
|
|
"github.com/Cynosphere/comcord/state"
|
2023-07-27 02:27:04 +00:00
|
|
|
"github.com/diamondburned/arikawa/v3/discord"
|
|
|
|
"github.com/diamondburned/arikawa/v3/gateway"
|
|
|
|
"github.com/diamondburned/arikawa/v3/utils/handler"
|
|
|
|
"github.com/diamondburned/ningen/v3"
|
2023-07-09 01:17:47 +00:00
|
|
|
"golang.org/x/term"
|
2023-06-01 02:16:58 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
2023-07-09 01:17:47 +00:00
|
|
|
oldState, err := term.MakeRaw(int(os.Stdin.Fd()))
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
defer term.Restore(int(os.Stdin.Fd()), oldState)
|
|
|
|
|
2023-06-01 02:16:58 +00:00
|
|
|
var config map[string]string = make(map[string]string)
|
|
|
|
var token string
|
|
|
|
|
|
|
|
homeDir, homeErr := os.UserHomeDir()
|
|
|
|
if homeErr != nil {
|
|
|
|
panic(homeErr)
|
|
|
|
}
|
2023-07-06 22:21:11 +00:00
|
|
|
RCPATH := rcfile.GetPath()
|
2023-06-01 02:16:58 +00:00
|
|
|
|
|
|
|
_, rcErr := os.Stat(RCPATH)
|
|
|
|
if !os.IsNotExist(rcErr) {
|
|
|
|
fmt.Printf("%% Reading %s ...\n", strings.Replace(RCPATH, homeDir, "~", 1))
|
2023-07-06 22:21:11 +00:00
|
|
|
config = rcfile.Load()
|
2023-06-01 02:16:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if len(os.Args) > 1 {
|
|
|
|
token = os.Args[1]
|
|
|
|
if os.IsNotExist(rcErr) {
|
|
|
|
fmt.Println("% Writing token to ~/.comcordrc")
|
|
|
|
config["token"] = token
|
2023-07-06 22:21:11 +00:00
|
|
|
rcfile.Save(config)
|
2023-06-01 02:16:58 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
configToken, tokenInConfig := config["token"]
|
|
|
|
if tokenInConfig {
|
|
|
|
token = configToken
|
|
|
|
} else {
|
|
|
|
fmt.Println("No token provided.")
|
|
|
|
os.Exit(1)
|
2023-07-06 22:21:11 +00:00
|
|
|
return
|
2023-06-01 02:16:58 +00:00
|
|
|
}
|
|
|
|
}
|
2023-07-06 22:21:11 +00:00
|
|
|
|
2023-07-09 01:17:47 +00:00
|
|
|
fmt.Println("\rCOMcord (c)left 2023")
|
|
|
|
fmt.Println("\rType 'h' for Commands")
|
|
|
|
fmt.Print("\r")
|
|
|
|
|
2023-07-08 20:51:26 +00:00
|
|
|
commands.Setup()
|
2023-07-06 22:21:11 +00:00
|
|
|
|
2023-07-17 02:36:46 +00:00
|
|
|
allowUserAccounts := config["allowUserAccounts"] == "true"
|
|
|
|
tokenPrefix := "Bot "
|
|
|
|
if allowUserAccounts {
|
|
|
|
tokenPrefix = ""
|
|
|
|
}
|
|
|
|
|
|
|
|
fullToken := tokenPrefix + token
|
|
|
|
|
2023-07-27 02:27:04 +00:00
|
|
|
props := gateway.IdentifyProperties{
|
2023-07-17 04:27:50 +00:00
|
|
|
OS: runtime.GOOS,
|
|
|
|
}
|
|
|
|
statusType := config["statusType"]
|
|
|
|
if statusType == "mobile" {
|
2023-07-27 02:27:04 +00:00
|
|
|
props.Browser = "Discord Android"
|
2023-07-17 04:27:50 +00:00
|
|
|
} else if statusType == "embedded" {
|
2023-07-27 02:27:04 +00:00
|
|
|
props.Browser = "Discord Embedded"
|
2023-07-17 04:27:50 +00:00
|
|
|
} else if statusType == "desktop" {
|
2023-07-27 02:27:04 +00:00
|
|
|
props.Browser = "Discord Client"
|
2023-07-09 20:00:49 +00:00
|
|
|
} else {
|
2023-07-27 02:27:04 +00:00
|
|
|
props.Browser = "comcord"
|
|
|
|
}
|
|
|
|
|
|
|
|
ident := gateway.IdentifyCommand{
|
|
|
|
Token: fullToken,
|
|
|
|
Properties: props,
|
|
|
|
|
|
|
|
Compress: true,
|
|
|
|
LargeThreshold: 50,
|
2023-07-09 20:00:49 +00:00
|
|
|
}
|
|
|
|
|
2023-07-17 00:05:04 +00:00
|
|
|
status := "online"
|
|
|
|
defaultStatus := config["defaultStatus"]
|
|
|
|
if defaultStatus != "" {
|
|
|
|
status = defaultStatus
|
|
|
|
}
|
|
|
|
startTime := state.GetStartTime()
|
2023-07-17 02:36:46 +00:00
|
|
|
|
2023-07-27 02:27:04 +00:00
|
|
|
activity := discord.Activity{
|
|
|
|
Name: "comcord",
|
|
|
|
Type: discord.GameActivity,
|
|
|
|
CreatedAt: discord.UnixTimestamp(startTime.Unix()),
|
|
|
|
Timestamps: &discord.ActivityTimestamps{
|
|
|
|
Start: discord.UnixMsTimestamp(startTime.Unix()),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
presence := gateway.UpdatePresenceCommand{
|
2023-07-17 00:05:04 +00:00
|
|
|
Since: 0,
|
2023-07-27 02:27:04 +00:00
|
|
|
Activities: make([]discord.Activity, 0),
|
|
|
|
Status: discord.Status(status),
|
2023-07-17 00:05:04 +00:00
|
|
|
AFK: false,
|
|
|
|
}
|
2023-07-27 02:27:04 +00:00
|
|
|
presence.Activities = append(presence.Activities, activity)
|
|
|
|
ident.Presence = &presence
|
|
|
|
|
|
|
|
client := ningen.NewWithIdentifier(gateway.NewIdentifier(ident))
|
|
|
|
client.PreHandler = handler.New()
|
|
|
|
|
|
|
|
client.AddIntents(gateway.IntentGuilds)
|
|
|
|
client.AddIntents(gateway.IntentGuildPresences)
|
|
|
|
client.AddIntents(gateway.IntentGuildMembers)
|
|
|
|
client.AddIntents(gateway.IntentGuildMessages)
|
|
|
|
client.AddIntents(gateway.IntentDirectMessages)
|
|
|
|
client.AddIntents(gateway.IntentMessageContent)
|
2023-07-17 00:05:04 +00:00
|
|
|
|
2023-07-27 02:27:04 +00:00
|
|
|
state.Setup(config, client)
|
2023-07-09 20:00:49 +00:00
|
|
|
events.Setup(client)
|
2023-07-06 22:21:11 +00:00
|
|
|
|
2023-07-27 02:27:04 +00:00
|
|
|
err = client.Open(context.Background())
|
2023-07-06 22:21:11 +00:00
|
|
|
if err != nil {
|
2023-07-10 19:04:40 +00:00
|
|
|
fmt.Println("% Failed to connect to Discord:", err)
|
|
|
|
fmt.Print("\r")
|
2023-07-06 22:21:11 +00:00
|
|
|
os.Exit(1)
|
|
|
|
return
|
|
|
|
}
|
2023-07-27 02:27:04 +00:00
|
|
|
defer client.Close()
|
2023-07-06 22:21:11 +00:00
|
|
|
|
2023-07-08 20:51:26 +00:00
|
|
|
keyboard.Listen(func(key keys.Key) (stop bool, err error) {
|
|
|
|
if !state.IsInPrompt() {
|
|
|
|
if key.Code == keys.CtrlC {
|
2023-07-27 02:27:04 +00:00
|
|
|
commands.QuitCommand()
|
2023-07-08 20:51:26 +00:00
|
|
|
return true, nil
|
|
|
|
} else {
|
|
|
|
command, has := commands.GetCommand(key.String())
|
|
|
|
if has {
|
2023-07-27 02:27:04 +00:00
|
|
|
command.Run()
|
2023-07-08 20:51:26 +00:00
|
|
|
} else {
|
2023-07-27 02:27:04 +00:00
|
|
|
commands.SendMode()
|
2023-07-08 20:51:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false, nil
|
|
|
|
})
|
2023-07-09 01:17:47 +00:00
|
|
|
|
|
|
|
/*sc := make(chan os.Signal, 1)
|
|
|
|
signal.Notify(sc, syscall.SIGINT, syscall.SIGTERM, os.Interrupt)
|
|
|
|
<-sc
|
|
|
|
|
|
|
|
client.Close()*/
|
2023-06-01 02:16:58 +00:00
|
|
|
}
|