-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflairhandler.cpp
214 lines (165 loc) · 5.36 KB
/
flairhandler.cpp
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
#include "flairhandler.h"
#include <redditcpp/api.h>
#include <spdlog/spdlog.h>
#include <fstream>
#include <memory>
#include <unordered_map>
#include <vector>
FlairHandler::FlairHandler(std::shared_ptr<reddit::Api> api, std::string subreddit, spdlog::level::level_enum log_level)
: _api(std::move(api))
, _subreddit(std::move(subreddit)) {
spdlog::set_level(log_level);
};
int FlairHandler::get_flairlistcsv(const std::string& filename) {
std::ofstream file(filename, std::ios::trunc);
file << "User,Flair Text,CSS Class\n";
reddit::FlairListInput fl_input;
fl_input.limit(1000);
std::string after;
int counter = 0;
while(true) {
fl_input.after(after);
reddit::FlairListResponse fl_resp = _api->modflair(_subreddit).flairlist(fl_input);
for(const auto& itr : fl_resp.entries) {
const std::string current_fl_text = itr.flairtext;
if(current_fl_text.empty() && itr.cssclass.empty()) {
continue;
}
file << fmt::format("{},{},\"{}\"\n", itr.user, current_fl_text, itr.cssclass);
spdlog::debug(" -[{}] {} - {} - {}", ++counter, itr.user, current_fl_text, itr.cssclass);
}
after = fl_resp.next;
if(after.empty()) {
break;
}
}
file.close();
return counter;
}
void FlairHandler::replace_flairtext(const std::unordered_map<std::string, std::string> flairmap) {
spdlog::info("Replace Flairtext Task Started");
const std::string filename = "flairs.txt";
int counted = save_flairtext(filename, false);
spdlog::info("List Retrieved, {} Flairs Counted", counted);
std::ifstream file(filename);
if(!file.is_open()) {
spdlog::critical("Could not open the Flairlist file");
return;
}
std::ofstream output_file("output.txt", std::ios::trunc);
std::vector<reddit::FlairListResponse::Entry> flair_csv;
flair_csv.reserve(100);
std::string user, css_sink;
int iterator_counter = 0;
int entry_counter = 0;
auto api_call = [&]() {
auto resp = _api->modflair(_subreddit).flaircsv(flair_csv);
for(const auto& itr : resp.entries) {
if(!itr.ok) {
spdlog::error("{} Not Okay - {}", entry_counter, itr.status);
}
output_file << ++entry_counter << " " << itr.status << "\n";
}
flair_csv.clear();
iterator_counter = 0;
spdlog::info("{}/{} Completed", entry_counter, counted);
};
int row_counter = 0;
while(std::getline(file, user)) {
if(iterator_counter >= 100) {
api_call();
}
reddit::FlairListResponse::Entry entry;
entry.user = user;
std::getline(file, entry.flairtext);
const auto itr = flairmap.find(entry.flairtext);
if(itr != flairmap.end()) {
entry.flairtext = itr->second;
}
std::getline(file, entry.cssclass);
flair_csv.emplace_back(entry);
++iterator_counter;
spdlog::debug(" -[{}] {} - {} - {}", ++row_counter, entry.user, entry.flairtext, entry.cssclass);
}
api_call();
output_file.close();
spdlog::info("Replace Flairtext Task Complete");
}
void FlairHandler::backup_flairs() {
spdlog::info("Backup Task Started");
int counted = save_flairtext("backup.txt", false);
spdlog::info("Backup Task Complete, {} Flairs Counted", counted);
}
void FlairHandler::clear_user_css_classes() {
spdlog::info("Delete Flair CSS Classes Task Started");
const std::string filename = "flairs.txt";
int counted = save_flairtext(filename, true);
spdlog::info("List Retrieved, {} Flairs Counted", counted);
std::ifstream file(filename);
if(!file.is_open()) {
spdlog::critical("Could not open the Flairlist file");
return;
}
std::ofstream output_file("output.txt", std::ios::trunc);
std::vector<reddit::FlairListResponse::Entry> flair_csv;
flair_csv.reserve(100);
std::string user, css_sink;
int iterator_counter = 0;
int entry_counter = 0;
auto api_call = [&]() {
auto resp = _api->modflair(_subreddit).flaircsv(flair_csv);
for(const auto& itr : resp.entries) {
if(!itr.ok) {
spdlog::error("{} Not Okay - {}", entry_counter, itr.status);
}
output_file << ++entry_counter << " " << itr.status << "\n";
}
flair_csv.clear();
iterator_counter = 0;
spdlog::info("{}/{} Completed", entry_counter, counted);
};
int row_counter = 0;
while(std::getline(file, user)) {
if(iterator_counter >= 100) {
api_call();
}
reddit::FlairListResponse::Entry entry;
entry.user = user;
std::getline(file, entry.flairtext);
std::getline(file, css_sink);
flair_csv.emplace_back(entry);
++iterator_counter;
spdlog::debug(" -[{}] {} - {} - {}", ++row_counter, entry.user, entry.flairtext, entry.cssclass);
}
api_call();
output_file.close();
spdlog::info("Delete Flair CSS Classes Task Complete");
}
int FlairHandler::save_flairtext(const std::string& filename, bool css_class_empty_only) {
reddit::FlairListInput fl_input;
fl_input.limit(1000);
std::string after;
int counter = 0;
std::ofstream file(filename, std::ios::trunc);
while(true) {
fl_input.after(after);
reddit::FlairListResponse fl_resp = _api->modflair(_subreddit).flairlist(fl_input);
for(const auto& itr : fl_resp.entries) {
const std::string current_fl_text = itr.flairtext;
if(current_fl_text.empty() && itr.cssclass.empty()) {
continue;
}
if(css_class_empty_only && itr.cssclass.empty()) {
continue;
}
file << itr.user << "\n" << current_fl_text << "\n" << itr.cssclass << "\n";
spdlog::debug(" -[{}] {} - {} - {}", ++counter, itr.user, current_fl_text, itr.cssclass);
}
after = fl_resp.next;
if(after.empty()) {
break;
}
}
file.close();
return counter;
}