tmilos / scim-schema
SCIM schema library
Installs: 707 787
Dependents: 4
Suggesters: 0
Security: 0
Stars: 14
Watchers: 3
Forks: 8
Open Issues: 6
Requires (Dev)
- phpunit/phpunit: ^4.8|^5.6
- satooshi/php-coveralls: ^1.0
This package is not auto-updated.
Last update: 2024-10-26 21:14:10 UTC
README
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 !
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()); }