-
Notifications
You must be signed in to change notification settings - Fork 4
/
createCheckout.js
170 lines (168 loc) · 4.43 KB
/
createCheckout.js
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
require('dotenv').config({ path: '.env.development' })
const axios = require('axios')
const statusCode = 200
const headers = {
'Access-Control-Allow-Origin': '*',
'Access-Control-Allow-Headers': 'Content-Type',
}
const shopifyConfig = {
'Content-Type': 'application/json',
'X-Shopify-Storefront-Access-Token':
process.env.GATSBY_SHOPIFY_STOREFRONT_KEY,
}
exports.handler = async function(event, context, callback) {
context.callbackWaitsForEmptyEventLoop = false
// TEST for post request
if (event.httpMethod !== 'POST' || !event.body) {
callback(null, {
statusCode,
headers,
body: '',
})
}
// TEST if the event body has data relevant to be parsed. Is valid post request
if (event.body[0] == '{') {
let data = JSON.parse(event.body)
data = JSON.parse(data.body)
const payload1 = {
query: `mutation checkoutCreate($input: CheckoutCreateInput!) {
checkoutCreate(input: $input) {
checkout {
id
webUrl
}
checkoutUserErrors {
field
message
}
}
}`,
variables: { input: { lineItems: data.items } },
}
let checkoutData
try {
checkoutData = await axios({
url: 'https://lipslut2-0.myshopify.com/api/graphql',
method: 'post',
headers: shopifyConfig,
data: JSON.stringify(payload1),
})
checkoutData = checkoutData.data.data.checkoutCreate.checkout
} catch (err) {
console.log(err)
let response = {
statusCode: 500,
headers,
body: JSON.stringify({
error: err.message,
}),
}
callback(null, response)
}
// IF the user has an account ASK shopify for a customeraccesstoken and asscoiate the checkout with the account
if (!data.hasAccount) {
let response = {
statusCode: 200,
headers,
body: JSON.stringify({
data: checkoutData,
}),
}
callback(null, response)
} else {
const payload2 = {
query: `mutation customerAccessTokenCreate($input: CustomerAccessTokenCreateInput!) {
customerAccessTokenCreate(input: $input) {
userErrors {
field
message
}
customerAccessToken {
accessToken
expiresAt
}
customerUserErrors {
field
message
}
}
}
`,
variables: {
input: {
email: data.user.email,
password: data.user.uid,
},
},
}
let token
try {
token = await axios({
url: 'https://lipslut2-0.myshopify.com/api/graphql',
method: 'POST',
headers: shopifyConfig,
data: JSON.stringify(payload2),
})
token =
token.data.data.customerAccessTokenCreate.customerAccessToken
.accessToken
} catch (err) {
console.log(err)
let response = {
statusCode: 500,
headers,
body: JSON.stringify({
error: err.message,
}),
}
callback(null, response)
}
const payload3 = {
query: `mutation checkoutCustomerAssociateV2($checkoutId: ID!, $customerAccessToken: String!) {
checkoutCustomerAssociateV2(checkoutId: $checkoutId, customerAccessToken: $customerAccessToken) {
userErrors {
field
message
}
checkout {
id
}
customer {
id
}
}
}`,
variables: {
checkoutId: checkoutData.id,
customerAccessToken: token,
},
}
try {
token = await axios({
url: 'https://lipslut2-0.myshopify.com/api/graphql',
method: 'POST',
headers: shopifyConfig,
data: JSON.stringify(payload3),
})
let response = {
statusCode: 200,
headers,
body: JSON.stringify({
data: checkoutData,
}),
}
callback(null, response)
} catch (err) {
console.log(err)
let response = {
statusCode: 500,
headers,
body: JSON.stringify({
error: err.message,
}),
}
callback(null, response)
}
}
}
}