forked from lightward/mechanic-tasks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.liquid
124 lines (116 loc) · 3.07 KB
/
script.liquid
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
{% if event.topic contains "shopify/fulfillments/" %}
{% if event.preview %}
{% assign fulfillment = hash %}
{% assign fulfillment["tracking_numbers"] = "ABC123" | split: ", " %}
{% assign fulfillment["order"] = hash %}
{% assign fulfillment["order"]["admin_graphql_api_id"] = "gid://shopify/Order/1234567890" %}
{% assign fulfillment["order"]["tags"] = "" %}
{% endif %}
{% assign order_tags = fulfillment.order.tags | split: ", " %}
{% assign tags_to_add = array %}
{% for tracking_number in fulfillment.tracking_numbers %}
{% if tracking_number != blank %}
{% unless order_tags contains tracking_number %}
{% assign tags_to_add[tags_to_add.size] = tracking_number %}
{% endunless %}
{% endif %}
{% endfor %}
{% if tags_to_add != empty %}
{% action "shopify" %}
mutation {
tagsAdd(
id: {{ fulfillment.order.admin_graphql_api_id | json }}
tags: {{ tags_to_add | json }}
) {
userErrors {
field
message
}
}
}
{% endaction %}
{% endif %}
{% elsif event.topic == "mechanic/user/trigger" %}
{% capture bulk_operation_query %}
query {
orders {
edges {
node {
id
tags
fulfillments {
trackingInfo {
number
}
}
}
}
}
}
{% endcapture %}
{% action "shopify" %}
mutation {
bulkOperationRunQuery(
query: {{ bulk_operation_query | json }}
) {
bulkOperation {
id
status
}
userErrors {
field
message
}
}
}
{% endaction %}
{% elsif event.topic == "mechanic/shopify/bulk_operation" %}
{% if event.preview %}
{% capture objects_json %}
[
{
"id": "gid://shopify/Order/1234567890",
"tags": [],
"fulfillments": [
{
"trackingInfo": [
{
"number": "ABC123"
}
]
}
]
}
]
{% endcapture %}
{% assign bulkOperation = hash %}
{% assign bulkOperation["objects"] = objects_json | parse_json %}
{% endif %}
{% for order in bulkOperation.objects %}
{% assign tags_to_add = array %}
{% for fulfillment in order.fulfillments %}
{% for trackingInfoObject in fulfillment.trackingInfo %}
{% if trackingInfoObject.number != blank %}
{% unless order.tags contains trackingInfoObject.number %}
{% assign tags_to_add[tags_to_add.size] = trackingInfoObject.number %}
{% endunless %}
{% endif %}
{% endfor %}
{% endfor %}
{% if tags_to_add != empty %}
{% action "shopify" %}
mutation {
tagsAdd(
id: {{ order.id | json }}
tags: {{ tags_to_add | json }}
) {
userErrors {
field
message
}
}
}
{% endaction %}
{% endif %}
{% endfor %}
{% endif %}