BafS / scim-schema

SCIM schema PHP library

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Scim Schema

SCIM schema PHP library with support for both v1 and v2.

Note: This library is still work in progress, and you are welcome to help and contribute

It was made by the specs from SimpleCloud and by the example documents generated by PowerDMS/Owin.Scim

Do not miss SCIM Filter Parser !

Author Build Status Coverage Status Quality Score License Packagist Version

Install

Install Scim Schema using composer:

composer require tmilos/scim-schema

Usage

Schema

Build default schema:

$schemaBuilder = new SchemaBuilderV2(); // or SchemaBuilderV1

$groupSchema = $schemaBuilder->getGroup();
$userSchema  = $schemaBuilder->getUser();
$enterpriseUserSchema = $schemaBuilder->getEnterpriseUser();
$schemaSchema = $schemaBuilder->getSchema();
$serviceProviderConfigSchema = $schemaBuilder->getServiceProviderConfig();
$resourceTypeSchema = $schemaBuilder->getResourceType();

Or build your own custom schema:

$schema = new Schema();

$schema->setName('CustomSchema');

$schema->addAttribute(
    AttributeBuilder::create('name', ScimConstants::ATTRIBUTE_TYPE_STRING, 'Name of the object')
        ->setMutability(false)
        ->getAttribute()
);

And serialize the scim schema object

$schema = (new SchemaBuilderV2())->getUser();

$schema->serializeObject();

Schema validation

An object can be validated against a schema:

/** @var array $object */
$object = getTheObjectAsArray();

$validator = new SchemaValidator();
$objectSchema = getTheSchema();
$schemaExtensions = getSchemaExtensions();

$validationResult = $validator->validate(
    $object,
    $objectSchema,
    $schemaExtensions
);

if (!$validationResult->getErrors()) {
    // cool!
} else {
    print implode("\n", $validationResult->getErrorsAsStrings());
}

About

SCIM schema PHP library

License:MIT License


Languages

Language:PHP 100.0%