added svcapi ui and camunda code
[it/otf.git] / otf-frontend / server / src / feathers / services / feedback / feedback.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 { disallow } = require('feathers-hooks-common');\r
19 \r
20 module.exports = {\r
21         before: {\r
22                 all: [ ],\r
23                 find: [],\r
24                 get: [],\r
25                 create: [\r
26                         authenticate('jwt'),\r
27                         context => {\r
28                                 let sender = context.app.get('otf').email;\r
29                                 let data = context.data['data'];\r
30                                 let message = data['message'];\r
31                                 let user = context.params.user;\r
32 \r
33                                 let feedback = "Email: " + user['email'] + "</br>" +\r
34                                                                 "First Name: " + user['firstName'] + "</br>" +\r
35                                                                 "Last Name: " + user['lastName'] + "</br>" +\r
36                                                                 "Message: " + message + "</br>" +\r
37                                                                 "Date: " + new Date();\r
38                                         let email = {\r
39                                         from: sender,\r
40                                         to: sender,\r
41                                         subject: 'Feedback',\r
42                                         html: feedback\r
43                                 }\r
44 \r
45                                 return context.app.service(context.app.get('base-path') + 'mailer').create(email).then(function (result) {\r
46                                         console.log('Sent email', result)\r
47                                 }).catch(err => {\r
48                                         console.log('Error sending email: ', email, err)\r
49                                 })\r
50 \r
51 \r
52                         }\r
53                 ],\r
54                 update: [],\r
55                 patch: [],\r
56                 remove: []\r
57         },\r
58 \r
59         after: {\r
60                 all: [],\r
61                 find: [],\r
62                 get: [],\r
63                 create: [],\r
64                 update: [],\r
65                 patch: [],\r
66                 remove: []\r
67         },\r
68 \r
69         error: {\r
70                 all: [],\r
71                 find: [],\r
72                 get: [],\r
73                 create: [],\r
74                 update: [],\r
75                 patch: [],\r
76                 remove: []\r
77         }\r
78 };\r