forked from lokalise/go-lokalise-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
svc_language.go
136 lines (110 loc) · 4.57 KB
/
svc_language.go
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
package lokalise
import (
"path"
"strconv"
)
const (
pathLanguages = "languages"
)
type LanguageService struct {
BaseService
}
// ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
// Service entity objects
// _____________________________________________________________________________________________________________________
type Language struct {
LangID int64 `json:"lang_id,omitempty"`
LangISO string `json:"lang_iso"`
LangName string `json:"lang_name,omitempty"`
IsRTL bool `json:"is_rtl,omitempty"`
IsWritable bool `json:"is_writable"`
PluralForms []string `json:"plural_forms,omitempty"`
}
// ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
// Service request/response objects
// _____________________________________________________________________________________________________________________
type ListLanguagesResponse struct {
Paged
WithProjectID
Languages []Language `json:"languages"`
}
type NewLanguage struct {
LangISO string `json:"lang_iso"`
CustomISO string `json:"custom_iso,omitempty"`
CustomName string `json:"custom_name,omitempty"`
CustomPluralForms []string `json:"custom_plural_forms,omitempty"`
}
type UpdateLanguage struct {
LangISO string `json:"lang_iso,omitempty"`
LangName string `json:"lang_name,omitempty"`
PluralForms []string `json:"plural_forms,omitempty"`
}
type CreateLanguageResponse struct {
WithProjectID
Languages []Language `json:"languages"`
}
type RetrieveLanguageResponse struct {
WithProjectID
Language Language `json:"language"`
}
type UpdateLanguageResponse struct {
WithProjectID
Language Language `json:"language"`
}
type DeleteLanguageResponse struct {
WithProjectID
LanguageDeleted bool `json:"language_deleted"`
}
// ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
// Service methods
// _____________________________________________________________________________________________________________________
func (c *LanguageService) ListSystem() (r ListLanguagesResponse, err error) {
url := path.Join("system", pathLanguages)
resp, err := c.getWithOptions(c.Ctx(), url, &r, c.PageOpts())
if err != nil {
return
}
applyPaged(resp, &r.Paged)
return r, apiError(resp)
}
func (c *LanguageService) ListProject(projectID string) (r ListLanguagesResponse, err error) {
url := path.Join(pathProjects, projectID, pathLanguages)
resp, err := c.getWithOptions(c.Ctx(), url, &r, c.PageOpts())
if err != nil {
return
}
applyPaged(resp, &r.Paged)
return r, apiError(resp)
}
func (c *LanguageService) Create(projectID string, languages []NewLanguage) (r CreateLanguageResponse, err error) {
url := path.Join(pathProjects, projectID, pathLanguages)
resp, err := c.post(c.Ctx(), url, &r, map[string]interface{}{"languages": languages})
if err != nil {
return
}
return r, apiError(resp)
}
func (c *LanguageService) Retrieve(projectID string, ID int64) (r RetrieveLanguageResponse, err error) {
url := path.Join(pathProjects, projectID, pathLanguages, strconv.FormatInt(ID, 10))
resp, err := c.get(c.Ctx(), url, &r)
if err != nil {
return
}
return r, apiError(resp)
}
func (c *LanguageService) Update(projectID string, ID int64, language UpdateLanguage) (r UpdateLanguageResponse, err error) {
url := path.Join(pathProjects, projectID, pathLanguages, strconv.FormatInt(ID, 10))
resp, err := c.put(c.Ctx(), url, &r, language)
if err != nil {
return
}
return r, apiError(resp)
}
func (c *LanguageService) Delete(projectID string, ID int64) (r DeleteLanguageResponse, err error) {
url := path.Join(pathProjects, projectID, pathLanguages, strconv.FormatInt(ID, 10))
resp, err := c.delete(c.Ctx(), url, &r)
if err != nil {
return
}
return r, apiError(resp)
}