2017 © Pedro Peláez
 

library scim-filter-parser

System for Cross-domain Identity Management SCIM AST filter parser PHP library

image

tmilos/scim-filter-parser

System for Cross-domain Identity Management SCIM AST filter parser PHP library

  • Tuesday, July 3, 2018
  • by tmilos
  • Repository
  • 1 Watchers
  • 1 Stars
  • 112 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 7 Versions
  • 67 % Grown

The README.md

SCIM filter parser

The PHP parser for SCIM filter. SCIM stands for System for Cross-domain Identity Management and more details can be found on http://www.simplecloud.info/ website., (*1)

Author Build Status Coverage Status Quality Score License Packagist Version SensioLabsInsight, (*2)

Usage

Filter mode

<?php
$parser = new Parser(Mode::FILTER());
$node = $parser->parse('userType eq "Employee" and (emails co "example.com" or emails.value co "example.org")');
/*
walk the node...

Conjunction = {
    ComparisonExpression => userType eq Employee
    Disjunction => {
        ComparisonExpression => emails co example.com
        ComparisonExpression => emails.value co example.org
    }
}
*/

Path mode

<?php
$parser = new Parser(Mode::PATH());
$node = $parser->parse('members[value eq "2819c223-7f76-453a-919d-413861904646"].displayName');
/*
walk the node...

Path = {
    ValuePath = {
        AttributePath = 'members'
        ComparisonExpression = value eq 2819c223-7f76-453a-919d-413861904646
    }
    AttributePath = displayName,
}
*/

For more details look at the filter mode and path mode unit tests., (*3)

Filter and path mode

SCIM v2 for PATCH operations defines parsable path with different grammar than for the retrieving resources filter expressions. The parser by default is in the FILTER mode, but you can switch it to PATH mode either with optional constructor argument or with a Parser::setMode(Mode $mode) setter method., (*4)

Note: Path mode is valid only for SCIM v2 version., (*5)

<?php
$parser = new Parser(Mode::PATH());
$parser->parse('username'); // OK
$parser->parse('username eq "xxx"'); // throws ParseException - Col 8: Expected end of input, but got ' '

SCIM filter version

SCIM filter between versions v1 and v2 remained almost the same, with the difference that v2 introduced new ValuePath syntax. Parser is by default in v2 mode, and you can switch it to v1 with Parser::setVersion(Version::V1()) setter or with optional constructor argument. In v1 mode it will throw syntax errors when brackets are encountered., (*6)

<?php
$parser = new Parser(Mode::FILTER, Version::V1());
$parser->parse('emails[type eq "work"]'); // throws ParseException - Col 6: Expected SP, got '['

The Versions

03/07 2018

dev-master

9999999-dev

System for Cross-domain Identity Management SCIM AST filter parser PHP library

  Sources   Download

MIT

The Requires

 

The Development Requires

parser ast scim scim parser scim filter parser scim ast simplecloud

19/01 2017

1.3.0

1.3.0.0

System for Cross-domain Identity Management SCIM AST filter parser PHP library

  Sources   Download

MIT

The Requires

 

The Development Requires

parser ast scim scim parser scim filter parser scim ast simplecloud

23/12 2016

1.2.0

1.2.0.0

System for Cross-domain Identity Management SCIM AST filter parser PHP library

  Sources   Download

MIT

The Requires

 

The Development Requires

parser ast scim scim parser scim filter parser scim ast simplecloud

23/12 2016

1.1.1

1.1.1.0

System for Cross-domain Identity Management SCIM AST filter parser PHP library

  Sources   Download

MIT

The Requires

 

The Development Requires

parser ast scim scim parser scim filter parser scim ast simplecloud

21/12 2016

1.1.0

1.1.0.0

System for Cross-domain Identity Management SCIM AST filter parser PHP library

  Sources   Download

MIT

The Requires

 

The Development Requires

parser ast scim scim parser scim filter parser scim ast simplecloud

20/12 2016

1.0.1

1.0.1.0

SCIM AST filter parser library

  Sources   Download

MIT

The Requires

 

The Development Requires

parser ast scim scim parser scim filter parser scim ast simplecloud

20/12 2016

1.0.0

1.0.0.0

SCIM AST filter parser library

  Sources   Download

MIT

The Requires

 

The Development Requires

parser ast scim scim parser scim filter parser scim ast simplecloud