0.0.7 • Published 3 years ago

@keepsolutions/scimgateway v0.0.7

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

SCIM Gateway

Author: KEEP SOLUTIONS

This is a fork of the original SCIM Gateway developed by Jarle Elshaug.

Differences include:

  • Support for MongoDB
  • Support for additional operators: - gte (/Users?op=meta.created gte "2010-01-01T00:00:00")

Build Status npm Versionnpm Downloads chat disqus GitHub forks


Original author: Jarle Elshaug

Validated through IdP's:

  • Symantec/Broadcom/CA Identity Manager
  • Microsoft Azure Active Directory
  • OneLogin
  • Okta
  • Omada

Latest news:

  • ipAllowList for restricting access to allowlisted IP addresses or subnets e.g. Azure AD IP-range
  • General LDAP plugin configured for Active Directory.
  • PlugSSO using SCIM Gateway
  • getUser/getGroup having more flexibility. Auth configuration allowing more than one admin user including option for readOnly
  • Codebase moved from callback of h... to the the promise(d) land of async/await
  • Supports configuration by environments and external files
  • Health monitoring through "/ping" URL, and option for error notifications by email
  • Azure AD user provisioning including license management e.g. Office 365, installed and configured within minutes!
  • Includes API Gateway for none SCIM/provisioning - becomes what you want it to become
  • Running SCIM Gateway as a Docker container

Overview

With SCIM Gateway we could do user management by using REST based SCIM 1.1 or 2.0 protocol. Gateway will translate incoming SCIM requests and expose CRUD functionality (create, read, update and delete user/group) towards destinations using endpoint specific protocols. Gateway do not require SCIM to be used, it's also an API Gateway that could be used for other things than user provisioning.

SCIM Gateway is a standalone product, however this document shows how the gateway could be used by products like Symatec/Broadcom/CA Identity Manager.

Using Identity Manager, we could setup one or more endpoints of type SCIM pointing to the gateway. Specific ports could then be used for each type of endpoint, and the SCIM Gateway would work like a "CA Connector Server" communicating with endpoints.

npm.io

Instead of using IM-SDK for building our own integration for none supported endpoints, we can now build new integration based on SCIM Gateway plugins. SCIM Gateway works with IM as long as IM supports SCIM.

SCIM Gateway is based on the popular asynchronous event driven framework Node.js using JavaScript. It is firewall friendly using REST webservices. Runs on almost all operating systems, and may load balance between hosts (horizontal) and cpu's (vertical). Could even be uploaded and run as a cloud application.

Following example plugins are included:

  • Loki (NoSQL Document-Oriented Database)
    Gives a SCIM endpoint located on SCIM Gateway
    Demonstrates user provisioning towards document-oriented database
    Using LokiJS for a fast, in-memory document-oriented database (much like MongoDB/PouchDB)
    Default gives two predefined test users loaded using in-memory only (no persistence)
    Setting {"persistence": true} gives persistence file store (no test users)
    Example of a fully functional SCIM Gateway plugin

  • RESTful (REST Webservice)
    Demonstrates user provisioning towards REST-Based endpoint
    Using plugin "Loki" as a REST endpoint

  • Forwardinc (SOAP Webservice)
    Demonstrates user provisioning towards SOAP-Based endpoint
    Using endpoint Forwardinc that comes with Broadcom/CA IM SDK (SDKWS) - wiki.ca.com
    Shows how to implement a highly configurable multi tenant or multi endpoint solution using baseEntity parameter

  • MSSQL (MSSQL Database)
    Demonstrates user provisioning towards MSSQL database

  • SAP HANA (SAP HANA Database)
    Demonstrates SAP HANA specific user provisioning

  • Azure AD (REST Webservices)
    Azure AD user provisioning including Azure license management (App Service plans) e.g. Office 365
    Using Microsoft Graph API
    Using customized SCIM attributes according to Microsoft Graph API
    Includes CA ConnectorXpress metafile for creating CA IM "Azure - ScimGateway" endpoint type

  • LDAP (Directory)
    Fully functional LDAP plugin
    Pre-configured for Microsoft Active Directory
    Using endpointMapper (like plugin-azure-ad) for attribute flexibility

  • API (REST Webservices)
    Demonstrates API Gateway/plugin functionality using post/put/patch/get/delete
    None SCIM plugin, becomes what you want it to become.
    Methods listed can also be used in standard SCIM plugins
    Endpoint complexity could be put in this plugin, and client could instead communicate through Gateway using your own simplified REST specification.
    One example of usage could be creation of tickets in ServiceDesk/HelpDesk and also the other way, closing a ticket could automatically approve/reject corresponding workflow in Identity Manager.

Installation

Install Node.js

Node.js is a prerequisite and have to be installed on the server.

Download the windows installer (.msi 64-bit) and install using default options.

Install SCIM Gateway

Open a command window (run as administrator)
Create your own package directory e.g. C:\my-scimgateway and install SCIM Gateway within this package.

mkdir c:\my-scimgateway
cd c:\my-scimgateway
npm init -y
npm install scimgateway --save

Please ignore any error messages unless soap WSSecurityCert functionality is needed in your custom plugin code. Module soap installation of optional dependency 'ursa' that also includes 'node-gyp' then needs misc. prerequisites to bee manually installed.

c:\my-scimgateway will now be <package-root>

index.js, lib and config directories containing example plugins have been copied to your package from the original scimgateway package located under node_modules.

If internet connection is blocked, we could install on another machine and copy the scimgateway folder.

Startup and verify default Loki plugin

node c:\my-scimgateway

Start a browser

http://localhost:8880/ping
=> Health check with a "hello" response

http://localhost:8880/Users  
http://localhost:8880/Groups
or 
http://localhost:8880/Users?attributes=userName
http://localhost:8880/Groups?attributes=displayName  
=> Logon using gwadmin/password and two users and groups should be listed  

http://localhost:8880/Users/bjensen
http://localhost:8880/Groups/Admins
=> Lists all attributes for specified user/group

http://localhost:8880/Users?filter=userName eq "bjensen"&attributes=userName,id,name.givenName
http://localhost:8880/Users?filter=emails.value eq "bjensen@example.com"&attributes=userName,phoneNumbers
=> Filtering supporting operator 'eq' returning unique object with attributes specified

http://localhost:8880/Users?filter=meta.created gte "2010-01-01T00:00:00"&attributes=userName,id,name.givenName
=> Filtering supporting operator 'gte' returning multiple objects with attributes specified

"Ctrl + c" to stop the SCIM Gateway

For more functionality using browser (post/patch/delete) a REST extension/add-on is needed.

Tip, take a look at mocha test scripts located in node_modules\scimgateway\test\lib

Upgrade SCIM Gateway

Not needed after a fresh install

Check if newer versions are available:

cd c:\my-scimgateway
npm outdated

Lists current, wanted and latest version. No output on screen means we are running the latest version.

The best and easiest way to upgrade is renaming existing scimgateway package folder, create a new one and do a fresh installation. After the installation you copy index.js, config and lib folder (your customized plugins) from your previous installation to the new installation. You should also read the version history to see if your custom plugins needs to be updated.

Alternatives are:

Upgrade to latest minor version:

cd c:\my-scimgateway
npm install scimgateway

Note, always backup/copy C:\my-scimgateway before upgrading. Custom plugins and corresponding configuration files will not be affected.

To force a major upgrade (version x.*.* => y.*.*) that will brake compability with any existing custom plugins, we have to include the @latest suffix in the install command: npm install scimgateway@latest

Configuration

index.js defines one or more plugins to be started. We could comment out those we do not need. Default configuration only starts the loki plugin.

const loki = require('./lib/plugin-loki')
// const restful = require('./lib/plugin-restful')
// const forwardinc = require('./lib/plugin-forwardinc')
// const mssql = require('./lib/plugin-mssql')
// const saphana = require('./lib/plugin-saphana')  // prereq: npm install hdb --save
// const azureAD = require('./lib/plugin-azure-ad')
// const ldap = require('./lib/plugin-ldap')
// const api = require('./lib/plugin-api')

Each endpoint plugin needs a JavaScript file (.js) and a configuration file (.json). They both must have the same naming prefix. For SAP Hana endpoint we have:

lib\plugin-saphana.js
config\plugin-saphana.json

Edit specific plugin configuration file according to your needs.
Below shows an example of config\plugin-saphana.json

{
  "scimgateway": {
    "port": 8884,
    "localhostonly": false,
    "scim": {
      "version": "2.0",
      "customSchema": null,
      "skipTypeConvert" : false
    },
    "log": {
      "loglevel": {
        "file": "debug",
        "console": "error"
      },
      "customMasking": []
    },
    "auth": {
      "basic": [
        {
          "username": "gwadmin",
          "password": "password",
          "readOnly": false
        }
      ],
      "bearerToken": [
        {
          "token": null,
          "readOnly": false
        }
      ],
      "bearerJwtAzure": [
        {
          "tenantIdGUID": null
        }
      ],
      "bearerJwt": [
        {
          "secret": null,
          "publicKey": null,
          "options": {
            "issuer": null
           },
          "readOnly": false
        }
      ]
    },
    "certificate": {
      "key": null,
      "cert": null,
      "ca": null,
      "pfx": {
        "bundle": null,
        "password": null
      }
    },
    "ipAllowList": [],
    "emailOnError": {
      "smtp": {
        "enabled": false,
        "host": null,
        "port": 587,
        "proxy": null,
        "authenticate": true,
        "username": null,
        "password": null,
        "sendInterval": 15,
        "to": null,
        "cc": null
      }
    }
  },
  "endpoint": {
    "host": "hostname",
    "port": 30015,
    "username": "username",
    "password": "password",
    "saml_provider": "saml_provider_name"
  }
}

Configuration file have two main JSON objects: scimgateway and endpoint

Definitions in scimgateway object have fixed attributes, but values can be modified. This object is used by the core functionality of the SCIM Gateway.

Definitions in endpoint object are customized according to our plugin code. Plugin typically need this information for communicating with endpoint

  • port - Gateway will listen on this port number. Clients (e.g. Provisioning Server) will be using this port number for communicating with the gateway.

  • localhostonly - true or false. False means gateway accepts incoming requests from all clients. True means traffic from only localhost (127.0.0.1) is accepted (gateway must then be installed on the CA Connector Server).

  • scim.version - "1.1" or "2.0". Default is "2.0". For Symantec/Broadcom/CA Identity Manager "1.1" should be used.

  • scim.customSchema - filename of JSON file located in <package-root>\config\schemas containing custom schema attributes, see configuration notes

  • scim.skipTypeConvert - true or false, default false. Multivalue attributes supporting types e.g. emails, phoneNumbers, ims, photos, addresses, entitlements and x509Certificates (but not roles, groups and members) will be become "type converted objects" when sent to modifyUser and createUser. This for simplicity of checking attributes included and also for the endpointMapper method (used by plugin-ldap and plugin-azure-ad), e.g.:

    		"emails": {
    		  "work": {"value": "jsmith@example.com", "type": "work"},
    		  "home": {"value": "", "type": "home", "operation": "delete"},
    		  "undefined": {"value": "jsmith@hotmail.com"}
    		}  
    
      skipTypeConvert set to true gives attribute "as-is": array, allow duplicate types including blank, but values to be deleted have been marked with "operation": "delete"
    
    		"emails": [
    		  {"value": "jsmith@example.com", "type": "work"},
    		  {"value": "john.smith.org", "type": "home", "operation": "delete"},
    		  {"value": "jsmith@hotmail.com"}
    		]  
  • log.loglevel.file - off, error, info, or debug. Output to plugin-logfile e.g. logs\plugin-saphana.log

  • log.loglevel.console - off, error, info, or debug. Output to stdout and errors to stderr.

  • log.customMasking - array of attributes to be masked e.g. "customMasking": ["SSN", "weight"]. By default SCIM Gateway includes masking of some standard attributes like password.

  • auth - Contains one or more authentication/authorization methods used by clients for accessing gateway. Methods are disabled by setting corresponding attributes to null or remove methods not used. Methods having user/object set to "readOnly": true gives read only access (only allowing GET requests for corresponding admin user).

  • auth.basic - Array of one ore more basic authentication objects - Basic Authentication with username/password. Note, we set a clear text password that will become encrypted when gateway is started.

  • auth.bearerToken - Array of one or more bearer token objects - Shared token/secret (supported by Azure). Clear text value will become encrypted when gateway is started.

  • auth.bearerJwtAzure - Array of one or more JWT used by Azure SyncFabric. tenantIdGUID must be set to Azure Active Directory Tenant ID.

  • auth.bearerJwt - Array of one or more standard JWT objects. Using secret or publicKey for signature verification. publicKey should be set to the filename of public key or certificate pem-file located in <package-root>\config\certs. Clear text secret will become encrypted when gateway is started. options.issuer is mandatory. Other options may also be included according to jsonwebtoken npm package definition.

  • certificate - If not using SSL/TLS certificate, set "key", "cert" and "ca" to null. When using SSL/TLS, "key" and "cert" have to be defined with the filename corresponding to the primary-key and public-certificate. Both files must be located in the <package-root>\config\certs directory e.g:

    		"certificate": {
    		  "key": "key.pem",
    		  "cert": "cert.pem",
    		  "ca": null
    		}  

    Example of how to make a self signed certificate:

    		openssl req -nodes -newkey rsa:2048 -x509 -sha256 -days 3650 -keyout key.pem -out cert.pem -subj "/O=Testing/OU=SCIM Gateway/CN=<FQDN>" -config "<path>\openssl.cnf"

    <FQDN> is Fully Qualified Domain Name of the host having SCIM Gateway installed

    Note, when using Broadcom/CA Provisioning, the "certificate authority - CA" also have to be imported on the Connector Server. For self-signed certificate CA and the certificate (public key) is the same.

    PFX / PKCS#12 bundle can be used instead of key/cert/ca e.g:

      "pfx": {
        "bundle": "certbundle.pfx",
        "password": "password"
      }
    
    	Note, we should normally use certificate (https) for communicating with SCIM Gateway unless we install ScimGatway locally on the manager (e.g. on the CA Connector Server). When installed on the manager, we could use `http://localhost:port` or `http://127.0.0.1:port` which will not be passed down to the data link layer for transmission. We could then also set {"localhostonly": true}  
  • ipAllowList - Array of one or more IPv4/IPv6 subnets (CIDR) allowed for incoming traffic. E.g. using Azure AD as IdP, we would like to restrict access to IP addresses used by Azure AD. Azure IP-range can be downloaded from: https://azureipranges.azurewebsites.net, enter AzureActiveDirectory in the search list and select JSON download. Copy the "addressPrefixes" array content and paste into ipAllowList array. CIDR single IP-host syntax is a.b.c.d/32. Note, front-end HTTP proxy or a load balancer must include X-Forwarded-For header. Configuration example:

      "ipAllowList": [
        "13.66.60.119/32",
        "13.66.143.220/30",
        ...
        "2603:1056:2000::/48",
        "2603:1057:2::/48"
      ]
  • emailOnError - Contains configuration for sending error notifications by email. Note, only the first error will be sent until sendInterval have passed

  • emailOnError.smtp.enabled - true or false, value set to true will enable email notifications
  • emailOnError.smtp.host - Mailserver e.g. "smtp.office365.com"
  • emailOnError.smtp.port - Port used by mailserver e.g. 587, 25 or 465
  • emailOnError.smtp.proxy - If using mailproxy e.g. "http://proxy-host:1234"
  • emailOnError.smtp.authenticate - true or false, set to true will use username/password authentication
  • emailOnError.smtp.username - Mail account for authentication and also the sender of the email, e.g. "user@outlook.com"
  • emailOnError.smtp.password - Mail account password
  • emailOnError.smtp.sendInterval - Mail notifications on error are deferred until sendInterval minutes have passed since the last notification. Default 15 minutes
  • emailOnError.smtp.to - Comma separated list of recipients email addresses e.g: "someone@example.com"
  • emailOnError.smtp.cc - Comma separated list of cc email addresses
  • actions - Pre and post actions onAddGroups/onRemoveGroups. Needed logic to be defined in plugin method pre_post_Action
  • actions.preAction.onAddGroups - Array of groups e.g. "Admins", "Employees"
  • actions.preAction.onRemoveGroups - Array of groups e.g. "Admins", "Employees"
  • actions.postAction.onAddGroups - Array of groups e.g. "Admins", "Employees"
  • actions.postAction.onRemoveGroups - Array of groups e.g. "Admins", "Employees"

  • endpoint - Contains endpoint specific configuration according to our plugin code.

Configuration notes

  • Setting environment variable SEED will override default password seeding logic.
  • All configuration can be set based on environment variables. Syntax will then be "process.env.<ENVIRONMENT>" where <ENVIRONMENT> is the environment variable used. E.g. scimgateway.port could have value "process.env.PORT", then using environment variable PORT.
  • All configuration can be set based on corresponding JSON-content (dot notation) in external file using plugin name as parent JSON object. Syntax will then be "process.file.<path>" where <path> is the file used. E.g. endpoint.password could have value "process.file./var/run/vault/secrets.json"

    	Example:  
    
    		{
    		  "scimgateway": {
    		    ...
    		    "port": "process.env.PORT",
    		    ...
    		    "loglevel": {
    		      "file": "process.env.LOG_LEVEL_FILE",
    		      ...
    		    "auth": {
    		      "basic": [
    		        {
    		          "username": "process.file./var/run/vault/secrets.json",
    		          "password": "process.file./var/run/vault/secrets.json"
    		        },
    		        ...
    		      ],
    		      ...
    		    },
    		  "endpoint": {
    		    ...
    		    "username": "process.file./var/run/vault/secrets.json",
    		    "password": "process.file./var/run/vault/secrets.json",
    		    ...
    		  }
    		}  
secrets.json for plugin-forwardinc - example (dot notation):  

	{
	  "plugin-forwardinc.scimgateway.auth.basic[0].username": "gwadmin",
	  "plugin-forwardinc.scimgateway.auth.basic[0].password": "password",
	  "plugin-forwardinc.endpoint.username": "superuser",
	  "plugin-forwardinc.endpoint.password": "secret"
	}  
  • Custom schema attributes can be added by plugin configuration scim.customSchema having value set to filename of a JSON schema-file located in <package-root>/config/schemas e.g:

    		"scim": {
    		  "version": "2.0",
    		  "customSchema": "plugin-forwardinc-schema.json"
    		},
    
    	JSON file have following syntax:  
    
    		[
    		  { 
    		    "name": "User",
    		    "attributes": [...]
    		  },
    		  { 
    		    "name": "Group",
    		    "attributes": [...]
    		  }
    		]
    
    	Where array `attributes` contains custom attribute objects according to SCIM 1.1 or 2.0 spesification e.g:  
    
    		"attributes": [
    		  {
    		    "name": "musicPreference",
    			"type": "string",
    			"multiValued": false,
    			"description": "Music Preferences",
    			"readOnly": false,
    			"required": false,
    			"caseExact": false
    		  },
    		  {
    		    "name": "populations",
    			"type": "complex",
    			"multiValued": true,
    			"multiValuedAttributeChildName": "population",
    			"description": "Population array",
    			"readOnly": false,
    			"required": false,
    			"caseExact": false,
    			"subAttributes": [
    			  {
    			    "name": "value",
    			    "type": "string",
    			    "multiValued": false,
    			    "description": "Population value",
    			    "readOnly": false,
    			    "required": true,
    			    "caseExact": false
    			  }
    			]
    		  }
    		]
    
    	Note, custom schema attributes will be merged into core:1.0/2.0 schema, and names must not conflict with standard SCIM attribute names.

Manual startup

Gateway can now be started from a command window running in administrative mode

3 ways to start:

node c:\my-scimgateway

node c:\my-scimgateway\index.js

<package-root>node .

Ctrl+c to stop

Automatic startup - Windows Task Scheduler

Start Windows Task Scheduler (taskschd.msc), right click on "Task Scheduler Library" and choose "Create Task"

General tab:  
-----------
Name = SCIM Gateway
User account = SYSTEM
Run with highest privileges

Triggers tab:
-------------
Begin the task = At startup

Actions tab:
------------
Action = Start a program
Program/script = c:\Program Files\nodejs\node.exe
Arguments = c:\my-scimgateway

Settings - tab:
---------------
Stop the task if runs longer than = Disabled (greyed out)

Verification:

  • Right click task - Run, verify process node.exe (SCIM Gateway) can be found in the task manager (not the same as task scheduler). Also verify logfiles <pakage-root>\logs
  • Right click task - End, verify process node.exe have been terminated and disappeared from task manager
  • Reboot server and verify SCIM Gateway have been automatically started

Running as a isolated virtual Docker container

On Linux systems we may also run SCIM Gateway as a Docker image (using docker-compose)

  • Docker Pre-requisites:
    docker-ce
    docker-compose
  • Install SCIM Gateway within your own package and copy provided docker files:

    		mkdir /opt/my-scimgateway  
    		cd /opt/my-scimgateway  
    		npm init -y  
    		npm install scimgateway --save  
    		cp ./config/docker/* .  
    
    	**docker-compose.yml**   <== Here is where you would set the exposed port and environment  
    	**Dockerfile**   <== Main dockerfile  
    	**DataDockerfile**   <== Handles volume mapping   
    	**docker-compose-debug.yml** <== Debugging  
  • Create a scimgateway user on your Linux VM.

    		adduser scimgateway
  • Create a directory on your VM host for the scimgateway configs:

    		mkdir /home/scimgateway/config
  • Copy your updated configuration file e.g. /opt/my-scimgateway/config/plugin-loki.json to /home/scimgateway/config. Use scp to perform the copy.

    	NOTE: /home/scimgateway/config is where all important configuration and loki datastore will reside outside of the running docker container.  If you upgrade scimgateway you won't lose your configurations and data.
  • Build docker images and start it up

    		docker-compose up --build -d
    
    	NOTE: Add the -d flag to run the command above detached.  
    
    	Be sure to confirm that port 8880 is available with a simple http request
    
    	If using default plugin-loki and we have configured `{"persistence": true}`, we could confirm scimgateway created loki.db:
    
    		su scimgateway  
    		cd /home/scimgateway/config  
    		ls loki.db  

To list running containers information:
docker ps

To list available images:
docker images

To view the logs:
docker logs scimgateway

To execute command within your running container:
docker exec scimgateway <bash command>

To stop scimgateway:
docker-compose stop

To restart scimgateway:
docker-compose start

To debug running container (using Visual Studio Code):
docker-compose -f docker-compose.yml -f docker-compose-debug.yml up -d
Start Visual Studio Code and follow these debugging instructions

To upgrade scimgateway docker image (remove the old stuff before running docker-compose up --build):

docker rm scimgateway  
docker rm $(docker ps -a -q); docker rmi $(docker images -q -f "dangling=true")  

CA Identity Manager as IdP using SCIM Gateway

Using Symantec/Broadcom/CA Identity Manger, plugin configuration file must include SCIM Version "1.1" (scimgateway.scim.version).

In the Provisioning Manager we have to use

Endpoint type = SCIM (DYN Endpoint)

or create our own custom endpoint type based on this one

SCIM endpoint configuration example for Loki plugin (plugin-loki)

Endpoint Name = Loki-8880  
User Name = gwadmin  
Password = password  
SCIM Authentication Method = HTTP Basic Authentication  
SCIM Based URL = http://localhost:8880  

or:  

SCIM Based URL = http://localhost:8880/<baseEntity>

Username, password and port must correspond with plugin configuration file. For "Loki" plugin it will be config\plugin-loki.json

"SCIM Based URL" refer to the FQDN (or localhost) having SCIM Gateway installed. Portnumber must be included. Use HTTPS instead of HTTP if SCIM Gateway configuration includes certificates.

"baseEntity" is optional. This is a parameter used for multi tenant or multi endpoint solutions. We could create several endpoints having same base url with unique baseEntity. e.g:

http://localhost:8880/clientA
http://localhost:8880/clientB

Each baseEntity should then be defined in the plugin configuration file with custom attributes needed. Please see examples in plugin-forwardinc.json

IM 12.6 SP7 (and above) also supports pagination for SCIM endpoint (data transferred in bulks - endpoint explore of users). Loki plugin supports pagination. Other plugin may ignore this setting.

SCIM Gateway REST API

Create = POST http://localhost:8880/Users  
(body contains the user information)

Update = PATCH http://localhost:8880/Users/<id>
(body contains the attributes to be updated)

Search/Read = GET http://localhost:8880/Users?userName eq 
"userID"&attributes=<comma separated list of scim-schema defined attributes>

Search/explore all users:
GET http://localhost:8880/Users?attributes=userName

Delete = DELETE http://localhost:8880/Users/<id>

Discovery:

GET http://localhost:8880/ServiceProviderConfigs
Specification compliance, authentication schemes, data models.

GET http://localhost:8880/Schemas
Introspect resources and attribute extensions.

Note:

  • userName (mandatory) = UserID
  • id (mandatory) = Unique id. Could be set to the same as UserID but don't have to.

SAP Hana endpoint

Get all users (explore):  
select USER_NAME from SYS.USERS where IS_SAML_ENABLED like 'TRUE';

Get a specific user:  
select USER_NAME, USER_DEACTIVATED from SYS.USERS where USER_NAME like '<UserID>';

Create User:  
CREATE USER <UserID> WITH IDENTITY '<UserID>' FOR SAML PROVIDER <SamlProvider>;

Delete user:  
DROP USER <UserID>;

Modify user (enable user):  
ALTER USER <UserID> ACTIVATE;

Modify user (disable user):  
ALTER USER <UserID> DEACTIVATE;  

Postinstallation:

cd c:\my-scimgateway
npm install hdb --save  

Only SAML users will be explored and managed

Supported template attributes:

  • User Name (UserID)
  • Suspended (Enabled/Disabled)

Currently no other attributes needed. Trying to update other attributes will then give an error message. The SCIM Provisioning template should therefore not include any other global user attribute references.

SAP Hana converts UserID to uppercase. Provisioning use default lowercase. Provisioning template should therefore also convert to uppercase.

User Name = %$$TOUPPER(%AC%)%

Azure Active Directory endpoint

Using plugin-azure-ad we could do user provisioning towards Azure AD including license management e.g. O365

For testing purposes we could get an Azure free account and in addition the free Office 365 for testing license management through Azure.

There are two alternative ways of configuring Azure AD. Alternative #1 is probably best and easiest

Azure AD configuration

  • Logon to Azure as global administrator
  • Azure Active Directory - App registrations - Click "New registration" - Name = SCIM Gateway Inbound - Select: Accounts in this organizational directory only - Click "Register" - Overview: - Copy "Application (client) ID" - Copy "Directory (tentant) ID" - Certificates & secrets: - Click "New client secret" - Description = SCIM Gateway Inbound secret#1 - Select an appropriate "Expires" - Click "Add" - Copy "Value" of the new secret that was created - API permissions: - Add a permission - Microsoft Graph - Application permissions - Optionally remove any defaults included e.g. User.Read - Click "Add a permission" - Microsoft Graph - Application permissions - Directory - Directory.ReadWriteAll - Organization - Organization.ReadWrite.All - Click "Add permissions"
    Note, we also have to go to Enterprise application to grant these consents
  • Azure Active Directory - Enterprise applications - SCIM Gateway Inbound - Permissions: - Click "Grant admin consent for tenant name" - In the logon dialog, logon as global administrator - In permissions request dialog, click "Accept" - Click "Refresh", directory and organization permissions are now listed and OK

For some odd reasons Application needs to be member of "User administrator" for having privileges to manage office/mobile phone on users that is member of any administrator roles

Also note, enable/disable user (accountEnabled - through Graph API) will fail if user have an "Administrator" role other than above mentioned "User Administrator" e.g. "Group Administrator"/"Application Administrator". To be sure we can enable/disable all users, application needs to be member of "Global administrator" - 62e90394-69f5-4237-9190-012177145e10.

  • Azure Active Directory - Roles and administration - Click on role "User administrator" - Click "Add assignments" - Search: SCIM Gateway Inbound (application name) - Select the application that shows up and click "Add"

SCIM Gateway configuration

Edit index.js
Uncomment startup of plugin-azure-ad, other plugins could be comment out if not needed

const azureAD = require('./lib/plugin-azure-ad')

Edit plugin-azure-ad.json

Note, for Symantec/Broadcom/CA Provisioning we have to use SCIM version 1.1

scimgateway: {
  "scim": {
    "version": "1.1"
  },

username and password used to connect the SCIM Gateway must be defined.

    "auth": {
      "basic": [
        {
          "username": "gwadmin",
          "password": "password",
          "readOnly": false
        }
      ],

Update tenantIdGUID, clientID and clientSecret according to what you copied from the previous Azure AD configuration.

If using proxy, set proxy.host to "http://<FQDN-ProxyHost>:<port>" e.g "http://proxy.mycompany.com:3128"

"endpoint": {
  "entity": {
    "undefined": {
      "tenantIdGUID": "DomainName or DirectoryID (GUID)",
      "clientId": "Application ID",
      "clientSecret": "Generated application key value",
      "proxy": {
        "host": null,
        "username": null,
        "password": null
      }
    }
  }
}

Note, clientSecret and any proxy.password will become encrypted in this file on the first Azure connection.

For multi-tenant or multi-endpoint support, we may add several entities:

"endpoint": {
  "entity": {
    "undefined": {
		...
    },
    "clientA": {
		...
    },
    "clientB": {
		...
    }
  }
}

For additional details, see baseEntity description.

Note, we should normally use certificate (https) for communicating with SCIM Gateway unless we install gateway locally on the manager (e.g. on the CA Connector Server). When installed on the manager, we could use http://localhost:port or http://127.0.0.1:port which will not be passed down to the data link layer for transmission. We could then also set {"localhostonly": true}

Using Symantec/Broadcom/CA Provisioning

Create a new endpoint type "Azure - ScimGateway"

  • Start SCIM Gateway - "const azureAD" must be uncomment in index.js - username, password and port defined in plugin-azure-ad.json must also be known
  • Start ConnectorXpress
  • Setup Data Sources - Add - Layer7 (this is SCIM) - Name = SCIM Gateway-8881 - Base URL = http://localhost:8881 (SCIM Gateway installed locally on Connector Server)
  • Add the new "Azure - ScimGateway" endpoint type - Metadata - Import - "my-scimgateway\node_modules\scimgateway\config\resources\Azure - ScimGateway.xml" - Select the datasource we created - SCIM Gateway-8881 - Enter password for the user defined in datasource (e.g. gwadmin/password)
    - On the right - expand Provisioning Servers - your server - and logon - Right Click "Endpoint Types", Create New Endpoint Type - You may use default name "Azure - ScimGateway" and click "OK" to create endpoint

Note, metafile "Azure - ScimGateway.xml" is based on CA "Azure - WSL7" with some minor adjustments like using Microsoft Graph API attributes instead of Azure AD Graph attributes.

Provisioning Manager configuration

Endpoint type = Azure - ScimGateway (DYN Endpoint)

Endpoint configuration example:

Endpoint Name = AzureAD-8881  
User Name = gwadmin  
Password = password  
SCIM Authentication Method = HTTP Basic Authentication  
SCIM Based URL = http://localhost:8881  
or  
SCIM Based URL = http://localhost:8881/<baseEntity>  

For details, please see section "CA Identity Manager as IdP using SCIM Gateway"

Azure Active Directory as IdP using SCIM Gateway

Azure AD could do automatic user provisioning by synchronizing users towards SCIM Gateway, and gateway plugins will update endpoints.

Plugin configuration file must include SCIM Version "2.0" (scimgateway.scim.version) and either Bearer Token (scimgateway.auth.bearerTokenx.token) or Azure Tenant ID GUID (scimgateway.auth.bearerJwtAzurex.tenantIdGUID) or both:

scimgateway: {
  "scim": {
    "version": "2.0",
    ...
  },
  ...
  "auth": {
    "bearerToken": [
      {
        "token": "shared-secret"
      }
    ],
    "bearerJwtAzure": [
      {
        "tenantIdGUID": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
      }
    ]
  }
  ...
}

token configuration must correspond with "Secret Token" defined in Azure AD
tenantIdGUID configuration must correspond with Azure Active Directory Tenant ID

In Azure Portal: Azure-Azure Active Directory-Enterprise Application-<My Application>-Provisioning-Secret Token
Note, when "Secret Token" is left blank, Azure will use JWT (tenantIdGUID)

Azure-Azure Active Directory-Overview-Tenant ID

User mappings attributes between AD and SCIM also needs to be configured

Azure-Azure Active Directory-Enterprise Application-<My Application>-Provisioning-Edit attribute mappings-Mappings

Azure AD default SCIM attribute mapping for USER must have:

userPrincipalName mapped to userName (matching precedence #1)  

Azure AD default SCIM attribute mapping for GROUP must have:

displayName mapped to displayName (matching precedence #1)  
members mapped to members  

Some notes related to Azure AD:

  • Azure Active Directory SCIM documentation

  • For using OAuth/JWT credentials, Azure configuration "Secret Token" (bearer token) should be blank. Plugin configuration must then include bearerJwtAzure.tenantIdGUID. Click "Test Connection" in Azure to verify

  • Azure AD do a regular check for a "none" existing user/group. This check seems to be a "keep alive" to verify connection.

  • Azure AD first checks if user/group exists, if not exist they will be created (no explore of all users like CA Identity Manager)

  • Deleting a user in Azure AD sends a modify user {"active":"False"} which means user should be disabled. This logic is default set in attribute mappings expression rule Switch([IsSoftDeleted], , "False", "True", "True", "False"). Standard SCIM "DELETE" method seems not to be used.

API Gateway

Gateway also works as an API Gateway when using url /api or /<baseEntity>/api

Following methods for the none SCIM based api-plugin are supported:

	GET /api  
	GET /api?queries  
	GET /api/{id}  
	POST /api + body  
	PUT /api/{id} + body  
	PATCH /api/{id} + body  
	DELETE /api/{id}  

Please see example plugin: plugin-api.js

How to build your own plugins

For JavaScript coding editor you may use Visual Studio Code

Preparation:

  • Copy "best matching" example plugin e.g. lib\plugin-loki.js and config\plugin-loki.json and rename both copies to your plugin name prefix e.g. plugin-mine.js and plugin-mine.json (for SOAP Webservice endpoint we might use plugin-forwardinc as a template)
  • Edit plugin-mine.json and define a unique port number for the gateway setting
  • Edit index.js and add a new line for starting your plugin e.g. let mine = require('./lib/plugin-mine');
  • Start SCIM Gateway and verify. If using CA Provisioning you could setup a SCIM endpoint using the port number you defined

Now we are ready for custom coding by editing plugin-mine.js Coding should be done step by step and each step should be verified and tested before starting the next (they are all highlighted by comments in existing code).

  1. Turn off group functionality in getGroup, getGroupMembers, getGroupUsers and modifyGroupMembers
    Please see callback definitions in plugin-saphana that do not use groups.
  2. exploreUsers (test provisioning explore users)
  3. getUser (test provisioning retrieve account)
  4. createUser (test provisioning new account)
  5. deleteUser (test provisioning delete account)
  6. modifyUser (test provisioning modify account)
  7. exploreGroups (test provisioning explore groups)
  8. Turn on group functionality (if supporting groups)
  9. getGroup (test provisioning group list groups)
  10. getGroupMembers (test provisioning retrieve account - group list groups)
  11. modifyGroupMembers (test provisioning retrieve account - group add/remove groups)
  12. getGroupUsers (if using "groups member of user")
  13. createGroup (test provisioning new group)

Template used by CA Provisioning role should only include endpoint supported attributes defined in our plugin. Template should therefore have no links to global user for none supported attributes (e.g. remove %UT% from "Job Title" if our endpoint/code do not support title)

CA Provisioning using default SCIM endpoint do not support SCIM Enterprise User Schema Extension (having attributes like employeeNumber, costCenter, organization, division, department and manager). If we need these or other attributes not found in CA Provisioning, we could define our own by using the free-text "type" definition in the multivalue entitlements or roles attribute. In the template entitlements definition, we could for example define type=Company and set value to %UCOMP%. Please see plugin-forwardinc.js using Company as a multivalue "type" definition.

Using CA Connector Xpress we could create a new SCIM endpoint type based on the original SCIM. We could then add/remove attributes and change from default assign "user to groups" to assign "groups to user". There are also other predefined endpoints based on the original SCIM. You may take a look at "ServiceNow - WSL7" and "Zendesk - WSL7".

For project setup:

  • Datasource = Layer7 (CA API) - this is SCIM
  • Layer7 Base URL = SCIM Gateway url and port (SCIM Base URL)
  • Authentication = Basic Authentication
    (connect using gwadmin/password defined in plugin config-file)

How to change "user member of groups" to "group member of users"

Using Connector Xpress based on the original SCIM endpoint.

Delete defaults:
Group - Associations - with User Account
Group - Attributes - members
User Account - Attributes - Group Membership

Create new attribute:
User Account - Attributes: Groups - Flexi DN - Multivalue - groups

Create User - Group associations:
User Account - Accociations - Direct association with = Group
User Account - Accociations - with Group

Note, "Include a Reverse Association" - not needed if we don't need Group object functionality e.g list/add/remove group members

User Attribute = Physical Attribute = Groups
Match Group = By Attribute = ID

Objects Must Exist
Use DNs in Attribute = activated (toggled on)

Include a Reverse Association (if needed)
Group Attribute = Virtual Attribute = User Membership
Match User Account = By Attribute = User Name

Note, groups should be capability attribute (updated when account is synchronized with template):
advanced options - Synchronized = enabled (toggled on)

Methods

Plugins should have following initialization:

// mandatory plugin initialization - start
const path = require('path')
let ScimGateway = null
try {
  ScimGateway = require('scimgateway')
} catch (err) {
  ScimGateway = require('./scimgateway')
}
let scimgateway = new ScimGateway()
let pluginName = path.basename(__filename, '.js')
let configDir = path.join(__dirname, '..', 'config')
let configFile = path.join(`${configDir}`, `${pluginName}.json`)
let config = require(configFile).endpoint
let validScimAttr = [] // empty array - all attrbutes are supported by endpoint
// add any external config process.env and process.file
config = scimgateway.processExtConfig(pluginName, config)
// mandatory plugin initialization - end

exploreUsers

scimgateway.exploreUsers = async (baseEntity, attributes, startIndex, count) => {
    let ret = {
        "Resources": [],
        "totalResults": null
    }
	...
	return ret
}  
  • baseEntity = Optional for multi-tenant or multi-endpoint support (defined in base url e.g. <baseurl>/client1 gives baseEntity=client1)
  • startIndex = Pagination - The 1-based index of the first result in the current set of search results
  • count = Pagination - Number of elements to be returned in the current set of search results
  • ret:
    ret.Resources = array filled with user objects containing user attributes where userName is mandatory e.g {"userName":"bjensen"}, {"userName":"jsmith"}
    ret.totalResults = if supporting pagination, then attribute should be set to the total numbers of elements (users) at the endpoint, else set to null

exploreGroups

scimgateway.exploreGroups = async (baseEntity, attributes, startIndex, count) => {
    let ret = {
        "Resources": [],
        "totalResults": null
    }
	...
	return ret
}  
  • ret:
    ret.Resources = array filled with group objects containing group attributes where displayName is mandatory e.g {"displayName":"Admins"}, {"displayName":"Employees"}
    ret.totalResults = if supporting pagination attribute should be set to the total numbers of elements (groups) at the endpoint else set to null

getUser

scimgateway.getUser = async (baseEntity, getObj, attributes) => {
	...
	return userObj
}  
  • getObj = { filter: <filterAttribute>, identifier: <identifier> }
    e.g: getObj = { "filter": "userName", "identifier": "bjensen"}
    filter: userName and id must be supported
  • attributes = scim attributes to be returned. If no attributes defined, all should be returned.
  • return userObj: userObj containing scim userattributes/values eg:
    {"id":"bjensen","name":{"formatted":"Ms. Barbara J Jensen III","familyName":"Jensen","givenName":"Barbara"}}

Note, the value of the id attribute returned will be used by modifyUser and deleteUser

createUser

scimgateway.createUser = async (baseEntity, userObj) => {
	...
	return null
} 
  • userObj = user object containing userattributes according to scim standard
    Note, multi-value attributes excluding user attribute 'groups' are customized from array to object based on type
  • return null: null if OK, else throw error

deleteUser

scimgateway.deleteUser = async (baseEntity, id) => {
	...
	return null
} 
  • id = user id to be deleted
  • return null: null if OK, else throw error

modifyUser

scimgateway.modifyUser = async (baseEntity, id, attrObj) => {
	...
	return null
} 
  • id = user id
  • attrObj = object containing userattributes to be modified according to scim standard
    Note, multi-value attributes excluding user attribute 'groups' are customized from array to object based on type
  • return null: null if OK, else throw error

getGroup

scimgateway.getGroup = async (baseEntity, getObj, attributes) => {
	...
	return retObj
} 
  • getObj = { filter: <filterAttribute>, identifier: <identifier> }
    e.g: getObj = { "filter": "displayName", "identifier": "GroupA" } filter: displayName and id must be supported
  • attributes = scim attributes to be returned. If no attributes defined, all should be returned.
  • return retObj: retObj containing group displayName and id (+ members if using default "users are member of group")

    eg. using default "users are member of group":  

    {"displayName":"Admins","id":"Admins","members":{"value":"bjensen","display":"bjensen"}

    eg. using "groups are member of user":  

    {"displayName":"Admins","id":"Admins"}

    If we do not support groups, callback(null, null)

getGroupMembers

scimgateway.getGroupMembers = async (baseEntity, id, attributes) => {
    let arrRet = []
	...
	return arrRet
}

Retrieve all groups for user id WHEN "user member of groups". This setting is default SCIM behaviour. This means Group having multivalue attribute members containing id of users.

  • id = user id (eg. bjensen)
  • attributes = scim attributes to be returned as object in array
  • arrRet = array containing the objects of id, displayName and members where members value only include current user id on the format:
    { id: > , displayName: , members {value: } }

    [  
    {"id": "Admins", "displayName: "Admins", "members": [{"value": "bjensen"}]},  
    {"id": "Employees", "displayName: "Employees", "members": [{"value": "bjensen"}]}  
    ]
    
    If "user member of groups" not supported, then return []  

getGroupUsers

scimgateway.getGroupUsers = async (baseEntity, id, attributes) => {
	let arrRet = []
	...
	return arrRet
}

Retrieve all users for a spesific group id WHEN "group member of users". This means user having multivalue attribute groups having value set to group id

  • id = group id (eg. UserGroup-1)
  • attributes = scim attributes to be returned as object in array
  • arrRet = array containing the objects of userName and groups.value e.g:

    	[  
    	{"userName", "bjensen": [{"value": "UserGroup-1"}]},  
    	{"userName", "jsmith"}: [{"value": "UserGroup-1"}]}  
    	]
    
    	If "group member of users" not supported, then return []  

createGroup

scimgateway.createGroup = async (baseEntity, groupObj) => {
	...
    return null
})
  • groupObj = group object containing groupattributes according to scim standard
    groupObj.displayName contains the group name to be created
  • return null: null if OK, else throw error

deleteGroup

scimgateway.deleteGroup = async (baseEntity, id) => {
	...
    return null
}
  • id = group name (eg. Admins) to be deleted
  • return null: null if OK, else throw error

modifyGroup

scimgateway.modifyGroup = async (baseEntity, id, attrObj) => {
	...
    return null
}
  • id = group name (eg. Admins)
  • attrObj = object containing groupattributes to be modified according to scim standard
    attrObj.members (must be supported) = array of objects containing groupmembers modifications
    eg: {"value":"bjensen"},{"operation":"delete","value":"jsmith"}
    (adding bjensen and deliting jsmith from group)
  • return null: null if OK, else throw error
    If we do not support groups, then return null

Known limitations

  • Installation gives error messages related to the module soap optional dependency to 'ursa' that also includes 'node-gyp'. These error messages can be ignored unless soap WSSecurityCert functionality is needed in custom plugin code.

  • SCIM filtering only supports operator 'eq' returning unique object only, example:
    /Users?filter=userName eq "bjensen"&attributes=userName,id,name.givenName
    /Users?filter=emails.value eq "bjensen@example.com"&attributes=userName,phoneNumbers

License

MIT © Jarle Elshaug

Change log

v3.2.8

Fixed

  • plugin-ldap objectGUID introduced in v.3.2.7 had some missing logic

v3.2.7

Added

  • plugin-ldap supports using Active Directory objectGUID instead of dn mapped to id
    configuration example:
      "objectGUID": {
        "mapTo": "id",
        "type": "string"
      }

Fixed

  • Return 500 on GET handler error instead of 404
    Thanks to Nipun Dayanath
  • createUser/createRole response now includes id retrieved by getUser/getRole instead of using posted userName/displayName value

v3.2.6

Fixed

  • bearerJwt authentication missing public key handling
  • plugin-azure-ad getGroup did not return all members when group had more than 100 members (Azure page size is 100). getGroup now using paging

v3.2.5

Fixed

  • default "type converted object" logic may fail on requests that includes a mix of type and blank type. Now blank type will be converted to type "undefined", and all types must be unique within the same request. "type converted object" logic can be turned off by configuration scim.skipTypeConvert = true
  • plugin-loki supporting type = "undefined"

Added

  • new configuration scim.skipTypeConvert allowing overriding the default behaviour "type converted object" when set to true. See attribute list for details
  • scimgateway.isMultivalue used by plugin-loki have been changed, and custom plugins using this method must be updated

      old syntax:
      scimgateway.isMultivalue('User', key)
    
      new syntax:
      scimgateway.isMultiValueTypes(key) 

v3.2.4

Fixed

  • plugin-loki some code cleanup

v3.2.3

Fixed

  • PUT was not according to the SCIM specification
  • plugin-mssql broken after dependencies bump v3.1.0
  • plugin-loki getUser using find instead of findOne to ensure returning unique user

v3.2.2

Fixed

  • plugins missing logic for handling the virtual readOnly user attribute groups (when "user member of groups") e.g. GET /Users/bjensen should return all user attributes including the virtual groups attribute. Now this user attribute will be automatically handled by scimgateway if not included in the plugin response.
  • Pre and post actions onAddGroups/onRemoveGroups introduced in v.3.2.0 has been withdrawn

Added

  • scimgateway will do plugin response filtering according to requested attributes/excludedAttributes

v3.2.1

Fixed

  • plugin-azure-ad updating businessPhones (Office phone) broken after v3.2.0
  • plugin-azure-ad listing groups for user did also include Azure roles
  • SCIM v2.0 none core schema attributes handling
  • response not always including correct schemas

Added

  • roles now using array instead of objects based on type. Note, this may break your custom plugins if roles logic are in use

v3.2.0

Added

  • ipAllowList for restricting access to allowlisted IP addresses or subnets e.g. Azure AD IP-range
    Configuration example:

      "ipAllowList": [
        "13.66.60.119/32",
        "13.66.143.220/30",
        ...
        "2603:1056:2000::/48",
        "2603:1057:2::/48"
      ]
  • Example plugins now configured for SCIM v2.0 instead of v1.1

    	New configuration:  
    
    	    "scim": {
          "version": "2.0"
    	    }
    
    	Old configuration:  
    
    	    "scim": {
          "version": "1.1"
    	    }

v3.1.0

Added

  • plugin-ldap a general LDAP plugin pre-configured for Microsoft Active Directory. Using endpointMapper logic (like plugin-azure-ad) for attribute flexibility
  • Pre and post actions onAddGroups/onRemoveGroups can be configured and needed logic to be defined in plugin method pre_post_Action
  • Dependencies bump

v3.0.8

Fixed

  • plugin-azure-ad delete account fails in v3.x

v3.0.7

Fixed

  • Using proxy configuration broken in v3.x

v3.0.6

Fixed

  • Dependencies bump

v3.0.4

Added

  • Pagination request having startIndex but no count, now sets count to default 200 and may be overridden by plugin.

v3.0.3

Fixed

  • GET /Users?startIndex=1&count=100 with no attributes filter included did not work

v3.0.2

Fixed

  • SCIM v2.0 PUT did not work.

v3.0.1

Added

  • getApi supports body (apiObj).

    	Old syntax:  
    
    	    scimgateway.getApi = async (baseEntity, id, apiQuery) => {
    
    	New syntax:  
    
    	    scimgateway.getApi = async (baseEntity, id, apiQuery, apiObj) => {

v3.0.0

MAJOR

  • getUser/getGroup now using parameter getObj giving more flexibility
  • deprecated modifyGroupMembers - now using modifyGroup
  • deprecated configuration scimgateway.scim.customUniqueAttrMapping - replaced by getObj logic
  • loglevel=off turns of logging
  • Auth methods allowing more than one user/object including option for readOnly
  • Includes latest versions of module dependencies

UPGRADE

Note, this is a major upgrade (^2.x.x => ^3.x.x) that will brake compatibility with any existing custom plugins. To force a major upgrade, suffix @latest must be include in the npm install command, but it's recommended to do a fresh install and copy any custom plugins instead of upgrading an existing package

Old syntax:

scimgateway.getUser = async (baseEntity, userName, attributes) => {
scimgateway.getGroup = async (baseEntity, displayName, attributes) => {
scimgateway.modifyGroupMembers = async (baseEntity, id, members) => {

New syntax:

scimgateway.getUser = async (baseEntity, getObj, attributes) => {
  const userName = getObj.identifier // gives v2.x compatibility

scimgateway.getGroup = async (baseEntity, getObj, attributes) => {
  const displayName = getObj.identifier // gives v2.x compatibility

scimgateway.modifyGroup = async (baseEntity, id, attrObj) => {
  // attrObj.members corresponds to members in deprecated modifyGroupMembers

getUser comments:
getObj = { filter: <filterAttribute>, identifier: <identifier> }
e.g: getObj = { filter: 'userName', identifier: 'bjensen'}
filter: userName and id must be supported

getGroup comments:
getObj = { filter: <filterAttribute>, identifier: <identifier> }
e.g: getObj = { filter: 'displayName', identifier: 'GroupA' }
filter: displayName and id must be supported

Please see provided example plugins

Using the new getObj parameter gives more flexibility in the way of lookup a user e.g:
http://localhost:8880/Users?filter=emails.value eq "jsmith@example.com"&attributes=userName,name.givenName
getObj = { filter: 'emails.value', identifier: 'jsmith@example.com'}
attributes = 'userName,name.givenName'

Configuration file, auth settings have changed and now using arrays allowing more than one user/object to be set. "readOnly": true can also be set for allowing read only access for a spesific user (does not apply to bearerJwtAzure).

New syntax is:

"auth": {
  "basic": [
    {
      "username": "gwadmin",
      "password": "password",
      "readOnly": false
    }
  ],
  "bearerToken": [
    {
      "token": null,
      "readOnly": false
    }
  ],
  "bearerJwtAzure": [
    {
      "tenantIdGUID": null
    }
  ],
  "bearerJwt": [
    {
      "secret": null,
      "publicKey": null,
      "options": {
        "issuer": null
      },
      "readOnly": false
    }
  ]
}

v2.1.13

Fixed

  • Plugin configuration referring to an external configuration file using an array did not work.

v2.1.11

Fixed

  • Log masking of xml (SOAP) messages.

v2.1.10

Added

  • Log masking of custom defined attributes.
    customMasking may include an array of attributes to be masked
    e.g. "customMasking": ["SSN", "weight"]
  • Note, configurationfiles must be changed (old syntax still supported)
    old syntax:

      "loglevel": {
        "file": "debug",
        "console": "error"
      },

    new syntax:

      "log": {
        "loglevel": {
          "file": "debug",
          "console": "error"
        },
        "customMasking": []
      },

    By default SCIM Gateway includes masking of standard attributes like password

v2.1.9

Fixed

  • AAD as IdP broken after content-type validation introduced in v2.1.7
  • AAD as IdP, none gallery app support
  • Incorrect SCIM 2.0 multivalue converting
  • plugin-saphana not correctly ported to v2.x

Thanks to Luca Moretto

v2.1.8

Fixed

  • plugin-mssql not correctly ported to v2.x, and some config syntax for this plugin have also changed in newer releases of dependencies.

v2.1.7

Fixed

  • Validates content-type when body is included
  • Case insensitive log-masking
  • Plugins now don't using deprecated url.parse
  • Misc cosmetics e.g. using const instead of let when not reassigned

v2.1.6

Fixed

  • plugin-azure-ad did not return correct error code (err.name = 'DuplicateKeyError') when failing on creating a duplicate user

Added

  • Includes latest versions of module dependencies

v2.1.4

Fixed

  • Incorrect SCIM 2.0 error handling after v2.1.0
  • For duplicate key error, setting err.name = 'DuplicateKeyError' now gives correct status code 409 instead of defult 500 (see plugin-loki.js)

v2.1.3

Fixed

  • Standardized the API Gateway response (not SCIM related)
  • Not allowing plugins to return password
  • Colorize option now automatically turned off when using stdout/stderr redirect (configuration file loglevel.colorize is not needed)

v2.1.2

Fixed

  • SCIM 2.0 may use Operations.value as array and none array (issue #16)

Added

  • Option for replacing mandatory userName/displayName attribute by configuring customUniqueAttrMapping
  • Includes latest versions of module dependencies

v2.1.1

Fixed

  • SCIM 2.0 may use Operations.value or Operation.value[] for PATCH syntax of the name object (issue #14)
  • plugin-loki failed to modify a none existing object, e.g name object not included in Create User

v2.1.0

Added

  • Custom schema attributes can be added by plugin configuration scim.customSchema having value set to filename of a JSON schema-file located in <package-root>/config/schemas

UPGRADE

  • Configurationfiles for custom plugins should be changed
    old syntax:

        "scimversion": "1.1",  

    new syntax:

    	"scim": {
          "version": "1.1",
          "customSchema": null
        },

    Note, "1.1" is default, if using "2.0" the new syntax must be used.

v2.0.2

Fixed

  • SCIM 2.0 incorrect response for user not found
  • Did not mask logentries ending with newline

v2.0.0

MAJOR

  • Codebase moved from callback to async/await
  • Koa replacing Express
  • Some log enhancements
  • Deprecated cipher methods have been replaced
  • Plugin restful (REST) and
  • forwardinc (SOAP) includes failover logic based on endpoints defined in array baseUrls/baseServiceEndpoints.

UPGRADE

Note, this is a major upgrade (^1.x.x => ^2.x.x) and will brake compatibility with any existing custom plugins. To force a major upgrade, suffix @latest must be include in the npm install command, but it's recommended to do a fresh install and copy any custom plugins instead of upgrading an existing package

cd c:\my-scimgateway
npm install scimgateway@latest

Custom plugins needs some changes (please see included example plugins)

  • scimgateway.on(xxx, function (..., callback) replaced with scimgateway.xxx = async (...) returning a result or throwing an error
  • Rest and SOAP using doRequest method having endpoint failover logic through array baseUrls/baseServiceEndpoints defined in corresponding plugin configuration file.
  • Additional argument attributes included in exploreUsers and exploreGroups method
  • Proxy configuration includes option for user/password
  • Encrypted passwords in configuration files needs to be reset to clear text passwords

v1.0.20

Fixed

  • HTTP status code 200 and totalResults set to value of 0 when using SCIM 2.0 filter user/group and no resulted user/group found. SCIM 1.1 still using status code 404.

UPGRADE

  • For custom plugins to be compliant with SCIM 2.0, the getUser and getGroup methods needs to be updated. If user/group not found then return callback(null, null) instead of callback(err)

v1.0.19

Fixed

  • Fix related to external configuration (ref. v1.0.18) when running multiple plugins

v1.0.18

Added

  • Includes latest versions of module dependencies
  • Loglevel configuration for file and console now separated
  • Loglevel colorize option (value false could be useful when redirecting console output)
  • All configuration can be set based on environment variables
  • All configuration can be set based on correspondig json-content in external file (supports also dot notation)

UPGRADE

  • Configurationfiles for custom plugins should be changed
    old syntax:

      loglevel: "debug"

    new syntax:

      "loglevel": {
        "file": "debug",
        "console": "error",
        "colorize": true
      }

v1.0.14

Fixed

  • Some multiValued attributes not correctly handled (e.g. addresses)

v1.0.13

Fixed

  • plugin-azure-ad: New version of "Azure - ScimGateway.xml" fixing CA IM RoleDefGenerator problem (related to creating and importing screens in CA IM)

UPGRADE

  • Use CA ConnectorXpress, import "Azure - ScimGateway.xml" and deploy/redeploy endpoint

v1.0.12

Fixed

  • Incorrect logging of Express stream messages (type info) when running multiple plugins

v1.0.11

Fixed

  • plugin-azure-ad: proxy configuration did not work

v1.0.10

Fixed

  • An issue with pagination fixed

v1.0.9

Added

  • Cosmetics, changed emailOnError logic - now emitted by logger

v1.0.8

Added

  • Support health monitoring using the "/ping" URL with a "hello" response, e.g. http://localhost:8880/ping. Useful for frontend load balancing/failover functionality
  • Option for error notifications by email

UPGRADE

  • Configuration files for custom plugins must include the emailOnError object for enabling error notifications by email. Please see the syntax in provided example plugins and details described in the "Configuration" section of this document.

v1.0.7

Added

  • Docker now using node v.9.10.0 instead of v.6.9.2
  • Minor log cosmetics

v1.0.6

Fixed

  • Azure AD plugin, failed to create user when licenses (app Service plans) was included

v1.0.5

Added

-