-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
109 lines (84 loc) · 2.94 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
import express from 'express';
import fs from 'fs';
import path from 'path';
import Web3 from 'web3';
import bodyParser from 'body-parser';
import session from 'express-session';
const app = express();
const port = 3000;
const __dirname = path.resolve();
const usersFilePath = path.join(__dirname, 'data', 'users.json');
app.use(express.static('public'));
app.use(bodyParser.json());
app.use(session({
secret: 'mysecret',
resave: false,
saveUninitialized: true
}));
app.post('/register', (req, res) => {
const { username, password } = req.body;
if (!username || !password) {
return res.json({ success: false, message: 'Username and password are required.' });
}
const users = JSON.parse(fs.readFileSync(usersFilePath));
const existingUser = users.find(user => user.username === username);
if (existingUser) {
return res.json({ success: false, message: 'Username already exists.' });
}
const web3 = new Web3();
const wallet = web3.eth.accounts.create();
const newUser = {
username,
password,
address: wallet.address,
privateKey: wallet.privateKey
};
users.push(newUser);
fs.writeFileSync(usersFilePath, JSON.stringify(users, null, 2));
res.json({ success: true, newUser });
});
app.post('/login', (req, res) => {
const { username, password } = req.body;
if (!username || !password) {
return res.json({ success: false, message: 'Username and password are required.' });
}
const users = JSON.parse(fs.readFileSync(usersFilePath));
const user = users.find(user => user.username === username && user.password === password);
if (!user) {
return res.json({ success: false, message: 'Invalid username or password.' });
}
req.session.user = user;
res.json({ success: true });
});
app.get('/generate-wallet', async (req, res) => {
const user = req.session.user;
if (!user) {
return res.status(401).json({ error: 'Unauthorized' });
}
const web3 = new Web3('https://mainnet.infura.io/v3/3720dfa230c24ce891c244b57a1142d6'); // Infura API kullanarak Ethereum RPC URL'si
const wallet = web3.eth.accounts.create();
try {
const balance = await web3.eth.getBalance(wallet.address);
const balanceInEth = web3.utils.fromWei(balance, 'ether');
const walletInfo = {
address: wallet.address,
privateKey: wallet.privateKey,
balance: balanceInEth
};
res.json(walletInfo);
} catch (error) {
console.error('Error generating wallet:', error);
res.status(500).json({ error: 'An error occurred while generating wallet' });
}
});
app.listen(port, () => {
console.log(`Server running at http://localhost:${port}`);
});
app.get('/check-login', (req, res) => {
const user = req.session.user;
if (user) {
res.json({ loggedIn: true });
} else {
res.json({ loggedIn: false });
}
});