mirror-nourybot/pkg/db/partchannel.go

37 lines
740 B
Go
Raw Normal View History

2021-10-28 16:20:27 +02:00
package db
import (
"context"
"fmt"
2021-10-28 16:20:27 +02:00
"time"
"github.com/lyx0/nourybot/cmd/bot"
2021-10-28 16:20:27 +02:00
log "github.com/sirupsen/logrus"
)
func PartChannel(target, channelName string, nb *bot.Bot) {
2021-10-28 16:20:27 +02:00
// Interact with data
ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second)
defer cancel()
/*
Get my collection instance
*/
collection := nb.MongoClient.Database("nourybot").Collection("channels")
2021-10-28 16:20:27 +02:00
// Channel
chnl := Channel{channelName, true}
res, insertErr := collection.DeleteOne(ctx, chnl)
if insertErr != nil || res.DeletedCount != 1 {
nb.Send(target, fmt.Sprintf("Error trying to part %s", channelName))
2021-10-28 16:20:27 +02:00
log.Error(insertErr)
return
2021-10-28 16:20:27 +02:00
}
nb.Send(target, fmt.Sprintf("Parted %s", channelName))
2021-10-28 17:48:18 +02:00
// log.Info(res)
2021-10-28 16:20:27 +02:00
}