{-# LANGUAGE DataKinds                   #-}
{-# LANGUAGE DeriveGeneric               #-}
{-# LANGUAGE FlexibleInstances           #-}
{-# LANGUAGE GeneralizedNewtypeDeriving  #-}
{-# LANGUAGE LambdaCase                  #-}
{-# LANGUAGE NoImplicitPrelude           #-}
{-# LANGUAGE OverloadedStrings           #-}
{-# LANGUAGE RecordWildCards             #-}
{-# LANGUAGE TypeFamilies                #-}

{-# OPTIONS_GHC -fno-warn-unused-imports #-}

-- Module      : Network.AWS.CognitoIdentity.ListIdentityPools
-- Copyright   : (c) 2013-2014 Brendan Hay <brendan.g.hay@gmail.com>
-- License     : This Source Code Form is subject to the terms of
--               the Mozilla Public License, v. 2.0.
--               A copy of the MPL can be found in the LICENSE file or
--               you can obtain it at http://mozilla.org/MPL/2.0/.
-- Maintainer  : Brendan Hay <brendan.g.hay@gmail.com>
-- Stability   : experimental
-- Portability : non-portable (GHC extensions)
--
-- Derived from AWS service descriptions, licensed under Apache 2.0.

-- | Lists all of the Cognito identity pools registered for your account.
--
-- <http://docs.aws.amazon.com/cognitoidentity/latest/APIReference/API_ListIdentityPools.html>
module Network.AWS.CognitoIdentity.ListIdentityPools
    (
    -- * Request
      ListIdentityPools
    -- ** Request constructor
    , listIdentityPools
    -- ** Request lenses
    , lipMaxResults
    , lipNextToken

    -- * Response
    , ListIdentityPoolsResponse
    -- ** Response constructor
    , listIdentityPoolsResponse
    -- ** Response lenses
    , liprIdentityPools
    , liprNextToken
    ) where

import Network.AWS.Prelude
import Network.AWS.Request.JSON
import Network.AWS.CognitoIdentity.Types
import qualified GHC.Exts

data ListIdentityPools = ListIdentityPools
    { _lipMaxResults :: Nat
    , _lipNextToken  :: Maybe Text
    } deriving (Eq, Ord, Show)

-- | 'ListIdentityPools' constructor.
--
-- The fields accessible through corresponding lenses are:
--
-- * 'lipMaxResults' @::@ 'Natural'
--
-- * 'lipNextToken' @::@ 'Maybe' 'Text'
--
listIdentityPools :: Natural -- ^ 'lipMaxResults'
                  -> ListIdentityPools
listIdentityPools p1 = ListIdentityPools
    { _lipMaxResults = withIso _Nat (const id) p1
    , _lipNextToken  = Nothing
    }

-- | The maximum number of identities to return.
lipMaxResults :: Lens' ListIdentityPools Natural
lipMaxResults = lens _lipMaxResults (\s a -> s { _lipMaxResults = a }) . _Nat

-- | A pagination token.
lipNextToken :: Lens' ListIdentityPools (Maybe Text)
lipNextToken = lens _lipNextToken (\s a -> s { _lipNextToken = a })

data ListIdentityPoolsResponse = ListIdentityPoolsResponse
    { _liprIdentityPools :: List "IdentityPools" IdentityPoolShortDescription
    , _liprNextToken     :: Maybe Text
    } deriving (Eq, Show)

-- | 'ListIdentityPoolsResponse' constructor.
--
-- The fields accessible through corresponding lenses are:
--
-- * 'liprIdentityPools' @::@ ['IdentityPoolShortDescription']
--
-- * 'liprNextToken' @::@ 'Maybe' 'Text'
--
listIdentityPoolsResponse :: ListIdentityPoolsResponse
listIdentityPoolsResponse = ListIdentityPoolsResponse
    { _liprIdentityPools = mempty
    , _liprNextToken     = Nothing
    }

-- | The identity pools returned by the ListIdentityPools action.
liprIdentityPools :: Lens' ListIdentityPoolsResponse [IdentityPoolShortDescription]
liprIdentityPools =
    lens _liprIdentityPools (\s a -> s { _liprIdentityPools = a })
        . _List

-- | A pagination token.
liprNextToken :: Lens' ListIdentityPoolsResponse (Maybe Text)
liprNextToken = lens _liprNextToken (\s a -> s { _liprNextToken = a })

instance ToPath ListIdentityPools where
    toPath = const "/"

instance ToQuery ListIdentityPools where
    toQuery = const mempty

instance ToHeaders ListIdentityPools

instance ToJSON ListIdentityPools where
    toJSON ListIdentityPools{..} = object
        [ "MaxResults" .= _lipMaxResults
        , "NextToken"  .= _lipNextToken
        ]

instance AWSRequest ListIdentityPools where
    type Sv ListIdentityPools = CognitoIdentity
    type Rs ListIdentityPools = ListIdentityPoolsResponse

    request  = post "ListIdentityPools"
    response = jsonResponse

instance FromJSON ListIdentityPoolsResponse where
    parseJSON = withObject "ListIdentityPoolsResponse" $ \o -> ListIdentityPoolsResponse
        <$> o .:? "IdentityPools" .!= mempty
        <*> o .:? "NextToken"