mirror of https://github.com/velour/catbase.git
commit
8ee54a11c2
|
@ -19,6 +19,7 @@ var (
|
||||||
type TLDRPlugin struct {
|
type TLDRPlugin struct {
|
||||||
Bot bot.Bot
|
Bot bot.Bot
|
||||||
History []string
|
History []string
|
||||||
|
Users []string
|
||||||
Index int
|
Index int
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -26,6 +27,7 @@ func New(b bot.Bot) *TLDRPlugin {
|
||||||
plugin := &TLDRPlugin{
|
plugin := &TLDRPlugin{
|
||||||
Bot: b,
|
Bot: b,
|
||||||
History: []string{},
|
History: []string{},
|
||||||
|
Users: []string{},
|
||||||
Index: 0,
|
Index: 0,
|
||||||
}
|
}
|
||||||
b.Register(plugin, bot.Message, plugin.message)
|
b.Register(plugin, bot.Message, plugin.message)
|
||||||
|
@ -52,16 +54,28 @@ func (p *TLDRPlugin) message(kind bot.Kind, message msg.Message, args ...interfa
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
bestScores := make([]float64, nTopics)
|
bestScores := make([][]float64, nTopics)
|
||||||
bestDocs := make([]string, nTopics)
|
bestDocs := make([][]string, nTopics)
|
||||||
|
bestUsers := make([][]string, nTopics)
|
||||||
|
|
||||||
|
supportingDocs := p.Bot.Config().GetInt("TLDR.Support", 3)
|
||||||
|
for i := 0; i < supportingDocs; i++ {
|
||||||
|
bestScores[i] = make([]float64, supportingDocs)
|
||||||
|
bestDocs[i] = make([]string, supportingDocs)
|
||||||
|
bestUsers[i] = make([]string, supportingDocs)
|
||||||
|
}
|
||||||
|
|
||||||
dr, dc := docsOverTopics.Dims()
|
dr, dc := docsOverTopics.Dims()
|
||||||
for doc := 0; doc < dc; doc++ {
|
for topic := 0; topic < dr; topic++ {
|
||||||
for topic := 0; topic < dr; topic++ {
|
minScore, minIndex := min(bestScores[topic])
|
||||||
|
|
||||||
|
for doc := 0; doc < dc; doc++ {
|
||||||
score := docsOverTopics.At(topic, doc)
|
score := docsOverTopics.At(topic, doc)
|
||||||
if score > bestScores[topic] {
|
if score > minScore {
|
||||||
bestScores[topic] = score
|
bestScores[topic][minIndex] = score
|
||||||
bestDocs[topic] = p.History[doc]
|
bestDocs[topic][minIndex] = p.History[doc]
|
||||||
|
bestUsers[topic][minIndex] = p.Users[doc]
|
||||||
|
minScore, minIndex = min(bestScores[topic])
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -77,17 +91,19 @@ func (p *TLDRPlugin) message(kind bot.Kind, message msg.Message, args ...interfa
|
||||||
response := "Here you go captain 'too good to read backlog':\n"
|
response := "Here you go captain 'too good to read backlog':\n"
|
||||||
|
|
||||||
for topic := 0; topic < tr; topic++ {
|
for topic := 0; topic < tr; topic++ {
|
||||||
max := -1.
|
bestScore := -1.
|
||||||
best := ""
|
bestTopic := ""
|
||||||
for word := 0; word < tc; word++ {
|
for word := 0; word < tc; word++ {
|
||||||
score := topicsOverWords.At(topic, word)
|
score := topicsOverWords.At(topic, word)
|
||||||
if score > max {
|
if score > bestScore {
|
||||||
max = score
|
bestScore = score
|
||||||
best = vocab[word]
|
bestTopic = vocab[word]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
response += fmt.Sprintf("Topic #%d : %s\n", topic, best)
|
response += fmt.Sprintf("Topic #%d : %s\n", topic, bestTopic)
|
||||||
response += fmt.Sprintf("\t%s\n", bestDocs[topic])
|
for i := range bestDocs[topic] {
|
||||||
|
response += fmt.Sprintf("\t<%s>%s\n", bestUsers[topic][i], bestDocs[topic][i])
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
p.Bot.Send(bot.Message, message.Channel, response)
|
p.Bot.Send(bot.Message, message.Channel, response)
|
||||||
|
@ -100,6 +116,7 @@ func (p *TLDRPlugin) message(kind bot.Kind, message msg.Message, args ...interfa
|
||||||
maxHistorySize := p.Bot.Config().GetInt("TLDR.HistorySize", 1000)
|
maxHistorySize := p.Bot.Config().GetInt("TLDR.HistorySize", 1000)
|
||||||
if currentHistorySize < maxHistorySize {
|
if currentHistorySize < maxHistorySize {
|
||||||
p.History = append(p.History, lowercaseMessage)
|
p.History = append(p.History, lowercaseMessage)
|
||||||
|
p.Users = append(p.Users, message.User.Name)
|
||||||
p.Index = 0
|
p.Index = 0
|
||||||
} else {
|
} else {
|
||||||
if currentHistorySize > maxHistorySize {
|
if currentHistorySize > maxHistorySize {
|
||||||
|
@ -112,6 +129,7 @@ func (p *TLDRPlugin) message(kind bot.Kind, message msg.Message, args ...interfa
|
||||||
}
|
}
|
||||||
|
|
||||||
p.History[p.Index] = lowercaseMessage
|
p.History[p.Index] = lowercaseMessage
|
||||||
|
p.Users[p.Index] = message.User.Name
|
||||||
p.Index++
|
p.Index++
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -127,3 +145,15 @@ func (p *TLDRPlugin) help(kind bot.Kind, message msg.Message, args ...interface{
|
||||||
func shouldKeepMessage(message string) bool {
|
func shouldKeepMessage(message string) bool {
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func min(slice []float64) (float64, int) {
|
||||||
|
minVal := 1.
|
||||||
|
minIndex := -1
|
||||||
|
for index, val := range slice {
|
||||||
|
if val < minVal {
|
||||||
|
minVal = val
|
||||||
|
minIndex = index
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return minVal, minIndex
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue