webshit: add links to articles

This commit is contained in:
Chris Sexton 2019-11-02 18:18:36 -04:00 committed by Chris Sexton
parent 8d74baddba
commit 6e62ccf00d
2 changed files with 6 additions and 5 deletions

View File

@ -2,13 +2,14 @@ package newsbid
import ( import (
"fmt" "fmt"
"sort"
"strconv"
"strings"
"github.com/jmoiron/sqlx" "github.com/jmoiron/sqlx"
"github.com/velour/catbase/bot" "github.com/velour/catbase/bot"
"github.com/velour/catbase/bot/msg" "github.com/velour/catbase/bot/msg"
"github.com/velour/catbase/plugins/newsbid/webshit" "github.com/velour/catbase/plugins/newsbid/webshit"
"sort"
"strconv"
"strings"
) )
type NewsBid struct { type NewsBid struct {
@ -50,7 +51,7 @@ func (p *NewsBid) message(conn bot.Connector, k bot.Kind, message msg.Message, a
sort.Slice(bids, func(i, j int) bool { return bids[i].User < bids[j].User }) sort.Slice(bids, func(i, j int) bool { return bids[i].User < bids[j].User })
out := "Bids:\n" out := "Bids:\n"
for _, b := range bids { for _, b := range bids {
out += fmt.Sprintf("%s bid %d on %s\n", b.User, b.Bid, b.Title) out += fmt.Sprintf("%s bid %d on <%s|%s> \n", b.User, b.Bid, b.URL, b.Title)
} }
p.bot.Send(conn, bot.Message, ch, out) p.bot.Send(conn, bot.Message, ch, out)
return true return true

View File

@ -45,7 +45,7 @@ func (s Stories) Titles() string {
if i > 0 { if i > 0 {
out += ", " out += ", "
} }
out += v.Title out += fmt.Sprintf("<%s|%s>", v.URL, v.Title)
} }
return out return out
} }