Skip to content
This repository was archived by the owner on Aug 19, 2022. It is now read-only.

Commit 4f88406

Browse files
committedMar 18, 2017
The repository was updated to version 1.1.1
1 parent e33b991 commit 4f88406

9 files changed

+603
-0
lines changed
 

‎.editorconfig

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
indent_size = 4
6+
indent_style = space
7+
end_of_line = lf
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true
10+
11+
[*.md]
12+
trim_trailing_whitespace = false

‎.gitignore

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
phpunit.xml
2+
composer.phar
3+
composer.lock
4+
composer-test.lock
5+
vendor/
6+
build/artifacts/
7+
artifacts/
8+
docs/_build
9+
docs/*.pyc
10+
.git*/
11+
.idea
12+
.DS_STORE

‎CHANGELOG.md

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
# CHANGELOG
2+
3+
## 1.1.1 - 2017-03-18
4+
* Some files were excluded from download and comments and readme files were updated.
5+
6+
## 1.1.0 - 2017-01-30
7+
* Compatible with PHP 5.6 or higher.
8+
9+
## 1.0.0 - 2017-01-30
10+
* Compatible only with PHP 7.0 or higher. In the next versions, the library will be modified to make it compatible with PHP 5.6 or higher.
11+
12+
## 1.0.0 - 2017-01-17
13+
* Added `Josantonius\Request\Request` class.
14+
* Added `Josantonius\Request\Request::get()` method.
15+
* Added `Josantonius\Request\Request::post()` method.
16+
* Added `Josantonius\Request\Request::files()` method.
17+
* Added `Josantonius\Request\Request::put()` method.
18+
* Added `Josantonius\Request\Request::del()` method.
19+
* Added `Josantonius\Request\Request::isGet()` method.
20+
* Added `Josantonius\Request\Request::isPost()` method.
21+
* Added `Josantonius\Request\Request::isPut()` method.
22+
* Added `Josantonius\Request\Request::isDelete()` method.
23+
* Added `Josantonius\Request\Request::isAjax()` method.
24+
25+
## 1.0.0 - 2017-01-17
26+
* Added `Josantonius\Request\Exception\RequestException` class.
27+
* Added `Josantonius\Request\Exception\Exceptions` abstract class.
28+
* Added `Josantonius\Request\Exception\RequestException->__construct()` method.
29+
30+
## 1.0.0 - 2017-01-17
31+
* Added `Josantonius\Request\Tests\RequestTest` class.
32+
* Added `Josantonius\Request\Tests\RequestTest::testGet()` method.
33+
* Added `Josantonius\Request\Tests\RequestTest::testGetSpecificKey()` method.
34+
* Added `Josantonius\Request\Tests\RequestTest::testPost()` method.
35+
* Added `Josantonius\Request\Tests\RequestTest::testPostSpecificKey()` method.
36+
* Added `Josantonius\Request\Tests\RequestTest::testFiles()` method.
37+
* Added `Josantonius\Request\Tests\RequestTest::testFilesSpecificKey()` method.
38+
* Added `Josantonius\Request\Tests\RequestTest::testPut()` method.
39+
* Added `Josantonius\Request\Tests\RequestTest::testPutSpecificKey()` method.
40+
* Added `Josantonius\Request\Tests\RequestTest::testDel()` method.
41+
* Added `Josantonius\Request\Tests\RequestTest::testDelSpecificKey()` method.
42+
* Added `Josantonius\Request\Tests\RequestTest::testIsGet()` method.
43+
* Added `Josantonius\Request\Tests\RequestTest::testIsPost()` method.
44+
* Added `Josantonius\Request\Tests\RequestTest::testIsPut()` method.
45+
* Added `Josantonius\Request\Tests\RequestTest::testIsDelete()` method.
46+
* Added `Josantonius\Request\Tests\RequestTest::testIsAjax()` method.

‎CONDUCT.md

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Contributor Code of Conduct
2+
3+
As contributors and maintainers of this project, and in the interest of fostering an open and welcoming community, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.
4+
5+
We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, ethnicity, age, religion, or nationality.
6+
7+
Examples of unacceptable behavior by participants include:
8+
9+
* The use of sexualized language or imagery
10+
* Personal attacks
11+
* Trolling or insulting/derogatory comments
12+
* Public or private harassment
13+
* Publishing other's private information, such as physical or electronic addresses, without explicit permission
14+
* Other unethical or unprofessional conduct.
15+
16+
Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. By adopting this Code of Conduct, project maintainers commit themselves to fairly and consistently applying these principles to every aspect of managing this project. Project maintainers who do not follow or enforce the Code of Conduct may be permanently removed from the project team.
17+
18+
This code of conduct applies both within project spaces and in public spaces when an individual is representing the project or its community in a direct capacity. Personal views, beliefs and values of individuals do not necessarily reflect those of the organisation or affiliated individuals and organisations.
19+
20+
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.
21+
22+
This Code of Conduct is adapted from the [Contributor Covenant](http://contributor-covenant.org), version 1.2.0, available at [http://contributor-covenant.org/version/1/2/0/](http://contributor-covenant.org/version/1/2/0/)

‎README-ES.md

+144
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,144 @@
1+
# PHP Request library
2+
3+
[![Latest Stable Version](https://poser.pugx.org/josantonius/request/v/stable)](https://packagist.org/packages/josantonius/request) [![Total Downloads](https://poser.pugx.org/josantonius/request/downloads)](https://packagist.org/packages/josantonius/request) [![Latest Unstable Version](https://poser.pugx.org/josantonius/request/v/unstable)](https://packagist.org/packages/josantonius/request) [![License](https://poser.pugx.org/josantonius/request/license)](https://packagist.org/packages/josantonius/request)
4+
5+
[Spanish version](README-ES.md)
6+
7+
Librería PHP para manejo de peticiones.
8+
9+
---
10+
11+
- [Instalación](#instalación)
12+
- [Requisitos](#requisitos)
13+
- [Cómo empezar y ejemplos](#cómo-empezar-y-ejemplos)
14+
- [Métodos disponibles](#métodos-disponibles)
15+
- [Uso](#uso)
16+
- [Tests](#tests)
17+
- [Manejador de excepciones](#manejador-de-excepciones)
18+
- [Contribuir](#contribuir)
19+
- [Repositorio](#repositorio)
20+
- [Licencia](#licencia)
21+
- [Copyright](#copyright)
22+
23+
---
24+
25+
### Instalación
26+
27+
La mejor forma de instalar esta extensión es a través de [composer](http://getcomposer.org/download/).
28+
29+
Para instalar PHP Request library, simplemente escribe:
30+
31+
$ composer require Josantonius/Request
32+
33+
El comando anterior solamente instalará los archivos necesarios, si prefieres descargar todo el código, incluyendo tests, puedes utilizar:
34+
35+
$ composer require Josantonius/Request --prefer-source
36+
37+
También puedes clonar el repositorio completo con Git:
38+
39+
$ git clone https://github.com/Josantonius/PHP-Request.git
40+
41+
### Requisitos
42+
43+
Esta ĺibrería es soportada por versiones de PHP 5.6 o superiores y es compatible con versiones de HHVM 3.0 o superiores.
44+
45+
### Cómo empezar y ejemplos
46+
47+
Para utilizar esta librería, simplemente:
48+
49+
```php
50+
require __DIR__ . '/vendor/autoload.php';
51+
52+
use Josantonius\Request\Request;
53+
```
54+
### Métodos disponibles
55+
56+
Métodos disponibles en esta librería:
57+
58+
```php
59+
Request::get();
60+
Request::post();
61+
Request::files();
62+
Request::put();
63+
Request::del();
64+
Request::isGet();
65+
Request::isPost();
66+
Request::isPut();
67+
Request::isDelete();
68+
Request::isAjax();
69+
```
70+
### Uso
71+
72+
Ejemplo de uso para esta librería:
73+
74+
```php
75+
<?php
76+
require __DIR__ . '/vendor/autoload.php';
77+
78+
use Josantonius\Request\Request;
79+
80+
if (Request::isPost()) {
81+
82+
$name = Request::post('name');
83+
}
84+
```
85+
86+
### Tests
87+
88+
Para utilizar la clase de [pruebas](tests), simplemente:
89+
90+
```php
91+
<?php
92+
$loader = require __DIR__ . '/vendor/autoload.php';
93+
94+
$loader->addPsr4('Josantonius\\Request\\Tests\\', __DIR__ . '/vendor/josantonius/request/tests');
95+
96+
use Josantonius\Request\Tests\RequestTest;
97+
```
98+
Métodos de prueba disponibles en esta librería:
99+
100+
```php
101+
RequestTest::testGet();
102+
RequestTest::testGetSpecificKey();
103+
RequestTest::testPost();
104+
RequestTest::testPostSpecificKey();
105+
RequestTest::testFiles();
106+
RequestTest::testFilesSpecificKey();
107+
RequestTest::testPut();
108+
RequestTest::testPutSpecificKey();
109+
RequestTest::testDel();
110+
RequestTest::testDelSpecificKey();
111+
RequestTest::testIsGet();
112+
RequestTest::testIsPost();
113+
RequestTest::testIsPut();
114+
RequestTest::testIsDelete();
115+
RequestTest::testIsAjax();
116+
```
117+
118+
### Manejador de excepciones
119+
120+
Esta librería utiliza [control de excepciones](src/Exception) que puedes personalizar a tu gusto.
121+
### Contribuir
122+
1. Comprobar si hay incidencias abiertas o abrir una nueva para iniciar una discusión en torno a un fallo o función.
123+
1. Bifurca la rama del repositorio en GitHub para iniciar la operación de ajuste.
124+
1. Escribe una o más pruebas para la nueva característica o expón el error.
125+
1. Haz cambios en el código para implementar la característica o reparar el fallo.
126+
1. Envía pull request para fusionar los cambios y que sean publicados.
127+
128+
Esto está pensado para proyectos grandes y de larga duración.
129+
130+
### Repositorio
131+
132+
Los archivos de este repositorio se crearon y subieron automáticamente con [Reposgit Creator](https://github.com/Josantonius/BASH-Reposgit).
133+
134+
### Licencia
135+
136+
Este proyecto está licenciado bajo **licencia MIT**. Consulta el archivo [LICENSE](LICENSE) para más información.
137+
138+
### Copyright
139+
140+
2017 Josantonius, [josantonius.com](https://josantonius.com/)
141+
142+
Si te ha resultado útil, házmelo saber :wink:
143+
144+
Puedes contactarme en [Twitter](https://twitter.com/Josantonius) o a través de mi [correo electrónico](mailto:hello@josantonius.com).

‎README.md

+145
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,145 @@
1+
# PHP Request library
2+
3+
[![Latest Stable Version](https://poser.pugx.org/josantonius/request/v/stable)](https://packagist.org/packages/josantonius/request) [![Total Downloads](https://poser.pugx.org/josantonius/request/downloads)](https://packagist.org/packages/josantonius/request) [![Latest Unstable Version](https://poser.pugx.org/josantonius/request/v/unstable)](https://packagist.org/packages/josantonius/request) [![License](https://poser.pugx.org/josantonius/request/license)](https://packagist.org/packages/josantonius/request)
4+
5+
[Spanish version](README-ES.md)
6+
7+
PHP library for handling requests.
8+
9+
---
10+
11+
- [Installation](#installation)
12+
- [Requirements](#requirements)
13+
- [Quick Start and Examples](#quick-start-and-examples)
14+
- [Available Methods](#available-methods)
15+
- [Usage](#usage)
16+
- [Tests](#tests)
17+
- [Exception Handler](#exception-handler)
18+
- [Contribute](#contribute)
19+
- [Repository](#repository)
20+
- [Licensing](#licensing)
21+
- [Copyright](#copyright)
22+
23+
---
24+
25+
### Installation
26+
27+
The preferred way to install this extension is through [composer](http://getcomposer.org/download/).
28+
29+
To install PHP Request library, simply:
30+
31+
$ composer require Josantonius/Request
32+
33+
The previous command will only install the necessary files, if you prefer to download the entire source, including tests, you can use:
34+
35+
$ composer require Josantonius/Request --prefer-source
36+
37+
Or you can also clone the complete repository with Git:
38+
39+
$ git clone https://github.com/Josantonius/PHP-Request.git
40+
41+
### Requirements
42+
43+
This library is supported by PHP versions 5.6 or higher and is compatible with HHVM versions 3.0 or higher.
44+
45+
### Quick Start and Examples
46+
47+
To use this class, simply:
48+
49+
```php
50+
require __DIR__ . '/vendor/autoload.php';
51+
52+
use Josantonius\Request\Request;
53+
```
54+
### Available Methods
55+
56+
Available methods in this library:
57+
58+
```php
59+
Request::get();
60+
Request::post();
61+
Request::files();
62+
Request::put();
63+
Request::del();
64+
Request::isGet();
65+
Request::isPost();
66+
Request::isPut();
67+
Request::isDelete();
68+
Request::isAjax();
69+
```
70+
### Usage
71+
72+
Example of use for this library:
73+
74+
```php
75+
<?php
76+
require __DIR__ . '/vendor/autoload.php';
77+
78+
use Josantonius\Request\Request;
79+
80+
if (Request::isPost()) {
81+
82+
$name = Request::post('name');
83+
}
84+
```
85+
86+
### Tests
87+
88+
To use the [test](tests) class, simply:
89+
90+
```php
91+
<?php
92+
$loader = require __DIR__ . '/vendor/autoload.php';
93+
94+
$loader->addPsr4('Josantonius\\Request\\Tests\\', __DIR__ . '/vendor/josantonius/request/tests');
95+
96+
use Josantonius\Request\Tests\RequestTest;
97+
98+
```
99+
Available test methods in this library:
100+
101+
```php
102+
RequestTest::testGet();
103+
RequestTest::testGetSpecificKey();
104+
RequestTest::testPost();
105+
RequestTest::testPostSpecificKey();
106+
RequestTest::testFiles();
107+
RequestTest::testFilesSpecificKey();
108+
RequestTest::testPut();
109+
RequestTest::testPutSpecificKey();
110+
RequestTest::testDel();
111+
RequestTest::testDelSpecificKey();
112+
RequestTest::testIsGet();
113+
RequestTest::testIsPost();
114+
RequestTest::testIsPut();
115+
RequestTest::testIsDelete();
116+
RequestTest::testIsAjax();
117+
```
118+
119+
### Exception Handler
120+
121+
This library uses [exception handler](src/Exception) that you can customize.
122+
### Contribute
123+
1. Check for open issues or open a new issue to start a discussion around a bug or feature.
124+
1. Fork the repository on GitHub to start making your changes.
125+
1. Write one or more tests for the new feature or that expose the bug.
126+
1. Make code changes to implement the feature or fix the bug.
127+
1. Send a pull request to get your changes merged and published.
128+
129+
This is intended for large and long-lived objects.
130+
131+
### Repository
132+
133+
All files in this repository were created and uploaded automatically with [Reposgit Creator](https://github.com/Josantonius/BASH-Reposgit).
134+
135+
### Licensing
136+
137+
This project is licensed under **MIT license**. See the [LICENSE](LICENSE) file for more info.
138+
139+
### Copyright
140+
141+
2017 Josantonius, [josantonius.com](https://josantonius.com/)
142+
143+
If you find it useful, let me know :wink:
144+
145+
You can contact me on [Twitter](https://twitter.com/Josantonius) or through my [email](mailto:hello@josantonius.com).

‎contributors.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Josantonius

‎src/Exception/RequestException.php

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
<?php
2+
/**
3+
* PHP library for handling requests.
4+
*
5+
* @author Josantonius - hello@josantonius.com
6+
* @copyright Copyright (c) 2017
7+
* @license https://opensource.org/licenses/MIT - The MIT License (MIT)
8+
* @link https://github.com/Josantonius/PHP-Request
9+
* @since 1.0.0
10+
*/
11+
12+
namespace Josantonius\Request\Exception;
13+
14+
/**
15+
* Exception class for Request library.
16+
*
17+
* You can use an exception and error handler with this library.
18+
*
19+
* @since 1.0.0
20+
*
21+
* @link https://github.com/Josantonius/PHP-ErrorHandler
22+
*/
23+
class RequestException extends \Exception {
24+
25+
/**
26+
* Exception handler.
27+
*
28+
* @since 1.0.0
29+
*
30+
* @param string $msg → message error (Optional)
31+
* @param int $error → error code (Optional)
32+
* @param int $status → HTTP response status code (Optional)
33+
*/
34+
public function __construct($msg = '', $error = 0, $status = 0) {
35+
36+
$this->message = $msg;
37+
$this->code = $error;
38+
$this->statusCode = $status;
39+
}
40+
}

‎tests/RequestTest.php

+181
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,181 @@
1+
<?php
2+
/**
3+
* PHP library for handling requests.
4+
*
5+
* @author Josantonius - hello@josantonius.com
6+
* @copyright Copyright (c) 2017
7+
* @license https://opensource.org/licenses/MIT - The MIT License (MIT)
8+
* @link https://github.com/Josantonius/PHP-Request
9+
* @since 1.0.0
10+
*/
11+
12+
namespace Josantonius\Request\Tests;
13+
14+
use Josantonius\Request\Request;
15+
16+
/**
17+
* Tests class for Request library.
18+
*
19+
* @since 1.0.0
20+
*/
21+
class RequestTest {
22+
23+
/**
24+
* Secure access to GET parameters.
25+
*
26+
* @since 1.0.0
27+
*/
28+
public static function testGet() {
29+
30+
var_dump(Request::get());
31+
}
32+
33+
/**
34+
* Secure access to GET specific key parameters.
35+
*
36+
* @since 1.0.0
37+
*/
38+
public static function testGetSpecificKey() {
39+
40+
var_dump(Request::get('key'));
41+
}
42+
43+
/**
44+
* Secure access to POST parameters.
45+
*
46+
* @since 1.0.0
47+
*/
48+
public static function testPost() {
49+
50+
var_dump(Request::post());
51+
}
52+
53+
/**
54+
* Secure access to POST specific key parameters.
55+
*
56+
* @since 1.0.0
57+
*/
58+
public static function testPostSpecificKey() {
59+
60+
var_dump(Request::post('key'));
61+
}
62+
63+
/**
64+
* Secure access to FILES parameters.
65+
*
66+
* @return mixed
67+
*/
68+
public static function testFiles() {
69+
70+
var_dump(Request::files());
71+
}
72+
73+
/**
74+
* Secure access to FILES specific key parameters.
75+
*
76+
* @return mixed
77+
*/
78+
public static function testFilesSpecificKey() {
79+
80+
var_dump(Request::files('key'));
81+
}
82+
83+
/**
84+
* Secure access to PUT parameters.
85+
*
86+
* @since 1.0.0
87+
*/
88+
public static function testPut() {
89+
90+
var_dump(Request::put());
91+
}
92+
93+
/**
94+
* Secure access to PUT specific key parameters.
95+
*
96+
* @since 1.0.0
97+
*/
98+
public static function testPutSpecificKey() {
99+
100+
var_dump(Request::put('key'));
101+
}
102+
103+
/**
104+
* Secure access to DELETE parameters.
105+
*
106+
* @since 1.0.0
107+
*/
108+
public static function testDel() {
109+
110+
var_dump(Request::del());
111+
}
112+
113+
/**
114+
* Secure access to DELETE specific key parameters.
115+
*
116+
* @since 1.0.0
117+
*/
118+
public static function testDelSpecificKey() {
119+
120+
var_dump(Request::del('key'));
121+
}
122+
123+
/**
124+
* Check if it is a GET request.
125+
*
126+
* @since 1.0.0
127+
*/
128+
public static function testIsGet() {
129+
130+
var_dump(Request::isGet());
131+
}
132+
133+
/**
134+
* Check if it is a POST request.
135+
*
136+
* @since 1.0.0
137+
*
138+
* @return boolean
139+
*/
140+
public static function testIsPost() {
141+
142+
var_dump(Request::isPost());
143+
}
144+
145+
146+
/**
147+
* Check if it is a PUT request.
148+
*
149+
* @since 1.0.0
150+
*
151+
* @return boolean
152+
*/
153+
public static function testIsPut() {
154+
155+
var_dump(Request::isPut());
156+
}
157+
158+
/**
159+
* Check if it is a DELETE request.
160+
*
161+
* @since 1.0.0
162+
*
163+
* @return boolean
164+
*/
165+
public static function testIsDelete() {
166+
167+
var_dump(Request::isDelete());
168+
}
169+
170+
/**
171+
* Check if it is a AJAX request.
172+
*
173+
* @since 1.0.0
174+
*
175+
* @return boolean
176+
*/
177+
public static function testIsAjax() {
178+
179+
var_dump(Request::isAjax());
180+
}
181+
}

0 commit comments

Comments
 (0)
This repository has been archived.