-
Notifications
You must be signed in to change notification settings - Fork 116
/
auth.php
173 lines (165 loc) · 8.3 KB
/
auth.php
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
<?php
require'database.php';
require_once'functions_main.php';
$FEEBEE = "feebee"; // IMPORTANT, this is the account that fees will be paid to make sure to register it
$server_url = "example.com"; // url to the exchange
$script_title = "[zelles] Bitcoin Exchange"; // title of the exchange
$CSS_Stylesheet = '<link rel="stylesheet" type="text/css" href="stylesheet.css">'; // a global style sheet
$ip = $_SERVER['REMOTE_ADDR'];
$date = date("n/j/Y g:i a");;
$db_handle = mysql_connect($dbdb_host,$dbdb_user,$dbdb_pass)or die("Server error.");
$db_found = mysql_select_db($dbdb_database)or die("Server error.");
$coin_selected = $_SESSION['trade_coin'];
if(!$coin_selected) {
$_SESSION['trade_coin'] = "BTC"; // default trade section to load when user first arrives
header("Location: home.php");
}
if($_SESSION['trade_coin']=="LTC") {
$BTC = "LTC"; // rate coin
$BTE = "BTE"; // amount coin
$BTCS = "Litecoin"; // rate coin name
$BTES = "Bytecoin"; // amount coin name
}
if($_SESSION['trade_coin']=="BTC") {
$BTC = "BTC"; // rate coin
$BTE = "BTE"; // amount coin
$BTCS = "Bitcoin"; // rate coin name
$BTES = "Bytecoin"; // amount coin name
}
$RPC_Host = "127.0.0.1"; // machine clients are running on. split if needed
$RPC_Port_BTC = "9999"; // coin client 1 port
$RPC_Port_LTC = "9888"; // coin client 2 port
$RPC_Port_BTE = "9777"; // coin client 3 port
$BTC_RPC_User = "BitcoinRPCUsername"; // coin client 1 username
$LTC_RPC_User = "LitecoinRPCUsername"; // coin client 2 username
$BTE_RPC_User = "BytecoinRPCUsername"; // coin client 3 username
$BTC_RPC_Pass = "BitcoinRPCPassword"; // coin client 1 password
$LTC_RPC_Pass = "LitecoinRPCPassword"; // coin client 2 password
$BTE_RPC_Pass = "BytecoinRPCPassword"; // coin client 3 password
$nv93y54tjwy4t9wn = "http://".$BTC_RPC_User.":".$BTC_RPC_Pass."@".$RPC_Host.":".$RPC_Port_BTC."/";
$nu2u5p9u2np8uj5wr = "http://".$BTE_RPC_User.":".$BTE_RPC_Pass."@".$RPC_Host.":".$RPC_Port_BTE."/";
$n9nyv35yp9w8un95uw = "http://".$LTC_RPC_User.":".$LTC_RPC_Pass."@".$RPC_Host.":".$RPC_Port_LTC."/";
$Bitcoind = new jsonRPCClient($nv93y54tjwy4t9wn);
$Bytecoind = new jsonRPCClient($nu2u5p9u2np8uj5wr);
$Chncoind = new jsonRPCClient($n9nyv35yp9w8un95uw);
$user_session = $_SESSION['user_session'];
if(!$user_session) {
$Logged_In = 2;
} else {
$Logged_In = 7;
$wallet_id = "zellesExchange(".$user_session.")";
$Bitcoind_Account_Address = $Bitcoind->getaccountaddress($wallet_id);
$Bytecoind_Account_Address = $Bytecoind->getaccountaddress($wallet_id);
$Chncoind_Account_Address = $Chncoind->getaccountaddress($wallet_id);
$SQL = "SELECT * FROM balances WHERE username='$user_session'";
$result = mysql_query($SQL);
$num_rows = mysql_num_rows($result);
if($num_rows!=1) {
if(!mysql_query("INSERT INTO balances (id,username,coin1,coin2,coin3,coin4,coin5,coin6,coin7,coin8,coin9,coin10) VALUES ('','$user_session','0','0','0','0','0','0','0','0','0','0')")) {
die("Server error");
} else {
$r_system_action = "success";
}
}
$SQL = "SELECT * FROM addresses WHERE username='$user_session'";
$result = mysql_query($SQL);
$num_rows = mysql_num_rows($result);
if($num_rows!=1) {
if(!mysql_query("INSERT INTO addresses (id,username,coin1,coin2,coin3,coin4,coin5,coin6,coin7,coin8,coin9,coin10) VALUES ('','$user_session','$Bitcoind_Account_Address','$Bytecoind_Account_Address','$Chncoind_Account_Address','0','0','0','0','0','0','0')")) {
die("Server error");
} else {
$r_system_action = "success";
}
}
$Bitcoind_Balance = userbalance($user_session,"BTC");
$Bytecoind_Balance = userbalance($user_session,"BTE");
$Chncoind_Balance = userbalance($user_session,"LTC");
$Bitcoind_List_Transactions = $Bitcoind->listtransactions($wallet_id,50);
foreach($Bitcoind_List_Transactions as $Bitcoind_List_Transaction) {
if($Bitcoind_List_Transaction['category']=="receive") {
if(6<=$Bitcoind_List_Transaction['confirmations']) {
$DEPOSIT_tx_type = 'deposit';
$DEPOSIT_coin_type = "BTC";
$DEPOSIT_date = date('n/j/y h:i a',$Bitcoind_List_Transaction['time']);
$DEPOSIT_address = $Bitcoind_List_Transaction['address'];
$DEPOSIT_amount = abs($Bitcoind_List_Transaction['amount']);
$DEPOSIT_txid = $Bitcoind_List_Transaction['txid'];
$SQL = "SELECT * FROM transactions WHERE coin='$DEPOSIT_coin_type' and txid='$DEPOSIT_txid'";
$result = mysql_query($SQL);
$num_rows = mysql_num_rows($result);
if($num_rows!=1) {
if(!mysql_query("INSERT INTO transactions (id,date,username,action,coin,address,txid,amount) VALUES ('','$DEPOSIT_date','$user_session','$DEPOSIT_tx_type','$DEPOSIT_coin_type','$DEPOSIT_address','$DEPOSIT_txid','$DEPOSIT_amount')")) {
die("Server error");
} else {
$result = plusfunds($user_session,"BTC",$DEPOSIT_amount);
if($result) {
$r_system_action = "success";
} else {
die("Server error");
}
}
}
}
}
}
$Bytecoind_List_Transactions = $Bytecoind->listtransactions($wallet_id,50);
foreach($Bytecoind_List_Transactions as $Bytecoind_List_Transaction) {
if($Bytecoind_List_Transaction['category']=="receive") {
if(6<=$Bytecoind_List_Transaction['confirmations']) {
$DEPOSIT_tx_type = 'deposit';
$DEPOSIT_coin_type = "BTE";
$DEPOSIT_date = date('n/j/y h:i a',$Bytecoind_List_Transaction['time']);
$DEPOSIT_address = $Bytecoind_List_Transaction['address'];
$DEPOSIT_amount = abs($Bytecoind_List_Transaction['amount']);
$DEPOSIT_txid = $Bytecoind_List_Transaction['txid'];
$SQL = "SELECT * FROM transactions WHERE coin='$DEPOSIT_coin_type' and txid='$DEPOSIT_txid'";
$result = mysql_query($SQL);
$num_rows = mysql_num_rows($result);
if($num_rows!=1) {
if(!mysql_query("INSERT INTO transactions (id,date,username,action,coin,address,txid,amount) VALUES ('','$DEPOSIT_date','$user_session','$DEPOSIT_tx_type','$DEPOSIT_coin_type','$DEPOSIT_address','$DEPOSIT_txid','$DEPOSIT_amount')")) {
die("Server error");
} else {
$result = plusfunds($user_session,"BTE",$DEPOSIT_amount);
if($result) {
$r_system_action = "success";
} else {
die("Server error");
}
}
}
}
}
}
$Chncoind_List_Transactions = $Chncoind->listtransactions($wallet_id,50);
foreach($Chncoind_List_Transactions as $Chncoind_List_Transaction) {
if($Chncoind_List_Transaction['category']=="receive") {
if(6<=$Chncoind_List_Transaction['confirmations']) {
$DEPOSIT_tx_type = 'deposit';
$DEPOSIT_coin_type = "LTC";
$DEPOSIT_date = date('n/j/y h:i a',$Chncoind_List_Transaction['time']);
$DEPOSIT_address = $Chncoind_List_Transaction['address'];
$DEPOSIT_amount = abs($Chncoind_List_Transaction['amount']);
$DEPOSIT_txid = $Chncoind_List_Transaction['txid'];
$SQL = "SELECT * FROM transactions WHERE coin='$DEPOSIT_coin_type' and txid='$DEPOSIT_txid'";
$result = mysql_query($SQL);
$num_rows = mysql_num_rows($result);
if($num_rows!=1) {
if(!mysql_query("INSERT INTO transactions (id,date,username,action,coin,address,txid,amount) VALUES ('','$DEPOSIT_date','$user_session','$DEPOSIT_tx_type','$DEPOSIT_coin_type','$DEPOSIT_address','$DEPOSIT_txid','$DEPOSIT_amount')")) {
die("Server error");
} else {
$result = plusfunds($user_session,"LTC",$DEPOSIT_amount);
if($result) {
$r_system_action = "success";
} else {
die("Server error");
}
}
}
}
}
}
$Bitcoind_Balance = userbalance($user_session,"BTC"); // Simple function to call the users balance
$Bytecoind_Balance = userbalance($user_session,"BTE");
$Chncoind_Balance = userbalance($user_session,"LTC");
}
?>