finalizing lfs module
It may eventually move to its own package.
This commit is contained in:
parent
435287db15
commit
bd6c508334
2 changed files with 52 additions and 14 deletions
|
@ -25,6 +25,10 @@ Copyright: 2018 Joey Hess <id@joeyh.name>
|
||||||
2013 Michael Snoyman
|
2013 Michael Snoyman
|
||||||
License: Expat
|
License: Expat
|
||||||
|
|
||||||
|
Files: Utility/GitLFS.hs
|
||||||
|
Copyright: © 2019 Joey Hess <id@joeyh.name>
|
||||||
|
License: AGPL-3+
|
||||||
|
|
||||||
Files: Utility/*
|
Files: Utility/*
|
||||||
Copyright: 2012-2019 Joey Hess <id@joeyh.name>
|
Copyright: 2012-2019 Joey Hess <id@joeyh.name>
|
||||||
License: BSD-2-clause
|
License: BSD-2-clause
|
||||||
|
|
|
@ -2,11 +2,49 @@
|
||||||
-
|
-
|
||||||
- https://github.com/git-lfs/git-lfs/blob/master/docs/api
|
- https://github.com/git-lfs/git-lfs/blob/master/docs/api
|
||||||
-
|
-
|
||||||
- Copyright 2010-2018 Joey Hess <id@joeyh.name>
|
- Copyright 2019 Joey Hess <id@joeyh.name>
|
||||||
-
|
-
|
||||||
- Licensed under the GNU AGPL version 3 or higher.
|
- Licensed under the GNU AGPL version 3 or higher.
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
{-# LANGUAGE DeriveGeneric, FlexibleInstances, FlexibleContexts #-}
|
||||||
|
{-# LANGUAGE OverloadedStrings #-}
|
||||||
|
{-# LANGUAGE LambdaCase #-}
|
||||||
|
|
||||||
|
module Utility.GitLFS (
|
||||||
|
-- * transfer requests
|
||||||
|
TransferRequest(..),
|
||||||
|
TransferAdapter(..),
|
||||||
|
TransferRequestObject(..),
|
||||||
|
startTransferRequest,
|
||||||
|
-- * responses to transfer requests
|
||||||
|
TransferResponse(..),
|
||||||
|
TransferResponseOperation(..),
|
||||||
|
IsTransferResponseOperation,
|
||||||
|
DownloadOperation,
|
||||||
|
UploadOperation,
|
||||||
|
ParsedTransferResponse,
|
||||||
|
parseTransferResponse,
|
||||||
|
-- * making transfers
|
||||||
|
downloadOperationRequest,
|
||||||
|
uploadOperationRequests,
|
||||||
|
-- * endpoint discovery
|
||||||
|
Endpoint,
|
||||||
|
guessEndpoint,
|
||||||
|
HostUser,
|
||||||
|
sshDiscoverEndpoint,
|
||||||
|
-- * errors
|
||||||
|
TransferResponseError(..),
|
||||||
|
TransferResponseObjectError(..),
|
||||||
|
-- * additional data types
|
||||||
|
Url,
|
||||||
|
SHA256,
|
||||||
|
GitRef(..),
|
||||||
|
NumSeconds,
|
||||||
|
HTTPHeader,
|
||||||
|
HTTPHeaderValue,
|
||||||
|
) where
|
||||||
|
|
||||||
-- | This implementation of the git-lfs API uses http Request and Response,
|
-- | This implementation of the git-lfs API uses http Request and Response,
|
||||||
-- but leaves actually connecting up the http client to the user.
|
-- but leaves actually connecting up the http client to the user.
|
||||||
--
|
--
|
||||||
|
@ -17,10 +55,6 @@
|
||||||
-- in some of the requests, in order to allow eg, uploads. No such header
|
-- in some of the requests, in order to allow eg, uploads. No such header
|
||||||
-- is added by dedault, so be sure to add your own.
|
-- is added by dedault, so be sure to add your own.
|
||||||
|
|
||||||
{-# LANGUAGE DeriveGeneric, FlexibleInstances, FlexibleContexts #-}
|
|
||||||
{-# LANGUAGE OverloadedStrings #-}
|
|
||||||
{-# LANGUAGE LambdaCase #-}
|
|
||||||
|
|
||||||
import Data.Aeson
|
import Data.Aeson
|
||||||
import Data.Aeson.Types
|
import Data.Aeson.Types
|
||||||
import GHC.Generics
|
import GHC.Generics
|
||||||
|
@ -207,14 +241,14 @@ data Verification = Verification
|
||||||
deriving (Generic, Show)
|
deriving (Generic, Show)
|
||||||
|
|
||||||
instance ToJSON Verification where
|
instance ToJSON Verification where
|
||||||
toJSON = genericToJSON verifyBodyOptions
|
toJSON = genericToJSON verificationOptions
|
||||||
toEncoding = genericToEncoding verifyBodyOptions
|
toEncoding = genericToEncoding verificationOptions
|
||||||
|
|
||||||
instance FromJSON Verification where
|
instance FromJSON Verification where
|
||||||
parseJSON = genericParseJSON verifyBodyOptions
|
parseJSON = genericParseJSON verificationOptions
|
||||||
|
|
||||||
verifyBodyOptions :: Options
|
verificationOptions :: Options
|
||||||
verifyBodyOptions = stripFieldPrefix defaultOptions
|
verificationOptions = stripFieldPrefix defaultOptions
|
||||||
|
|
||||||
-- | Sent over ssh connection when using that to find the endpoint.
|
-- | Sent over ssh connection when using that to find the endpoint.
|
||||||
data SshDiscoveryResponse = SshDiscoveryResponse
|
data SshDiscoveryResponse = SshDiscoveryResponse
|
||||||
|
@ -329,11 +363,11 @@ type ParsedTransferResponse op =
|
||||||
Either (Either String TransferResponseError) (TransferResponse op)
|
Either (Either String TransferResponseError) (TransferResponse op)
|
||||||
|
|
||||||
-- | Parse the body of a response to a transfer request.
|
-- | Parse the body of a response to a transfer request.
|
||||||
parseResponseBody
|
parseTransferResponse
|
||||||
:: IsTransferResponseOperation op
|
:: IsTransferResponseOperation op
|
||||||
=> L.ByteString
|
=> L.ByteString
|
||||||
-> ParsedTransferResponse op
|
-> ParsedTransferResponse op
|
||||||
parseResponseBody resp = case eitherDecode resp of
|
parseTransferResponse resp = case eitherDecode resp of
|
||||||
-- If unable to decode as a TransferResponse, try to decode
|
-- If unable to decode as a TransferResponse, try to decode
|
||||||
-- as a TransferResponseError instead, in case the LFS server
|
-- as a TransferResponseError instead, in case the LFS server
|
||||||
-- sent an error message.
|
-- sent an error message.
|
||||||
|
@ -352,8 +386,8 @@ downloadOperationRequest = operationParamsRequest . download
|
||||||
-- If the LFS server requested verification, there will be a second
|
-- If the LFS server requested verification, there will be a second
|
||||||
-- Request that does that; it should be run only after the upload has
|
-- Request that does that; it should be run only after the upload has
|
||||||
-- succeeded.
|
-- succeeded.
|
||||||
uploadOperation :: UploadOperation -> RequestBody -> SHA256 -> Integer -> Maybe [Request]
|
uploadOperationRequests :: UploadOperation -> RequestBody -> SHA256 -> Integer -> Maybe [Request]
|
||||||
uploadOperation op content oid size =
|
uploadOperationRequests op content oid size =
|
||||||
case (mkdlreq, mkverifyreq) of
|
case (mkdlreq, mkverifyreq) of
|
||||||
(Nothing, _) -> Nothing
|
(Nothing, _) -> Nothing
|
||||||
(Just dlreq, Nothing) -> Just [dlreq]
|
(Just dlreq, Nothing) -> Just [dlreq]
|
Loading…
Add table
Reference in a new issue