@@ -4,6 +4,7 @@ import Express from 'express';
4
4
import morgan from 'morgan' ;
5
5
import path from 'path' ;
6
6
import dotenv from 'dotenv' ;
7
+ import { TemplateStore , TemplateNotFoundError , DuplicateTemplateError } from './src/services/TemplateStore' ;
7
8
8
9
// Load environment variables from .env file
9
10
dotenv . config ( { path : path . join ( __dirname , '..' , '.env' ) } ) ;
@@ -16,23 +17,84 @@ app.use(Express.json());
16
17
const openApiPath = path . join ( __dirname , '..' , '..' , 'openapi.json' ) ;
17
18
console . log ( openApiPath ) ;
18
19
20
+ // Initialize template store
21
+ const templateStore = new TemplateStore ( ) ;
22
+
19
23
// define api
20
24
const api = new OpenAPIBackend ( {
21
25
quick : true , // disabled validation of OpenAPI on load
22
26
definition : openApiPath ,
23
27
handlers : {
24
- listTemplates : async ( c : Context , req : Express . Request , res : Express . Response ) =>
25
- res . status ( 200 ) . json ( [ ] ) ,
26
- createTemplate : async ( c : Context , req : Express . Request , res : Express . Response ) =>
27
- res . status ( 200 ) . json ( { } ) ,
28
- getTemplate : async ( c : Context , req : Express . Request , res : Express . Response ) =>
29
- res . status ( 200 ) . json ( { } ) ,
30
- replaceTemplate : async ( c : Context , req : Express . Request , res : Express . Response ) =>
31
- res . status ( 200 ) . json ( { } ) ,
32
- deleteTemplate : async ( c : Context , req : Express . Request , res : Express . Response ) =>
33
- res . status ( 200 ) . json ( { } ) ,
34
- validationFail : async ( c : Context , req : ExpressReq , res : ExpressRes ) => res . status ( 400 ) . json ( { err : c . validation . errors } ) ,
35
- notFound : async ( c : Context , req : ExpressReq , res : ExpressRes ) => res . status ( 404 ) . json ( { err : 'not found' } ) ,
28
+ listTemplates : async ( c : Context , req : Express . Request , res : Express . Response ) => {
29
+ try {
30
+ const templates = await templateStore . listTemplates ( ) ;
31
+ res . status ( 200 ) . json ( templates ) ;
32
+ } catch ( error ) {
33
+ console . error ( 'Error listing templates:' , error ) ;
34
+ res . status ( 500 ) . json ( { error : 'Internal server error' } ) ;
35
+ }
36
+ } ,
37
+ createTemplate : async ( c : Context , req : Express . Request , res : Express . Response ) => {
38
+ try {
39
+ const template = await templateStore . createTemplate ( req . body ) ;
40
+ res . status ( 201 ) . json ( template ) ;
41
+ } catch ( error ) {
42
+ if ( error instanceof DuplicateTemplateError ) {
43
+ res . status ( 409 ) . json ( { error : error . message } ) ;
44
+ } else {
45
+ console . error ( 'Error creating template:' , error ) ;
46
+ res . status ( 500 ) . json ( { error : 'Internal server error' } ) ;
47
+ }
48
+ }
49
+ } ,
50
+ getTemplate : async ( c : Context , req : Express . Request , res : Express . Response ) => {
51
+ try {
52
+ const id = Array . isArray ( c . request . params . id ) ? c . request . params . id [ 0 ] : c . request . params . id ;
53
+ const template = await templateStore . getTemplate ( id ) ;
54
+ res . status ( 200 ) . json ( template ) ;
55
+ } catch ( error ) {
56
+ if ( error instanceof TemplateNotFoundError ) {
57
+ res . status ( 404 ) . json ( { error : error . message } ) ;
58
+ } else {
59
+ console . error ( 'Error getting template:' , error ) ;
60
+ res . status ( 500 ) . json ( { error : 'Internal server error' } ) ;
61
+ }
62
+ }
63
+ } ,
64
+ replaceTemplate : async ( c : Context , req : Express . Request , res : Express . Response ) => {
65
+ try {
66
+ const id = Array . isArray ( c . request . params . id ) ? c . request . params . id [ 0 ] : c . request . params . id ;
67
+ const template = await templateStore . updateTemplate ( id , req . body ) ;
68
+ res . status ( 200 ) . json ( template ) ;
69
+ } catch ( error ) {
70
+ if ( error instanceof TemplateNotFoundError ) {
71
+ res . status ( 404 ) . json ( { error : error . message } ) ;
72
+ } else if ( error instanceof DuplicateTemplateError ) {
73
+ res . status ( 409 ) . json ( { error : error . message } ) ;
74
+ } else {
75
+ console . error ( 'Error updating template:' , error ) ;
76
+ res . status ( 500 ) . json ( { error : 'Internal server error' } ) ;
77
+ }
78
+ }
79
+ } ,
80
+ deleteTemplate : async ( c : Context , req : Express . Request , res : Express . Response ) => {
81
+ try {
82
+ const id = Array . isArray ( c . request . params . id ) ? c . request . params . id [ 0 ] : c . request . params . id ;
83
+ await templateStore . deleteTemplate ( id ) ;
84
+ res . status ( 204 ) . send ( ) ;
85
+ } catch ( error ) {
86
+ if ( error instanceof TemplateNotFoundError ) {
87
+ res . status ( 404 ) . json ( { error : error . message } ) ;
88
+ } else {
89
+ console . error ( 'Error deleting template:' , error ) ;
90
+ res . status ( 500 ) . json ( { error : 'Internal server error' } ) ;
91
+ }
92
+ }
93
+ } ,
94
+ validationFail : async ( c : Context , req : ExpressReq , res : ExpressRes ) =>
95
+ res . status ( 400 ) . json ( { error : c . validation . errors } ) ,
96
+ notFound : async ( c : Context , req : ExpressReq , res : ExpressRes ) =>
97
+ res . status ( 404 ) . json ( { error : 'not found' } ) ,
36
98
notImplemented : async ( c : Context , req : ExpressReq , res : ExpressRes ) => {
37
99
const { status, mock } = c . api . mockResponseForOperation ( c . operation . operationId ) ;
38
100
return res . status ( status ) . json ( mock ) ;
0 commit comments