summaryrefslogtreecommitdiffstats
path: root/app/command_dnd.go
diff options
context:
space:
mode:
authorCarlos Tadeu Panato Junior <ctadeu@gmail.com>2017-10-25 17:51:13 +0200
committerJoram Wilander <jwawilander@gmail.com>2017-10-25 11:51:13 -0400
commit62b3569025347a1291229771f363be5962951f25 (patch)
tree187a16db01b5775a5536bd928f936114b0dde07a /app/command_dnd.go
parentf63223286295a1261c950c482701b99963fb260c (diff)
downloadchat-62b3569025347a1291229771f363be5962951f25.tar.gz
chat-62b3569025347a1291229771f363be5962951f25.tar.bz2
chat-62b3569025347a1291229771f363be5962951f25.zip
[PLT-4341] add dnd command (#7694)
Diffstat (limited to 'app/command_dnd.go')
-rw-r--r--app/command_dnd.go49
1 files changed, 49 insertions, 0 deletions
diff --git a/app/command_dnd.go b/app/command_dnd.go
new file mode 100644
index 000000000..7eff6039d
--- /dev/null
+++ b/app/command_dnd.go
@@ -0,0 +1,49 @@
+// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
+// See License.txt for license information.
+
+package app
+
+import (
+ "github.com/mattermost/mattermost-server/model"
+ goi18n "github.com/nicksnyder/go-i18n/i18n"
+)
+
+type DndProvider struct {
+}
+
+const (
+ CMD_DND = "dnd"
+)
+
+func init() {
+ RegisterCommandProvider(&DndProvider{})
+}
+
+func (me *DndProvider) GetTrigger() string {
+ return CMD_DND
+}
+
+func (me *DndProvider) GetCommand(T goi18n.TranslateFunc) *model.Command {
+ return &model.Command{
+ Trigger: CMD_DND,
+ AutoComplete: true,
+ AutoCompleteDesc: T("api.command_dnd.desc"),
+ DisplayName: T("api.command_dnd.name"),
+ }
+}
+
+func (me *DndProvider) DoCommand(a *App, args *model.CommandArgs, message string) *model.CommandResponse {
+ status, err := a.GetStatus(args.UserId)
+ if err != nil {
+ return &model.CommandResponse{ResponseType: model.COMMAND_RESPONSE_TYPE_EPHEMERAL, Text: args.T("api.command_dnd.error")}
+ } else {
+ if status.Status == "dnd" {
+ a.SetStatusOnline(args.UserId, args.Session.Id, true)
+ return &model.CommandResponse{ResponseType: model.COMMAND_RESPONSE_TYPE_EPHEMERAL, Text: args.T("api.command_dnd.disabled")}
+ }
+ }
+
+ a.SetStatusDoNotDisturb(args.UserId)
+
+ return &model.CommandResponse{ResponseType: model.COMMAND_RESPONSE_TYPE_EPHEMERAL, Text: args.T("api.command_dnd.success")}
+}