mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
* Add app package and move logic over from api package * Change app package functions to return errors * Move non-api tests into app package * Fix merge
44 lines
1.0 KiB
Go
44 lines
1.0 KiB
Go
// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
package api
|
|
|
|
import (
|
|
"github.com/mattermost/platform/app"
|
|
"github.com/mattermost/platform/model"
|
|
)
|
|
|
|
type OnlineProvider struct {
|
|
}
|
|
|
|
const (
|
|
CMD_ONLINE = "online"
|
|
)
|
|
|
|
func init() {
|
|
RegisterCommandProvider(&OnlineProvider{})
|
|
}
|
|
|
|
func (me *OnlineProvider) GetTrigger() string {
|
|
return CMD_ONLINE
|
|
}
|
|
|
|
func (me *OnlineProvider) GetCommand(c *Context) *model.Command {
|
|
return &model.Command{
|
|
Trigger: CMD_ONLINE,
|
|
AutoComplete: true,
|
|
AutoCompleteDesc: c.T("api.command_online.desc"),
|
|
DisplayName: c.T("api.command_online.name"),
|
|
}
|
|
}
|
|
|
|
func (me *OnlineProvider) DoCommand(c *Context, args *model.CommandArgs, message string) *model.CommandResponse {
|
|
rmsg := c.T("api.command_online.success")
|
|
if len(message) > 0 {
|
|
rmsg = message + " " + rmsg
|
|
}
|
|
app.SetStatusOnline(c.Session.UserId, c.Session.Id, true)
|
|
|
|
return &model.CommandResponse{ResponseType: model.COMMAND_RESPONSE_TYPE_EPHEMERAL, Text: rmsg}
|
|
}
|