-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathLocale.swift
273 lines (230 loc) Β· 7.42 KB
/
Locale.swift
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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
import AsyncHTTPClient
import Foundation
import NIO
import JSONCodable
import AppwriteEnums
import AppwriteModels
/// The Locale service allows you to customize your app based on your users' location.
open class Locale: Service {
///
/// Get user locale
///
/// Get the current user location based on IP. Returns an object with user
/// country code, country name, continent name, continent code, ip address and
/// suggested currency. You can use the locale header to get the data in a
/// supported language.
///
/// ([IP Geolocation by DB-IP](https://db-ip.com))
///
/// @throws Exception
/// @return array
///
open func get(
) async throws -> AppwriteModels.Locale {
let apiPath: String = "/locale"
let apiParams: [String: Any] = [:]
let apiHeaders: [String: String] = [
"content-type": "application/json"
]
let converter: (Any) -> AppwriteModels.Locale = { response in
return AppwriteModels.Locale.from(map: response as! [String: Any])
}
return try await client.call(
method: "GET",
path: apiPath,
headers: apiHeaders,
params: apiParams,
converter: converter
)
}
///
/// List locale codes
///
/// List of all locale codes in [ISO
/// 639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes).
///
/// @throws Exception
/// @return array
///
open func listCodes(
) async throws -> AppwriteModels.LocaleCodeList {
let apiPath: String = "/locale/codes"
let apiParams: [String: Any] = [:]
let apiHeaders: [String: String] = [
"content-type": "application/json"
]
let converter: (Any) -> AppwriteModels.LocaleCodeList = { response in
return AppwriteModels.LocaleCodeList.from(map: response as! [String: Any])
}
return try await client.call(
method: "GET",
path: apiPath,
headers: apiHeaders,
params: apiParams,
converter: converter
)
}
///
/// List continents
///
/// List of all continents. You can use the locale header to get the data in a
/// supported language.
///
/// @throws Exception
/// @return array
///
open func listContinents(
) async throws -> AppwriteModels.ContinentList {
let apiPath: String = "/locale/continents"
let apiParams: [String: Any] = [:]
let apiHeaders: [String: String] = [
"content-type": "application/json"
]
let converter: (Any) -> AppwriteModels.ContinentList = { response in
return AppwriteModels.ContinentList.from(map: response as! [String: Any])
}
return try await client.call(
method: "GET",
path: apiPath,
headers: apiHeaders,
params: apiParams,
converter: converter
)
}
///
/// List countries
///
/// List of all countries. You can use the locale header to get the data in a
/// supported language.
///
/// @throws Exception
/// @return array
///
open func listCountries(
) async throws -> AppwriteModels.CountryList {
let apiPath: String = "/locale/countries"
let apiParams: [String: Any] = [:]
let apiHeaders: [String: String] = [
"content-type": "application/json"
]
let converter: (Any) -> AppwriteModels.CountryList = { response in
return AppwriteModels.CountryList.from(map: response as! [String: Any])
}
return try await client.call(
method: "GET",
path: apiPath,
headers: apiHeaders,
params: apiParams,
converter: converter
)
}
///
/// List EU countries
///
/// List of all countries that are currently members of the EU. You can use the
/// locale header to get the data in a supported language.
///
/// @throws Exception
/// @return array
///
open func listCountriesEU(
) async throws -> AppwriteModels.CountryList {
let apiPath: String = "/locale/countries/eu"
let apiParams: [String: Any] = [:]
let apiHeaders: [String: String] = [
"content-type": "application/json"
]
let converter: (Any) -> AppwriteModels.CountryList = { response in
return AppwriteModels.CountryList.from(map: response as! [String: Any])
}
return try await client.call(
method: "GET",
path: apiPath,
headers: apiHeaders,
params: apiParams,
converter: converter
)
}
///
/// List countries phone codes
///
/// List of all countries phone codes. You can use the locale header to get the
/// data in a supported language.
///
/// @throws Exception
/// @return array
///
open func listCountriesPhones(
) async throws -> AppwriteModels.PhoneList {
let apiPath: String = "/locale/countries/phones"
let apiParams: [String: Any] = [:]
let apiHeaders: [String: String] = [
"content-type": "application/json"
]
let converter: (Any) -> AppwriteModels.PhoneList = { response in
return AppwriteModels.PhoneList.from(map: response as! [String: Any])
}
return try await client.call(
method: "GET",
path: apiPath,
headers: apiHeaders,
params: apiParams,
converter: converter
)
}
///
/// List currencies
///
/// List of all currencies, including currency symbol, name, plural, and
/// decimal digits for all major and minor currencies. You can use the locale
/// header to get the data in a supported language.
///
/// @throws Exception
/// @return array
///
open func listCurrencies(
) async throws -> AppwriteModels.CurrencyList {
let apiPath: String = "/locale/currencies"
let apiParams: [String: Any] = [:]
let apiHeaders: [String: String] = [
"content-type": "application/json"
]
let converter: (Any) -> AppwriteModels.CurrencyList = { response in
return AppwriteModels.CurrencyList.from(map: response as! [String: Any])
}
return try await client.call(
method: "GET",
path: apiPath,
headers: apiHeaders,
params: apiParams,
converter: converter
)
}
///
/// List languages
///
/// List of all languages classified by ISO 639-1 including 2-letter code, name
/// in English, and name in the respective language.
///
/// @throws Exception
/// @return array
///
open func listLanguages(
) async throws -> AppwriteModels.LanguageList {
let apiPath: String = "/locale/languages"
let apiParams: [String: Any] = [:]
let apiHeaders: [String: String] = [
"content-type": "application/json"
]
let converter: (Any) -> AppwriteModels.LanguageList = { response in
return AppwriteModels.LanguageList.from(map: response as! [String: Any])
}
return try await client.call(
method: "GET",
path: apiPath,
headers: apiHeaders,
params: apiParams,
converter: converter
)
}
}