-
Notifications
You must be signed in to change notification settings - Fork 0
/
sn.ts
268 lines (257 loc) · 4.86 KB
/
sn.ts
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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
import fs from "fs";
import path from "path";
import type {
DonateResponse,
SearchResponse,
UpsertCommentResponse,
} from "sn-api";
const API_KEY_HEADER_NAME = "X-API-Key";
const SUB_FIELDS_FRAGMENT = `
fragment SubFields on Sub {
name
postTypes
allowFreebies
rankingType
billingType
billingCost
billingAutoRenew
billedLastAt
baseCost
userId
desc
status
moderated
moderatedCount
meMuteSub
__typename
}`;
const ITEM_FIELDS_FRAGMENT = `
fragment ItemFields on Item {
id
parentId
createdAt
deletedAt
title
url
user {
id
name
optional {
streak
__typename
}
meMute
__typename
}
sub {
name
userId
moderated
meMuteSub
__typename
}
otsHash
position
sats
boost
bounty
bountyPaidTo
noteId
path
upvotes
meSats
meDontLikeSats
meBookmark
meSubscription
meForward
outlawed
freebie
bio
ncomments
commentSats
lastCommentAt
maxBid
isJob
company
location
remote
subName
pollCost
status
uploadId
mine
imgproxyUrls
__typename
}`;
const ITEM_FULL_FIELDS_FRAGMENT = `
fragment ItemFullFields on Item {
...ItemFields
text
root {
id
title
bounty
bountyPaidTo
subName
user {
id
name
optional {
streak
__typename
}
__typename
}
sub {
name
userId
moderated
meMuteSub
__typename
}
__typename
}
forwards {
userId
pct
user {
name
__typename
}
__typename
}
__typename
}`;
const QUERY_SUB_SEARCH = `
query SubSearch($sub: String, $q: String, $cursor: String, $sort: String, $what: String, $when: String, $from: String, $to: String) {
sub(name: $sub) {
...SubFields
__typename
}
search(
sub: $sub
q: $q
cursor: $cursor
sort: $sort
what: $what
when: $when
from: $from
to: $to
) {
cursor
items {
...ItemFullFields
searchTitle
searchText
__typename
}
__typename
}
}`;
const authedApiCall = async <ResponseType>({ body }: { body: string }) => {
const apiKey = process.env.SN_API_KEY;
const response = await fetch("https://stacker.news/api/graphql/", {
method: "POST",
headers: {
"content-type": "application/json",
[API_KEY_HEADER_NAME]: apiKey,
} as HeadersInit,
body,
});
return response.json() as ResponseType;
};
export const donateToRewards = async ({ sats }: { sats: number }) => {
try {
const body = JSON.stringify({
operationName: "donateToRewards",
variables: {
sats,
},
query: `
mutation donateToRewards($sats: Int!, $hash: String, $hmac: String) {
donateToRewards(sats: $sats, hash: $hash, hmac: $hmac)
}`,
});
const jsonResponse = await authedApiCall<DonateResponse>({ body });
const {
data: { donateToRewards: donatedAmount },
} = jsonResponse;
return { donatedAmount };
} catch (err) {
console.error(err);
throw err;
}
};
export const createComment = async ({
parentId,
text,
}: {
parentId: string;
text: string;
}) => {
try {
const body = JSON.stringify({
operationName: "upsertComment",
variables: {
parentId,
text,
},
query: `
mutation upsertComment($text: String!, $parentId: ID!, $hash: String, $hmac: String) {
upsertComment(text: $text, parentId: $parentId, hash: $hash, hmac: $hmac) {
id
}
}
`,
});
const jsonResponse = await authedApiCall<UpsertCommentResponse>({
body,
});
const {
data: {
upsertComment: { id: newCommentId },
},
} = jsonResponse;
return { newCommentId };
} catch (err) {
console.error(err);
throw err;
}
};
export const search = async ({
what,
nym,
cursor,
}: {
cursor?: string;
what?: string;
nym?: string;
}) => {
try {
const body = JSON.stringify({
operationName: "SubSearch",
variables: {
q: nym ? `@${nym}` : "",
what,
sort: "recent",
cursor,
},
query: `
${SUB_FIELDS_FRAGMENT}
${ITEM_FIELDS_FRAGMENT}
${ITEM_FULL_FIELDS_FRAGMENT}
${QUERY_SUB_SEARCH}
`,
});
const jsonResponse = await authedApiCall<SearchResponse>({ body });
const {
data: {
search: { cursor: responseCursor, items },
},
} = jsonResponse;
return { cursor: responseCursor, items };
} catch (err) {
console.error(err);
return { cursor: "", items: [] };
}
};