-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcloudinary_uploader.h
43 lines (35 loc) · 1.11 KB
/
cloudinary_uploader.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
#ifndef __CLOUDINARY_UPLOADER_H__
#define __CLOUDINARY_UPLOADER_H__
#include <ctime>
#include <string>
#include <cpr/cpr.h>
#include <nlohmann/json.hpp>
#include "sleepy_discord/attachment.h"
#include "key_handler.h"
using json = nlohmann::json;
class CloudinaryUploader {
public:
CloudinaryUploader(SleepyDiscord::Attachment attachment);
void uploadHelper();
void delImage(std::string public_id, std::string signature);
int getEpochTimestamp();
bool isProblematic();
std::string getAttachmentFileName();
std::string getAttachmentFileNameWithoutExt();
std::string getUploadedImageUrl();
std::string getUploadedImagePublicId();
std::string getUploadedImageSignature();
private:
bool problematic;
std::string attachmentUrl;
std::string attachmentFileName;
std::string attachmentFileNameWithoutExt;
std::string uploadedImageUrl;
std::string uploadedImagePublicId;
std::string uploadedImageSignature;
int epochTimestamp;
json apiResult;
std::ifstream keyFile{"../api_keys.json"};
KeyHandler keyHandler{keyFile};
};
#endif // __CLOUDINARY_UPLOADER_H__