Bug 427327 - Service menu: %U / %F doesn't work well with files with spaces
Summary: Service menu: %U / %F doesn't work well with files with spaces
Status: RESOLVED WORKSFORME
Alias: None
Product: frameworks-kio
Classification: Frameworks and Libraries
Component: general (show other bugs)
Version: 5.74.0
Platform: Arch Linux Linux
: NOR normal
Target Milestone: ---
Assignee: KIO Bugs
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2020-10-04 13:31 UTC by Juan Simón
Modified: 2020-11-04 04:33 UTC (History)
3 users (show)

See Also:
Latest Commit:
Version Fixed In:
Sentry Crash Report:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Juan Simón 2020-10-04 13:31:35 UTC
SUMMARY
I have this script:

#!/bin/env zsh
if nombre=$(kdialog --title 'Crear cómic cbz' --inputbox '¿Nombre del cómic?' "$(basename ${1:r})"); then
   if [ -z $nombre ]; then
      nombre=$(basename ${1:r})
   fi
   carpeta=$(dirname $1)
   if resultado=$(zip -jqX "$carpeta/$nombre.cbz" $@); then
      kdialog --title "Crear ComicBook" --passivepopup "Hecho. '$nombre' creado" 5
      kioclient5 move "$@" trash:/
   else
      kdialog --title "Crear ComicBook" --error "$resultado"
   fi
fi

And I have created a service menu in Dolphin:

[Desktop Entry]
Type=Service
Actions=CrearComicBook
ServiceTypes=KonqPopupMenu/Plugin
MimeType=image/*;

[Desktop Action CrearComicBook]
Exec=crear-cbz "%F"
Name=Crear ComicBook
Icon=comic

And I have this folder with images:

├── Rise of the Black Flame
│   ├── Rise of the Black Flame-000.jpg
│   ├── Rise of the Black Flame-001.jpg
....

I've tested with %F and %U. Both fails.

The problem are:
1) Without ", the service only sends the first image. 
2) With ", sends all files like one parameter. 

SOFTWARE/OS VERSIONS
Operating System: Arch Linux
KDE Plasma Version: 5.19.5
KDE Frameworks Version: 5.74.0
Qt Version: 5.15.1
Comment 1 Juan Simón 2020-10-04 13:37:02 UTC
More details.
With ", the script says parameter $1 is "/tmp/Rise of the Black Flame/Rise of the Black Flame-000.jpg /tmp/Rise of the Black Flame/Rise of the Black Flame-001.jpg /tmp/Rise of the Black Flame/Rise of the Black Flame-002.jpg /tmp/Rise of the Black Flame/Rise of the Black Flame-003.jpg /tmp/Rise of the Black Flame/Rise of the Black Flame-004.jpg ...."

Without ", the script only receives the first file: 
$@ = "/tmp/Rise of the Black Flame/Rise of the Black Flame-000.jpg"
Comment 2 Alexander Lohnau 2020-10-04 14:59:53 UTC
Is this a regression or was it always a problem?
Comment 3 Alexander Lohnau 2020-10-04 15:50:11 UTC
Hmm, on master it appears to work:
My exec line is:
>Exec=/home/user/dostuff.sh %F

The script content:
>#!/bin/bash
> 
>echo $@>~/test.log

And the output looks fine:
>/home/user/projects/hello there/New Folder /home/user/projects/hello there/New Folder (1)

Also the args with which the process got called looks good (kcoreaddons/src/lib/io/kprocess.cpp:246):
>"/home/user/dostuff.sh" ("/home/user/projects/hello there/New Folder", "/home/user/projects/hello there/New Folder (1)") OpenMode( "ReadOnly|WriteOnly" )
Comment 4 Nate Graham 2020-10-05 21:08:33 UTC
Works for me too. I suspect an issue with your script. Can you tell us whether or not it works with the simple script that Alexander posted?
Comment 5 Bug Janitor Service 2020-10-20 04:33:16 UTC
Dear Bug Submitter,

This bug has been in NEEDSINFO status with no change for at least
15 days. Please provide the requested information as soon as
possible and set the bug status as REPORTED. Due to regular bug
tracker maintenance, if the bug is still in NEEDSINFO status with
no change in 30 days the bug will be closed as RESOLVED > WORKSFORME
due to lack of needed information.

For more information about our bug triaging procedures please read the
wiki located here:
https://community.kde.org/Guidelines_and_HOWTOs/Bug_triaging

If you have already provided the requested information, please
mark the bug as REPORTED so that the KDE team knows that the bug is
ready to be confirmed.

Thank you for helping us make KDE software even better for everyone!
Comment 6 Bug Janitor Service 2020-11-04 04:33:35 UTC
This bug has been in NEEDSINFO status with no change for at least
30 days. The bug is now closed as RESOLVED > WORKSFORME
due to lack of needed information.

For more information about our bug triaging procedures please read the
wiki located here:
https://community.kde.org/Guidelines_and_HOWTOs/Bug_triaging

Thank you for helping us make KDE software even better for everyone!