-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsaveImageTx.js
66 lines (57 loc) · 2.42 KB
/
saveImageTx.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
/**
* Copyright 2018 IT People Corporation. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the 'License');
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an 'AS IS' BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* Author: Mohan Venkataraman <mohan.venkataraman@chainyard.com>
* Author: Sandeep Pulluru <sandeep.pulluru@chainyard.com>
* Author: Ratnakar Asara <ratnakar.asara@chainyard.com>
*/
'use strict';
var path = require('path');
var helper = require('./helper.js');
var logger = helper.getLogger('saveImageTx');
var invoke = require('./invoke-transaction.js');
const mime = require('mime-types');
const crypto = require('crypto');
const images = require("images");
const uuidv4 = require('uuid/v4');
var saveImage = async function (peerNames, channelName, chaincodeName, item, username, org_name, res) {
logger.debug(">>> saveImage() ...");
res.set('Content-Type', 'application/json');
let jsonArr = [];
let imageName = item.itemDetail + "." + mime.extension(item.itemImageType);
let base64Image = item.itemImage.split(';base64,').pop();
item.itemImageName = imageName
item.currentOwnerID = username;
item.aesKey = crypto.randomBytes(32).toString('base64');
item.itemImage = helper.encrypt(item.itemImage, item.aesKey);
item.itemID = uuidv4().toString();
item.timeStamp = helper.getTimestamp();
jsonArr.push(JSON.stringify(item));
logger.debug(">>> saveImage() : args: %s", jsonArr);
var data = await invoke.invokeChaincode(peerNames, channelName, chaincodeName, jsonArr, item.fcn, username, org_name);
if (data) {
images(Buffer.from(base64Image, 'base64'))
.size(400)
.save(path.join(__dirname , '../public/images', imageName), {
quality: 50
});
let result = JSON.parse(data);
result.itemImage = helper.decrypt(result.itemImage, result.aesKey);
return result;
} else {
return 'Failed to invoke the transaction ! check the logs for the details';
}
}
exports.saveImage = saveImage;