copr-api-0.1.0: src/Web/Fedora/Copr.hs
{-# LANGUAGE CPP #-}
{-# LANGUAGE OverloadedStrings #-}
{- |
Copyright: (c) 2020 Jens Petersen
SPDX-License-Identifier: GPL-2.0-only
Maintainer: Jens Petersen <petersen@redhat.com>
Copr REST client library
-}
module Web.Fedora.Copr
(coprChroots,
fedoraCopr)
where
import Data.Aeson.Types (Object)
#if MIN_VERSION_aeson(2,0,0)
import Data.Aeson.Key (toText)
import qualified Data.Aeson.KeyMap as M
#else
import qualified Data.HashMap.Lazy as M
#endif
import Data.List (sort)
import Data.Text (Text)
import Web.Fedora.Copr.API
-- | Get the list of chroot of a user's copr project
coprChroots :: String -- ^ server
-> String -- ^ owner
-> String -- ^ project
-> IO [Text] -- ^ list of chroots
coprChroots server owner project = do
proj <- coprGetProject server owner project
case lookupKey "chroot_repos" proj :: Maybe Object of
Nothing ->
case lookupKey "error" proj of
Just err -> error err
Nothing -> return []
Just obj -> return $ (reverse . sort . map toText . M.keys) obj
#if !MIN_VERSION_aeson(2,0,0)
where toText = id
#endif
-- | the host name of the Fedora Copr API server
fedoraCopr :: String
fedoraCopr = "copr.fedorainfracloud.org"