Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[#250] fix security checks in report controller #256

Merged
merged 1 commit into from
Apr 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
82 changes: 43 additions & 39 deletions src/Controller/BerichtController.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
use App\Repository\VorfallRepository;
use App\Repository\VVTRepository;
use App\Service\CurrentTeamService;
use App\Service\SecurityService;
use Nucleos\DompdfBundle\Wrapper\DompdfWrapper;
use PhpOffice\PhpWord\IOFactory;
use PhpOffice\PhpWord\PhpWord;
Expand Down Expand Up @@ -54,6 +55,7 @@ public function backupSoftware(
CurrentTeamService $currentTeamService,
SoftwareRepository $softwareRepository,
VVTRepository $vvtRepository,
SecurityService $securityService,
)
{
$team = $currentTeamService->getCurrentTeam($this->getUser());
Expand All @@ -65,8 +67,7 @@ public function backupSoftware(
return $this->redirectNoReport();
}

// Center Team authentication
if ($team === null || $software[0]->getTeam() !== $team) {
if (!$securityService->checkTeamAccessToData($team, $software[0])) {
return $this->redirectToRoute('dashboard');
}

Expand All @@ -93,6 +94,7 @@ public function recoverySoftware(
Request $request,
CurrentTeamService $currentTeamService,
SoftwareRepository $softwareRepository,
SecurityService $securityService,
)
{
$team = $currentTeamService->getCurrentTeam($this->getUser());
Expand All @@ -102,8 +104,7 @@ public function recoverySoftware(
return $this->redirectNoReport();
}

// Center Team authentication
if ($team === null || $software[0]->getTeam() !== $team) {
if (!$securityService->checkTeamAccessToData($team, $software[0])) {
return $this->redirectToRoute('dashboard');
}

Expand All @@ -127,12 +128,12 @@ public function recoverySoftware(
public function report(
Request $request,
CurrentTeamService $currentTeamService,
SecurityService $securityService,
): Response
{
$team = $currentTeamService->getCurrentTeam($this->getUser());

// Center Team authentication
if (!$team) {
if (!$securityService->teamCheck($team)) {
return $this->redirectToRoute('dashboard');
}

Expand All @@ -144,12 +145,13 @@ public function report(
#[Route(path: '/akademie', name: '_akademie')]
public function reportAcademy(
AkademieBuchungenRepository $academyBillingRepository,
SecurityService $securityService,
): Response
{
$user = $this->getUser();
$team = $user->getAkademieUser();
// Admin Team authentication
if (!$user->hasAdminRole($team)) {

if (!$securityService->adminCheck($user, $team)) {
return $this->redirectToRoute('dashboard');
}

Expand All @@ -167,6 +169,7 @@ public function reportAudit(
Request $request,
CurrentTeamService $currentTeamService,
AuditTomRepository $auditTomRepository,
SecurityService $securityService,
)
{

Expand All @@ -188,8 +191,7 @@ public function reportAudit(
return $this->redirectNoReport();
}

// Center Team authentication
if ($team === null || $audit[0]->getTeam() !== $team) {
if (!$securityService->checkTeamAccessToData($team, $audit[0])) {
return $this->redirectToRoute('dashboard');
}

Expand All @@ -212,27 +214,29 @@ public function reportDataTransfer(
Request $request,
CurrentTeamService $currentTeamService,
DatenweitergabeRepository $dataTransferRepository,
SecurityService $securityService,
)
{
$id = $request->get('id');
$team = $currentTeamService->getCurrentTeam($this->getUser());


if ($id) {
$daten = $dataTransferRepository->findBy(['id'=>$id]);
} else {
$daten = $dataTransferRepository->findBy([
'team' => $team,
'activ' => true,
'art' => $request->get('art')
]);
$type = $request->get('art');
if ($type == '1') {
$daten = $dataTransferRepository->findActiveTransfersByTeam($team);
} else if ($type == '2') {
$daten = $dataTransferRepository->findActiveOrderProcessingsByTeam($team);
}
}

if (count($daten) < 1) {
if (!isset($daten) || count($daten) < 1) {
return $this->redirectNoReport();
}

// Center Team authentication
if ($team === null || $daten[0]->getTeam() !== $team) {
if (!$securityService->checkTeamAccessToTransfer($daten[0], $team)) {
return $this->redirectToRoute('dashboard');
}

Expand All @@ -257,6 +261,7 @@ public function reportDeletionConcept(
DompdfWrapper $wrapper,
Request $request,
CurrentTeamService $currentTeamService,
SecurityService $securityService,
LoeschkonzeptRepository $deletionConceptRepository,
)
{
Expand All @@ -274,8 +279,7 @@ public function reportDeletionConcept(
return $this->redirectNoReport();
}

// Center Team authentication
if ($team === null || $loeschkonzept[0]->getTeam() !== $team) {
if (!$securityService->checkTeamAccessToData($team, $loeschkonzept[0])) {
return $this->redirectToRoute('dashboard');
}

Expand All @@ -297,6 +301,7 @@ public function reportGenerateReports(
Request $request,
CurrentTeamService $currentTeamService,
ReportRepository $reportRepository,
SecurityService $securityService,
): Response
{
$team = $currentTeamService->getCurrentTeam($this->getUser());
Expand Down Expand Up @@ -326,8 +331,7 @@ public function reportGenerateReports(
return $this->redirectNoReport();
}

// Center Team authentication
if ($team === null || $report[0]->getTeam() !== $team) {
if (!$securityService->checkTeamAccessToData($team, $report[0])) {
return $this->redirectToRoute('dashboard');
}

Expand Down Expand Up @@ -403,6 +407,7 @@ public function reportGlobalTom(
DompdfWrapper $wrapper,
CurrentTeamService $currentTeamService,
AuditTomRepository $auditTomRepository,
SecurityService $securityService,
)
{
$team = $currentTeamService->getCurrentTeam($this->getUser());
Expand All @@ -412,8 +417,7 @@ public function reportGlobalTom(
return $this->redirectNoReport();
}

// Center Team authentication
if ($team === null || $audit[0]->getTeam() !== $team) {
if (!$securityService->checkTeamAccessToData($team, $audit[0])) {
return $this->redirectToRoute('dashboard');
}

Expand All @@ -438,6 +442,7 @@ public function reportIncident(
Request $request,
CurrentTeamService $currentTeamService,
VorfallRepository $vorfallRepository,
SecurityService $securityService,
)
{
$id = $request->get('id');
Expand All @@ -454,8 +459,7 @@ public function reportIncident(
return $this->redirectNoReport();
}

// Center Team authentication
if ($team === null || $daten[0]->getTeam() !== $team) {
if (!$securityService->checkTeamAccessToData($team, $daten[0])) {
return $this->redirectToRoute('dashboard');
}

Expand All @@ -481,6 +485,7 @@ public function reportPolicy(
Request $request,
CurrentTeamService $currentTeamService,
PoliciesRepository $policiesRepository,
SecurityService $securityService,
)
{
$id = $request->get('id');
Expand All @@ -496,8 +501,7 @@ public function reportPolicy(
return $this->redirectNoReport();
}

// Center Team authentication
if ($team === null || $policies[0]->getTeam() !== $team) {
if (!$securityService->checkTeamAccessToData($team, $policies[0])) {
return $this->redirectToRoute('dashboard');
}

Expand All @@ -523,6 +527,7 @@ public function reportRequest(
Request $request,
CurrentTeamService $currentTeamService,
ClientRequestRepository $clientRequestRepository,
SecurityService $securityService,
)
{

Expand All @@ -541,8 +546,7 @@ public function reportRequest(
return $this->redirectNoReport();
}

// Center Team authentication
if ($team === null || $clientRequest[0]->getTeam() !== $team) {
if (!$securityService->checkTeamAccessToData($team, $clientRequest[0])) {
return $this->redirectToRoute('dashboard');
}

Expand All @@ -565,6 +569,7 @@ public function reportSoftware(
Request $request,
CurrentTeamService $currentTeamService,
SoftwareRepository $softwareRepository,
SecurityService $securityService,
)
{
$id = $request->get('id');
Expand All @@ -580,10 +585,10 @@ public function reportSoftware(
return $this->redirectNoReport();
}

// Center Team authentication
if ($team === null || $software[0]->getTeam() !== $team) {
if (!$securityService->checkTeamAccessToData($team, $software[0])) {
return $this->redirectToRoute('dashboard');
}

// Retrieve the HTML generated in our twig file
$html = $this->renderView('bericht/software.html.twig', [
'daten' => $software,
Expand All @@ -606,6 +611,7 @@ public function reportTom(
Request $request,
CurrentTeamService $currentTeamService,
TomRepository $tomRepository,
SecurityService $securityService,
)
{

Expand All @@ -622,8 +628,7 @@ public function reportTom(
return $this->redirectNoReport();
}

// Center Team authentication
if ($team === null || $tom[0]->getTeam() !== $team) {
if (!$securityService->checkTeamAccessToData($team, $tom[0])) {
return $this->redirectToRoute('dashboard');
}

Expand All @@ -647,6 +652,7 @@ public function reportVvt(
Request $request,
CurrentTeamService $currentTeamService,
VVTRepository $vvtRepository,
SecurityService $securityService,
)
{
ini_set('max_execution_time', '900');
Expand All @@ -669,8 +675,7 @@ public function reportVvt(
return $this->redirectNoReport();
}

// Center Team authentication
if ($team === null || $vvt[0]->getTeam() !== $team) {
if (!$securityService->checkTeamAccessToData($team, $vvt[0])) {
return $this->redirectToRoute('dashboard');
}

Expand All @@ -693,6 +698,7 @@ public function reports(
Request $request,
CurrentTeamService $currentTeamService,
ReportRepository $reportRepository,
SecurityService $securityService,
)
{
$team = $currentTeamService->getCurrentTeam($this->getUser());
Expand Down Expand Up @@ -735,12 +741,10 @@ public function reports(
return $this->redirectNoReport();
}

// Center Team authentication
if ($team === null || $report[0]->getTeam() !== $team) {
if ($securityService->checkTeamAccessToData($team, $report[0])) {
return $this->redirectToRoute('dashboard');
}


// Create a new Word document
$phpWord = new PhpWord();
$phpWord->addTitleStyle(1, ['bold' => true], ['spaceAfter' => 240]);
Expand Down
13 changes: 13 additions & 0 deletions src/Service/SecurityService.php
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,19 @@ public function teamDataCheck($data, $team): bool
return true;
}

public function checkTeamAccessToData($team, $data): bool
{
$teamPath = $team ? $this->teamRepository->getPath($team) : null;
$dataTeam = $data->getTeam();

if ($dataTeam === $team || in_array($dataTeam, $teamPath) && $data->isInherited()) {
return true;
}

$this->logAccessDenied($team);
return false;
}

public function checkTeamAccessToProcess(VVT $process, $team): bool
{
$teamPath = $team ? $this->teamRepository->getPath($team) : null;
Expand Down
Loading