curl_file.c 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 5 |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 1997-2016 The PHP Group |
  6. +----------------------------------------------------------------------+
  7. | This source file is subject to version 3.01 of the PHP license, |
  8. | that is bundled with this package in the file LICENSE, and is |
  9. | available through the world-wide-web at the following url: |
  10. | http://www.php.net/license/3_01.txt |
  11. | If you did not receive a copy of the PHP license and are unable to |
  12. | obtain it through the world-wide-web, please send a note to |
  13. | license@php.net so we can mail you a copy immediately. |
  14. +----------------------------------------------------------------------+
  15. | Author: Stanislav Malyshev <stas@php.net> |
  16. +----------------------------------------------------------------------+
  17. */
  18. /* $Id$ */
  19. #ifdef HAVE_CONFIG_H
  20. # include "config.h"
  21. #endif
  22. #include "php.h"
  23. #include "Zend/zend_exceptions.h"
  24. #include "php_curl.h"
  25. #if HAVE_CURL
  26. PHP_CURL_API zend_class_entry *curl_CURLFile_class;
  27. static void curlfile_ctor(INTERNAL_FUNCTION_PARAMETERS)
  28. {
  29. char *fname = NULL, *mime = NULL, *postname = NULL;
  30. int fname_len, mime_len, postname_len;
  31. zval *cf = return_value;
  32. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "p|ss", &fname, &fname_len, &mime, &mime_len, &postname, &postname_len) == FAILURE) {
  33. return;
  34. }
  35. if (fname) {
  36. zend_update_property_string(curl_CURLFile_class, cf, "name", sizeof("name")-1, fname TSRMLS_CC);
  37. }
  38. if (mime) {
  39. zend_update_property_string(curl_CURLFile_class, cf, "mime", sizeof("mime")-1, mime TSRMLS_CC);
  40. }
  41. if (postname) {
  42. zend_update_property_string(curl_CURLFile_class, cf, "postname", sizeof("postname")-1, postname TSRMLS_CC);
  43. }
  44. }
  45. /* {{{ proto void CURLFile::__construct(string $name, [string $mimetype [, string $postfilename]])
  46. Create the CURLFile object */
  47. ZEND_METHOD(CURLFile, __construct)
  48. {
  49. return_value = getThis();
  50. curlfile_ctor(INTERNAL_FUNCTION_PARAM_PASSTHRU);
  51. }
  52. /* }}} */
  53. /* {{{ proto CURLFile curl_file_create(string $name, [string $mimetype [, string $postfilename]])
  54. Create the CURLFile object */
  55. PHP_FUNCTION(curl_file_create)
  56. {
  57. object_init_ex( return_value, curl_CURLFile_class );
  58. curlfile_ctor(INTERNAL_FUNCTION_PARAM_PASSTHRU);
  59. }
  60. /* }}} */
  61. static void curlfile_get_property(char *name, INTERNAL_FUNCTION_PARAMETERS)
  62. {
  63. zval *res;
  64. if (zend_parse_parameters_none() == FAILURE) {
  65. return;
  66. }
  67. res = zend_read_property(curl_CURLFile_class, getThis(), name, strlen(name), 1 TSRMLS_CC);
  68. *return_value = *res;
  69. zval_copy_ctor(return_value);
  70. INIT_PZVAL(return_value);
  71. }
  72. static void curlfile_set_property(char *name, INTERNAL_FUNCTION_PARAMETERS)
  73. {
  74. char *arg = NULL;
  75. int arg_len;
  76. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &arg, &arg_len) == FAILURE) {
  77. return;
  78. }
  79. zend_update_property_string(curl_CURLFile_class, getThis(), name, strlen(name), arg TSRMLS_CC);
  80. }
  81. /* {{{ proto string CURLFile::getFilename()
  82. Get file name */
  83. ZEND_METHOD(CURLFile, getFilename)
  84. {
  85. curlfile_get_property("name", INTERNAL_FUNCTION_PARAM_PASSTHRU);
  86. }
  87. /* }}} */
  88. /* {{{ proto string CURLFile::getMimeType()
  89. Get MIME type */
  90. ZEND_METHOD(CURLFile, getMimeType)
  91. {
  92. curlfile_get_property("mime", INTERNAL_FUNCTION_PARAM_PASSTHRU);
  93. }
  94. /* }}} */
  95. /* {{{ proto string CURLFile::getPostFilename()
  96. Get file name for POST */
  97. ZEND_METHOD(CURLFile, getPostFilename)
  98. {
  99. curlfile_get_property("postname", INTERNAL_FUNCTION_PARAM_PASSTHRU);
  100. }
  101. /* }}} */
  102. /* {{{ proto void CURLFile::setMimeType(string $mime)
  103. Set MIME type */
  104. ZEND_METHOD(CURLFile, setMimeType)
  105. {
  106. curlfile_set_property("mime", INTERNAL_FUNCTION_PARAM_PASSTHRU);
  107. }
  108. /* }}} */
  109. /* {{{ proto void CURLFile::setPostFilename(string $name)
  110. Set file name for POST */
  111. ZEND_METHOD(CURLFile, setPostFilename)
  112. {
  113. curlfile_set_property("postname", INTERNAL_FUNCTION_PARAM_PASSTHRU);
  114. }
  115. /* }}} */
  116. /* {{{ proto void CURLFile::__wakeup()
  117. Unserialization handler */
  118. ZEND_METHOD(CURLFile, __wakeup)
  119. {
  120. zval *_this = getThis();
  121. zend_unset_property(curl_CURLFile_class, _this, "name", sizeof("name")-1 TSRMLS_CC);
  122. zend_update_property_string(curl_CURLFile_class, _this, "name", sizeof("name")-1, "" TSRMLS_CC);
  123. zend_throw_exception(NULL, "Unserialization of CURLFile instances is not allowed", 0 TSRMLS_CC);
  124. }
  125. /* }}} */
  126. ZEND_BEGIN_ARG_INFO_EX(arginfo_curlfile_create, 0, 0, 1)
  127. ZEND_ARG_INFO(0, filename)
  128. ZEND_ARG_INFO(0, mimetype)
  129. ZEND_ARG_INFO(0, postname)
  130. ZEND_END_ARG_INFO()
  131. ZEND_BEGIN_ARG_INFO(arginfo_curlfile_name, 0)
  132. ZEND_ARG_INFO(0, name)
  133. ZEND_END_ARG_INFO()
  134. static const zend_function_entry curlfile_funcs[] = {
  135. PHP_ME(CURLFile, __construct, arginfo_curlfile_create, ZEND_ACC_CTOR|ZEND_ACC_PUBLIC)
  136. PHP_ME(CURLFile, getFilename, NULL, ZEND_ACC_PUBLIC)
  137. PHP_ME(CURLFile, getMimeType, NULL, ZEND_ACC_PUBLIC)
  138. PHP_ME(CURLFile, setMimeType, arginfo_curlfile_name, ZEND_ACC_PUBLIC)
  139. PHP_ME(CURLFile, getPostFilename, NULL, ZEND_ACC_PUBLIC)
  140. PHP_ME(CURLFile, setPostFilename, arginfo_curlfile_name, ZEND_ACC_PUBLIC)
  141. PHP_ME(CURLFile, __wakeup, NULL, ZEND_ACC_PUBLIC)
  142. PHP_FE_END
  143. };
  144. void curlfile_register_class(TSRMLS_D)
  145. {
  146. zend_class_entry ce;
  147. INIT_CLASS_ENTRY( ce, "CURLFile", curlfile_funcs );
  148. curl_CURLFile_class = zend_register_internal_class(&ce TSRMLS_CC);
  149. zend_declare_property_string(curl_CURLFile_class, "name", sizeof("name")-1, "", ZEND_ACC_PUBLIC TSRMLS_CC);
  150. zend_declare_property_string(curl_CURLFile_class, "mime", sizeof("mime")-1, "", ZEND_ACC_PUBLIC TSRMLS_CC);
  151. zend_declare_property_string(curl_CURLFile_class, "postname", sizeof("postname")-1, "", ZEND_ACC_PUBLIC TSRMLS_CC);
  152. }
  153. #endif