123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237 |
- <?
- if (!list($Countries, $Rank, $CountryUsers, $CountryMax, $CountryMin, $LogIncrements) = $Cache->get_value('geodistribution')) {
- include_once(SERVER_ROOT.'/classes/charts.class.php');
- $DB->query('
- SELECT Code, Users
- FROM users_geodistribution');
- $Data = $DB->to_array();
- $Count = $DB->record_count() - 1;
- $CountryMinThreshold = Min($Count, 30);
- $CountryMax = ceil(log(Max(1, $Data[0][1])) / log(2)) + 1;
- $CountryMin = floor(log(Max(1, $Data[$CountryMinThreshold][1])) / log(2));
-
- $CountryRegions = array('RS' => array('RS-KM')); // Count Kosovo as Serbia as it doesn't have a TLD
- foreach ($Data as $Key => $Item) {
- list($Country, $UserCount) = $Item;
- $Countries[] = $Country;
- $CountryUsers[] = number_format((((log($UserCount) / log(2)) - $CountryMin) / ($CountryMax - $CountryMin)) * 100, 2);
- $Rank[] = round((1 - ($Key / $Count)) * 100);
-
- if (isset($CountryRegions[$Country])) {
- foreach ($CountryRegions[$Country] as $Region) {
- $Countries[] = $Region;
- $Rank[] = end($Rank);
- }
- }
- }
- reset($Rank);
-
- for ($i = $CountryMin; $i <= $CountryMax; $i++) {
- $LogIncrements[] = Format::human_format(pow(2, $i));
- }
- $Cache->cache_value('geodistribution', array($Countries, $Rank, $CountryUsers, $CountryMax, $CountryMin, $LogIncrements), 0);
- }
-
- if (!$ClassDistribution = $Cache->get_value('class_distribution')) {
- $DB->query("
- SELECT p.Name, COUNT(m.ID) AS Users
- FROM users_main AS m
- JOIN permissions AS p ON m.PermissionID = p.ID
- WHERE m.Enabled = '1'
- GROUP BY p.Name
- ORDER BY Users DESC");
- $ClassDistribution = $DB->to_array();
- $Cache->cache_value('class_distribution', $ClassDistribution, 3600 * 24 * 14);
- }
- if (!$PlatformDistribution = $Cache->get_value('platform_distribution')) {
- $DB->query("
- SELECT OperatingSystem, COUNT(UserID) AS Users
- FROM users_sessions
- GROUP BY OperatingSystem
- ORDER BY Users DESC");
-
- $PlatformDistribution = $DB->to_array();
- $Cache->cache_value('platform_distribution', $PlatformDistribution, 3600 * 24 * 14);
- }
-
- if (!$BrowserDistribution = $Cache->get_value('browser_distribution')) {
- $DB->query("
- SELECT Browser, COUNT(UserID) AS Users
- FROM users_sessions
- GROUP BY Browser
- ORDER BY Users DESC");
-
- $BrowserDistribution = $DB->to_array();
- $Cache->cache_value('browser_distribution', $BrowserDistribution, 3600 * 24 * 14);
- }
-
-
- //Timeline generation
- if (!list($Labels, $InFlow, $OutFlow) = $Cache->get_value('users_timeline')) {
- $DB->query("
- SELECT DATE_FORMAT(JoinDate,\"%b %Y\") AS Month, COUNT(UserID)
- FROM users_info
- GROUP BY Month
- ORDER BY JoinDate DESC
- LIMIT 1, 11");
- $TimelineIn = array_reverse($DB->to_array());
- $DB->query("
- SELECT DATE_FORMAT(BanDate,\"%b %Y\") AS Month, COUNT(UserID)
- FROM users_info
- WHERE BanDate > 0
- GROUP BY Month
- ORDER BY BanDate DESC
- LIMIT 1, 11");
- $TimelineOut = array_reverse($DB->to_array());
-
- $Labels = array();
- foreach($TimelineIn as $Month) {
- list($Labels[], $InFlow[]) = $Month;
- }
- foreach($TimelineOut as $Month) {
- list(, $OutFlow[]) = $Month;
- }
- $Cache->cache_value('users_timeline', array($Labels, $InFlow, $OutFlow), mktime(0, 0, 0, date('n') + 1, 2)); //Tested: fine for Dec -> Jan
- }
- //End timeline generation
-
- View::show_header('Detailed User Statistics', 'chart');
- ?>
- <h3 id="User_Flow"><a href="#User_Flow">User Flow</a></h3>
- <div class="box pad center">
- <canvas class="chart" id="chart_user_timeline"></canvas>
- <script>
- new Chart($('#chart_user_timeline').raw().getContext('2d'), {
- type: 'line',
- data: {
- labels: <? print '["'.implode('","',$Labels).'"]'; ?>,
- datasets: [ {
- label: "New Registrations",
- backgroundColor: "rgba(0,0,255,0.2)",
- borderColor: "rgba(0,0,255,0.8)",
- data: <? print "[".implode(",",$InFlow)."]"; ?>
- }, {
- label: "Disabled Users",
- backgroundColor: "rgba(255,0,0,0.2)",
- borderColor: "rgba(255,0,0,0.8)",
- data: <? print "[".implode(",",$OutFlow)."]"; ?>
- }]
- }
- })
- </script>
- </div>
- <br />
- <h3 id="User_Classes"><a href="#User_Classes">User Classes</a></h3>
- <div class="box pad center">
- <canvas class="chart" id="chart_user_classes"></canvas>
- <script>
- new Chart($('#chart_user_classes').raw().getContext('2d'), {
- type: 'pie',
- data: {
- labels: <? print '["'.implode('","', array_column($ClassDistribution, 'Name')).'"]'; ?>,
- datasets: [ {
- data: <? print "[".implode(",", array_column($ClassDistribution, 'Users'))."]"; ?>,
- backgroundColor: ['#8a00b8','#a944cb','#be71d8','#e8ccf1', '#f3e3f9', '#fbf6fd', '#ffffff']
- }]
- }
- })
- </script>
- </div>
- <br />
- <h3 id="User_Platforms"><a href="#User_Platforms">User Platforms</a></h3>
- <div class="box pad center">
- <canvas class="chart" id="chart_user_platforms"></canvas>
- <?
- $AllPlatforms = array_column($PlatformDistribution, 'OperatingSystem');
- $SlicedPlatforms = (count($AllPlatforms) > 14) ? array_slice($AllPlatforms,0,13)+[13=>'Other'] : $AllPlatforms;
- $AllUsers = array_column($PlatformDistribution, 'Users');
- $SlicedUsers = (count($AllUsers) > 14) ? array_slice($AllUsers,0,13)+[13=>array_sum(array_slice($AllUsers,13))] : $AllUsers;
- $Colors = [];
- $Palette = ["blue"=>['#46B','#34A','#239','#128','#117','#006'],"red"=>['#B45','#A34','#923'],"green"=>['#3B3','#2A2','#191','#080'],"purple"=>['#B3B','#A2A','#919','#808','#707','#606','#505','#404']];
- $Counts = [0,0,0,0];
- for ($i = 0; $i < count($SlicedPlatforms); $i++) {
- if (preg_match('/Windows/i', $SlicedPlatforms[$i])) {
- $Colors[] = $Palette["blue"][$Counts[0]];
- $Counts[0]++;
- } else if (preg_match('/Mac|OS ?X/i', $SlicedPlatforms[$i])) {
- $Colors[] = $Palette["red"][$Counts[1]];
- $Counts[1]++;
- } else if (preg_match('/Linux|Ubuntu|Fedora/i', $SlicedPlatforms[$i])) {
- $Colors[] = $Palette["green"][$Counts[2]];
- $Counts[2]++;
- } else {
- $Colors[] = $Palette["purple"][$Counts[3]];
- $Counts[3]++;
- }
- }
- ?>
- <script>
- new Chart($('#chart_user_platforms').raw().getContext('2d'), {
- type: 'pie',
- data: {
- labels: ["<?=implode('","', $SlicedPlatforms)?>"],
- datasets: [ {
- data: [<?=implode(",", $SlicedUsers)?>],
- backgroundColor: ["<?=implode('","', $Colors)?>"]
- }]
- }
- })
- </script>
- </div>
- <br />
- <h3 id="User_Browsers"><a href="#User_Browsers">User Browsers</a></h3>
- <div class="box pad center">
- <canvas class="chart" id="chart_user_browsers"></canvas>
- <?
- $AllBrowsers = array_column($BrowserDistribution, 'Browser');
- $SlicedBrowsers = (count($AllBrowsers) > 7) ? array_slice($AllBrowsers,0,6)+[6=>'Other'] : $AllBrowsers;
- $AllUsers = array_column($BrowserDistribution, 'Users');
- $SlicedUsers = (count($AllUsers) > 7) ? array_slice($AllUsers,0,6)+[6=>array_sum(array_slice($AllUsers,6))] : $AllUsers;
- $Colors = [];
- $Palette = ["blue"=>['#46B','#34A'],"orange"=>['#F53','#E42'],"green"=>['#3B3','#2A2'],"purple"=>['#B3B','#A2A','#919','#808','#707','#606','#505','#404']];
- $Counts = [0,0,0,0];
- for ($i = 0; $i < count($SlicedBrowsers); $i++) {
- if (preg_match('/Chrome/i', $SlicedBrowsers[$i])) {
- $Colors[] = $Palette["green"][$Counts[0]];
- $Counts[0]++;
- } else if (preg_match('/Firefox/i', $SlicedBrowsers[$i])) {
- $Colors[] = $Palette["orange"][$Counts[1]];
- $Counts[1]++;
- } else if (preg_match('/Safari/i', $SlicedBrowsers[$i])) {
- $Colors[] = $Palette["blue"][$Counts[2]];
- $Counts[2]++;
- } else {
- $Colors[] = $Palette["purple"][$Counts[3]];
- $Counts[3]++;
- }
- }
- ?>
- <script>
- new Chart($('#chart_user_browsers').raw().getContext('2d'), {
- type: 'pie',
- data: {
- labels: ["<?=implode('","', $SlicedBrowsers)?>"],
- datasets: [ {
- data: [<?=implode(",", $SlicedUsers)?>],
- backgroundColor: ["<?=implode('","', $Colors)?>"],
- }]
- }
- })
- </script>
- </div>
- <br />
- <h3 id="Geo_Dist_Map"><a href="#Geo_Dist_Map">Geographical Distribution Map</a></h3>
- <div class="box center">
- <img src="<?=ImageTools::process('https://chart.googleapis.com/chart?cht=map:fixed=-55,-180,73,180&chs=440x220&chd=t:'.implode(',', $Rank).'&chco=FFFFFF,EDEDED,1F0066&chld='.implode('|', $Countries).'&chf=bg,s,CCD6FF')?>" alt="Geographical Distribution Map - Worldwide" />
- <img src="<?=ImageTools::process('https://chart.googleapis.com/chart?cht=map:fixed=37,-26,65,67&chs=440x220&chs=440x220&chd=t:'.implode(',', $Rank).'&chco=FFFFFF,EDEDED,1F0066&chld='.implode('|', $Countries).'&chf=bg,s,CCD6FF')?>" alt="Geographical Distribution Map - Europe" />
- <br />
- <img src="<?=ImageTools::process('https://chart.googleapis.com/chart?cht=map:fixed=-46,-132,24,21.5&chs=440x220&chd=t:'.implode(',', $Rank).'&chco=FFFFFF,EDEDED,1F0066&chld='.implode('|', $Countries).'&chf=bg,s,CCD6FF')?>" alt="Geographical Distribution Map - South America" />
- <img src="<?=ImageTools::process('https://chart.googleapis.com/chart?cht=map:fixed=-11,22,50,160&chs=440x220&chd=t:'.implode(',', $Rank).'&chco=FFFFFF,EDEDED,1F0066&chld='.implode('|', $Countries).'&chf=bg,s,CCD6FF')?>" alt="Geographical Distribution Map - Asia" />
- <br />
- <img src="<?=ImageTools::process('https://chart.googleapis.com/chart?cht=map:fixed=-36,-57,37,100&chs=440x220&chd=t:'.implode(',', $Rank).'&chco=FFFFFF,EDEDED,1F0066&chld='.implode('|', $Countries).'&chf=bg,s,CCD6FF')?>" alt="Geographical Distribution Map - Africa" />
- <img src="<?=ImageTools::process('https://chart.googleapis.com/chart?cht=map:fixed=14.8,15,45,86&chs=440x220&chd=t:'.implode(',', $Rank).'&chco=FFFFFF,EDEDED,1F0066&chld='.implode('|', $Countries).'&chf=bg,s,CCD6FF')?>" alt="Geographical Distribution Map - Middle East" />
- <br />
- <img src="<?=ImageTools::process('https://chart.googleapis.com/chart?chxt=y,x&chg=0,-1,1,1&chxs=0,h&cht=bvs&chco=76A4FB&chs=880x300&chd=t:'.implode(',', array_slice($CountryUsers, 0, 31)).'&chxl=1:|'.implode('|', array_slice($Countries, 0, 31)).'|0:|'.implode('|', $LogIncrements).'&chf=bg,s,FFFFFF00')?>" alt="Number of users by country" />
- </div>
- <?
- View::show_footer();
|