UNPKG

2.76 kBJavaScriptView Raw
1const Joi = require('@hapi/joi');
2const { validate, prepare } = require('../../utils/options');
3
4// Validation
5const _id = Joi.number().positive();
6const _data = Joi.object();
7
8// Initialize Endpoint
9module.exports = (options = {}) => {
10 const { error } = validate(options);
11 if (error) throw new Error(error.details[0].message);
12
13 const { url, headers } = prepare(options);
14
15 return {
16 /**
17 * List Targets
18 *
19 * GET /api/v2/targets.json
20 * https://developer.zendesk.com/rest_api/docs/support/targets#list-targets
21 */
22 list: () => {
23 // Ignore any options
24 return {
25 method: 'GET',
26 url: `${url}/api/v2/targets.json`,
27 headers
28 };
29 },
30
31 /**
32 * Show Target
33 *
34 * GET /api/v2/targets/{id}.json
35 * https://developer.zendesk.com/rest_api/docs/support/targets#show-target
36 */
37 show: (options = {}) => {
38 const { error } = Joi.object({
39 id: _id.required()
40 }).validate(options);
41 if (error) throw new Error(error.details[0].message);
42
43 const { id } = options;
44 return {
45 method: 'GET',
46 url: `${url}/api/v2/targets/${id}.json`,
47 headers
48 };
49 },
50
51 /**
52 * Create Target
53 *
54 * POST /api/v2/targets.json
55 * https://developer.zendesk.com/rest_api/docs/support/targets#create-target
56 */
57 create: (options = {}) => {
58 const { error } = Joi.object({
59 data: _data.required()
60 }).validate(options);
61 if (error) throw new Error(error.details[0].message);
62
63 const { data } = options;
64 return {
65 method: 'POST',
66 url: `${url}/api/v2/targets.json`,
67 headers,
68 data
69 };
70 },
71
72 /**
73 * Update Target
74 *
75 * PUT /api/v2/targets/{id}.json
76 * https://developer.zendesk.com/rest_api/docs/support/targets#update-target
77 */
78 update: (options = {}) => {
79 const { error } = Joi.object({
80 id: _id.required(),
81 data: _data.required()
82 }).validate(options);
83 if (error) throw new Error(error.details[0].message);
84
85 const { id, data } = options;
86 return {
87 method: 'PUT',
88 url: `${url}/api/v2/targets/${id}.json`,
89 headers,
90 data
91 };
92 },
93
94 /**
95 * Delete Target
96 *
97 * DELETE /api/v2/targets/{id}.json
98 * https://developer.zendesk.com/rest_api/docs/support/targets#delete-target
99 */
100 delete: (options = {}) => {
101 const { error } = Joi.object({
102 id: _id.required()
103 }).validate(options);
104 if (error) throw new Error(error.details[0].message);
105
106 const { id } = options;
107 return {
108 method: 'DELETE',
109 url: `${url}/api/v2/targets/${id}.json`,
110 headers
111 };
112 }
113 };
114};