chore: debug
This commit is contained in:
parent
d43613035a
commit
a74878900a
1 changed files with 5 additions and 9 deletions
14
api/event.js
14
api/event.js
|
@ -1,5 +1,5 @@
|
||||||
import crypto from 'node:crypto'
|
import crypto from 'node:crypto'
|
||||||
import { getStore, listStores } from '@netlify/blobs';
|
import { getStore } from '@netlify/blobs';
|
||||||
|
|
||||||
export default async (request, context) => {
|
export default async (request, context) => {
|
||||||
const ns = new URL(request['url']).searchParams.get('ns')
|
const ns = new URL(request['url']).searchParams.get('ns')
|
||||||
|
@ -8,7 +8,6 @@ export default async (request, context) => {
|
||||||
const lang = decodeURIComponent(new URL(request['url']).searchParams.get('lang'))
|
const lang = decodeURIComponent(new URL(request['url']).searchParams.get('lang'))
|
||||||
const nav = decodeURIComponent(new URL(request['url']).searchParams.get('nav'))
|
const nav = decodeURIComponent(new URL(request['url']).searchParams.get('nav'))
|
||||||
const ig = new URL(request['url']).searchParams.get('ig')
|
const ig = new URL(request['url']).searchParams.get('ig')
|
||||||
const ids = getStore('ids')
|
|
||||||
const headers = {}
|
const headers = {}
|
||||||
if (lang) headers['Accept-Language'] = lang;
|
if (lang) headers['Accept-Language'] = lang;
|
||||||
if (nav) headers['User-Agent'] = nav;
|
if (nav) headers['User-Agent'] = nav;
|
||||||
|
@ -16,20 +15,17 @@ export default async (request, context) => {
|
||||||
|
|
||||||
if (ig) return;
|
if (ig) return;
|
||||||
if (ns) {
|
if (ns) {
|
||||||
const { stores } = await listStores();
|
|
||||||
console.log('### STORES')
|
|
||||||
console.log(stores)
|
|
||||||
console.log('### STORES')
|
|
||||||
const id = crypto.createHash('md5').update(`${context['ip']}${context['geo']['city']}`).digest('hex');
|
const id = crypto.createHash('md5').update(`${context['ip']}${context['geo']['city']}`).digest('hex');
|
||||||
if (!ids.get(id)) await ids.set(id, id)
|
const ids = getStore('ids')
|
||||||
|
const userId = await ids.get(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}`
|
||||||
} 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}`
|
||||||
}
|
}
|
||||||
|
|
||||||
fetch(`https://cdn.usefathom.com/?h=${encodeURIComponent(page)}&sid=CWSVCDJC&cid=${num}`,
|
fetch(url, { headers })
|
||||||
{ headers })
|
|
||||||
.then((data) => {
|
.then((data) => {
|
||||||
console.log(data)
|
console.log(data)
|
||||||
return {}
|
return {}
|
||||||
|
|
Reference in a new issue