-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrender.dhall
211 lines (190 loc) · 6.63 KB
/
render.dhall
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
209
210
211
let Prelude = https://prelude.dhall-lang.org/package.dhall
let Types = ./Types.dhall
let fieldRenderers =
{ webUrl =
λ(webUrl : Text) → "https://${webUrl}"
, email =
λ(email : Text) → "mailto:${email}"
, telephone =
λ(telephone : Text) → "tel:${telephone}"
, generic =
λ(generic : Text) → generic
}
let render
: Types.Security → Text
= λ ( security
: Types.Security
)
→ let beginSignedMessage
: Text
= Prelude.Optional.fold
Text
security.digitalSignature
Text
(λ(_ : Text) → "-----BEGIN PGP SIGNED MESSAGE-----\n")
""
let acknowledgements
: Text
= Prelude.Optional.fold
(List Types.Acknowledgement)
security.acknowledgements
Text
( λ(acknowledgements : List Types.Acknowledgement)
→ Prelude.List.fold
Text
( Prelude.List.map
Types.Acknowledgement
Text
( λ(acknowledgement : Types.Acknowledgement)
→ let text =
merge
{ WebURL =
fieldRenderers.webUrl
, Generic =
fieldRenderers.generic
}
acknowledgement
in ''
Acknowledgement: ${text}
''
)
acknowledgements
)
Text
( λ(thisAcknowledgement : Text)
→ λ(thatAcknowledgement : Text)
→ "${thisAcknowledgement}${thatAcknowledgement}"
)
""
)
""
let canonical
: Text
= Prelude.Optional.fold
Types.Canonical
security.canonical
Text
( λ(canonical : Types.Canonical)
→ let text =
merge
{ WebURL =
fieldRenderers.webUrl
, Generic =
fieldRenderers.generic
}
canonical
in ''
Canonical: ${text}
''
)
""
let contacts
: Text
= let render =
λ(contact : Types.Contact)
→ let text =
merge
{ WebURL =
fieldRenderers.webUrl
, Email =
fieldRenderers.email
, Telephone =
fieldRenderers.telephone
, Generic =
fieldRenderers.generic
}
contact
in ''
Contact: ${text}
''
let first = render security.contacts.first
let additional =
Prelude.List.fold
Text
( Prelude.List.map
Types.Contact
Text
render
security.contacts.additional
)
Text
( λ(thisContact : Text)
→ λ(thatContact : Text)
→ "${thisContact}${thatContact}"
)
""
in "${first}${additional}"
let encryption
: Text
= Prelude.Optional.fold
Types.Encryption
security.encryption
Text
( λ(encryption : Types.Encryption)
→ let text =
merge
{ WebURL =
fieldRenderers.webUrl
, Generic =
fieldRenderers.generic
}
encryption
in ''
Encryption: ${text}
''
)
""
let hiring
: Text
= Prelude.Optional.fold
Types.Hiring
security.hiring
Text
( λ(hiring : Types.Hiring)
→ let text =
merge
{ WebURL =
fieldRenderers.webUrl
, Generic =
fieldRenderers.generic
}
hiring
in ''
Hiring: ${text}
''
)
""
let preferredLanguages
: Text
= merge
{ NaturalCount =
λ ( preferredLanguages
: { additional : List Text, last : Text }
)
→ let text =
Prelude.List.fold
Text
preferredLanguages.additional
Text
( λ(thisLanguage : Text)
→ λ(thatLanguage : Text)
→ "${thisLanguage}, ${thatLanguage}"
)
preferredLanguages.last
in ''
Preferred-Languages: ${text}
''
, Empty =
""
}
security.preferredLanguages
let digitalSignature
: Text
= Prelude.Optional.fold
Text
security.digitalSignature
Text
(λ(digitalSignature : Text) → digitalSignature)
""
in "${beginSignedMessage}${acknowledgements}${canonical}${contacts}${encryption}${hiring}${preferredLanguages}${digitalSignature}"
in render