Skip to content

Fork containing fixes for PHP SCIM schema library. Kept until fixes are merged upstream.

License

Notifications You must be signed in to change notification settings

eqsgroup/scim-schema

 
 

Repository files navigation

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

Fork containing fixes for PHP SCIM schema library. Kept until fixes are merged upstream.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 100.0%