-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathseafowl.tsx
280 lines (236 loc) · 8.18 KB
/
seafowl.tsx
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
269
270
271
272
273
274
275
276
277
278
import { type BareFetcher } from 'swr';
import { webcrypto } from 'crypto'
const SEAFOWL_API = 'https://socfeed-data.splitgraph.io/q'
const SEAFOWL_ROOT = 'https://socfeed-data.splitgraph.io'
/**
* Datasets diffs between the specified tags (roughly, "dates")
* @param from a tag provided by SocrataRepoTagsQuery (shouldn't be arbitrary)
* @param to a subsequent tag provided by SocrataRepoTagsQuery (shouldn't be arbitrary)
* @returns Array<Dataset>, e.g. [{ domain, id, name, desc, created_at, updated_at, is_added }]
* TODO probably needs to take four params
*/
export const fromToDiff = (from: string, to: string) =>
`WITH
old AS(SELECT * FROM socrata.dataset_history WHERE sg_image_tag > '20221024' AND sg_image_tag < '20221025'),
new AS(SELECT * FROM socrata.dataset_history WHERE sg_image_tag > '20221031' AND sg_image_tag < '20221101')
SELECT
COALESCE(old.domain, new.domain) AS domain,
COALESCE(old.id, new.id) AS id,
COALESCE(old.name, new.name) AS name,
COALESCE(old.description, new.description) AS description,
COALESCE(old.created_at, new.created_at) AS created_at,
COALESCE(old.updated_at, new.updated_at) AS updated_at,
old.id IS NULL AS is_added
FROM old FULL OUTER JOIN new
ON old.domain = new.domain AND old.id = new.id
WHERE old.id IS NULL OR new.id IS NULL
ORDER BY domain, name, is_added`
/**
* Datasets added/deleted on the given day
*
* @param timestamp should not include timezone e.g. 2022-11-02 00:00:00
* @returns Array<Dataset>, e.g. [{ domain, name, is_added, id, desc }]
*/
export const dailyDiff = (timestamp: string = '2022-11-02 00:00:00') =>
`SELECT d.domain, d.name, dd.is_added, dd.id, d.description, d.id
FROM socrata.daily_diff dd INNER JOIN socrata.all_datasets d
ON dd.id = d.id
WHERE dd.day = '${timestamp}'::timestamp
ORDER BY 1, 3, 2`
export interface DiffResponse {
domain: string;
name: string;
is_added: boolean;
id: string;
description: string;
}
/**
* Datasets added/deleted as of the given date + 7 days
* @param timestamp Data
* @returns Array<Dataset>, e.g. [{ domain, name, is_added, id, desc }]
*/
export const weeklyDiff = (timestamp: string = '2022-10-31 00:00:00') =>
`SELECT d.domain, d.name, w.is_added, w.id, d.description, d.id
FROM socrata.weekly_diff w INNER JOIN socrata.all_datasets d
ON w.id = d.id
WHERE w.week = '${timestamp}'::timestamp
ORDER BY 1, 3, 2`
export const weeklyDiffByDomain = (domain: string = 'data.cdc.gov') =>
`SELECT
wd.week,
SUM(CASE WHEN wd.is_added THEN 1 ELSE 0 END) AS added,
SUM(CASE WHEN wd.is_added THEN 0 ELSE 1 END) AS removed
FROM socrata.weekly_diff wd INNER JOIN socrata.all_datasets d
ON wd.id = d.id
WHERE d.domain = '${domain}'
GROUP BY 1
ORDER BY 1 ASC`
export const weeklyDiffDomainTotals = (domain: string = 'data.cdc.gov') =>
`SELECT
wd.week,
SUM(CASE WHEN wd.is_added THEN 1 ELSE 0 END) AS added,
SUM(CASE WHEN wd.is_added THEN 0 ELSE 1 END) AS removed
FROM socrata.weekly_diff wd INNER JOIN socrata.all_datasets d
ON wd.id = d.id
WHERE d.domain = '${domain}'
GROUP BY 1
ORDER BY 1 ASC`
export const monthlyDiff = (timestamp: string) =>
`SELECT m.month, d.domain, d.name, m.is_added, m.id, d.description, d.id
FROM socrata.monthly_diff m INNER JOIN socrata.all_datasets d
ON m.id = d.id
WHERE m.month = '${timestamp}'::timestamp
ORDER BY 1, 2, 3`
export interface MonthlyDiffResponse extends DiffResponse {
month: string;
}
export const heatmap = (domain: string = 'data.cdc.gov') =>
`SELECT
DATE_TRUNC('day', sg_image_created) AS day,
COUNT(*) AS dataset_count
FROM socrata.dataset_history
WHERE domain = '${domain}'
GROUP BY 1
ORDER BY 1 ASC`
export const picker = (timestamp: string) =>
`(SELECT
day::text AS timestamp,
'prev_day' AS direction
FROM socrata.daily_diff
WHERE day < '${timestamp}'::timestamp
ORDER BY day DESC LIMIT 1)
UNION ALL
(SELECT
day::text AS timestamp,
'next_day' AS direction
FROM socrata.daily_diff
WHERE day > '${timestamp}'::timestamp
ORDER BY day ASC LIMIT 1)
UNION ALL
(SELECT
day::text AS timestamp,
'equivalent_day' AS direction
FROM socrata.daily_diff
WHERE day <= '${timestamp}'::timestamp
ORDER BY day DESC LIMIT 1)
UNION ALL
(SELECT
week::text AS timestamp,
'prev_week' AS direction
FROM socrata.weekly_diff
WHERE week < '${timestamp}'::timestamp
ORDER BY week DESC LIMIT 1)
UNION ALL
(SELECT
week::text AS timestamp,
'next_week' AS direction
FROM socrata.weekly_diff
WHERE week > '${timestamp}'::timestamp
ORDER BY week ASC LIMIT 1)
UNION ALL
(SELECT
week::text AS timestamp,
'equivalent_week' AS direction
FROM socrata.weekly_diff
WHERE week <= '${timestamp}'::timestamp
ORDER BY week DESC LIMIT 1)
UNION ALL
(SELECT
month::text AS timestamp,
'prev_month' AS direction
FROM socrata.monthly_diff
WHERE month < '${timestamp}'::timestamp
ORDER BY month DESC LIMIT 1)
UNION ALL
(SELECT
month::text AS timestamp,
'next_month' AS direction
FROM socrata.monthly_diff
WHERE month > '${timestamp}'::timestamp
ORDER BY month ASC LIMIT 1)
UNION ALL
(SELECT
month::text AS timestamp,
'equivalent_month' AS direction
FROM socrata.monthly_diff
WHERE month <= '${timestamp}'::timestamp
ORDER BY month DESC LIMIT 1)`
/** Get the 'latest known day' day
* Intended to more reliably give homepage content
* Defaulting to the browser's "today" assumes the Seafowl instance was updated today,
* which may not always be the case.
*/
export const latestKnownDay =
`SELECT MAX(day) as latest FROM socrata.daily_diff`
/** Get the 'latest known week' i.e. Monday
*/
export const latestKnownWeek =
`SELECT MAX(week) as latest FROM socrata.weekly_diff`
/** Get the 'latest known month' i.e. 9/1/2022 00:00:00
*/
export const latestKnownMonth =
`SELECT MAX(month) as latest FROM socrata.monthly_diff`
export enum Direction {
prev_day = "prev_day",
next_day = "next_day",
equivalent_day = "equivalent_day",
prev_week = "prev_week",
next_week = "next_week",
equivalent_week = "equivalent_week",
prev_month = "prev_month",
next_month = "next_month",
equivalent_month = "equivalent_month"
}
export interface TimestampDirection {
direction: Direction;
timestamp: string;
}
export interface AddedRemovedWeek {
added: number;
removed: number;
week: string;
}
//@ts-ignore TODO figure out where we should import PublicConfiguration from
export const seafowlFetcherUncached = (query: string): Partial<PublicConfiguration<AddedRemovedWeek[], any, BareFetcher<AddedRemovedWeek[]>>> =>
fetch(SEAFOWL_API, {
method: "POST",
// TODO: https://seafowl.io/docs/guides/querying-cache-cdn#querying-from-the-browser-using-the-fetch-api - use GET
headers: { "content-type": "application/json" },
body: JSON.stringify({ query })
}).then(async (response) => {
const responseText = await response.text();
return responseText ? responseText.trim().split("\n").map(JSON.parse as any) : [];
}).catch((reason) => {
console.error(reason)
});
/** GET-based Seafowl fetcher
* If you GET + pass a query hash in, Seafowl plays nice fetch()'s built-in cache semantics
* Including the '.csv'hack which signals CloudFlare to use it's own caching
*
* @see https://seafowl.io/docs/guides/querying-cache-cdn#querying-from-the-browser-using-the-fetch-api
*/
// @ts-ignore
export const seafowlFetcher = async (sql: string): Partial<PublicConfiguration<AddedRemovedWeek[], any, BareFetcher<AddedRemovedWeek[]>>> => {
const query = sql.trim().replace(/(?:\r\n|\r|\n)/g, " ");
/** Select appropriate crypto module, depending on SSR or CSR (Node.js vs browser)
* window.crypto in-browser supports SubtleCrypto
* for Node.js it lives inside crypto.webcrypto.subtle
* Need to use the appropriate module depending on context
*/
const theCrypto = typeof window === "undefined" ? webcrypto : crypto;
const digest = await theCrypto.subtle.digest(
"SHA-256",
new TextEncoder().encode(query)
);
const hash = [...new Uint8Array(digest)]
.map((x) => x.toString(16).padStart(2, "0"))
.join("");
return fetch(`${SEAFOWL_ROOT}/q/${hash}.csv`, {
headers: { "X-Seafowl-Query": query }
}).then(async (response) => {
const responseText = await response.text();
return responseText ? responseText.trim().split("\n").map(JSON.parse as any) : [];
}).catch((reason) => {
console.error(reason)
});
}