MIT licensed by Naoto Shimazaki
Maintained by [email protected]
This version can be pinned in stack with:webex-teams-pipes-0.2.0.1@sha256:91450599548d03b1630f0d91e88d6343d09e7b13315128927b9ea99d8ac4c7e7,2056

Module documentation for 0.2.0.1

webex-teams-pipes

License: MIT Build Status Hackage Stackage Nightly Stackage LTS

pipes wrapper of webex-teams-api.

Webex-teams-pipes is thin wrappers of list API. It transform chunky response from list API into seamless stream of elements.

A Haskell bindings for Cisco Webex Teams (formerly Cisco Spark) API

This package also provides some sample usage in command line application style. See source under app directory of the source package.

Sample Usage

Following example is calling List Membership API which returns membership between Rooms and users (Person). You can extract each Membership from pipes pipe. The streamListWithFilter, provided by webex-teams-pipes, automatically performs pagenation when it is asked more element and last response had link of subsequent page in HTTP Link Header.

    let auth   = Authorization "your authorization token"
        filter = MembershipFilter yourRoomId Nothing Nothing
    runEffect $ streamListWithFilter auth def filter .| takeC 200 .| mapM_C print (FIXME)

You can find more examples in app/Main.hs.

Limitation

  • Relative reference in Link Header is not recognized as next page

Changes

webex-teams-pipes-0.2.0.1

  • Include .cabal file in source repo.
  • Migrate CI from Travis to GitHub Actions.
  • Build and test for multiple platforms and GHC versions.

webex-teams-pipes-0.2.0.0

  • Initial release.