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 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368
|
<?php
/**
* FusionForge reporting system
*
* Copyright 2003-2004, Tim Perdue/GForge, LLC
*
* This file is part of FusionForge. FusionForge is free software;
* you can redistribute it and/or modify it under the terms of the
* GNU General Public License as published by the Free Software
* Foundation; either version 2 of the Licence, or (at your option)
* any later version.
*
* FusionForge is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with FusionForge; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
require_once $gfcommon.'reporting/Report.class.php';
class ReportSetup extends Report {
function ReportSetup() {
$this->Report();
}
function initialSetup() {
$this->createTables();
if (!$this->initialData()) {
return false;
} else {
return true;
}
}
function createTables() {
//time tracking
//DROP TABLE rep_time_category;
$sql[]="CREATE TABLE rep_time_category (
time_code serial UNIQUE,
category_name text
);";
//$sql[]="DROP TABLE rep_time_tracking;";
$sql1="CREATE TABLE rep_time_tracking (
week int not null,
report_date int not null,
user_id int not null,
project_task_id int not null,
time_code int not null CONSTRAINT reptimetrk_timecode REFERENCES rep_time_category(time_code),
hours float not null);";
$sql[]=$sql1;
// $sql[]="CREATE UNIQUE INDEX reptimetrk_weekusrtskcde ON
// rep_time_tracking (week,user_id,project_task_id,time_code);";
$sql[]="CREATE INDEX reptimetracking_userdate ON
rep_time_tracking (user_id,week);";
$sql[]="INSERT INTO rep_time_category VALUES ('1','Coding');";
$sql[]="INSERT INTO rep_time_category VALUES ('2','Testing');";
$sql[]="INSERT INTO rep_time_category VALUES ('3','Meeting');";
$sql[]="SELECT setval('rep_time_category_time_code_seq',(SELECT max(time_code) FROM rep_time_category));";
//added users
$sql[]="DROP TABLE rep_users_added_daily;";
$sql[]="CREATE TABLE rep_users_added_daily (
day int not null primary key,
added int not null default 0);";
$sql[]="DROP TABLE rep_users_added_weekly";
$sql[]="CREATE TABLE rep_users_added_weekly (
week int not null primary key,
added int not null default 0);";
$sql[]="DROP TABLE rep_users_added_monthly";
$sql[]="CREATE TABLE rep_users_added_monthly (
month int not null primary key,
added int not null default 0);";
//cumulative users
$sql[]="DROP TABLE rep_users_cum_daily";
$sql[]="CREATE TABLE rep_users_cum_daily (
day int not null primary key,
total int not null default 0);";
$sql[]="DROP TABLE rep_users_cum_weekly";
$sql[]="CREATE TABLE rep_users_cum_weekly (
week int not null primary key,
total int not null default 0);";
$sql[]="DROP TABLE rep_users_cum_monthly";
$sql[]="CREATE TABLE rep_users_cum_monthly (
month int not null primary key,
total int not null default 0);";
//added groups
$sql[]="DROP TABLE rep_groups_added_daily;";
$sql[]="CREATE TABLE rep_groups_added_daily (
day int not null primary key,
added int not null default 0);";
$sql[]="DROP TABLE rep_groups_added_weekly";
$sql[]="CREATE TABLE rep_groups_added_weekly (
week int not null primary key,
added int not null default 0);";
$sql[]="DROP TABLE rep_groups_added_monthly";
$sql[]="CREATE TABLE rep_groups_added_monthly (
month int not null primary key,
added int not null default 0);";
//cumulative groups
$sql[]="DROP TABLE rep_groups_cum_daily";
$sql[]="CREATE TABLE rep_groups_cum_daily (
day int not null primary key,
total int not null default 0);";
$sql[]="DROP TABLE rep_groups_cum_weekly";
$sql[]="CREATE TABLE rep_groups_cum_weekly (
week int not null primary key,
total int not null default 0);";
$sql[]="DROP TABLE rep_groups_cum_monthly";
$sql[]="CREATE TABLE rep_groups_cum_monthly (
month int not null primary key,
total int not null default 0);";
//per-user activity
$sql[]="DROP TABLE rep_user_act_daily";
$sql[]="CREATE TABLE rep_user_act_daily (
user_id int not null,
day int not null,
tracker_opened int not null,
tracker_closed int not null,
forum int not null,
docs int not null,
cvs_commits int not null,
tasks_opened int not null,
tasks_closed int not null,
PRIMARY KEY (user_id,day));";
$sql[]="DROP TABLE rep_user_act_weekly";
$sql[]="CREATE TABLE rep_user_act_weekly (
user_id int not null,
week int not null,
tracker_opened int not null,
tracker_closed int not null,
forum int not null,
docs int not null,
cvs_commits int not null,
tasks_opened int not null,
tasks_closed int not null,
PRIMARY KEY (user_id,week));";
$sql[]="DROP TABLE rep_user_act_monthly";
$sql[]="CREATE TABLE rep_user_act_monthly (
user_id int not null,
month int not null,
tracker_opened int not null,
tracker_closed int not null,
forum int not null,
docs int not null,
cvs_commits int not null,
tasks_opened int not null,
tasks_closed int not null,
PRIMARY KEY (user_id,month));";
$sql[]="DROP VIEW rep_user_act_oa_vw";
$sql[]="CREATE VIEW rep_user_act_oa_vw AS
SELECT user_id,
sum(tracker_opened) AS tracker_opened,
sum(tracker_closed) AS tracker_closed,
sum(forum) AS forum,
sum(docs) AS docs,
sum(cvs_commits) AS cvs_commits,
sum(tasks_opened) AS tasks_opened,
sum(tasks_closed) AS tasks_closed
FROM rep_user_act_monthly
GROUP BY user_id;";
//per-project activity
$sql[]="DROP TABLE rep_group_act_daily";
$sql[]="CREATE TABLE rep_group_act_daily (
group_id int not null,
day int not null,
tracker_opened int not null,
tracker_closed int not null,
forum int not null,
docs int not null,
downloads int not null,
cvs_commits int not null,
tasks_opened int not null,
tasks_closed int not null,
PRIMARY KEY (group_id,day));";
$sql[]="DROP INDEX repgroupactdaily_day";
$sql[]="CREATE INDEX repgroupactdaily_day ON rep_group_act_daily(day)";
$sql[]="DROP TABLE rep_group_act_weekly";
$sql[]="CREATE TABLE rep_group_act_weekly (
group_id int not null,
week int not null,
tracker_opened int not null,
tracker_closed int not null,
forum int not null,
docs int not null,
downloads int not null,
cvs_commits int not null,
tasks_opened int not null,
tasks_closed int not null,
PRIMARY KEY (group_id,week));";
$sql[]="DROP INDEX repgroupactweekly_week";
$sql[]="CREATE INDEX repgroupactweekly_week ON rep_group_act_weekly(week)";
$sql[]="DROP TABLE rep_group_act_monthly";
$sql[]="CREATE TABLE rep_group_act_monthly (
group_id int not null,
month int not null,
tracker_opened int not null,
tracker_closed int not null,
forum int not null,
docs int not null,
downloads int not null,
cvs_commits int not null,
tasks_opened int not null,
tasks_closed int not null,
PRIMARY KEY (group_id,month));";
$sql[]="DROP INDEX repgroupactmonthly_month";
$sql[]="CREATE INDEX repgroupactmonthly_month ON rep_group_act_monthly(month)";
$sql[]="DROP VIEW rep_group_act_oa_vw";
$sql[]="CREATE VIEW rep_group_act_oa_vw AS
SELECT group_id,
sum(tracker_opened) AS tracker_opened,
sum(tracker_closed) AS tracker_closed,
sum(forum) AS forum,
sum(docs) AS docs,
sum(downloads) AS downloads,
sum(cvs_commits) AS cvs_commits,
sum(tasks_opened) AS tasks_opened,
sum(tasks_closed) AS tasks_closed
FROM rep_group_act_monthly
GROUP BY group_id;";
//overall activity
$sql[]="DROP VIEW rep_site_act_daily_vw";
$sql[]="CREATE VIEW rep_site_act_daily_vw AS
SELECT day,
sum(tracker_opened) AS tracker_opened,
sum(tracker_closed) AS tracker_closed,
sum(forum) AS forum,
sum(docs) AS docs,
sum(downloads) AS downloads,
sum(cvs_commits) AS cvs_commits,
sum(tasks_opened) AS tasks_opened,
sum(tasks_closed) AS tasks_closed
FROM rep_group_act_daily
GROUP BY day;";
$sql[]="DROP VIEW rep_site_act_weekly_vw";
$sql[]="CREATE VIEW rep_site_act_weekly_vw AS
SELECT week,
sum(tracker_opened) AS tracker_opened,
sum(tracker_closed) AS tracker_closed,
sum(forum) AS forum,
sum(docs) AS docs,
sum(downloads) AS downloads,
sum(cvs_commits) AS cvs_commits,
sum(tasks_opened) AS tasks_opened,
sum(tasks_closed) AS tasks_closed
FROM rep_group_act_weekly
GROUP BY week;";
$sql[]="DROP VIEW rep_site_act_monthly_vw";
$sql[]="CREATE VIEW rep_site_act_monthly_vw AS
SELECT month,
sum(tracker_opened) AS tracker_opened,
sum(tracker_closed) AS tracker_closed,
sum(forum) AS forum,
sum(docs) AS docs,
sum(downloads) AS downloads,
sum(cvs_commits) AS cvs_commits,
sum(tasks_opened) AS tasks_opened,
sum(tasks_closed) AS tasks_closed
FROM rep_group_act_monthly
GROUP BY month;";
$sql[]="DROP VIEW rep_site_act_oa_vw";
$sql[]="CREATE VIEW rep_site_act_oa_vw AS
SELECT
sum(tracker_opened) AS tracker_opened,
sum(tracker_closed) AS tracker_closed,
sum(forum) AS forum,
sum(docs) AS docs,
sum(downloads) AS downloads,
sum(cvs_commits) AS cvs_commits,
sum(tasks_opened) AS tasks_opened,
sum(tasks_closed) AS tasks_closed
FROM rep_group_act_monthly;";
for ($i=0; $i<count($sql); $i++) {
db_query_params($sql[$i], array());
}
}
function initialData() {
if (!$this->backfill_users_added_daily()) {
return false;
}
if (!$this->backfill_users_added_weekly()) {
return false;
}
if (!$this->backfill_users_added_monthly()) {
return false;
}
if (!$this->backfill_users_cum_daily()) {
return false;
}
if (!$this->backfill_users_cum_weekly()) {
return false;
}
if (!$this->backfill_users_cum_monthly()) {
return false;
}
if (!$this->backfill_groups_added_daily()) {
return false;
}
if (!$this->backfill_groups_added_weekly()) {
return false;
}
if (!$this->backfill_groups_added_monthly()) {
return false;
}
if (!$this->backfill_groups_cum_daily()) {
return false;
}
if (!$this->backfill_groups_cum_weekly()) {
return false;
}
if (!$this->backfill_groups_cum_monthly()) {
return false;
}
if (!$this->backfill_user_act_daily()) {
return false;
}
if (!$this->backfill_user_act_weekly()) {
return false;
}
if (!$this->backfill_user_act_monthly()) {
return false;
}
if (!$this->backfill_group_act_daily()) {
return false;
}
if (!$this->backfill_group_act_weekly()) {
return false;
}
if (!$this->backfill_group_act_monthly()) {
return false;
}
return true;
}
function dailyData() {
if (!$this->backfill_users_added_daily(1)) {
return false;
}
if (!$this->backfill_users_added_weekly(1)) {
return false;
}
if (!$this->backfill_users_added_monthly(2)) {
return false;
}
if (!$this->backfill_users_cum_daily(1)) {
return false;
}
if (!$this->backfill_users_cum_weekly(1)) {
return false;
}
if (!$this->backfill_users_cum_monthly(2)) {
return false;
}
if (!$this->backfill_user_act_daily(1)) {
return false;
}
if (!$this->backfill_user_act_weekly(1)) {
return false;
}
if (!$this->backfill_user_act_monthly(2)) {
return false;
}
if (!$this->backfill_group_act_daily(1)) {
return false;
}
if (!$this->backfill_group_act_weekly(1)) {
return false;
}
if (!$this->backfill_group_act_monthly(2)) {
return false;
}
return true;
}
/**
* Add a row to the users_added_daily report table.
*
* @param int $day Day - the unix time of the beginning of the day.
* @return boolean Success.
*/
function users_added_daily($day) {
db_query_params ('DELETE FROM rep_users_added_daily WHERE day=$1',
array($day));
return db_query_params ('INSERT INTO rep_users_added_daily (day,added)
VALUES ($1,(SELECT count(*) FROM users WHERE status=$2 AND add_date
BETWEEN $3 AND $4 ))',
array($day,
'A',
$day,
($day + REPORT_DAY_SPAN - 1) ));
}
/**
* Populate the users_added_daily report table.
*
* @param int $count
* @return boolean Success.
*/
function backfill_users_added_daily($count=10000) {
$today=mktime(0,0,0,date('m'),date('d')-1,date('Y'));
if (!$start_date=$this->getMinDate()) {
$this->setError('backfill_users_added_daily:: Could Not Get Start Date');
return false;
}
$i = 0;
while (true) {
$day=($today-($i*REPORT_DAY_SPAN));
if (!$this->users_added_daily($day)) {
$this->setError('backfill_users_added_daily:: Error adding daily row: '.db_error());
return false;
}
if ($day < $start_date) {
break;
}
$i++;
if ($i >= $count) {
break;
}
}
return true;
}
/**
* Add a row to the groups_added_daily report table.
*
* @param int $day Day - the unix time of the beginning of the day.
* @return boolean Success.
*/
function groups_added_daily($day) {
db_query_params ('DELETE FROM rep_groups_added_daily WHERE day=$1',
array($day));
return db_query_params ('INSERT INTO rep_groups_added_daily (day,added)
VALUES ($1,(SELECT count(*) FROM groups WHERE status=$2 AND register_time
BETWEEN $3 AND $4 ))',
array($day,
'A',
$day,
($day + REPORT_DAY_SPAN - 1) ));
}
/**
* Populate the groups_added_daily report table.
*
* @param int $count
* @return boolean Success.
*/
function backfill_groups_added_daily($count=10000) {
$today=mktime(0,0,0,date('m'),date('d')-1,date('Y'));
if (!$start_date=$this->getMinDate()) {
$this->setError('backfill_groups_added_daily:: Could Not Get Start Date');
return false;
}
$i = 0;
while (true) {
$day=($today-($i*REPORT_DAY_SPAN));
if (!$this->groups_added_daily($day)) {
$this->setError('backfill_groups_added_daily:: Error adding daily row: '.db_error());
return false;
}
if ($day < $start_date) {
break;
}
$i++;
if ($i >= $count) {
break;
}
}
return true;
}
/**
* Add a row to the users_added_weekly report table.
*
* @param int $week Week - the unix time of the beginning of the sunday for this week.
* @return boolean Success.
*/
function users_added_weekly($week) {
db_query_params ('DELETE FROM rep_users_added_weekly WHERE week=$1',
array($week));
return db_query_params ('INSERT INTO rep_users_added_weekly (week,added)
VALUES ($1,(SELECT count(*) FROM users WHERE status=$2 AND add_date
BETWEEN $3 AND $4 ))',
array($week,
'A',
$week,
($week+REPORT_WEEK_SPAN-1) ));
}
/**
* Populate the users_added_weekly report table.
*
* @param int $count
* @return boolean Success.
*/
function backfill_users_added_weekly($count=10000) {
$arr = array_slice ($this->getMonthStartArr(), -$count-1);
rsort($arr);
for ($i=0; $i<count($arr); $i++) {
if (!$this->users_added_weekly($arr[$i])) {
$this->setError('backfill_users_added_weekly:: Error adding weekly row: '.db_error());
return false;
}
}
return true;
}
/**
* Add a row to the groups_added_weekly report table.
*
* @param int $week Week - the unix time of the beginning of the sunday for this week.
* @return boolean Success.
*/
function groups_added_weekly($week) {
db_query_params ('DELETE FROM rep_groups_added_weekly WHERE week=$1',
array($week));
return db_query_params ('INSERT INTO rep_groups_added_weekly (week,added)
VALUES ($1,(SELECT count(*) FROM groups WHERE status=$2 AND register_time
BETWEEN $3 AND $4 ))',
array($week,
'A',
$week,
($week+REPORT_WEEK_SPAN-1) ));
}
/**
* Populate the users_added_weekly report table.
*
* @param int $count
* @return boolean Success.
*/
function backfill_groups_added_weekly($count=10000) {
$arr = array_slice ($this->getMonthStartArr(), -$count-1);
rsort($arr);
for ($i=0; $i<count($arr); $i++) {
if (!$this->groups_added_weekly($arr[$i])) {
$this->setError('backfill_groups_added_weekly:: Error adding weekly row: '.db_error());
return false;
}
}
return true;
}
/**
* Add a row to the users_added_monthly report table.
*
* @param int $month month_start - the unix time of the beginning of the month.
* @param int $end month_end - the unix time of the end of the month.
* @return boolean Success.
*/
function users_added_monthly($month,$end) {
db_query_params ('DELETE FROM rep_users_added_monthly WHERE month=$1',
array($month));
return db_query_params ('INSERT INTO rep_users_added_monthly (month,added)
VALUES ($1,(SELECT count(*) FROM users WHERE status=$2 AND add_date
BETWEEN $3 AND $4 ))',
array($month,
'A',
$month,
$end));
}
/**
* Populate the users_added_monthly report table.
*
* @param int $count
* @return boolean Success.
*/
function backfill_users_added_monthly($count=10000) {
$arr = array_slice ($this->getMonthStartArr(), -$count-1);
rsort($arr);
//skipping first one
for ($i=1; $i<count($arr); $i++) {
if (!$this->users_added_monthly($arr[$i],($arr[$i-1]-1))) {
$this->setError('backfill_users_added_monthly:: Error adding monthly row: '.db_error());
return false;
}
}
return true;
}
/**
* Add a row to the groups_added_monthly report table.
*
* @param int $month month_start - the unix time of the beginning of the month.
* @param int $end month_end - the unix time of the end of the month.
* @return boolean Success.
*/
function groups_added_monthly($month,$end) {
db_query_params ('DELETE FROM rep_groups_added_monthly WHERE month=$1',
array($month));
return db_query_params ('INSERT INTO rep_groups_added_monthly (month,added)
VALUES ($1,(SELECT count(*) FROM groups WHERE status=$2 AND register_time
BETWEEN $3 AND $4 ))',
array($month,
'A',
$month,
$end));
}
/**
* Populate the groups_added_monthly report table.
*
* @param int $count
* @return boolean Success.
*/
function backfill_groups_added_monthly($count=10000) {
$arr = array_slice ($this->getMonthStartArr(), -$count-1);
rsort($arr);
//skipping first one
for ($i=1; $i<count($arr); $i++) {
if (!$this->groups_added_monthly($arr[$i],($arr[$i-1]-1))) {
$this->setError('backfill_groups_added_monthly:: Error adding monthly row: '.db_error());
return false;
}
}
return true;
}
// ******************************
/**
* Add a row to the users_cum_daily report table.
*
* @param int $day Day - the unix time of the beginning of the day.
* @return boolean Success.
*/
function users_cum_daily($day) {
db_query_params ('DELETE FROM rep_users_cum_daily WHERE day=$1',
array($day));
return db_query_params ('INSERT INTO rep_users_cum_daily (day,total)
VALUES ($1,(SELECT count(*) FROM users WHERE status=$2 AND add_date
BETWEEN 0 AND $3))',
array($day,
'A',
$day));
}
/**
* Populate the users_cum_daily report table.
*
* @param int $count
* @return boolean Success.
*/
function backfill_users_cum_daily($count=10000) {
$today=mktime(0,0,0,date('m'),date('d')-1,date('Y'));
if (!$start_date=$this->getMinDate()) {
$this->setError('backfill_users_cum_daily:: Could Not Get Start Date');
return false;
}
$i = 0;
while (true) {
$day=$today-($i*REPORT_DAY_SPAN);
if (!$this->users_cum_daily($day)) {
$this->setError('backfill_users_cum_daily:: Error adding daily row: '.db_error());
return false;
}
if ($day < $start_date) {
break;
}
$i++;
if ($i >= $count) {
break;
}
}
return true;
}
/**
* Add a row to the groups_cum_daily report table.
*
* @param int $day Day - the unix time of the beginning of the day.
* @return boolean Success.
*/
function groups_cum_daily($day) {
db_query_params ('DELETE FROM rep_groups_cum_daily WHERE day=$1',
array($day));
return db_query_params ('INSERT INTO rep_groups_cum_daily (day,total)
VALUES ($1,(SELECT count(*) FROM groups WHERE status=$2 AND register_time
BETWEEN 0 AND $3))',
array($day,
'A',
$day));
}
/**
* Populate the groups_cum_daily report table.
*
* @param int $count
* @return boolean Success.
*/
function backfill_groups_cum_daily($count=10000) {
$today=mktime(0,0,0,date('m'),date('d')-1,date('Y'));
if (!$start_date=$this->getMinDate()) {
$this->setError('backfill_groups_cum_daily:: Could Not Get Start Date');
return false;
}
$i = 0;
while (true) {
$day=$today-($i*REPORT_DAY_SPAN);
if (!$this->groups_cum_daily($day)) {
$this->setError('backfill_groups_cum_daily:: Error adding daily row: '.db_error());
return false;
}
if ($day < $start_date) {
break;
}
$i++;
if ($i >= $count) {
break;
}
}
return true;
}
/**
* Add a row to the users_cum_weekly report table.
*
* @param int $week Week - the unix time of the beginning of the sunday for this week.
* @return boolean Success.
*/
function users_cum_weekly($week) {
db_query_params ('DELETE FROM rep_users_cum_weekly WHERE week=$1',
array($week));
return db_query_params ('INSERT INTO rep_users_cum_weekly (week,total)
VALUES ($1,(SELECT count(*) FROM users WHERE status=$2 AND add_date
BETWEEN $3 AND $4))',
array($week,
'A',
0,
($week+REPORT_WEEK_SPAN-1 )));
}
/**
* Populate the users_cum_weekly report table.
*
* @param int $count
* @return boolean Success.
*/
function backfill_users_cum_weekly($count=10000) {
$arr = array_slice ($this->getMonthStartArr(), -$count-1);
rsort($arr);
for ($i=0; $i<count($arr); $i++) {
if (!$this->groups_cum_weekly($arr[$i])) {
$this->setError('backfill_users_cum_weekly:: Error adding weekly row: '.db_error());
return false;
}
}
return true;
}
/**
* Add a row to the groups_cum_weekly report table.
*
* @param int $week Week - the unix time of the beginning of the sunday for this week.
* @return boolean Success.
*/
function groups_cum_weekly($week) {
db_query_params ('DELETE FROM rep_groups_cum_weekly WHERE week=$1',
array($week));
return db_query_params ('INSERT INTO rep_groups_cum_weekly (week,total)
VALUES ($1,(SELECT count(*) FROM groups WHERE status=$2 AND register_time
BETWEEN $3 AND $4))',
array($week,
'A',
0,
($week+REPORT_WEEK_SPAN-1 )));
}
/**
* Populate the groups_cum_weekly report table.
*
* @param int $count
* @return boolean Success.
*/
function backfill_groups_cum_weekly($count=10000) {
$arr = array_slice ($this->getMonthStartArr(), -$count-1);
rsort($arr);
for ($i=0; $i<count($arr); $i++) {
if (!$this->users_cum_weekly($arr[$i])) {
$this->setError('backfill_groups_cum_weekly:: Error adding weekly row: '.db_error());
return false;
}
}
return true;
}
/**
* Add a row to the users_cum_monthly report table.
*
* @param int $month month_start - the unix time of the beginning of the month.
* @param int $end month_end - the unix time of the end of the month.
* @return boolean Success.
*/
function users_cum_monthly($month,$end) {
db_query_params ('DELETE FROM rep_users_cum_monthly WHERE month=$1',
array($month));
return db_query_params ('INSERT INTO rep_users_cum_monthly (month,total)
VALUES ($1,(SELECT count(*) FROM users WHERE status=$2 AND add_date
BETWEEN 0 AND $3))',
array($month,
'A',
$end));
}
/**
* Populate the users_cum_monthly report table.
*
* @param int $count
* @return boolean Success.
*/
function backfill_users_cum_monthly($count=10000) {
$arr = array_slice ($this->getMonthStartArr(), -$count-1);
rsort($arr);
//skip first one
for ($i=1; $i<count($arr); $i++) {
if (!$this->users_cum_monthly($arr[$i],($arr[$i-1]-1))) {
$this->setError('backfill_users_cum_monthly:: Error adding monthly row: '.db_error());
return false;
}
}
return true;
}
/**
* Add a row to the groups_cum_monthly report table.
*
* @param int $month month_start - the unix time of the beginning of the month.
* @param int $end month_end - the unix time of the end of the month.
* @return boolean Success.
*/
function groups_cum_monthly($month,$end) {
db_query_params ('DELETE FROM rep_groups_cum_monthly WHERE month=$1',
array($month));
return db_query_params ('INSERT INTO rep_groups_cum_monthly (month,total)
VALUES ($1,(SELECT count(*) FROM groups WHERE status=$2 AND register_time
BETWEEN 0 AND $3))',
array($month,
'A',
$end));
}
/**
* Populate the groups_cum_monthly report table.
*
* @param int $count
* @return boolean Success.
*/
function backfill_groups_cum_monthly($count=10000) {
$arr = array_slice ($this->getMonthStartArr(), -$count-1);
rsort($arr);
//skip first one
for ($i=1; $i<count($arr); $i++) {
if (!$this->groups_cum_monthly($arr[$i],($arr[$i-1]-1))) {
$this->setError('backfill_groups_cum_monthly:: Error adding monthly row: '.db_error());
return false;
}
}
return true;
}
// ************************
/**
* Add a row to the user_act_daily report table.
*
* @param int $day Day - the unix time of the beginning of the day.
* @return boolean Success.
*/
function user_act_daily($day) {
db_query_params('DELETE FROM rep_user_act_daily WHERE day=$1',
array($day));
$end_day=$day+REPORT_DAY_SPAN-1;
return db_query_params ('INSERT INTO rep_user_act_daily
SELECT user_id,day,coalesce(tracker_opened,0) AS tracker_opened,
coalesce(tracker_closed,0) AS tracker_closed,
coalesce(forum,0) AS forum,
coalesce(docs,0) AS docs,
coalesce(cvs_commits,0) AS cvs_commits,
coalesce(tasks_opened,0) AS tasks_opened,
coalesce(tasks_closed,0) AS tasks_closed
FROM
(SELECT * FROM
(SELECT * FROM
(SELECT * FROM
(SELECT * FROM
(SELECT * FROM
(SELECT * FROM
(SELECT submitted_by AS user_id, $1::int AS day, count(*) AS tracker_opened
FROM artifact
WHERE open_date BETWEEN $1 AND $2
GROUP BY user_id,day) aopen
FULL OUTER JOIN
(SELECT assigned_to AS user_id, $1::int AS day, count(*) AS tracker_closed
FROM artifact
WHERE close_date BETWEEN $1 AND $2
GROUP BY user_id,day ) aclosed USING (user_id,day)) foo1
FULL OUTER JOIN
(SELECT posted_by AS user_id, $1::int AS day, count(*) AS forum
FROM forum
WHERE post_date BETWEEN $1 AND $2
GROUP BY user_id,day ) forum USING (user_id,day)) foo2
FULL OUTER JOIN
(SELECT created_by AS user_id, $1::int AS day, count(*) AS docs
FROM doc_data
WHERE createdate BETWEEN $1 AND $2
GROUP BY user_id,day ) docs USING (user_id,day)) foo3
FULL OUTER JOIN
(SELECT user_id, $1::int AS day, sum(commits) AS cvs_commits
FROM stats_cvs_user
WHERE month=$3 AND day=$2
GROUP BY user_id,day ) cvs USING (user_id,day)) foo4
FULL OUTER JOIN
(SELECT created_by AS user_id, $1::int AS day, count(*) AS tasks_opened
FROM project_task
WHERE start_date BETWEEN $1 AND $2
GROUP BY user_id,day ) topen USING (user_id,day)) foo5
FULL OUTER JOIN
(SELECT mod_by AS user_id, $1::int AS day, count(*) AS tasks_closed
FROM project_history
WHERE mod_date BETWEEN $1 AND $2
AND old_value=$4 AND field_name=$5
GROUP BY user_id,day ) tclosed USING (user_id,day)) foo6',
array($day,
$end_day,
date ('Ym'),
1,
'status_id'));
}
/**
* Populate the user_act_daily report table.
*
* @param int $count
* @return boolean Success.
*/
function backfill_user_act_daily($count=10000) {
$today=mktime(0,0,0,date('m'),date('d')-1,date('Y'));
if (!$start_date=$this->getMinDate()) {
$this->setError('backfill_user_act_daily:: Could Not Get Start Date');
return false;
}
$i = 0;
while (true) {
$day=$today-($i*REPORT_DAY_SPAN);
if (!$this->user_act_daily($day)) {
$this->setError('backfill_user_act_daily:: Error adding daily row: '.db_error());
return false;
}
if ($day < $start_date) {
break;
}
$i++;
if ($i >= $count) {
break;
}
}
return true;
}
/**
* Add a row to the user_act_weekly report table.
*
* @param int $week Week - the unix time of the beginning of the sunday for this week.
* @return boolean Success.
*/
function user_act_weekly($week) {
db_query_params('DELETE FROM rep_user_act_weekly WHERE week=$1',
array($week));
return db_query_params ('
INSERT INTO rep_user_act_weekly (user_id, week, tracker_opened, tracker_closed,
forum, docs, cvs_commits, tasks_opened, tasks_closed)
SELECT user_id,$1::int AS week, sum(tracker_opened) AS tracker_opened,
sum(tracker_closed) AS tracker_closed, sum(forum) AS forum,
sum(docs) AS docs, sum(cvs_commits) AS cvs_commits,
sum(tasks_opened) AS tasks_opened, sum(tasks_closed) AS tasks_closed
FROM rep_user_act_daily
WHERE DAY BETWEEN $1 AND $2
GROUP BY user_id,week',
array ($week,
$week+REPORT_WEEK_SPAN-1));
}
/**
* Populate the user_act_weekly report table.
*
* @param int $count
* @return boolean Success.
*/
function backfill_user_act_weekly($count=10000) {
$arr = array_slice ($this->getMonthStartArr(), -$count-1);
rsort($arr);
for ($i=0; $i<count($arr); $i++) {
if (!$this->user_act_weekly($arr[$i])) {
$this->setError('backfill_user_act_weekly:: Error adding weekly row: '.db_error());
return false;
}
}
return true;
}
/**
* Add a row to the user_act_monthly report table.
*
* @param int $month month_start - the unix time of the beginning of the month.
* @param int $end month_end - the unix time of the end of the month.
* @return boolean Success.
*/
function user_act_monthly($month,$end) {
db_query_params('DELETE FROM rep_user_act_monthly WHERE month=$1',
array($month));
return db_query_params ('
INSERT INTO rep_user_act_monthly (user_id, month, tracker_opened,
tracker_closed, forum, docs, cvs_commits, tasks_opened, tasks_closed)
SELECT user_id, $1::int AS month, sum(tracker_opened) AS tracker_opened,
sum(tracker_closed) AS tracker_closed, sum(forum) AS forum,
sum(docs) AS docs, sum(cvs_commits) AS cvs_commits,
sum(tasks_opened) AS tasks_opened, sum(tasks_closed) AS tasks_closed
FROM rep_user_act_daily
WHERE DAY BETWEEN $1 AND $2
GROUP BY user_id, month',
array ($month, $end));
}
/**
* Populate the user_act_monthly report table.
*
* @param int $count
* @return boolean Success.
*/
function backfill_user_act_monthly($count=10000) {
$arr = array_slice ($this->getMonthStartArr(), -$count-1);
rsort($arr);
for ($i=1; $i<count($arr); $i++) {
if (!$this->user_act_monthly($arr[$i],($arr[$i-1]-1))) {
$this->setError('backfill_user_act_monthly:: Error adding monthly row: '.db_error());
return false;
}
}
return true;
}
// ************************
/**
* Add a row to the group_act_daily report table.
*
* @param int $day Day - the unix time of the beginning of the day.
* @return boolean Success.
*/
function group_act_daily($day) {
db_query_params('DELETE FROM rep_group_act_daily WHERE day=$1',
array($day));
$end_day=$day+REPORT_DAY_SPAN-1;
return db_query_params ('INSERT INTO rep_group_act_daily
SELECT group_id,day,coalesce(tracker_opened,0) AS tracker_opened,
coalesce(tracker_closed,0) AS tracker_closed,
coalesce(forum,0) AS forum,
coalesce(docs,0) AS docs,
coalesce(downloads,0) AS downloads,
coalesce(cvs_commits,0) AS cvs_commits,
coalesce(tasks_opened,0) AS tasks_opened,
coalesce(tasks_closed,0) AS tasks_closed
FROM
(SELECT * FROM
(SELECT * FROM
(SELECT * FROM
(SELECT * FROM
(SELECT * FROM
(SELECT * FROM
(SELECT * FROM
(SELECT agl.group_id, $1::int AS day, count(*) AS tracker_opened
FROM artifact a, artifact_group_list agl
WHERE a.open_date BETWEEN $1 AND $2
AND a.group_artifact_id=agl.group_artifact_id
GROUP BY group_id,day) aopen
FULL OUTER JOIN
(SELECT agl.group_id, $1::int AS day, count(*) AS tracker_closed
FROM artifact a, artifact_group_list agl
WHERE a.close_date BETWEEN $1 AND $2
AND a.group_artifact_id=agl.group_artifact_id
GROUP BY group_id,day ) aclosed USING (group_id,day)) foo1
FULL OUTER JOIN
(SELECT fgl.group_id, $1::int AS day, count(*) AS forum
FROM forum f, forum_group_list fgl
WHERE f.post_date BETWEEN $1 AND $2
AND f.group_forum_id=fgl.group_forum_id
GROUP BY group_id,day ) forum USING (group_id,day)) foo2
FULL OUTER JOIN
(SELECT group_id, $1::int AS day, count(*) AS docs
FROM doc_data
WHERE createdate BETWEEN $1 AND $2
GROUP BY group_id,day ) docs USING (group_id,day)) foo3
FULL OUTER JOIN
(SELECT fp.group_id, $1::int AS day, count(*) AS downloads
FROM frs_package fp, frs_release fr, frs_file ff, frs_dlstats_file fdf
WHERE fp.package_id=fr.package_id
AND fr.release_id=ff.release_id
AND ff.file_id=fdf.file_id
AND fdf.month = $3 AND fdf.day = $4
GROUP BY fp.group_id,day ) docs USING (group_id,day)) foo4
FULL OUTER JOIN
(SELECT group_id, $1::int AS day, sum(commits) AS cvs_commits
FROM stats_cvs_group
WHERE month=$3 AND day=$4
GROUP BY group_id,day ) cvs USING (group_id,day)) foo5
FULL OUTER JOIN
(SELECT pgl.group_id, $1::int AS day,count(*) AS tasks_opened
FROM project_task pt, project_group_list pgl
WHERE pt.start_date BETWEEN $1 AND $2
AND pt.group_project_id=pgl.group_project_id
GROUP BY group_id,day ) topen USING (group_id,day)) foo6
FULL OUTER JOIN
(SELECT pgl.group_id, $1::int AS day, count(*) AS tasks_closed
FROM project_history ph, project_task pt, project_group_list pgl
WHERE ph.mod_date BETWEEN $1 AND $2
AND ph.old_value=$5
AND ph.field_name=$6
AND ph.project_task_id=pt.project_task_id
AND pt.group_project_id=pgl.group_project_id
GROUP BY group_id,day ) tclosed USING (group_id,day)) foo7',
array($day,
$end_day,
date('Ym', $day),
date('d',$day),
1,
'status_id'));
}
/**
* Populate the group_act_daily report table.
*
* @param int $count
* @return boolean Success.
*/
function backfill_group_act_daily($count=10000) {
$today=mktime(0,0,0,date('m'),date('d')-1,date('Y'));
if (!$start_date=$this->getMinDate()) {
$this->setError('backfill_group_act_daily:: Could Not Get Start Date');
return false;
}
$i = 0;
while (true) {
$day=$today-($i*REPORT_DAY_SPAN);
if (!$this->group_act_daily($day)) {
$this->setError('backfill_group_act_daily:: Error adding daily row: '.db_error());
return false;
}
if ($day < $start_date) {
break;
}
$i++;
if ($i >= $count) {
break;
}
}
return true;
}
/**
* Add a row to the group_act_weekly report table.
*
* @param int $week Week - the unix time of the beginning of the sunday for this week.
* @return boolean Success.
*/
function group_act_weekly($week) {
db_query_params ('DELETE FROM rep_group_act_weekly WHERE week=$1',
array($week));
return db_query_params ('
INSERT INTO rep_group_act_weekly (group_id, week, tracker_opened,
tracker_closed, forum, docs, downloads, cvs_commits, tasks_opened,
tasks_closed)
SELECT group_id, $1::int AS week, sum(tracker_opened) AS tracker_opened,
sum(tracker_closed) AS tracker_closed, sum(forum) AS forum,
sum(docs) AS docs, sum(downloads) AS downloads,
sum(cvs_commits) AS cvs_commits, sum(tasks_opened) AS tasks_opened,
sum(tasks_closed) AS tasks_closed
FROM rep_group_act_daily
WHERE DAY BETWEEN $1 AND $2
GROUP BY group_id, week',
array ($week,
$week+REPORT_WEEK_SPAN-1));
}
/**
* Populate the group_act_weekly report table.
*
* @param int $count
* @return boolean Success.
*/
function backfill_group_act_weekly($count=10000) {
$arr = array_slice ($this->getMonthStartArr(), -$count-1);
rsort($arr);
for ($i=0; $i<count($arr); $i++) {
if (!$this->group_act_weekly($arr[$i])) {
$this->setError('backfill_user_act_weekly:: Error adding weekly row: '.db_error());
return false;
}
}
return true;
}
/**
* Add a row to the group_act_monthly report table.
*
* @param int $month month_start - the unix time of the beginning of the month.
* @param int $end month_end - the unix time of the end of the month.
* @return boolean Success.
*/
function group_act_monthly($month,$end) {
db_query_params('DELETE FROM rep_group_act_monthly WHERE month=$1',
array($month));
return db_query_params('
INSERT INTO rep_group_act_monthly (group_id, month, tracker_opened,
tracker_closed, forum, docs, downloads, cvs_commits, tasks_opened,
tasks_closed)
SELECT group_id, $1::int AS month, sum(tracker_opened) AS tracker_opened,
sum(tracker_closed) AS tracker_closed, sum(forum) AS forum,
sum(docs) AS docs, sum(downloads) AS downloads,
sum(cvs_commits) AS cvs_commits,
sum(tasks_opened) AS tasks_opened,
sum(tasks_closed) AS tasks_closed
FROM rep_group_act_daily
WHERE DAY BETWEEN $1 AND $2
GROUP BY group_id,month',
array ($month, $end));
}
/**
* Populate the group_act_monthly report table.
*
* @param int $count
* @return boolean Success.
*/
function backfill_group_act_monthly($count=10000) {
$arr = array_slice ($this->getMonthStartArr(), -$count-1);
rsort($arr);
for ($i=1; $i<count($arr); $i++) {
if (!$this->group_act_monthly($arr[$i],($arr[$i-1]-1))) {
$this->setError('backfill_group_act_monthly:: Error adding monthly row: '.db_error());
return false;
}
}
return true;
}
/**
* Add a row to the rep_time_category table.
*
* @param string $category_name The category name.
* @return boolean Success.
*/
function addTimeCode($category_name) {
return db_query_params ('INSERT INTO rep_time_category (category_name) VALUES ($1)',
array($category_name));
}
/**
* Update the rep_time_category table.
*
* @param integer $time_code
* @param string $category_name The category name.
* @return boolean Success.
*/
function updateTimeCode($time_code, $category_name) {
return db_query_params ('UPDATE rep_time_category SET category_name=$1 WHERE time_code=$2',
array($category_name,
$time_code));
}
}
// Local Variables:
// mode: php
// c-file-style: "bsd"
// End:
|