mirror of
https://github.com/Luzifer/twitch-bot.git
synced 2024-11-08 16:20:02 +00:00
103 lines
3.8 KiB
Go
103 lines
3.8 KiB
Go
package twitch
|
|
|
|
import (
|
|
"context"
|
|
"strings"
|
|
|
|
"github.com/Luzifer/twitch-bot/v3/plugins"
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
func init() {
|
|
regFn = append(
|
|
regFn,
|
|
tplTwitchDisplayName,
|
|
tplTwitchIDForUsername,
|
|
tplTwitchProfileImage,
|
|
tplTwitchUserExists,
|
|
tplTwitchUsernameForID,
|
|
)
|
|
}
|
|
|
|
func tplTwitchDisplayName(args plugins.RegistrationArguments) {
|
|
args.RegisterTemplateFunction("displayName", plugins.GenericTemplateFunctionGetter(func(username string, v ...string) (string, error) {
|
|
displayName, err := args.GetTwitchClient().GetDisplayNameForUser(context.Background(), strings.TrimLeft(username, "#"))
|
|
if len(v) > 0 && (err != nil || displayName == "") {
|
|
return v[0], nil //nolint:nilerr // Default value, no need to return error
|
|
}
|
|
|
|
return displayName, errors.Wrap(err, "getting display name")
|
|
}), plugins.TemplateFuncDocumentation{
|
|
Description: "Returns the display name the specified user set for themselves",
|
|
Syntax: "displayName <username> [fallback]",
|
|
Example: &plugins.TemplateFuncDocumentationExample{
|
|
Template: `{{ displayName "luziferus" }} - {{ displayName "notexistinguser" "foobar" }}`,
|
|
FakedOutput: "Luziferus - foobar",
|
|
},
|
|
})
|
|
}
|
|
|
|
func tplTwitchIDForUsername(args plugins.RegistrationArguments) {
|
|
args.RegisterTemplateFunction("idForUsername", plugins.GenericTemplateFunctionGetter(func(username string) (string, error) {
|
|
id, err := args.GetTwitchClient().GetIDForUsername(context.Background(), username)
|
|
return id, errors.Wrap(err, "getting ID for username")
|
|
}), plugins.TemplateFuncDocumentation{
|
|
Description: "Returns the user-id for the given username",
|
|
Syntax: "idForUsername <username>",
|
|
Example: &plugins.TemplateFuncDocumentationExample{
|
|
Template: `{{ idForUsername "twitch" }}`,
|
|
FakedOutput: "12826",
|
|
},
|
|
})
|
|
}
|
|
|
|
func tplTwitchProfileImage(args plugins.RegistrationArguments) {
|
|
args.RegisterTemplateFunction("profileImage", plugins.GenericTemplateFunctionGetter(func(username string) (string, error) {
|
|
user, err := args.GetTwitchClient().GetUserInformation(context.Background(), strings.TrimLeft(username, "#@"))
|
|
if err != nil {
|
|
return "", errors.Wrap(err, "getting user info")
|
|
}
|
|
|
|
return user.ProfileImageURL, nil
|
|
}), plugins.TemplateFuncDocumentation{
|
|
Description: "Gets the URL of the given users profile image",
|
|
Syntax: "profileImage <username>",
|
|
Example: &plugins.TemplateFuncDocumentationExample{
|
|
Template: `{{ profileImage .username }}`,
|
|
FakedOutput: "https://static-cdn.jtvnw.net/jtv_user_pictures/[...].png",
|
|
},
|
|
})
|
|
}
|
|
|
|
func tplTwitchUserExists(args plugins.RegistrationArguments) {
|
|
args.RegisterTemplateFunction("userExists", plugins.GenericTemplateFunctionGetter(func(username string) bool {
|
|
user, err := args.GetTwitchClient().GetUserInformation(context.Background(), strings.TrimLeft(username, "#@"))
|
|
if err != nil {
|
|
// Well, they probably don't exist
|
|
return false
|
|
}
|
|
|
|
return strings.EqualFold(username, user.Login)
|
|
}), plugins.TemplateFuncDocumentation{
|
|
Description: "Checks whether the given user exists",
|
|
Syntax: "userExists <username>",
|
|
Example: &plugins.TemplateFuncDocumentationExample{
|
|
Template: `{{ userExists "luziferus" }}`,
|
|
FakedOutput: "true",
|
|
},
|
|
})
|
|
}
|
|
|
|
func tplTwitchUsernameForID(args plugins.RegistrationArguments) {
|
|
args.RegisterTemplateFunction("usernameForID", plugins.GenericTemplateFunctionGetter(func(id string) (string, error) {
|
|
username, err := args.GetTwitchClient().GetUsernameForID(context.Background(), id)
|
|
return username, errors.Wrap(err, "getting username for ID")
|
|
}), plugins.TemplateFuncDocumentation{
|
|
Description: "Returns the current login name of an user-id",
|
|
Syntax: "usernameForID <user-id>",
|
|
Example: &plugins.TemplateFuncDocumentationExample{
|
|
Template: `{{ usernameForID "12826" }}`,
|
|
FakedOutput: "twitch",
|
|
},
|
|
})
|
|
}
|