Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- ob_start();
- if(!isset($_SESSION))
- {
- session_start();
- }
- require ('openid.php');
- function logoutbutton() {
- echo "<form action=\"steamauth/logout.php\" method=\"post\"><input value=\"Logout\" type=\"submit\" /></form>"; //logout button
- }
- function steamlogin()
- {
- try {
- require("settings.php");
- $openid = new LightOpenID($steamauth['domainname']);
- $button['small'] = "small";
- $button['large_no'] = "large_noborder";
- $button['large'] = "large_border";
- $button = $button[$steamauth['buttonstyle']];
- if(!$openid->mode) {
- if(isset($_GET['login'])) {
- $openid->identity = 'http://steamcommunity.com/openid';
- header('Location: ' . $openid->authUrl());
- }
- echo "<form action=\"?login\" method=\"post\"> <input type=\"image\" src=\"http://cdn.steamcommunity.com/public/images/signinthroughsteam/sits_".$button.".png\"></form>";
- }
- elseif($openid->mode == 'cancel') {
- echo 'User has canceled authentication!';
- } else {
- if($openid->validate()) {
- $id = $openid->identity;
- $ptn = "/^http:\/\/steamcommunity\.com\/openid\/id\/(7[0-9]{15,25}+)$/";
- preg_match($ptn, $id, $matches);
- if(!isset($_SESSION))
- {
- session_start();
- }
- $_SESSION['steamid'] = $matches[1];
- if (isset($steamauth['loginpage'])) {
- header('Location: '.$steamauth['loginpage']);
- }
- } else {
- echo "User is not logged in.\n";
- }
- }
- } catch(ErrorException $e) {
- echo $e->getMessage();
- }
- }
- ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement