-
Notifications
You must be signed in to change notification settings - Fork 196
Expand file tree
/
Copy pathSecrets.hs
More file actions
141 lines (118 loc) · 4.34 KB
/
Secrets.hs
File metadata and controls
141 lines (118 loc) · 4.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
{-# LANGUAGE DataKinds #-}
{-# LANGUAGE FlexibleInstances #-}
{-# LANGUAGE KindSignatures #-}
{-# LANGUAGE RecordWildCards #-}
module GitHub.Data.Actions.Secrets (
OrganizationSecret(..),
PublicKey(..),
SetSecret(..),
SetRepoSecret(..),
SelectedRepo(..),
SetSelectedRepositories(..),
RepoSecret(..),
Environment(..),
) where
import GitHub.Data.Id (Id)
import GitHub.Internal.Prelude
import Prelude ()
import Data.Maybe (maybeToList)
import GitHub.Data.Actions.Common (WithTotalCount (WithTotalCount))
import GitHub.Data.Name (Name)
import GitHub.Data.Repos (Repo)
-------------------------------------------------------------------------------
-- Secret
-------------------------------------------------------------------------------
data OrganizationSecret = OrganizationSecret
{ organizationSecretName :: !(Name OrganizationSecret)
, organizationSecretCreatedAt :: !UTCTime
, organizationSecretUpdatedAt :: !UTCTime
, organizationSecretVisibility :: !Text
}
deriving (Show, Data, Eq, Ord, Generic)
data PublicKey = PublicKey
{ publicKeyId :: !Text
, publicKeyKey :: !Text
}
deriving (Show, Data, Eq, Ord, Generic)
data SetSecret = SetSecret
{ setSecretPublicKeyId :: !Text
, setSecretEncryptedValue :: !Text
, setSecretVisibility :: !Text
, setSecretSelectedRepositoryIds :: !(Maybe [Id Repo])
}
deriving (Show, Data, Eq, Ord, Generic)
data SetRepoSecret = SetRepoSecret
{ setRepoSecretPublicKeyId :: !Text
, setRepoSecretEncryptedValue :: !Text
}
deriving (Show, Data, Eq, Ord, Generic)
data SelectedRepo = SelectedRepo
{ selectedRepoRepoId :: !(Id Repo)
, selectedRepoRepoName :: !(Name Repo)
}
deriving (Show, Data, Eq, Ord, Generic)
data SetSelectedRepositories = SetSelectedRepositories
{ setSelectedRepositoriesRepositoryIds :: ![Id Repo]
}
deriving (Show, Data, Eq, Ord, Generic)
data RepoSecret = RepoSecret
{ repoSecretName :: !(Name RepoSecret)
, repoSecretCreatedAt :: !UTCTime
, repoSecretUpdatedAt :: !UTCTime
}
deriving (Show, Data, Eq, Ord, Generic)
-- TODO move somewhere else?
data Environment = Environment
deriving (Show, Data, Eq, Ord, Generic)
-------------------------------------------------------------------------------
-- JSON instances
-------------------------------------------------------------------------------
instance FromJSON OrganizationSecret where
parseJSON = withObject "Secret" $ \o -> OrganizationSecret
<$> o .: "name"
<*> o .: "created_at"
<*> o .: "updated_at"
<*> o .: "visibility"
instance FromJSON (WithTotalCount OrganizationSecret) where
parseJSON = withObject "SecretList" $ \o -> WithTotalCount
<$> o .: "secrets"
<*> o .: "total_count"
instance FromJSON PublicKey where
parseJSON = withObject "PublicKey" $ \o -> PublicKey
<$> o .: "key_id"
<*> o .: "key"
instance FromJSON SelectedRepo where
parseJSON = withObject "SelectedRepo" $ \o -> SelectedRepo
<$> o .: "id"
<*> o .: "name"
instance ToJSON SetSelectedRepositories where
toJSON SetSelectedRepositories{..} =
object
[ "selected_repository_ids" .= setSelectedRepositoriesRepositoryIds
]
instance ToJSON SetSecret where
toJSON SetSecret{..} =
object $
[ "encrypted_value" .= setSecretEncryptedValue
, "key_id" .= setSecretPublicKeyId
, "visibility" .= setSecretVisibility
] <> maybeToList (fmap ("selected_repository_ids" .=) setSecretSelectedRepositoryIds)
instance ToJSON SetRepoSecret where
toJSON SetRepoSecret{..} =
object
[ "encrypted_value" .= setRepoSecretEncryptedValue
, "key_id" .= setRepoSecretPublicKeyId
]
instance FromJSON (WithTotalCount SelectedRepo) where
parseJSON = withObject "SelectedRepoList" $ \o -> WithTotalCount
<$> o .: "repositories"
<*> o .: "total_count"
instance FromJSON RepoSecret where
parseJSON = withObject "RepoSecret" $ \o -> RepoSecret
<$> o .: "name"
<*> o .: "created_at"
<*> o .: "updated_at"
instance FromJSON (WithTotalCount RepoSecret) where
parseJSON = withObject "RepoSecretList" $ \o -> WithTotalCount
<$> o .: "secrets"
<*> o .: "total_count"