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
|
<?php
/*
This is the main script that everything else is included
in. Mostly what it does is check the user permissions
to see what they have access to.
*/
include_once('header.php');
// Set a generic "blank" variable so that we don't get notices
// FIXME: properly check for variables!
$novar = '';
// Send this header for i18n support
// Note that server admins can override this, breaking Flyspray.
header("Content-type: text/html; charset=utf-8");
// For all style-Attributes, see http://www.w3.org/TR/html401/present/styles.html#h-14.2.1
header("Content-Style-Type: text/css");
// This generates an URL so that action scripts can take us back to the previous page
$this_page = sprintf("%s",$_SERVER["REQUEST_URI"]);
$this_page = str_replace('&', '&', $this_page);
// Background daemon that does scheduled reminders
if ($conf['general']['reminder_daemon'] == '1')
$fs->startReminderDaemon();
// Get the translation for the wrapper page (this page)
$lang = $flyspray_prefs['lang_code'];
$fs->get_language_pack($lang, 'main');
// Set the locale
setlocale(LC_ALL, str_replace('-','_',$language['locale']));
// Get user permissions
$permissions = array();
if (isset($_COOKIE['flyspray_userid']) && isset($_COOKIE['flyspray_passhash']))
{
// Check to see if the user has been trying to hack their cookies to perform sql-injection
if (!preg_match ("/^\d*$/", $_COOKIE['flyspray_userid']) OR (!preg_match ("/^\d*$/", @$_COOKIE['flyspray_project'])))
{
$fs->Redirect( $fs->CreateURL('error', null) );
//die("Stop hacking your cookies, you naughty fellow!");
}
// Only logged in users get to use the 'last search' functionality
if ( !empty($_GET['string']) OR !empty($_GET['type'])
OR !empty($_GET['sev']) OR !empty($_GET['due'])
OR !empty($_GET['dev']) OR !empty($_GET['cat'])
OR !empty($_GET['status']) OR !empty($_GET['status'])
)
{
$db->Query("UPDATE {$dbprefix}users
SET last_search = ?
WHERE user_id = ?",
array($this_page, $_COOKIE['flyspray_userid'])
);
}
// Fetch info on the current user
$current_user = $fs->getUserDetails($_COOKIE['flyspray_userid']);
// Fetch the permissions array for the current user
$permissions = $fs->getPermissions($current_user['user_id'], $project_id);
// End of getting user permissions
}
// Set the theme
if (isset($_GET['project']) && $_GET['project'] == '0')
{
$themestyle = $flyspray_prefs['global_theme'];
} else
{
$themestyle = $project_prefs['theme_style'];
}
// Set the page to include
if (isset($_REQUEST['do']))
{
$do = $_REQUEST['do'];
} else
{
// Default page is the task list
$do = "index";
}
// Check that the requested project actually exists
$check_proj_exists = $db->Query("SELECT * FROM {$dbprefix}projects
WHERE project_id = ?",
array($project_id)
);
if (!$db->CountRows($check_proj_exists))
{
$fs->redirect("index.php?project=" . $flyspray_prefs['default_project']);
}
// If a file was requested, deliver it
if (isset($_GET['getfile']) && !empty($_GET['getfile']))
{
$result = $db->Query("SELECT task_id,
orig_name,
file_name,
file_type
FROM {$dbprefix}attachments
WHERE attachment_id = ?",
array($_GET['getfile'])
);
list($task_id, $orig_name, $file_name, $file_type) = $db->FetchArray($result);
// Retrieve permissions!
$task_details = $fs->GetTaskDetails($task_id);
$proj_prefs = $fs->GetProjectPrefs($task_details['attached_to_project']);
$user_permissions = @$fs->getPermissions($db->emptyToZero($current_user['user_id']), $task_details['attached_to_project']);
// Check if file exists, and user permission to access it!
if (file_exists("attachments/$file_name")
&& ($project_prefs['others_view'] == '1' OR $user_permissions['view_attachments'] == '1'))
{
$path = $basedir ."/attachments/$file_name";
header("Pragma: public");
header("Content-type: $file_type");
header("Content-Disposition: filename=$orig_name");
header("Content-transfer-encoding: binary\n");
header("Content-length: " . filesize($path) . "\n");
readfile("$path");
} else
{
$fs->Redirect( $fs->CreateURL('error', null) );
}
// If no file was requested, show the page as per normal
} else
{
// Start Output Buffering and gzip encoding if setting is present.
// This functionality provided Mariano D'Arcangelo
if ($conf['general']['output_buffering']=='gzip')
{
include_once( 'includes/gzip_compress.php' );
} elseif ($conf['general']['output_buffering']=='on')
{
ob_start();
}
// ob_end_flush() isn't needed in MOST cases because it is called automatically
// at the end of script execution by PHP itself when output buffering is turned on
// either in the php.ini or by calling ob_start().
// When viewing the task list, take down each value that the search form may have passed
if ($do == 'index')
{
$extraurl = '&string=' . $_GET['string'] . '&type=' . $_GET['type'] . '&sev=' . $_GET['sev'] . '&dev=' . $_GET['dev']
. '&due=' . $_GET['due'] . '&cat=' . $_GET['cat'] . '&status=' . $_GET['status']
. '&order2=' . $_GET['order2'] . '&sort=' . $_GET['sort']
. '&sort2=' . $_GET['sort2']
. '&date=' . $_GET['date'] . '&project=' . @$_GET['project'];
$_SESSION['lastindexfilter'] = $conf['general']['baseurl'] . 'index.php?tasks=' . $_GET['tasks']
. '&pagenum=' . $_GET['pagenum'] . $extraurl;
if (isset($_GET['order']))
$_SESSION['lastindexfilter'] .= '&order=' . $_GET['order'];
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<?php
echo '<html xmlns="http://www.w3.org/1999/xhtml" lang="' . $language['locale'] . '" xml:lang="' . $language['locale'] . '">';
echo "<head>\n";
echo '<title>Flyspray:: ' . stripslashes($project_prefs['project_title']) . ": </title>\n";
if (file_exists("themes/$themestyle/favicon.ico"))
{
echo '<link rel="icon" type="image/png" href="' . $conf['general']['baseurl'] . 'themes/' . $themestyle . '/favicon.ico" />';
} else
{
echo '<link rel="icon" type="image/png" href="' . $conf['general']['baseurl'] . 'favicon.ico" />';
}
echo '<meta name="description" content="Flyspray, a Bug Tracking System written in PHP." />';
echo '<link href="' . $conf['general']['baseurl'] . 'themes/' . $themestyle . '/theme.css" rel="stylesheet" type="text/css" />' . "\n";
//echo '<style type="text/css" media="screen">@import "'. $conf['general']['baseurl'] . 'themes/' . $themestyle . '/theme.css";</style>';
// echo '<link media="print" href="' . $conf['general']['baseurl'] . 'themes/' . $themestyle . '/theme_print.css" rel="stylesheet" type="text/css" />' . "\n";
echo '<link rel="alternate" type="application/rss+xml" title="Flyspray RSS Feed" href="' . $conf['general']['baseurl'] . 'scripts/rss.php?proj=' . $project_id . '" />' . "\n";
echo '<script type="text/javascript" src="' . $conf['general']['baseurl'] . 'includes/styleswitcher.js"></script>' . "\n";
echo '<script type="text/javascript" src="' . $conf['general']['baseurl'] . 'includes/tabs.js"></script>' . "\n";
echo '<script type="text/javascript" src="' . $conf['general']['baseurl'] . 'includes/functions.js"></script>' . "\n";
// This allows theme authors to include other code/javascript/dhtml to make their theme funky
if (file_exists($conf['general']['baseurl'] . 'themes/' . $themestyle . '/header.php'))
include($conf['general']['baseurl'] . 'themes/' . $themestyle . '/header.php');
echo '<!--[if IE 6]>';
echo '<script type="text/javascript" src="' . $conf['general']['baseurl'] . 'includes/ie_hover.js"></script>';
echo '<![endif]-->';
echo '<style type="text/css">@import url(' . $conf['general']['baseurl'] . 'includes/jscalendar/calendar-win2k-1.css);</style>';
echo '<script type="text/javascript" src="' . $conf['general']['baseurl'] . 'includes/jscalendar/calendar_stripped.js"></script>';
echo '<script type="text/javascript" src="' . $conf['general']['baseurl'] . 'includes/jscalendar/lang/calendar-en.js"></script>';
echo '<script type="text/javascript" src="' . $conf['general']['baseurl'] . 'includes/jscalendar/calendar-setup.js"></script>';
echo '</head>';
echo '<body>';
// People might like to define their own header files for their theme
$headerfile = "$basedir/themes/".$project_prefs['theme_style']."/header.inc.php";
if(file_exists("$headerfile"))
include("$headerfile");
// If the admin wanted the Flyspray logo shown at the top of the page...
if ($project_prefs['show_logo'] == '1')
echo '<h1 id="title"><span>' . $project_prefs['project_title'] . '</span></h1>';
// if no-one's logged in, show the login box
if(!isset($_COOKIE['flyspray_userid']))
require('scripts/loginbox.php');
// If we have allowed anonymous logging of new tasks
// Show the link to the Add Task form
if ($project_prefs['anon_open'] == '1' && !isset($_COOKIE['flyspray_userid']))
echo '<div id="anonopen"><a href="?do=newtask&project=' . $project_id . '">' . $language['opentaskanon'] . '</a></div>';
////////////////////////////////////////////////
// OK, now we start the new permissions stuff //
////////////////////////////////////////////////
// If the user has the right name cookies
if (isset($_COOKIE['flyspray_userid']) && isset($_COOKIE['flyspray_passhash']))
{
// Check that the user hasn't spoofed the cookie contents somehow
if ($_COOKIE['flyspray_passhash'] == crypt($current_user['user_pass'], "$cookiesalt")
// And that their account is enabled
&& $permissions['account_enabled'] == '1'
// and that their group is enabled
&& $permissions['group_open'] == '1')
{
////////////////////////
// Show the user menu //
////////////////////////
echo '<p id="menu">' . "\n";
// Display "Logged in as - username"
echo '<em>' . $current_user['real_name'] . ' (' . $current_user['user_name'] . ')</em>';
// Display Add New Task link
if ($permissions['open_new_tasks'] == '1')
{
echo '<small> | </small>';
echo '<a id="newtasklink" href="' . $fs->CreateURL('newtask', $project_id) . '" accesskey="a">' . $language['addnewtask'] . "</a>\n";
}
// Reports link
if ($permissions['view_reports'] == '1' && $project_id != '0')
{
echo '<small> | </small>';
echo '<a id="reportslink" href="' . $fs->CreateURL('reports', null) . '" accesskey="r">' . $language['reports'] . "</a>\n";
}
// Edit My Details link
echo '<small> | </small>';
echo '<a id="editmydetailslink" href="' . $fs->CreateURL('myprofile', null) . '" accesskey="e">' . $language['editmydetails'] . "</a>\n";
// If the user has conducted a search, then show a link to the most recent task list filter
echo '<small> | </small>';
if ( !empty($current_user['last_search']) )
{
echo '<a id="lastsearchlink" href="' . $current_user['last_search'] . '" accesskey="m">' . $language['lastsearch'] . "</a>\n";
} else
{
echo '<a id="lastsearchlink" href="' . $conf['general']['baseurl'] . 'index.php">' . $language['lastsearch'] . "</a>\n";
}
// Administrator's Toolbox link
if ($permissions['is_admin'] == '1')
{
echo '<small> | </small>';
echo '<a id="optionslink" href="' . $fs->CreateURL('admin', 'prefs') . '">' . $language['admintoolbox'] . "</a>\n";
}
// Project Manager's Toolbox link
if ($permissions['manage_project'] == '1')
{
echo '<small> | </small>';
echo '<a id="projectslink" href="' . $fs->CreateURL('pm', 'prefs', $project_id) . '">' . $language['manageproject'] . "</a>\n";
}
// Logout link
echo '<small> | </small>';
echo '<a id="logoutlink" href="' . $fs->CreateURL('logout', null) . '" accesskey="l">' . $language['logout'] . "</a>\n";
// End of mainmenu area
//////////////////////////////////
// Show the pending PM requests //
//////////////////////////////////
if ($permissions['manage_project'] == '1')
{
// Find out if there are any PM requests wanting attention
$get_req = $db->Query("SELECT * FROM {$dbprefix}admin_requests
WHERE project_id = ? AND resolved_by = '0'",
array($project_id));
$num_req = $db->CountRows($get_req);
// Show the amount of admin requests waiting
if ($db->CountRows($get_req))
{
echo '<small> | </small>';
echo '<a id="pendingreq" class="attention" href="' . $fs->CreateURL('pm', 'pendingreq', $project_id) . '">' . $num_req . ' ' . $language['pendingreq'] . '</a>';
}
// End of checking if the pending PM requests should be displayed
}
echo "</p>";
// If the user's account is closed
} else {
echo "<br />{$language['disabledaccount']}";
$fs->Redirect($fs->CreateURL('logout', null));
// End of checking if the user's account is open
}
// End of checking if the user has the right cookies
}
// ERROR status bar
if (isset($_SESSION['ERROR']))
{
echo '<div id="errorbar" onClick="document.getElementById(\'errorbar\').style.display = \'none\'">' . $_SESSION['ERROR'] . '</div>';
unset($_SESSION['ERROR']);
}
// SUCCESS status bar
if (isset($_SESSION['SUCCESS']))
{
echo '<div id="successbar" onClick="document.getElementById(\'successbar\').style.display = \'none\'">' . $_SESSION['SUCCESS'] . '</div>';
unset($_SESSION['SUCCESS']);
}
?>
<div id="content">
<div id="projectselector">
<form action="<?php echo $conf['general']['baseurl'];?>index.php" method="get">
<p>
<select name="tasks">
<option value="all"><?php echo $language['tasksall'];?></option>
<?php
if (isset($_COOKIE['flyspray_userid']))
{
?>
<option value="assigned" <?php if(isset($_GET['tasks']) && $_GET['tasks'] == 'assigned') echo 'selected="selected"'; ?>><?php echo $language['tasksassigned']; ?></option>
<option value="reported" <?php if(isset($_GET['tasks']) && $_GET['tasks'] == 'reported') echo 'selected="selected"'; ?>><?php echo $language['tasksreported']; ?></option>
<option value="watched" <?php if(isset($_GET['tasks']) && $_GET['tasks'] == 'watched') echo 'selected="selected"'; ?>><?php echo $language['taskswatched']; ?></option>
<?php
}
?>
</select>
<?php echo $language['selectproject'];?>
<select name="project">
<option value="0"<?php if (isset($_GET['project']) && $_GET['project'] == '0') echo ' selected="selected"';?>><?php echo $language['allprojects'];?></option>
<?php
// If the user has permission to view all projects
if (isset($permissions['global_view']) && $permissions['global_view'] == '1')
{
$get_projects = $db->Query("SELECT * FROM {$dbprefix}projects
ORDER BY project_title");
// or, if the user is logged in
} elseif (isset($_COOKIE['flyspray_userid']))
{
$get_projects = $db->Query("SELECT DISTINCT p.*
FROM {$dbprefix}users_in_groups uig
LEFT JOIN {$dbprefix}groups g ON uig.group_id = g.group_id,
{$dbprefix}projects p
WHERE ((uig.user_id = ?
AND g.view_tasks = '1')
OR p.others_view = '1')
AND p.project_is_active = '1'
GROUP BY p.project_id",
array($current_user['user_id'])
);
// Anonymous users
} else
{
$get_projects = $db->Query("SELECT * FROM {$dbprefix}projects
WHERE project_is_active = '1'
AND others_view = '1'
ORDER BY project_title");
}
// Cycle through the results from whichever query above
while ($row = $db->FetchArray($get_projects))
{
// Ensure that the selected project matches the one we are currently looking at
if ( $project_id == $row['project_id']
&& (!isset($_GET['project'])
OR ( isset($_GET['project']) && !empty($_GET['project']) ) ) )
{
echo '<option value="' . $row['project_id'] . '" selected="selected">' . stripslashes($row['project_title']) . '</option>';
$project_list[] = $row['project_id'];
} else
{
echo '<option value="' . $row['project_id'] . '">' . stripslashes($row['project_title']) . '</option>';
$project_list[] = $row['project_id'];
}
}
?>
</select>
<input class="mainbutton" type="submit" value="<?php echo $language['show'];?>" />
</p>
</form>
</div>
<form action="<?php echo $conf['general']['baseurl'];?>index.php" method="get">
<p id="showtask">
<label><?php echo $language['showtask'];?> #
<input id="taskid" name="show_task" type="text" size="10" maxlength="10" accesskey="t" /></label>
<input class="mainbutton" type="submit" value="<?php echo $language['go'];?>" />
</p>
</form>
<?php
// If someone used the 'show task' form above, redirect them
if ( isset($_GET['show_task']) )
{
if ( is_numeric($_GET['show_task']) )
{
$fs->Redirect( $fs->CreateURL('details', $_GET['show_task']) );
} else
{
$fs->Redirect( $fs->CreateURL('error', null) );
}
}
// Show the project blurb if the project manager defined one
if ($project_prefs['project_is_active'] == '1'
&& ($project_prefs['others_view'] == '1' OR @$permissions['view_tasks'] == '1')
&& !empty($project_prefs['intro_message'])
&& ($do == 'details' OR $do == 'index' OR $do == 'newtask' OR $do == 'reports' OR $do == 'depends')
OR (isset($_GET['project']) && $_GET['project'] == '0'))
{
$intro_message = Markdown(stripslashes($project_prefs['intro_message']));
echo '<div id="intromessage">' . $intro_message . '</div>';
}
// Check that this page isn't being submitted twice
if ($fs->requestDuplicated())
{
printf('<meta http-equiv="refresh" content="2; URL=?id=%s">', $project_id);
printf('<div class="redirectmessage"><p><em>%s</em></p></div>', $language['duplicated']);
echo '</body></html>';
exit;
}
// Show the page the user wanted
require("scripts/$do.php");
// Show the user's permissions
if (isset($_COOKIE['flyspray_userid']))
{
echo '<div id="permslink">';
echo '<a href="#" onclick="showhidestuff(\'permissions\');">' . $language['permissions'] . '</a>';
echo '</div>';
echo '<div id="permissions">';
echo '<table border="1">';
$perm_fields = array('is_admin',
'manage_project',
'view_tasks',
'open_new_tasks',
'modify_own_tasks',
'modify_all_tasks',
'view_comments',
'add_comments',
'edit_comments',
'delete_comments',
'view_attachments',
'create_attachments',
'delete_attachments',
'view_history',
'close_own_tasks',
'close_other_tasks',
'assign_to_self',
'assign_others_to_self',
'view_reports',
'global_view');
foreach ($permissions as $key => $val)
{
if (in_array($key, $perm_fields))
{
echo '<tr><td>';
$key = str_replace('_', ' ', $key);
echo $key;
echo '</td>';
$val = str_replace('0', '<td style="color: red;">No</td>', $val);
$val = str_replace('1', '<td style="color: green;">Yes</td>', $val);
echo $val;
echo "</tr>\n";
}
//echo '<tr><td>' . $key . '</td><td>' . $val . '</td></tr>';
}
echo '</table></div>';
}
?>
</div>
<p id="footer">
<!-- Please don't remove this line - it helps promote Flyspray -->
<a href="http://flyspray.rocks.cc/" class="offsite"><?php printf("%s %s", $language['poweredby'], $fs->version);?></a>
</p>
<?php
$footerfile = "$basedir/themes/".$project_prefs['theme_style']."/footer.inc.php";
if(file_exists("$footerfile"))
include_once("$footerfile");
?>
</body>
</html>
<?php
// End of file delivery / showing the page
}
?>
|