-
Notifications
You must be signed in to change notification settings - Fork 0
/
Domain.fs
208 lines (149 loc) · 3.68 KB
/
Domain.fs
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
module FreshBooks2Harvest.Domain
open System
open System.IO
type FreshBooksAuthorizationConfig = {
clientId : string
clientSecret : string
authorizationCode : string
redirectUrl : string
}
module FreshBooksAuthorizationConfig =
let create clientId clientSecret authorizationCode redirectUrl = {
clientId = clientId
clientSecret = clientSecret
authorizationCode = authorizationCode
redirectUrl = redirectUrl
}
type AuthorizationConfig = {
freshBooks : FreshBooksAuthorizationConfig
}
module AuthorizationConfig =
let create freshBooks = {
freshBooks = freshBooks
}
type Config = {
dataDir : DirectoryInfo
auth : AuthorizationConfig
}
module Config =
let create dataDir auth = {
dataDir = dataDir
auth = auth
}
type TokenRequest = {
clientId : string
clientSecret : string
code : string
redirectUrl : string
}
module TokenRequest =
let create clientId clientSecret code redirectUrl = {
clientId = clientId
clientSecret = clientSecret
code = code
redirectUrl = redirectUrl
}
type TokenResponse = {
accessToken : string
createdAt : DateTimeOffset
expiresIn : TimeSpan
refreshToken : string
scope : string
tokenType : string
}
module TokenResponse =
let create accessToken createdAt expiresIn refreshToken scope tokenType = {
accessToken = accessToken
createdAt = createdAt
expiresIn = expiresIn
refreshToken = refreshToken
scope = scope
tokenType = tokenType
}
type Business = {
accountId : string
id : string
}
module Business =
let create accountId id = {
accountId = accountId
id = id
}
type Client = {
id : string
organization : string
}
module Client =
let create id organization = {
id = id
organization = organization
}
type Service = {
id : string
name : string
}
module Service =
let create id name = {
id = id
name = name
}
type Project = {
client : Client
id : string
services : string list
title : string
}
module Project =
let create client id services title = {
client = client
id = id
services = services
title = title
}
type TimeEntry = {
billed : bool
client : Client
duration : TimeSpan
harvestId : string option
id : string
isLogged : bool
note : string
project : Project
serviceId : string
startedAt : DateTimeOffset
}
module TimeEntry =
let create billed client duration harvestId id isLogged note project serviceId startedAt = {
billed = billed
client = client
duration = duration
harvestId = harvestId
id = id
isLogged = isLogged
note = note
project = project
serviceId = serviceId
startedAt = startedAt
}
type ExternalSource =
| ConfigFile
| DataDir
type JsonEntity =
| Config
type FreshBooksAuthField =
| ClientId
| ClientSecret
| AuthorizationCode
| RedirectUrl
type AuthField =
| FreshBooks
| FreshBooksChild of FreshBooksAuthField
type ConfigField =
| DataDir
| Auth
| AuthChild of AuthField
type Error =
| ConfigInvalid of (ConfigField * Error)
| IoError of (ExternalSource * Error)
| JsonInvalid of (JsonEntity * Error)
| Pure of string