Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
madis
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Emmanuel Meister
madis
Commits
59f87894
Commit
59f87894
authored
1 year ago
by
Jonathan Foucher
Browse files
Options
Downloads
Patches
Plain Diff
Fix
soluris/madis#896
parent
b09de5f5
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
config/services/event_subscriber.yaml
+9
-1
9 additions, 1 deletion
config/services/event_subscriber.yaml
src/Application/Symfony/EventSubscriber/Doctrine/LinkUpdatedBySubscriber.php
+114
-0
114 additions, 0 deletions
...fony/EventSubscriber/Doctrine/LinkUpdatedBySubscriber.php
with
123 additions
and
1 deletion
config/services/event_subscriber.yaml
+
9
−
1
View file @
59f87894
...
...
@@ -26,7 +26,9 @@ services:
# ========
App\Application\Symfony\EventSubscriber\Doctrine\
:
resource
:
'
../../src/Application/Symfony/EventSubscriber/Doctrine'
exclude
:
'
../../src/Application/Symfony/EventSubscriber/Doctrine/LinkCreatorSubscriber.php'
exclude
:
-
'
../../src/Application/Symfony/EventSubscriber/Doctrine/LinkCreatorSubscriber.php'
# - '../../src/Application/Symfony/EventSubscriber/Doctrine/LinkUpdatedBySubscriber.php'
tags
:
-
{
name
:
'
doctrine.event_subscriber'
}
...
...
@@ -36,6 +38,12 @@ services:
tags
:
-
{
name
:
'
doctrine.event_subscriber'
}
App\Application\Symfony\EventSubscriber\Doctrine\LinkUpdatedBySubscriber
:
arguments
:
$linkAdmin
:
'
%env(bool:APP_IMPERSONATE_CREATOR_IS_ADMIN)%'
tags
:
-
{
name
:
'
doctrine.event_subscriber'
}
App\Domain\
:
resource
:
'
../../src/Domain/*/Symfony/EventSubscriber/Doctrine'
tags
:
...
...
This diff is collapsed.
Click to expand it.
src/Application/Symfony/EventSubscriber/Doctrine/LinkUpdatedBySubscriber.php
0 → 100644
+
114
−
0
View file @
59f87894
<?php
/**
* This file is part of the MADIS - RGPD Management application.
*
* @copyright Copyright (c) 2018-2019 Soluris - Solutions Numériques Territoriales Innovantes
* @author Donovan Bourlard <donovan@awkan.fr>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
declare
(
strict_types
=
1
);
namespace
App\Application\Symfony\EventSubscriber\Doctrine
;
use
App\Application\Symfony\Security\UserProvider
;
use
App\Domain\User\Model\User
;
use
Doctrine\Common\EventSubscriber
;
use
Doctrine\ORM\Event\LifecycleEventArgs
;
use
Symfony\Component\Security\Core\Authentication\Token\SwitchUserToken
;
/**
* Class LinkUpdatedBySubscriber
* Link authenticated user to object.
*/
class
LinkUpdatedBySubscriber
implements
EventSubscriber
{
/**
* @var UserProvider
*/
private
$userProvider
;
/**
* @var bool
*/
private
$linkAdmin
;
public
function
__construct
(
UserProvider
$userProvider
,
bool
$linkAdmin
)
{
$this
->
userProvider
=
$userProvider
;
$this
->
linkAdmin
=
$linkAdmin
;
}
public
function
getSubscribedEvents
()
{
return
[
'preUpdate'
,
];
}
/**
* PrePersist.
*
* Link creator to object.
* That is to say that every time you will persist an object,
* the user will be added to related object.
*
* @throws \Exception
*/
public
function
preUpdate
(
LifecycleEventArgs
$args
):
void
{
$em
=
$args
->
getEntityManager
();
$object
=
$args
->
getObject
();
$methods
=
\get_class_methods
(
$object
);
$token
=
$this
->
userProvider
->
getToken
();
$user
=
$token
?
$token
->
getUser
()
:
null
;
// Only link if prerequisite are right :
// - Model has required methods
// - Connected user is a User Model (i.e. avoid anonymous users)
if
(
!
\in_array
(
'setUpdatedBy'
,
$methods
)
||
!
\in_array
(
'getUpdatedBy'
,
$methods
)
||
!
$user
instanceof
User
)
{
return
;
}
// No need to link admin, then link logged user (even if it is an impersonated one)
if
(
!
$this
->
linkAdmin
)
{
$object
->
setUpdatedBy
(
$user
->
getFullName
());
return
;
}
// We link admin, then check it original token
if
(
$token
instanceof
SwitchUserToken
)
{
/** @var User $originalUser */
$originalUser
=
$token
->
getOriginalToken
()
->
getUser
();
$originalUserId
=
$originalUser
->
getId
()
->
toString
();
$originalUser
=
$em
->
find
(
User
::
class
,
$originalUserId
);
$object
->
setUpdatedBy
(
$originalUser
->
getFullName
());
return
;
}
// Can't link admin, then link standard user
$object
->
setUpdatedBy
(
$user
->
getFullName
());
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment