mirror of
https://github.com/arnaucube/argos.git
synced 2026-02-07 19:16:40 +01:00
implemented delete favs (likes), and organized better code in files
This commit is contained in:
@@ -10,32 +10,6 @@ import (
|
||||
"github.com/dghubble/go-twitter/twitter"
|
||||
)
|
||||
|
||||
func getUserData(client *twitter.Client) *twitter.User {
|
||||
// Verify Credentials
|
||||
verifyParams := &twitter.AccountVerifyParams{
|
||||
SkipStatus: twitter.Bool(true),
|
||||
IncludeEmail: twitter.Bool(true),
|
||||
}
|
||||
user, _, _ := client.Accounts.VerifyCredentials(verifyParams)
|
||||
return user
|
||||
}
|
||||
func printUserData(user *twitter.User) {
|
||||
fmt.Print("username: ")
|
||||
c.Cyan(user.Name + " @" + user.ScreenName)
|
||||
if user.Email != "" {
|
||||
fmt.Print("Email ")
|
||||
c.Red(user.Email)
|
||||
}
|
||||
if user.Location != "" {
|
||||
fmt.Print("Location: ")
|
||||
c.Red(user.Location)
|
||||
}
|
||||
fmt.Print("user created on: ")
|
||||
c.Cyan(user.CreatedAt)
|
||||
|
||||
fmt.Print("number of tweets: ")
|
||||
c.Purple(strconv.Itoa(user.StatusesCount))
|
||||
}
|
||||
func deleteTweets(client *twitter.Client, user *twitter.User) {
|
||||
tweets := getTweets(client, user.ScreenName, iterationsCount)
|
||||
count := 0
|
||||
@@ -52,7 +26,7 @@ func optionDeleteTweets(client *twitter.Client) {
|
||||
user := getUserData(client)
|
||||
printUserData(user)
|
||||
fmt.Println("")
|
||||
c.Red("Are you sure you want to delete you tweets? [y/n]")
|
||||
c.Red("Are you sure you want to delete your tweets? [y/n]")
|
||||
newcommand := bufio.NewReader(os.Stdin)
|
||||
answer, _ := newcommand.ReadString('\n')
|
||||
answer = strings.TrimSpace(answer)
|
||||
|
||||
Reference in New Issue
Block a user