96 lines
2.5 KiB
Go
96 lines
2.5 KiB
Go
package amo
|
|
|
|
import (
|
|
"fmt"
|
|
"vultras.su/core/amo/api"
|
|
"vultras.su/core/amo/companies"
|
|
"vultras.su/core/amo/contacts"
|
|
"vultras.su/core/amo/leads"
|
|
"vultras.su/core/amo/users"
|
|
)
|
|
|
|
type IAmoClient interface {
|
|
GetUser(userId string) (*users.User, error)
|
|
GetLead(leadId string, query string) (*leads.Lead, error)
|
|
UpdateLead(lead *leads.Lead) error
|
|
GetCompany(companyId string, query string) (*companies.Company, error)
|
|
UpdateCompany(company *companies.Company) error
|
|
GetContact(contactId string, query string) (*contacts.Contact, error)
|
|
UpdateContact(contact *contacts.Contact) error
|
|
}
|
|
|
|
type TokenPair = api.TokenPair
|
|
type Options = api.ClientOptions
|
|
|
|
type Client struct {
|
|
Api *api.Client
|
|
}
|
|
|
|
type OauthTokenResponse = api.OauthTokenResponse
|
|
|
|
func NewAmoClient(options *Options ) (*Client, *TokenPair, error) {
|
|
apiClient, pair, err := api.NewClient(options)
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
|
|
return &Client{
|
|
Api: apiClient,
|
|
}, pair, nil
|
|
}
|
|
|
|
func (client *Client) updateEntity(url string, id int, body interface{}) error {
|
|
err := client.Api.Patch(fmt.Sprintf("%s/%d", url, id), body, nil)
|
|
return err
|
|
}
|
|
|
|
func (client *Client) GetUser(userId int) (*users.User, error) {
|
|
user := new(users.User)
|
|
err := client.Api.Get(fmt.Sprintf("/api/v4/users/%d", userId), user)
|
|
return user, err
|
|
}
|
|
|
|
func (client *Client) GetLead(leadId string, query string) (*leads.Lead, error) {
|
|
deal := new(leads.Lead)
|
|
resource := fmt.Sprintf("/api/v4/leads/%s", leadId)
|
|
if len(query) != 0 {
|
|
resource = resource + "?" + query
|
|
}
|
|
|
|
err := client.Api.Get(resource, deal)
|
|
return deal, err
|
|
}
|
|
|
|
func (client *Client) UpdateLead(lead *leads.Lead) error {
|
|
return client.updateEntity("/api/v4/leads", lead.Id, lead)
|
|
}
|
|
|
|
func (client *Client) GetCompany(companyId string, query string) (*companies.Company, error) {
|
|
deal := new(companies.Company)
|
|
resource := fmt.Sprintf("/api/v4/companies/%s", companyId)
|
|
if len(query) != 0 {
|
|
resource = resource + "?" + query
|
|
}
|
|
|
|
err := client.Api.Get(resource, deal)
|
|
return deal, err
|
|
}
|
|
|
|
func (client *Client) UpdateCompany(company *companies.Company) error {
|
|
return client.updateEntity("/api/v4/companies", company.Id, company)
|
|
}
|
|
|
|
func (client *Client) GetContact(contactId string, query string) (*contacts.Contact, error) {
|
|
deal := new(contacts.Contact)
|
|
resource := fmt.Sprintf("/api/v4/contacts/%s", contactId)
|
|
if query != "" {
|
|
resource = resource + "?" + query
|
|
}
|
|
|
|
err := client.Api.Get(resource, deal)
|
|
return deal, err
|
|
}
|
|
|
|
func (client *Client) UpdateContact(contact *contacts.Contact) error {
|
|
return client.updateEntity("/api/v4/contacts", contact.Id, contact)
|
|
}
|