model('statistics'); $dos = array('display', 'app_display', 'get_account_api', 'get_account_app_api'); $do = in_array($do, $dos) ? $do : 'display'; $support_type = array( 'time' => array('week', 'month', 'daterange'), 'divide' => array('bysum', 'byavg', 'byhighest'), ); if ($do == 'display') { $today = stat_visit_all_bydate('today', array(), true); $today = !empty($today) ? current($today) : 0; $yesterday = stat_visit_all_bydate('yesterday', array(), true); $yesterday = !empty($yesterday) ? current($yesterday) : 0; template('statistics/account'); } if ($do == 'app_display') { $today = stat_visit_app_byuniacid('today', '', array(), true); $yesterday = stat_visit_app_byuniacid('yesterday', '', array(), true); $today_module_api = stat_all_visit_statistics('all_account', $today); $yesterday_module_api = stat_all_visit_statistics('all_account', $yesterday); template('statistics/app-account'); } if ($do == 'get_account_api') { $data = array(); $type = trim($_GPC['time_type']); if (!in_array($type, $support_type['time'])) { iajax(-1, '参数错误!'); } $daterange = array(); if (!empty($_GPC['daterange'])) { $daterange = array( 'start' => date('Ymd', strtotime($_GPC['daterange']['startDate'])), 'end' => date('Ymd', strtotime($_GPC['daterange']['endDate'])), ); } $result = stat_visit_all_bydate($type, $daterange, true); if ($type == 'today') { $data_x = array(date('Ymd')); } if ($type == 'week') { $data_x = stat_date_range(date('Ymd', strtotime('-6 days')), date('Ymd')); } if ($type == 'month') { $data_x = stat_date_range(date('Ymd', strtotime('-29 days')), date('Ymd')); } if ($type == 'daterange') { $data_x = stat_date_range($daterange['start'], $daterange['end']); } if (empty($result)) { foreach ($data_x as $val) { $data_y[] = 0; } iajax(0, array('data_x' => $data_x, 'data_y' => $data_y)); } foreach ($data_x as $key => $data) { foreach ($result as $date_key => $val) { if (strtotime($date_key) != strtotime($data)) { continue; } $data_y[$key] = $val; } if (empty($data_y[$key])) { $data_y[$key] = 0; } } iajax(0, array('data_x' => $data_x, 'data_y' => $data_y)); } if ($do == 'get_account_app_api') { $accounts = array(); $data = array(); $account_table = table('account'); $account_table->searchWithType(array(ACCOUNT_TYPE_OFFCIAL_NORMAL, ACCOUNT_TYPE_OFFCIAL_AUTH)); $account_table->accountRankOrder(); $account_list = $account_table->searchAccountList(); foreach ($account_list as $key => $account) { $account_list[$key] = uni_fetch($account['uniacid']); $accounts[] = mb_substr($account_list[$key]['name'], 0, 5, 'utf-8'); } $type = trim($_GPC['time_type']); $divide_type = trim($_GPC['divide_type']); if (!in_array($type, $support_type['time']) || !in_array($divide_type, $support_type['divide'])) { iajax(-1, '参数错误!'); } $daterange = array(); if (!empty($_GPC['daterange'])) { $daterange = array( 'start' => date('Ymd', strtotime($_GPC['daterange']['startDate'])), 'end' => date('Ymd', strtotime($_GPC['daterange']['endDate'])), ); } $result = stat_visit_app_bydate($type, '', $daterange, true); if (empty($result)) { if ($type == 'today') { $data_x = date('Ymd'); } if ($type == 'week') { $data_x = stat_date_range(date('Ymd', strtotime('-7 days')), date('Ymd')); } if ($type == 'month') { $data_x = stat_date_range(date('Ymd', strtotime('-30 days')), date('Ymd')); } if ($type == 'daterange') { $data_x = stat_date_range($daterange['start'], $daterange['end']); } foreach ($data_x as $val) { $data_y[] = 0; } iajax(0, array('data_x' => $data_x, 'data_y' => $data_y)); } foreach ($result as $val) { $data_x[] = $val['date']; if ($divide_type == 'bysum') { $data_y[] = $val['count']; } elseif ($divide_type == 'byavg') { $data_y[] = $val['avg']; } elseif ($divide_type == 'byhighest') { $data_y[] = $val['highest']; } } iajax(0, array('data_x' => $data_x, 'data_y' => $data_y)); }