2019-12-29 22:57:41 +00:00
|
|
|
package bmsteams
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"github.com/42wim/matterbridge/bridge/config"
|
|
|
|
"github.com/42wim/matterbridge/bridge/helper"
|
2020-01-01 21:08:11 +00:00
|
|
|
msgraph "github.com/yaegashi/msgraph.go/beta"
|
2019-12-29 22:57:41 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func (b *Bmsteams) findFile(weburl string) (string, error) {
|
|
|
|
itemRB, err := b.gc.GetDriveItemByURL(b.ctx, weburl)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
itemRB.Workbook().Worksheets()
|
|
|
|
b.gc.Workbooks()
|
|
|
|
item, err := itemRB.Request().Get(b.ctx)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
if url, ok := item.GetAdditionalData("@microsoft.graph.downloadUrl"); ok {
|
|
|
|
return url.(string), nil
|
|
|
|
}
|
|
|
|
return "", nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// handleDownloadFile handles file download
|
|
|
|
func (b *Bmsteams) handleDownloadFile(rmsg *config.Message, filename, weburl string) error {
|
|
|
|
realURL, err := b.findFile(weburl)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
// Actually download the file.
|
|
|
|
data, err := helper.DownloadFile(realURL)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("download %s failed %#v", weburl, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// If a comment is attached to the file(s) it is in the 'Text' field of the teams messge event
|
|
|
|
// and should be added as comment to only one of the files. We reset the 'Text' field to ensure
|
|
|
|
// that the comment is not duplicated.
|
|
|
|
comment := rmsg.Text
|
|
|
|
rmsg.Text = ""
|
|
|
|
helper.HandleDownloadData(b.Log, rmsg, filename, comment, weburl, data, b.General)
|
|
|
|
return nil
|
|
|
|
}
|
2020-01-01 21:08:11 +00:00
|
|
|
|
|
|
|
func (b *Bmsteams) handleAttachments(rmsg *config.Message, msg msgraph.ChatMessage) {
|
|
|
|
for _, a := range msg.Attachments {
|
|
|
|
//remove the attachment tags from the text
|
|
|
|
rmsg.Text = attachRE.ReplaceAllString(rmsg.Text, "")
|
|
|
|
//handle the download
|
|
|
|
err := b.handleDownloadFile(rmsg, *a.Name, *a.ContentURL)
|
|
|
|
if err != nil {
|
|
|
|
b.Log.Errorf("download of %s failed: %s", *a.Name, err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|