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
/
util.go
245 lines (193 loc) · 6.18 KB
/
util.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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
package cmd
import (
"errors"
"fmt"
"html"
"net/url"
"os"
"strings"
"github.com/arrow2nd/twnyan/twitter"
"github.com/arrow2nd/twnyan/util"
"github.com/gookit/color"
)
// setDefaultPrompt デフォルトのプロンプトを設定
func (cmd *Cmd) setDefaultPrompt() {
prompt := fmt.Sprintf("@%s : ", cmd.twitter.OwnUser.ScreenName)
cmd.shell.SetPrompt(prompt)
}
// parseTweetCmdArgs ツイート系のコマンドの引数をパース
func (cmd *Cmd) parseTweetCmdArgs(args []string) (string, []string) {
// 引数がないならにゃーん
if len(args) == 0 {
return "にゃーん", []string{}
}
// 1つ目の引数に拡張子が含まれているなら画像パスのみを返す
if util.MatchesRegexp("\\.\\w{3,4}$", args[0]) {
return "", args[0:]
}
// ツイート文と画像パスを返す
return args[0], args[1:]
}
// parseTimelineCmdArgs タイムライン取得系のコマンドの引数をパース
func (cmd *Cmd) parseTimelineCmdArgs(args []string) (string, string, error) {
argNum := len(args)
if argNum <= 0 {
return "", "", errors.New("no arguments")
}
str, count := args[0], cmd.config.Option.Counts
// 2つ目の引数があればcountに代入
if argNum >= 2 {
count = args[1]
}
return str, count, nil
}
// parseAccountCmdArgs アカウント系のコマンド引数をパース
func (cmd *Cmd) parseAccountCmdArgs(args []string) (string, error) {
// 対象のスクリーン名が指定されていない
if len(args) == 0 {
return "", errors.New("specify the screen name of the target account")
}
screenName := strings.Replace(args[0], "@", "", 1)
// メインアカウントを示す "main" が許可されているなら通す
if screenName == "main" {
return "main", nil
}
// アカウントの存在チェック
if _, ok := cmd.config.Cred.Sub[screenName]; !ok {
return "", errors.New("account does not exist")
}
return screenName, nil
}
// getCountFromCmdArg 引数からツイート取得件数を取得
func (cmd *Cmd) getCountFromCmdArg(args []string) string {
// 引数が無い、または数値以外ならデフォルト値を返す
if len(args) <= 0 || !util.IsThreeDigitsNumber(args[0]) {
return cmd.config.Option.Counts
}
return args[0]
}
// inputMultiLine マルチラインツイート入力
func (cmd *Cmd) inputMultiLine() string {
// プロンプトを変更
cmd.shell.SetPrompt("... ")
defer cmd.setDefaultPrompt()
fmt.Println("End typing with a semicolon. (If you want to cancel, input ':exit')")
input := cmd.shell.ReadMultiLinesFunc(func(f string) bool {
return f != ":exit" && !strings.HasSuffix(f, ";")
})
// 文字列内に:exitがあればキャンセル
if strings.Contains(input, ":exit") {
cmd.showMessage("CANCELED", "Input interrupted", cmd.config.Color.Accent2)
return ""
}
return strings.TrimRight(input, ";")
}
// showExecutionConf 実行確認を表示
func (cmd *Cmd) showExecutionConf(msg string) bool {
cmd.shell.SetPrompt("y/N: ")
defer cmd.setDefaultPrompt()
fmt.Println(msg)
result := cmd.shell.ReadLine()
return strings.ToLower(result) == "y"
}
// upload 画像をアップロード
func (cmd *Cmd) upload(images []string, query *url.Values) error {
if len(images) <= 0 {
return nil
}
// プログレスバー開始
fmt.Print("Uploading... 🐾 ")
cmd.shell.ProgressBar().Indeterminate(true)
cmd.shell.ProgressBar().Start()
mediaIDs, err := cmd.twitter.UploadImage(images)
cmd.shell.ProgressBar().Stop()
if err != nil {
return err
}
query.Add("media_ids", mediaIDs)
return nil
}
// actionOnTweet ツイートに対しての操作
func (cmd *Cmd) actionOnTweet(actionName, cmdName, bgColor string, args []string, actionFunc func(string) (string, error)) {
if len(args) <= 0 {
cmd.showWrongArgMessage(cmdName)
return
}
// 引数の数だけ処理
for _, v := range args {
tweetId, err := cmd.twitter.GetDataFromTweetNum(v, twitter.TweetId)
if err != nil {
cmd.showErrorMessage(err.Error())
return
}
tweetText, err := actionFunc(tweetId)
if err != nil {
cmd.showErrorMessage(err.Error())
return
}
cmd.showMessage(actionName, tweetText, bgColor)
}
}
// actionOnUser ユーザに対しての操作
func (cmd *Cmd) actionOnUser(actionName, cmdName, bgColor string, args []string, actionFunc func(string) (string, error)) {
var err error
if len(args) <= 0 {
cmd.showWrongArgMessage(cmdName)
return
}
screenName := args[0]
// ツイート番号ならスクリーンネームに置換
if util.IsThreeDigitsNumber(args[0]) {
screenName, err = cmd.twitter.GetDataFromTweetNum(args[0], twitter.ScreenName)
if err != nil {
cmd.showErrorMessage(err.Error())
return
}
}
// 受け取った関数を実行
userName, err := actionFunc(screenName)
if err != nil {
cmd.showErrorMessage(err.Error())
return
}
cmd.showMessage(actionName, userName, bgColor)
}
// showTweets 登録されたツイートを一覧表示
func (cmd *Cmd) showTweets() {
cmd.view.ShowTweets(cmd.twitter.Tweets, true)
}
// showMessage メッセージを表示
func (cmd *Cmd) showMessage(title, text, bgColor string) {
width := util.GetWindowWidth()
// 不要な文字を削除
text = util.AllReplace(text, "[\t\n\r]", " ")
text = html.UnescapeString(text)
// 画面内に収まるよう丸める
text = util.TruncateString(text, width-len(title)-3)
tips := color.HEXStyle(cmd.config.Color.BoxForground, bgColor).Sprintf(" %s ", title)
fmt.Printf("%s %s\n", tips, text)
}
// showErrorMessage エラーメッセージを表示
func (cmd *Cmd) showErrorMessage(msg string) {
tips := color.HEXStyle(cmd.config.Color.BoxForground, cmd.config.Color.Error).Sprint(" ERROR ")
fmt.Fprintf(os.Stderr, "%s %s\n", tips, msg)
}
// drawWrongArgError 引数ミスのメッセージを表示
func (cmd *Cmd) showWrongArgMessage(cmdName string) {
msg := fmt.Sprintf("Wrong argument, try '%s help'", cmdName)
cmd.showErrorMessage(msg)
}
// createLongHelp 詳細なヘルプ文を作成
func createLongHelp(help, alias, use, exp string) string {
longHelp := help
if alias != "" {
longHelp += fmt.Sprintf("\n\nAlias:\n %s", alias)
}
if use != "" {
longHelp += fmt.Sprintf("\n\nUse:\n %s", use)
}
if exp != "" {
longHelp += fmt.Sprintf("\n\nExample:\n %s", exp)
}
return longHelp
}