mirror of
https://github.com/YGGverse/YGGtracker.git
synced 2025-01-24 21:54:22 +00:00
add user moderation events #4
This commit is contained in:
parent
6ea0024b94
commit
0339ee9f23
@ -706,7 +706,7 @@ class ActivityController extends AbstractController
|
|||||||
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
// Page
|
// @TODO Page
|
||||||
|
|
||||||
default:
|
default:
|
||||||
|
|
||||||
|
@ -309,7 +309,8 @@ class UserController extends AbstractController
|
|||||||
public function toggleModerator(
|
public function toggleModerator(
|
||||||
Request $request,
|
Request $request,
|
||||||
TranslatorInterface $translator,
|
TranslatorInterface $translator,
|
||||||
UserService $userService
|
UserService $userService,
|
||||||
|
ActivityService $activityService
|
||||||
): Response
|
): Response
|
||||||
{
|
{
|
||||||
// Init user
|
// Init user
|
||||||
@ -331,10 +332,29 @@ class UserController extends AbstractController
|
|||||||
throw $this->createNotFoundException();
|
throw $this->createNotFoundException();
|
||||||
}
|
}
|
||||||
|
|
||||||
// Update
|
// Update user moderator
|
||||||
$userService->toggleUserModerator(
|
$value = $userService->toggleUserModerator(
|
||||||
$userTarget->getId()
|
$userTarget->getId()
|
||||||
);
|
)->isModerator();
|
||||||
|
|
||||||
|
// Add activity event
|
||||||
|
if ($value)
|
||||||
|
{
|
||||||
|
$activityService->addEventUserModeratorAdd(
|
||||||
|
$user->getId(),
|
||||||
|
time(),
|
||||||
|
$userTarget->getId()
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
else
|
||||||
|
{
|
||||||
|
$activityService->addEventUserModeratorDelete(
|
||||||
|
$user->getId(),
|
||||||
|
time(),
|
||||||
|
$userTarget->getId()
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
// Redirect to info article created
|
// Redirect to info article created
|
||||||
return $this->redirectToRoute(
|
return $this->redirectToRoute(
|
||||||
@ -361,7 +381,8 @@ class UserController extends AbstractController
|
|||||||
public function toggleStatus(
|
public function toggleStatus(
|
||||||
Request $request,
|
Request $request,
|
||||||
TranslatorInterface $translator,
|
TranslatorInterface $translator,
|
||||||
UserService $userService
|
UserService $userService,
|
||||||
|
ActivityService $activityService
|
||||||
): Response
|
): Response
|
||||||
{
|
{
|
||||||
// Init user
|
// Init user
|
||||||
@ -383,10 +404,29 @@ class UserController extends AbstractController
|
|||||||
throw $this->createNotFoundException();
|
throw $this->createNotFoundException();
|
||||||
}
|
}
|
||||||
|
|
||||||
// Update
|
// Update user status
|
||||||
$userService->toggleUserStatus(
|
$value = $userService->toggleUserStatus(
|
||||||
$userTarget->getId()
|
$userTarget->getId()
|
||||||
);
|
)->isStatus();
|
||||||
|
|
||||||
|
// Add activity event
|
||||||
|
if ($value)
|
||||||
|
{
|
||||||
|
$activityService->addEventUserStatusAdd(
|
||||||
|
$user->getId(),
|
||||||
|
time(),
|
||||||
|
$userTarget->getId()
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
else
|
||||||
|
{
|
||||||
|
$activityService->addEventUserStatusDelete(
|
||||||
|
$user->getId(),
|
||||||
|
time(),
|
||||||
|
$userTarget->getId()
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
// Redirect to info article created
|
// Redirect to info article created
|
||||||
return $this->redirectToRoute(
|
return $this->redirectToRoute(
|
||||||
@ -415,7 +455,8 @@ class UserController extends AbstractController
|
|||||||
TranslatorInterface $translator,
|
TranslatorInterface $translator,
|
||||||
UserService $userService,
|
UserService $userService,
|
||||||
ArticleService $articleService,
|
ArticleService $articleService,
|
||||||
TorrentService $torrentService
|
TorrentService $torrentService,
|
||||||
|
ActivityService $activityService
|
||||||
): Response
|
): Response
|
||||||
{
|
{
|
||||||
// Init user
|
// Init user
|
||||||
@ -454,12 +495,33 @@ class UserController extends AbstractController
|
|||||||
$userTarget->getId(),
|
$userTarget->getId(),
|
||||||
true
|
true
|
||||||
);
|
);
|
||||||
|
|
||||||
|
// @TODO make event for each item
|
||||||
}
|
}
|
||||||
|
|
||||||
// Update user approved
|
// Update user approved
|
||||||
$userService->toggleUserApproved(
|
$value = $userService->toggleUserApproved(
|
||||||
$userTarget->getId()
|
$userTarget->getId()
|
||||||
);
|
)->isApproved();
|
||||||
|
|
||||||
|
// Add activity event
|
||||||
|
if ($value)
|
||||||
|
{
|
||||||
|
$activityService->addEventUserApproveAdd(
|
||||||
|
$user->getId(),
|
||||||
|
time(),
|
||||||
|
$userTarget->getId()
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
else
|
||||||
|
{
|
||||||
|
$activityService->addEventUserApproveDelete(
|
||||||
|
$user->getId(),
|
||||||
|
time(),
|
||||||
|
$userTarget->getId()
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
// Redirect to info article created
|
// Redirect to info article created
|
||||||
return $this->redirectToRoute(
|
return $this->redirectToRoute(
|
||||||
|
@ -55,6 +55,201 @@ class ActivityService
|
|||||||
return $activity;
|
return $activity;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// User approved
|
||||||
|
public function addEventUserApproveAdd(
|
||||||
|
int $userId,
|
||||||
|
int $added,
|
||||||
|
int $userIdTarget,
|
||||||
|
): ?Activity
|
||||||
|
{
|
||||||
|
$activity = new Activity();
|
||||||
|
|
||||||
|
$activity->setEvent(
|
||||||
|
Activity::EVENT_USER_APPROVE_ADD
|
||||||
|
);
|
||||||
|
|
||||||
|
$activity->setUserId(
|
||||||
|
$userId
|
||||||
|
);
|
||||||
|
|
||||||
|
$activity->setAdded(
|
||||||
|
$added
|
||||||
|
);
|
||||||
|
|
||||||
|
$activity->setData(
|
||||||
|
[
|
||||||
|
'userId' => $userIdTarget
|
||||||
|
]
|
||||||
|
);
|
||||||
|
|
||||||
|
$this->entityManagerInterface->persist($activity);
|
||||||
|
$this->entityManagerInterface->flush();
|
||||||
|
|
||||||
|
return $activity;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function addEventUserApproveDelete(
|
||||||
|
int $userId,
|
||||||
|
int $added,
|
||||||
|
int $userIdTarget,
|
||||||
|
): ?Activity
|
||||||
|
{
|
||||||
|
$activity = new Activity();
|
||||||
|
|
||||||
|
$activity->setEvent(
|
||||||
|
Activity::EVENT_USER_APPROVE_DELETE
|
||||||
|
);
|
||||||
|
|
||||||
|
$activity->setUserId(
|
||||||
|
$userId
|
||||||
|
);
|
||||||
|
|
||||||
|
$activity->setAdded(
|
||||||
|
$added
|
||||||
|
);
|
||||||
|
|
||||||
|
$activity->setData(
|
||||||
|
[
|
||||||
|
'userId' => $userIdTarget
|
||||||
|
]
|
||||||
|
);
|
||||||
|
|
||||||
|
$this->entityManagerInterface->persist($activity);
|
||||||
|
$this->entityManagerInterface->flush();
|
||||||
|
|
||||||
|
return $activity;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// User status
|
||||||
|
public function addEventUserStatusAdd(
|
||||||
|
int $userId,
|
||||||
|
int $added,
|
||||||
|
int $userIdTarget,
|
||||||
|
): ?Activity
|
||||||
|
{
|
||||||
|
$activity = new Activity();
|
||||||
|
|
||||||
|
$activity->setEvent(
|
||||||
|
Activity::EVENT_USER_STATUS_ADD
|
||||||
|
);
|
||||||
|
|
||||||
|
$activity->setUserId(
|
||||||
|
$userId
|
||||||
|
);
|
||||||
|
|
||||||
|
$activity->setAdded(
|
||||||
|
$added
|
||||||
|
);
|
||||||
|
|
||||||
|
$activity->setData(
|
||||||
|
[
|
||||||
|
'userId' => $userIdTarget
|
||||||
|
]
|
||||||
|
);
|
||||||
|
|
||||||
|
$this->entityManagerInterface->persist($activity);
|
||||||
|
$this->entityManagerInterface->flush();
|
||||||
|
|
||||||
|
return $activity;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function addEventUserStatusDelete(
|
||||||
|
int $userId,
|
||||||
|
int $added,
|
||||||
|
int $userIdTarget,
|
||||||
|
): ?Activity
|
||||||
|
{
|
||||||
|
$activity = new Activity();
|
||||||
|
|
||||||
|
$activity->setEvent(
|
||||||
|
Activity::EVENT_USER_STATUS_DELETE
|
||||||
|
);
|
||||||
|
|
||||||
|
$activity->setUserId(
|
||||||
|
$userId
|
||||||
|
);
|
||||||
|
|
||||||
|
$activity->setAdded(
|
||||||
|
$added
|
||||||
|
);
|
||||||
|
|
||||||
|
$activity->setData(
|
||||||
|
[
|
||||||
|
'userId' => $userIdTarget
|
||||||
|
]
|
||||||
|
);
|
||||||
|
|
||||||
|
$this->entityManagerInterface->persist($activity);
|
||||||
|
$this->entityManagerInterface->flush();
|
||||||
|
|
||||||
|
return $activity;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// User moderator
|
||||||
|
public function addEventUserModeratorAdd(
|
||||||
|
int $userId,
|
||||||
|
int $added,
|
||||||
|
int $userIdTarget,
|
||||||
|
): ?Activity
|
||||||
|
{
|
||||||
|
$activity = new Activity();
|
||||||
|
|
||||||
|
$activity->setEvent(
|
||||||
|
Activity::EVENT_USER_MODERATOR_ADD
|
||||||
|
);
|
||||||
|
|
||||||
|
$activity->setUserId(
|
||||||
|
$userId
|
||||||
|
);
|
||||||
|
|
||||||
|
$activity->setAdded(
|
||||||
|
$added
|
||||||
|
);
|
||||||
|
|
||||||
|
$activity->setData(
|
||||||
|
[
|
||||||
|
'userId' => $userIdTarget
|
||||||
|
]
|
||||||
|
);
|
||||||
|
|
||||||
|
$this->entityManagerInterface->persist($activity);
|
||||||
|
$this->entityManagerInterface->flush();
|
||||||
|
|
||||||
|
return $activity;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function addEventUserModeratorDelete(
|
||||||
|
int $userId,
|
||||||
|
int $added,
|
||||||
|
int $userIdTarget,
|
||||||
|
): ?Activity
|
||||||
|
{
|
||||||
|
$activity = new Activity();
|
||||||
|
|
||||||
|
$activity->setEvent(
|
||||||
|
Activity::EVENT_USER_MODERATOR_DELETE
|
||||||
|
);
|
||||||
|
|
||||||
|
$activity->setUserId(
|
||||||
|
$userId
|
||||||
|
);
|
||||||
|
|
||||||
|
$activity->setAdded(
|
||||||
|
$added
|
||||||
|
);
|
||||||
|
|
||||||
|
$activity->setData(
|
||||||
|
[
|
||||||
|
'userId' => $userIdTarget
|
||||||
|
]
|
||||||
|
);
|
||||||
|
|
||||||
|
$this->entityManagerInterface->persist($activity);
|
||||||
|
$this->entityManagerInterface->flush();
|
||||||
|
|
||||||
|
return $activity;
|
||||||
|
}
|
||||||
|
|
||||||
/// User star
|
/// User star
|
||||||
public function addEventUserStarAdd(
|
public function addEventUserStarAdd(
|
||||||
int $userId,
|
int $userId,
|
||||||
|
@ -179,7 +179,7 @@ class UserService
|
|||||||
|
|
||||||
public function toggleUserModerator(
|
public function toggleUserModerator(
|
||||||
int $userId
|
int $userId
|
||||||
): void
|
): ?User
|
||||||
{
|
{
|
||||||
if ($user = $this->getUser($userId))
|
if ($user = $this->getUser($userId))
|
||||||
{
|
{
|
||||||
@ -190,11 +190,13 @@ class UserService
|
|||||||
$this->entityManagerInterface->persist($user);
|
$this->entityManagerInterface->persist($user);
|
||||||
$this->entityManagerInterface->flush();
|
$this->entityManagerInterface->flush();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return $user;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function toggleUserStatus(
|
public function toggleUserStatus(
|
||||||
int $userId
|
int $userId
|
||||||
): void
|
): ?User
|
||||||
{
|
{
|
||||||
if ($user = $this->getUser($userId))
|
if ($user = $this->getUser($userId))
|
||||||
{
|
{
|
||||||
@ -205,11 +207,13 @@ class UserService
|
|||||||
$this->entityManagerInterface->persist($user);
|
$this->entityManagerInterface->persist($user);
|
||||||
$this->entityManagerInterface->flush();
|
$this->entityManagerInterface->flush();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return $user;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function toggleUserApproved(
|
public function toggleUserApproved(
|
||||||
int $userId
|
int $userId
|
||||||
): void
|
): ?User
|
||||||
{
|
{
|
||||||
if ($user = $this->getUser($userId))
|
if ($user = $this->getUser($userId))
|
||||||
{
|
{
|
||||||
@ -220,5 +224,7 @@ class UserService
|
|||||||
$this->entityManagerInterface->persist($user);
|
$this->entityManagerInterface->persist($user);
|
||||||
$this->entityManagerInterface->flush();
|
$this->entityManagerInterface->flush();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return $user;
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user