2018-07-09 00:02:29 +00:00
|
|
|
package connectwise
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
2018-07-09 04:11:56 +00:00
|
|
|
"time"
|
2018-07-09 00:02:29 +00:00
|
|
|
)
|
|
|
|
|
2018-07-10 02:48:02 +00:00
|
|
|
//Calendar is a struct to hold calendar data extracted from JSON
|
2018-07-09 00:02:29 +00:00
|
|
|
type Calendar struct {
|
|
|
|
ID int `json:"id"`
|
|
|
|
Name string `json:"name"`
|
|
|
|
HolidayList struct {
|
|
|
|
ID int `json:"id"`
|
|
|
|
Name string `json:"name"`
|
|
|
|
Info struct {
|
|
|
|
HolidayListHref string `json:"holidayList_href"`
|
|
|
|
} `json:"_info"`
|
|
|
|
} `json:"holidayList"`
|
|
|
|
MondayStartTime string `json:"mondayStartTime"`
|
|
|
|
MondayEndTime string `json:"mondayEndTime"`
|
|
|
|
TuesdayStartTime string `json:"tuesdayStartTime"`
|
|
|
|
TuesdayEndTime string `json:"tuesdayEndTime"`
|
|
|
|
WednesdayStartTime string `json:"wednesdayStartTime"`
|
|
|
|
WednesdayEndTime string `json:"wednesdayEndTime"`
|
|
|
|
ThursdayStartTime string `json:"thursdayStartTime"`
|
|
|
|
ThursdayEndTime string `json:"thursdayEndTime"`
|
|
|
|
FridayStartTime string `json:"fridayStartTime"`
|
|
|
|
FridayEndTime string `json:"fridayEndTime"`
|
|
|
|
Info struct {
|
|
|
|
LastUpdated string `json:"lastUpdated"`
|
|
|
|
UpdatedBy string `json:"updatedBy"`
|
|
|
|
} `json:"_info"`
|
|
|
|
}
|
|
|
|
|
2018-07-10 02:48:02 +00:00
|
|
|
//ScheduleEntry is a struct to hold extracted JSON data
|
2018-07-09 00:02:29 +00:00
|
|
|
type ScheduleEntry struct {
|
|
|
|
ID int `json:"id"`
|
|
|
|
ObjectID int `json:"objectId"`
|
|
|
|
Name string `json:"name"`
|
|
|
|
Member struct {
|
|
|
|
ID int `json:"id"`
|
|
|
|
Identifier string `json:"identifier"`
|
|
|
|
Name string `json:"name"`
|
|
|
|
Info struct {
|
|
|
|
MemberHref string `json:"member_href"`
|
|
|
|
} `json:"_info"`
|
|
|
|
} `json:"member,omitempty"`
|
2018-07-09 04:11:56 +00:00
|
|
|
DateStart time.Time `json:"dateStart,omitempty"`
|
|
|
|
DateEnd time.Time `json:"dateEnd,omitempty"`
|
2018-07-09 00:02:29 +00:00
|
|
|
Reminder struct {
|
|
|
|
ID int `json:"id"`
|
|
|
|
Name string `json:"name"`
|
|
|
|
} `json:"reminder,omitempty"`
|
|
|
|
Status struct {
|
|
|
|
ID int `json:"id"`
|
|
|
|
Name string `json:"name"`
|
|
|
|
Info struct {
|
|
|
|
StatusHref string `json:"status_href"`
|
|
|
|
} `json:"_info"`
|
|
|
|
} `json:"status,omitempty"`
|
|
|
|
Type struct {
|
|
|
|
ID int `json:"id"`
|
|
|
|
Identifier string `json:"identifier"`
|
|
|
|
Info struct {
|
|
|
|
TypeHref string `json:"type_href"`
|
|
|
|
} `json:"_info"`
|
|
|
|
} `json:"type"`
|
|
|
|
DoneFlag bool `json:"doneFlag"`
|
|
|
|
AcknowledgedFlag bool `json:"acknowledgedFlag"`
|
|
|
|
OwnerFlag bool `json:"ownerFlag"`
|
|
|
|
MeetingFlag bool `json:"meetingFlag"`
|
|
|
|
MobileGUID string `json:"mobileGuid"`
|
|
|
|
Hours float64 `json:"hours"`
|
|
|
|
Info struct {
|
|
|
|
UpdatedBy string `json:"updatedBy"`
|
|
|
|
ObjectMobileGUID string `json:"objectMobileGuid"`
|
|
|
|
} `json:"_info"`
|
|
|
|
}
|
|
|
|
|
|
|
|
//GetCalendars returns a list of global connectwise calendars - not used for member calendars
|
|
|
|
func (cw *Site) GetCalendars() (*[]Calendar, error) {
|
|
|
|
req := cw.NewRequest("/schedule/calendars", "GET", nil)
|
|
|
|
err := req.Do()
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("request failed for %s: %s", req.RestAction, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
calendar := &[]Calendar{}
|
|
|
|
err = json.Unmarshal(req.Body, calendar)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("failed to unmarshal body into struct: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return calendar, nil
|
|
|
|
}
|
|
|
|
|
2018-07-09 04:11:56 +00:00
|
|
|
//ScheduleEntryOnDayCount returns the number of companies in ConnectWise
|
|
|
|
func (cw *Site) ScheduleEntryOnDayCount(day time.Time) (int, error) {
|
2018-07-09 00:02:29 +00:00
|
|
|
req := cw.NewRequest("/schedule/entries/count", "GET", nil)
|
2018-07-09 04:11:56 +00:00
|
|
|
req.PageSize = 3000
|
|
|
|
tom := day.Add(time.Hour * 24)
|
|
|
|
fmt.Printf("%d-%d-%dT00:00:00Z", day.Year(), day.Month(), day.Day())
|
|
|
|
fmt.Println(tom)
|
2018-07-09 01:07:39 +00:00
|
|
|
req.URLValues.Add("conditions", "datestart > [2018-07-26T00:00:00Z] and dateend < [2018-07-27T00:00:00Z]")
|
2018-07-09 00:02:29 +00:00
|
|
|
err := req.Do()
|
|
|
|
if err != nil {
|
|
|
|
return 0, fmt.Errorf("request failed for %s: %s", req.RestAction, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
count := &Count{}
|
|
|
|
err = json.Unmarshal(req.Body, count)
|
|
|
|
if err != nil {
|
|
|
|
return 0, fmt.Errorf("failed to unmarshal body into struct: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return count.Count, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
//GetScheduleEntriesOnDay expects a date in the format of "YYYY-MM-DD" and returns a pointer to a slice of ScheduleEntries on that day
|
2018-07-09 04:11:56 +00:00
|
|
|
func (cw *Site) GetScheduleEntriesOnDay(day time.Time) (*[]ScheduleEntry, error) {
|
2018-07-09 00:02:29 +00:00
|
|
|
req := cw.NewRequest("/schedule/entries", "GET", nil)
|
2018-07-09 01:07:39 +00:00
|
|
|
req.URLValues.Add("orderBy", "dateStart asc")
|
2018-07-09 04:11:56 +00:00
|
|
|
tom := day.Add(time.Hour * 24)
|
|
|
|
req.URLValues.Add("conditions", fmt.Sprintf("datestart > [%d-%d-%dT00:00:00Z] and dateend < [%d-%d-%dT00:00:00Z]", day.Year(), day.Month(), day.Day(), tom.Year(), tom.Month(), tom.Day()))
|
2018-07-09 01:07:39 +00:00
|
|
|
|
2018-07-09 00:02:29 +00:00
|
|
|
err := req.Do()
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("request failed for %s: %s", req.RestAction, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
scheduleEntry := &[]ScheduleEntry{}
|
|
|
|
err = json.Unmarshal(req.Body, scheduleEntry)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("failed to unmarshal body into struct: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return scheduleEntry, nil
|
|
|
|
}
|
2018-10-12 03:48:47 +00:00
|
|
|
|
|
|
|
func (cw *Site) GetScheduleEntryByID(scheduleEntryID int) (*ScheduleEntry, error) {
|
|
|
|
req := cw.NewRequest(fmt.Sprintf("/schedule/entries/%d", scheduleEntryID), "GET", nil)
|
|
|
|
err := req.Do()
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("request failed for %s: %s", req.RestAction, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
scheduleEntry := &ScheduleEntry{}
|
|
|
|
err = json.Unmarshal(req.Body, scheduleEntry)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("failed to unmarshal body into struct: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return scheduleEntry, nil
|
|
|
|
}
|