day 6
This commit is contained in:
@@ -0,0 +1,166 @@
|
||||
const axios = require("axios");
|
||||
const shopifyUrl = "https://65c3c809c002379e3a0ea04aeaf2cf84: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@roving-house.myshopify.com";
|
||||
const graphQlUrl = `${shopifyUrl}/admin/api/2021-07/graphql.json`;
|
||||
|
||||
async function getUnFulfilledOrders() {
|
||||
const orders = await axios.get(`${shopifyUrl}/admin/api/2021-07/orders.json?fulfillment_status=unfulfilled&limit=250`);
|
||||
|
||||
const orderIds = orders?.data?.orders.map((order, index) => ({
|
||||
sys_index: index,
|
||||
order_id: order.id,
|
||||
customer_id: order.customer.id,
|
||||
email: order.email,
|
||||
customer_name:
|
||||
(order.customer.first_name && order.customer.first_name.length > 0 ? order.customer.first_name : "") +
|
||||
" " +
|
||||
(order.customer.last_name && order.customer.last_name.length > 0 ? order.customer.last_name : ""),
|
||||
line_items: order.line_items,
|
||||
year_month: order.created_at.split("-")[0] + "-" + order.created_at.split("-")[1],
|
||||
created_at: order.created_at.split("T")[0],
|
||||
}));
|
||||
return orderIds;
|
||||
}
|
||||
|
||||
async function getOrderSingle(orderId) {
|
||||
return await axios.get(`${shopifyUrl}/admin/api/2021-07/orders/${orderId}.json`);
|
||||
}
|
||||
|
||||
async function getOrderSingleLineItems(orderId) {
|
||||
const orderSingle = await getOrderSingle(orderId);
|
||||
return orderSingle?.data?.order?.line_items;
|
||||
}
|
||||
|
||||
async function getCustomersLastOrdersLineItems(customerId) {
|
||||
const customerSingle = await getCustomerById(customerId);
|
||||
const lastOrderId = customerSingle?.data?.customer?.last_order_id;
|
||||
return await getOrderSingleLineItems(lastOrderId);
|
||||
}
|
||||
|
||||
async function getOrderSingleCreatedAt(orderId) {
|
||||
const orderSingle = await getOrderSingle(orderId);
|
||||
return orderSingle?.data?.order?.created_at.split("T")[0];
|
||||
}
|
||||
|
||||
async function getCustomerById(customerId) {
|
||||
return await axios.get(`${shopifyUrl}/admin/api/2021-07/customers/${customerId}.json`);
|
||||
}
|
||||
|
||||
async function getCustomerLastOrderId(customerId) {
|
||||
const customerSingle = await getCustomerById(customerId);
|
||||
return customerSingle?.data?.customer?.last_order_id;
|
||||
}
|
||||
|
||||
async function getCustomerLastOrderDate(customerId) {
|
||||
const lastOrderId = await getCustomerLastOrderId(customerId);
|
||||
const orderDate = await getOrderSingleCreatedAt(lastOrderId);
|
||||
return orderDate;
|
||||
}
|
||||
|
||||
async function getProductById(productId) {
|
||||
return await axios.get(`${shopifyUrl}/admin/api/2021-07/products/${productId}.json`);
|
||||
}
|
||||
|
||||
async function getProductByTitle(title) {
|
||||
// console.log(title);
|
||||
title = JSON.stringify(title);
|
||||
// console.log(title);
|
||||
return await axios.get(`${shopifyUrl}/admin/api/2021-07/products.json?title=${title}`);
|
||||
}
|
||||
|
||||
// adds product to order by quantity of 1 and price in USD
|
||||
async function addItemToOrder(orderId, rewardVariantId, note = "Reward Item") {
|
||||
try {
|
||||
if (!rewardVariantId) {
|
||||
console.log("addItemToOrder Error: parameter->productItem must have a variantId to be added to order");
|
||||
return;
|
||||
}
|
||||
|
||||
// begin editing order
|
||||
const beginEditQuery = `mutation {
|
||||
orderEditBegin (id: "gid://shopify/Order/${orderId}"){
|
||||
calculatedOrder
|
||||
{
|
||||
id
|
||||
}
|
||||
userErrors {
|
||||
field
|
||||
message
|
||||
}
|
||||
}
|
||||
}`;
|
||||
const beginEditResponse = await axios
|
||||
.post(graphQlUrl, {
|
||||
query: beginEditQuery,
|
||||
})
|
||||
.then((data) => data.data);
|
||||
if (beginEditResponse.data.errors && beginEditResponse.data.errors.length) {
|
||||
throw beginEditResponse.data.errors;
|
||||
}
|
||||
const calculatedOrderId = beginEditResponse.data.orderEditBegin.calculatedOrder.id;
|
||||
// add item to order mutation
|
||||
const addItemQuery = `mutation {
|
||||
orderEditAddVariant (id: "${calculatedOrderId}", variantId: "gid://shopify/ProductVariant/${rewardVariantId}", quantity: 1, allowDuplicates: false){
|
||||
calculatedLineItem {
|
||||
title
|
||||
}
|
||||
calculatedOrder {
|
||||
id
|
||||
}
|
||||
userErrors {
|
||||
field
|
||||
message
|
||||
}
|
||||
}
|
||||
}`;
|
||||
const addItemResponse = await axios
|
||||
.post(graphQlUrl, {
|
||||
query: addItemQuery,
|
||||
})
|
||||
.then((data) => data.data);
|
||||
if (addItemResponse.data.errors && addItemResponse.data.errors.length) {
|
||||
throw addItemResponse.data.errors;
|
||||
}
|
||||
// commit response
|
||||
const commitEditQuery = `mutation {
|
||||
orderEditCommit (id: "${calculatedOrderId}", notifyCustomer: false, staffNote: "${note}") {
|
||||
order {
|
||||
id
|
||||
}
|
||||
userErrors {
|
||||
field
|
||||
message
|
||||
}
|
||||
}
|
||||
}
|
||||
`;
|
||||
const commitResponse = await axios
|
||||
.post(graphQlUrl, {
|
||||
query: commitEditQuery,
|
||||
})
|
||||
.then((data) => data.data);
|
||||
if (commitResponse.data.errors && commitResponse.data.errors.length) {
|
||||
throw commitResponse.data.errors;
|
||||
}
|
||||
|
||||
return "ok";
|
||||
} catch (error) {
|
||||
console.error(error);
|
||||
return "error";
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
shopifyUrl,
|
||||
graphQlUrl,
|
||||
addItemToOrder,
|
||||
getUnFulfilledOrders,
|
||||
getOrderSingle,
|
||||
getOrderSingleCreatedAt,
|
||||
getCustomerById,
|
||||
getCustomerLastOrderId,
|
||||
getCustomerLastOrderDate,
|
||||
getProductById,
|
||||
getProductByTitle,
|
||||
getOrderSingleLineItems,
|
||||
getCustomersLastOrdersLineItems
|
||||
};
|
||||
Reference in New Issue
Block a user