Upgrade phpCAS
[piwik-CASLogin.git] / CAS / docs / examples / example_service_that_proxies.php
1 <?php
2
3 /**
4  *  Example for a proxied proxy
5  *
6  * PHP Version 5
7  *
8  * @file     example_service_that_proxies.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::proxy(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 // If you want your service to be proxied you have to enable it (default
38 // disabled) and define an accepable list of proxies that are allowed to
39 // proxy your service.
40 //
41 // Add each allowed proxy definition object. For the normal CAS_ProxyChain
42 // class, the constructor takes an array of proxies to match. The list is in
43 // reverse just as seen from the service. Proxies have to be defined in reverse
44 // from the service to the user. If a user hits service A and gets proxied via
45 // B to service C the list of acceptable on C would be array(B,A). The definition
46 // of an individual proxy can be either a string or a regexp (preg_match is used)
47 // that will be matched against the proxy list supplied by the cas server
48 // when validating the proxy tickets. The strings are compared starting from
49 // the beginning and must fully match with the proxies in the list.
50 // Example:
51 //              phpCAS::allowProxyChain(new CAS_ProxyChain(array(
52 //                              'https://app.example.com/'
53 //                      )));
54 //              phpCAS::allowProxyChain(new CAS_ProxyChain(array(
55 //                              '/^https:\/\/app[0-9]\.example\.com\/rest\//',
56 //                              'http://client.example.com/'
57 //                      )));
58 phpCAS::allowProxyChain(new CAS_ProxyChain(array($pgtUrlRegexp)));
59
60 // For quick testing or in certain production screnarios you might want to
61 // allow allow any other valid service to proxy your service. To do so, add
62 // the "Any" chain:
63 //              phpcas::allowProxyChain(new CAS_ProxyChain_Any);
64 // THIS SETTING IS HOWEVER NOT RECOMMENDED FOR PRODUCTION AND HAS SECURITY
65 // IMPLICATIONS: YOU ARE ALLOWING ANY SERVICE TO ACT ON BEHALF OF A USER
66 // ON THIS SERVICE.
67 //phpcas::allowProxyChain(new CAS_ProxyChain_Any);
68
69 // force CAS authentication
70 phpCAS::forceAuthentication();
71
72 // at this step, the user has been authenticated by the CAS server
73 // and the user's login name can be read with phpCAS::getUser().
74
75 // moreover, a PGT was retrieved from the CAS server that will
76 // permit to gain accesses to new services.
77
78
79
80 ?>
81 <html>
82   <head>
83     <title>phpCAS proxied proxy service example</title>
84     <link rel="stylesheet" type='text/css' href='example.css'/>
85   </head>
86   <body>
87     <h1>I am a service that can be proxied. In turn, I proxy another service.</h1>
88     <?php require 'script_info.php' ?>
89     <p>the user's login is <b><?php echo phpCAS::getUser(); ?></b>.</p>
90     <h2>Response from service <?php echo $serviceUrl; ?></h2>
91 <?php
92   flush();
93   // call a service and change the color depending on the result
94 if ( phpCAS::serviceWeb($serviceUrl, $err_code, $output) ) {
95     echo '<div class="success">';
96 } else {
97     echo '<div class="error">';
98 }
99   echo $output;
100   echo '</div>';
101 ?>
102   </body>
103 </html>
104