mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
49 lines
1.2 KiB
Go
49 lines
1.2 KiB
Go
// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
package api
|
|
|
|
import (
|
|
"github.com/mattermost/platform/model"
|
|
)
|
|
|
|
type LogoutProvider struct {
|
|
}
|
|
|
|
const (
|
|
CMD_LOGOUT = "logout"
|
|
)
|
|
|
|
func init() {
|
|
RegisterCommandProvider(&LogoutProvider{})
|
|
}
|
|
|
|
func (me *LogoutProvider) GetTrigger() string {
|
|
return CMD_LOGOUT
|
|
}
|
|
|
|
func (me *LogoutProvider) GetCommand(c *Context) *model.Command {
|
|
return &model.Command{
|
|
Trigger: CMD_LOGOUT,
|
|
AutoComplete: true,
|
|
AutoCompleteDesc: c.T("api.command_logout.desc"),
|
|
AutoCompleteHint: "",
|
|
DisplayName: c.T("api.command_logout.name"),
|
|
}
|
|
}
|
|
|
|
func (me *LogoutProvider) DoCommand(c *Context, args *model.CommandArgs, message string) *model.CommandResponse {
|
|
FAIL := &model.CommandResponse{ResponseType: model.COMMAND_RESPONSE_TYPE_EPHEMERAL, Text: c.T("api.command_logout.fail_message")}
|
|
SUCCESS := &model.CommandResponse{GotoLocation: "/login"}
|
|
|
|
// We can't actually remove the user's cookie from here so we just dump their session and let the browser figure it out
|
|
if c.Session.Id != "" {
|
|
RevokeSessionById(c, c.Session.Id)
|
|
if c.Err != nil {
|
|
return FAIL
|
|
}
|
|
return SUCCESS
|
|
}
|
|
return FAIL
|
|
}
|