Skip to content

Commit

Permalink
Blob storage boilerplate
Browse files Browse the repository at this point in the history
  • Loading branch information
nitinprakash96 committed Jun 28, 2024
1 parent 4a6f0e5 commit d060064
Show file tree
Hide file tree
Showing 6 changed files with 151 additions and 0 deletions.
5 changes: 5 additions & 0 deletions azure-blob-storage/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Revision history for azure-blob-storage

## 0.1.0.0 -- YYYY-mm-dd

* First version. Released on an unsuspecting world.
21 changes: 21 additions & 0 deletions azure-blob-storage/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2024 Holmusk

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
8 changes: 8 additions & 0 deletions azure-blob-storage/app/Main.hs
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
module Main where

import qualified Blob (someFunc)

main :: IO ()
main = do
putStrLn "Hello, Haskell!"
Blob.someFunc
80 changes: 80 additions & 0 deletions azure-blob-storage/azure-blob-storage.cabal
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
cabal-version: 3.0
name: azure-blob-storage
version: 0.1.0.0
license: MIT
license-file: LICENSE
synopsis: Boilerplace/startkit for azure in Haskell (using servant)
description: This provides from useful functionalities for starting out with Azure in Haskell.
This includes authentication, Key vault, Blob storage and email communication related APIs.
author: Holmusk
maintainer: tech@holmusk.com
category: Azure
build-type: Simple
extra-doc-files: CHANGELOG.md
tested-with: GHC == 9.0.2
GHC == 9.2.8
GHC == 9.4.8
GHC == 9.6.3
GHC == 9.8.2

common common-options
ghc-options: -Wall
-Wincomplete-uni-patterns
-Wincomplete-record-updates
-Wcompat
-Widentities
-Wredundant-constraints
-fhide-source-paths
-Wpartial-fields
-Wunrecognised-pragmas
-Wmissing-deriving-strategies
-Wunticked-promoted-constructors
-Winvalid-haddock
-Woperator-whitespace
-Wredundant-bang-patterns
-Wunused-packages
build-depends: base >= 4.7 && <5
default-language: GHC2021
default-extensions: DataKinds
DerivingStrategies
DerivingVia
LambdaCase
NoImportQualifiedPost
NoGeneralisedNewtypeDeriving
OverloadedStrings
OverloadedLabels
RecordWildCards
TypeFamilies
ViewPatterns
if os(linux)
ghc-options: -optl-fuse-ld=gold
ld-options: -fuse-ld=gold

library
import: common-options
exposed-modules: Azure.Types
build-depends: aeson
, azure-auth
, bytestring
, http-client
, http-client-tls
, http-types
, servant
, servant-client
, text
, time
, unliftio
hs-source-dirs: src
default-language: Haskell2010

test-suite azure-blob-storage-test
import: common-options
default-language: Haskell2010
-- other-modules:
-- other-extensions:
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
build-depends:
base ^>=4.7 && <5,
azure-blob-storage
33 changes: 33 additions & 0 deletions azure-blob-storage/src/Azure/Types.hs
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE TypeApplications #-}
{-# LANGUAGE TypeOperators #-}

-- Introduce blob storage functions that run in IO
module Azure.Types
( BlobName (..)
, ContainerName (..)
, AccountName (..)
) where

import Data.ByteString.Lazy (ByteString)
import Data.Text (Text)
import GHC.Generics (Generic)
import Servant.API (ToHttpApiData)

newtype AccountName = AccountName
{ unAccountName :: Text
}
deriving stock (Eq, Show, Generic)
deriving (ToHttpApiData) via Text

newtype ContainerName = ContainerName
{ unContainerName :: Text
}
deriving stock (Eq, Show, Generic)
deriving (ToHttpApiData) via Text

newtype BlobName = BlobName
{ unBlobName :: Text
}
deriving stock (Eq, Show, Generic)
deriving (ToHttpApiData) via Text
4 changes: 4 additions & 0 deletions azure-blob-storage/test/Main.hs
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
module Main (main) where

main :: IO ()
main = putStrLn "Test suite not yet implemented."

0 comments on commit d060064

Please sign in to comment.