-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpastebin.h
322 lines (303 loc) · 5.87 KB
/
pastebin.h
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
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
#ifndef PASTEBIN_H
#define PASTEBIN_H
#include <QObject>
#include <QList>
#include <QPair>
#include <QUrl>
#include "PastebinAPI.h"
class QNetworkAccessManager;
class QNetworkReply;
class PasteInfo;
class UserInfo;
class WIIKING2_EXPORT Pastebin : public QObject
{
Q_OBJECT
public:
enum Language
{
FourCS, // 4CS
ACME6502,
KickAss6502,
TASM6502,
ABAP,
ActionScript,
ActionScript3,
Ada,
Algol68,
Apache,
AppleScript,
APTSource,
ARM,
NASM,
ASP,
Asymptote,
AutoConf,
AutoHotKey,
AutoIt,
AviSynth,
Awk,
BASCOM_AVR,
Bash,
Basic4GL,
BibTeX,
BlitzBasic,
BNF,
BOO,
BrainFuck,
CLang,
CMAC,
CIL,
CSharp,
CPP,
CPPQt,
CLoadRunner,
CADDCL,
CADLisp,
CFDG,
ChaiScript,
Clojure,
KloneC,
KloneCPP,
CMake,
COBOL,
CoffeeScript,
ColdFusion,
CSS,
CueSheet,
DLang,
DCL,
DCPU16,
DCS,
Delphi,
Oxygene,
Diff,
DIV,
DOS,
DOT,
ELang,
ECMAScript,
Eiffel,
Email,
EPC,
Erlang,
FSharp,
Falcon,
FOLang,
FormulaOne,
Fortran,
FreeBasic,
FreeSWITCH,
GAMBAS,
GameMaker,
GDB,
Genero,
Genie,
GetText,
Go,
Groovy,
GwBasic,
Haskell,
Haxe,
HicEst,
HQ9Plus,
HTML4,
HTML5,
Icon,
IDL,
INI,
INNO,
INTERCAL,
IO,
JLang,
Java,
Java5,
JavaScript,
jQuery,
KiXtart,
Latex,
LDIF,
LibertyBasic,
LindenScript,
Lisp,
LLVM,
LocoBasic,
Logtalk,
LOLCode,
LotusFormulas,
LotusScript,
LScript,
Lua,
M68KAssembly,
MagikSF,
Make,api_options,
MapBasic,
MatLab,
mIRC,
MIXAssember,
Modula2,
Modula3,
Motorola68KHiSoftDev,
MPASM,
MXML,
MySQL,
Nagios,
NewLISP,
PlainText, // Plaintext
NSIS,
Oberon2,
ObjeckLang,
ObjectiveC,
OCamlBrief,
OCaml,
Octave,
OpenBSDPacketFilter,
GLSL,
OOBasic,
Oracle11,
Oracle8,
Oz,
ParaSail,
PariGP,
Pascal,
PAWN,
PCRE,
Per,
Perl,
Perl6,
PHP,
PHPBrief,
Pic16,
Pike,
PixelBender,
PLSQL,
PostgreSQL,
POVRay,
PowerShell,
PowerBuilder,
ProFTPd,
Progress,
Prolog,
Properties,
ProvideX,
PureBasic,
PyCon,
Python,
PyS60,
QKdb,
QBasic,
RSPlus,
Rails,
REBOL,
REG,
Rexx,
Robots,
RPMSpec,
Ruby,
GNUPlot,
SAS,
Scala,
Scheme,
Scilab,
SdlBasic,
SmallTalk,
Smarty,
SPARK,
SPARQL,
SQL,
StoneScript,
SystemVerilog,
TSQL,
TCL,
TeraTerm,
ThinBasic,
TypoScript,
Unicon,
UnrealScript,
UPC,
Urbi,
Vala,
VBNet,
Vedit,
VeriLog,
VHDL,
VIM,
VisualProLog,
VB,
VisualFoxPro,
WhiteSpace,
WHOIS,
Winbatch,
XBasic,
XML,
XorgConfig,
XPP,
YAML,
Z80Assembly,
ZXBasic
};
enum ErrorType
{
InvalidDevKey,
InvalidUserKey,
InvalidOption,
InvalidExpireDate,
InvalidVisibility,
InvalidFormat,
InvlaidPaste,
InvalidPermissions,
InvalidRequestType,
InvalidPostParameters,
InvalidLogin,
InactiveAccount,
EmptyCode,
MaxSizeExceeded,
Max10Exceeded,
Max25Exceeded,
BlockedIP
};
explicit Pastebin(QObject* parent=0);
~Pastebin();
QString userKey() const;
void setUserKey(const QString& key);
QString userName() const;
void setUserName(const QString& name);
QString password() const;
void setPassword(const QString& password);
QString developerKey() const;
void setDeveloperKey(const QString& key);
QByteArray data() const;
void setData(const QByteArray& data);
Language language() const;
void setLanguage(Language lang);
QString errorString() const;
public slots:
void deletePaste(const QString& pasteKey);
void postPaste(const QByteArray& data, Language lang = PlainText, const QString& title=QString(), const QString& expire="N", quint32 vis = 0);
void login();
void userInfo();
void trendingPastes();
signals:
void error(Pastebin::ErrorType);
void unknownError(const QString& error);
void loggedIn(const QString& key);
void pasteSuccessful(const QUrl& url);
void deleteSuccessful();
void pastes(QList<PasteInfo*> pastes);
void user(UserInfo* user);
private slots:
void readData(QNetworkReply*);
private:
QString languageString(Language lang) const;
QNetworkAccessManager* m_networkAccess;
QString m_userKey;
QString m_userName;
QString m_password;
QString m_developerKey;
QString m_errorString;
QByteArray m_data;
Language m_language;
};
#ifndef QT_NO_DEBUG_STREAM
WIIKING2_EXPORT QDebug operator<<(QDebug debug, const Pastebin* pastebin);
#endif // QT_NO_DEBUG_STREAM
#endif // PASTEBIN_H