structr/structr

Validate and coerce complex data structures to conform to a specification

1.1.0 2014-04-17 09:27 UTC

This package is not auto-updated.

Last update: 2024-04-13 11:10:15 UTC


README

Build Status

With the advent of document based stores like CouchDB and MongoDB complex data structures are a lot more common within web applications. You no longer have a separate array containing a blog post and another containing all comments but a single document containing most, if not all data. The schema-less design most of these document stores use can lead to huge mess if one doesn't exercise sufficient discipline.

With Structr you can define the format of these documents within your application so you can validate and/or transform documents. Furthermore Structr can change variable types or run custom code on parts of the document.

Besides complex documents Structr can be used to parse most PHP data such as request parameters, for example you can use it to define valid values for a paging GET parameter.

Example

<?php

use Structr\Structr;

$value = array(
    "id" => 23,
    "author" => "John",
    "title" => "Foo",
    "text" => "The quick brown fox jumps over the lazy dog's back",
    "tags" => array("foo", "bar", "baz"),
    "comments" => array(
        array(
            "author" => "Mike",
            "text" => "Lorem ipsum dolor sit amet, consectetur adipiscing elit."
        )
    )
);

Structr::define("comment")  // Define the 'comment' subdocument
    ->isMap() // A map is an associative array
        ->strict() // A strict map doesn't allow any extra keys in the input document and will fail validation if any
                   // are present
        ->key("author")
            ->defaultValue("Anonymous") // The default value is used if the key is not present in the input document
            ->isString()->end()
        ->endKey()
        ->key("text")
            ->isString()->end()
        ->endKey()
    ->end()
    ;

$document = Structr::ize($value)
    ->isMap()
        ->key("id")
            ->isInteger()->coerce()->end() // Scalar values such as integers are parsed strictly by default, if the
                                           // type is not the same it will raise an exception. The 'coerce' option
                                           // will tell the parser to allow Structr to cast the value to the desired
                                           // type.
        ->endKey()
        ->key("author")
            ->defaultValue("No Author")
            ->isString()->end()
        ->endKey()
        ->key("title")
            ->isString()->end()
        ->endKey()
        ->key("text")
            ->isString()->end()
        ->endKey()
        ->key("tags")
            ->isList()
                ->item()
                    ->isString()->end()
                ->endItem()
            ->end()
            ->post(function($v) { sort($v); return $v; }) // Any node in the Structr tree can define a
                                                          // postprocessing function to be called on the resulting
                                                          // value for that node.
        ->endKey()
        ->key("comments")
            ->isList()
                ->item()
                    ->is("comment")->end()
                ->endItem()
            ->end()
        ->endKey()
    ->end()
    ->run();

This definition is very verbose, but also very flexible. More examples are forthcoming, but for now you can take a look at the tests directory.