postit2-formadd.c 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. /***************************************************************************
  2. * _ _ ____ _
  3. * Project ___| | | | _ \| |
  4. * / __| | | | |_) | |
  5. * | (__| |_| | _ <| |___
  6. * \___|\___/|_| \_\_____|
  7. *
  8. * Copyright (C) 1998 - 2022, Daniel Stenberg, <[email protected]>, et al.
  9. *
  10. * This software is licensed as described in the file COPYING, which
  11. * you should have received as part of this distribution. The terms
  12. * are also available at https://curl.se/docs/copyright.html.
  13. *
  14. * You may opt to use, copy, modify, merge, publish, distribute and/or sell
  15. * copies of the Software, and permit persons to whom the Software is
  16. * furnished to do so, under the terms of the COPYING file.
  17. *
  18. * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
  19. * KIND, either express or implied.
  20. *
  21. * SPDX-License-Identifier: curl
  22. *
  23. ***************************************************************************/
  24. /* <DESC>
  25. * HTTP Multipart formpost with file upload and two additional parts.
  26. * </DESC>
  27. */
  28. /* Example code that uploads a file name 'foo' to a remote script that accepts
  29. * "HTML form based" (as described in RFC1738) uploads using HTTP POST.
  30. *
  31. * The imaginary form we will fill in looks like:
  32. *
  33. * <form method="post" enctype="multipart/form-data" action="examplepost.cgi">
  34. * Enter file: <input type="file" name="sendfile" size="40">
  35. * Enter file name: <input type="text" name="filename" size="30">
  36. * <input type="submit" value="send" name="submit">
  37. * </form>
  38. *
  39. */
  40. #include <stdio.h>
  41. #include <string.h>
  42. #include <curl/curl.h>
  43. int main(int argc, char *argv[])
  44. {
  45. CURL *curl;
  46. CURLcode res;
  47. struct curl_httppost *formpost = NULL;
  48. struct curl_httppost *lastptr = NULL;
  49. struct curl_slist *headerlist = NULL;
  50. static const char buf[] = "Expect:";
  51. curl_global_init(CURL_GLOBAL_ALL);
  52. /* Fill in the file upload field */
  53. curl_formadd(&formpost,
  54. &lastptr,
  55. CURLFORM_COPYNAME, "sendfile",
  56. CURLFORM_FILE, "postit2.c",
  57. CURLFORM_END);
  58. /* Fill in the filename field */
  59. curl_formadd(&formpost,
  60. &lastptr,
  61. CURLFORM_COPYNAME, "filename",
  62. CURLFORM_COPYCONTENTS, "postit2.c",
  63. CURLFORM_END);
  64. /* Fill in the submit field too, even if this is rarely needed */
  65. curl_formadd(&formpost,
  66. &lastptr,
  67. CURLFORM_COPYNAME, "submit",
  68. CURLFORM_COPYCONTENTS, "send",
  69. CURLFORM_END);
  70. curl = curl_easy_init();
  71. /* initialize custom header list (stating that Expect: 100-continue is not
  72. wanted */
  73. headerlist = curl_slist_append(headerlist, buf);
  74. if(curl) {
  75. /* what URL that receives this POST */
  76. curl_easy_setopt(curl, CURLOPT_URL, "https://example.com/examplepost.cgi");
  77. if((argc == 2) && (!strcmp(argv[1], "noexpectheader")))
  78. /* only disable 100-continue header if explicitly requested */
  79. curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headerlist);
  80. curl_easy_setopt(curl, CURLOPT_HTTPPOST, formpost);
  81. /* Perform the request, res will get the return code */
  82. res = curl_easy_perform(curl);
  83. /* Check for errors */
  84. if(res != CURLE_OK)
  85. fprintf(stderr, "curl_easy_perform() failed: %s\n",
  86. curl_easy_strerror(res));
  87. /* always cleanup */
  88. curl_easy_cleanup(curl);
  89. /* then cleanup the formpost chain */
  90. curl_formfree(formpost);
  91. /* free slist */
  92. curl_slist_free_all(headerlist);
  93. }
  94. return 0;
  95. }