Upgrade phpCAS
[piwik-CASLogin.git] / CAS / docs / examples / example_html.php
1 <?php
2
3 /**
4  * Example that changes html of phpcas messages
5  *
6  * PHP Version 5
7  *
8  * @file     example_html.php
9  * @category Authentication
10  * @package  PhpCAS
11  * @author   Joachim Fritschi <jfritschi@freenet.de>
12  * @author   Adam Franco <afranco@middlebury.edu>
13  * @license  http://www.apache.org/licenses/LICENSE-2.0  Apache License 2.0
14  * @link     https://wiki.jasig.org/display/CASC/phpCAS
15  */
16
17 // Load the settings from the central config file
18 require_once 'config.php';
19 // Load the CAS lib
20 require_once $phpcas_path . '/CAS.php';
21
22 // Uncomment to enable debugging
23 phpCAS::setDebug();
24
25 // Initialize phpCAS
26 phpCAS::client(CAS_VERSION_2_0, $cas_host, $cas_port, $cas_context);
27
28 // For production use set the CA certificate that is the issuer of the cert
29 // on the CAS server and uncomment the line below
30 // phpCAS::setCasServerCACert($cas_server_ca_cert_path);
31
32 // For quick testing you can disable SSL validation of the CAS server.
33 // THIS SETTING IS NOT RECOMMENDED FOR PRODUCTION.
34 // VALIDATING THE CAS SERVER IS CRUCIAL TO THE SECURITY OF THE CAS PROTOCOL!
35 phpCAS::setNoCasServerValidation();
36
37 // customize HTML output
38 phpCAS::setHTMLHeader(
39     '<html>
40   <head>
41     <title>__TITLE__</title>
42   </head>
43   <body>
44   <h1>__TITLE__</h1>'
45 );
46 phpCAS::setHTMLFooter(
47     '<hr>
48     <address>
49       phpCAS __PHPCAS_VERSION__,
50       CAS __CAS_VERSION__ (__SERVER_BASE_URL__)
51     </address>
52   </body>
53 </html>'
54 );
55
56 // force CAS authentication
57 phpCAS::forceAuthentication();
58
59 // at this step, the user has been authenticated by the CAS server
60 // and the user's login name can be read with phpCAS::getUser().
61
62 // for this test, simply print that the authentication was successfull
63 ?>
64 <html>
65   <head>
66     <title>phpCAS simple client with HTML output customization</title>
67   </head>
68   <body>
69     <h1>Successfull Authentication!</h1>
70     <?php require 'script_info.php' ?>
71     <p>the user's login is <b><?php echo phpCAS::getUser(); ?></b>.</p>
72     <p>phpCAS version is <b><?php echo phpCAS::getVersion(); ?></b>.</p>
73   </body>
74 </html>