Cosign Filter Implementation in PHPDownload: cosign-php-0.9.tar.gz (tar.gz)
Features
Requirements
Limitations
CopyrightCopyright (c) 2010 Brno University of Technology, Faculty of Information TechnologyAll Rights Reserved. LicensePermission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appears in all copies and that both that copyright notice and this permission notice appear in supporting documentation, and that the name of The Brno University of Technology not be used in advertising or publicity pertaining to distribution of the software without specific, written prior permission. This software is supplied as is without expressed or implied warranties of any kind. Brno University of Technology, Faculty of Information Technology
This software is based on the Cosign protocol specification and implementation.
HistoryFeb 2010 - version 0.9 - initial public version Simple Cosign client
<?php
include_once("cosign.php");
if (!cosign_auth()) {
header("403 Not Authorized");
exit();
}
?>
<html>
<head>Simple Cosign protected page</head>
</html>
<body>
<h1>Successfull Authentication</h1>
Your login is <b><?php echo $_SERVER['REMOTE_USER']; ?></b>
</body>
</html>
Optional Cosign Authentication
<?php
include_once("cosign.php");
if (isset($_COOKIE[$cosign_cfg['CosignService']]) || $_REQUEST['dologin']) {
$authenticated = cosign_auth();
} else {
$authenticated = false;
}
?>
<html>
<head>Simple Optional Cosign protected page</head>
</html>
<body>
<?php>
if ($authenticated) {
?>
<h1>Successfull Authentication</h1>
Your login is <b><?php echo $_SERVER['REMOTE_USER']; ?></b>
<?php } else { ?>
<h1>Not Authenticated</h1>
<a href="$PHP_SELF?dologin=1">Click here to login</a>
<?php } ?>
</body>
</html>
Page with Output Buffering
<?php
ob_start();
include_once("cosign.php");
if (!cosign_auth(array(), false)) {
header("403 Not Authorized");
exit();
}
?>
<html>
<head>Cosign protected page</head>
</html>
<body>
<?php>
if ($authenticated) {
?>
<h1>Successfull Authentication</h1>
Your login is <b><?php echo $_SERVER['REMOTE_USER']; ?></b>
<?php } else { ?>
<h1>Not Authenticated</h1>
<a href="$PHP_SELF?dologin=1">Click here to login</a>
<?php } ?>
</body>
</html>
Page With Logout
<?php
include_once("cosign.php");
if (!cosign_auth(array(), false)) {
header("403 Not Authorized");
exit();
}
?>
<html>
<head>Cosign protected page</head>
</html>
<body>
<?php>
if ($authenticated) {
?>
<h1>Successfull Authentication</h1>
Your login is <b><?php echo $_SERVER['REMOTE_USER']; ?></b>
<a href="<?php echo $cosign_cfg['CosignRedirect']."/logout.cgi"; ?>">Log Out</a>
<?php } else { ?>
<h1>Not Authenticated</h1>
<a href="$PHP_SELF?dologin=1">Click here to login</a>
<?php } ?>
</body>
</html>
© 2010 Faculty of Information Technology BUT Last modification: Thu Feb 10 15:19:42 2011 |