Giter VIP home page Giter VIP logo

array-filter's Introduction

Array Filter

A literal port of the excellent Javascript library mmckegg / json-filter to PHP.

Credit to Matt McKegg for creating an incredibly useful, well-tested piece of software.

Match PHP arrays against filters.

Build Status

Installation

$ composer require datashaman/array-filter

Filters

Filters are just arrays that have the keys and values you want your final array to have. e.g. if you wanted to require that the field type was always person your filter would be {type: 'person'}.

If things aren't so black and white, the following conditionals are available:

$present

Specify that the value must not be null or false (i.e. 'truthy').

array(
  'name' => array( '$present' => true )
)

$any

Specify that the value can be anything. Useful when matching all keys.

array(
  'description' => array( '$any' => true )
)

$contains

For matching against an array. The array must contain all of the values specified.

array(
  'tags' => array( '$contains' => array( 'cat', 'animal' ) )
)

$excludes

For matching against an array. The array cannot contain any of the values specified.

array(
  'permissions' => array( '$excludes' => array( 'admin', 'mod' ) )
)

$only

The value can only be one of the ones specified.

array(
  'gender' => array( '$only' => array( 'male', 'female', 'unknown' ) )
)

$not

The value can be anything except one of the ones specified.

array(
  'browser' => array( '$not' => array( 'IE', 'Firefox' ) )
)

$matchAny

Allows a filter to branch into multiple filters when at least one must match.

array(
  '$matchAny' => array(
    array( 'type' => "Post",
      'state' => array( '$only' => array( 'draft', 'published' ) )
    ),
    array( 'type' => "Comment",
      'state' => array( '$only' => array( 'pending', 'approved', 'spam' ) )
    )
  )
)

$query

Specify a query to get the value to match. Uses options.queryHandler.

array(
  'type' => 'item',
  'user_id' => array( '$query' => 'user.id' )
)

$optional

A shortcut for specifying a lot of $any filters at the same time.

array(
  '$optional' => array( 'description', 'color', 'age' )
)

Is equivalent to:

array(
  'description' => array( '$any' => true ),
  'color' => array( '$any' => true ),
  'age' => array( '$any' => true )
)

API

use DataShaman\ArrayFilter;

$filter = new ArrayFilter;
$filter->checkFilter($source, $filter, $options);

checkFilter(source, filter, options)

options:

  • match: specify: 'filter', 'source', 'any', 'all'
    • filter: every filter permission must be satisfied (i.e. required fields)
    • source: every source key must be specified in filter
    • any: the keys don't matter, but if there is a match, they must pass
    • all: all keys must be exactly the same, otherwise fails - for finding changed items - no $conditionals work in this mode
  • queryHandler: Accepts a function(query, localContext) that returns resulting value
  • context: Array to pass to the query handler

array-filter's People

Stargazers

 avatar  avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.