mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-04-13 20:07:41 -04:00
* make the JMAP internal API a bit more future-proof by passing ObjectType objects instead of the JMAP namespaces * remove the new attempt to contain operations even further using the Factory objects * move CalendarEvent operations to its own file, like everything else * fix email tests * ignore WS error when closing an already closed connection
96 lines
3.3 KiB
Go
96 lines
3.3 KiB
Go
package jmap
|
|
|
|
var NS_ADDRESSBOOKS = ns(JmapContacts)
|
|
|
|
func (j *Client) GetAddressbooks(accountId string, ids []string, ctx Context) (AddressBookGetResponse, SessionState, State, Language, Error) {
|
|
return get(j, "GetAddressbooks", MailboxType,
|
|
func(accountId string, ids []string) AddressBookGetCommand {
|
|
return AddressBookGetCommand{AccountId: accountId, Ids: ids}
|
|
},
|
|
AddressBookGetResponse{},
|
|
identity1,
|
|
accountId, ids,
|
|
ctx,
|
|
)
|
|
}
|
|
|
|
type AddressBookChanges = ChangesTemplate[AddressBook]
|
|
|
|
// Retrieve Address Book changes since a given state.
|
|
// @apidoc addressbook,changes
|
|
func (j *Client) GetAddressbookChanges(accountId string, sinceState State, maxChanges uint, ctx Context) (AddressBookChanges, SessionState, State, Language, Error) {
|
|
return changesA(j, "GetAddressbookChanges", MailboxType,
|
|
func() AddressBookChangesCommand {
|
|
return AddressBookChangesCommand{AccountId: accountId, SinceState: sinceState, MaxChanges: uintPtr(maxChanges)}
|
|
},
|
|
AddressBookChangesResponse{},
|
|
AddressBookGetResponse{},
|
|
func(path string, rof string) AddressBookGetRefCommand {
|
|
return AddressBookGetRefCommand{
|
|
AccountId: accountId,
|
|
IdsRef: &ResultReference{
|
|
Name: CommandAddressBookChanges,
|
|
Path: path,
|
|
ResultOf: rof,
|
|
},
|
|
}
|
|
},
|
|
func(oldState, newState State, hasMoreChanges bool, created, updated []AddressBook, destroyed []string) AddressBookChanges {
|
|
return AddressBookChanges{
|
|
OldState: oldState,
|
|
NewState: newState,
|
|
HasMoreChanges: hasMoreChanges,
|
|
Created: created,
|
|
Updated: updated,
|
|
Destroyed: destroyed,
|
|
}
|
|
},
|
|
ctx,
|
|
)
|
|
}
|
|
|
|
func (j *Client) CreateAddressBook(accountId string, addressbook AddressBookChange, ctx Context) (*AddressBook, SessionState, State, Language, Error) {
|
|
return create(j, "CreateAddressBook", MailboxType,
|
|
func(accountId string, create map[string]AddressBookChange) AddressBookSetCommand {
|
|
return AddressBookSetCommand{AccountId: accountId, Create: create}
|
|
},
|
|
func(accountId string, ids string) AddressBookGetCommand {
|
|
return AddressBookGetCommand{AccountId: accountId, Ids: []string{ids}}
|
|
},
|
|
func(resp AddressBookSetResponse) map[string]*AddressBook {
|
|
return resp.Created
|
|
},
|
|
func(resp AddressBookGetResponse) []AddressBook {
|
|
return resp.List
|
|
},
|
|
accountId, addressbook,
|
|
ctx,
|
|
)
|
|
}
|
|
|
|
func (j *Client) DeleteAddressBook(accountId string, destroyIds []string, ctx Context) (map[string]SetError, SessionState, State, Language, Error) {
|
|
return destroy(j, "DeleteAddressBook", MailboxType,
|
|
func(accountId string, destroy []string) AddressBookSetCommand {
|
|
return AddressBookSetCommand{AccountId: accountId, Destroy: destroy}
|
|
},
|
|
AddressBookSetResponse{},
|
|
accountId, destroyIds,
|
|
ctx,
|
|
)
|
|
}
|
|
|
|
func (j *Client) UpdateAddressBook(accountId string, id string, changes AddressBookChange, ctx Context) (AddressBook, SessionState, State, Language, Error) {
|
|
return update(j, "UpdateAddressBook", MailboxType,
|
|
func(update map[string]PatchObject) AddressBookSetCommand {
|
|
return AddressBookSetCommand{AccountId: accountId, Update: update}
|
|
},
|
|
func(id string) AddressBookGetCommand {
|
|
return AddressBookGetCommand{AccountId: accountId, Ids: []string{id}}
|
|
},
|
|
func(resp AddressBookSetResponse) map[string]SetError { return resp.NotUpdated },
|
|
func(resp AddressBookGetResponse) AddressBook { return resp.List[0] },
|
|
id, changes,
|
|
ctx,
|
|
)
|
|
}
|