forked from mhewedy/ews
-
Notifications
You must be signed in to change notification settings - Fork 0
/
common.go
117 lines (94 loc) · 2.97 KB
/
common.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
package ews
import (
"fmt"
"time"
)
type ResponseClass string
const (
ResponseClassSuccess ResponseClass = "Success"
ResponseClassWarning ResponseClass = "Warning"
ResponseClassError ResponseClass = "Error"
)
type Response struct {
ResponseClass ResponseClass `xml:"ResponseClass,attr"`
MessageText string `xml:"MessageText"`
ResponseCode string `xml:"ResponseCode"`
MessageXml MessageXml `xml:"MessageXml"`
}
type EmailAddress struct {
Name string `xml:"Name"`
EmailAddress string `xml:"EmailAddress"`
RoutingType string `xml:"RoutingType"`
MailboxType string `xml:"MailboxType"`
ItemId ItemId `xml:"ItemId"`
}
type MessageXml struct {
ExceptionType string `xml:"ExceptionType"`
ExceptionCode string `xml:"ExceptionCode"`
ExceptionServerName string `xml:"ExceptionServerName"`
ExceptionMessage string `xml:"ExceptionMessage"`
}
type DistinguishedFolderId struct {
// List of values:
// https://docs.microsoft.com/en-us/exchange/client-developer/web-service-reference/distinguishedfolderid
Id string `xml:"Id,attr"`
}
type Persona struct {
PersonaId PersonaId `xml:"PersonaId"`
DisplayName string `xml:"DisplayName"`
Title string `xml:"Title"`
Department string `xml:"Department"`
Departments Departments `xml:"Departments"`
EmailAddress EmailAddress `xml:"EmailAddress"`
RelevanceScore int `xml:"RelevanceScore"`
BusinessPhoneNumbers BusinessPhoneNumbers `xml:"BusinessPhoneNumbers"`
MobilePhones MobilePhones `xml:"MobilePhones"`
OfficeLocations OfficeLocations `xml:"OfficeLocations"`
}
type PersonaId struct {
Id string `xml:"Id,attr"`
}
type BusinessPhoneNumbers struct {
PhoneNumberAttributedValue PhoneNumberAttributedValue `xml:"PhoneNumberAttributedValue"`
}
type MobilePhones struct {
PhoneNumberAttributedValue PhoneNumberAttributedValue `xml:"PhoneNumberAttributedValue"`
}
type Value struct {
Number string `json:"Number"`
Type string `json:"Type"`
}
type PhoneNumberAttributedValue struct {
Value Value `json:"Value"`
}
type OfficeLocations struct {
StringAttributedValue StringAttributedValue `xml:"StringAttributedValue"`
}
type Departments struct {
StringAttributedValue StringAttributedValue `xml:"StringAttributedValue"`
}
type StringAttributedValue struct {
Value string `json:"Value"`
}
type Time string
func (t Time) ToTime() (time.Time, error) {
offset, err := getRFC3339Offset(time.Now())
if err != nil {
return time.Time{}, err
}
return time.Parse(time.RFC3339, string(t)+offset)
}
// return RFC3339 formatted offset, ex: +03:00 -03:30
func getRFC3339Offset(t time.Time) (string, error) {
_, offset := t.Zone()
i := int(float32(offset) / 36)
sign := "+"
if i < 0 {
i = -i
sign = "-"
}
hour := i / 100
min := i % 100
min = (60 * min) / 100
return fmt.Sprintf("%s%02d:%02d", sign, hour, min), nil
}