4

I'm trying to POST Multipart data to a server, I'm switching to CPPRestSDK from CPR, but I can't seem to find any documentation on it

Coming from CPR, https://github.com/whoshuu/cpr

Meaning I've tried that code, but I just can't seem to find any documentation on cpprestsdk for multipart data.

    cpr::Multipart multipart_data{};

    for (size_t i = 0; i < files.size(); i++) {
        if (!is_image_or_gif(files[i].filepath)) {
            std::string entire_file = read_entire_file(files[i].filepath);
            std::string custom_filename{ files[i].spoiler ? "SPOILER_" : "" };
            multipart_data.parts.emplace_back(
                "file" + std::to_string(i),
                cpr::Buffer{ entire_file.begin(),
                             entire_file.end(),
                             custom_filename + files[i].filename },
                "application/octet-stream");
        } else {
            multipart_data.parts.emplace_back("file" + std::to_string(i),
                                              cpr::File(files[i].filepath),
                                              "application/octet-stream");
        }
    }

    auto payload_json = nlohmann::json{
        { "content", content },
        { "tts", tts }
    }.dump();
    multipart_data.parts.emplace_back("payload_json", payload_json);

    auto response = cpr::Post(
        cpr::Url{ endpoint("/channels/%/messages", id) },
        cpr::Header{ { "Authorization", format("Bot %", discord::detail::bot_instance->token) },
                     { "Content-Type", "multipart/form-data" },
                     { "User-Agent", "DiscordBot (http://www.github.com/yuhanun/dpp, 0.0.0)" },
                     { "Connection", "keep-alive" } },
        multipart_data);

Where the file struct is quite obvious.

Headers, is fine, i figured that out, I just need some help sending multipart data basically :)

My expected result is to have the server respond with a "success" json, which, in this case is a Message object, of the sent message, however, right now, I don't even know where to start.

JohnkaS
  • 622
  • 8
  • 18

2 Answers2

3

Since this is getting some upvotes for some reason, I'd like to answer the question.

I solved this a long time ago, you can check out my repository to find out how exactly.

https://github.com/Yuhanun/DPP/blob/master/src/channel.cpp#L108

https://github.com/Yuhanun/DPP/blob/master/src/utils.cpp#L180

Enjoy the solution.

JohnkaS
  • 622
  • 8
  • 18
1

Here's how one can do it :

// Form a multipart/form-data scheme 
// 1.Create a boundary ( a random value that you know is unique)
// KabezOf... is something goofie I just wrote, make sure you use 
// something that you know does not exist in  the actual messages.
std::string boundary = "----KabezOfFireDegelDegelGoGoniDaijobo";
// 2.Embed different fields 
std::stringstream bodyContent;
std::map<std::string, std::string> keyValues{ {"key1", "value1"},
                                              {"key2", "value2"},
                                              {"key3", "value3" } };

for (auto& [key, value] : keyValues)
{
    bodyContent << "--" << boundary << "\r\n"
                << "Content-Disposition: form-data; name=\"" << key << "\"\r\n\r\n"
                << value << "\r\n";
}
// 3. if you have any files to send as well, Now is the time
// here we are sending an image file, as you can see, like
// previous block, you can put this into a loop and instead
// of 1 file, have several files.
// reading the image 
std::ifstream inputFile;
inputFile.open(imagePath, std::ios::binary | std::ios::in);
std::ostringstream imgContent;
std::copy(std::istreambuf_iterator<char>(inputFile),
          std::istreambuf_iterator<char>(),
          std::ostreambuf_iterator<char>(imgContent));

auto imageFilename =  std::filesystem::path(imagePath).filename().string();
bodyContent << "--" << boundary<<"\r\n"
            << "Content-Disposition: form-data; name=\"image\"; filename=\"" << imageFilename << "\"\r\n"
            << "Content-Type: " << contentType << "\r\n\r\n"
            << imgContent.str() << "\r\n"
            << "--" << boundary << "--";

web::http::client::http_client client(your_uri);
web::http::http_request requestMessage{ methods::POST };
requestMessage.set_body(bodyContent.str(), "multipart/form-data; boundary=" + boundary);

auto result = client.request(requestMessage);


Hossein
  • 24,202
  • 35
  • 119
  • 224