Deprecated
This repository is no longer being actively maintained. We encourage you to not use this code.
If you rely on this code you might want to fork the repository to keep your systems from breaking, if we remove this repository in the future., (*1)
LswRemoteTemplateBundle
On December 21, 2011 Stefan Koopmanschap wrote an excellent article on the LeaseWeb Labs blog
titled âPainless (well, less painful) migration to Symfony2.â In his article he explained the
advantages of doing a gradual migration., (*2)
see: http://www.leaseweblabs.com/2011/12/painless-well-less-painful-migration-to-symfony2/, (*3)
The technical solution that he proposed to make this
possible was to â...wrap your old application into your Symfony2 application.â He even provided
us the tool (The IngewikkeldWrapperBundle code) to do so., (*4)
see: https://github.com/Ingewikkeld/IngewikkeldWrapperBundle, (*5)
We were very much inspired by his passionate elucidation and we were fully convinced of the
urge to start migrating to Symfony2 as soon as possible. However, he also provided us with a
âA word of cautionâ about 2 things: performance and authentication/authorization. This might
get some people worried, but not us: it challenged us to find a solution for those two open issues., (*6)
As Stefan Koopmanschap explains, in his solution you â...use two frameworks for all your legacy
pagesâ and â...two frameworks add more overhead than one.â This got us a little worried.
Losing performance was not really an option, so we had to find a solution., (*7)
Symfony 1 & 2 both use a Front Controller architecture (one file handling all requests) we were
just looking for seperating traffic between the two front controllers. Stefan proposed to do so
using Symfony 2 routing and make it use a fall-back route to handle your legacy URLs. We hereby
propose to do it using a .htaccess rewrite. This has virtually no overhead, because every Symfony
request gets rewritten by mod_rewrite anyway., (*8)
2. Authentication/authorization
He also wrote: âAnother issue is sessions.â Further clarifying the problem by stating: âIf your
application works with authentication and authorization, youâll now have to work with two different
systems that have a different approach to authentication and authorizationâ. Since our application
requires both authentication and authorization we had to come up with a solution here. We decided
to move the authentication (login page) to Symfony2 and make Symfony1 âtrustâ this authentication
done by âSymfony2â., (*9)
To realize this solution we had to enable Symfony1 to âseeâ and âunderstandâ the Symfony2 session.
First we made sure that both applications use the same name by setting the Symfony2 âframework_session_nameâ
setting in âapp/config/config.ymlâ to âsymfonyâ. Then we reverse engineered the Symfony2 session
storage and found that it serializes some PHP object into it. To be able to unserialize those objects
we had to register an autoload function in Symfony1 using âspl_autoload_registerâ, (*10)
Finally, instructions, (*11)
To solve the performance problem we installed Symfony2 in the âsf2â directory inside the Symfony1
project (next to âappsâ) and we started by changing the lines in our âweb/.htaccessâ file from:, (*12)
# redirect to front controller
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php [QSA,L]
And added these lines above it:, (*13)
``` bash, (*14)
redirect to new symfony2 front controller
RewriteCond %{REQUEST_FILENAME} !-f, (*15)
but only if URL matches one from this list:
RewriteCond %{REQUEST_URI} ^/users/login, (*16)
end of list
RewriteRule ^(.*)$ sf2/web/$1 [QSA,L], (*17)
To support the Symfony2 authentication and authorization in Symfony1 we created a
âSymfony2AuthenticationFilterâ class. This filter can be loaded by putting it under âlib/filterâ
folder in your Symfony1 project and add the following lines in âapps/ssc/config/filters.ymlâ:
symfony2AuthenticationFilter:
class: Symfony2AuthenticationFilter, (*18)
For configuration of the filter we added a few new application settings to â/apps/ssc/config/app.ymlâ:
all:
symfony2:
paths: ['sf2/vendor/symfony/src', 'sf2/src', 'sf2/vendor/bundles', 'sf2/vendor/doctrine-common/lib']
attribute: '_security_main', (*19)
This path setting shows that Symfony2 is located in the âsf2â sub-directory of the Symfony1 project.
The attribute reflects the name of the Symfony2 firewall. The code of the Symfony2AuthenticationFilter
is this:
``` php
function symfony2_autoload ($pClassName)
{
$sf2Paths = sfConfig::get('app_symfony2_paths');
foreach ($sf2Paths as $path)
{
$path = sfConfig::get('sf_root_dir') . DIRECTORY_SEPARATOR . $path;
$file = $path . DIRECTORY_SEPARATOR . str_replace('\\', DIRECTORY_SEPARATOR ,$pClassName ) . ".php";
if (file_exists($file))
{
include($file);
break;
}
}
}
spl_autoload_register("symfony2_autoload");
use Symfony\Component\Security\Core\Authentication\Token\UsernamePasswordToken;
use Symfony\Component\Security\Core\User\User;
use Symfony\Component\Security\Core\Role\Role;
class Symfony2AuthenticationFilter extends sfFilter
{
public function execute($filterChain)
{ // get session data
$sessionData = null;
$symfony2Attribute = sfConfig::get('app_symfony2_attribute');
if (isset($_SESSION['_symfony2']['attributes'][$symfony2Attribute]))
{ $sessionData = unserialize($_SESSION['_symfony2']['attributes'][$symfony2Attribute]);
}
// get sf1 username
if (!$this->getContext()->getUser()->isAuthenticated()) $sf1UserName = false;
else $sf1UserName = $this->getContext()->getUser()->getUserName();
// get sf2 username
if (!$sessionData) $sf2UserName = false;
else $sf2UserName = $sessionData->getUser()->getUserName();
// if usernames do not match
if ($sf1UserName!=$sf2UserName)
{ if ($sf2UserName) // if symfony2 is signed in
{ // signin to symfony1
$this->getContext()->getUser()->setUserName($sf2UserName);
$this->getContext()->getUser()->setAuthenticated(true);
$this->getContext()->getUser()->clearCredentials();
}
else // if symfony2 is not signed in
{ // signout from symfony1
$this->getContext()->getUser()->setUserName(false);
$this->getContext()->getUser()->setAuthenticated(false);
$this->getContext()->getUser()->clearCredentials();
// redirect to current page
$path = $this->getContext()->getRequest()->getPathInfo();
$this->getContext()->getController()->redirect($path);
}
}
// and execute next filter
$filterChain->execute();
}
}
3. Bundle installation
Installation is broken down in the following steps:, (*20)
- Download LswRemoteTemplateBundle using composer
- Enable the Bundle
- Make sure the cURL module in PHP is enabled
Step 1: Download LswRemoteTemplateBundle using composer
Add LswRemoteTemplateBundle in your composer.json:, (*21)
{
"require": {
"leaseweb/remote-template-bundle": "*",
...
}
}
Now tell composer to download the bundle by running the command:, (*22)
``` bash
$ php composer.phar update leaseweb/remote-template-bundle, (*23)
Composer will install the bundle to your project's `vendor/leaseweb` directory.
### Step 2: Enable the bundle
Enable the bundle in the kernel:
``` php
It should display that the option "cURL support" is set to "enabled"., (*24)
This package should work on a Windows installation as well provided the CURL support
is enabled in PHP., (*25)