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: 183: 184: 185: 186: 187: 188: 189: 190: 191: 192: 193: 194: 195: 196: 197: 198: 199: 200: 201: 202: 203: 204: 205: 206: 207: 208: 209: 210: 211: 212: 213: 214: 215: 216: 217: 218: 219: 220: 221: 222: 223: 224: 225: 226: 227: 228: 229: 230: 231: 232: 233: 234: 235: 236: 237: 238: 239: 240: 241: 242: 243: 244: 245: 246: 247: 248: 249: 250: 251: 252: 253: 254: 255: 256: 257: 258: 259: 260: 261: 262: 263: 264: 265: 266: 267: 268: 269: 270: 271: 272: 273: 274: 275: 276: 277: 278: 279: 280: 281: 282: 283: 284: 285: 286: 287: 288: 289: 290: 291: 292: 293: 294: 295: 296: 297: 298: 299: 300: 301: 302: 303: 304: 305: 306: 307: 308: 309: 310: 311: 312: 313: 314: 315: 316: 317: 318: 319: 320: 321: 322: 323: 324: 325: 326: 327: 328: 329: 330: 331: 332: 333: 334: 335: 336: 337: 338: 339: 340: 341: 342: 343: 344: 345: 346: 347: 348: 349: 350: 351: 352: 353: 354: 355: 356: 357: 358: 359: 360: 361: 362: 363: 364: 365: 366: 367: 368: 369: 370: 371: 372: 373: 374: 375: 376: 377: 378: 379: 380: 381: 382: 383: 384: 385: 386: 387: 388: 389: 390: 391: 392: 393: 394: 395: 396: 397: 398: 399: 400: 401: 402: 403: 404: 405: 406: 407: 408: 409: 410: 411: 412: 413: 414: 415: 416: 417: 418: 419: 420: 421: 422: 423: 424: 425: 426: 427: 428: 429: 430: 431: 432: 433: 434: 435: 436: 437: 438: 439: 440: 441: 442: 443: 444: 445: 446: 447: 448: 449: 450: 451: 452: 453: 454: 455: 456: 457: 458: 459: 460: 461: 462: 463: 464: 465: 466: 467: 468: 469: 470: 471: 472: 473: 474: 475: 476: 477: 478: 479: 480: 481: 482: 483: 484: 485: 486: 487: 488: 489: 490: 491: 492: 493: 494: 495: 496: 497: 498: 499: 500: 501: 502: 503: 504: 505: 506: 507: 508: 509: 510: 511: 512: 513: 514: 515: 516: 517: 518: 519: 520: 521: 522: 523: 524: 525: 526: 527: 528: 529: 530: 531: 532: 533: 534: 535: 536: 537: 538: 539: 540: 541: 542: 543: 544: 545: 546: 547: 548: 549: 550: 551: 552: 553: 554: 555: 556: 557: 558: 559: 560: 561: 562: 563: 564: 565: 566: 567: 568: 569: 570: 571: 572: 573: 574: 575: 576: 577: 578: 579: 580: 581: 582: 583: 584: 585: 586: 587: 588: 589: 590: 591: 592: 593: 594: 595: 596: 597: 598: 599: 600: 601: 602: 603: 604: 605: 606: 607: 608: 609: 610: 611: 612: 613: 614: 615: 616: 617: 618: 619: 620: 621: 622: 623: 624: 625: 626: 627: 628: 629: 630: 631: 632: 633: 634: 635: 636: 637: 638: 639: 640: 641: 642: 643: 644: 645: 646: 647: 648: 649: 650: 651: 652: 653: 654: 655: 656: 657: 658: 659: 660: 661: 662: 663: 664: 665: 666: 667: 668: 669: 670: 671: 672: 673: 674: 675: 676: 677: 678: 679: 680: 681: 682: 683: 684: 685: 686: 687: 688: 689: 690: 691: 692: 693: 694: 695: 696: 697: 698: 699: 700: 701: 702: 703: 704: 705: 706: 707: 708: 709: 710: 711: 712: 713: 714: 715: 716: 717: 718: 719: 720: 721: 722: 723: 724: 725: 726: 727: 728: 729: 730: 731: 732: 733: 734: 735: 736: 737: 738: 739: 740: 741: 742: 743: 744: 745: 746: 747: 748: 749: 750: 751: 752: 753: 754: 755: 756: 757: 758: 759: 760: 761: 762: 763: 764: 765: 766: 767: 768: 769: 770: 771: 772: 773: 774: 775: 776: 777: 778: 779: 780: 781: 782: 783: 784: 785: 786: 787: 788: 789: 790: 791: 792: 793: 794: 795: 796: 797: 798: 799: 800: 801: 802: 803: 804: 805: 806: 807: 808: 809: 810: 811: 812: 813: 814: 815: 816: 817: 818: 819: 820: 821: 822: 823: 824: 825: 826: 827: 828: 829: 830: 831: 832: 833:
<?php
if (!defined('SMF'))
die('No direct access...');
function DisplayStats()
{
global $txt, $scripturl, $modSettings, $context, $smcFunc;
isAllowedTo('view_stats');
if (empty($modSettings['trackStats']))
fatal_lang_error('feature_disabled', true);
if (!empty($_REQUEST['expand']))
{
$context['robot_no_index'] = true;
$month = (int) substr($_REQUEST['expand'], 4);
$year = (int) substr($_REQUEST['expand'], 0, 4);
if ($year > 1900 && $year < 2200 && $month >= 1 && $month <= 12)
$_SESSION['expanded_stats'][$year][] = $month;
}
elseif (!empty($_REQUEST['collapse']))
{
$context['robot_no_index'] = true;
$month = (int) substr($_REQUEST['collapse'], 4);
$year = (int) substr($_REQUEST['collapse'], 0, 4);
if (!empty($_SESSION['expanded_stats'][$year]))
$_SESSION['expanded_stats'][$year] = array_diff($_SESSION['expanded_stats'][$year], array($month));
}
if (isset($_REQUEST['xml']))
{
if (!empty($_REQUEST['collapse']))
obExit(false);
$context['sub_template'] = 'stats';
$context['yearly'] = array();
if (empty($month) || empty($year))
return;
getDailyStats('YEAR(date) = {int:year} AND MONTH(date) = {int:month}', array('year' => $year, 'month' => $month));
$context['yearly'][$year]['months'][$month]['date'] = array(
'month' => sprintf('%02d', $month),
'year' => $year,
);
return;
}
loadLanguage('Stats');
loadTemplate('Stats');
loadJavaScriptFile('stats.js', array('default_theme' => true, 'defer' => false, 'minimize' => true), 'smf_stats');
$context['linktree'][] = array(
'url' => $scripturl . '?action=stats',
'name' => $txt['stats_center']
);
$context['page_title'] = $context['forum_name'] . ' - ' . $txt['stats_center'];
$context['show_member_list'] = allowedTo('view_mlist');
$result = $smcFunc['db_query']('', '
SELECT
SUM(posts) AS posts, SUM(topics) AS topics, SUM(registers) AS registers,
SUM(most_on) AS most_on, MIN(date) AS date, SUM(hits) AS hits
FROM {db_prefix}log_activity',
array(
)
);
$row = $smcFunc['db_fetch_assoc']($result);
$smcFunc['db_free_result']($result);
$total_days_up = ceil((time() - strtotime($row['date'])) / (60 * 60 * 24));
$context['average_posts'] = comma_format(round($row['posts'] / $total_days_up, 2));
$context['average_topics'] = comma_format(round($row['topics'] / $total_days_up, 2));
$context['average_members'] = comma_format(round($row['registers'] / $total_days_up, 2));
$context['average_online'] = comma_format(round($row['most_on'] / $total_days_up, 2));
$context['average_hits'] = comma_format(round($row['hits'] / $total_days_up, 2));
$context['num_hits'] = comma_format($row['hits'], 0);
$result = $smcFunc['db_query']('', '
SELECT COUNT(*)
FROM {db_prefix}log_online',
array(
)
);
list ($context['users_online']) = $smcFunc['db_fetch_row']($result);
$smcFunc['db_free_result']($result);
$result = $smcFunc['db_query']('', '
SELECT COUNT(*)
FROM {db_prefix}boards AS b
WHERE b.redirect = {string:blank_redirect}',
array(
'blank_redirect' => '',
)
);
list ($context['num_boards']) = $smcFunc['db_fetch_row']($result);
$smcFunc['db_free_result']($result);
$result = $smcFunc['db_query']('', '
SELECT COUNT(*)
FROM {db_prefix}categories AS c',
array(
)
);
list ($context['num_categories']) = $smcFunc['db_fetch_row']($result);
$smcFunc['db_free_result']($result);
$context['users_online'] = comma_format($context['users_online']);
$context['num_boards'] = comma_format($context['num_boards']);
$context['num_categories'] = comma_format($context['num_categories']);
$context['num_members'] = comma_format($modSettings['totalMembers']);
$context['num_posts'] = comma_format($modSettings['totalMessages']);
$context['num_topics'] = comma_format($modSettings['totalTopics']);
$context['most_members_online'] = array(
'number' => comma_format($modSettings['mostOnline']),
'date' => timeformat($modSettings['mostDate'])
);
$context['latest_member'] = &$context['common_stats']['latest_member'];
$disabled_fields = isset($modSettings['disabled_profile_fields']) ? explode(',', $modSettings['disabled_profile_fields']) : array();
if (!in_array('gender', $disabled_fields))
{
if (($context['gender'] = cache_get_data('stats_gender', 240)) == null)
{
$result = $smcFunc['db_query']('', '
SELECT COUNT(id_member) AS total_members, value AS gender
FROM {db_prefix}themes
WHERE variable = {string:gender_var} AND id_theme = {int:default_theme}
GROUP BY value',
array(
'gender_var' => 'cust_gender',
'default_theme' => 1,
)
);
$context['gender'] = array();
while ($row = $smcFunc['db_fetch_assoc']($result))
{
$context['gender'][$row['gender']] = $row['total_members'];
}
$smcFunc['db_free_result']($result);
cache_put_data('stats_gender', $context['gender'], 240);
}
}
$date = strftime('%Y-%m-%d', forum_time(false));
$result = $smcFunc['db_query']('', '
SELECT most_on
FROM {db_prefix}log_activity
WHERE date = {date:today_date}
LIMIT 1',
array(
'today_date' => $date,
)
);
list ($context['online_today']) = $smcFunc['db_fetch_row']($result);
$smcFunc['db_free_result']($result);
$context['online_today'] = comma_format((int) $context['online_today']);
$members_result = $smcFunc['db_query']('', '
SELECT id_member, real_name, posts
FROM {db_prefix}members
WHERE posts > {int:no_posts}
ORDER BY posts DESC
LIMIT 10',
array(
'no_posts' => 0,
)
);
$context['stats_blocks']['posters'] = array();
$max_num_posts = 1;
while ($row_members = $smcFunc['db_fetch_assoc']($members_result))
{
$context['stats_blocks']['posters'][] = array(
'name' => $row_members['real_name'],
'id' => $row_members['id_member'],
'num' => $row_members['posts'],
'href' => $scripturl . '?action=profile;u=' . $row_members['id_member'],
'link' => '<a href="' . $scripturl . '?action=profile;u=' . $row_members['id_member'] . '">' . $row_members['real_name'] . '</a>'
);
if ($max_num_posts < $row_members['posts'])
$max_num_posts = $row_members['posts'];
}
$smcFunc['db_free_result']($members_result);
foreach ($context['stats_blocks']['posters'] as $i => $poster)
{
$context['stats_blocks']['posters'][$i]['percent'] = round(($poster['num'] * 100) / $max_num_posts);
$context['stats_blocks']['posters'][$i]['num'] = comma_format($context['stats_blocks']['posters'][$i]['num']);
}
$boards_result = $smcFunc['db_query']('', '
SELECT id_board, name, num_posts
FROM {db_prefix}boards AS b
WHERE {query_see_board}' . (!empty($modSettings['recycle_enable']) && $modSettings['recycle_board'] > 0 ? '
AND b.id_board != {int:recycle_board}' : '') . '
AND b.redirect = {string:blank_redirect}
ORDER BY num_posts DESC
LIMIT 10',
array(
'recycle_board' => $modSettings['recycle_board'],
'blank_redirect' => '',
)
);
$context['stats_blocks']['boards'] = array();
$max_num_posts = 1;
while ($row_board = $smcFunc['db_fetch_assoc']($boards_result))
{
$context['stats_blocks']['boards'][] = array(
'id' => $row_board['id_board'],
'name' => $row_board['name'],
'num' => $row_board['num_posts'],
'href' => $scripturl . '?board=' . $row_board['id_board'] . '.0',
'link' => '<a href="' . $scripturl . '?board=' . $row_board['id_board'] . '.0">' . $row_board['name'] . '</a>'
);
if ($max_num_posts < $row_board['num_posts'])
$max_num_posts = $row_board['num_posts'];
}
$smcFunc['db_free_result']($boards_result);
foreach ($context['stats_blocks']['boards'] as $i => $board)
{
$context['stats_blocks']['boards'][$i]['percent'] = round(($board['num'] * 100) / $max_num_posts);
$context['stats_blocks']['boards'][$i]['num'] = comma_format($context['stats_blocks']['boards'][$i]['num']);
}
if ($modSettings['totalMessages'] > 100000)
{
$request = $smcFunc['db_query']('', '
SELECT id_topic
FROM {db_prefix}topics
WHERE num_replies != {int:no_replies}' . ($modSettings['postmod_active'] ? '
AND approved = {int:is_approved}' : '') . '
ORDER BY num_replies DESC
LIMIT 100',
array(
'no_replies' => 0,
'is_approved' => 1,
)
);
$topic_ids = array();
while ($row = $smcFunc['db_fetch_assoc']($request))
$topic_ids[] = $row['id_topic'];
$smcFunc['db_free_result']($request);
}
else
$topic_ids = array();
$topic_reply_result = $smcFunc['db_query']('', '
SELECT m.subject, t.num_replies, t.id_board, t.id_topic, b.name
FROM {db_prefix}topics AS t
INNER JOIN {db_prefix}messages AS m ON (m.id_msg = t.id_first_msg)
INNER JOIN {db_prefix}boards AS b ON (b.id_board = t.id_board' . (!empty($modSettings['recycle_enable']) && $modSettings['recycle_board'] > 0 ? '
AND b.id_board != {int:recycle_board}' : '') . ')
WHERE {query_see_board}' . (!empty($topic_ids) ? '
AND t.id_topic IN ({array_int:topic_list})' : ($modSettings['postmod_active'] ? '
AND t.approved = {int:is_approved}' : '')) . '
ORDER BY t.num_replies DESC
LIMIT 10',
array(
'topic_list' => $topic_ids,
'recycle_board' => $modSettings['recycle_board'],
'is_approved' => 1,
)
);
$context['stats_blocks']['topics_replies'] = array();
$max_num_replies = 1;
while ($row_topic_reply = $smcFunc['db_fetch_assoc']($topic_reply_result))
{
censorText($row_topic_reply['subject']);
$context['stats_blocks']['topics_replies'][] = array(
'id' => $row_topic_reply['id_topic'],
'board' => array(
'id' => $row_topic_reply['id_board'],
'name' => $row_topic_reply['name'],
'href' => $scripturl . '?board=' . $row_topic_reply['id_board'] . '.0',
'link' => '<a href="' . $scripturl . '?board=' . $row_topic_reply['id_board'] . '.0">' . $row_topic_reply['name'] . '</a>'
),
'subject' => $row_topic_reply['subject'],
'num' => $row_topic_reply['num_replies'],
'href' => $scripturl . '?topic=' . $row_topic_reply['id_topic'] . '.0',
'link' => '<a href="' . $scripturl . '?topic=' . $row_topic_reply['id_topic'] . '.0">' . $row_topic_reply['subject'] . '</a>'
);
if ($max_num_replies < $row_topic_reply['num_replies'])
$max_num_replies = $row_topic_reply['num_replies'];
}
$smcFunc['db_free_result']($topic_reply_result);
foreach ($context['stats_blocks']['topics_replies'] as $i => $topic)
{
$context['stats_blocks']['topics_replies'][$i]['percent'] = round(($topic['num'] * 100) / $max_num_replies);
$context['stats_blocks']['topics_replies'][$i]['num'] = comma_format($context['stats_blocks']['topics_replies'][$i]['num']);
}
if ($modSettings['totalMessages'] > 100000)
{
$request = $smcFunc['db_query']('', '
SELECT id_topic
FROM {db_prefix}topics
WHERE num_views != {int:no_views}
ORDER BY num_views DESC
LIMIT 100',
array(
'no_views' => 0,
)
);
$topic_ids = array();
while ($row = $smcFunc['db_fetch_assoc']($request))
$topic_ids[] = $row['id_topic'];
$smcFunc['db_free_result']($request);
}
else
$topic_ids = array();
$topic_view_result = $smcFunc['db_query']('', '
SELECT m.subject, t.num_views, t.id_board, t.id_topic, b.name
FROM {db_prefix}topics AS t
INNER JOIN {db_prefix}messages AS m ON (m.id_msg = t.id_first_msg)
INNER JOIN {db_prefix}boards AS b ON (b.id_board = t.id_board' . (!empty($modSettings['recycle_enable']) && $modSettings['recycle_board'] > 0 ? '
AND b.id_board != {int:recycle_board}' : '') . ')
WHERE {query_see_board}' . (!empty($topic_ids) ? '
AND t.id_topic IN ({array_int:topic_list})' : ($modSettings['postmod_active'] ? '
AND t.approved = {int:is_approved}' : '')) . '
ORDER BY t.num_views DESC
LIMIT 10',
array(
'topic_list' => $topic_ids,
'recycle_board' => $modSettings['recycle_board'],
'is_approved' => 1,
)
);
$context['stats_blocks']['topics_views'] = array();
$max_num = 1;
while ($row_topic_views = $smcFunc['db_fetch_assoc']($topic_view_result))
{
censorText($row_topic_views['subject']);
$context['stats_blocks']['topics_views'][] = array(
'id' => $row_topic_views['id_topic'],
'board' => array(
'id' => $row_topic_views['id_board'],
'name' => $row_topic_views['name'],
'href' => $scripturl . '?board=' . $row_topic_views['id_board'] . '.0',
'link' => '<a href="' . $scripturl . '?board=' . $row_topic_views['id_board'] . '.0">' . $row_topic_views['name'] . '</a>'
),
'subject' => $row_topic_views['subject'],
'num' => $row_topic_views['num_views'],
'href' => $scripturl . '?topic=' . $row_topic_views['id_topic'] . '.0',
'link' => '<a href="' . $scripturl . '?topic=' . $row_topic_views['id_topic'] . '.0">' . $row_topic_views['subject'] . '</a>'
);
if ($max_num < $row_topic_views['num_views'])
$max_num = $row_topic_views['num_views'];
}
$smcFunc['db_free_result']($topic_view_result);
foreach ($context['stats_blocks']['topics_views'] as $i => $topic)
{
$context['stats_blocks']['topics_views'][$i]['percent'] = round(($topic['num'] * 100) / $max_num);
$context['stats_blocks']['topics_views'][$i]['num'] = comma_format($context['stats_blocks']['topics_views'][$i]['num']);
}
if (($members = cache_get_data('stats_top_starters', 360)) == null)
{
$request = $smcFunc['db_query']('', '
SELECT id_member_started, COUNT(*) AS hits
FROM {db_prefix}topics' . (!empty($modSettings['recycle_enable']) && $modSettings['recycle_board'] > 0 ? '
WHERE id_board != {int:recycle_board}' : '') . '
GROUP BY id_member_started
ORDER BY hits DESC
LIMIT 20',
array(
'recycle_board' => $modSettings['recycle_board'],
)
);
$members = array();
while ($row = $smcFunc['db_fetch_assoc']($request))
$members[$row['id_member_started']] = $row['hits'];
$smcFunc['db_free_result']($request);
cache_put_data('stats_top_starters', $members, 360);
}
if (empty($members))
$members = array(0 => 0);
$members_result = $smcFunc['db_query']('', '
SELECT id_member, real_name
FROM {db_prefix}members
WHERE id_member IN ({array_int:member_list})',
array(
'member_list' => array_keys($members),
)
);
$context['stats_blocks']['starters'] = array();
$max_num = 1;
while ($row_members = $smcFunc['db_fetch_assoc']($members_result))
{
$i = array_search($row_members['id_member'], array_keys($members));
if ($i >= 10)
continue;
$context['stats_blocks']['starters'][$i] = array(
'name' => $row_members['real_name'],
'id' => $row_members['id_member'],
'num' => $members[$row_members['id_member']],
'href' => $scripturl . '?action=profile;u=' . $row_members['id_member'],
'link' => '<a href="' . $scripturl . '?action=profile;u=' . $row_members['id_member'] . '">' . $row_members['real_name'] . '</a>'
);
if ($max_num < $members[$row_members['id_member']])
$max_num = $members[$row_members['id_member']];
}
ksort($context['stats_blocks']['starters']);
$smcFunc['db_free_result']($members_result);
foreach ($context['stats_blocks']['starters'] as $i => $topic)
{
$context['stats_blocks']['starters'][$i]['percent'] = round(($topic['num'] * 100) / $max_num);
$context['stats_blocks']['starters'][$i]['num'] = comma_format($context['stats_blocks']['starters'][$i]['num']);
}
$temp = cache_get_data('stats_total_time_members', 600);
$members_result = $smcFunc['db_query']('', '
SELECT id_member, real_name, total_time_logged_in
FROM {db_prefix}members' . (!empty($temp) ? '
WHERE id_member IN ({array_int:member_list_cached})' : '') . '
ORDER BY total_time_logged_in DESC
LIMIT 20',
array(
'member_list_cached' => $temp,
)
);
$context['stats_blocks']['time_online'] = array();
$temp2 = array();
$max_time_online = 1;
while ($row_members = $smcFunc['db_fetch_assoc']($members_result))
{
$temp2[] = (int) $row_members['id_member'];
if (count($context['stats_blocks']['time_online']) >= 10)
continue;
$timeDays = floor($row_members['total_time_logged_in'] / 86400);
$timeHours = floor(($row_members['total_time_logged_in'] % 86400) / 3600);
$timelogged = '';
if ($timeDays > 0)
$timelogged .= $timeDays . $txt['total_time_logged_d'];
if ($timeHours > 0)
$timelogged .= $timeHours . $txt['total_time_logged_h'];
$timelogged .= floor(($row_members['total_time_logged_in'] % 3600) / 60) . $txt['total_time_logged_m'];
$context['stats_blocks']['time_online'][] = array(
'id' => $row_members['id_member'],
'name' => $row_members['real_name'],
'num' => $timelogged,
'seconds_online' => $row_members['total_time_logged_in'],
'href' => $scripturl . '?action=profile;u=' . $row_members['id_member'],
'link' => '<a href="' . $scripturl . '?action=profile;u=' . $row_members['id_member'] . '">' . $row_members['real_name'] . '</a>'
);
if ($max_time_online < $row_members['total_time_logged_in'])
$max_time_online = $row_members['total_time_logged_in'];
}
$smcFunc['db_free_result']($members_result);
foreach ($context['stats_blocks']['time_online'] as $i => $member)
$context['stats_blocks']['time_online'][$i]['percent'] = round(($member['seconds_online'] * 100) / $max_time_online);
if ($temp !== $temp2)
cache_put_data('stats_total_time_members', $temp2, 480);
if (!empty($modSettings['enable_likes']))
{
$context['stats_blocks']['liked_messages'] = array();
$max_liked_message = 1;
$liked_messages = $smcFunc['db_query']('', '
SELECT m.id_msg, m.subject, m.likes, m.id_board, m.id_topic, t.approved
FROM (
SELECT n.id_msg, n.subject, n.likes, n.id_board, n.id_topic
FROM {db_prefix}messages as n
ORDER BY n.likes DESC
LIMIT 1000
) AS m
INNER JOIN {db_prefix}topics AS t ON (m.id_topic = t.id_topic)
INNER JOIN {db_prefix}boards AS b ON (b.id_board = t.id_board' . (!empty($modSettings['recycle_enable']) && $modSettings['recycle_board'] > 0 ? '
AND b.id_board != {int:recycle_board}' : '') . ')
WHERE {query_see_board}' . ($modSettings['postmod_active'] ? '
AND t.approved = {int:is_approved}' : '') . '
ORDER BY m.likes DESC
LIMIT 10',
array(
'recycle_board' => $modSettings['recycle_board'],
'is_approved' => 1,
)
);
while ($row_liked_message = $smcFunc['db_fetch_assoc']($liked_messages))
{
censorText($row_liked_message['subject']);
$context['stats_blocks']['liked_messages'][] = array(
'id' => $row_liked_message['id_topic'],
'subject' => $row_liked_message['subject'],
'num' => $row_liked_message['likes'],
'href' => $scripturl . '?msg=' . $row_liked_message['id_msg'],
'link' => '<a href="' . $scripturl . '?msg=' . $row_liked_message['id_msg'] . '">' . $row_liked_message['subject'] . '</a>'
);
if ($max_liked_message < $row_liked_message['likes'])
$max_liked_message = $row_liked_message['likes'];
}
$smcFunc['db_free_result']($liked_messages);
foreach ($context['stats_blocks']['liked_messages'] as $i => $liked_messages)
$context['stats_blocks']['liked_messages'][$i]['percent'] = round(($liked_messages['num'] * 100) / $max_liked_message);
$context['stats_blocks']['liked_users'] = array();
$max_liked_users = 1;
$liked_users = $smcFunc['db_query']('', '
SELECT m.id_member AS liked_user, COUNT(l.content_id) AS count, mem.real_name
FROM {db_prefix}user_likes AS l
INNER JOIN {db_prefix}messages AS m ON (l.content_id = m.id_msg)
INNER JOIN {db_prefix}members AS mem ON (m.id_member = mem.id_member)
WHERE content_type = {literal:msg}
AND m.id_member > {int:zero}
GROUP BY m.id_member, mem.real_name
ORDER BY count DESC
LIMIT 10',
array(
'no_posts' => 0,
'zero' => 0,
)
);
while ($row_liked_users = $smcFunc['db_fetch_assoc']($liked_users))
{
$context['stats_blocks']['liked_users'][] = array(
'id' => $row_liked_users['liked_user'],
'num' => $row_liked_users['count'],
'href' => $scripturl . '?action=profile;u=' . $row_liked_users['liked_user'],
'name' => $row_liked_users['real_name'],
'link' => '<a href="' . $scripturl . '?action=profile;u=' . $row_liked_users['liked_user'] . '">' . $row_liked_users['real_name'] . '</a>',
);
if ($max_liked_users < $row_liked_users['count'])
$max_liked_users = $row_liked_users['count'];
}
$smcFunc['db_free_result']($liked_users);
foreach ($context['stats_blocks']['liked_users'] as $i => $liked_users)
$context['stats_blocks']['liked_users'][$i]['percent'] = round(($liked_users['num'] * 100) / $max_liked_users);
}
$months_result = $smcFunc['db_query']('', '
SELECT
YEAR(date) AS stats_year, MONTH(date) AS stats_month, SUM(hits) AS hits, SUM(registers) AS registers, SUM(topics) AS topics, SUM(posts) AS posts, MAX(most_on) AS most_on, COUNT(*) AS num_days
FROM {db_prefix}log_activity
GROUP BY stats_year, stats_month',
array()
);
$context['yearly'] = array();
while ($row_months = $smcFunc['db_fetch_assoc']($months_result))
{
$ID_MONTH = $row_months['stats_year'] . sprintf('%02d', $row_months['stats_month']);
$expanded = !empty($_SESSION['expanded_stats'][$row_months['stats_year']]) && in_array($row_months['stats_month'], $_SESSION['expanded_stats'][$row_months['stats_year']]);
if (!isset($context['yearly'][$row_months['stats_year']]))
$context['yearly'][$row_months['stats_year']] = array(
'year' => $row_months['stats_year'],
'new_topics' => 0,
'new_posts' => 0,
'new_members' => 0,
'most_members_online' => 0,
'hits' => 0,
'num_months' => 0,
'months' => array(),
'expanded' => false,
'current_year' => $row_months['stats_year'] == date('Y'),
);
$context['yearly'][$row_months['stats_year']]['months'][(int) $row_months['stats_month']] = array(
'id' => $ID_MONTH,
'date' => array(
'month' => sprintf('%02d', $row_months['stats_month']),
'year' => $row_months['stats_year']
),
'href' => $scripturl . '?action=stats;' . ($expanded ? 'collapse' : 'expand') . '=' . $ID_MONTH . '#m' . $ID_MONTH,
'link' => '<a href="' . $scripturl . '?action=stats;' . ($expanded ? 'collapse' : 'expand') . '=' . $ID_MONTH . '#m' . $ID_MONTH . '">' . $txt['months_titles'][(int) $row_months['stats_month']] . ' ' . $row_months['stats_year'] . '</a>',
'month' => $txt['months_titles'][(int) $row_months['stats_month']],
'year' => $row_months['stats_year'],
'new_topics' => comma_format($row_months['topics']),
'new_posts' => comma_format($row_months['posts']),
'new_members' => comma_format($row_months['registers']),
'most_members_online' => comma_format($row_months['most_on']),
'hits' => comma_format($row_months['hits']),
'num_days' => $row_months['num_days'],
'days' => array(),
'expanded' => $expanded
);
$context['yearly'][$row_months['stats_year']]['new_topics'] += $row_months['topics'];
$context['yearly'][$row_months['stats_year']]['new_posts'] += $row_months['posts'];
$context['yearly'][$row_months['stats_year']]['new_members'] += $row_months['registers'];
$context['yearly'][$row_months['stats_year']]['hits'] += $row_months['hits'];
$context['yearly'][$row_months['stats_year']]['num_months']++;
$context['yearly'][$row_months['stats_year']]['expanded'] |= $expanded;
$context['yearly'][$row_months['stats_year']]['most_members_online'] = max($context['yearly'][$row_months['stats_year']]['most_members_online'], $row_months['most_on']);
}
krsort($context['yearly']);
$context['collapsed_years'] = array();
foreach ($context['yearly'] as $year => $data)
{
krsort($context['yearly'][$year]['months']);
$context['yearly'][$year]['new_topics'] = comma_format($data['new_topics']);
$context['yearly'][$year]['new_posts'] = comma_format($data['new_posts']);
$context['yearly'][$year]['new_members'] = comma_format($data['new_members']);
$context['yearly'][$year]['most_members_online'] = comma_format($data['most_members_online']);
$context['yearly'][$year]['hits'] = comma_format($data['hits']);
if (!$data['expanded'] && !$data['current_year'])
$context['collapsed_years'][] = $year;
}
call_integration_hook('integrate_forum_stats');
if (empty($_SESSION['expanded_stats']))
return;
$condition_text = array();
$condition_params = array();
foreach ($_SESSION['expanded_stats'] as $year => $months)
if (!empty($months))
{
$condition_text[] = 'YEAR(date) = {int:year_' . $year . '} AND MONTH(date) IN ({array_int:months_' . $year . '})';
$condition_params['year_' . $year] = $year;
$condition_params['months_' . $year] = $months;
}
if (empty($condition_text))
return;
getDailyStats(implode(' OR ', $condition_text), $condition_params);
}
function getDailyStats($condition_string, $condition_parameters = array())
{
global $context, $smcFunc;
$days_result = $smcFunc['db_query']('', '
SELECT YEAR(date) AS stats_year, MONTH(date) AS stats_month, DAYOFMONTH(date) AS stats_day, topics, posts, registers, most_on, hits
FROM {db_prefix}log_activity
WHERE ' . $condition_string . '
ORDER BY stats_day ASC',
$condition_parameters
);
while ($row_days = $smcFunc['db_fetch_assoc']($days_result))
$context['yearly'][$row_days['stats_year']]['months'][(int) $row_days['stats_month']]['days'][] = array(
'day' => sprintf('%02d', $row_days['stats_day']),
'month' => sprintf('%02d', $row_days['stats_month']),
'year' => $row_days['stats_year'],
'new_topics' => comma_format($row_days['topics']),
'new_posts' => comma_format($row_days['posts']),
'new_members' => comma_format($row_days['registers']),
'most_members_online' => comma_format($row_days['most_on']),
'hits' => comma_format($row_days['hits'])
);
$smcFunc['db_free_result']($days_result);
}
function SMStats()
{
global $modSettings, $user_info, $sourcedir;
if (empty($modSettings['enable_sm_stats']) || empty($modSettings['sm_stats_key']))
die();
if (!$user_info['is_admin'] && (!isset($_GET['sid']) || $_GET['sid'] != $modSettings['sm_stats_key']))
die();
if (!$user_info['is_admin'] && (!isset($_SERVER['HTTP_REFERER']) || md5($_SERVER['HTTP_REFERER']) != '746cb59a1a0d5cf4bd240e5a67c73085'))
die();
require_once($sourcedir . '/Subs-Admin.php');
$checkFor = array(
'php',
'db_server',
);
$serverVersions = getServerVersions($checkFor);
$stats_to_send = array(
'UID' => $modSettings['sm_stats_key'],
'time_added' => time(),
'members' => $modSettings['totalMembers'],
'messages' => $modSettings['totalMessages'],
'topics' => $modSettings['totalTopics'],
'boards' => 0,
'php_version' => $serverVersions['php']['version'],
'database_type' => strtolower($serverVersions['db_engine']['version']),
'database_version' => $serverVersions['db_server']['version'],
'smf_version' => SMF_FULL_VERSION,
'smfd_version' => $modSettings['smfVersion'],
);
foreach ($stats_to_send as $k => $v)
$stats_to_send[$k] = urlencode($k) . '=' . urlencode($v);
$stats_to_send = implode('&', $stats_to_send);
if ($user_info['is_admin'])
echo $stats_to_send;
else
{
$fp = @fsockopen('www.simplemachines.org', 80, $errno, $errstr);
if ($fp)
{
$length = strlen($stats_to_send);
$out = 'POST /smf/stats/collect_stats.php HTTP/1.1' . "\r\n";
$out .= 'Host: www.simplemachines.org' . "\r\n";
$out .= 'user-agent: '. SMF_USER_AGENT . "\r\n";
$out .= 'content-type: application/x-www-form-urlencoded' . "\r\n";
$out .= 'connection: Close' . "\r\n";
$out .= 'content-length: ' . $length . "\r\n\r\n";
$out .= $stats_to_send . "\r\n";
fwrite($fp, $out);
fclose($fp);
}
}
die('OK');
}
?>