hscim: hscim json schema and server implementation

[ agpl, library, program, web ] [ Propose Tags ]
Versions [RSS] 0.3.4, 0.3.5, 0.3.6, 0.4.0, 0.4.0.1, 0.4.0.2 (info)
Change log CHANGELOG
Dependencies aeson (>=1.4.5 && <1.5), aeson-qq (>=0.8.2 && <0.9), attoparsec (>=0.13.2 && <0.14), base (>=4.12 && <4.15), bytestring (>=0.10.8 && <0.11), case-insensitive (>=1.2.1.0 && <1.3), email-validate (>=2.3.2 && <2.4), hashable (>=1.2.7 && <1.4), hedgehog (>=1.0.1 && <1.1), hscim, hspec (>=2.7.1 && <2.8), hspec-expectations (>=0.8.2 && <0.9), hspec-wai (>=0.9.2 && <0.10), http-api-data (>=0.4.1 && <0.5), http-media (>=0.8.0 && <0.9), http-types (>=0.12.3 && <0.13), hw-hspec-hedgehog (>=0.1.0 && <0.2), list-t (>=1.0.4 && <1.1), microlens (>=0.4.10 && <0.5), mmorph (>=1.1.3 && <1.2), mtl (>=2.2.2 && <2.3), network-uri (>=2.6.2 && <2.7), retry (>=0.8.1.0 && <0.9), scientific (>=0.3.6 && <0.4), servant (>=0.16.2 && <0.19), servant-client (>=0.16.2 && <0.19), servant-client-core (>=0.16.2 && <0.19), servant-server (>=0.16.2 && <0.19), stm (>=2.5.0 && <2.6), stm-containers (>=1.1.0 && <1.2), string-conversions (>=0.4.0 && <0.5), template-haskell (>=2.14.0 && <2.17), text (>=1.2.3 && <1.3), time (>=1.8.0 && <1.10), unordered-containers (>=0.2.10 && <0.3), uuid (>=1.3.13 && <1.4), wai (>=3.2.2 && <3.3), wai-extra (>=3.0.28 && <3.1), warp (>=3.2.28 && <3.4) [details]
License AGPL-3.0-only
Copyright (c) 2018 Wire Swiss GmbH
Author Wire Swiss GmbH
Maintainer Wire Swiss GmbH <backend@wire.com>
Category Web
Home page https://github.com/wireapp/wire-server/libs/hscim/README.md
Bug tracker https://github.com/wireapp/wire-server/issues
Source repo head: git clone https://github.com/wireapp/wire-server(libs/hscim)
Uploaded by MatthiasFischmann at 2021-08-24T12:34:36Z
Distributions
Reverse Dependencies 1 direct, 0 indirect [details]
Executables hscim-server
Downloads 395 total (23 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2021-08-24 [all 1 reports]

Readme for hscim-0.3.6

[back to package description]

System for Cross-domain Identity Management (SCIM)

This implements part of the SCIM standard for identity management. The parts that are currently supported are:

  • User schema version 2.0

Building

This project uses stack. You can install the sample executable with

stack install

Developing and testing

This library only implements the schemas and endpoints defined by the SCIM standard. You will need to implement the actual storage by giving an instance for the Persistence class.

There's a simple in-memory implementation of this class, which is used for tests. You can run the tests with the standard stack interface:

stack test

Contributing

Before submitting a PR, make sure to install ormolu by doing stack install ormolu (we pin the version in our stack.yaml file) and run make format.