added svcapi ui and camunda code
[it/otf.git] / otf-frontend / server / src / feathers / services / test-heads / test-heads.hooks.js
1 /*  Copyright (c) 2019 AT&T Intellectual Property.                             #\r
2 #                                                                              #\r
3 #   Licensed under the Apache License, Version 2.0 (the "License");            #\r
4 #   you may not use this file except in compliance with the License.           #\r
5 #   You may obtain a copy of the License at                                    #\r
6 #                                                                              #\r
7 #       http://www.apache.org/licenses/LICENSE-2.0                             #\r
8 #                                                                              #\r
9 #   Unless required by applicable law or agreed to in writing, software        #\r
10 #   distributed under the License is distributed on an "AS IS" BASIS,          #\r
11 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.   #\r
12 #   See the License for the specific language governing permissions and        #\r
13 #   limitations under the License.                                             #\r
14 ##############################################################################*/\r
15 \r
16 \r
17 const { authenticate } = require('@feathersjs/authentication').hooks;\r
18 const { permissions, limitFields } = require('../../hooks/permissions/permissions.js');\r
19 const { iff } = require('feathers-hooks-common');\r
20 const convertToJSON = require('../../hooks/convertToJSON.js');\r
21 const convertToYAML = require('../../hooks/convertToYAML.js');\r
22 \r
23 module.exports = {\r
24         before: {\r
25                 all: [authenticate('jwt'), permissions('testHeads')],\r
26                 find: [],\r
27                 get: [],\r
28                 create: [convertToJSON(), function (context) {\r
29                         context.data.creatorId = context.params.user._id;\r
30                         return context;\r
31                 }\r
32                 ],\r
33                 update: [convertToJSON()],\r
34                 patch: [convertToJSON()],\r
35                 remove: [\r
36                 ]\r
37         },\r
38 \r
39         after: {\r
40                 all: [iff(context => context.params.provider, limitFields())],\r
41                 find: [convertToYAML()],\r
42                 get: [convertToYAML()],\r
43                 create: [],\r
44                 update: [],\r
45                 patch: [],\r
46                 remove: []\r
47         },\r
48 \r
49         error: {\r
50                 all: [],\r
51                 find: [],\r
52                 get: [],\r
53                 create: [],\r
54                 update: [],\r
55                 patch: [],\r
56                 remove: []\r
57         }\r
58 };\r