Fix readme, Controller, JS, add screenshot

This commit is contained in:
Alfred Egger 2019-06-16 23:58:36 +02:00
commit c11efa568a
4 changed files with 19 additions and 18 deletions

View file

@ -23,12 +23,13 @@ class PrinterController extends Controller {
/**
* callback function to get md5 hash of a file
* @NoAdminRequired
* @param (string) $source - filename
* @param (string) $sourcefile - filename
* @param (string) $orientation - Orientation of printed file
*/
public function printfile($source, $orientation) {
if($orientation == "landscape") {
shell_exec('lpr ' . $source);
public function printfile($sourcefile, $orientation) {
if($orientation === "landscape") {
$filefullpath = \OC\Files\Filesystem::getLocalFile($sourcefile);
exec('lpr ' . $filefullpath);
return new JSONResponse(
array(
'response' => 'success',
@ -37,8 +38,9 @@ class PrinterController extends Controller {
);
}
if($orientation == "portrait"){
shell_exec('lpr -o orientation-requested=4 ' . $source);
if($orientation === "portrait"){
$filefullpath = \OC\Files\Filesystem::getLocalFile($sourcefile);
exec('lpr -o orientation-requested=4 ' . $filefullpath);
return new JSONResponse(
array(
'response' => 'success',