-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtools.js
More file actions
140 lines (124 loc) · 3.02 KB
/
tools.js
File metadata and controls
140 lines (124 loc) · 3.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
import { json, Router } from "express";
import { JSON_UPLOAD_LIMIT, readRequestContext, sendNotFound, withResolvedContext } from "./helpers.js";
export function createCmsToolsRouter({ application, resolveContext = readRequestContext } = {}) {
if (!application) {
throw new Error("cms application is required");
}
const api = Router();
api.use(json({ limit: JSON_UPLOAD_LIMIT }));
api.post(
"/tools",
withResolvedContext(
resolveContext,
async (req, res) => {
const tool = await application.createTool(req.body);
res.status(201).json(tool);
},
{ required: false }
)
);
api.get(
"/tools",
withResolvedContext(
resolveContext,
async (req, res) => {
const tools = await application.getTools(req.context);
res.json(tools);
},
{ required: false }
)
);
api.get(
"/tools/:id",
withResolvedContext(
resolveContext,
async (req, res) => {
const tool = await application.getTool(req.params.id);
if (!tool) return sendNotFound(res, "Tool");
res.json(tool);
},
{ required: false }
)
);
api.put(
"/tools/:id",
withResolvedContext(
resolveContext,
async (req, res) => {
const tool = await application.updateTool(req.params.id, req.body);
if (!tool) return sendNotFound(res, "Tool");
res.json(tool);
},
{ required: false }
)
);
api.delete(
"/tools/:id",
withResolvedContext(
resolveContext,
async (req, res) => {
await application.deleteTool(req.params.id);
res.json({ success: true });
},
{ required: false }
)
);
api.post(
"/prompts",
withResolvedContext(
resolveContext,
async (req, res) => {
const prompt = await application.createPrompt(req.body);
res.status(201).json(prompt);
},
{ required: false }
)
);
api.get(
"/prompts",
withResolvedContext(
resolveContext,
async (req, res) => {
const prompts = await application.getPrompts(req.query);
res.json(prompts);
},
{ required: false }
)
);
api.get(
"/prompts/:id",
withResolvedContext(
resolveContext,
async (req, res) => {
const prompt = await application.getPrompt(req.params.id);
if (!prompt) return sendNotFound(res, "Prompt");
res.json(prompt);
},
{ required: false }
)
);
api.put(
"/prompts/:id",
withResolvedContext(
resolveContext,
async (req, res) => {
const prompt = await application.updatePrompt(req.params.id, req.body);
if (!prompt) return sendNotFound(res, "Prompt");
res.json(prompt);
},
{ required: false }
)
);
api.delete(
"/prompts/:id",
withResolvedContext(
resolveContext,
async (req, res) => {
await application.deletePrompt(req.params.id);
res.json({ success: true });
},
{ required: false }
)
);
return api;
}