chore: improve caching + reporting
This commit is contained in:
parent
8e050bbf07
commit
5b886f2ae5
1 changed files with 18 additions and 14 deletions
32
api/event.js
32
api/event.js
|
@ -7,9 +7,11 @@ export default async (request, context) => {
|
||||||
const site = params.get('site')
|
const site = params.get('site')
|
||||||
const page = params.get('page')
|
const page = params.get('page')
|
||||||
const ignore = params.get('ignore')
|
const ignore = params.get('ignore')
|
||||||
|
const setUrl = (id, event) => {
|
||||||
const setUrl = (id, event) => `https://cdn.usefathom.com/?h=${encodeURIComponent(site)}&p=${encodeURIComponent(page)}&sid=CWSVCDJC&cid=${id}&name=${encodeURIComponent(event)}`
|
let url = `https://cdn.usefathom.com/?h=${encodeURIComponent(site)}&p=${encodeURIComponent(page)}&sid=CWSVCDJC&cid=${id}`
|
||||||
|
if (event) url = `${url}&name=${encodeURIComponent(event)}`
|
||||||
|
return url
|
||||||
|
}
|
||||||
const lang = decodeURIComponent(params.get('lang'))
|
const lang = decodeURIComponent(params.get('lang'))
|
||||||
const nav = decodeURIComponent(params.get('nav'))
|
const nav = decodeURIComponent(params.get('nav'))
|
||||||
const notLang = !lang || lang === 'null' || lang === 'undefined'
|
const notLang = !lang || lang === 'null' || lang === 'undefined'
|
||||||
|
@ -20,26 +22,28 @@ export default async (request, context) => {
|
||||||
'Accept-Language': acceptLanguage,
|
'Accept-Language': acceptLanguage,
|
||||||
'User-Agent': userAgent
|
'User-Agent': userAgent
|
||||||
}
|
}
|
||||||
|
const id = crypto.createHash('md5').update(`${context['ip']}${context['geo']['city']}${context['geo']['latitude']}${context['geo']['longitude']}`).digest('hex')
|
||||||
let url
|
let url = setUrl(id)
|
||||||
|
|
||||||
const id = crypto.createHash('md5').update(`${context['ip']}${context['geo']['city']}`).digest('hex')
|
|
||||||
const ids = getStore('ids')
|
const ids = getStore('ids')
|
||||||
const userId = await ids.get(id)
|
let userId = await ids.get(id)
|
||||||
if (!userId) await ids.set(id, id)
|
|
||||||
const idVal = await ids.get(id)
|
|
||||||
|
|
||||||
if (ignore) return new Response(JSON.stringify({
|
if (ignore) return new Response(JSON.stringify({
|
||||||
status: 'accepted',
|
status: 'accepted',
|
||||||
}),
|
}),
|
||||||
{ headers: { "Content-Type": "application/json" } }
|
{ headers: { "Content-Type": "application/json" } }
|
||||||
)
|
)
|
||||||
if (ns) {
|
|
||||||
url = setUrl(idVal, 'noscript visit')
|
if (!userId) {
|
||||||
} else {
|
await ids.set(id, id)
|
||||||
url = setUrl(idVal, 'Blocked visit')
|
if (ns) {
|
||||||
|
url = setUrl(id, 'noscript visit')
|
||||||
|
} else {
|
||||||
|
url = setUrl(id, 'Blocked visit')
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
userId = await ids.get(id)
|
||||||
|
|
||||||
fetch(url, { headers })
|
fetch(url, { headers })
|
||||||
.then((data) => {
|
.then((data) => {
|
||||||
console.log(data);
|
console.log(data);
|
||||||
|
|
Reference in a new issue