This repository has been archived by the owner on Apr 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
twitterpurge.go
164 lines (133 loc) · 3.39 KB
/
twitterpurge.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
package main
import (
"fmt"
"net/http"
"os"
"github.com/dghubble/go-twitter/twitter"
"github.com/dghubble/oauth1"
"github.com/joho/godotenv"
"github.com/schollz/progressbar/v3"
log "github.com/sirupsen/logrus"
)
// Version
var Version string
// Environment
var Env string
// Twitter Access
type Twitter struct {
config *oauth1.Config
token *oauth1.Token
httpClient *http.Client
Client *twitter.Client
tweetFormat string
ScreenName string
retries int
skipPreviousTweets int
}
func (t *Twitter) Setup() {
var twitterAccessKey string
var twitterAccessSecret string
var twitterConsumerKey string
var twitterConsumerSecret string
// Get the access keys from ENV
twitterAccessKey = os.Getenv("TWITTER_ACCESS_KEY")
twitterAccessSecret = os.Getenv("TWITTER_ACCESS_SECRET")
twitterConsumerKey = os.Getenv("TWITTER_CONSUMER_KEY")
twitterConsumerSecret = os.Getenv("TWITTER_CONSUMER_SECRET")
twitterScreenName := os.Getenv("TWITTER_SCREEN_NAME")
if twitterScreenName == "" {
log.Fatalf("Twitter screen name cannot be null")
}
if twitterConsumerKey == "" {
log.Fatal("Twitter consumer key can not be null")
}
if twitterConsumerSecret == "" {
log.Fatal("Twitter consumer secret can not be null")
}
if twitterAccessKey == "" {
log.Fatal("Twitter access key can not be null")
}
if twitterAccessSecret == "" {
log.Fatal("Twitter access secret can not be null")
}
// Setup the new oauth client
t.config = oauth1.NewConfig(twitterConsumerKey, twitterConsumerSecret)
t.token = oauth1.NewToken(twitterAccessKey, twitterAccessSecret)
t.httpClient = t.config.Client(oauth1.NoContext, t.token)
// Twitter client
t.Client = twitter.NewClient(t.httpClient)
// Set the screen name for later use
t.ScreenName = twitterScreenName
}
// Twitter API constant
var tw Twitter
// HandleRequest - Handle the incoming Lambda request
func HandleRequest() {
tw.Setup()
userShowParams := &twitter.UserShowParams{ScreenName: tw.ScreenName}
user, _, _ := tw.Client.Users.Show(userShowParams)
fmt.Println("User statuses to remove: ", user.StatusesCount)
c := user.StatusesCount
bar := progressbar.Default(int64(c))
for c > 0 {
tweets, _, err := tw.Client.Timelines.UserTimeline(&twitter.UserTimelineParams{
ScreenName: tw.ScreenName,
Count: 50,
})
if err != nil {
log.Fatal(err)
}
for _, tweet := range tweets {
tw.Client.Statuses.Destroy(tweet.ID, nil)
c--
bar.Add(1)
}
}
}
// Set the local environment
func setRunningEnvironment() {
// Get the environment variable
switch os.Getenv("APP_ENV") {
case "production":
Env = "production"
case "development":
Env = "development"
case "testing":
Env = "testing"
default:
Env = "development"
}
if Env != "production" {
Version = Env
}
}
func shutdown() {
log.Info("Shutdown request registered")
}
func init() {
// Set the environment
setRunningEnvironment()
// Set logging configuration
log.SetFormatter(&log.TextFormatter{
DisableColors: true,
FullTimestamp: true,
})
log.SetReportCaller(true)
switch Env {
case "development":
log.SetLevel(log.DebugLevel)
case "production":
log.SetLevel(log.ErrorLevel)
default:
log.SetLevel(log.InfoLevel)
}
}
func main() {
fmt.Println("")
fmt.Println("Twitter Purge!")
fmt.Println("")
if err := godotenv.Load(); err != nil {
log.Fatal("Error loading .env file")
}
HandleRequest()
}