This repository has been archived by the owner on Dec 31, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tweets.go
158 lines (139 loc) · 4.04 KB
/
tweets.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
package view
import (
"errors"
"fmt"
"html"
"regexp"
"strconv"
"github.com/ChimeraCoder/anaconda"
"github.com/arrow2nd/twnyan/util"
"github.com/gookit/color"
)
// DrawTweets ツイート描画
func (v *View) DrawTweets() {
for i := len(v.tweets) - 1; i >= 0; i-- {
v.drawTweet(i, false, &v.tweets[i])
}
}
func (v *View) drawTweet(i int, isQuote bool, t *anaconda.Tweet) {
header := ""
// QTならセパレータを挿入
if isQuote {
header += v.createSeparatorStr(true)
}
// RTなら元のツイートに置換
if t.RetweetedStatus != nil {
header += color.HEX(v.cfg.Color.Retweet).Sprintf("RT by %s @%s\n", v.truncateUserName(t.User.Name), t.User.ScreenName)
t = t.RetweetedStatus
}
// リプライなら宛先を追加
if t.InReplyToScreenName != "" {
header += color.HEX(v.cfg.Color.Reply).Sprintf("Reply to @%s\n", t.InReplyToScreenName)
}
// ツイート番号
index := "↪"
if !isQuote {
index = color.HEXStyle(v.cfg.Color.BoxForground, v.cfg.Color.Accent1).Sprintf(" %d ", i)
}
// ユーザー情報
userInfo := v.createUserStr(&t.User)
// 投稿時刻
pt, _ := t.CreatedAtTime()
postTime := v.createPostTimeStr(pt)
// いいね、RT数
fav := v.createReactionCountStr(t.FavoriteCount, t.Favorited, "Fav")
rt := v.createReactionCountStr(t.RetweetCount, t.Retweeted, "RT")
// ヘッダー
header += fmt.Sprintf("%s %s %s%s%s", index, userInfo, postTime, fav, rt)
// ツイート内容
text := v.createTweetText(t)
// 表示
fmt.Printf("%s\n%s", header, text)
// QTなら引用元を表示
if t.QuotedStatus != nil {
v.drawTweet(0, true, t.QuotedStatus)
return
}
fmt.Print("\n")
}
func (v *View) createTweetText(t *anaconda.Tweet) string {
// 文字をアンエスケープ
text := html.UnescapeString(t.FullText)
text += "\n"
// ハッシュタグをハイライト
if len(t.Entities.Hashtags) != 0 {
for _, h := range t.Entities.Hashtags {
rep := regexp.MustCompile(fmt.Sprintf("[##](%s)([\\s])", h.Text))
text = rep.ReplaceAllString(text, color.HEX(v.cfg.Color.Hashtag).Sprintf("#$1$2"))
}
}
// メンションをハイライト
if len(t.Entities.User_mentions) != 0 {
rep := regexp.MustCompile("(^|[^\\w@#$%&])[@@](\\w+)")
text = rep.ReplaceAllString(text, "$1"+color.HEX(v.cfg.Color.Reply).Sprintf("@$2"))
}
return text
}
func (v *View) createReactionCountStr(count int, flg bool, unit string) string {
// 表示色
colorCode := v.cfg.Color.Favorite
if unit == "RT" {
colorCode = v.cfg.Color.Retweet
}
// カウントが0なら処理を終了
if count <= 0 {
return ""
} else if count > 1 {
unit += "s"
}
// 文字列作成
text := " "
if flg {
text += color.HEXStyle(v.cfg.Color.BoxForground, colorCode).Sprintf(" %d%s ", count, unit)
} else {
text += color.HEX(colorCode).Sprintf("%d%s", count, unit)
}
return text
}
// RegisterTweets ツイートを登録
func (v *View) RegisterTweets(t *[]anaconda.Tweet) {
v.mu.Lock()
defer v.mu.Unlock()
tmp := []anaconda.Tweet{}
v.tweets = append(tmp, *t...)
}
// GetTweetURL ツイートのURLを取得
func (v *View) GetTweetURL(numStr string) (string, error) {
name, err := v.GetDataFromTweetNum(numStr, "screenname")
if err != nil {
return "", err
}
ID, _ := v.GetDataFromTweetNum(numStr, "tweetID")
return fmt.Sprintf("https://twitter.com/%s/status/%s", name, ID), nil
}
// GetDataFromTweetNum ツイート番号から情報を取得
func (v *View) GetDataFromTweetNum(numStr, dataType string) (string, error) {
// ツイート番号かチェック
if !util.IsNumber(numStr) {
return "", fmt.Errorf("tweetnumber is invalid")
}
// ツイート番号が範囲内かチェック
num, _ := strconv.Atoi(numStr)
if num < 0 || num > len(v.tweets)-1 {
return "", errors.New("tweetnumber is out of range")
}
// ツイート取得
tweet := v.tweets[num]
if tweet.RetweetedStatus != nil {
tweet = *tweet.RetweetedStatus
}
// 指定されたデータを返す
switch dataType {
case "screenname":
return tweet.User.ScreenName, nil
case "tweetID":
return tweet.IdStr, nil
default:
return "", errors.New("Wrong dataType")
}
}