-
Notifications
You must be signed in to change notification settings - Fork 69
/
server.js
218 lines (201 loc) · 6.24 KB
/
server.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
const Registry = require('eth-registry');
const Web3 = require('web3');
// Dependencies
const _ = require('lodash');
const express = require('express');
const fs = require('fs');
// Database toolds
const bodyParser = require('body-parser');
require('./db/config'); // Database login secrets
var { db } = require('./db/mongoose');
var { Contract } = require('./models/contract');
var { User } = require('./models/user');
var mnGen = require('mngen'); // Random word generator
// process.env.NODE_ENV === 'production'
var app = express();
app.set('port', process.env.PORT || 3001);
// Express only serves static assets in production
app.use(bodyParser.json());
app.post('/contracts', (req, res) => {
const contractName = req.body.contractName;
const abi = req.body.abi;
const contractAddress = req.body.contractAddress;
const network = req.body.network;
const creatorAddress = req.body.creatorAddress.toLowerCase();
// Generate the mnemonic word for the URL
const mnemonic = mnGen.word(2);
const currentTime = Date.now();
console.log(' ');
console.log('################## POST #####################');
console.log(
`Name: ${contractName}, network: ${network}, address: ${contractAddress}`
);
console.log(`Creator address: ${creatorAddress}`);
console.log(`Current time: ${currentTime}`);
console.log(`URL: www.oneclickdapp.com/${mnemonic}`);
var contract = new Contract({
contractName: contractName,
abi: abi,
contractAddress: contractAddress,
network: network,
mnemonic: mnemonic,
createdAt: currentTime,
creatorAddress
});
User.findOneAndUpdate(
{ creatorAddress },
{ $push: { savedDapps: mnemonic } },
{
upsert: true,
new: true
},
function() {
console.log('User created/updated successfully!');
}
);
contract.save().then(
doc => {
res.send(doc);
},
e => {
res.status(400).send(e);
}
);
});
app.get('/contracts/recentContracts', (req, res) => {
Contract.find()
.sort({ _id: -1 })
.limit(50)
.then(contractArray => {
recentContracts = new Array();
contractArray.forEach(contract => {
var contractData = {
contractName: contract.contractName,
network: contract.network,
mnemonic: contract.mnemonic,
createdAt: contract._id.getTimestamp(),
creatorAddress: contract.creatorAddress
};
recentContracts.push(contractData);
});
res.send({
recentContracts
});
})
.catch(function(err) {
res.status(400).send(`Recent contracts not found...`);
console.log(err.err);
});
});
app.get('/contracts/externalContracts', (req, res) => {
console.log(' ');
console.log('################## GET #####################');
console.log(`Retrieving external contracts`);
let externalContracts = [];
const path = './externalContracts/myEtherWallet/src/contracts/eth';
fs.readdirSync(path).forEach(file => {
const contract = JSON.parse(fs.readFileSync(`${path}/${file}`, 'utf8'));
contract.source = 'MEW Ethereum-lists';
contract.title = contract.name;
externalContracts.push(contract);
});
res.send({
externalContracts
});
});
app.get('/contracts/:mnemonic', (req, res) => {
var mnemonic = req.params.mnemonic.toLowerCase();
console.log(' ');
console.log('################## GET #####################');
console.log(`Retrieving contract for mnemonic: ${mnemonic}`);
Contract.find({ mnemonic: mnemonic })
.then(contractArray => {
if (contractArray.length) {
var myContract = contractArray[0];
const contractName = myContract.contractName;
const abi = myContract.abi;
const contractAddress = myContract.contractAddress;
const network = myContract.network;
const createdAt = myContract._id.getTimestamp();
const provider = new Web3.providers.HttpProvider(
`https://mainnet.infura.io/`
);
const registry = new Registry(provider);
let metaData = {};
registry
.get(contractAddress)
.then(res => {
metaData = res;
res.send({
contractName,
abi,
contractAddress,
network,
createdAt,
metaData
});
})
.catch(e => {
console.error(e);
res.send({
contractName,
abi,
contractAddress,
network,
createdAt,
metaData
});
});
} else {
res.status(400).send(`Contract not found: ${mnemonic}`);
return;
}
})
.catch(function(err) {
res.status(400).send(`Contract not found: ${mnemonic}`);
console.log(err.err);
});
});
app.get('/user/:creatorAddress', (req, res) => {
var creatorAddress = req.params.creatorAddress.toLowerCase();
console.log(' ');
console.log('################## GET #####################');
console.log(`Retrieving contracts for user address: ${creatorAddress}`);
User.findOne({ creatorAddress })
.then(user => {
mnemonics = user.savedDapps;
if (mnemonics !== undefined && mnemonics.length > 0) {
Contract.find({ mnemonic: { $in: mnemonics } })
.sort({ _id: -1 })
.then(dapps => {
// createdAt: dapp._id.getTimestamp();
res.send(dapps);
});
} else {
res.status(400).send(`User not found: ${creatorAddress}`);
}
})
.catch(function(err) {
res.status(400).send(`User not found`);
console.log(err.err);
});
});
// Return the front-end for all other GET calls
if (process.env.NODE_ENV === 'production') {
app.set('port', 80);
app.use(express.static('client/build'));
app.use('*', express.static('client/build'));
}
app.listen(app.get('port'), () => {
console.log(
`_______________________________________________________________`
);
console.log(` `);
console.log(`################# oneClickDApp API Server ####################`);
console.log(` `);
console.log(`Started on port ${app.get('port')}`);
console.log(`______________________________________________________________`);
console.log(` `);
});
//allows export app to server.test.js
module.exports = { app };