add Get products rating by SKUs
This commit is contained in:
@@ -13,7 +13,7 @@
|
|||||||
- [ ] Check products images uploading status
|
- [ ] Check products images uploading status
|
||||||
- [x] List of products
|
- [x] List of products
|
||||||
- [x] Product details
|
- [x] Product details
|
||||||
- [ ] Get products' content rating by SKU
|
- [x] Get products' content rating by SKU
|
||||||
- [ ] Get a list of products by identifiers
|
- [ ] Get a list of products by identifiers
|
||||||
- [ ] Get a description of the product characteristics
|
- [ ] Get a description of the product characteristics
|
||||||
- [ ] Get product description
|
- [ ] Get product description
|
||||||
|
|||||||
@@ -851,3 +851,78 @@ func (c Client) GetListOfProducts(params *GetListOfProductsParams) (*GetListOfPr
|
|||||||
|
|
||||||
return resp, nil
|
return resp, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type GetProductsRatingBySKUParams struct {
|
||||||
|
// List of product SKUs for which content rating should be returned
|
||||||
|
SKUs []int64 `json:"skus"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type GetProductsRatingBySKUResponse struct {
|
||||||
|
core.CommonResponse
|
||||||
|
|
||||||
|
// Products' content rating
|
||||||
|
Products []struct{
|
||||||
|
// Product identifier in the Ozon system, SKU
|
||||||
|
SKU int64 `json:"sku"`
|
||||||
|
|
||||||
|
// Product content rating: 0 to 100
|
||||||
|
Rating float64 `json:"rating"`
|
||||||
|
|
||||||
|
// Groups of characteristics that make up the content rating
|
||||||
|
Groups []struct{
|
||||||
|
// List of conditions that increase the product content rating
|
||||||
|
Conditions []struct{
|
||||||
|
// Number of content rating points that the condition gives
|
||||||
|
Cost float64 `json:"cost"`
|
||||||
|
|
||||||
|
// Condition description
|
||||||
|
Description string `json:"description"`
|
||||||
|
|
||||||
|
// Indication that the condition is met
|
||||||
|
Fulfilled bool `json:'fulfilled"`
|
||||||
|
|
||||||
|
// Condition identifier
|
||||||
|
Key string `json:"key"`
|
||||||
|
} `json:"conditions"`
|
||||||
|
|
||||||
|
// Number of attributes you need to fill in to get the maximum score in this characteristics group
|
||||||
|
ImproveAtLeast int32 `json:"improve_at_least"`
|
||||||
|
|
||||||
|
// List of attributes that can increase the product content rating
|
||||||
|
ImproveAttributes []struct{
|
||||||
|
// Attribute identifier
|
||||||
|
Id int64 `json:"id"`
|
||||||
|
|
||||||
|
// Attribute name
|
||||||
|
Name string `json:"name"`
|
||||||
|
} `json:"improve_attributes"`
|
||||||
|
|
||||||
|
// Group identifier
|
||||||
|
Key string `json:"key"`
|
||||||
|
|
||||||
|
// Group name
|
||||||
|
Name string `json:"name"`
|
||||||
|
|
||||||
|
// Rating in the group
|
||||||
|
Rating float64 `json:"rating"`
|
||||||
|
|
||||||
|
// Percentage influence of group characteristics on the content rating
|
||||||
|
Weight float64 `json:"weight"`
|
||||||
|
} `json:"groups"`
|
||||||
|
} `json:"products"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// Method for getting products' content rating and recommendations on how to increase it
|
||||||
|
func (c Client) GetProductsRatingBySKU(params *GetProductsRatingBySKUParams) (*GetProductsRatingBySKUResponse, error) {
|
||||||
|
url := "/v1/product/rating-by-sku"
|
||||||
|
|
||||||
|
resp := &GetProductsRatingBySKUResponse{}
|
||||||
|
|
||||||
|
response, err := c.client.Request(http.MethodPost, url, params, resp)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
response.CopyCommonResponse(&resp.CommonResponse)
|
||||||
|
|
||||||
|
return resp, nil
|
||||||
|
}
|
||||||
|
|||||||
@@ -644,3 +644,230 @@ func TestGetListOfProducts(t *testing.T) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestGetProductsRatingBySKU(t *testing.T) {
|
||||||
|
tests := []struct {
|
||||||
|
statusCode int
|
||||||
|
headers map[string]string
|
||||||
|
params *GetProductsRatingBySKUParams
|
||||||
|
response string
|
||||||
|
}{
|
||||||
|
// Test Ok
|
||||||
|
{
|
||||||
|
http.StatusOK,
|
||||||
|
map[string]string{"Client-Id": "my-client-id", "Api-Key": "my-api-key"},
|
||||||
|
&GetProductsRatingBySKUParams{
|
||||||
|
SKUs: []int64{179737222},
|
||||||
|
},
|
||||||
|
`{
|
||||||
|
"products": [
|
||||||
|
{
|
||||||
|
"sku": 179737222,
|
||||||
|
"rating": 42.5,
|
||||||
|
"groups": [
|
||||||
|
{
|
||||||
|
"key": "media",
|
||||||
|
"name": "Медиа",
|
||||||
|
"rating": 70,
|
||||||
|
"weight": 25,
|
||||||
|
"conditions": [
|
||||||
|
{
|
||||||
|
"key": "media_images_2",
|
||||||
|
"description": "Добавлено 2 изображения",
|
||||||
|
"fulfilled": true,
|
||||||
|
"cost": 50
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "media_images_3",
|
||||||
|
"description": "Добавлено 3 изображения и более",
|
||||||
|
"fulfilled": true,
|
||||||
|
"cost": 20
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "media_image_3d",
|
||||||
|
"description": "Добавлено 3D-изображение",
|
||||||
|
"fulfilled": false,
|
||||||
|
"cost": 15
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "media_video",
|
||||||
|
"description": "Добавлено видео",
|
||||||
|
"fulfilled": false,
|
||||||
|
"cost": 15
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"improve_attributes": [
|
||||||
|
{
|
||||||
|
"id": 4074,
|
||||||
|
"name": "Код ролика на YouTube"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 4080,
|
||||||
|
"name": "3D-изображение"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"improve_at_least": 2
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "important_attributes",
|
||||||
|
"name": "Важные атрибуты",
|
||||||
|
"rating": 50,
|
||||||
|
"weight": 30,
|
||||||
|
"conditions": [
|
||||||
|
{
|
||||||
|
"key": "important_2",
|
||||||
|
"description": "Заполнено 2 атрибута и более",
|
||||||
|
"fulfilled": true,
|
||||||
|
"cost": 50
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "important_50_percent",
|
||||||
|
"description": "Заполнено более 50% атрибутов",
|
||||||
|
"fulfilled": false,
|
||||||
|
"cost": 25
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "important_70_percent",
|
||||||
|
"description": "Заполнено более 70% атрибутов",
|
||||||
|
"fulfilled": false,
|
||||||
|
"cost": 25
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"improve_attributes": [
|
||||||
|
{
|
||||||
|
"id": 4385,
|
||||||
|
"name": "Гарантийный срок"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 4389,
|
||||||
|
"name": "Страна-изготовитель"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 8513,
|
||||||
|
"name": "Количество в упаковке, шт"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 8590,
|
||||||
|
"name": "Макс. диагональ, дюймы"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 8591,
|
||||||
|
"name": "Мин. диагональ, дюймы"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 9336,
|
||||||
|
"name": "Модель браслета/умных часов"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 11046,
|
||||||
|
"name": "Покрытие"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 11047,
|
||||||
|
"name": "Прозрачность покрытия"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 11048,
|
||||||
|
"name": "Дополнительные свойства покрытия"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 11049,
|
||||||
|
"name": "Вид стекла"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 11603,
|
||||||
|
"name": "Размер циферблата"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"improve_at_least": 6
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "other_attributes",
|
||||||
|
"name": "Остальные атрибуты",
|
||||||
|
"rating": 0,
|
||||||
|
"weight": 25,
|
||||||
|
"conditions": [
|
||||||
|
{
|
||||||
|
"key": "other_2",
|
||||||
|
"description": "Заполнено 2 атрибута и более",
|
||||||
|
"fulfilled": false,
|
||||||
|
"cost": 50
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "other_50_percent",
|
||||||
|
"description": "Заполнено более 50% атрибутов",
|
||||||
|
"fulfilled": false,
|
||||||
|
"cost": 50
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"improve_attributes": [
|
||||||
|
{
|
||||||
|
"id": 4382,
|
||||||
|
"name": "Размеры, мм"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"improve_at_least": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "text",
|
||||||
|
"name": "Текстовое описание",
|
||||||
|
"rating": 50,
|
||||||
|
"weight": 20,
|
||||||
|
"conditions": [
|
||||||
|
{
|
||||||
|
"key": "text_annotation_100_chars",
|
||||||
|
"description": "Аннотация более 100 знаков",
|
||||||
|
"fulfilled": true,
|
||||||
|
"cost": 25
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "text_annotation_500_chars",
|
||||||
|
"description": "Аннотация более 500 знаков",
|
||||||
|
"fulfilled": true,
|
||||||
|
"cost": 25
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "text_rich",
|
||||||
|
"description": "Заполнен Rich-контент",
|
||||||
|
"fulfilled": false,
|
||||||
|
"cost": 100
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"improve_attributes": [
|
||||||
|
{
|
||||||
|
"id": 11254,
|
||||||
|
"name": "Rich-контент JSON"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"improve_at_least": 1
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}`,
|
||||||
|
},
|
||||||
|
// Test No Client-Id or Api-Key
|
||||||
|
{
|
||||||
|
http.StatusUnauthorized,
|
||||||
|
map[string]string{},
|
||||||
|
&GetProductsRatingBySKUParams{},
|
||||||
|
`{
|
||||||
|
"code": 16,
|
||||||
|
"message": "Client-Id and Api-Key headers are required"
|
||||||
|
}`,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, test := range tests {
|
||||||
|
c := NewMockClient(core.NewMockHttpHandler(test.statusCode, test.response, test.headers))
|
||||||
|
|
||||||
|
resp, err := c.GetProductsRatingBySKU(test.params)
|
||||||
|
if err != nil {
|
||||||
|
t.Error(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if resp.StatusCode != test.statusCode {
|
||||||
|
t.Errorf("got wrong status code: got: %d, expected: %d", resp.StatusCode, test.statusCode)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user