-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathresponse.go
126 lines (109 loc) · 3.76 KB
/
response.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
package imap
// https://www.ietf.org/rfc/rfc3501.txt
// Response is a struct representing an IMAP response
type Response struct {
Tag string
Status *ResponseStatus
Code *ResponseCode
Text string
Done func()
}
// ResponseStatus represents an IMAP response status
type ResponseStatus int
// ResponseCode represents an IMAP response code
type ResponseCode string
const (
// ResponseOK represents an OK response
ResponseOK = ResponseStatus(iota)
// ResponseNO represents a NO response
ResponseNO
// ResponseBAD represents a BAD response
ResponseBAD
// ResponsePREAUTH represents a PREAUTH response
ResponsePREAUTH
// ResponseBYE represents a BYE response
ResponseBYE
)
// ResponseStatusMapping is the text representation of a ResponseStatus
var ResponseStatusMapping = map[ResponseStatus]string{
ResponseOK: "OK",
ResponseNO: "NO",
ResponseBAD: "BAD",
ResponsePREAUTH: "PREAUTH",
ResponseBYE: "BYE",
}
const (
// ALERT represents the ALERT response code
ALERT = ResponseCode("ALERT")
// BADCHARSET represents the BADCHARSET response code
BADCHARSET = ResponseCode("BADCHARSET")
// CAPABILITY represents the CAPABILITY response code
CAPABILITY = ResponseCode("CAPABILITY")
// PARSE represents the PARSE response code
PARSE = ResponseCode("PARSE")
// PERMANENTFLAGS represents the PERMANENTFLAGS response code
PERMANENTFLAGS = ResponseCode("PERMANENTFLAGS")
// READONLY represents the READ-ONLY response code
READONLY = ResponseCode("READ-ONLY")
// READWRITE represents the READ-WRITE response code
READWRITE = ResponseCode("READ-WRITE")
// TRYCREATE represents the TRYCREATE response code
TRYCREATE = ResponseCode("TRYCREATE")
// UIDNEXT represents the UIDNEXT response code
UIDNEXT = ResponseCode("UIDNEXT")
// UIDVALIDITY represents the UIDVALIDITY response code
UIDVALIDITY = ResponseCode("UIDVALIDITY")
// UNSEEN represents the UNSEEN response code
UNSEEN = ResponseCode("UNSEEN")
)
// Code returns a pointer to a ResponseCode value
func Code(r ResponseCode) *ResponseCode {
return &r
}
// Status returns a pointer to a ResponseStatus value
func Status(r ResponseStatus) *ResponseStatus {
return &r
}
// Lines returns the formatted SMTP reply
func (r Response) Lines() []string {
l := r.Tag
if r.Status != nil {
l += " " + ResponseStatusMapping[*r.Status]
}
if c := r.Code; c != nil && len(*c) > 0 {
l += " " + string(*c)
}
if len(r.Text) > 0 {
l += " " + r.Text
}
l += "\r\n"
return []string{l}
}
// ResponseIdent returns an OK server ready response
func ResponseIdent(revision, hostname, ident string) *Response {
return &Response{"*", Status(ResponseOK), nil, revision + " " + ident + " (" + hostname + ") server ready", nil}
}
// ResponseLineTooLong returns a BAD error response
func ResponseLineTooLong(tag string) *Response {
return &Response{tag, Status(ResponseBAD), nil, "line exceeded maximum length", nil}
}
// ResponseUnrecognisedCommand returns a tagged unrecognised command response
func ResponseUnrecognisedCommand(tag string) *Response {
return &Response{tag, Status(ResponseBAD), nil, "unrecognised command", nil}
}
// ResponseSyntaxError returns a tagged syntax error response
func ResponseSyntaxError(tag string) *Response {
return &Response{tag, Status(ResponseBAD), nil, "syntax error", nil}
}
// ResponseReadyToStartTLS returns a tagged OK response
func ResponseReadyToStartTLS(tag string, done func()) *Response {
return &Response{tag, Status(ResponseOK), nil, "ready to start TLS", done}
}
// ResponseBye returns an untagged BYE response
func ResponseBye() *Response {
return &Response{"*", Status(ResponseBYE), nil, "", nil}
}
// ResponseError returns a BAD response containing the error text
func ResponseError(tag string, err error) *Response {
return &Response{tag, Status(ResponseBAD), nil, err.Error(), nil}
}