livenote: add option channel

This commit is contained in:
c9s 2024-11-11 16:56:45 +08:00
parent 0b2fdd471e
commit 9b1060e16d
No known key found for this signature in database
GPG Key ID: 7385E7E464CB0A54
2 changed files with 17 additions and 1 deletions

View File

@ -4,6 +4,16 @@ import "time"
type Option interface{}
type OptionChannel struct {
Channel string
}
func Channel(channel string) *OptionChannel {
return &OptionChannel{
Channel: channel,
}
}
type OptionCompare struct {
Value bool
}

View File

@ -241,6 +241,9 @@ func (n *Notifier) PostLiveNote(obj livenote.Object, opts ...livenote.Option) er
var shouldPin bool
var ttl time.Duration = 0
// load the default channel
channel := n.channel
for _, opt := range opts {
switch val := opt.(type) {
case *livenote.OptionOneTimeMention:
@ -254,6 +257,10 @@ func (n *Notifier) PostLiveNote(obj livenote.Object, opts ...livenote.Option) er
shouldPin = val.Value
case *livenote.OptionTimeToLive:
ttl = val.Duration
case *livenote.OptionChannel:
if val.Channel != "" {
channel = val.Channel
}
}
}
@ -265,7 +272,6 @@ func (n *Notifier) PostLiveNote(obj livenote.Object, opts ...livenote.Option) er
}
}
channel := n.channel
note := n.liveNotePool.Update(obj)
curObj = note.Object