forked from sintanial/amocrm
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrepository_leads.go
106 lines (92 loc) · 5.63 KB
/
repository_leads.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
// The MIT License (MIT)
//
// Copyright (c) 2021 Alexey Khan
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
package amocrm
import (
"fmt"
"net/http"
)
type LeadEmbedded struct {
Tags []FieldValues `json:"tags,omitempty"`
Contacts []FieldValues `json:"contacts,omitempty"`
Companies []FieldValues `json:"companies,omitempty"`
}
type Lead struct {
Id int `json:"id,omitempty"`
Name string `json:"name,omitempty"` //Название сделки. Поле не является обязательным
Price int `json:"price,omitempty"` //Бюджет сделки. Поле не является обязательным
StatusId int `json:"status_id,omitempty"` //ID статуса, в который добавляется сделка. Поле не является обязательным, по-умолчанию – первый этап главной воронки
PipelineId int `json:"pipeline_id,omitempty"` //ID воронки, в которую добавляется сделка. Поле не является обязательным
CreatedBy int `json:"created_by,omitempty"` //ID пользователя, создающий сделку. При передаче значения 0, сделка будет считаться созданной роботом. Поле не является обязательным
UpdatedBy int `json:"updated_by,omitempty"` //ID пользователя, изменяющий сделку. При передаче значения 0, сделка будет считаться измененной роботом. Поле не является обязательным
ClosedAt int `json:"closed_at,omitempty"` //Дата закрытия сделки, передается в Unix Timestamp. Поле не является обязательным
CreatedAt int `json:"created_at,omitempty"` //Дата создания сделки, передается в Unix Timestamp. Поле не является обязательным
UpdatedAt int `json:"updated_at,omitempty"` //Дата изменения сделки, передается в Unix Timestamp. Поле не является обязательным
LossReasonId int `json:"loss_reason_id,omitempty"` //ID причины отказа. Поле не является обязательным
ResponsibleUserId int `json:"responsible_user_id,omitempty"` //ID пользователя, ответственного за сделку. Поле не является обязательным
CustomFieldsValues []FieldValues `json:"custom_fields_values,omitempty"` //Массив, содержащий информацию по дополнительным полям, заданным для данной сделки. Поле не является обязательным. Примеры заполнения полей
Embedded *LeadEmbedded `json:"_embedded,omitempty"` //Данные вложенных сущностей, при создании и редактировании можно передать только теги. Поле не является обязательным
}
// Leads describes methods available for Leads entity.
type Leads interface {
Create(leads []Lead) ([]Lead, error)
Update(leads []Lead) ([]Lead, error)
}
// Verify interface compliance.
var _ Leads = leads{}
type leads struct {
api *api
}
func newLeads(api *api) Leads {
return leads{api: api}
}
// Current returns an Leads entity for current authorized user.
func (a leads) Create(leads []Lead) ([]Lead, error) {
resp, rErr := a.api.do(leadsEndpoint, http.MethodPost, nil, nil, leads)
if rErr != nil {
return nil, fmt.Errorf("get leads: %w", rErr)
}
var res struct {
Embedded struct {
Leads []Lead `json:"leads"`
} `json:"_embedded"`
}
if err := a.api.read(resp, &res); err != nil {
return nil, err
}
return res.Embedded.Leads, nil
}
// Current returns an Leads entity for current authorized user.
func (a leads) Update(leads []Lead) ([]Lead, error) {
resp, rErr := a.api.do(leadsEndpoint, http.MethodPatch, nil, nil, leads)
if rErr != nil {
return nil, fmt.Errorf("get leads: %w", rErr)
}
var res struct {
Embedded struct {
Leads []Lead `json:"leads"`
} `json:"_embedded"`
}
if err := a.api.read(resp, &res); err != nil {
return nil, err
}
return res.Embedded.Leads, nil
}