2016-10-14 03:30:05 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace SilverStripe\Security\Tests\BasicAuthTest;
|
|
|
|
|
|
|
|
use SilverStripe\Control\Controller;
|
|
|
|
use SilverStripe\Dev\TestOnly;
|
|
|
|
use SilverStripe\Security\BasicAuth;
|
|
|
|
|
2017-07-03 02:21:27 +02:00
|
|
|
/**
|
|
|
|
* @skipUpgrade
|
|
|
|
*/
|
2016-10-14 03:30:05 +02:00
|
|
|
class ControllerSecuredWithPermission extends Controller implements TestOnly
|
|
|
|
{
|
|
|
|
|
2016-12-16 05:34:21 +01:00
|
|
|
static $post_init_called = false;
|
2016-10-14 03:30:05 +02:00
|
|
|
|
2016-12-16 05:34:21 +01:00
|
|
|
static $index_called = false;
|
2016-10-14 03:30:05 +02:00
|
|
|
|
2016-12-16 05:34:21 +01:00
|
|
|
protected $template = 'BlankPage';
|
2016-10-14 03:30:05 +02:00
|
|
|
|
2016-12-16 05:34:21 +01:00
|
|
|
protected function init()
|
|
|
|
{
|
|
|
|
self::$post_init_called = false;
|
|
|
|
self::$index_called = false;
|
2016-10-14 03:30:05 +02:00
|
|
|
|
2016-12-16 05:34:21 +01:00
|
|
|
BasicAuth::protect_entire_site(true, 'MYCODE');
|
|
|
|
parent::init();
|
2016-10-14 03:30:05 +02:00
|
|
|
|
2016-12-16 05:34:21 +01:00
|
|
|
self::$post_init_called = true;
|
|
|
|
}
|
2016-10-14 03:30:05 +02:00
|
|
|
|
2016-12-16 05:34:21 +01:00
|
|
|
public function index()
|
|
|
|
{
|
|
|
|
self::$index_called = true;
|
2017-06-22 12:50:45 +02:00
|
|
|
return "index";
|
2016-12-16 05:34:21 +01:00
|
|
|
}
|
2016-10-14 03:30:05 +02:00
|
|
|
|
2016-12-16 05:34:21 +01:00
|
|
|
public function Link($action = null)
|
|
|
|
{
|
|
|
|
return Controller::join_links('BasicAuthTest_ControllerSecuredWithPermission', $action, '/');
|
|
|
|
}
|
2016-10-14 03:30:05 +02:00
|
|
|
}
|