summaryrefslogtreecommitdiffstats
path: root/app/command_invite_people.go
diff options
context:
space:
mode:
authorJoram Wilander <jwawilander@gmail.com>2017-03-13 09:23:16 -0400
committerChristopher Speller <crspeller@gmail.com>2017-03-13 09:23:16 -0400
commite9c6cc269b5c9fe82e5f38d63344a07365bccd6b (patch)
tree711fefd3511dbd5a7f1a20225f00b766eb4808f7 /app/command_invite_people.go
parent8b0eedbbcd47ba09142c72a71969840aa6e121d2 (diff)
downloadchat-e9c6cc269b5c9fe82e5f38d63344a07365bccd6b.tar.gz
chat-e9c6cc269b5c9fe82e5f38d63344a07365bccd6b.tar.bz2
chat-e9c6cc269b5c9fe82e5f38d63344a07365bccd6b.zip
Move command logic into app layer (#5617)
Diffstat (limited to 'app/command_invite_people.go')
-rw-r--r--app/command_invite_people.go64
1 files changed, 64 insertions, 0 deletions
diff --git a/app/command_invite_people.go b/app/command_invite_people.go
new file mode 100644
index 000000000..12ef03f45
--- /dev/null
+++ b/app/command_invite_people.go
@@ -0,0 +1,64 @@
+// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved.
+// See License.txt for license information.
+
+package app
+
+import (
+ "strings"
+
+ l4g "github.com/alecthomas/log4go"
+ "github.com/mattermost/platform/model"
+ "github.com/mattermost/platform/utils"
+ goi18n "github.com/nicksnyder/go-i18n/i18n"
+)
+
+type InvitePeopleProvider struct {
+}
+
+const (
+ CMD_INVITE_PEOPLE = "invite_people"
+)
+
+func init() {
+ RegisterCommandProvider(&InvitePeopleProvider{})
+}
+
+func (me *InvitePeopleProvider) GetTrigger() string {
+ return CMD_INVITE_PEOPLE
+}
+
+func (me *InvitePeopleProvider) GetCommand(T goi18n.TranslateFunc) *model.Command {
+ return &model.Command{
+ Trigger: CMD_INVITE_PEOPLE,
+ AutoComplete: true,
+ AutoCompleteDesc: T("api.command.invite_people.desc"),
+ AutoCompleteHint: T("api.command.invite_people.hint"),
+ DisplayName: T("api.command.invite_people.name"),
+ }
+}
+
+func (me *InvitePeopleProvider) DoCommand(args *model.CommandArgs, message string) *model.CommandResponse {
+ if !utils.Cfg.EmailSettings.SendEmailNotifications {
+ return &model.CommandResponse{ResponseType: model.COMMAND_RESPONSE_TYPE_EPHEMERAL, Text: args.T("api.command.invite_people.email_off")}
+ }
+
+ emailList := strings.Fields(message)
+
+ for i := len(emailList) - 1; i >= 0; i-- {
+ emailList[i] = strings.Trim(emailList[i], ",")
+ if !strings.Contains(emailList[i], "@") {
+ emailList = append(emailList[:i], emailList[i+1:]...)
+ }
+ }
+
+ if len(emailList) == 0 {
+ return &model.CommandResponse{ResponseType: model.COMMAND_RESPONSE_TYPE_EPHEMERAL, Text: args.T("api.command.invite_people.no_email")}
+ }
+
+ if err := InviteNewUsersToTeam(emailList, args.TeamId, args.UserId, args.SiteURL); err != nil {
+ l4g.Error(err.Error())
+ return &model.CommandResponse{ResponseType: model.COMMAND_RESPONSE_TYPE_EPHEMERAL, Text: args.T("api.command.invite_people.fail")}
+ }
+
+ return &model.CommandResponse{ResponseType: model.COMMAND_RESPONSE_TYPE_EPHEMERAL, Text: args.T("api.command.invite_people.sent")}
+}