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
|
<?php
/**
* Copyright 1999-2001 (c) VA Linux Systems
* Copyright (C) 2011-2012 Alain Peyrat - Alcatel-Lucent
* http://fusionforge.org
*
* 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.
*/
/*
Determine group
*/
$group_id=getIntFromRequest('group_id');
$form_grp=getIntFromRequest('form_grp');
$log_group=0;
if (isset($group_id) && is_numeric($group_id) && $group_id) {
$log_group=$group_id;
} elseif (isset($form_grp) && is_numeric($form_grp) && $form_grp) {
$log_group=$form_grp;
} elseif (isset($group_name) && $group_name) {
$group = group_get_object_by_name($group_name);
if ($group) {
$log_group=$group->getID();
}
} else {
//
//
// This is a hack to allow the logger to have a group_id present
// for foundry and project summary pages
//
//
$pos = strpos (getStringFromServer('REQUEST_URI'),
normalized_urlprefix ());
if (($pos !== false) && ($pos == 0)) {
$pathwithoutprefix = substr (getStringFromServer('REQUEST_URI'),
strlen (normalized_urlprefix ()) - 1);
}
$pathwithoutprefix_exploded = explode('?', $pathwithoutprefix);
$pathwithoutprefix = $pathwithoutprefix_exploded[0];
$expl_pathinfo = explode('/',$pathwithoutprefix);
if (($expl_pathinfo[1]=='foundry') || ($expl_pathinfo[1]=='projects')) {
$group_name = $expl_pathinfo[2];
if ($group_name) {
$res_grp = db_query_params ('
SELECT *
FROM groups
WHERE unix_group_name=$1
AND status IN ($2,$3)',
array ($group_name,
'A',
'H'));
// store subpage id for analyzing later
// This will later be used in the www/projects for instance
$subpage = isset($expl_pathinfo[3]) ? $expl_pathinfo[3] : '';
$subpage2 = isset($expl_pathinfo[4]) ? $expl_pathinfo[4] : '';
global $RESTPATH_PROJECTS_GROUP_ID;
global $RESTPATH_PROJECTS_PROJECT;
//set up the group_id
$group_id=db_result($res_grp,0,'group_id');
//set up a foundry object for reference all over the place
if ($group_id) {
$grp = group_get_object($group_id,$res_grp);
if ($grp) {
//this is a project - so set up the project var properly
$project =& $grp;
//echo "IS PROJECT: ".$group_id;
$log_group=$group_id;
}
// This will later be used in the www/projects for instance
$RESTPATH_PROJECTS_PROJECT = $project;
$RESTPATH_PROJECTS_GROUP_ID = $group_id;
global $RESTPATH_PROJECTS_SUBPAGE;
$RESTPATH_PROJECTS_SUBPAGE = $subpage;
global $RESTPATH_PROJECTS_SUBPAGE2;
$RESTPATH_PROJECTS_SUBPAGE2 = $subpage2;
}
else {
$RESTPATH_PROJECTS_GROUP_ID = -1;
}
}
}
if ($expl_pathinfo[1]=='wiki') {
$group_name = $expl_pathinfo[3];
$res_grp=db_query_params ('
SELECT *
FROM groups
WHERE unix_group_name=$1
AND status IN ($2,$3)
',
array($group_name,
'A',
'H'));
//set up the group_id
$group_id=db_result($res_grp,0,'group_id');
//set up a foundry object for reference all over the place
if ($group_id) {
$grp = group_get_object($group_id,$res_grp);
if ($grp) {
//this is a project - so set up the project var properly
$project =& $grp;
//echo "IS PROJECT: ".$group_id;
$log_group=$group_id;
}
}
}
}
$res_logger = db_query_params ('INSERT INTO activity_log
(day,hour,group_id,browser,ver,platform,time,page,type)
VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9)',
array(date('Ymd'), date('H'),
$log_group, browser_get_agent(), browser_get_version(), browser_get_platform(),
time(), getStringFromServer('PHP_SELF'), '0'));
if (!$res_logger) {
echo "An error occured in the logger.\n";
echo htmlspecialchars(db_error());
exit;
}
|