mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-18 15:33:15 +00:00
PHRAS-342 #fix remove usr list when user is deleted
This commit is contained in:
@@ -13,7 +13,7 @@ namespace Alchemy\Phrasea\Core;
|
|||||||
|
|
||||||
class Version
|
class Version
|
||||||
{
|
{
|
||||||
protected static $number = '3.8.6-alpha.3';
|
protected static $number = '3.8.6-alpha.4';
|
||||||
protected static $name = 'Falcarius';
|
protected static $name = 'Falcarius';
|
||||||
|
|
||||||
public static function getNumber()
|
public static function getNumber()
|
||||||
|
@@ -984,6 +984,12 @@ class User_Adapter implements User_Interface, cache_cacheableInterface
|
|||||||
$this->app['EM']->remove($session);
|
$this->app['EM']->remove($session);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$repo = $this->app['EM']->getRepository('Entities\UsrList');
|
||||||
|
|
||||||
|
foreach ($repo->findUserLists($this) as $list) {
|
||||||
|
$this->app['EM']->remove($list);
|
||||||
|
}
|
||||||
|
|
||||||
$this->app['EM']->flush();
|
$this->app['EM']->flush();
|
||||||
|
|
||||||
$sql = 'UPDATE usr SET usr_login = :usr_login , usr_mail = null
|
$sql = 'UPDATE usr SET usr_login = :usr_login , usr_mail = null
|
||||||
|
72
lib/classes/patch/386alpha4a.php
Normal file
72
lib/classes/patch/386alpha4a.php
Normal file
@@ -0,0 +1,72 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* This file is part of Phraseanet
|
||||||
|
*
|
||||||
|
* (c) 2005-2014 Alchemy
|
||||||
|
*
|
||||||
|
* For the full copyright and license information, please view the LICENSE
|
||||||
|
* file that was distributed with this source code.
|
||||||
|
*/
|
||||||
|
|
||||||
|
use Alchemy\Phrasea\Application;
|
||||||
|
use Symfony\Component\Finder\Finder;
|
||||||
|
use Symfony\Component\Filesystem\Filesystem;
|
||||||
|
|
||||||
|
class patch_386alpha4a implements patchInterface
|
||||||
|
{
|
||||||
|
/** @var string */
|
||||||
|
private $release = '3.8.6-alpha.4';
|
||||||
|
|
||||||
|
/** @var array */
|
||||||
|
private $concern = array(base::APPLICATION_BOX);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritdoc}
|
||||||
|
*/
|
||||||
|
public function get_release()
|
||||||
|
{
|
||||||
|
return $this->release;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritdoc}
|
||||||
|
*/
|
||||||
|
public function require_all_upgrades()
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritdoc}
|
||||||
|
*/
|
||||||
|
public function concern()
|
||||||
|
{
|
||||||
|
return $this->concern;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritdoc}
|
||||||
|
*/
|
||||||
|
public function apply(base $appbox, Application $app)
|
||||||
|
{
|
||||||
|
$sql = 'SELECT usr_id FROM usr WHERE usr_login LIKE "(#deleted_%"';
|
||||||
|
$stmt = $appbox->get_connection()->prepare($sql);
|
||||||
|
$stmt->execute();
|
||||||
|
|
||||||
|
$repo = $app['EM']->getRepository('Entities\UsrList');
|
||||||
|
|
||||||
|
$users = $stmt->fetchAll(\PDO::FETCH_ASSOC);
|
||||||
|
|
||||||
|
foreach ($users as $user) {
|
||||||
|
foreach ($repo->findUserLists(new \User_Adapter($user['usr_id'], $app)) as $list) {
|
||||||
|
$app['EM']->remove($list);
|
||||||
|
}
|
||||||
|
$app['EM']->flush();
|
||||||
|
}
|
||||||
|
|
||||||
|
$stmt->closeCursor();
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
Reference in New Issue
Block a user