Initial commit
[2ch-be.git] / dev-test / choosenew.php
blobe72c77170a78d2d48f023d50875cd9dd033099b6
1 <?php
2 if (!isset($_COOKIE['DMDM']) && !isset($_COOKIE['MDMD'])) {
3 header('location:index.php');
4 exit;
6 include('config.php');
7 include('encrypt_artist.php');
9 $message = new Message;
10 $email = Decrypt($_COOKIE['DMDM'],KEY);
11 $userDataID = $message->GetID($_COOKIE['DMDM'], $id_mail_path);
13 $fdir = substr($email, 0, 1);
14 $sdir = substr($email, 1, 1);
15 if (file_exists(UDB_PATH."$fdir/$sdir/$email/usrimg.log")) {
16 $userbp = @file(UDB_PATH."$fdir/$sdir/$email/usrimg.log");
19 /*var_dump($userbp);
20 exit;*/
22 if(detect_device2($_SERVER['HTTP_USER_AGENT']) != "PLSDISPLAY"){
23 $hide = "display:none;";
24 } else {
25 $hide = "";
28 if(isset($_GET['pay'])){
29 $premiumList = file(ADBD_PATH."/imglist.log");
30 $stat = $message->within_str($premiumList[$_GET['pay']], "<stat>", "</stat>");
32 if(isset($premiumList[$_GET['pay']])){
33 if(!$stat){
34 $buyerID = trim($message->GetID($_COOKIE['DMDM'],$id_mail_path));
35 $time = time();
36 $id = $message->within_str($premiumList[$_GET['pay']], "<id>", "</id>");
37 $name = $message->within_str($premiumList[$_GET['pay']], "<name>", "</name>");;
38 $price = $message->within_str($premiumList[$_GET['pay']], "<price>", "</price>");;
39 $writeData = "<time>{$time}</time><uid>{$userDataID}</uid><id>{$id}</id><name>{$name}</name><price>{$price}</price>\n";
40 $filename = ADBD_PATH."/transaction.log";
41 $points = file_get_contents("http://tpol27.nttec.com/dev/melon.php?conv=".$price."&usr=".$email."&ip=".$_SERVER['REMOTE_ADDR']."&trans=premium&puid=".$buyerID);
43 if($points){
44 if (!file_exists($filename)) {
45 if(!file_put_contents($filename,$writeData)) {
46 echo "Error!";
47 return false;
49 } else {
50 $handle = fopen($filename, "a");
51 if(!fwrite($handle, $writeData)) {
52 echo "Error!";
53 return false;
55 fclose($handle);
57 $_SESSION['msg'] = '<div class="alert alert-success"><button type="button" class="close" data-dismiss="alert"><span aria-hidden="true">&times;</span><span class="sr-only">Close</span></button>You\'re new avatar is updated!</div>';
60 $ico = $name.".gif";
61 $ico = trim($ico);
62 if(preg_match('/[^a-z_\-0-9._]/i', $ico)){
63 $ico ="";
66 $type = Array(1 => 'gif'); //store all the image extension types in array
67 $ext = explode(".",$ico); //explode and find value after dot
69 if (strlen($ext[0]) <= 0 ) $ico = "nida.gif";
70 if(!(in_array($ext[1],$type))) //check image extension not in the array $type
72 echo "412";
73 exit;
76 $fdir = substr($email, 0, 1);
77 $sdir = substr($email, 1, 1);
78 $userData = file(DB_PATH."$fdir/$sdir/$email");
80 for ($i=0; $i < count($userData); $i++) {
81 $userData[$i] = trim($userData[$i]);
84 $userData[5] = $ico."-PREM";
85 $writeData = implode("\n",$userData);
86 $_SESSION['msg'] = '<div class="alert alert-success"><button type="button" class="close" data-dismiss="alert"><span aria-hidden="true">&times;</span><span class="sr-only">Close</span></button>You\'re new avatar is updated!</div>';
88 $fdir = substr($email, 0, 1);
89 $sdir = substr($email, 1, 1);
90 $udb_path = UDB_PATH."{$fdir}/{$sdir}/{$email}";
92 if(!is_dir($udb_path)){
93 @mkdir(UDB_PATH."{$fdir}");
94 @mkdir(UDB_PATH."{$fdir}/{$sdir}");
95 @mkdir(UDB_PATH."{$fdir}/{$sdir}/{$email}");
97 $insertUsr = '<time>'.time().'</time><filename>'.$userData[5].'</filename><aid>'.$id.'</aid>'.PHP_EOL;
98 //start
99 if(!file_exists($udb_path."/usrimg.log")){
100 file_put_contents($udb_path."/usrimg.log",$insertUsr);
101 }else{
102 $handle = fopen($udb_path."/usrimg.log", "a");
103 if(!fwrite($handle, $insertUsr)) {
104 $writeSuccess = false;
106 fclose($handle);
107 $writeSuccess = true;
109 //end
110 file_put_contents(DB_PATH."$fdir/$sdir/$email", $writeData);
111 header('location:status.php');
112 exit;
114 }else{
115 $_SESSION['msg'] = '<div class="alert alert-danger"><button type="button" class="close" data-dismiss="alert"><span aria-hidden="true">&times;</span><span class="sr-only">Close</span></button>Not enough points</div>';
116 header("Location: status.php");
117 exit;
121 }else{
122 $_SESSION['msg'] = '<div class="alert alert-danger"><button type="button" class="close" data-dismiss="alert"><span aria-hidden="true">&times;</span><span class="sr-only">Close</span></button>Doesn\'t Exist</div>';
123 header("Location: status.php");
124 exit;
127 $points = file_get_contents("http://tpol27.nttec.com/melon.php?email=".$email);
130 function FindClass($id) {
131 $list = file(ADBD_PATH."class.log");
132 $em = "";
133 $err = true;
134 // print_r($list);
135 // echo ucfirst($id);
136 foreach ($list as $key => $value) {
137 $nameCat = within_str($value, "<classname>", "</classname>");
138 if($id==$nameCat){
139 $idest = within_str($value, "<id>", "</id>");
140 break;
143 return $idest;
147 function countClass($id) {
148 $list = file(ADBD_PATH."imglist.log");
149 $id = (empty($id)) ? "" : $id;
150 $count = 0;
151 foreach ($list as $key => $value) {
152 $nameCat = within_str($value, "<classid>", "</classid>");
153 $userID = within_str($value, "<id>", "</id>");
154 if($id==$nameCat){
155 $count++;
158 return $count;
162 <!DOCTYPE html>
163 <html lang="en">
164 <head>
165 <meta charset="UTF-8">
166 <meta http-equiv="X-UA-Compatible" content="IE=edge">
167 <meta name="viewport" content="width=device-width, initial-scale=1">
168 <title>Choose Icon</title>
169 <link rel="stylesheet" href="css/bootstrap.css">
170 <link rel="stylesheet" href="css/astyle.css">
171 <style>
172 .navbar-default .navbar-nav > .active > a{
173 color: #fff;
174 border-color: #357ebd;
175 background: #428bca;
178 .navbar-default .navbar-nav > .active > a:hover{
179 color: #fff;
180 border-color: #357ebd;
181 background: #357ebd;
183 </style>
184 </head>
185 <body>
186 <div class="container container-margin-top">
187 <nav class="navbar navbar-default" role="navigation">
188 <div class="container-fluid">
189 <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#menu">
190 <span class="sr-only">Toggle Navigation</span>
191 <span class="icon-bar"></span>
192 <span class="icon-bar"></span>
193 <span class="icon-bar"></span>
194 </button>
195 <div class="collapse navbar-collapse" id="menu">
196 <ul class="nav navbar-nav">
197 <li <?php echo (!isset($_GET['pr']) && !isset($_GET['b'])) ? "class=\"active\"" : ""; ?>><a href="choose.php"><b>フリー</b></a></li>
198 <li <?php echo (isset($_GET['pr'])) ? "class=\"active\"" : ""; ?>><a href="?pr"><b>有給の</b></a></li>
199 <li <?php echo (isset($_GET['b'])) ? "class=\"active\"" : ""; ?>><a href="?b"><b>買った</b></a></li>
200 </ul>
201 <div class="navbar-right navbar-text"><strong>メロンポイント: <i><?=$points?></i></strong></div>
202 </div>
203 </div>
204 </nav>
205 <div class="container">
206 <div class="row">
209 <?php
210 if (!isset($_GET['pr']) && !isset($_GET['b'])) {
211 print "<center>";
212 #echo $livesitePath2;
213 #exit;
214 if (!isset($_GET['pr']) && !isset($_GET['b'])) {
215 $ico = file('ico.txt');
216 $c = count($ico)/20;
217 if(strpos($c,".")>0)
218 $c = $c+1;
219 $p = (isset($_GET['p'])&&is_numeric($_GET['p']))?($_GET['p']*20):20;
220 $s = (isset($_GET['p'])&&is_numeric($_GET['p']))?$p-20:0;
221 for ($i=$s; $i < $p; $i++)
222 if(isset($ico[$i])){
224 print "<div class=\"panel panel-default art\">";
225 echo "<a class=\"thumbnail\" style=\"margin-bottom: 0;\" href=\"status.php?ico=".$ico[$i]."\"><img src=\"".$livesitePath2."/ico/".$ico[$i]."\" style=\"width:80px; height:80px;\"> </a>";
226 print "</div>";
228 print "
229 <div class=\"clearfix\"></div>
230 <div style=\"max-width:500px;margin-top:30px;text-align:center\">";
231 for($t=1;$t<=$c;$t++)
232 print "<a href=\"choose.php?p=$t\" style=\"margin:5px;padding:5px;display:inline-block\">$t</a>";
233 print "</div>";
234 print "</center>";
238 </div>
239 <?php } elseif(isset($_GET['pr'])) {
241 if(detect_device2($_SERVER['HTTP_USER_AGENT']) != "PLSDISPLAY") {
242 die("NG");
245 <div class="col-md-3">
246 <div class="panel panel-default">
247 <div class="panel-heading"><b>Categories</b></div>
248 <ul class="list-group">
249 <a href="?pr" class="list-group-item <?php echo (!isset($_GET['cat']) && isset($_GET['pr'])) ? "active" : ""; ?>">Others</a>
250 <?php
251 $category = file(ADBD_PATH."class.log");
252 if(count($category)>0){
253 $getCat = (isset($_GET['cat'])) ? $_GET['cat'] : "";
254 foreach ($category as $key => $value) {
255 $name = within_str($value, "<classname>", "</classname>");
256 $id = within_str($value, "<id>", "</id>");
257 $current = ($getCat==$name) ? "active" : "";
258 if(countClass($id)>0){
259 echo '<a class="list-group-item '.$current.'" href="?pr&cat='.$name.'">'.ucfirst($name).' <span class="badge pull-right">'.countClass($id).'</span></a>';
264 </ul>
265 </div>
266 </div>
268 <div class="col-md-9">
269 <?php
270 if (!file_exists(ADBD_PATH."/imglist.log")) {
271 echo "<center><h3>No Available Avatars At The Moment</h3></center>";
272 exit;
275 $classList = file(ADBD_PATH."class.log");
276 $file = file(ADBD_PATH."/imglist.log");
277 if(count($file) < 1){
278 echo "<center><h3>No Available Avatars At The Moment</h3></center>";
281 $classActive = (isset($_GET['cat']) ? FindClass($_GET['cat']) : "");
282 $premiumBreaker = 0;
283 echo '<div id="shuffle">';
284 foreach ($file as $key => $value) {
285 $class = within_str($value, "<classid>", "</classid>");
286 $disabled = "";
287 if(!$message->within_str($value, "<stat>", "</stat>") && $class==$classActive){
288 $nonasd = true;
290 $ngaun = $message->within_str(trim($value), "<name>", "</name>");
291 /*echo $ngaun."<br>";
292 exit;*/
294 if (isset($userbp)) {
295 foreach ($userbp as $key2 => $value2) {
296 $noon = within_str(trim($value2),"<filename>","</filename>");
297 $noon = explode(".gif", $noon);
298 /*echo "--".$noon[0]."--";
299 exit;*/
300 if (trim($noon[0]) == trim($ngaun)) {
301 /*echo trim($ngaun);
302 exit;*/
303 $disabled = "disabled";
307 $btn = '<button class="btn btn-success" data-toggle="modal" data-target="#'.$message->within_str($value, "<name>", "</name>") .'"'.$disabled.'>BUY</button>';
309 echo '<div class="panel panel-default art">
310 <a class="thumbnail">
311 <img src="'.$livesitePath.'dev-test/premium/'.$message->within_str($value, "<name>", "</name>") .'.gif" style="width:80px; height:80px;" alt="">
312 </a>
313 <center>
314 <span>'.$message->within_str($value, "<price>", "</price>").' MP</span><br><br>
315 '.$btn.'
316 <center><br>
317 </center>
318 <div class="clearfix"></div>
319 </div>';
321 // if($modalBreaker){
323 echo "<div id='".$message->within_str($value, "<name>", "</name>") ."' class='modal fade' tabindex='-1' role='dialog' aria-labelledby='buy' aria-hidden='true'>
324 <div class='modal-dialog'>
325 <div class='modal-content'>
326 <div class='modal-header'>
327 <button type='button' class='close' data-dismiss='modal'>
328 <span aria-hidden='true'>&times;</span><span class='sr-only'>Close</span>
329 </button>
330 <h3>これと同様にあなたがあなたの新しいBEアバターなるにはするか? </h3>
331 </div>
332 <div class='modal-body'>
333 これは価値がある ".$message->within_str($value, "<price>", "</price>")." メロンポイント
334 </div>
335 <div class='modal-footer'>
336 <a href='choose.php?pay=".$premiumBreaker."' onclick class='btn btn-success chooseModal'>購入</a>
337 </div>
338 </div>
339 </div>
340 </div>";
341 // }
343 $premiumBreaker++;
345 if (!isset($nonasd)) {
346 echo "<center><h3>ご利用いただけませんアバター</h3></center>";
349 </div>
350 <?php }elseif(isset($_GET['b'])){ ?>
351 <div class="col-md-12">
352 <?php
353 $fdir = substr($email, 0, 1);
354 $sdir = substr($email, 1, 1);
355 $usrPath = UDB_PATH."{$fdir}/{$sdir}/{$email}/";
357 if(file_exists($usrPath."usrimg.log")){
358 $usrList = file($usrPath."usrimg.log");
359 foreach ($usrList as $key => $value) {
360 $loopedImg = explode("-", $message->within_str($value, "<filename>", "</filename>"));
361 echo '<div class="panel panel-default art">
362 <a href="status.php?bico='.$loopedImg[0].'" class="thumbnail">
363 <img src="'.$livesitePath.'dev-test/premium/'.$loopedImg[0].'" style="width:80px; height:80px;" alt="">
364 </a>
365 <center>
366 <span>'.$message->within_str($value, "<aid>", "</aid>").'</span><br><br>
367 </center>
368 <div class="clearfix"></div>
369 </div>';
372 }else{
373 echo "<h1>なし</h1>";
376 </div>
377 <?php }?>
379 </div>
380 </div>
381 </div>
383 <script src="js/jquery-1.9.1.js"></script>
384 <script src="js/bootstrap.js"></script>
385 <script>
386 (function($){
388 $.fn.shuffle = function() {
390 var allElems = this.get(),
391 getRandom = function(max) {
392 return Math.floor(Math.random() * max);
394 shuffled = $.map(allElems, function(){
395 var random = getRandom(allElems.length),
396 randEl = $(allElems[random]).clone(true)[0];
397 allElems.splice(random, 1);
398 return randEl;
401 this.each(function(i){
402 $(this).replaceWith($(shuffled[i]));
405 return $(shuffled);
409 })(jQuery);
411 $(document).ready(function(){
412 $("a.chooseModal").one("click", function() {
413 $(this).click(function () { return false; });
415 <?php if(isset($_GET['pr'])){ ?>
416 $('.art').shuffle();
417 <?php } ?>
419 </script>
420 </body>
421 </html>