File: graphgooglechartapi.pm

package info (click to toggle)
awstats 8.0-3
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 13,244 kB
  • sloc: perl: 40,711; xml: 1,785; javascript: 1,493; java: 359; sh: 152; makefile: 40; php: 29
file content (659 lines) | stat: -rw-r--r-- 19,354 bytes parent folder | download | duplicates (4)
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
#!/usr/bin/perl
#-----------------------------------------------------------------------------
# GraphGoogleChartApi AWStats plugin
# Allow AWStats to replace bar graphs with a Google Graph image
#-----------------------------------------------------------------------------
# Perl Required Modules: None
#-----------------------------------------------------------------------------
# 
# Changelog
#
# 1.0 - Initial release by george@dynapres.nl
# 1.1 - Changed scaling: making it independent of chart series
# 1.2 - Added pie charts, visualization hook, map and axis labels by Chris Larsen

# <-----
# ENTER HERE THE USE COMMAND FOR ALL REQUIRED PERL MODULES
# ----->
#use strict;
no strict "refs";


#-----------------------------------------------------------------------------
# PLUGIN VARIABLES
#-----------------------------------------------------------------------------
# <-----
# ENTER HERE THE MINIMUM AWSTATS VERSION REQUIRED BY YOUR PLUGIN
# AND THE NAME OF ALL FUNCTIONS THE PLUGIN MANAGE.
my $PluginNeedAWStatsVersion = "7.0";
my $PluginHooksFunctions = "Init ShowGraph AddHTMLHeader";
my $PluginName = "graphgooglechartapi";
my $ChartProtocol = "https://";
my $ChartURI = "chart.googleapis.com/chart?";	# Don't put the HTTP part here!
my $ChartIndex = 0;
my $title;
my $type;
my $imagewidth = 640;			# maximum image width. 
my $imageratio = .25;			# Height is defaulted to 25% of width
my $pieratio = .20;				# Height for pie charts should be different
my $mapratio = .62;				# Height for maps is different
my $labellength;
my @blocklabel = ();
my @vallabel = ();
my @valcolor = ();
my @valmax = ();
my @valtotal = ();
my @valaverage = ();
my @valdata = ();
# ----->

# <-----
# IF YOUR PLUGIN NEED GLOBAL VARIABLES, THEY MUST BE DECLARED HERE.
use vars qw/
$DirClasses
$URLIndex
/;
# ----->

#-----------------------------------------------------------------------------
# PLUGIN FUNCTION: Init_pluginname
#-----------------------------------------------------------------------------
sub Init_graphgooglechartapi {
	my $InitParams = shift;
	my $checkversion = &Check_Plugin_Version($PluginNeedAWStatsVersion);

	# <-----
	# ENTER HERE CODE TO DO INIT PLUGIN ACTIONS
	$DirClasses = $InitParams;
	# ----->

	$title = "";
	$type = "";
	$labellength=2;
	$ChartIndex = -1;
	
	return ($checkversion?$checkversion:"$PluginHooksFunctions");
}

#-------------------------------------------------------
# PLUGIN FUNCTION: ShowGraph_pluginname
# UNIQUE: YES (Only one plugin using this function can be loaded)
# Prints the proper chart depending on the $type provided
# Parameters:	$title $type $imagewidth \@blocklabel,\@vallabel,\@valcolor,\@valmax,\@valtotal
# Input:        None
# Output:       HTML code for awgraphapplet insertion
# Return:		0 OK, 1 Error
#-------------------------------------------------------
sub ShowGraph_graphgooglechartapi() {
	$title = shift;
	$type = shift;
	$imagewidth = shift || 640;
	$blocklabel = shift;
	$vallabel = shift;
	$valcolor = shift;
	$valmax = shift;
	$valtotal = shift;
	$valaverage = shift;
	$valdata = shift;
	
	# check width
	if ($imagewidth < 1){$imagewidth=640;}

	if ($type eq 'month') {
		$labellength=4;
		print Get_Img_Tag(Graph_Monthly(), $title);
	}
	elsif ($type eq 'daysofmonth') {
		$labellength=2;
		print Get_Img_Tag(Graph_Daily(), $title);		
	}
	elsif ($type eq 'daysofweek') {
		$labellength=3;
		print Get_Img_Tag(Graph_Weekly(), $title);		
	}
	elsif ($type eq 'hours') {
		$labellength=2;
		print Get_Img_Tag(Graph_Hourly(), $title);		
	}
	elsif ($type eq 'cluster'){
		$labellength=32;
		print Get_Img_Tag(Graph_Pie(), $title);		
	}
	elsif ($type eq 'filetypes'){
		$labellength=4;
		print Get_Img_Tag(Graph_Pie(), $title);
	}
	elsif ($type eq 'httpstatus'){
		$labellength=4;
		print Get_Img_Tag(Graph_Pie(), $title);
	}
	elsif ($type eq 'browsers'){
		$labellength=32;
		print Get_Img_Tag(Graph_Pie(), $title);
	}
	elsif ($type eq 'downloads'){
		$labellength=32;
		print Get_Img_Tag(Graph_Pie(), $title);
	}
	elsif ($type eq 'pages'){
		$labellength=32;
		print Get_Img_Tag(Graph_Pie(), $title);
	}
	elsif ($type eq 'oss'){
		$labellength=32;
		print Get_Img_Tag(Graph_Pie(), $title);
	}
	elsif ($type eq 'hosts'){
		$labellength=32;
		print Get_Img_Tag(Graph_Pie(), $title);
	}
	elsif ($type eq 'countries_map'){
		print Chart_Map();
	}
	else {
		debug("Unknown type parameter in ShowGraph_graphgooglechartapi function: $title",1);
		#error("Unknown type parameter in ShowGraph_graphgooglechartapi function");
	}

	return 0;
}

#-------------------------------------------------------
# PLUGIN FUNCTION: AddHTMLHeader_pluginname
# UNIQUE: NO
# Prints javascript includes for Google Visualizations
# Parameters:	None
# Input:        None
# Output:       HTML code for Google Visualizations
# Return:		0 OK, 1 Error
#-------------------------------------------------------
sub AddHTMLHeader_graphgooglechartapi(){
	print "<script type='text/javascript' src='https://www.google.com/jsapi'></script>\n";
}

#-------------------------------------------------------
# PLUGIN FUNCTION: Graph_Monthly
# Prints the image code to display a column chart of monthly usage
# Parameters:	None
# Input:        None
# Output:       HTML code to print a chart
# Return:		0 OK, 1 Error
#-------------------------------------------------------
sub Graph_Monthly(){
	my $chxt = "chxt=";
	my $chxl = "chxl=";
	my $chxs = "chxs=";
	my $chco = "chco=";
	my $chg = "chg=";
	my $chs = "chs=";
	my $cht = "cht=bvg";
	my $chd = "chd=t:";
	my $cba = "chbh=a";				# shows the whole month
	my $graphwidth = $imagewidth;
	my $graphheight = int ($imagewidth * $imageratio);
	
	# round max values
	foreach my $i(0..(scalar @$valmax)){
		@$valmax[$i] = Round_Up(@$valmax[$i]);
	}
	
	# setup axis
	$chxt .= "x,y,y,r"; # add an x for years
	
	# get the month labels
	$chxl .= "0:|";
	$chxl .= Get_Labels();
	# get the hits/pages max
	$chxl .= "1:|0|".Get_Suffixed((@$valmax[0]/2),0)."|".Get_Suffixed(@$valmax[0],0)."|";
	# get the visitors/pages max
	$chxl .= "2:|0|".Get_Suffixed((@$valmax[2]/2),0)."|".Get_Suffixed(@$valmax[2],0)."|";
	# get bytes
	$chxl .= "3:|0|".Get_Suffixed((@$valmax[4]/2),1)."|".Get_Suffixed(@$valmax[4],1);
	# TODO add the year at the start and end
	
	# set the axis colors
	$chxs .= "1,".@$valcolor[0]."|2,".@$valcolor[2]."|3,".@$valcolor[4];
	
	# dump colors
	foreach my $i(0..(scalar @$valcolor)){
		$chco .= @$valcolor[$i];
		if ($i < (scalar @$valcolor)-1){ $chco .= ",";}
	}
	
	# grid lines
	$chg .= "0,50";
	
	# size
	$chs .= $graphwidth."x".$graphheight;
	
	# finally get the data
	$chd .= Get_Column_Data();
	
	# string and dump
	return "$cht&$chxl&$chxt&$chxs&$chco&$chg&$chs&$chd&$cba";
}

#-------------------------------------------------------
# PLUGIN FUNCTION: Graph_Daily
# Prints the image code to display a column chart of daily usage
# Parameters:	None
# Input:        None
# Output:       HTML code to print a chart
# Return:		0 OK, 1 Error
#-------------------------------------------------------
sub Graph_Daily(){
	my $chxt = "chxt=";
	my $chxl = "chxl=";
	my $chxs = "chxs=";
	my $chco = "chco=";
	my $chg = "chg=";
	my $chs = "chs=";
	my $cht = "cht=bvg";
	my $chd = "chd=t:";
	my $cba = "chbh=a";				# shows the whole month
	my $graphwidth = $imagewidth;
	my $graphheight = int ($imagewidth * $imageratio);
	
	# round max values
	foreach my $i(0..(scalar @$valmax)){
		@$valmax[$i] = Round_Up(@$valmax[$i]);
	}
	
	# setup axis
	$chxt .= "x,y,y,r"; # add an x for years
	
	# setup axis labels
	# get day labels
	$chxl .= "0:|";
	$chxl .= Get_Labels();
	# get the hits/pages max
	$chxl .= "1:|0|".Get_Suffixed((@$valmax[0]/2),0)."|".Get_Suffixed(@$valmax[0],0)."|";
	# get the visitors/pages max
	$chxl .= "2:|0|".Get_Suffixed((@$valmax[1]/2),0)."|".Get_Suffixed(@$valmax[1],0)."|";
	# get bytes
	$chxl .= "3:|0|".Get_Suffixed((@$valmax[3]/2),1)."|".Get_Suffixed(@$valmax[3],1);
	# TODO month name
	
	# set the axis colors
	$chxs .= "1,".@$valcolor[0]."|2,".@$valcolor[1]."|3,".@$valcolor[3];
	
	# dump colors
	foreach my $i(0..(scalar @$valcolor)){
		$chco .= @$valcolor[$i];
		if ($i < (scalar @$valcolor)-1){ $chco .= ",";}
	}
	
	# grid lines
	$chg .= "0,50";
	
	# size
	$chs .= $graphwidth."x".$graphheight;
	
	# finally get the data
	$chd .= Get_Column_Data();
	
	# string and dump
	return "$cht&$chxl&$chxt&$chxs&$chco&$chg&$chs&$chd&$cba";
}

#-------------------------------------------------------
# PLUGIN FUNCTION: Graph_Weekly
# Prints the image code to display a column chart of weekly usage
# Parameters:	None
# Input:        None
# Output:       HTML code to print a chart
# Return:		0 OK, 1 Error
#-------------------------------------------------------
sub Graph_Weekly(){
	my $chxt = "chxt=";
	my $chxl = "chxl=";
	my $chxs = "chxs=";
	my $chco = "chco=";
	my $chg = "chg=";
	my $chs = "chs=";
	my $cht = "cht=bvg";
	my $chd = "chd=t:";
	my $cba = "chbh=a";				# shows the whole month
	my $graphwidth = int ($imagewidth * .75);   # to maintain old look/ratio, reduce width of the weekly
	my $graphheight = int ($imagewidth * $imageratio);
	
	# round max values
	foreach my $i(0..(scalar @$valmax)){
		@$valmax[$i] = Round_Up(@$valmax[$i]);
	}
	
	# setup axis
	$chxt .= "x,y,y,r"; # add an x for years
	
	# setup axis labels
	# get the day labels
	$chxl .= "0:|";
	$chxl .= Get_Labels();
	# get the hits/pages max
	$chxl .= "1:|0|".Get_Suffixed((@$valmax[0]/2),0)."|".Get_Suffixed(@$valmax[0],0)."|";
	# get the visitors/pages max
	$chxl .= "2:|0|".Get_Suffixed((@$valmax[1]/2),0)."|".Get_Suffixed(@$valmax[1],0)."|";
	# get bytes
	$chxl .= "3:|0|".Get_Suffixed((@$valmax[2]/2),1)."|".Get_Suffixed(@$valmax[2],1);
	
	# set the axis colors
	$chxs .= "1,".@$valcolor[0]."|2,".@$valcolor[1]."|3,".@$valcolor[2];
	
	# dump colors
	foreach my $i(0..(scalar @$valcolor)){
		$chco .= @$valcolor[$i];
		if ($i < (scalar @$valcolor)-1){ $chco .= ",";}
	}
	
	# grid lines
	$chg .= "0,50";
	
	# size
	$chs .= $graphwidth."x".$graphheight;
	
	# finally get the data
	$chd .= Get_Column_Data();
	
	# string and dump
	return "$cht&$chxl&$chxt&$chxs&$chco&$chg&$chs&$chd&$cba";
}
	
#-------------------------------------------------------
# PLUGIN FUNCTION: Graph_Hourly
# Prints the image code to display a column chart of hourly usage
# Parameters:	None
# Input:        None
# Output:       HTML code to print a chart
# Return:		0 OK, 1 Error
#-------------------------------------------------------
sub Graph_Hourly(){
	my $chxt = "chxt=";
	my $chxl = "chxl=";
	my $chxs = "chxs=";
	my $chco = "chco=";
	my $chg = "chg=";
	my $chs = "chs=";
	my $cht = "cht=bvg";
	my $chd = "chd=t:";
	my $cba = "chbh=a";				# shows the whole month
	my $graphwidth = $imagewidth;
	my $graphheight = int ($imagewidth * $imageratio);
	
	# round max values
	foreach my $i(0..(scalar @$valmax - 1)){
		@$valmax[$i] = Round_Up(@$valmax[$i]);
	}
	
	# setup axis
	$chxt .= "x,y,y,r"; # add an x for years
	
	# setup axis labels
	$chxl .= "0:|";
	$chxl .= Get_Labels();
	# get the hits/pages max
	$chxl .= "1:|0|".Get_Suffixed((@$valmax[0]/2),0)."|".Get_Suffixed(@$valmax[0],0)."|";
	# get the visitors/pages max
	$chxl .= "2:|0|".Get_Suffixed((@$valmax[1]/2),0)."|".Get_Suffixed(@$valmax[1],0)."|";
	# get bytes
	$chxl .= "3:|0|".Get_Suffixed((@$valmax[2]/2),1)."|".Get_Suffixed(@$valmax[2],1);
	# TODO years
	
	# set the axis colors
	$chxs .= "1,".@$valcolor[0]."|2,".@$valcolor[1]."|3,".@$valcolor[2];
	
	# dump colors
	foreach my $i(0..(scalar @$valcolor)){
		$chco .= @$valcolor[$i];
		if ($i < (scalar @$valcolor)-1){ $chco .= ",";}
	}
	
	# grid lines
	$chg .= "0,50";
	
	# size
	$chs .= $graphwidth."x".$graphheight;
	
	# finally get the data
	$chd .= Get_Column_Data();
	
	# string and dump
	return "$cht&$chxl&$chxt&$chxs&$chco&$chg&$chs&$chd&$cba";
}

#-------------------------------------------------------
# PLUGIN FUNCTION: Graph_Pie
# Prints the image code to display a pie chart of the provided data
# Parameters:	None
# Input:        None
# Output:       HTML code to print a chart
# Return:		0 OK, 1 Error
#-------------------------------------------------------
sub Graph_Pie(){
	my $chl = "chl=";
	my $chs = "chs=";
	my $chco = "chco=";
	my $cht = "cht=p3";
	my $chd = "chd=t:";
	my $graphwidth = $imagewidth;
	my $graphheight = int ($imagewidth * $pieratio);
	
	# get labels
	$chl .= Get_Labels();
	
	# get data, just read off the array for however many labels we have
	foreach my $i (0..((scalar @$blocklabel)-1)) {
		$chd .= int(@$valdata[$i]);
		$chd .= ($i < ((scalar @$blocklabel)-1) ? "," : "");
	}
	
	# get color, just the first color passed
	$chco .= @$valcolor[0];
	
	# set size
	$chs .= $graphwidth."x".$graphheight;
	
	return "$cht&$chs&$chco&$chl&$chd";
}

#-------------------------------------------------------
# PLUGIN FUNCTION: Chart_Map
# Prints a Javascript and DIV tag to display a Google Visualization GeoMap
# that uses the Flash plugin to display a map of the world shaded to reflect
# the provided data
# Parameters:	None
# Input:        None
# Output:       Javascript and DIV tag
# Return:		0 OK, 1 Error
#-------------------------------------------------------
sub Chart_Map(){
	my $graphwidth = $imagewidth;
	my $graphheight = int ($imagewidth * $mapratio);
	
	# Assume we've already included the proper headers so just call our script inline
	print "\n<script type='text/javascript'>\n";
   	print "google.load('visualization', '1', {'packages': ['geomap']});\n";
   	print "google.setOnLoadCallback(drawMap);\n";
	print "function drawMap() {\n\tvar data = new google.visualization.DataTable();\n";
	      
	# get the total number of rows
	print "\tdata.addRows(".scalar @$blocklabel.");\n";
	print "\tdata.addColumn('string', 'Country');\n";
	print "\tdata.addColumn('number', 'Hits');\n";
	      
	# loop and dump
    my $i = 0;
    for ($i .. (scalar @$blocklabel - 1)) {
		# fix case of uk
        if (@$blocklabel[$i] eq 'Great Britain') { @$blocklabel[$i] = 'United Kingdom'; }
        if (@$blocklabel[$i] eq 'Russian Federation') { @$blocklabel[$i] = 'Russia'; }
    	print "\tdata.setValue($i, 0, \"".@$blocklabel[$i]."\");\n";
    	print "\tdata.setValue($i, 1, ".@$valdata[$i].");\n";
    	$i++;
    	# Google's Geomap only supports up to 400 entries
    	if ($i >= 400){ last; }
    }
	
	print "\tvar options = {};\n";
	print "\toptions['dataMode'] = 'regions';\n";
	print "\toptions['width'] = $graphwidth;\n";
	print "\toptions['height'] = $graphheight;\n";
	print "\tvar container = document.getElementById('$title');\n";
	print "\tvar geomap = new google.visualization.GeoMap(container);\n";
	print "\tgeomap.draw(data, options);\n";
	print "};\n";			
	print "</script>\n";
	
	# print the div tag that will contain the map
	print "<div id='$title'></div>\n";
	return;
}

#-------------------------------------------------------
# PLUGIN FUNCTION: Get_Column_Data
# Loops through the data array and prints a CHD string to send to a Google
# chart via the API
# Parameters:	None
# Input:        @valcolor, @blocklabel, @valdata, @valmax
# Output:       None
# Return:		A pipe delimited string of data. REQUIRES the "chd=t:" prepended
#-------------------------------------------------------
# Returns a string with the CHD data
sub Get_Column_Data(){
	my $chd = "";
	
	# use the # of colors to determine how many values we have
	$x= scalar @$valcolor;
	for ($serie = 0; $serie <= $x; $serie++) {
		foreach my $j (1.. (scalar @$blocklabel)) {
    			if ($j > 1) { $chd .= ","; }
			$val = @$valdata[($j-1)*$x+$serie];
			# convert our values to a percent of max
			$chd .= (@$valmax[$serie] > 0 ? int(($val / Round_Up(@$valmax[$serie])) * 100) : 0);
		}
		if ($serie < $x) {
			$chd .= "|";
		}
    }
	
	# return
	return $chd;
}

#-------------------------------------------------------
# PLUGIN FUNCTION: Get_Labels
# Returns a CHXL string with labels to send to the Google chart API. Long labels
# are shortened to $labellength
# TODO - better shortening method instead of just lopping off the end of strings
# Parameters:	None
# Input:        @blocklabel, $labellength
# Output:       None
# Return:		A pipe delimited string of labels. REQUIRES the "chxl=" prepended
#-------------------------------------------------------
sub Get_Labels(){
	my $chxl = "";
	foreach my $i (1..(scalar @$blocklabel)) {
		$temp = @$blocklabel[$i-1];
		if (length($temp) > $labellength){
			$temp = (substr($temp,0,$labellength));
		}
		$chxl .= "$temp|";
	}
	$chxl =~ s/&//;
	return $chxl;
}

#-------------------------------------------------------
# PLUGIN FUNCTION: Round_Up
# Rounds a number up to the next most significant digit, i.e. 1234 becomes 2000
# Useful for getting the max values of our graph
# Parameters:	$num
# Input:        None
# Output:       None
# Return:		The rounded number
#-------------------------------------------------------
sub Round_Up(){
	my $num = shift;
	$num = int($num);
	if ($num < 1){ return $num; }
	
	# under 100, just increment and dump
	if ($num < 100){return $num++; }
	
	$i = int(substr($num,0,2))+1;
	
	# pad with 0s
	$l = 2;
	while ($l<(length($num))){
		$i .= "0";
		$l++;
	}
	return $i;
}

#-------------------------------------------------------
# PLUGIN FUNCTION: Get_Suffixed
# Converts a number for axis labels and appends the scientific notation suffix
# or proper size in bytes
# Parameters:	$num
# Input:        @Message array from AWStats
# Output:       None
# Return:		A number with suffix, i.e. 400 MB or 200 K
#-------------------------------------------------------
sub Get_Suffixed(){
	my $num = shift || 0;
	my $isbytes = shift || 0;
	my $float = 0;
	if ( $num >= ( 1 << 30 ) ) {
		$float = (split(/\./, $num / 1000000000))[1];
		if ($float){
			return sprintf( "%.1f", $num / 1000000000 ) . ($isbytes ? " $Message[110]" : " B");
		}else{
			return sprintf( "%.0f", $num / 1000000000 ) . ($isbytes ? " $Message[110]" : " B");
		}
	}
	if ( $num >= ( 1 << 20 ) ) {
		$float = (split(/\./, $num / 1000000))[1];
		if ($float){
			return sprintf( "%.1f", $num / 1000000 ) . ($isbytes ? " $Message[109]" : " M");
		}else{
			return sprintf( "%.0f", $num / 1000000 ) . ($isbytes ? " $Message[109]" : " M");
		}		
	}
	if ( $num >= ( 1 << 10 ) ) {
		$float = (split(/\./, $num / 1000))[1];
		if ($float){
			return sprintf( "%.1f", $num / 1000 ) . ($isbytes ? " $Message[108]" : " K");
		}else{
			return sprintf( "%.0f", $num / 1000 ) . ($isbytes ? " $Message[108]" : " K");
		}
	}
	return int($num);
}

#-------------------------------------------------------
# PLUGIN FUNCTION: Get_Img_Tag
# Builds the full IMG tag to place in HTML that will call the Google Charts API
# Parameters:	$params, $title
# Input:        $ChartProtocol, $ChartURI, $ChartIndex
# Output:       None
# Return:		An HTML IMG tag
#-------------------------------------------------------
sub Get_Img_Tag(){
	my $params = shift || "";
	my $title = shift || "";
	my $tag = "<img src=\"$ChartProtocol";
	# for optimization, we can prepend a number to the host address and google will
	# use different servers to generate our images. This is important if we have multiple
	# images on the same page
	# TODO - debug why chart index isn't working as Google says it should
#	if ($URLIndex < 0){
		$tag .= "$ChartURI";
#	}else{
#		$tag .= "$ChartIndex.$ChartURI";
#	}
	$ChartIndex = ($ChartIndex >= 9 ? 0 : $ChartIndex + 1);
	$tag .= $params;
	$tag .= "\" alt=\"$title\"/>";
}

1;	# Do not remove this line