summaryrefslogtreecommitdiff
path: root/modules/statistics/statistics.module
blob: f227baabfffa51d39e35c1fcdf50f147da90209f (plain)
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
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
<?php
// $Id$

function statistics_init() {
  global $recent_activity;

  /*
  ** The following logic determines what the current throttle level should
  **  be, and can be disabled by the admin.  If enabled, the rand() function
  **  returns a number between 0 and N, N being specified by the admin. If
  **  0 is returned, the throttle logic is run, adding on additional database
  **  query.  Otherwise, the following logic is skipped.  This mechanism is
  **  referred to in the admin page as the 'probability limiter', roughly
  **  limiting throttle related database calls to 1 in N.
  */
  if ((variable_get("statistics_enable_auto_throttle", 0)) && (!rand(0, variable_get("statistics_probability_limiter", 9)))) {
    /*
    ** Note:  The rand() function is supported by PHP 3+.  However, prior to
    ** PHP 4.2.0 it needs to be seeded with a call to srand().  It is important
    ** that this only happens once, so this should be managed by the Drupal
    ** engine, not this module.  The Drupal engine should use phpversion() to
    ** detect and automatically seed pre-4.2.0 systems.
    */

    $throttle = throttle_status();
    // if we're at throttle level 5, we don't do anything
    if ($throttle < 5) {
      $multiplier = variable_get("statistics_throttle_multiplier", 60);
      // count all hits in past sixty seconds
      $result = db_query("SELECT COUNT(timestamp) AS hits FROM accesslog WHERE timestamp >= %d", (time() - 60));
      $recent_activity = db_fetch_array($result);
      throttle_update($recent_activity["hits"]);
    }
  }
}

// Footer hook, runs at the end of every page request
function statistics_exit() {
  global $user;

  if (variable_get("statistics_enable_node_counter", 0)) {
    // node view counters are enabled
    if ((arg(0) == "node") && (arg(1) == "view") && arg(2)) {
      // a node has been viewed, so updated the node's counters
      db_query("UPDATE statistics SET daycount = daycount + 1, totalcount = totalcount + 1, timestamp = %d WHERE nid = %d", time(), arg(2));
      // if we affected 0 rows, this is the first time viewing the node
      if (!db_affected_rows()) {
        // must create a new row to store counter's for new node
        db_query("INSERT INTO statistics (nid, daycount, totalcount) VALUES(%d, daycount + 1, totalcount + 1)", arg(2));
      }
    }
  }

  if ((variable_get("statistics_enable_access_log", 0)) && (throttle_status() < 5)) {
    // statistical logs are enabled
    $referrer = getenv("HTTP_REFERER");
    $hostname = getenv("REMOTE_ADDR");
    // log this page access
    if ((arg(0) == "node") && (arg(1) == "view") && arg(2)) {
      db_query("INSERT INTO accesslog (nid, url, hostname, uid, timestamp) values(%d, '%s', '%s', %d, %d)", arg(2), $referrer, $hostname, $user->uid, time());
    }
    else {
      db_query("INSERT INTO accesslog (url, hostname, uid, timestamp) values('%s', '%s', %d, %d)", $referrer, $hostname, $user->uid, time());
    }
  }
}

/* System hook, sets description of module in admin page */
function statistics_system($field) {
  $system["description"] = t("Logs access statistics for your site.");
  return $system[$field];
}


/* Permissions hook, defines module's permissions */
function statistics_perm() {
  /*
  ** statistics module defines the following permissions:
  **   administer statistics module - full administrative control of module
  **   administer statistics        - view statistics / referrer log
  **   access statistics            - see counts per node (if enabled)
  **   access userlist              - see list of online users
  */
  return array("administer statistics module", "administer statistics", "access statistics", "access userlist");
}


/* Link hook, defines module's links */
function statistics_link($type, $node = 0, $main = 0) {
  global $id;

  $links = array();

  if ($type == "node" && user_access("access statistics") && variable_get("statistics_display_counter", 0)) {
    $statistics = statistics_get($node->nid);
    if ($statistics) {
      if (user_access("administer statistics")) {
        $links[] = l(format_plural($statistics["totalcount"], "1 read", "%count reads"), "admin/statistics/referrers/$node->nid");
      }
      else {
        $links[] = format_plural($statistics["totalcount"], "1 read", "%count reads");
      }
    }
  }

  if ($type == "page" && user_access("access content")) {
    $userlink = variable_get("statistics_userpage_link", "");
    if ($userlink) {
      $links[] = l(t($userlink), "statistics", array("title" => t("View the top nodes for this site.")));
    }
  }

  if ($type == "admin" && (user_access("administer statistics module") || (user_access("administer statistics")))) {
    $help["statistics"] = "This page gives you an at-a-glance look at your top nodes.  It is useful for understanding what content on your site is the most popular.";
    $help["referrers"] = "This page shows you site-wide referrer statistics.  You can see 'all referrers', 'external referrers' or 'internal referrers'.  Defaults to 'external'.";
    $help["access"] = "This pages shows you who is accessing your website.  You can see the hostnames, referrers.  In particular, it is easy to inspect a user's navigation history/trail by clicking the username.";
    $help["top nodes page"] = "The statistics module creates a user page that can display summaries of the day's top viewed nodes, the all time top nodes and the last nodes viewed.  Each of these summaries can be enabled or disabled individually, and the number of nodes displayed for each can be configured with a drop down menu.";
    $help["top nodes block"] = "The statistics module exports a block that can display the day's top viewed nodes, the all time top viewed nodes and the last nodes viewed.  Each of these links can be enabled or disabled individually, and the number of nodes displayed for each can be configured with a drop down menu. If you disable all sections of this block, it will not appear.";
    $help["who is online block"] = "This statistics module exports a block that can display how many user's and guests are currently online.  You can configure the name of the block, the name of a sub-block for displaying names of user's currently online, how recently a user must have been active to be considered online, the maximum characters to display from a user's name and the maximum number of user names to display.";

    menu("admin/statistics", "site statistics", "statistics_admin", $help["statistics"], 6);
    menu("admin/statistics/statistics", "most popular posts", "statistics_admin", $help["statistics"]);
    menu("admin/statistics/referrers", "referrer log", "statistics_admin", $help["referrers"]);
    menu("admin/statistics/referrers/internal", "internal referrers only", "statistics_admin", $help["referrers"]);
    menu("admin/statistics/referrers/external", "external referrers only", "statistics_admin", $help["referrers"]);
    menu("admin/statistics/log", "access log", "statistics_admin", $help["access"]);
    menu("admin/statistics/log/node", "track node", "statistics_admin", $help["access"], 0, 1);
    menu("admin/statistics/log/user", "track user", "statistics_admin", $help["access"], 0, 1);
    menu("admin/statistics/log/host", "track host", "statistics_admin", $help["access"], 0, 1);
    menu("admin/statistics/top nodes page", "configure 'top nodes' page", "statistics_admin", $help["top nodes page"], 5);
    menu("admin/statistics/help", "help", "statistics_help", NULL, 9);

    // block configuration:
    menu("admin/block/top nodes block", "configure 'top nodes' block", "statistics_admin", $help["top nodes block"], 5);
    menu("admin/block/whos online block", "configure 'who is online' block", "statistics_admin", $help["who is online block"], 5);
}

  return $links;
}


/* Administrative help page */
function statistics_help() {
  ?>
  <h3>Introduction</h3>

  <p>This Drupal module keeps track of numerous statistics for your site.  Be warned, statistical collection does cause a little overhead, thus everything is disabled by default when this module is first installed.</p>

  <p>The statistics module counts how many times each of your nodes is viewed, also tracking where each link to the node came from (HTTP referrer).  The number of times a node has been viewed can be displayed in the node's link section (next to "# comments" etc).</p>

  <p>This module also adds a configurable block that can display the day's top stories, the all time top stories, and the last stories read.  Each of these supports a configurable header and number of stories.</p>

  <p>This module also adds a configurable user page that can display the day's top stories, the all time top stories, and the last stories read.  Each of these supports a configurable header and number of stories.</p>

  <p>This module also adds a configurable block that displays counts of how many users and guests are currently accessing your site, as well as a list of the names of the users currently accessing your site.</p>

  <p>If you enable the node view counters, this adds 1 database query for each node that is viewed (2 queries if it's the first time the node has ever been viewed).</p>

  <p>Finally, the statistics.module allows for a congestion controlling auto-throttle mechanism.  If you have enabled the throttle.module, you can read more about this mechanism <?php print l("here", "admin/help#throttle"); ?>.</p>

  <p>If you enable the access log, this adds 1 database query for each page that Drupal displays.  Logged information includes:  HTTP referrer (if any), node being accessed (if any), user ID (if any), the IP address of the user, and the time the page was viewed.</p>

  <p>As with any new module, <i>statistics.module</i> needs to be enabled <?php print l("here", "admin/system/modules"); ?> before you can use it.  Also refer to the permissions section below, as this module supports four separate permissions.</p>

  <h3>View statistics</h3>

  <p>This admin page gives you an at-a-glance look at your top nodes.  It is useful for understanding what content on your Drupal site is the most popular.  Also on this page are links to the referrer statistics for each listed node.</p>

  <h3>View referrers</h3>

  <p>This admin page shows you site-wide referrer statistics.  You can see '<i>all</i>' statistics, '<i>external</i>' statistics or '<i>internal</i>' statistics.  Default is 'external'.</p>

  <h3>Configuring the statistics module</h3>

  <p>There are a couple of configuration options added to the main <?php print l("site configuration", "admin/system"); ?> admin page.</p>

  <p>The first option, <i>enable access log</i>, allows you to turn the access log on and off.  This log is used to store things like referrers and who's online.  Enabling the log adds one database call per page displayed by Drupal.</p>

  <p>The second option, <i>discard access logs older than</i>, allows you to configure how long an access log entry is saved, after which time it is deleted from the database table.</p>

  <p>The next option, <i>enable node view counter</i>, allows you to turn on and off the node-counting functionality of this module.  If it is turned on, an extra database query is added for each node displayed, as a counter is incremented with each node view.</p>

  <p>The next option, <i>display node view counters</i>, allows you to globally disable the displaying of node view counters.  Additionally, a user group must have 'access statistics' permissions to view the counters.</p>

  <p>The final option is to <i>reset the day counter</i>.  Every twenty four hours, all the day's totals are automatically reset to 0, and started again.  Whatever time you click this link is the time each day that the day's totals will be reset.  This requires cron.  Note that clicking this link will reload the site configuration page <i>without</i> saving any other changes you might have made.</p>

  <h3>Top nodes block</h3>

  <p>This module creates a block that can display the day's top viewed nodes, the all time top viewed nodes and the last nodes viewed.  Each of these links can be enabled or disabled individually, and the number of nodes displayed for each can be configured with a drop down menu.  If you disable all sections of this block, it will not appear.</p>

  <p>The administrative "top nodes block" screen also allows you to assign a name to the block.</p>

  <p>Don't forget to enable the block <?php print l("here", "admin/block"); ?>.</p>

  <h3>Top nodes page</h3>

  <p>This module creates a user page that can display summaries of the day's top viewed nodes, the all time top nodes and the last nodes viewed.  Each of these summaries can be enabled or disabled individually, and the number of nodes displayed for each can be configured with a drop down menu.</p>

  <p>The administrative "top nodes page" screen also allows you to assign a name for the automatically generated link to the user page.  If no name is set, the link will not be displayed.</p>

  <h3>Who's online block</h3>

  <p>This module creates a block that can display how many user's and guests are currently online.  You are able to configure the name of the block, the name of a sub-block for displaying names of user's currently online, how recently a user must have been active to be considered online, the maximum characters to display from a user's name and the maximum number of user names to display.</p>

  <p>Don't forget to enable the block <?php print l("here", "admin/block"); ?>.</p>

<h3>Permissions</h3>
<p>This module has four permissions that need to be configured in
<?php print l("user permissions", "admin/user/permission"); ?>.</p>
<ul>
  <li><i>access statistics</i> - enable for user roles that get to see individual node counts.  (This does not define access to the block)</li>
  <li><i>access userlist</i> - enable for user roles that get to see the list of user's that are currently online within the "Who's online" block.</li>
  <li><i>administer statistics module</i> - enable for user roles that get to configure the statistics module.</li>
  <li><i>administer statistics</i> - enable for user roles that get to view the referrer statistics.</li>
</ul>
<p>If '<i>administer statistics</i>' and '<i>access statistics</i>' are both enabled, the user will see a link from each node to that node's referrer statistics (if enabled).</p>

<h2>Statistics module (for developers)</h2>

<h3>Accessing statistics</h3>
<p>To get a node's view statistics make a call to the function <i>statistics_get($nid)</i>.  When you pass in a $nid, the function returns an array with three entires:  [0]=totalcount, [1]=daycount, [2]=timestamp.  For example, you could use this function call to add node view counts to your theme.</p>
<ul>
  <li>The <i>totalcount</i> is a count of the total number of times that node has been viewed.</li>
  <li>The <i>daycount</i> is a count of the total number of times that node has been viewed "today".  For the daycount to be reset, cron must be enabled.</li>
  <li>The <i>timestamp</i> is a timestamp of when that node was last viewed.</li>
</ul>
<p>The module automatically adds '# reads' to each node's link section (if enabled).</p>

<h3>Top stories</h3>
<p>The statistics.module provides a function '<i>statistics_title_list($type)</i>' to return an array of links to any of the following: the top viewed nodes of all time, the top viewed nodes of today, the last viewed nodes.  You can pass in:</p>
<ul>
  <li><i>totalcount</i> - This will return an array with links to the top viewed nodes of all time.<br />
  Example:  <code>statistics_title_list("totalcount");</code><br /><br /></li>
  <li><i>daycount</i> - This will return an array with links to the top viewed nodes for today.<br />
  Example:  <code>statistics_title_list("daycount");</code><br /><br /></li>
  <li><i>timestamp</i> - This will return a array with links to the last viewed node.<br />
  Example:  <code>statistics_title_list("timestamp");</code></li>
</ul>

<h3>Throttle</h3>
<p>The function <code>throttle_status()</code> will return a number from 0 to 5.  0 means that there is no throttle enabled at this time.  Each number above that is a progressively more throttled system...  To disable a feature when a site first begins to get busy, disable it at a throttle of 2 or 3.  To hold on to the bitter end, wait until 4 or 5.</p>
<p>To implement the throttle, you should do something like this:
<pre>       $throttle = 0;
       /* verify that the statitistics module is installed */
       if (function_exists(throttle_status) {
         $throttle = throttle_status()
       }
       if ($throttle >= $my_throttle_value) {
         // throttle limit reached, disable stuff
       }
       else {
         // throttle limit not reached, execute normally
       }</pre></p>
<p>Note:  Even though the configuration for the throttle is handled by the 'throttle.module', the throttle logic itself is part of the 'statistics.module'.  The configuration has been separated in order to make things easier for the average site that will not be utilizing the throttling mechanism.  More information about how the throttle works can be found on the throttle.module help page.  Find the throttle help page <?php print l("here", "admin/help#throttle"); ?> if you have enabled the throttle.module).</p>

  <?php
}


/* Administration hook, defines module's administrative page */
function statistics_admin() {
  $op = $_POST["op"];
  $edit = $_POST["edit"];

  /* Only allow people with sufficient access. */
  if ((user_access("administer statistics module")) || (user_access("administer statistics"))) {

    if (empty($op)) {
      $op = arg(2);
    }

    /* non-configuration admin pages */
    switch ($op) {
      case "statistics":
        return statistics_admin_displaycounts();
      case "referrers":
        return  statistics_recent_refer(arg(3)) . statistics_top_refer(arg(3));
      case "log":
        return statistics_admin_displaylog();
    }

    /* configuration admin pages */
    if (user_access("administer statistics module")) {
      switch (stripslashes($op)) {
        case "Submit \"top nodes\" block changes":
          statistics_save_topnodes_block($edit);
          return status(t("saved 'top nodes' block changes."));
        case "top nodes block":
          return statistics_config_topnodes_block(array(
            "statistics_block_top_title" => variable_get("statistics_block_top_title", "Top nodes"),
            "statistics_block_top_day_head" => variable_get("statistics_block_top_day_head", "<b>Todays top:</b>"),
            "statistics_block_top_day_num" => variable_get("statistics_block_top_day_num", 0),
            "statistics_block_top_all_head" => variable_get("statistics_block_top_all_head", "<b>All time top:</b>"),
            "statistics_block_top_all_num" => variable_get("statistics_block_top_all_num", 0),
            "statistics_block_top_last_head" => variable_get("statistics_block_top_last_head" ,"<b>Last:</b>"),
            "statistics_block_top_last_num" => variable_get("statistics_block_top_last_num", 0)
          ));
        case "Submit \"who's online\" block changes":
          statistics_save_online_block($edit);
          return status(t("saved 'who's online' block changes."));
        case "whos online block":
          return statistics_config_online_block(array(
            "statistics_block_online_title" => variable_get("statistics_block_online_title", "Who's online"),
            "statistics_block_online_subtitle" => variable_get("statistics_block_online_subtitle", "Online users:"),
            "statistics_block_online_time" => variable_get("statistics_block_online_time", 2700),
            "statistics_block_online_max_len" => variable_get("statistics_block_online_max_len", 15),
            "statistics_block_online_max_cnt" => variable_get("statistics_block_online_max_cnt", 10)
          ));
        case "Submit \"top nodes\" page changes":
          statistics_save_userconfig($edit);
          return status(t("saved 'top nodes' page changes."));
        case "top nodes page":
          return statistics_admin_userpage_config(array(
            "statistics_userpage_link" => variable_get("statistics_userpage_link", ""),
            "statistics_userpage_day_head" => variable_get("statistics_userpage_day_head", "Todays top"),
            "statistics_userpage_day_cnt" => variable_get("statistics_userpage_day_cnt", 0),
            "statistics_userpage_all_head" => variable_get("statistics_userpage_all_head", "All time top"),
            "statistics_userpage_all_cnt" => variable_get("statistics_userpage_all_cnt", 0),
            "statistics_userpage_last_head" => variable_get("statistics_userpage_last_head", "Last read"),
            "statistics_userpage_last_cnt" => variable_get("statistics_userpage_last_cnt", 0)
          ));
        default:
          return statistics_admin_displaycounts();
      }
    }
  }
}


/* Displays the various admin tables */
function statistics_admin_count_table($dbfield, $dbrows) {
  $result = db_query_range("SELECT s.nid, s.daycount, s.totalcount, s.timestamp, n.title FROM statistics s LEFT JOIN node n USING (nid) WHERE s.%s <> '0' ORDER BY s.%s DESC", $dbfield, $dbfield, 0, $dbrows);

  $header = array(t("title"), t("today"), t("all time"), t("last hit"), t("operations"));

  while ($nid = db_fetch_array($result)) {
    $rows[] = array(l($nid["title"], "node/view/". $nid["nid"], array("title" => t("View this posting."))), $nid["daycount"], $nid["totalcount"], format_date($nid["timestamp"], "small"), l("view referrers", "admin/statistics/referrers/". $nid["nid"]));
  }

  return table($header, $rows);
}


function statistics_admin_accesslog_table($type, $id) {

  if ($type == 1) {
    /* retrieve user access logs */
    if ($id) {
      /* retrieve recent access logs for user $id */
      $result = pager_query("SELECT nid, url, hostname, uid, timestamp FROM accesslog WHERE uid = '". check_query($id) ."' ORDER BY timestamp DESC", 50);
    }
    else {
      /* retrieve recent access logs for all users */
      $result = pager_query("SELECT nid, url, hostname, uid, MAX(timestamp) AS timestamp FROM accesslog WHERE uid <> '0' GROUP BY uid, nid, url, hostname ORDER BY timestamp DESC", 50);
    }
  }
  else if ($type == 2) {
    /* retrieve recent access logs for node $id */
    $result = pager_query("SELECT nid, url, hostname, uid, timestamp FROM accesslog WHERE nid = '". check_query($id) ."' ORDER BY timestamp DESC", 50);
  }
  else if ($type == 3) {
    /* retrieve recent access logs for hostname $id */
    $result = pager_query("SELECT nid, url, hostname, uid, timestamp FROM accesslog WHERE hostname = '". check_query($id) ."' ORDER BY timestamp DESC", 50);
  }
  else {
    /* retrieve all recent access logs */
    $result = pager_query("SELECT nid, url, hostname, uid, timestamp FROM accesslog ORDER BY timestamp DESC", 50);
  }

  $header = array(t("timestamp"), t("post"), t("user"), t("hostname"), t("referrer"), array("data" => t("operations"), "colspan" => "3"));

  while ($log = db_fetch_object($result)) {
    if (!$node = node_load(array("nid" => $log->nid))) {
      $node->nid = 0;
    }
    $user = user_load(array("uid" => $log->uid));

    if ($log->url) {
      $url = "<a href=\"$log->url\" title=\"$log->url\">". (strlen($log->url) > 28 ? substr($log->url, 0, 28) . '...' : $log->url) ."</a>";
    }
    else {
      $url = message_na();
    }

    $rows[] = array(array("data" => format_date($log->timestamp, "small"), "nowrap" => "nowrap"), ($node->nid ? l($node->title, "statistics/log/$node->nid") : message_na()), format_name($user), $log->hostname ? $log->hostname : message_na(), $url, ($log->nid ? l("track node", "admin/statistics/log/node/$log->nid") : ""), ($user->uid ? l("track user", "admin/statistics/log/user/$user->uid") : ""), ($log->hostname ? l("track host", "admin/statistics/log/host/$log->hostname") : ""));
  }

  if ($pager = pager_display(NULL, 50, 0, "admin")) {
    $rows[] = array(array("data" => $pager, "colspan" => 8));
  }

  return table($header, $rows);
}


function statistics_recent_refer($nid = 0) {
  global $view;

  if (empty($view)) {
    $view = arg(3);
  }

  $node = node_load(array("nid" => $nid));

  if ($nid > 0) {
    if ($view == "all") {
      $query = "SELECT url,timestamp FROM accesslog WHERE nid='$nid' AND url <> '' ORDER BY timestamp DESC";
    }
    elseif ($view == "internal") {
      $query = "SELECT url,timestamp FROM accesslog WHERE nid='$nid' AND url LIKE '%". check_input($_SERVER["HTTP_HOST"]) ."%' ORDER BY timestamp DESC";
      $describe = "internal ";
    }
    else {
      /* default to external referrers */
      $query = "SELECT url,timestamp FROM accesslog WHERE nid='$nid' AND url NOT LIKE '%". check_input($_SERVER["HTTP_HOST"]) ."%' AND url <> '' ORDER BY timestamp DESC";
      $describe = "external ";
    }

    $result = db_query_range($query, 0, 25);
    $output = "<h3>". t("Most recent %describe referrers for node", array("%describe" => $describe)) ."\"". l($node->title, "node/view/$nid", array("title" => t("View this posting."))) ."\"</h3>";
  }
  else {
    if ($view == "all") {
      $query = "SELECT url,timestamp FROM accesslog WHERE url <> '' ORDER BY timestamp DESC";
    }
    elseif ($view == "internal") {
      $query = "SELECT url,timestamp FROM accesslog WHERE url LIKE '%". check_input($_SERVER["HTTP_HOST"]) ."%' ORDER BY timestamp DESC";
      $describe = "internal ";
    }
    else {
      $query = "SELECT url,timestamp FROM accesslog WHERE url NOT LIKE '%". check_input($_SERVER["HTTP_HOST"]) ."%' AND url <> '' ORDER BY timestamp DESC";
      $describe = "external ";
    }

    $result = db_query_range($query, 0, 25);
    $output = "<h3>". t("Most recent %describe referrers", array("%describe" => $describe)) ."</h3>";
  }

  $header = array(t("URL"), t("date"));
  while ($referrer = db_fetch_array($result)) {
    $rows[] = array("<a href=\"". $referrer["url"] ."\">". substr($referrer["url"], 0, 100) ."</a>", format_date($referrer["timestamp"], "small"));
  }

  $output .= table($header, $rows);

  return $output;
}


function statistics_top_refer($nid = 0) {
  global $view;

  $node = node_load(array("nid" => $nid));

  if ($nid > 0) {
    if ($view == "all") {
      $query = "SELECT url, COUNT(url) AS count FROM accesslog WHERE nid = '$nid' AND url <> '' GROUP BY url ORDER BY count DESC";
    }
    elseif ($view == "internal") {
      $query = "SELECT url, COUNT(url) AS count FROM accesslog WHERE nid = '$nid' AND url LIKE '%". check_input($_SERVER["HTTP_HOST"]) ."%' GROUP BY url ORDER BY count DESC";
      $describe = "internal ";
    }
    else {
      /* default to external */
      $query = "SELECT url, COUNT(url) AS count FROM accesslog WHERE nid = '$nid' AND url NOT LIKE '%". check_input($_SERVER["HTTP_HOST"]) ."%' AND url <> '' GROUP BY url ORDER BY count DESC";
      $describe = "external ";
    }

    $output = "<h3>Top ". $describe ."referrers of the past ". format_interval(variable_get("statistics_flush_accesslog_timer", 259200)) ." for node \"". l($node->title, "node/view/$nid", array("title" => t("View this posting."))) ."\"</h3>";
  }
  else {
    if ($view == "all") {
      $query = "SELECT url, COUNT(url) AS count FROM accesslog WHERE url <> '' GROUP BY url ORDER BY count DESC";
    }
    elseif ($view == "internal") {
      $query = "SELECT url, COUNT(url) AS count FROM accesslog WHERE url LIKE '%". check_input($_SERVER["HTTP_HOST"]) ."%' GROUP BY url ORDER BY count DESC";
      $describe = "internal ";
    }
    else {
      /* default to external */
      $query = "SELECT url, COUNT(url) AS count FROM accesslog WHERE url NOT LIKE '%". check_input($_SERVER["HTTP_HOST"]) ."%' AND url <> '' GROUP BY url ORDER BY count DESC";
      $describe = "external ";
    }

    $output = "<h3>". t("Top %describe referrers of the past ", array("%describe" => $describe));
    $output .= format_interval(variable_get("statistics_flush_accesslog_timer", 259200)) ."</h3>";
  }

  $result = db_query($query);

  $header = array(t("URL"), t("count"));
  while ($referrer = db_fetch_array($result)) {
    $rows[] = array("<a href=\"". $referrer["url"] ."\">". substr($referrer["url"], 0, 100) ."</a>", $referrer["count"]);
  }

  $output .= table($header, $rows);

  return $output;

}


function statistics_admin_displaycounts() {

  $output = "<h3>". t("Today's top nodes") ."</h3>\n";
  $output .= statistics_admin_count_table("daycount", 15);

  $output .= "<br />";

  $output .= "<h3>". t("All time top nodes") ."</h3>\n";
  $output .= statistics_admin_count_table("totalcount", 15);

  $output .= "<br />";

  $output .= "<h3>". t("Last nodes viewed") ."</h3>\n";
  $output .= statistics_admin_count_table("timestamp", 15);

  return $output;
}


function statistics_admin_displaylog() {

  $type = arg(3);
  $value = arg(4);

  switch ($type) {
    case "user":
      $user = user_load(array("uid" => $value));
      $output = "<h3>". t("Recent access logs for '%name'", array("%name" => $user->name)) ."</h3>\n";
      $output .= statistics_admin_accesslog_table(1, $user->uid);
      break;
    case "node":
      $node = node_load(array("nid" => $value));
      $output = "<h3>". t("Recent access logs for '%title'", array("%title" => $node->title)) ."</h3>\n";
      $output .= statistics_admin_accesslog_table(2, $node->nid);
      break;
    case "host":
      $output = "<h3>". t("Recent access logs for '%hostname'", array("%hostname" => $value)) ."</h3>\n";
      $output .= statistics_admin_accesslog_table(3, $value);
      break;
    default:
      $output = "<h3>". t("Recent access logs") ."</h3>\n";
      $output .= statistics_admin_accesslog_table(0, 0);
  }

  return $output;
}


/* Displays the block configuration administration form */
function statistics_config_topnodes_block($edit) {

  $form = form_textfield(t("Block name"), "statistics_block_top_title", $edit["statistics_block_top_title"], 20, 40, t("This module generates a block with top nodes.  You may assign a name for this block."));

  $form .= "<hr />";

  $form .= form_textfield(t("Today's top nodes title"), "statistics_block_top_day_head", $edit["statistics_block_top_day_head"], 20, 40, t("Specify a name for the \"day's top\" section of the block generated by this module.  HTML tags permitted."));
  $form .= form_select(t("Number of day's top views to display"), "statistics_block_top_day_num", $edit["statistics_block_top_day_num"], array("0" => t("Disabled"), "1" => "1", "2" => "2", "3" => "3", "4" => "4", "5" => "5", "6" => "6", "7" => "7", "8" => "8", "9" => "9", "10" => "10", "15" => "15", "20" => "20", "25" => "25", "30" => "30", "40" => "40"), t("Set how many \"today's top\" nodes to display on the block generated by this module."));

  $form .= "<hr />";

  $form .= form_textfield(t("All time top nodes title"), "statistics_block_top_all_head", $edit["statistics_block_top_all_head"], 20, 40, t("Specify a name for the \"all time top\" section of the block generated by this module.  HTML tags permitted."));
  $form .= form_select(t("Number of all time views to display"), "statistics_block_top_all_num", $edit["statistics_block_top_all_num"], array("0" => t("Disabled"), "1" => "1", "2" => "2", "3" => "3", "4" => "4", "5" => "5", "6" => "6", "7" => "7", "8" => "8", "9" => "9", "10" => "10", "15" => "15", "20" => "20", "25" => "25", "30" => "30", "40" => "40"), t("Set how many \"all time top\" nodes to display on the block generated by this module."));

  $form .= "<hr />";

  $form .= form_textfield(t("Most recent views heading"), "statistics_block_top_last_head", $edit["statistics_block_top_last_head"], 20, 40, t("Specify a name for the \"last views\" section of the block generated by this module.  HTML tags permitted."));
  $form .= form_select(t("Number of most recent views to display"), "statistics_block_top_last_num", $edit["statistics_block_top_last_num"], array("0" => t("Disabled"), "1" => "1", "2" => "2", "3" => "3", "4" => "4", "5" => "5", "6" => "6", "7" => "7", "8" => "8", "9" => "9", "10" => "10", "15" => "15", "20" => "20", "25" => "25", "30" => "30", "40" => "40"), t("Set how many \"last viewed\" nodes to display on the block generated by this module."));

  $form .= "<hr />";

  $form .= form_submit("Submit \"top nodes\" block changes");

  return form($form);
}


/* Displays the block configuration administration form */
function statistics_config_online_block($edit) {

  $form = form_textfield(t("Block name"), "statistics_block_online_title", $edit["statistics_block_online_title"], 20, 40, t("This module generates a block displaying how many users/guests are online.  You may assign a name for this block."));
  $form .= form_textfield(t("Sub-block name"), "statistics_block_online_subtitle", $edit["statistics_block_online_subtitle"], 20, 40, t("This module generates a sub-block listing the names of currently online users.  You may assign a name for this block."));

  $period = array(30 => format_interval(30), 60 => format_interval(60), 120 => format_interval(120), 180 => format_interval(180), 300 => format_interval(300), 600 => format_interval(600), 900 => format_interval(900), 1800 => format_interval(1800), 2700 => format_interval(2700), 3600 => format_interval(3600), 5400 => format_interval(5400), 7200 => format_interval(7200), 10800 => format_interval(10800), 21600 => format_interval(21600), 43200 => format_interval(43200), 86400 => format_interval(86400));
  $form .= form_select(t("Activity threshold"), "statistics_block_online_time", $edit["statistics_block_online_time"], $period, "How long ago a user (or guest) must have been active to be considered online.");
  $form .= form_select(t("Maximum characters of user's name to display"), "statistics_block_online_max_len", $edit["statistics_block_online_max_len"], array("1" => "1", "5" => "5", "10" => "10", "15" => "15", "20" => "20", "25" => "25", "30" => "30", "35" => "35", "40" => "40", "45" => "45", "50" => "50", "55" => "55", "60" => "60"), t("What is the maximum characters of a user's name to to display in the sub-block."));
  $form .= form_select(t("How many online users to list"), "statistics_block_online_max_cnt", $edit["statistics_block_online_max_cnt"], array("0" => "0", "1" => "1", "2" => "2", "3" => "3", "4" => "4", "5" => "5", "6" => "6", "7" => "7", "8" => "8", "9" => "9", "10" => "10", "15" => "15", "20" => "20", "50" => "50", "100" => "100"), t("How many online user's names to display in the sub-block."));

  $form .= form_submit("Submit \"who's online\" block changes");

  return form($form);
}


/* Displays the user page configuration administration form */
function statistics_admin_userpage_config($edit) {

  $form = form_textfield(t("Name for link to user page"), "statistics_userpage_link", $edit["statistics_userpage_link"], 20, 40, t("This node generates a user page with top nodes.  If you wish a link added automatically, specify a name."));
  $form .= "<hr />";

  $form .= form_textfield(t("Today's top nodes title"), "statistics_userpage_day_head", $edit["statistics_userpage_day_head"], 20, 40, t("Specify a name for the \"day's top\" section of the user page generated by this module."));
  $form .= form_select(t("Number of nodes to display for \"day's top\""), "statistics_userpage_day_cnt", $edit["statistics_userpage_day_cnt"], array("0" => t("Disabled"), "1" => "1", "2" => "2", "3" => "3", "4" => "4", "5" => "5", "6" => "6", "7" => "7", "8" => "8", "9" => "9", "10" => "10", "15" => "15", "20" => "20", "25" => "25"), t("Set how many \"day's top\" nodes to display on the user page generated by this module."));
  $form .= "<hr />";

  $form .= form_textfield(t("All time top nodes title"), "statistics_userpage_all_head", $edit["statistics_userpage_all_head"], 20, 40, "Specify a name for the \"all time top\" section of the user page generated by this module.");
  $form .= form_select(t("Number of nodes to display for \"all time\""), "statistics_userpage_all_cnt", $edit["statistics_userpage_all_cnt"], array("0" => t("Disabled"), "1" => "1", "2" => "2", "3" => "3", "4" => "4", "5" => "5", "6" => "6", "7" => "7", "8" => "8", "9" => "9", "10" => "10", "15" => "15", "20" => "20", "25" => "25"), t("Set how many \"all time top\" nodes to display on the user page generated by this module."));
  $form .= "<hr />";

  $form .= form_textfield(t("Last viewed nodes title"), "statistics_userpage_last_head", $edit["statistics_userpage_last_head"], 20, 40, "Specify a name for the \"last viewed\" section of the user page generated by this module.");
  $form .= form_select(t("Number of nodes to display for \"last views\""), "statistics_userpage_last_cnt", $edit["statistics_userpage_last_cnt"], array("0" => t("Disabled"), "1" => "1", "2" => "2", "3" => "3", "4" => "4", "5" => "5", "6" => "6", "7" => "7", "8" => "8", "9" => "9", "10" => "10", "15" => "15", "20" => "20", "25" => "25"), t("Set how many \"last viewed\" nodes to display on the user page generated by this module."));
  $form .= "<hr />";

  $form .= form_submit("Submit \"top nodes\" page changes");

  return form($form);
}


/* Adds configure option to the main configure site admin page */
function statistics_settings() {
  /* access log options */
  $output = form_select(t("Enable access log"), "statistics_enable_access_log", variable_get("statistics_enable_access_log", 0), array("1" => t("Enabled"), "0" => t("Disabled")), t("Log each page access.  Required for referrer statistics."));
  $period = array(3600 => format_interval(3600), 10800 => format_interval(10800), 21600 => format_interval(21600), 32400 => format_interval(32400), 43200 => format_interval(43200), 86400 => format_interval(86400), 172800 => format_interval(172800), 259200 => format_interval(259200), 604800 => format_interval(604800), 1209600 => format_interval(1209600), 2419200 => format_interval(2419200), 4838400 => format_interval(4838400), 9676800 => format_interval(9676800));
  $output .= form_select(t("Discard access logs older than"), "statistics_flush_accesslog_timer", variable_get("statistics_flush_accesslog_timer", 259200), $period, t("Older access log entries (including referrer statistics) will be automatically discarded.  Requires crontab."));

  $output .= form_select(t("Enable node view counters"), "statistics_enable_node_counter", variable_get("statistics_enable_node_counter", 0), array("1" => t("Enabled"), "0" => t("Disabled")), t("Increment node view counter each time a node is viewed."));
  $output .= form_select(t("Display node view counters"), "statistics_display_counter", variable_get("statistics_display_counter", ""), array("1" => t("Enabled"), "0" => t("Disabled")), t("Display how many times each node has been viewed.  User must have the 'access statistics' permissions."));

  return $output;
}


/* Saves the values entered in the "blockconfig" administration form */
function statistics_save_topnodes_block($edit) {
  variable_set("statistics_block_top_title", $edit["statistics_block_top_title"]);
  variable_set("statistics_block_top_day_head", $edit["statistics_block_top_day_head"]);
  variable_set("statistics_block_top_day_num", $edit["statistics_block_top_day_num"]);
  variable_set("statistics_block_top_all_head", $edit["statistics_block_top_all_head"]);
  variable_set("statistics_block_top_all_num", $edit["statistics_block_top_all_num"]);
  variable_set("statistics_block_top_last_head", $edit["statistics_block_top_last_head"]);
  variable_set("statistics_block_top_last_num", $edit["statistics_block_top_last_num"]);
}


/* Saves the values entered in the "blockconfig" administration form */
function statistics_save_online_block($edit) {
  variable_set("statistics_block_online_title", $edit["statistics_block_online_title"]);
  variable_set("statistics_block_online_subtitle", $edit["statistics_block_online_subtitle"]);
  variable_set("statistics_block_online_time", $edit["statistics_block_online_time"]);
  variable_set("statistics_block_online_max_len", $edit["statistics_block_online_max_len"]);
  variable_set("statistics_block_online_max_cnt", $edit["statistics_block_online_max_cnt"]);
}


/* Saves the values entered in the "userpage" administration form */
function statistics_save_userconfig($edit) {
  variable_set("statistics_userpage_link", $edit["statistics_userpage_link"]);
  variable_set("statistics_userpage_day_head", $edit["statistics_userpage_day_head"]);
  variable_set("statistics_userpage_day_cnt", $edit["statistics_userpage_day_cnt"]);
  variable_set("statistics_userpage_all_head", $edit["statistics_userpage_all_head"]);
  variable_set("statistics_userpage_all_cnt", $edit["statistics_userpage_all_cnt"]);
  variable_set("statistics_userpage_last_head", $edit["statistics_userpage_last_head"]);
  variable_set("statistics_userpage_last_cnt", $edit["statistics_userpage_last_cnt"]);
}


/* Saves the values entered in the "config statistics" administration form */
function statistics_save_statistics($edit) {
  variable_set("statistics_display_counter", $edit["statistics_display_counter"]);
}


/* cron hook, performs automatic functions */
function statistics_cron() {
  $statistics_timestamp = variable_get("statistics_day_timestamp", "");

  if ((time() - $statistics_timestamp) >= 86400) {
    /* reset day counts */
    db_query("UPDATE statistics SET daycount='0'");
    variable_set("statistics_day_timestamp", time());
  }

  /* clean expired access logs */
  db_query("DELETE FROM accesslog WHERE ". time() ." - timestamp > ". variable_get("statistics_flush_accesslog_timer", 259200));

  $throttle = variable_get("statistics_throttle_level", 0);
  /* check if throttle is currently on and if it's time to drop level */
  if (($throttle) && ((time() - variable_get("statistics_throttle_cron_timer", 10800)) > variable_get("statistics_throttle_cron_timestamp", 0))) {
    /* If throttle is on, back off one notch to test server load */
    variable_set("statistics_throttle_level", $throttle - 1);
    variable_set("statistics_throttle_cron_timestamp", time());
    watchdog("warning", t("cron: decreasing throttle to level '%level' to test server load.", array("%level" => ($throttle - 1))));
  }
}


/* Displays the "Top nodes" block */
function statistics_display_topnodes_block() {

  $content = array();

  $daytop = variable_get("statistics_block_top_day_num", "");
  if ($daytop) {
    $content[] = node_title_list(statistics_title_list("daycount", $daytop), variable_get("statistics_block_top_day_head", ""));
  }

  $alltimetop = variable_get("statistics_block_top_all_num", "");
  if ($alltimetop) {
    $content[] = node_title_list(statistics_title_list("totalcount", $alltimetop), variable_get("statistics_block_top_all_head", ""));
  }

  $lasttop = variable_get("statistics_block_top_last_num", "");
  if ($lasttop) {
    $content[] = node_title_list(statistics_title_list("timestamp", $lasttop), variable_get("statistics_block_top_last_head", ""));
  }

  $output = implode($content, "<br />");

  return $output;
}


/* This displays the "Who's online" block */
function statistics_display_online_block() {
  global $id, $recent_activity;

  $throttle = throttle_status();
  $multiplier = variable_get("statistics_throttle_multiplier", 60);

  /* don't do any database lookups if on maximum throttle */
  if ($throttle < 5) {
    /* count users with activity in the past defined period */
    $time_period = variable_get("statistics_block_online_time", 2700);

    /*
    ** This call gathers all the info we need on users/guests in a single
    ** database call, thus is quite efficient.
    */
    $result = db_query("SELECT COUNT(DISTINCT hostname) AS count, uid, MAX(timestamp) AS max_timestamp FROM accesslog WHERE timestamp >= %d GROUP BY uid ORDER BY max_timestamp DESC", (time() - $time_period));

    $users = $guests = 0;
    /* Count number of users & guests currently online based on db query */
    while ($users_online = db_fetch_array($result)) {
      if ($users_online["uid"]) {
        /* Has uid, so is a registered user */
        $user_list[$users] = $users_online[uid];
        $users++;
      }
      else {
        /*
        ** There's only going to be one return with a uid of 0, and that's
        ** the guest(s). Hence, the count of this field is the total number
        ** of guests currently online.
        */
        $guests = $users_online["count"];
      }
    }

    /* format the output with proper grammar */
    $output .= t("There %verb currently %members and %visitors online.", array("%verb" => (($users == 1) && ($guests == 1) ? "is" : "are"), "%members" => format_plural($users, "1 user", "%count users"), "%visitors" => format_plural($guests, "1 guest", "%count guests")));

    if (user_access("access userlist") && $users) {
      /* Display a list of currently online users */
      $max_users = variable_get("statistics_block_online_max_cnt", 10);
      $max_name_len = variable_get("statistics_block_online_max_len", 15);
      $uid = reset($user_list);
      while (($uid) && ($max_users)) {
        $user = user_load(array("uid" => $uid));
        /* When displaying name, be sure it's not more than defined max length */
        $items[] = l((strlen($user->name) > $max_name_len ? substr($user->name, 0, $max_name_len) ."..." : $user->name), "user/view/$user->uid");
        $uid = next($user_list);
        /*
        ** When $max_users reaches zero, we break out even if there are
        ** more online (as defined by the admin)
        */
        $max_users--;
      }

      $output .= "<br /><br />";
      $output .= theme("theme_item_list", $items, variable_get("statistics_block_online_subtitle", "Online users:"));
    }
  }
  else {
    /* default message when fully throttled */
    $output = t("This site is currently sustaining more than %total page views a minute.", array("%total" => ($throttle * $multiplier)));
  }
  return $output;
}


/* Display linked title based on field name */
function statistics_title_list($dbfield, $dbrows) {
  /* valid dbfields: totalcount, daycount, timestamp */
  return db_query_range("SELECT s.nid, n.title, u.uid, u.name FROM statistics s LEFT JOIN node n ON s.nid = n.nid LEFT JOIN users u ON n.uid = u.uid WHERE %s <> '0' AND n.status = 1 ORDER BY %s DESC", "s.". $dbfield, "s.". $dbfield, 0, $dbrows);
}


/* Function to retreive current page counter value. */
function statistics_get($nid) {

  if ($nid > 0) {
    /* retrieves an array with both totalcount and daycount */
    $statistics = db_fetch_array(db_query("SELECT totalcount, daycount, timestamp FROM statistics WHERE nid = %d", $nid));
  }

  return $statistics;

}


/* Block hook */
function statistics_block($op = "list", $delta = 0) {
  if ($op == "list") {
    $blocks[0]["info"] = t("Top nodes");
    $blocks[1]["info"] = t("Who's online");
    return $blocks;
  }
  else {
    switch($delta) {
      case 0:
        $block["subject"] = variable_get("statistics_block_top_title", t("Popular content"));
        $block["content"] = statistics_display_topnodes_block();
        break;

      case 1:
        $block["subject"] = variable_get("statistics_block_online_title", t("Who's online"));
        $block["content"] = statistics_display_online_block();
        break;
    }

    return $block;
  }
}


function statistics_page() {


  if (user_access("access content")) {
    theme("header");
    statistics_page_user();
    theme("footer");
  }
  else {
    theme("header");
    theme("box", t("Access denied"), message_access());
    theme("footer");
  }
}


/* Generates the statistics user page */
function statistics_page_user($uid = 0, $date = 0, $all = 0) {

  if (!$date) {
    $date = time();
  }

  if ($displaycount = variable_get("statistics_userpage_day_cnt", 10)) {
    $output = "<table border=\"0\" cellpadding=\"4\" cellspacing=\"4\" width=\"100%\">";
    $output .= statistics_summary("daycount", $displaycount);
    $output .= "</table>";

    theme("box", t(variable_get("statistics_userpage_day_head", "")), $output, "main");
  }


  if ($displaycount = variable_get("statistics_userpage_all_cnt", "10")) {
    $output = "<table border=\"0\" cellpadding=\"4\" cellspacing=\"4\" width=\100%\">";
    $output .= statistics_summary("totalcount", $displaycount);
    $output .= "</table>";

    theme("box", t(variable_get("statistics_userpage_all_head", "")), $output, "main");
  }

  if ($displaycount = variable_get("statistics_userpage_last_cnt", "10")) {
    $output = "<table border=\"0\" cellpadding=\"4\" cellspacing=\"4\" width=\100%\">";
    $output .= statistics_summary("timestamp", $displaycount);
    $output .= "</table>";

    theme("box", t(variable_get("statistics_userpage_last_head", "")), $output, "main");
  }
}


function statistics_summary($dbfield, $dbrows) {
  /* valid dbfields: totalcount, daycount, timestamp */

  $output = "";
  $result = db_query_range("SELECT n.nid, n.title FROM statistics s LEFT JOIN node n ON s.nid = n.nid ORDER BY %s DESC", $dbfield, 0, $dbrows);
  while ($nid = db_fetch_array($result)) {
    $content = node_load(array("nid" => $nid["nid"]));
    $links = link_node($content, 1);

    $output .= "<tr><td><b>". l($nid["title"], "node/view/". $nid["nid"], array("title" => t("View this posting."))) ."</b></td><td align=\"right\"><small>". t("Submitted by %a on %b", array("%a" => format_name($content), "%b" => format_date($content->created, "large"))) ."</small></td></tr>";
    $output .= "<tr><td colspan=\"2\"><div style=\"margin-left: 20px;\">". check_output($content->teaser) ."</div></td></tr>";
    $output .= "<tr><td align=\"right\" colspan=\"2\">[ ". theme("links", $links) ." ]<br /><br /></td></tr>";
  }

  return $output;
}

function statistics_nodeapi(&$node, $op, $arg = 0) {
  switch ($op) {
    case "delete":
    // clean up statistics table when node is deleted
    db_query("DELETE FROM statistics WHERE nid = %d", $node->nid);
  }
}

/* internal throttle function - do not call from other modules */
function throttle_update($recent_activity) {
  $throttle = throttle_status();
  $multiplier = variable_get("statistics_throttle_multiplier", 60);

  for ($i = 0; $i <= 5; $i++) {
    if (($i * $multiplier) <= $recent_activity) {
      $throttle_new = $i;
    }
  }

  if ($throttle_new != $throttle) {
    /*
    ** reduce throttle if new throttle would be 3+ less than current throttle,
    ** (all other throttle reduction done by _cron hook), increase throttle if
    **  new throttle would be greater than current throttle.
    */
    if (($throttle_new < ($throttle - 2)) || ($throttle_new > $throttle)) {
      /* update throttle level */
      variable_set("statistics_throttle_level", $throttle_new);
      /*
      ** update the global timestamp, preventing cron.php from jumping in
      ** too quickly, allowing for user defined period to first pass.
      */
      variable_set("statistics_throttle_cron_timestamp", time());
      /* log the change */
      if ($throttle_new < $throttle) {
        watchdog("message", "message: '". $recent_activity ."' hits in past minute; throttle decreased to level ". $throttle_new);
      }
      else {
        watchdog("warning", "warning: '". $recent_activity ."' hits in past minute; throttle increased to level ". $throttle_new);
      }
    }
  }
}

/***********************
 *  Auto-throttle API  *
 ***********************/

/* external throttle functions - call this from other modules, themes, etc */
function throttle_status() {
  static $throttle;

  $throttle = variable_get("statistics_throttle_level", 0);

  return $throttle;
}

?>