From 86db958ca713656bad5d0ed8ed46ecce110d068b Mon Sep 17 00:00:00 2001 From: chenzhi Date: Thu, 19 Dec 2019 15:31:36 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B0=86txt=E6=96=87=E4=BB=B6=E5=85=A8?= =?UTF-8?q?=E9=83=A8=E7=A7=BB=E5=85=A5runtime?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Admin/Controller/ExportController.class.php | 16 ++++++++-------- .../Admin/Controller/PublicController.class.php | 10 +++++----- .../Admin/Controller/StatController.class.php | 6 +++--- .../Controller/StatisticsController.class.php | 4 ++-- .../Admin/Controller/UserController.class.php | 4 ++-- .../Admin/Controller/access_data_foldline.txt | 1 - Application/Admin/Controller/access_data_ltv.txt | 1 - .../Admin/Controller/access_data_user.txt | 1 - .../Admin/Controller/access_token_validity.txt | 1 - .../Admin/Controller/device_data_foldline.txt | 1 - .../Controller/qr_access_token_validity.txt | 1 - 11 files changed, 20 insertions(+), 26 deletions(-) delete mode 100644 Application/Admin/Controller/access_data_foldline.txt delete mode 100644 Application/Admin/Controller/access_data_ltv.txt delete mode 100644 Application/Admin/Controller/access_data_user.txt delete mode 100644 Application/Admin/Controller/access_token_validity.txt delete mode 100644 Application/Admin/Controller/device_data_foldline.txt delete mode 100644 Application/Admin/Controller/qr_access_token_validity.txt diff --git a/Application/Admin/Controller/ExportController.class.php b/Application/Admin/Controller/ExportController.class.php index 05a63d9d9..c51e769b9 100644 --- a/Application/Admin/Controller/ExportController.class.php +++ b/Application/Admin/Controller/ExportController.class.php @@ -2925,9 +2925,9 @@ class ExportController extends Controller array('mau','MAU'), ); - if (is_file(dirname(__FILE__).'/access_data_user.txt')) { + if (is_file(RUNTIME_PATH.'/access_data_user.txt')) { - $filetxt = file_get_contents(dirname(__FILE__).'/access_data_user.txt'); + $filetxt = file_get_contents(RUNTIME_PATH.'/access_data_user.txt'); $data = json_decode($filetxt,true); @@ -2983,9 +2983,9 @@ class ExportController extends Controller array('ltv30','LTV30'), ); - if (is_file(dirname(__FILE__).'/access_data_ltv.txt')) { + if (is_file(RUNTIME_PATH.'/access_data_ltv.txt')) { - $filetxt = file_get_contents(dirname(__FILE__).'/access_data_ltv.txt'); + $filetxt = file_get_contents(RUNTIME_PATH.'/access_data_ltv.txt'); $data = json_decode($filetxt,true); @@ -3029,9 +3029,9 @@ class ExportController extends Controller $num = I('num',2); $key = $_REQUEST['key']; - if (is_file(dirname(__FILE__).'/access_data_foldline.txt')) { + if (is_file(RUNTIME_PATH.'/access_data_foldline.txt')) { - $filetxt = file_get_contents(dirname(__FILE__).'/access_data_foldline.txt'); + $filetxt = file_get_contents(RUNTIME_PATH.'/access_data_foldline.txt'); $data = json_decode($filetxt,true); @@ -3391,9 +3391,9 @@ if ($key == 'player'){ ); } - if (is_file(dirname(__FILE__).'/device_data_foldline.txt')) { + if (is_file(RUNTIME_PATH.'/device_data_foldline.txt')) { - $filetxt = file_get_contents(dirname(__FILE__).'/device_data_foldline.txt'); + $filetxt = file_get_contents(RUNTIME_PATH.'/device_data_foldline.txt'); $data = json_decode($filetxt,true); diff --git a/Application/Admin/Controller/PublicController.class.php b/Application/Admin/Controller/PublicController.class.php index fd7241523..2c8ebff29 100644 --- a/Application/Admin/Controller/PublicController.class.php +++ b/Application/Admin/Controller/PublicController.class.php @@ -111,7 +111,7 @@ class PublicController extends \Think\Controller { $appid = C('wechat.appid'); $appsecret = C('wechat.appsecret'); - $result = auto_get_access_token(dirname(__FILE__) . '/access_token_validity.txt'); + $result = auto_get_access_token(RUNTIME_PATH . '/access_token_validity.txt'); if ($result['is_validity']) { session('token', $result['access_token']); $auth = new WechatAuth($appid, $appsecret, $result['access_token']); @@ -119,7 +119,7 @@ class PublicController extends \Think\Controller $auth = new WechatAuth($appid, $appsecret); $token = $auth->getAccessToken(); $token['expires_in_validity'] = time() + $token['expires_in']; - wite_text(json_encode($token), dirname(__FILE__) . '/access_token_validity.txt'); + wite_text(json_encode($token), RUNTIME_PATH . '/access_token_validity.txt'); session('token', $token['access_token']); } $scene_id = sp_random_num(4) . '0'; @@ -140,7 +140,7 @@ class PublicController extends \Think\Controller $auth = new WechatAuth($appid, $appsecret); $token = $auth->getAccessToken(); $token['expires_in_validity'] = time() + $token['expires_in']; - wite_text(json_encode($token), dirname(__FILE__) . '/access_token_validity.txt'); + wite_text(json_encode($token), RUNTIME_PATH . '/access_token_validity.txt'); session('token', $token['access_token']); $this->get_openid(); } @@ -152,13 +152,13 @@ class PublicController extends \Think\Controller $appid = C('weixin_login.appid'); $appsecret = C('weixin_login.appsecret'); $auth = new WechatAuth($appid, $appsecret); - $result = auto_get_access_token(dirname(__FILE__) . '/qr_access_token_validity.txt'); + $result = auto_get_access_token(RUNTIME_PATH . '/qr_access_token_validity.txt'); if ($result['is_validity']) { session('token', $result['access_token']); } else { $token = $auth->getAccessToken(); $token['expires_in_validity'] = time() + $token['expires_in']; - wite_text(json_encode($token), dirname(__FILE__) . '/qr_access_token_validity.txt'); + wite_text(json_encode($token), RUNTIME_PATH . '/qr_access_token_validity.txt'); session('token', $token['access_token']); } $redirect_uri = "http://" . $_SERVER['HTTP_HOST'] . "/admin.php/Public/wechat_login_callback"; diff --git a/Application/Admin/Controller/StatController.class.php b/Application/Admin/Controller/StatController.class.php index 163fe452a..16bd953ba 100644 --- a/Application/Admin/Controller/StatController.class.php +++ b/Application/Admin/Controller/StatController.class.php @@ -41,7 +41,7 @@ class StatController extends ThinkController $data = array_slice($list,($page-1)*$row,$row,true); - file_put_contents(dirname(__FILE__).'/access_data_user.txt',json_encode($list)); + file_put_contents(RUNTIME_PATH.'/access_data_user.txt',json_encode($list)); @@ -95,7 +95,7 @@ class StatController extends ThinkController $data = array_slice($list,($page-1)*$row,$row,true); - file_put_contents(dirname(__FILE__).'/access_data_user.txt',json_encode($list)); + file_put_contents(RUNTIME_PATH.'/access_data_user.txt',json_encode($list)); if($count > $row){ $page = new \Think\Page($count, $row); @@ -1709,7 +1709,7 @@ class StatController extends ThinkController $table['duplicate']['active'] = $table['sum']['active']; } - @file_put_contents(dirname(__FILE__).'/device_data_foldline.txt',json_encode($export)); + @file_put_contents(RUNTIME_PATH.'/device_data_foldline.txt',json_encode($export)); if ($flag) { diff --git a/Application/Admin/Controller/StatisticsController.class.php b/Application/Admin/Controller/StatisticsController.class.php index 4dd30404b..915b12c5a 100644 --- a/Application/Admin/Controller/StatisticsController.class.php +++ b/Application/Admin/Controller/StatisticsController.class.php @@ -224,7 +224,7 @@ class StatisticsController extends ThinkController { } } - file_put_contents(dirname(__FILE__).'/access_data_foldline.txt',json_encode($export)); + file_put_contents(RUNTIME_PATH.'/access_data_foldline.txt',json_encode($export)); if ($flag) { @@ -976,7 +976,7 @@ if ($payids) { $data = array_slice($list,($page-1)*$row,$row,true); - file_put_contents(dirname(__FILE__).'/access_data_ltv.txt',json_encode($list)); + file_put_contents(RUNTIME_PATH.'/access_data_ltv.txt',json_encode($list)); $page = set_pagination($count,$row); diff --git a/Application/Admin/Controller/UserController.class.php b/Application/Admin/Controller/UserController.class.php index 8c95a0240..4d1a27b2e 100644 --- a/Application/Admin/Controller/UserController.class.php +++ b/Application/Admin/Controller/UserController.class.php @@ -559,7 +559,7 @@ class UserController extends AdminController } $appid = C('wechat.appid'); $appsecret = C('wechat.appsecret'); - $result = auto_get_access_token(dirname(__FILE__) . '/access_token_validity.txt'); + $result = auto_get_access_token(RUNTIME_PATH . '/access_token_validity.txt'); if ($result['is_validity']) { session('token', $result['access_token']); $auth = new WechatAuth($appid, $appsecret, $result['access_token']); @@ -567,7 +567,7 @@ class UserController extends AdminController $auth = new WechatAuth($appid, $appsecret); $token = $auth->getAccessToken(); $token['expires_in_validity'] = time() + $token['expires_in']; - wite_text(json_encode($token), dirname(__FILE__) . '/access_token_validity.txt'); + wite_text(json_encode($token), RUNTIME_PATH . '/access_token_validity.txt'); session('token', $token['access_token']); } $times = date('s', time()); diff --git a/Application/Admin/Controller/access_data_foldline.txt b/Application/Admin/Controller/access_data_foldline.txt deleted file mode 100644 index 18f7fceb5..000000000 --- a/Application/Admin/Controller/access_data_foldline.txt +++ /dev/null @@ -1 +0,0 @@ -{"news":[{"time":"0:00","count":6},{"time":"1:00","count":9},{"time":"2:00","count":7},{"time":"3:00","count":11},{"time":"4:00","count":16},{"time":"5:00","count":7},{"time":"6:00","count":9},{"time":"7:00","count":11},{"time":"8:00","count":14},{"time":"9:00","count":40},{"time":"10:00","count":58},{"time":"11:00","count":86},{"time":"12:00","count":41},{"time":"13:00","count":55},{"time":"14:00","count":194},{"time":"15:00","count":180},{"time":"16:00","count":121},{"time":"17:00","count":98},{"time":"18:00","count":120},{"time":"19:00","count":147},{"time":"20:00","count":146},{"time":"21:00","count":124},{"time":"22:00","count":93},{"time":"23:00","count":56}],"sum":{"news":1649,"active":8210,"player":1715,"money":226618},"active":[{"time":"0:00","count":967},{"time":"1:00","count":343},{"time":"2:00","count":176},{"time":"3:00","count":135},{"time":"4:00","count":118},{"time":"5:00","count":177},{"time":"6:00","count":465},{"time":"7:00","count":661},{"time":"8:00","count":622},{"time":"9:00","count":547},{"time":"10:00","count":480},{"time":"11:00","count":414},{"time":"12:00","count":326},{"time":"13:00","count":237},{"time":"14:00","count":354},{"time":"15:00","count":328},{"time":"16:00","count":215},{"time":"17:00","count":219},{"time":"18:00","count":256},{"time":"19:00","count":335},{"time":"20:00","count":274},{"time":"21:00","count":244},{"time":"22:00","count":197},{"time":"23:00","count":120}],"player":[{"time":"0:00","count":211},{"time":"1:00","count":84},{"time":"2:00","count":29},{"time":"3:00","count":25},{"time":"4:00","count":16},{"time":"5:00","count":24},{"time":"6:00","count":32},{"time":"7:00","count":56},{"time":"8:00","count":71},{"time":"9:00","count":66},{"time":"10:00","count":63},{"time":"11:00","count":69},{"time":"12:00","count":58},{"time":"13:00","count":62},{"time":"14:00","count":50},{"time":"15:00","count":99},{"time":"16:00","count":68},{"time":"17:00","count":61},{"time":"18:00","count":77},{"time":"19:00","count":157},{"time":"20:00","count":107},{"time":"21:00","count":101},{"time":"22:00","count":74},{"time":"23:00","count":55}],"money":[{"time":"0:00","count":"31554.00"},{"time":"1:00","count":"4117.00"},{"time":"2:00","count":"1839.00"},{"time":"3:00","count":"4513.00"},{"time":"4:00","count":"1008.00"},{"time":"5:00","count":"1981.00"},{"time":"6:00","count":"1270.00"},{"time":"7:00","count":"1906.00"},{"time":"8:00","count":"6683.00"},{"time":"9:00","count":"6119.00"},{"time":"10:00","count":"8974.00"},{"time":"11:00","count":"14147.00"},{"time":"12:00","count":"9775.00"},{"time":"13:00","count":"11908.00"},{"time":"14:00","count":"6781.00"},{"time":"15:00","count":"12626.00"},{"time":"16:00","count":"6742.00"},{"time":"17:00","count":"8303.00"},{"time":"18:00","count":"8804.00"},{"time":"19:00","count":"23476.00"},{"time":"20:00","count":"17464.00"},{"time":"21:00","count":"16899.00"},{"time":"22:00","count":"13143.00"},{"time":"23:00","count":"6586.00"}]} \ No newline at end of file diff --git a/Application/Admin/Controller/access_data_ltv.txt b/Application/Admin/Controller/access_data_ltv.txt deleted file mode 100644 index 0637a088a..000000000 --- a/Application/Admin/Controller/access_data_ltv.txt +++ /dev/null @@ -1 +0,0 @@ -[] \ No newline at end of file diff --git a/Application/Admin/Controller/access_data_user.txt b/Application/Admin/Controller/access_data_user.txt deleted file mode 100644 index 9e9905049..000000000 --- a/Application/Admin/Controller/access_data_user.txt +++ /dev/null @@ -1 +0,0 @@ -{"80":{"time":"2019-09-28","news":0,"old":0,"dau":0,"wau":0,"mau":0},"79":{"time":"2019-09-27","news":0,"old":0,"dau":0,"wau":0,"mau":0},"78":{"time":"2019-09-26","news":0,"old":0,"dau":0,"wau":0,"mau":0},"77":{"time":"2019-09-25","news":0,"old":0,"dau":0,"wau":0,"mau":0},"76":{"time":"2019-09-24","news":0,"old":0,"dau":0,"wau":0,"mau":0},"75":{"time":"2019-09-23","news":0,"old":0,"dau":0,"wau":0,"mau":0},"74":{"time":"2019-09-22","news":0,"old":0,"dau":0,"wau":0,"mau":0},"73":{"time":"2019-09-21","news":0,"old":0,"dau":0,"wau":0,"mau":0},"72":{"time":"2019-09-20","news":0,"old":0,"dau":0,"wau":0,"mau":0},"71":{"time":"2019-09-19","news":0,"old":0,"dau":0,"wau":0,"mau":0},"70":{"time":"2019-09-18","news":0,"old":0,"dau":0,"wau":0,"mau":0},"69":{"time":"2019-09-17","news":0,"old":0,"dau":0,"wau":0,"mau":0},"68":{"time":"2019-09-16","news":0,"old":0,"dau":0,"wau":0,"mau":0},"67":{"time":"2019-09-15","news":0,"old":0,"dau":0,"wau":0,"mau":0},"66":{"time":"2019-09-14","news":0,"old":0,"dau":0,"wau":0,"mau":0},"65":{"time":"2019-09-13","news":0,"old":0,"dau":0,"wau":0,"mau":0},"64":{"time":"2019-09-12","news":0,"old":0,"dau":0,"wau":0,"mau":0},"63":{"time":"2019-09-11","news":0,"old":0,"dau":0,"wau":0,"mau":0},"62":{"time":"2019-09-10","news":0,"old":0,"dau":0,"wau":0,"mau":0},"61":{"time":"2019-09-09","news":0,"old":0,"dau":0,"wau":0,"mau":0},"60":{"time":"2019-09-08","news":0,"old":0,"dau":0,"wau":0,"mau":0},"59":{"time":"2019-09-07","news":0,"old":0,"dau":0,"wau":0,"mau":0},"58":{"time":"2019-09-06","news":0,"old":0,"dau":0,"wau":0,"mau":0},"57":{"time":"2019-09-05","news":0,"old":0,"dau":0,"wau":0,"mau":0},"56":{"time":"2019-09-04","news":0,"old":0,"dau":0,"wau":0,"mau":0},"55":{"time":"2019-09-03","news":0,"old":0,"dau":0,"wau":0,"mau":0},"54":{"time":"2019-09-02","news":0,"old":0,"dau":0,"wau":0,"mau":0},"53":{"time":"2019-09-01","news":0,"old":0,"dau":0,"wau":0,"mau":0},"52":{"time":"2019-08-31","news":0,"old":0,"dau":0,"wau":0,"mau":0},"51":{"time":"2019-08-30","news":0,"old":0,"dau":0,"wau":0,"mau":0},"50":{"time":"2019-08-29","news":0,"old":0,"dau":0,"wau":0,"mau":0},"49":{"time":"2019-08-28","news":0,"old":0,"dau":0,"wau":0,"mau":0},"48":{"time":"2019-08-27","news":0,"old":0,"dau":0,"wau":0,"mau":0},"47":{"time":"2019-08-26","news":0,"old":0,"dau":0,"wau":0,"mau":0},"46":{"time":"2019-08-25","news":0,"old":0,"dau":0,"wau":0,"mau":0},"45":{"time":"2019-08-24","news":0,"old":0,"dau":0,"wau":0,"mau":0},"44":{"time":"2019-08-23","news":0,"old":0,"dau":0,"wau":0,"mau":0},"43":{"time":"2019-08-22","news":0,"old":0,"dau":0,"wau":0,"mau":0},"42":{"time":"2019-08-21","news":0,"old":0,"dau":0,"wau":0,"mau":0},"41":{"time":"2019-08-20","news":0,"old":0,"dau":0,"wau":0,"mau":0},"40":{"time":"2019-08-19","news":0,"old":0,"dau":0,"wau":0,"mau":0},"39":{"time":"2019-08-18","news":0,"old":0,"dau":0,"wau":0,"mau":0},"38":{"time":"2019-08-17","news":0,"old":0,"dau":0,"wau":0,"mau":0},"37":{"time":"2019-08-16","news":0,"old":0,"dau":0,"wau":0,"mau":0},"36":{"time":"2019-08-15","news":0,"old":0,"dau":0,"wau":0,"mau":0},"35":{"time":"2019-08-14","news":0,"old":0,"dau":0,"wau":0,"mau":0},"34":{"time":"2019-08-13","news":0,"old":0,"dau":0,"wau":0,"mau":0},"33":{"time":"2019-08-12","news":0,"old":0,"dau":0,"wau":0,"mau":0},"32":{"time":"2019-08-11","news":0,"old":0,"dau":0,"wau":0,"mau":0},"31":{"time":"2019-08-10","news":0,"old":0,"dau":0,"wau":0,"mau":0},"30":{"time":"2019-08-09","news":0,"old":0,"dau":0,"wau":0,"mau":0},"29":{"time":"2019-08-08","news":0,"old":0,"dau":0,"wau":0,"mau":0},"28":{"time":"2019-08-07","news":0,"old":0,"dau":0,"wau":0,"mau":0},"27":{"time":"2019-08-06","news":0,"old":0,"dau":0,"wau":0,"mau":0},"26":{"time":"2019-08-05","news":0,"old":0,"dau":0,"wau":0,"mau":0},"25":{"time":"2019-08-04","news":0,"old":0,"dau":0,"wau":0,"mau":0},"24":{"time":"2019-08-03","news":0,"old":0,"dau":0,"wau":0,"mau":0},"23":{"time":"2019-08-02","news":0,"old":0,"dau":0,"wau":0,"mau":0},"22":{"time":"2019-08-01","news":0,"old":0,"dau":0,"wau":0,"mau":0},"21":{"time":"2019-07-31","news":0,"old":0,"dau":0,"wau":0,"mau":0},"20":{"time":"2019-07-30","news":0,"old":0,"dau":0,"wau":0,"mau":0},"19":{"time":"2019-07-29","news":0,"old":0,"dau":0,"wau":0,"mau":0},"18":{"time":"2019-07-28","news":0,"old":0,"dau":0,"wau":0,"mau":0},"17":{"time":"2019-07-27","news":0,"old":0,"dau":0,"wau":0,"mau":0},"16":{"time":"2019-07-26","news":0,"old":0,"dau":0,"wau":0,"mau":0},"15":{"time":"2019-07-25","news":0,"old":0,"dau":0,"wau":0,"mau":0},"14":{"time":"2019-07-24","news":0,"old":0,"dau":0,"wau":0,"mau":0},"13":{"time":"2019-07-23","news":0,"old":0,"dau":0,"wau":0,"mau":0},"12":{"time":"2019-07-22","news":0,"old":0,"dau":0,"wau":0,"mau":0},"11":{"time":"2019-07-21","news":0,"old":0,"dau":0,"wau":0,"mau":0},"10":{"time":"2019-07-20","news":0,"old":0,"dau":0,"wau":0,"mau":0},"9":{"time":"2019-07-19","news":0,"old":0,"dau":0,"wau":0,"mau":0},"8":{"time":"2019-07-18","news":0,"old":0,"dau":0,"wau":0,"mau":0},"7":{"time":"2019-07-17","news":0,"old":0,"dau":0,"wau":0,"mau":0},"6":{"time":"2019-07-16","news":0,"old":0,"dau":0,"wau":0,"mau":0},"5":{"time":"2019-07-15","news":0,"old":0,"dau":0,"wau":0,"mau":0},"4":{"time":"2019-07-14","news":0,"old":0,"dau":0,"wau":0,"mau":0},"3":{"time":"2019-07-13","news":0,"old":0,"dau":0,"wau":0,"mau":0},"2":{"time":"2019-07-12","news":0,"old":0,"dau":0,"wau":0,"mau":0},"1":{"time":"2019-07-11","news":0,"old":0,"dau":0,"wau":0,"mau":0},"0":{"time":"2019-07-10","news":0,"old":0,"dau":0,"wau":0,"mau":0}} \ No newline at end of file diff --git a/Application/Admin/Controller/access_token_validity.txt b/Application/Admin/Controller/access_token_validity.txt deleted file mode 100644 index 712250f1c..000000000 --- a/Application/Admin/Controller/access_token_validity.txt +++ /dev/null @@ -1 +0,0 @@ -{"access_token":"ae739TcAabBazUPsDH_SWTPgpgkqMTEWoG4_dkF1z4iF6mhLxQT99BTCbqHm3b_-E-MwDhfbxcu1EFcBg6moVrpz2RpH3WE2fZAsi3QDe3OXRj45t0R832EdE61gNsnjHXTeAEACSO","expires_in":7200,"expires_in_validity":1484799529} \ No newline at end of file diff --git a/Application/Admin/Controller/device_data_foldline.txt b/Application/Admin/Controller/device_data_foldline.txt deleted file mode 100644 index 480ca25d3..000000000 --- a/Application/Admin/Controller/device_data_foldline.txt +++ /dev/null @@ -1 +0,0 @@ -{"average":{"news":0,"active":0},"sum":{"news":0,"active":0},"news":[{"time":"2019-11-11 00:00","count":0,"version":"ios"},{"time":"2019-11-11 01:00","count":0,"version":"ios"},{"time":"2019-11-11 02:00","count":0,"version":"ios"},{"time":"2019-11-11 03:00","count":0,"version":"ios"},{"time":"2019-11-11 04:00","count":0,"version":"ios"},{"time":"2019-11-11 05:00","count":0,"version":"ios"},{"time":"2019-11-11 06:00","count":0,"version":"ios"},{"time":"2019-11-11 07:00","count":0,"version":"ios"},{"time":"2019-11-11 08:00","count":0,"version":"ios"},{"time":"2019-11-11 09:00","count":0,"version":"ios"},{"time":"2019-11-11 10:00","count":0,"version":"ios"},{"time":"2019-11-11 11:00","count":0,"version":"ios"},{"time":"2019-11-11 12:00","count":0,"version":"ios"},{"time":"2019-11-11 13:00","count":0,"version":"ios"},{"time":"2019-11-11 14:00","count":0,"version":"ios"},{"time":"2019-11-11 15:00","count":0,"version":"ios"},{"time":"2019-11-11 16:00","count":0,"version":"ios"},{"time":"2019-11-11 17:00","count":0,"version":"ios"},{"time":"2019-11-11 18:00","count":0,"version":"ios"},{"time":"2019-11-11 19:00","count":0,"version":"ios"},{"time":"2019-11-11 20:00","count":0,"version":"ios"},{"time":"2019-11-11 21:00","count":0,"version":"ios"},{"time":"2019-11-11 22:00","count":0,"version":"ios"},{"time":"2019-11-11 23:00","count":0,"version":"ios"},{"time":"2019-11-11 00:00","count":0,"version":"android"},{"time":"2019-11-11 01:00","count":0,"version":"android"},{"time":"2019-11-11 02:00","count":0,"version":"android"},{"time":"2019-11-11 03:00","count":0,"version":"android"},{"time":"2019-11-11 04:00","count":0,"version":"android"},{"time":"2019-11-11 05:00","count":0,"version":"android"},{"time":"2019-11-11 06:00","count":0,"version":"android"},{"time":"2019-11-11 07:00","count":0,"version":"android"},{"time":"2019-11-11 08:00","count":0,"version":"android"},{"time":"2019-11-11 09:00","count":0,"version":"android"},{"time":"2019-11-11 10:00","count":0,"version":"android"},{"time":"2019-11-11 11:00","count":0,"version":"android"},{"time":"2019-11-11 12:00","count":0,"version":"android"},{"time":"2019-11-11 13:00","count":0,"version":"android"},{"time":"2019-11-11 14:00","count":0,"version":"android"},{"time":"2019-11-11 15:00","count":0,"version":"android"},{"time":"2019-11-11 16:00","count":0,"version":"android"},{"time":"2019-11-11 17:00","count":0,"version":"android"},{"time":"2019-11-11 18:00","count":0,"version":"android"},{"time":"2019-11-11 19:00","count":0,"version":"android"},{"time":"2019-11-11 20:00","count":0,"version":"android"},{"time":"2019-11-11 21:00","count":0,"version":"android"},{"time":"2019-11-11 22:00","count":0,"version":"android"},{"time":"2019-11-11 23:00","count":0,"version":"android"}],"active":[{"time":"2019-11-11 00:00","count":0,"version":"ios"},{"time":"2019-11-11 01:00","count":0,"version":"ios"},{"time":"2019-11-11 02:00","count":0,"version":"ios"},{"time":"2019-11-11 03:00","count":0,"version":"ios"},{"time":"2019-11-11 04:00","count":0,"version":"ios"},{"time":"2019-11-11 05:00","count":0,"version":"ios"},{"time":"2019-11-11 06:00","count":0,"version":"ios"},{"time":"2019-11-11 07:00","count":0,"version":"ios"},{"time":"2019-11-11 08:00","count":0,"version":"ios"},{"time":"2019-11-11 09:00","count":0,"version":"ios"},{"time":"2019-11-11 10:00","count":0,"version":"ios"},{"time":"2019-11-11 11:00","count":0,"version":"ios"},{"time":"2019-11-11 12:00","count":0,"version":"ios"},{"time":"2019-11-11 13:00","count":0,"version":"ios"},{"time":"2019-11-11 14:00","count":0,"version":"ios"},{"time":"2019-11-11 15:00","count":0,"version":"ios"},{"time":"2019-11-11 16:00","count":0,"version":"ios"},{"time":"2019-11-11 17:00","count":0,"version":"ios"},{"time":"2019-11-11 18:00","count":0,"version":"ios"},{"time":"2019-11-11 19:00","count":0,"version":"ios"},{"time":"2019-11-11 20:00","count":0,"version":"ios"},{"time":"2019-11-11 21:00","count":0,"version":"ios"},{"time":"2019-11-11 22:00","count":0,"version":"ios"},{"time":"2019-11-11 23:00","count":0,"version":"ios"},{"time":"2019-11-11 00:00","count":0,"version":"android"},{"time":"2019-11-11 01:00","count":0,"version":"android"},{"time":"2019-11-11 02:00","count":0,"version":"android"},{"time":"2019-11-11 03:00","count":0,"version":"android"},{"time":"2019-11-11 04:00","count":0,"version":"android"},{"time":"2019-11-11 05:00","count":0,"version":"android"},{"time":"2019-11-11 06:00","count":0,"version":"android"},{"time":"2019-11-11 07:00","count":0,"version":"android"},{"time":"2019-11-11 08:00","count":0,"version":"android"},{"time":"2019-11-11 09:00","count":0,"version":"android"},{"time":"2019-11-11 10:00","count":0,"version":"android"},{"time":"2019-11-11 11:00","count":0,"version":"android"},{"time":"2019-11-11 12:00","count":0,"version":"android"},{"time":"2019-11-11 13:00","count":0,"version":"android"},{"time":"2019-11-11 14:00","count":0,"version":"android"},{"time":"2019-11-11 15:00","count":0,"version":"android"},{"time":"2019-11-11 16:00","count":0,"version":"android"},{"time":"2019-11-11 17:00","count":0,"version":"android"},{"time":"2019-11-11 18:00","count":0,"version":"android"},{"time":"2019-11-11 19:00","count":0,"version":"android"},{"time":"2019-11-11 20:00","count":0,"version":"android"},{"time":"2019-11-11 21:00","count":0,"version":"android"},{"time":"2019-11-11 22:00","count":0,"version":"android"},{"time":"2019-11-11 23:00","count":0,"version":"android"}]} \ No newline at end of file diff --git a/Application/Admin/Controller/qr_access_token_validity.txt b/Application/Admin/Controller/qr_access_token_validity.txt deleted file mode 100644 index a7ca59dd1..000000000 --- a/Application/Admin/Controller/qr_access_token_validity.txt +++ /dev/null @@ -1 +0,0 @@ -{"access_token":"jda2SxmAdo6-1W4njmho_5dRfujy0H5LVQfayhNR6GowgFvUj_Ro7evGvgAnFM2Pw0ebrDKeMXtTs_g82P5pyR0fLXUAwGUiPa1mfr2gXbd5tg6ynLq90QMYo9syC0XTDQXiAAAPCJ","expires_in":7200,"expires_in_validity":1482811765} \ No newline at end of file