-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy patheventhandler.js
executable file
·71 lines (61 loc) · 1.63 KB
/
eventhandler.js
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
/**
* eventhandler.js
* ----------
* Module containing event handling logic.
*/
// DEPENDENCIES
// =============================================================================
const file = require('./file.js')();
const serverUrl = process.env.ELVIS_SERVER_URL;
const request = require('./elvis-request.js')({
serverUrl: serverUrl,
useBaseUrl: true,
username: process.env.ELVIS_USERNAME,
password: process.env.ELVIS_PASSWORD,
parseJSON: true
});
var exports = {}
exports.handle = (event) => {
//Log event
console.log('Event ' + JSON.stringify(event, null, 2));
//Using a switch to make it easy to add additional event types in the future.
switch (event.type) {
case "asset_update_metadata":
handleMetadataUpdate(event);
break;
default:
break;
}
}
function handleMetadataUpdate(event) {
//Check if the "status" field is present in the changed metadata.
if (event.changedMetadata.status) {
//Get the asset (which contains the preview url)
request({
url: '/services/search?q=id:' + event.assetId
}).then(result => {
var asset = result.hits[0];
var rating;
if (event.changedMetadata.status.newValue === "Final") {
rating = 5;
if (asset.previewUrl) {
file.download(asset.previewUrl, asset.metadata.filename);
}
} else {
rating = 1;
if (asset.previewUrl) {
file.remove(asset.previewUrl, asset.metadata.filename);
}
}
//Update the rating
var options = {
url: '/services/update?id=' + event.assetId + '&metadata=' + JSON.stringify({ rating: rating }),
method: 'POST'
}
request(options)
}).catch(err => {
console.log(err);
})
}
}
module.exports = exports;