Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/netherphp/input
Input Handling
https://github.com/netherphp/input
Last synced: 12 days ago
JSON representation
Input Handling
- Host: GitHub
- URL: https://github.com/netherphp/input
- Owner: netherphp
- License: bsd-3-clause
- Created: 2015-05-12T20:58:40.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2022-06-21T02:59:55.000Z (over 2 years ago)
- Last Synced: 2024-12-06T03:40:38.131Z (about 1 month ago)
- Language: PHP
- Size: 42 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Nether Input
[![nether.io](https://img.shields.io/badge/nether-input-C661D2.svg)](http://nether.io/) [![Code Climate](https://codeclimate.com/github/netherphp/input/badges/gpa.svg)](https://codeclimate.com/github/netherphp/input) [![Build Status](https://travis-ci.org/netherphp/input.svg)](https://travis-ci.org/netherphp/input) [![Packagist](https://img.shields.io/packagist/v/netherphp/input.svg)](https://packagist.org/packages/netherphp/input) [![Packagist](https://img.shields.io/packagist/dt/netherphp/input.svg)](https://packagist.org/packages/netherphp/input)
An input filtering interface. It allows you to define a set of dynamic filters
for input to be run applied just-in-time on your specified data source.## Super simple example:
$input = (new Nether\Input\Filter)
->Email(function($t){ return filter_var($t,FILTER_VALIDATE_EMAIL); });// ... some time later...
$input->SetDataset($_POST);
if(!$input->Email) {
throw new Exception('valid email address is required.');
}To pull this off, things like your HTML form field names will need to follow the
same rules as properties in PHP (alphanumeric and _ starting with a letter). By
default it is case insensitive, so you can send all lowercase from your URL
if you want and then reference them in whateverCase YouChoose to use. That can
be disabled if you are on a performance powertrip.You can pass any array or object to the constructor or use SetDataset(). Typical
uses would be for _GET and _POST but you could apply it to any named dataset
that needs looked at. You can also change datasets at will, keeping any
predefined filters intact.## Another Simple Example:
Lets say we want to dump our POST data back into our form because there was some
sort of validation error. This is the time where it is very easy to accidentally
open yourself up to cross-site scripting problems. Input Filter can take care of
that for you though by defining a default filter that all fields which do not
have their own special filters for, get run through.$data = (new Nether\Input\Filter($_POST))
->SetDefaultFunction(function($v){ return htmlspecialchars($v) });// ... some time later...
#### Creating a new interface.
Wrap any object or array in the OOP interface.$input = new Nether\Input\Filter($_POST);
#### Retrieve a value.
Fetch the value from $_POST['myfield'], after running it through any filters we
assigned to the field.$val = $input->MyField
#### Set a value.
Note, this will not update the original source array. Writing back to the
dataset will prompt the copy-on-write, so now you have your own unique dataset
and in this example, will not affect the original $_POST['myfield'].$input->MyField = 'ten';
#### Set a filter.
You call the field as a method, passing it a callable function with one argument
which is the value.$input->MyField(function($t){
return str_repalce('a','@',$t);
});#### Retrieve a filter.
You invoke the object directly, passing it a string that was the name of the field
you originally defined the callback on. Here is an example reusing an existing
callback on another field.$input->MyOtherField($input('MyField'));
## Installing
Require this package in your composer.json.require {
"netherphp/input": "~1.0.0"
}Then install it or update into it.
$ composer install --no-dev
$ composer update --no-dev## Testing
This library uses Codeception for testing. Composer will handle it for you. Install or Update into it.$ composer install --dev
$ composer update --devThen run the tests.
$ php vendor/bin/codecept run unit
$ vendor\bin\codecept run unit