Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
Madis Cyber
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
Soluris
Madis Cyber
Commits
43028a7b
Commit
43028a7b
authored
2 years ago
by
Jonathan Foucher
Browse files
Options
Downloads
Patches
Plain Diff
cs-fix
parent
031ab5ca
No related branches found
Branches containing commit
Tags
v0.1.13
Tags containing commit
No related merge requests found
Pipeline
#29734
passed
2 years ago
Stage: build
Stage: test
Stage: quality-assurance
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
app/Helpers/SVG.php
+6
-6
6 additions, 6 deletions
app/Helpers/SVG.php
app/Http/Controllers/PdfController.php
+8
-9
8 additions, 9 deletions
app/Http/Controllers/PdfController.php
config/snappy.php
+9
-11
9 additions, 11 deletions
config/snappy.php
with
23 additions
and
26 deletions
app/Helpers/SVG.php
+
6
−
6
View file @
43028a7b
...
...
@@ -7,7 +7,7 @@ class SVG
private
$score
;
private
$maxScore
;
private
$unit
;
const
UNITS
=
414
;
public
const
UNITS
=
414
;
public
function
__construct
(
$score
,
$maxScore
)
{
...
...
@@ -31,7 +31,7 @@ private function oneHalf()
return
$this
->
maxScore
/
2
;
}
private
function
calculateArray
()
:
array
private
function
calculateArray
():
array
{
$dashArray
=
[
0
,
0
,
0
,
0
];
...
...
@@ -48,7 +48,7 @@ private function calculateArray() : array
return
$dashArray
;
}
private
function
calculateFirstQuarter
()
:
array
private
function
calculateFirstQuarter
():
array
{
return
[
0
,
...
...
@@ -58,7 +58,7 @@ private function calculateFirstQuarter() : array
];
}
private
function
calculateSecondQuarter
()
:
array
private
function
calculateSecondQuarter
():
array
{
return
[
(
$this
->
threeQuarters
()
*
$this
->
unit
)
-
$this
->
secondStroke
(),
...
...
@@ -68,7 +68,7 @@ private function calculateSecondQuarter() : array
];
}
private
function
calculateSecondHalf
()
:
array
private
function
calculateSecondHalf
():
array
{
return
[
(
$this
->
threeQuarters
()
*
$this
->
unit
)
-
$this
->
secondStroke
(),
...
...
@@ -83,7 +83,7 @@ private function secondStroke()
return
(
$this
->
maxScore
-
$this
->
score
)
*
$this
->
unit
;
}
public
function
dashArray
()
:
string
public
function
dashArray
():
string
{
$dashArray
=
$this
->
calculateArray
();
...
...
This diff is collapsed.
Click to expand it.
app/Http/Controllers/PdfController.php
+
8
−
9
View file @
43028a7b
...
...
@@ -31,7 +31,7 @@ public function ActionPlanPdf()
->
first
();
$collectionAction
=
collect
(
$evaluation
->
measureLevels
)
->
filter
(
function
(
MeasureLevel
$ml
)
{
return
$ml
->
expected_level
!==
null
;
return
null
!==
$ml
->
expected_level
;
});
$actionSorted
=
$collectionAction
->
sortBy
(
'end_date'
);
$actionSorted
=
$actionSorted
->
values
()
->
all
();
...
...
@@ -56,7 +56,7 @@ public function ActionPlanPdf()
//
// // dd($pdf->getDomPDF());
//return $pdf->stream("Plan d'action - " . date('Y-m-d') . '.pdf');
//
return $pdf->stream("Plan d'action - " . date('Y-m-d') . '.pdf');
$pdf
=
App
::
make
(
'snappy.pdf.wrapper'
);
$pdf
->
loadView
(
'pdf.planAction'
,
$data
);
$pdf
->
setOption
(
'header-html'
,
view
(
'pdf.header'
,
$data
));
...
...
@@ -71,7 +71,7 @@ public function ActionPlanPdf()
$pdf
->
setOption
(
'margin-left'
,
'0'
);
$pdf
->
setOption
(
'xsl-style-sheet'
,
view
(
'pdf.toc'
,
$data
));
$filename
=
"
action_plan
"
.
date
(
'Y-m-d'
)
.
'.pdf'
;
$filename
=
'
action_plan
'
.
date
(
'Y-m-d'
)
.
'.pdf'
;
if
(
file_exists
(
storage_path
(
'app/action_plan/tmp.pdf'
)))
{
unlink
(
storage_path
(
'app/action_plan/tmp.pdf'
));
...
...
@@ -79,16 +79,15 @@ public function ActionPlanPdf()
$pdf
->
save
(
storage_path
(
'app/action_plan/tmp.pdf'
));
// Add measure documents to end of PDF file
$measureDocs
=
collect
(
$actionSorted
)
->
filter
(
function
(
MeasureLevel
$ml
)
{
return
$ml
->
measure
->
{
'level'
.
$ml
->
expected_level
.
'_file'
}
!==
null
;
})
->
map
(
function
(
MeasureLevel
$ml
)
{
$url
=
$ml
->
measure
->
{
'level'
.
$ml
->
expected_level
.
'_file'
};
$measureDocs
=
collect
(
$actionSorted
)
->
filter
(
function
(
MeasureLevel
$ml
)
{
return
null
!==
$ml
->
measure
->
{
'level'
.
$ml
->
expected_level
.
'_file'
};
})
->
map
(
function
(
MeasureLevel
$ml
)
{
$url
=
$ml
->
measure
->
{
'level'
.
$ml
->
expected_level
.
'_file'
};
return
str_replace
(
'/storage/'
,
storage_path
(
'app/public/'
),
$url
);
})
->
join
(
'" "'
);
exec
(
'gs -dBATCH -dNOPAUSE -q -sDEVICE=pdfwrite -sOutputFile="'
.
storage_path
(
'app/action_plan/'
.
$filename
)
.
'" "'
.
storage_path
(
'app/action_plan/tmp.pdf'
)
.
'" "'
.
$measureDocs
.
'"'
);
exec
(
'gs -dBATCH -dNOPAUSE -q -sDEVICE=pdfwrite -sOutputFile="'
.
storage_path
(
'app/action_plan/'
.
$filename
)
.
'" "'
.
storage_path
(
'app/action_plan/tmp.pdf'
)
.
'" "'
.
$measureDocs
.
'"'
);
return
Storage
::
download
(
'action_plan/'
.
$filename
,
"Plan d'actions - "
.
date
(
'Y-m-d'
)
.
'.pdf'
);
}
...
...
This diff is collapsed.
Click to expand it.
config/snappy.php
+
9
−
11
View file @
43028a7b
<?php
return
[
/*
|--------------------------------------------------------------------------
| Snappy PDF / Image Configuration
...
...
@@ -10,15 +9,15 @@
| This option contains settings for PDF generation.
|
| Enabled:
|
|
| Whether to load PDF / Image generation.
|
| Binary:
|
|
| The file path of the wkhtmltopdf / wkhtmltoimage executable.
|
| Timout:
|
|
| The amount of time to wait (in seconds) before PDF / Image generation is stopped.
| Setting this to false disables the timeout (unlimited processing time).
|
...
...
@@ -32,21 +31,20 @@
| The environment variables to set while running the wkhtmltopdf process.
|
*/
'pdf'
=>
[
'enabled'
=>
true
,
'binary'
=>
env
(
'WKHTML_PDF_BINARY'
,
'/usr/local/bin/wkhtmltopdf'
),
'binary'
=>
env
(
'WKHTML_PDF_BINARY'
,
'/usr/local/bin/wkhtmltopdf'
),
'timeout'
=>
false
,
'options'
=>
[],
'env'
=>
[],
'env'
=>
[],
],
'image'
=>
[
'enabled'
=>
true
,
'binary'
=>
env
(
'WKHTML_IMG_BINARY'
,
'/usr/local/bin/wkhtmltoimage'
),
'binary'
=>
env
(
'WKHTML_IMG_BINARY'
,
'/usr/local/bin/wkhtmltoimage'
),
'timeout'
=>
false
,
'options'
=>
[],
'env'
=>
[],
'env'
=>
[],
],
];
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