Cosign Filter Implementation in PHPDownload: cosign-php-0.9.1.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 May 2012 - version 0.9.1 - typo in stream_socket_client 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");
// even if Cosign cookie is set, cosign_auth() must be called every time to check its validity
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 echo $_SERVER['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>
<h1>Cosign protected page</h1>
Your login is <b><?php echo $_SERVER['REMOTE_USER']; ?></b>
</body>
</html>
Page With Logout
<?php
include_once("cosign.php");
if (!cosign_auth()) {
header("403 Not Authorized");
exit();
}
?>
<html>
<head>Cosign protected page</head>
</html>
<body>
<h1>Cosign protected page</h1>
Your login is <b><?php echo $_SERVER['REMOTE_USER']; ?></b>
<p><a href="<?php echo $cosign_cfg['CosignRedirect']."/logout.cgi"; ?>">Log Out</a>
</body>
</html>
© 2012 Faculty of Information Technology BUT Last modification: Thu May 31 22:08:22 2012 |