38 lines
1.1 KiB
Go
38 lines
1.1 KiB
Go
package events
|
|
|
|
import (
|
|
"fmt"
|
|
"unicode/utf8"
|
|
|
|
"github.com/Cynosphere/comcord/commands"
|
|
"github.com/Cynosphere/comcord/state"
|
|
"github.com/bwmarrin/discordgo"
|
|
"github.com/mgutz/ansi"
|
|
)
|
|
|
|
func Ready(session *discordgo.Session, event *discordgo.Ready) {
|
|
fmt.Printf("\rLogged in as: %s\n\r", ansi.Color(fmt.Sprintf("%s (%s)", session.State.User.Username, session.State.User.ID), "yellow"))
|
|
|
|
state.SetNameLength(utf8.RuneCountInString(session.State.User.Username) + 2)
|
|
|
|
commands.ListGuildsCommand(session)
|
|
|
|
defaultGuild := state.GetConfigValue("defaultGuild")
|
|
defaultChannel := state.GetConfigValue("defaultChannel")
|
|
if defaultGuild != "" {
|
|
guild, err := session.State.Guild(defaultGuild)
|
|
if err == nil {
|
|
if defaultChannel != "" {
|
|
state.SetCurrentChannel(defaultChannel)
|
|
state.SetLastChannel(defaultGuild, defaultChannel)
|
|
}
|
|
commands.SwitchGuild(session, guild.Name)
|
|
} else {
|
|
fmt.Println("\r% This account is not in the defined default guild.")
|
|
}
|
|
} else {
|
|
if defaultChannel != "" {
|
|
fmt.Println("\r% Default channel defined without defining default guild.")
|
|
}
|
|
}
|
|
}
|