123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180 |
- /*
- +----------------------------------------------------------------------+
- | PHP Version 5 |
- +----------------------------------------------------------------------+
- | Copyright (c) 1997-2016 The PHP Group |
- +----------------------------------------------------------------------+
- | This source file is subject to version 3.01 of the PHP license, |
- | that is bundled with this package in the file LICENSE, and is |
- | available through the world-wide-web at the following url: |
- | http://www.php.net/license/3_01.txt |
- | If you did not receive a copy of the PHP license and are unable to |
- | obtain it through the world-wide-web, please send a note to |
- | license@php.net so we can mail you a copy immediately. |
- +----------------------------------------------------------------------+
- | Author: Stanislav Malyshev <stas@php.net> |
- +----------------------------------------------------------------------+
- */
- /* $Id$ */
- #ifdef HAVE_CONFIG_H
- # include "config.h"
- #endif
- #include "php.h"
- #include "Zend/zend_exceptions.h"
- #include "php_curl.h"
- #if HAVE_CURL
- PHP_CURL_API zend_class_entry *curl_CURLFile_class;
- static void curlfile_ctor(INTERNAL_FUNCTION_PARAMETERS)
- {
- char *fname = NULL, *mime = NULL, *postname = NULL;
- int fname_len, mime_len, postname_len;
- zval *cf = return_value;
- if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "p|ss", &fname, &fname_len, &mime, &mime_len, &postname, &postname_len) == FAILURE) {
- return;
- }
- if (fname) {
- zend_update_property_string(curl_CURLFile_class, cf, "name", sizeof("name")-1, fname TSRMLS_CC);
- }
- if (mime) {
- zend_update_property_string(curl_CURLFile_class, cf, "mime", sizeof("mime")-1, mime TSRMLS_CC);
- }
- if (postname) {
- zend_update_property_string(curl_CURLFile_class, cf, "postname", sizeof("postname")-1, postname TSRMLS_CC);
- }
- }
- /* {{{ proto void CURLFile::__construct(string $name, [string $mimetype [, string $postfilename]])
- Create the CURLFile object */
- ZEND_METHOD(CURLFile, __construct)
- {
- return_value = getThis();
- curlfile_ctor(INTERNAL_FUNCTION_PARAM_PASSTHRU);
- }
- /* }}} */
- /* {{{ proto CURLFile curl_file_create(string $name, [string $mimetype [, string $postfilename]])
- Create the CURLFile object */
- PHP_FUNCTION(curl_file_create)
- {
- object_init_ex( return_value, curl_CURLFile_class );
- curlfile_ctor(INTERNAL_FUNCTION_PARAM_PASSTHRU);
- }
- /* }}} */
- static void curlfile_get_property(char *name, INTERNAL_FUNCTION_PARAMETERS)
- {
- zval *res;
- if (zend_parse_parameters_none() == FAILURE) {
- return;
- }
- res = zend_read_property(curl_CURLFile_class, getThis(), name, strlen(name), 1 TSRMLS_CC);
- *return_value = *res;
- zval_copy_ctor(return_value);
- INIT_PZVAL(return_value);
- }
- static void curlfile_set_property(char *name, INTERNAL_FUNCTION_PARAMETERS)
- {
- char *arg = NULL;
- int arg_len;
- if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &arg, &arg_len) == FAILURE) {
- return;
- }
- zend_update_property_string(curl_CURLFile_class, getThis(), name, strlen(name), arg TSRMLS_CC);
- }
- /* {{{ proto string CURLFile::getFilename()
- Get file name */
- ZEND_METHOD(CURLFile, getFilename)
- {
- curlfile_get_property("name", INTERNAL_FUNCTION_PARAM_PASSTHRU);
- }
- /* }}} */
- /* {{{ proto string CURLFile::getMimeType()
- Get MIME type */
- ZEND_METHOD(CURLFile, getMimeType)
- {
- curlfile_get_property("mime", INTERNAL_FUNCTION_PARAM_PASSTHRU);
- }
- /* }}} */
- /* {{{ proto string CURLFile::getPostFilename()
- Get file name for POST */
- ZEND_METHOD(CURLFile, getPostFilename)
- {
- curlfile_get_property("postname", INTERNAL_FUNCTION_PARAM_PASSTHRU);
- }
- /* }}} */
- /* {{{ proto void CURLFile::setMimeType(string $mime)
- Set MIME type */
- ZEND_METHOD(CURLFile, setMimeType)
- {
- curlfile_set_property("mime", INTERNAL_FUNCTION_PARAM_PASSTHRU);
- }
- /* }}} */
- /* {{{ proto void CURLFile::setPostFilename(string $name)
- Set file name for POST */
- ZEND_METHOD(CURLFile, setPostFilename)
- {
- curlfile_set_property("postname", INTERNAL_FUNCTION_PARAM_PASSTHRU);
- }
- /* }}} */
- /* {{{ proto void CURLFile::__wakeup()
- Unserialization handler */
- ZEND_METHOD(CURLFile, __wakeup)
- {
- zval *_this = getThis();
- zend_unset_property(curl_CURLFile_class, _this, "name", sizeof("name")-1 TSRMLS_CC);
- zend_update_property_string(curl_CURLFile_class, _this, "name", sizeof("name")-1, "" TSRMLS_CC);
- zend_throw_exception(NULL, "Unserialization of CURLFile instances is not allowed", 0 TSRMLS_CC);
- }
- /* }}} */
- ZEND_BEGIN_ARG_INFO_EX(arginfo_curlfile_create, 0, 0, 1)
- ZEND_ARG_INFO(0, filename)
- ZEND_ARG_INFO(0, mimetype)
- ZEND_ARG_INFO(0, postname)
- ZEND_END_ARG_INFO()
- ZEND_BEGIN_ARG_INFO(arginfo_curlfile_name, 0)
- ZEND_ARG_INFO(0, name)
- ZEND_END_ARG_INFO()
- static const zend_function_entry curlfile_funcs[] = {
- PHP_ME(CURLFile, __construct, arginfo_curlfile_create, ZEND_ACC_CTOR|ZEND_ACC_PUBLIC)
- PHP_ME(CURLFile, getFilename, NULL, ZEND_ACC_PUBLIC)
- PHP_ME(CURLFile, getMimeType, NULL, ZEND_ACC_PUBLIC)
- PHP_ME(CURLFile, setMimeType, arginfo_curlfile_name, ZEND_ACC_PUBLIC)
- PHP_ME(CURLFile, getPostFilename, NULL, ZEND_ACC_PUBLIC)
- PHP_ME(CURLFile, setPostFilename, arginfo_curlfile_name, ZEND_ACC_PUBLIC)
- PHP_ME(CURLFile, __wakeup, NULL, ZEND_ACC_PUBLIC)
- PHP_FE_END
- };
- void curlfile_register_class(TSRMLS_D)
- {
- zend_class_entry ce;
- INIT_CLASS_ENTRY( ce, "CURLFile", curlfile_funcs );
- curl_CURLFile_class = zend_register_internal_class(&ce TSRMLS_CC);
- zend_declare_property_string(curl_CURLFile_class, "name", sizeof("name")-1, "", ZEND_ACC_PUBLIC TSRMLS_CC);
- zend_declare_property_string(curl_CURLFile_class, "mime", sizeof("mime")-1, "", ZEND_ACC_PUBLIC TSRMLS_CC);
- zend_declare_property_string(curl_CURLFile_class, "postname", sizeof("postname")-1, "", ZEND_ACC_PUBLIC TSRMLS_CC);
- }
- #endif
|