-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfiguration.py
More file actions
134 lines (123 loc) · 3.49 KB
/
configuration.py
File metadata and controls
134 lines (123 loc) · 3.49 KB
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
import argparse
import logging
import sys
from api_client import APIClient
log = logging.getLogger(__name__)
def perform_configuration(url, token):
log.info("Creating api client")
api = APIClient(url, token)
log.info("Uploading part attributes")
attributes = [
{
"id": "next_step",
"title": "Next step",
"field": "next_step",
"datatype": "STRING",
"filtering": True,
"sorting": True,
"detail": True,
"summary": True,
"order": 0,
},
{
"id": "prev_step",
"title": "Previous step",
"field": "prev_step",
"datatype": "STRING",
"filtering": True,
"sorting": True,
"detail": True,
"summary": False,
"order": 1,
},
{
"id": "technology",
"title": "Technology",
"field": "technology",
"datatype": "STRING",
"filtering": True,
"sorting": False,
"detail": True,
"summary": False,
},
{
"id": "order",
"title": "Order #",
"field": "order_id",
"datatype": "NUMBER",
"filtering": True,
"sorting": False,
"detail": True,
"summary": True,
},
{
"id": "tray",
"title": "Print tray",
"field": "tray",
"datatype": "STRING",
"filtering": True,
"sorting": False,
"detail": True,
"summary": False,
},
{
"id": "target_date",
"title": "Target date",
"field": "target_date",
"datatype": "STRING",
"filtering": True,
"sorting": True,
"detail": True,
"summary": True,
},
]
api.part_attribute.put(attributes)
log.info("Uploading query categories")
categories = [
{"id": "next_step", "title": "Next step"},
{"id": "order", "title": "Order #"},
{"id": "date", "title": "Target date"},
]
api.query_category.put(categories)
log.info("Uploading sorting queries")
sorting_queries = [
{
"id": "next_step",
"title": "Next step",
"query": "",
"category": "next_step",
"dynamic_attribute": "next_step",
},
{
"id": "target_date",
"title": "Target date",
"query": "",
"category": "date",
"dynamic_attribute": "target_date",
},
{
"id": "order",
"title": "Order #",
"query": "",
"category": "order",
"dynamic_attribute": "order",
},
]
api.query.put(sorting_queries)
log.info("Subscribing to the webhook")
api.webhook.post(
{"event": "batch.advance", "target": "http://example.com/on_batch_sorted/"}
)
if __name__ == "__main__":
parser = argparse.ArgumentParser(
description="AM-Vision API one-time configuration example"
)
parser.add_argument("url", type=str, help="API URL")
parser.add_argument("token", type=str, help="API token")
args = parser.parse_args()
logging.basicConfig(
stream=sys.stdout,
level=logging.INFO,
format="[%(asctime)s: %(levelname)s] %(message)s",
)
perform_configuration(args.url, args.token)