added svcapi ui and camunda code
[it/otf.git] / otf-frontend / server / src / feathers / services / test-executions / test-executions.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 \r
21 module.exports = {\r
22         before: {\r
23                 all: [authenticate('jwt'), permissions('testExecutions')],\r
24                 find: [],\r
25                 get: [],\r
26                 create: [\r
27                         function (context) {\r
28                                 context.data.executorId = context.params.user._id;\r
29                                 return context;\r
30                         }\r
31                 ],\r
32                 update: [],\r
33                 patch: [],\r
34                 remove: []\r
35         },\r
36 \r
37         after: {\r
38                 all: [iff(context => context.params.provider, limitFields())],\r
39                 find: [],\r
40                 get: [],\r
41                 create: [],\r
42                 update: [],\r
43                 patch: [],\r
44                 remove: []\r
45         },\r
46 \r
47         error: {\r
48                 all: [],\r
49                 find: [],\r
50                 get: [],\r
51                 create: [],\r
52                 update: [],\r
53                 patch: [],\r
54                 remove: []\r
55         }\r
56 };\r