mirror of
https://github.com/r-freeman/portfolio.git
synced 2024-11-14 20:05:42 +00:00
32 lines
989 B
TypeScript
32 lines
989 B
TypeScript
import {NextApiRequest, NextApiResponse} from 'next'
|
|
import {supabase} from '@/lib/supabase'
|
|
|
|
export default async function handler(req: NextApiRequest, res: NextApiResponse) {
|
|
if (req.method === 'POST') {
|
|
if (req.query.slug !== undefined) {
|
|
const slug: string = req.query.slug.toString()
|
|
await supabase.rpc('increment_views', {page_slug: slug})
|
|
|
|
return res.status(200).json({})
|
|
}
|
|
|
|
return res.status(400).json({})
|
|
} else if (req.method === 'GET') {
|
|
if (req.query.slug !== undefined) {
|
|
const slug: string = req.query.slug.toString()
|
|
const response = await supabase
|
|
.from('analytics')
|
|
.select('views')
|
|
.eq('slug', slug)
|
|
.returns<any>()
|
|
|
|
const {views} = response.data[0]
|
|
|
|
return res.status(200).json({views})
|
|
}
|
|
|
|
return res.status(400).json({})
|
|
}
|
|
|
|
return res.status(405).json({})
|
|
} |