forked from applsdev/openex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
182 lines (144 loc) · 7.79 KB
/
index.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
174
175
176
177
178
179
180
181
182
<?php
require_once("models/config.php");
//mobile event listener
$useragent=$_SERVER['HTTP_USER_AGENT'];
if(preg_match('/(android|bb\d+|meego).+mobile|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\.(browser|link)|vodafone|wap|windows (ce|phone)|xda|xiino/i',$useragent)||preg_match('/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\-(n|u)|c55\/|capi|ccwa|cdm\-|cell|chtm|cldc|cmd\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\-s|devi|dica|dmob|do(c|p)o|ds(12|\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\-|_)|g1 u|g560|gene|gf\-5|g\-mo|go(\.w|od)|gr(ad|un)|haie|hcit|hd\-(m|p|t)|hei\-|hi(pt|ta)|hp( i|ip)|hs\-c|ht(c(\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\-(20|go|ma)|i230|iac( |\-|\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\/)|klon|kpt |kwc\-|kyo(c|k)|le(no|xi)|lg( g|\/(k|l|u)|50|54|\-[a-w])|libw|lynx|m1\-w|m3ga|m50\/|ma(te|ui|xo)|mc(01|21|ca)|m\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\-2|po(ck|rt|se)|prox|psio|pt\-g|qa\-a|qc(07|12|21|32|60|\-[2-7]|i\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\-|oo|p\-)|sdk\/|se(c(\-|0|1)|47|mc|nd|ri)|sgh\-|shar|sie(\-|m)|sk\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\-|v\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\-|tdg\-|tel(i|m)|tim\-|t\-mo|to(pl|sh)|ts(70|m\-|m3|m5)|tx\-9|up(\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\-|your|zeto|zte\-/i',substr($useragent,0,4)))
{
header('Location: https://openex.mobi');
}
include("system/ratelimiter.php");
//memcached listener
$rateLimiter = new RateLimiter(new Memcache(), $_SERVER["REMOTE_ADDR"]);
try {
$rateLimiter->limitRequestsInMinutes(15, 1);
} catch (RateExceededException $e) {
header("HTTP/1.0 529 Too Many Requests");
exit;
}
// global session config
$id = $loggedInUser->user_id;
$account = $loggedInUser->display_username;
?>
<html>
<head>
<meta name="viewport" content="width=800, user-scalable=no">
<link rel="icon" type="image/png" href="assets/img/favicon.png" />
<link href="assets/css/base.css" type="text/css" rel="stylesheet" />
<title><?php echo $title; ?></title>
</head>
<body>
<div class="meny">
<div class="chat">
<div id="chat_box">
<!--ajax will put messages here-->
</div>
<?php
if (isUserLoggedIn()){
echo '<div id="LoggedOut"><b>Chatbox is down for maintenance.</b></div>';
/*
echo '<form id="chat_message" onsubmit="Chat();">';
echo '<input type="text" id="message"></input>';
echo '<input type="submit" style="position: absolute; left: -9999px; width: 1px; height: 1px;" value="POST"/>';
echo '</form>';
*/
} else {
echo '<div id="LoggedOut"><b>You must be logged in to chat</b></div>';
}
?>
</div>
</div>
<div class="meny-arrow"></div>
<div class="contents">
<div class="container clearfix">
<header class="website-header color">
<h1 class="Head_T"><a class="Head_A" href="http://openex.pw"><?php echo $title; ?></a></h1>
<ul id="nav" class="Head_B">
<li><a href='index.php?page=markets'>Market Overview</a></li>
<?php if(isUserLoggedIn()){ echo "<li><a href='index.php?page=account'>Account</a></li><li><a href='index.php?page=support'>Support</a></li><li><a href='index.php?page=logout'>Logout</a></li>"; } else { echo "<li><a href='index.php?page=login'>Login</a></li><li><a href='index.php?page=register'>Register</a></li>"; } $id = $loggedInUser->user_id; if(isUserAdmin($id) === true){echo "<li><a href='index.php?page=admin'>Admin</a></li><li><a href='index.php?page=site_monitor'>Site Stats</a></li><li><a href='index.php?page=coin_monitor'>Coin Monitor</a></li>"; }else{ echo "";} ?>
<li><a href='index.php?page=about'>About</a></li>
</ul>
</header>
<section class="content color">
<center>
<?php
if($_GET["page"] == "")
{
if(isUserLoggedIn())
{
include("pages/account.php");
}else{
include("pages/markets.php");
}
}else{
include("pages/".$_GET["page"].".php");
}
?></center>
</section>
<aside class="sidebar color">
<table>
<tr>
<td>
<b id="Mrkt_H">BTC Markets</b><br />
<ul id="market-list">
<li><a href='index.php?page=trade&market=71'>BLC → BTC</a></li>
<li><a href='index.php?page=trade&market=14'>BUK → BTC</a></li>
<li><a href='index.php?page=trade&market=10'>CGB → BTC</a></li>
<li><a href='index.php?page=trade&market=127'>FTC → BTC</a></li>
<li><a href='index.php?page=trade&market=7'>FRK → BTC</a></li>
<li><a href='index.php?page=trade&market=9'>GLD → BTC</a></li>
<li><a href='index.php?page=trade&market=45'>GRC → BTC</a></li>
<li><a href='index.php?page=trade&market=2'>LTC → BTC</a></li>
<li><a href='index.php?page=trade&market=8'>MNC → BTC</a></li>
<li><a href='index.php?page=trade&market=4'>NVC → BTC</a></li>
<li><a href='index.php?page=trade&market=3'>OSC → BTC</a></li>
<li><a href='index.php?page=trade&market=34'>PPC → BTC</a></li>
<li><a href='index.php?page=trade&market=43'>PTS → BTC</a></li>
<li><a href='index.php?page=trade&market=76'>TAG → BTC</a></li>
<li><a href='index.php?page=trade&market=5'>UNO → BTC</a></li>
<li><a href='index.php?page=trade&market=11'>XPM → BTC</a></li>
<li><a href='index.php?page=trade&market=22'>XRP → BTC</a></li>
</ul>
</td>
</tr>
</table>
</aside>
</div>
</div>
<script src="assets/js/meny.min.js"></script>
<script src="assets/js/meny.min.js"></script>
<script>
// Create an instance of Meny
var meny = Meny.create({
// The element that will be animated in from off screen
menuElement: document.querySelector( '.meny' ),
// The contents that gets pushed aside while Meny is active
contentsElement: document.querySelector( '.contents' ),
// [optional] The alignment of the menu (top/right/bottom/left)
position: Meny.getQuery().p || 'left',
// [optional] The height of the menu (when using top/bottom position)
height: 200,
// [optional] The width of the menu (when using left/right position)
width: 390,
// [optional] Distance from mouse (in pixels) when menu should open
threshold: 40,
// [optional] Use mouse movement to automatically open/close
mouse: true,
// [optional] Use touch swipe events to open/close
touch: true
});
// API Methods:
//meny.open();
//meny.close();
//meny.isOpen();
// Events:
//meny.addEventListener( 'open', function(){ console.log( 'open' ); } );
//meny.addEventListener( 'close', function(){ console.log( 'close' ); } );
// Embed an iframe if a URL is passed in
if( Meny.getQuery().u && Meny.getQuery().u.match( /^http/gi ) ) {
var contents = document.querySelector( '.contents' );
contents.style.padding = '0px';
contents.innerHTML = '<div class="cover"></div><iframe src="'+ Meny.getQuery().u +'" style="width: 100%; height: 100%; border: 0; position: absolute;"></iframe>';
}
</script>
</body>
</html>