From 552508706d5ec4b87e67c0bf46609fb320ee7792 Mon Sep 17 00:00:00 2001 From: George Goldberg Date: Wed, 12 Oct 2016 14:33:58 +0100 Subject: Import /me messages from Slack. (#4164) Use message formatting consistent with how Mattermost does for the /me command for new messages. --- api/slackimport.go | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'api') diff --git a/api/slackimport.go b/api/slackimport.go index 688d25370..bf18992f6 100644 --- a/api/slackimport.go +++ b/api/slackimport.go @@ -233,6 +233,21 @@ func SlackAddPosts(teamId string, channel *model.Channel, posts []SlackPost, use Type: model.POST_JOIN_LEAVE, } ImportPost(&newPost) + case sPost.Type == "message" && sPost.SubType == "me_message": + if sPost.User == "" { + l4g.Debug(utils.T("api.slackimport.slack_add_posts.without_user.debug")) + continue + } else if users[sPost.User] == nil { + l4g.Debug(utils.T("api.slackimport.slack_add_posts.user_no_exists.debug"), sPost.User) + continue + } + newPost := model.Post{ + UserId: users[sPost.User].Id, + ChannelId: channel.Id, + Message: "*" + sPost.Text + "*", + CreateAt: SlackConvertTimeStamp(sPost.TimeStamp), + } + ImportPost(&newPost) default: l4g.Warn(utils.T("api.slackimport.slack_add_posts.unsupported.warn"), sPost.Type, sPost.SubType) } -- cgit v1.2.3-1-g7c22