-
Notifications
You must be signed in to change notification settings - Fork 8
/
config.js
113 lines (109 loc) · 4.32 KB
/
config.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
function existingReservationConfig(authToken) {
let configObject = {
method: 'get',
maxBodyLength: Infinity,
url: 'https://api.resy.com/3/user/reservations?limit=10&offset=1&type=upcoming',
headers: {
authority: 'api.resy.com',
accept: 'application/json, text/plain, */*',
'accept-language': 'en-US,en;q=0.9,la;q=0.8',
authorization: 'ResyAPI api_key="VbWk7s3L4KiK5fzlO7JD3Q5EYolJI7n5"',
'cache-control': 'no-cache',
origin: 'https://resy.com',
referer: 'https://resy.com/',
'sec-ch-ua': '"Chromium";v="118", "Google Chrome";v="118", "Not=A?Brand";v="99"',
'sec-ch-ua-mobile': '?0',
'sec-ch-ua-platform': '"macOS"',
'sec-fetch-dest': 'empty',
'sec-fetch-mode': 'cors',
'sec-fetch-site': 'same-site',
'user-agent':
'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36',
'x-origin': 'https://resy.com',
'x-resy-auth-token': `${authToken}`,
'x-resy-universal-auth': `${authToken}`,
},
};
return configObject;
}
let slotConfig = {
method: 'get',
maxBodyLength: Infinity,
url: `https://api.resy.com/4/find?lat=0&long=0&day=${process.env.DATE}&party_size=${process.env.PARTY_SIZE}&venue_id=${process.env.VENUE_ID}`,
headers: {
authority: 'api.resy.com',
accept: 'application/json, text/plain, */*',
'accept-language': 'en-US,en;q=0.9,la;q=0.8',
authorization: 'ResyAPI api_key="VbWk7s3L4KiK5fzlO7JD3Q5EYolJI7n5"',
'cache-control': 'no-cache',
origin: 'https://resy.com',
referer: 'https://resy.com/',
'sec-ch-ua': '"Chromium";v="118", "Google Chrome";v="118", "Not=A?Brand";v="99"',
'sec-ch-ua-mobile': '?0',
'sec-ch-ua-platform': '"macOS"',
'sec-fetch-dest': 'empty',
'sec-fetch-mode': 'cors',
'sec-fetch-site': 'same-site',
'user-agent':
'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36',
'x-origin': 'https://resy.com',
},
};
function bookingConfig(token) {
// parse token as url encoded string
const slotId = encodeURIComponent(token);
const configObject = {
method: 'get',
maxBodyLength: Infinity,
url: `https://api.resy.com/3/details?&day=${process.env.DATE}&party_size=${process.env.PARTY_SIZE}&config_id=${slotId}`,
headers: {
authority: 'api.resy.com',
accept: 'application/json, text/plain, */*',
'accept-language': 'en-US,en;q=0.9,la;q=0.8',
authorization: 'ResyAPI api_key="VbWk7s3L4KiK5fzlO7JD3Q5EYolJI7n5"',
'cache-control': 'no-cache',
origin: 'https://resy.com',
referer: 'https://resy.com/',
'sec-ch-ua': '"Chromium";v="118", "Google Chrome";v="118", "Not=A?Brand";v="99"',
'sec-ch-ua-mobile': '?0',
'sec-ch-ua-platform': '"macOS"',
'sec-fetch-dest': 'empty',
'sec-fetch-mode': 'cors',
'sec-fetch-site': 'same-site',
'user-agent':
'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36',
'x-origin': 'https://resy.com',
},
};
return configObject;
}
function finalConfig(authToken) {
const configObject = {
method: 'post',
maxBodyLength: Infinity,
url: `https://api.resy.com/3/book`,
headers: {
authority: 'api.resy.com',
accept: 'application/json, text/plain, */*',
'accept-language': 'en-US,en;q=0.9,la;q=0.8',
authorization: 'ResyAPI api_key="VbWk7s3L4KiK5fzlO7JD3Q5EYolJI7n5"',
'cache-control': 'no-cache',
'content-type': 'application/x-www-form-urlencoded',
origin: 'https://widgets.resy.com',
referer: 'https://widgets.resy.com/',
'sec-ch-ua': '"Chromium";v="118", "Google Chrome";v="118", "Not=A?Brand";v="99"',
'sec-ch-ua-mobile': '?0',
'sec-ch-ua-platform': '"macOS"',
'sec-fetch-dest': 'empty',
'sec-fetch-mode': 'cors',
'sec-fetch-site': 'same-site',
'user-agent':
'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36',
'x-origin': 'https://widgets.resy.com',
'x-resy-auth-token': `${authToken}`,
'x-resy-universal-auth': `${authToken}`,
},
};
return configObject;
}
export { existingReservationConfig, slotConfig, bookingConfig, finalConfig };