Skip to content

Commit f744bdd

Browse files
baseobject -backward compatibility
1 parent 8c010f5 commit f744bdd

7 files changed

+37
-5
lines changed

README.md

+5
Original file line numberDiff line numberDiff line change
@@ -101,10 +101,15 @@ If your application has links to login, for example, 'site/#', you need to c
101101

102102
However, it is best if you use Yii::$app->user->loginUrl[0], so it will take whatever is the correct loginUrl, so it will work with or without this plugin.
103103

104+
## Sample app
105+
106+
https://github.com/lucidprogrammer/yii2-adfs-saml20-sp
107+
104108
# Changelog
105109

106110
02 March 2018
107111
http://www.yiiframework.com/doc-2.0/yii-base-object.html
108112
The class name `Object` is invalid since PHP 7.2, use [[BaseObject]] instead.
113+
[handle backward compatibility to yii base Object]
109114
Added SamlSettings options for easy configuration.
110115
Tested with ADFS 3.0, Windows 2012 R2 & simplesamlphp (IDP)

src/BaseObject.php

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<?php
2+
/**
3+
* Saml Object which uses the simplesamlphp project
4+
*
5+
* @see https://simplesamlphp.org
6+
* @author Lucid Programmer<lucidprogrammer@hotmail.com>
7+
* @copyright 2017 Lucid Programmer
8+
* @license https://github.com/lucidprogrammer/yii2-simplesamlphp/blob/master/README.md
9+
* @link https://github.com/lucidprogrammer/yii2-simplesamlphp
10+
*/
11+
namespace lucidprogrammer\simplesamlphp;
12+
use yii\base\BaseObject as Another;
13+
14+
15+
if (class_exists('Another')) {
16+
class MiddleManClass extends Another { }
17+
} else {
18+
class MiddleManClass extends \yii\base\Object{ }
19+
}
20+
21+
class BaseObject extends MiddleManClass {
22+
23+
}

src/BootstrapClass.php

+2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
use yii\base\BootstrapInterface;
1616
use yii\base\Application;
1717
use lucidprogrammer\simplesamlphp\Saml;
18+
use lucidprogrammer\simplesamlphp\SamlSettings;
1819

1920
class BootstrapClass implements BootstrapInterface
2021
{
@@ -25,6 +26,7 @@ public function bootstrap($app)
2526
Yii::$app->controllerMap['_saml'] = '\lucidprogrammer\simplesamlphp\_SamlController';
2627
//a globally accessible instance of saml
2728
Yii::$container->set('saml',new Saml());
29+
Yii::$container->set('samlsettings',new SamlSettings());
2830
// TODO possibly check if the user has enabled /saml alias.
2931
});
3032
}

src/Saml.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
*/
1111

1212
namespace lucidprogrammer\simplesamlphp;
13-
use yii\base\BaseObject;
13+
use lucidprogrammer\simplesamlphp\BaseObject;
1414

1515
class Saml extends BaseObject {
1616

src/SamlIdentity.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515

1616
use yii;
17-
use yii\base\BaseObject;
17+
use lucidprogrammer\simplesamlphp\BaseObject;
1818
use yii\web\IdentityInterface;
1919
use lucidprogrammer\simplesamlphp\SamlIdentity;
2020

src/SamlSettings.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@
1010
*/
1111

1212
namespace lucidprogrammer\simplesamlphp;
13-
use yii\base\BaseObject;
13+
use lucidprogrammer\simplesamlphp\BaseObject;
1414

1515
class SamlSettings extends BaseObject {
1616
var $idAttribute;
1717
var $mappings;
1818

19-
public function __construct ( $idAttribute, $mappings=[], $config = [] ){
19+
public function __construct ( $idAttribute='', $mappings=[], $config = [] ){
2020
$this->idAttribute = $idAttribute;
2121
$this->mappings = $mappings;
2222
parent::__construct ( $config = [] );

src/SamlUser.php

+3-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@ function __construct($attributes=[]) {
2828
unset($mappings['idAttribute']);
2929
$mappings = array_values($mappings);
3030
}
31-
Yii::$container->set('samlsettings',new SamlSettings($idAttribute,$mappings,[]));
31+
Yii::$container->get('samlsettings')->idAttribute = $idAttribute;
32+
Yii::$container->get('samlsettings')->mappings = $mappings;
33+
3234
parent::__construct();
3335
}
3436
/**

0 commit comments

Comments
 (0)