chore: eventing
This commit is contained in:
parent
1114bbfd37
commit
a895bf0753
2 changed files with 13 additions and 0 deletions
1
.env
1
.env
|
@ -3,6 +3,7 @@ SECRET_KEY_B2=
|
||||||
BUCKET_B2=
|
BUCKET_B2=
|
||||||
API_KEY_LASTFM=
|
API_KEY_LASTFM=
|
||||||
API_KEY_FATHOM=
|
API_KEY_FATHOM=
|
||||||
|
API_KEY_FATHOM_EVENTING=
|
||||||
API_KEY_TRAKT=
|
API_KEY_TRAKT=
|
||||||
API_KEY_MOVIEDB=
|
API_KEY_MOVIEDB=
|
||||||
API_TOKEN_READWISE=
|
API_TOKEN_READWISE=
|
||||||
|
|
12
api/event.js
12
api/event.js
|
@ -2,6 +2,7 @@ import crypto from 'node:crypto'
|
||||||
import { getStore } from '@netlify/blobs';
|
import { getStore } from '@netlify/blobs';
|
||||||
|
|
||||||
export default async (request, context) => {
|
export default async (request, context) => {
|
||||||
|
const FATHOM_KEY = Netlify.env.get("API_KEY_FATHOM_EVENTING")
|
||||||
const ns = new URL(request['url']).searchParams.get('ns')
|
const ns = new URL(request['url']).searchParams.get('ns')
|
||||||
const page = new URL(request['url']).searchParams.get('page')
|
const page = new URL(request['url']).searchParams.get('page')
|
||||||
const num = new URL(request['url']).searchParams.get('num')
|
const num = new URL(request['url']).searchParams.get('num')
|
||||||
|
@ -12,6 +13,15 @@ export default async (request, context) => {
|
||||||
if (lang) headers['Accept-Language'] = lang;
|
if (lang) headers['Accept-Language'] = lang;
|
||||||
if (nav) headers['User-Agent'] = nav;
|
if (nav) headers['User-Agent'] = nav;
|
||||||
let url;
|
let url;
|
||||||
|
const fathomEvent = async (event) => {
|
||||||
|
await fetch(`https://api.usefathom.com/v1/sites/CWSVCDJC/events/${event}`, {
|
||||||
|
headers: {
|
||||||
|
"Authorization": `Bearer ${FATHOM_KEY}`
|
||||||
|
},
|
||||||
|
})
|
||||||
|
.then(() => {})
|
||||||
|
.catch(() => {})
|
||||||
|
}
|
||||||
|
|
||||||
if (ig) return;
|
if (ig) return;
|
||||||
if (ns) {
|
if (ns) {
|
||||||
|
@ -21,8 +31,10 @@ export default async (request, context) => {
|
||||||
if (!userId) await ids.set(id, id)
|
if (!userId) await ids.set(id, id)
|
||||||
const idVal = await ids.get(id)
|
const idVal = await ids.get(id)
|
||||||
url = `https://cdn.usefathom.com/?h=${encodeURIComponent(page)}&sid=CWSVCDJC&cid=${idVal}`
|
url = `https://cdn.usefathom.com/?h=${encodeURIComponent(page)}&sid=CWSVCDJC&cid=${idVal}`
|
||||||
|
fathomEvent(`no-script-visit-id: ${idVal}`)
|
||||||
} else {
|
} else {
|
||||||
url = `https://cdn.usefathom.com/?h=${encodeURIComponent(page)}&sid=CWSVCDJC&cid=${num}`
|
url = `https://cdn.usefathom.com/?h=${encodeURIComponent(page)}&sid=CWSVCDJC&cid=${num}`
|
||||||
|
fathomEvent(`blocked-visit-id: ${num}`)
|
||||||
}
|
}
|
||||||
|
|
||||||
fetch(url, { headers })
|
fetch(url, { headers })
|
||||||
|
|
Reference in a new issue