mirror of
				https://github.com/DerTyp7/explainegy-nextjs.git
				synced 2025-10-31 13:47:11 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			38 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import { Request, Response } from "express";
 | |
| import prisma from "../../../../lib/prisma";
 | |
| import { Prisma } from '@prisma/client';
 | |
| import { ResponseError } from "../../../../types/responseErrors";
 | |
| import { formatTextToUrlName } from "../../../../utils";
 | |
| 
 | |
| type ArticleWithIncludes = Prisma.ArticleGetPayload<{ include: { contentTableEntries: true, category: true, image: true } }>
 | |
| 
 | |
| 
 | |
| 
 | |
| export default async function handler(req: Request, res: Response) {
 | |
|   res.setHeader("Content-Type", "application/json");
 | |
| 
 | |
|   const articleName: string = formatTextToUrlName(req.query.articleName.toString())
 | |
| 
 | |
|   await prisma.article
 | |
|     .findUnique({ where: { name: articleName }, include: { category: true, image: true } })
 | |
|     .then((result: ArticleWithIncludes) => {
 | |
|       if (result !== null) {
 | |
|         res.end(JSON.stringify(result));
 | |
|       } else {
 | |
|         const error: ResponseError = {
 | |
|           code: "404",
 | |
|           message: "No article with this name found!",
 | |
|         };
 | |
|         res.status(404).send(JSON.stringify(error));
 | |
|       }
 | |
|     })
 | |
|     .catch((err) => {
 | |
| 
 | |
|       const error: ResponseError = {
 | |
|         code: "500",
 | |
|         message: err,
 | |
|       };
 | |
|       res.status(500).send(JSON.stringify(error));
 | |
|     });
 | |
| }
 | 
