-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrespond.go
141 lines (105 loc) · 3.86 KB
/
respond.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
137
138
139
140
141
package sshclient
import (
"encoding/json"
"github.com/khorevaa/go-v8platform/agent/client/errors"
"strings"
)
type RespondType string
type RespondErrorType string
const (
LogType RespondType = "log" // информационное сообщение.
SuccessType = "success" // операция успешно завершена.
ErrorType = "error" // операция завершена с ошибкой.
CanceledType = "canceled" // операция отменена
QuestionType = "question" // вопрос пользователю
DbstruType = "dbstru" // информация о процессе реструктуризации
LoadingIssueType = "loading-issue" // ошибки и предупреждения, накопленные за время загрузки конфигурации из файлов
ProgressType = "progress" // информация о прогрессе выполнения команды
ExtensionInfoType = "extension-info" // информация о расширении, которое находится в информационной базе
UnknownType = "unknown"
)
var UnknownRespond = Respond{Type: UnknownType}
type Respond struct {
Type RespondType `json:"type, not_null"`
ErrorType RespondErrorType `json:"error-type"`
Message string `json:"message"`
Body json.RawMessage `json:"body"`
}
func (res Respond) IsSuccess() bool {
return res.Type == SuccessType
}
func (res Respond) IsError() bool {
return res.Type == ErrorType
}
func (res Respond) IsProgress() bool {
return res.Type == ProgressType
}
func (res Respond) Error() error {
if res.Type != ErrorType {
return nil
}
errType := res.ErrorType
switch errType {
case "UnknownError":
return errors.UnknownError.New(res.Message)
case "DesignerNotConnectedToInfoBase":
return errors.DesignerNotConnectedToInfoBase.New(res.Message)
case "DesignerAlreadyConnectedToInfoBase":
return errors.DesignerAlreadyConnectedToInfoBase.New(res.Message)
case "CommandFormatError":
return errors.CommandFormatError.New(res.Message)
case "DBRestructInfo":
return errors.DBRestructInfo.New(res.Message)
case "InfoBaseNotFound":
return errors.InfoBaseNotFound.New(res.Message)
case "AdministrationAccessRightRequired":
return errors.AdministrationAccessRightRequired.New(res.Message)
case "ConfigFilesError":
return errors.ConfigFilesError.New(res.Message)
case "DesignerAlreadyStarted":
return errors.DesignerAlreadyStarted.New(res.Message)
case "InfoBaseExclusiveLockRequired":
return errors.InfoBaseExclusiveLockRequired.New(res.Message)
case "LanguageNotFound":
return errors.LanguageNotFound.New(res.Message)
case "ExtensionWithDataIsActive":
return errors.ExtensionWithDataIsActive.New(res.Message)
case "ExtensionNotFound":
return errors.ExtensionNotFound.New(res.Message)
}
return nil
}
func (res Respond) ReadBody(t interface{}) error {
err := json.Unmarshal(res.Body, &t)
if err != nil {
return err
}
return nil
}
type ProgressInfo struct {
Message string `json:"message"`
Percent int `json:"percent"`
}
type LoadingIssueLevel string
const (
LoadingIssueLevelWarning LoadingIssueLevel = "warning"
LoadingIssueLevelError = "error"
)
type LoadingIssue struct {
Message string `json:"message"`
Level LoadingIssueLevel `json:"level"`
}
func readRespond(data []byte) ([]Respond, error) {
// json data
var r []Respond
// unmarshall it
err := json.Unmarshal(data, &r)
if err != nil {
return r, err
}
return r, nil
}
func readRespondString(str string) (r []Respond, err error) {
str = strings.ReplaceAll(str, "][", ",")
return readRespond([]byte(str))
}