Thumbnail

rani/matterbridge.git

Clone URL: https://git.buni.party/rani/matterbridge.git

commit 5672a3d40cd663e97f24617705cf0b5e2faeafde Author: Gonçalo Ribeiro <darklaw13@yahoo.co.uk> Date: Fri Nov 01 21:29:52 2019 +0000 Add support for receiving attachments (keybase) (#923) diff --git a/bridge/keybase/keybase.go b/bridge/keybase/keybase.go index a4b1274..6d0b478 100644 --- a/bridge/keybase/keybase.go +++ b/bridge/keybase/keybase.go @@ -16 +19 @@  package bkeybase    import ( + "io/ioutil" + "os" + "path/filepath"   "strconv"     "github.com/42wim/matterbridge/bridge" @@ -6617 +6937 @@ func (b *Bkeybase) Send(msg config.Message) (string, error) {   // Delete message if we have an ID   // Delete message not supported by keybase go library yet   - // Upload a file if it exists - // kbchat lib does not support attachments yet -   // Edit message if we have an ID   // kbchat lib does not support message editing yet   + if len(msg.Extra["file"]) > 0 { + // Upload a file + dir, err := ioutil.TempDir("", "matterbridge") + if err != nil { + return "", err + } + defer os.RemoveAll(dir) + + for _, f := range msg.Extra["file"] { + fname := f.(config.FileInfo).Name + fdata := *f.(config.FileInfo).Data + fcaption := f.(config.FileInfo).Comment + fpath := filepath.Join(dir, fname) + + if err = ioutil.WriteFile(fpath, fdata, 0600); err != nil { + return "", err + } + + _, _ = b.kbc.SendAttachmentByTeam(b.team, fpath, fcaption, &b.channel) + } + + return "", nil + } +   // Send regular message   resp, err := b.kbc.SendMessageByTeamName(b.team, msg.Username+msg.Text, &b.channel)   if err != nil {   return "", err   } -   return strconv.Itoa(resp.Result.MsgID), err  }