From 046146e6309f55e9fcad159e9e36becf772ac6ee Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Fri, 18 Nov 2016 06:59:38 +0100 Subject: php-pecl-request: 1.0.0a1 - New package --- Makefile | 4 + REFLECTION | 337 ++++++++++++++++++++++++++++++++++++++++++++++++++ php-pecl-request.spec | 232 ++++++++++++++++++++++++++++++++++ 3 files changed, 573 insertions(+) create mode 100644 Makefile create mode 100644 REFLECTION create mode 100644 php-pecl-request.spec diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..13af741 --- /dev/null +++ b/Makefile @@ -0,0 +1,4 @@ +SRCDIR := $(shell pwd) +NAME := $(shell basename $(SRCDIR)) +include ../../../common/Makefile + diff --git a/REFLECTION b/REFLECTION new file mode 100644 index 0000000..d6d025e --- /dev/null +++ b/REFLECTION @@ -0,0 +1,337 @@ +Extension [ extension #113 request version 1.0.0a1 ] { + + - Dependencies { + Dependency [ spl (Required) ] + Dependency [ date (Required) ] + Dependency [ json (Optional) ] + } + + - Classes [2] { + Class [ class ServerRequest ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [3] { + Method [ static public method parseAccept ] { + + - Parameters [1] { + Parameter #0 [ string $header ] + } + - Return [ array or NULL ] + } + + Method [ static public method parseContentType ] { + + - Parameters [1] { + Parameter #0 [ string $header ] + } + - Return [ array or NULL ] + } + + Method [ static public method parseDigestAuth ] { + + - Parameters [1] { + Parameter #0 [ string $header ] + } + - Return [ array or NULL ] + } + } + + - Properties [27] { + Property [ private $_initialized ] + Property [ public $accept ] + Property [ public $acceptCharset ] + Property [ public $acceptEncoding ] + Property [ public $acceptLanguage ] + Property [ public $authDigest ] + Property [ public $authPw ] + Property [ public $authType ] + Property [ public $authUser ] + Property [ public $content ] + Property [ public $contentCharset ] + Property [ public $contentLength ] + Property [ public $contentMd5 ] + Property [ public $contentType ] + Property [ public $cookie ] + Property [ public $env ] + Property [ public $files ] + Property [ public $get ] + Property [ public $headers ] + Property [ public $input ] + Property [ public $method ] + Property [ public $params ] + Property [ public $post ] + Property [ public $server ] + Property [ public $uploads ] + Property [ public $url ] + Property [ public $xhr ] + } + + - Methods [7] { + Method [ public method __construct ] { + + - Parameters [1] { + Parameter #0 [ array or NULL $globals ] + } + } + + Method [ final public method withInput ] { + + - Parameters [1] { + Parameter #0 [ $input ] + } + - Return [ ServerRequest ] + } + + Method [ final public method withParam ] { + + - Parameters [2] { + Parameter #0 [ string $key ] + Parameter #1 [ $val ] + } + - Return [ ServerRequest ] + } + + Method [ final public method withParams ] { + + - Parameters [1] { + Parameter #0 [ array $params ] + } + - Return [ ServerRequest ] + } + + Method [ final public method withoutParam ] { + + - Parameters [1] { + Parameter #0 [ string $key ] + } + - Return [ ServerRequest ] + } + + Method [ final public method withoutParams ] { + + - Parameters [1] { + Parameter #0 [ array or NULL $keys ] + } + - Return [ ServerRequest ] + } + + Method [ final public method withUrl ] { + + - Parameters [1] { + Parameter #0 [ array $url ] + } + - Return [ ServerRequest ] + } + } + } + + Class [ class ServerResponse ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [5] { + Property [ protected $version ] + Property [ protected $status ] + Property [ protected $headers ] + Property [ protected $cookies ] + Property [ protected $content ] + } + + - Methods [22] { + Method [ public method __construct ] { + + - Parameters [0] { + } + } + + Method [ public method getVersion ] { + + - Parameters [0] { + } + - Return [ string ] + } + + Method [ public method setVersion ] { + + - Parameters [1] { + Parameter #0 [ string $version ] + } + - Return [ null ] + } + + Method [ public method getStatus ] { + + - Parameters [0] { + } + - Return [ integer ] + } + + Method [ public method setStatus ] { + + - Parameters [1] { + Parameter #0 [ integer $status ] + } + - Return [ null ] + } + + Method [ public method getHeader ] { + + - Parameters [0] { + } + - Return [ string or NULL ] + } + + Method [ public method getHeaders ] { + + - Parameters [0] { + } + - Return [ array ] + } + + Method [ public method setHeader ] { + + - Parameters [2] { + Parameter #0 [ string $label ] + Parameter #1 [ $value ] + } + - Return [ null ] + } + + Method [ public method addHeader ] { + + - Parameters [2] { + Parameter #0 [ string $label ] + Parameter #1 [ $value ] + } + - Return [ null ] + } + + Method [ public method getCookies ] { + + - Parameters [0] { + } + - Return [ array ] + } + + Method [ public method setCookie ] { + + - Parameters [7] { + Parameter #0 [ $name ] + Parameter #1 [ string $value ] + Parameter #2 [ integer $expires ] + Parameter #3 [ string $path ] + Parameter #4 [ string $domain ] + Parameter #5 [ $secure ] + Parameter #6 [ $httponly ] + } + - Return [ null ] + } + + Method [ public method setRawCookie ] { + + - Parameters [7] { + Parameter #0 [ $name ] + Parameter #1 [ string $value ] + Parameter #2 [ integer $expires ] + Parameter #3 [ string $path ] + Parameter #4 [ string $domain ] + Parameter #5 [ $secure ] + Parameter #6 [ $httponly ] + } + - Return [ null ] + } + + Method [ public method getContent ] { + + - Parameters [0] { + } + } + + Method [ public method setContent ] { + + - Parameters [1] { + Parameter #0 [ $content ] + } + - Return [ null ] + } + + Method [ public method setContentJson ] { + + - Parameters [3] { + Parameter #0 [ $content ] + Parameter #1 [ integer $options ] + Parameter #2 [ integer $depth ] + } + - Return [ null ] + } + + Method [ public method setContentDownload ] { + + - Parameters [4] { + Parameter #0 [ resource $fh ] + Parameter #1 [ string $name ] + Parameter #2 [ string $disposition ] + Parameter #3 [ array $params ] + } + - Return [ null ] + } + + Method [ public method date ] { + + - Parameters [1] { + Parameter #0 [ $date ] + } + - Return [ string ] + } + + Method [ public method send ] { + + - Parameters [0] { + } + - Return [ null ] + } + + Method [ protected method sendStatus ] { + + - Parameters [0] { + } + - Return [ null ] + } + + Method [ protected method sendHeaders ] { + + - Parameters [0] { + } + - Return [ null ] + } + + Method [ protected method sendCookies ] { + + - Parameters [0] { + } + - Return [ null ] + } + + Method [ protected method sendContent ] { + + - Parameters [0] { + } + - Return [ null ] + } + } + } + } +} + diff --git a/php-pecl-request.spec b/php-pecl-request.spec new file mode 100644 index 0000000..5680b7e --- /dev/null +++ b/php-pecl-request.spec @@ -0,0 +1,232 @@ +# remirepo spec file for php-pecl-request +# +# Copyright (c) 2016 Remi Collet +# License: CC-BY-SA +# http://creativecommons.org/licenses/by-sa/4.0/ +# +# Please, preserve the changelog entries +# +%if 0%{?scl:1} +%global sub_prefix %{scl_prefix} +%scl_package php-pecl-request +%endif + +%global pecl_name request +%global with_zts 0%{!?_without_zts:%{?__ztsphp:1}} +%global ini_name 40-%{pecl_name}.ini +%global prever a1 + +Summary: Server-side request and response objects +Name: %{?sub_prefix}php-pecl-%{pecl_name} +Version: 1.0.0 +Release: 0.1.%{prever}%{?dist}%{!?nophptag:%(%{__php} -r 'echo ".".PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION;')} +License: PHP +Group: Development/Languages +URL: http://pecl.php.net/package/%{pecl_name} +Source0: http://pecl.php.net/get/%{pecl_name}-%{version}%{?prever}.tgz + +BuildRequires: %{?scl_prefix}php-devel > 7 +BuildRequires: %{?scl_prefix}php-pear + +Requires: %{?scl_prefix}php(zend-abi) = %{php_zend_api} +Requires: %{?scl_prefix}php(api) = %{php_core_api} +Requires: %{?scl_prefix}php-spl%{?_isa} +Requires: %{?scl_prefix}php-date%{?_isa} +%if 0%{?fedora} > 21 +Recommends: %{?scl_prefix}php-json%{?_isa} +%else +Requires: %{?scl_prefix}php-json%{?_isa} +%endif +%{?_sclreq:Requires: %{?scl_prefix}runtime%{?_sclreq}%{?_isa}} + +Provides: %{?scl_prefix}php-%{pecl_name} = %{version} +Provides: %{?scl_prefix}php-%{pecl_name}%{?_isa} = %{version} +Provides: %{?scl_prefix}php-pecl(%{pecl_name}) = %{version} +Provides: %{?scl_prefix}php-pecl(%{pecl_name})%{?_isa} = %{version} +%if "%{?scl_prefix}" != "%{?sub_prefix}" +Provides: %{?scl_prefix}php-pecl-%{pecl_name} = %{version}-%{release} +Provides: %{?scl_prefix}php-pecl-%{pecl_name}%{?_isa} = %{version}-%{release} +%endif + +%if "%{?vendor}" == "Remi Collet" && 0%{!?scl:1} +# Other third party repo stuff +Obsoletes: php70u-pecl-%{pecl_name} <= %{version} +Obsoletes: php70w-pecl-%{pecl_name} <= %{version} +%if "%{php_version}" > "7.1" +Obsoletes: php71u-pecl-%{pecl_name} <= %{version} +Obsoletes: php71w-pecl-%{pecl_name} <= %{version} +%endif +%endif + +%if 0%{?fedora} < 20 && 0%{?rhel} < 7 +# Filter private shared object +%{?filter_provides_in: %filter_provides_in %{_libdir}/.*\.so$} +%{?filter_setup} +%endif + + +%description +This extension provides server-side request and response objects for PHP. +These are *not* HTTP message objects proper. They are more like wrappers +for existing global PHP variables and functions, with some limited +additional convenience functionality. + +This extension defines two classes in the global namespace: + +- ServerRequest, composed of read-only copies of PHP superglobals and some + other commonly-used values, with methods for adding application-specific + request information in immutable fashion. + +- ServerResponse, essentially a wrapper around (and buffer for) response- + related PHP functions, with some additional convenience methods, and self- + sending capability. + +Documentation: https://gitlab.com/pmjones/phprequest + +Package built for PHP %(%{__php} -r 'echo PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION;')%{?scl: as Software Collection (%{scl} by %{?scl_vendor}%{!?scl_vendor:rh})}. + + +%prep +%setup -q -c +mv %{pecl_name}-%{version}%{?prever} NTS + +# Don't register test files on install +sed -e 's/role="test"/role="src"/' \ + %{?_licensedir:-e '/LICENSE/s/role="doc"/role="src"/' } \ + -i package.xml + +cd NTS +# Sanity check, really often broken +extver=$(sed -n '/define PHP_REQUEST_VERSION/{s/.* "//;s/".*$//;p}' php_request.h) +if test "x${extver}" != "x%{version}%{?prever}"; then + : Error: Upstream extension version is ${extver}, expecting %{version}%{?prever}. + exit 1 +fi +cd .. + +%if %{with_zts} +# Duplicate source tree for NTS / ZTS build +cp -pr NTS ZTS +%endif + +# Create configuration file +cat > %{ini_name} << 'EOF' +; Enable %{pecl_name} extension module +extension=%{pecl_name}.so +EOF + + +%build +cd NTS +%{_bindir}/phpize +%configure \ + --enable-request \ + --with-libdir=%{_lib} \ + --with-php-config=%{_bindir}/php-config + +make %{?_smp_mflags} + +%if %{with_zts} +cd ../ZTS +%{_bindir}/zts-phpize +%configure \ + --enable-request \ + --with-libdir=%{_lib} \ + --with-php-config=%{_bindir}/zts-php-config + +make %{?_smp_mflags} +%endif + + +%install +make -C NTS install INSTALL_ROOT=%{buildroot} + +# install config file +install -D -m 644 %{ini_name} %{buildroot}%{php_inidir}/%{ini_name} + +# Install XML package description +install -D -m 644 package.xml %{buildroot}%{pecl_xmldir}/%{name}.xml + +%if %{with_zts} +make -C ZTS install INSTALL_ROOT=%{buildroot} + +install -D -m 644 %{ini_name} %{buildroot}%{php_ztsinidir}/%{ini_name} +%endif + +# Test & Documentation +cd NTS +for i in $(grep 'role="doc"' ../package.xml | sed -e 's/^.*name="//;s/".*$//') +do install -Dpm 644 $i %{buildroot}%{pecl_docdir}/%{pecl_name}/$i +done + + +%if 0%{?fedora} < 24 +# when pear installed alone, after us +%triggerin -- %{?scl_prefix}php-pear +if [ -x %{__pecl} ] ; then + %{pecl_install} %{pecl_xmldir}/%{name}.xml >/dev/null || : +fi + +# posttrans as pear can be installed after us +%posttrans +if [ -x %{__pecl} ] ; then + %{pecl_install} %{pecl_xmldir}/%{name}.xml >/dev/null || : +fi + +%postun +if [ $1 -eq 0 -a -x %{__pecl} ] ; then + %{pecl_uninstall} %{pecl_name} >/dev/null || : +fi +%endif + + +%check +: Minimal load test for NTS extension +cd NTS +%{_bindir}/php --no-php-ini \ + --define extension=%{buildroot}%{php_extdir}/%{pecl_name}.so \ + --modules | grep %{pecl_name} + +: Upstream test suite for NTS extension +TEST_PHP_EXECUTABLE=%{_bindir}/php \ +TEST_PHP_ARGS="-n $DEPMOD -d extension=%{buildroot}%{php_extdir}/%{pecl_name}.so" \ +NO_INTERACTION=1 \ +REPORT_EXIT_STATUS=1 \ +%{_bindir}/php -n run-tests.php --show-diff + + +%if %{with_zts} +: Minimal load test for ZTS extension +cd ../ZTS + +%{__ztsphp} --no-php-ini \ + --define extension=%{buildroot}%{php_ztsextdir}/%{pecl_name}.so \ + --modules | grep %{pecl_name} + +: Upstream test suite for ZTS extension +TEST_PHP_EXECUTABLE=%{__ztsphp} \ +TEST_PHP_ARGS="-n $DEPMOD -d extension=%{buildroot}%{php_ztsextdir}/%{pecl_name}.so" \ +NO_INTERACTION=1 \ +REPORT_EXIT_STATUS=1 \ +%{__ztsphp} -n run-tests.php --show-diff +%endif + + +%files +%{?_licensedir:%license NTS/LICENSE.md} +%doc %{pecl_docdir}/%{pecl_name} +%{pecl_xmldir}/%{name}.xml + +%config(noreplace) %{php_inidir}/%{ini_name} +%{php_extdir}/%{pecl_name}.so + +%if %{with_zts} +%config(noreplace) %{php_ztsinidir}/%{ini_name} +%{php_ztsextdir}/%{pecl_name}.so +%endif + + +%changelog +* Fri Nov 18 2016 Remi Collet - 1.0.0-0.1.a1 +- initial package, version 1.0.0a1 (alpha) + -- cgit