-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
488 lines (416 loc) · 13.8 KB
/
app.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
const express = require('express')
const { InMemorySigner } = require('@taquito/signer');
const {TezosToolkit, MichelCodecPacker } = require('@taquito/taquito');
const { KeyStoreUtils, SoftSigner } = require('conseiljs-softsigner');
const { TezosNodeWriter, KeyStoreType } = require('conseiljs');
var swaggerJSDoc = require("swagger-jsdoc");
var swaggerUi = require("swagger-ui-express");
const bodyParser = require('body-parser')
const app = express()
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({ extended: true }));
const acc = require('./ithacanet.json')
app.engine('html', require('ejs').renderFile);
app.set('view engine', 'html');
app.set('views', __dirname);
const tezos = new TezosToolkit('https://ithacanet.smartpy.io');
const contractKey='KT19uY7VYK4a5EeujFMAP1Wrh9npuSYdDaGS';
const privateKey ="tz1M6x9Y4cAGWpmkJjrSopTLfTLAUVmCZoLv";
const https = require("https");
tezos.setPackerProvider(new MichelCodecPacker());
tezos.setSignerProvider(InMemorySigner.fromFundraiser(acc.email, acc.password, acc.mnemonic.join(' ')))
const swaggerDefinition = {
openapi: '3.0.0',
info: {
title: 'Express API for Saving Account smart contract',
version: '1.0.0',
description:
'This is a REST API application made with Express. It sends and retrieves data from saving smart contract.',
license: {
name: 'Licensed Under MIT',
url: 'https://spdx.org/licenses/MIT.html',
},
contact: {
name: 'JSONPlaceholder',
url: 'https://jsonplaceholder.typicode.com',
},
},
servers: [
{
url: 'https://savingsmartcontract.herokuapp.com',
description: 'Development server',
},
],
// servers: [
// {
// url: 'http://localhost:8100/',
// description: 'Development server',
// },
// ],
};
const options = {
swaggerDefinition,
// Paths to files containing OpenAPI definitions
apis: ['./app.js'],
};
const swaggerSpec = swaggerJSDoc(options);
app.use('/apis', swaggerUi.serve, swaggerUi.setup(swaggerSpec));
app.get('/', (req, res) => {
res
.status(200)
.send('Hello server is running')
.end();
});
//*********************************Create Tezos account***************************************/
/**
* @swagger
* /createTezWallet:
* get:
* summary: create Tezos wallet
* description: create Tezos wallet
* responses:
* '200':
* description: Tezos wallet created.
* '400':
* description: An error occured
* '500':
* description: Server error
* content:
* application/json:
* schema:
* type: string
*/
app.get('/createTezWallet', async(req, res) => {
try {
console.log('test');
const mnemonic = KeyStoreUtils.generateMnemonic();
console.log(`mnemonic: ${mnemonic}`);
return res.send({ Mnemonic:mnemonic })
} catch (error) {
console.log(`Error: verify your infos`);
return res.status(400).send("Oops error, try again later");
}finally{
res.end();
}
});
//*********************************Restore Tezos Wallet***************************************/
/**
* @swagger
* /restoreTezWallet:
* post:
* responses:
* '200':
* description: success
* '400':
* description: error occured, try again
* '500':
* description: Server error
* summary: Restore wallet from Mnemonic
* requestBody:
* required: true
* content:
* application/json:
* schema:
* type: object
* properties:
* mnemonic:
* type: string
* description: Restore wallet from Mnemonic
* example: industry indicate noble later second person comfort security fog bachelor volume tribe clap tunnel light hazard harsh foot eyebrow steel elder tent journey shield
*/
app.post('/restoreTezWallet', async(req, res) => {
try {
console.log('test');
const mnemonic = req.body.mnemonic;
console.log(`mnemonic: ${mnemonic}`);
const keystore = await KeyStoreUtils.restoreIdentityFromMnemonic(mnemonic, '');
console.log('Keystore: ' +keystore)
console.log(`account id: ${keystore.publicKeyHash}`);
console.log(`public key: ${keystore.publicKey}`);
console.log(`secret key: ${keystore.secretKey}`);
return res.json({ accountId: keystore.publicKeyHash,
publicKey: keystore.publicKey,
secretKey: keystore.secretKey,
Passphrase:mnemonic
})
} catch (error) {
console.log(`Error: Incorrect Mnemonic`);
return res.status(400).send("Incorrect Mnemonic, try again");
}finally{
res.end();
}
});
//*********************************Get Balance**************************************8 */
/**
* @swagger
* /walletBalance:
* post:
* responses:
* '200':
* description: success
* '400':
* description: Incorrect publicKey, try again
* '500':
* description: Server error
* summary: Check wallet balance
* requestBody:
* required: true
* content:
* application/json:
* schema:
* type: object
* properties:
* publicKey:
* type: string
* description: public key
* example: tz1M6x9Y4cAGWpmkJjrSopTLfTLAUVmCZoLv
*/
app.post('/walletBalance', (req,res) => {
publicKey = req.body.publicKey;
tezos.tz
.getBalance(publicKey)
.then((balance) =>{
console.log(`Public key balance is: ${balance.toNumber() / 1000000} ꜩ`);
return res.send(`Wallet balance is: ${balance.toNumber() / 1000000} ꜩ`);
})
.catch((error) => {
// console.log(`Error: ${JSON.stringify(error, null, 2)}`))
console.log(`Error: verify your infos`);
return res.status(400).send("Enter a valid Tezos Public key and try again");
})
.finally(()=>{
res.end();
})
})
//////////////////////////////////////////////////////////////////////////////////////////////////////
//// ALL POST FUNCTIONS FOR THE SMART CONTRACT ////
//////////////////////////////////////////////////////////////////////////////////////////////////////
//*********************************Create Saving***************************************/
/**
* @swagger
* /savingAccounts:
* post:
* responses:
* '200':
* description: success
* '400':
* description: An error occured
* '500':
* description: Server error
* summary: Create a saving Account
* requestBody:
* required: true
* content:
* application/json:
* schema:
* type: object
* properties:
* id:
* type: integer
* description: Account id
* example: 4
* publicKey:
* type: string
* description: Saving Account public key
* example: tz1M6x9Y4cAGWpmkJjrSopTLfTLAUVmCZoLv
* name:
* type: string
* description: Saving Account name
* example: Laptop purchase saving
* withdrawDate:
* type: string
* description: Withdrawal date
* example: 2022-05-23T11:45:25
*/
app.post('/savingAccounts', (req,res) => {
tezos.contract
.at(contractKey)
.then((contract) => {
const date = new Date();
var timestamp = date.getTime();;
const id =req.body.id;
const name= req.body.name;
const publicKey = req.body.publicKey;
const withdrawDate = new Date(req.body.withdrawDate);
var timestamp2= withdrawDate.getTime();;
console.log("Creating a saving account with credentials " +date, timestamp.toString(),id, name, publicKey, withdrawDate, timestamp2.toString());
return contract.methods.savingAccounts(timestamp.toString(),id, name, publicKey, timestamp2.toString()).send();
})
.then((op) => {
console.log(`Awaiting for ${op.hash} to be confirmed...`);
return res.send((op.hash).toString());
})
.catch((error) => {
// console.log(`Error: ${JSON.stringify(error, null, 2)}`))
console.log(`Error: verify your infos`);
return res.status(400).send("Sorry Id already in use, try again with a different id");
}) .finally(()=>{
res.end();
})
})
//*********************************add Saving***************************************/
/**
* @swagger
* /addSaving:
* post:
* responses:
* '200':
* description: success
* '400':
* description: An error occured
* '500':
* description: Server error
* summary: Add saving to Account
* requestBody:
* required: true
* content:
* application/json:
* schema:
* type: object
* properties:
* amount:
* type: integer
* description: Amount to save
* example: 50
* id:
* type: integer
* description: Account id
* example: 4
* publicKey:
* type: string
* description: Saving account public key
* example: tz1M6x9Y4cAGWpmkJjrSopTLfTLAUVmCZoLv
*/
app.post('/addSaving', (req,res) => {
tezos.contract
.at(contractKey)
.then((contract) => {
const amount =req.body.amount
const date = new Date();
var timestamp = date.getTime();
const id =req.body.id
const publicKey = req.body.publicKey
console.log("Creating a saving account with credentials " + amount, timestamp.toString(),id, publicKey);
return contract.methods.addSaving(amount, timestamp.toString(),id, publicKey).send();
})
.then((op) => {
console.log(`Awaiting for ${op.hash} to be confirmed...`);
return res.send((op.hash).toString());
})
.catch((error) => {
// console.log(`Error: ${JSON.stringify(error, null, 2)}`))
console.log(`Error: verify your infos`);
return res.status(400).send("Verify your public key or Id infos and try again");
}) .finally(()=>{
res.end();
})
})
//*********************************demande withdraw***************************************/
/**
* @swagger
* /demandWithdraw:
* post:
* responses:
* '200':
* description: success
* '400':
* description: An error occured
* '500':
* description: Server error
* summary: Demand withdraw from saving Account
* requestBody:
* required: true
* content:
* application/json:
* schema:
* type: object
* properties:
* amount:
* type: integer
* description: Amount to save
* example: 50
* id:
* type: integer
* description: Account id
* example: 4
* publicKey:
* type: string
* description: Saving account public key
* example: tz1M6x9Y4cAGWpmkJjrSopTLfTLAUVmCZoLv
*/
app.post('/demandWithdraw', (req,res) => {
tezos.contract
.at(contractKey)
.then((contract) => {
const amount =req.body.amount
const date = new Date();
var timestamp = date.getTime();
const id =req.body.id
const publicKey = req.body.publicKey
console.log("Demand withdraw from saving account with credentials " + amount,date, timestamp.toString(),id, publicKey);
return contract.methods.demandWithdraw(amount, timestamp.toString(),id, publicKey).send();
})
.then((op) => {
console.log(`Awaiting for ${op.hash} to be confirmed...`);
return res.send((op.hash).toString());
})
.catch((error) => {
// console.log(`Error: ${JSON.stringify(error, null, 2)}`))
console.log(`Error: verify your infos`);
return res.status(400).send("Not yet withdrawal time, try again later");
}) .finally(()=>{
res.end();
})
})
//Transfer Tez to participants after withdraw demand
/**
* @swagger
* /transfer:
* post:
* responses:
* '200':
* description: success
* '400':
* description: An error occured
* '500':
* description: Server error
* summary: send Tez to wallet
* requestBody:
* required: true
* content:
* application/json:
* schema:
* type: object
* properties:
* amount:
* type: integer
* description: Amount to send
* example: 50
* publicKey:
* type: string
* description: account public key
* example: tz1M6x9Y4cAGWpmkJjrSopTLfTLAUVmCZoLv
*/
app.post('/transfer', (req,res) => {
const amount = req.body.amount;
const publicKey = req.body.publicKey;
console.log(`Transfering ${amount} ꜩ to ${publicKey}...`);
tezos.contract
.transfer({ to: publicKey, amount: amount })
.then((op) => {
console.log(`Waiting for ${op.hash} to be confirmed...`);
// return op.confirmation(1).then(() => op.hash);
return res.send((op.hash).toString());
})
.catch((error) => {
// console.log(`Error: ${JSON.stringify(error, null, 2)}`))
console.log(`Error: verify your infos`);
return res.status(400).send("Public key not valid, try again later");
}) .finally(()=>{
res.end();
})
})
var port = process.env.PORT || 8100;
app.listen(port, () => {
console.log("App is running on port " + port);
});