forked from transmission-remote-gui/transgui
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathlocalfilemanager.pas
168 lines (132 loc) · 4.98 KB
/
localfilemanager.pas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
{*************************************************************************************
This file is part of Transmission Remote GUI.
Copyright (c) 2008-2019 by Yury Sidorov and Transmission Remote GUI working group.
Copyright (c) 2023-2024 by Daniel Kamil Kozar
Transmission Remote GUI is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
Transmission Remote GUI is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Transmission Remote GUI; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
In addition, as a special exception, the copyright holders give permission to
link the code of portions of this program with the
OpenSSL library under certain conditions as described in each individual
source file, and distribute linked combinations including the two.
You must obey the GNU General Public License in all respects for all of the
code used other than OpenSSL. If you modify file(s) with this exception, you
may extend this exception to your version of the file(s), but you are not
obligated to do so. If you do not wish to do so, delete this exception
statement from your version. If you delete this exception statement from all
source files in the program, then also delete it here.
*************************************************************************************}
unit LocalFileManager;
{$mode ObjFPC}{$H+}{$J-}
{$ifdef darwin}
{$modeswitch objectivec1}
{$endif}
interface
uses SysUtils, Dialogs, LazLoggerBase, lclintf
{$if defined(linux)}
, dbus
{$elseif defined(darwin)}
, CocoaAll
{$elseif defined(windows)}
, Process
{$endif}
;
procedure ShowFile(Path: string);
implementation
type
EFileManagerError = class(Exception);
{$if defined(linux)}
procedure ShowFile_impl(Path : string);
var
err: DBusError;
conn: PDBusConnection;
msg, replymsg: PDBusMessage;
args: DBusMessageIter;
array_iter: DBusMessageIter;
uri_p, startupId: PChar;
uri: UTF8String;
dbus_rv: dbus_bool_t;
procedure Cleanup;
begin
dbus_error_free(@err);
if replymsg <> nil then dbus_message_unref(replymsg);
if msg <> nil then dbus_message_unref(msg);
if conn <> nil then dbus_connection_unref(conn);
end;
procedure ReportCustomError(customMsg : string);
begin
Cleanup;
raise EFileManagerError.Create(customMsg);
end;
procedure ReportDBusError;
begin
ReportCustomError(err.message);
end;
begin
uri := 'file://' + path;
uri_p := PChar(uri);
startupId := '';
conn := nil;
msg := nil;
replymsg := nil;
dbus_error_init(@err);
conn := dbus_bus_get(DBUS_BUS_SESSION, @err);
if conn = nil then ReportDBusError;
msg := dbus_message_new_method_call('org.freedesktop.FileManager1',
'/org/freedesktop/FileManager1', 'org.freedesktop.FileManager1', 'ShowItems');
if msg = nil then ReportDBusError;
dbus_message_iter_init_append(msg, @args);
dbus_rv := dbus_message_iter_open_container(@args, DBUS_TYPE_ARRAY, DBUS_TYPE_STRING_AS_STRING, @array_iter);
if dbus_rv <> 1 then ReportCustomError('iter_open_container returned false');
dbus_rv := dbus_message_iter_append_basic(@array_iter, DBUS_TYPE_STRING, @uri_p);
if dbus_rv <> 1 then ReportCustomError('iter_append_basic returned false');
dbus_rv := dbus_message_iter_close_container(@args, @array_iter);
if dbus_rv <> 1 then ReportCustomError('iter_close_container returned false');
dbus_rv := dbus_message_iter_append_basic(@args, DBUS_TYPE_STRING, @startupId);
if dbus_rv <> 1 then ReportCustomError('iter_append_basic returned false');
replymsg := dbus_connection_send_with_reply_and_block(conn, msg, 1000, @err);
if replymsg = nil then ReportDBusError;
Cleanup;
end;
{$elseif defined(darwin)}
procedure ShowFile_impl(Path : string);
var
u8path: UTF8String;
begin
u8path := Path;
NSWorkspace.sharedWorkspace.activateFileViewerSelectingURLs(
NSArray.arrayWithObject(
NSURL.fileURLWithPath(
NSString.stringWithUTF8String(PChar(u8path)))));
end;
{$elseif defined(windows)}
procedure ShowFile_impl(Path : string);
var
output: string;
begin
if Process.RunCommand('explorer.exe', [TProcessString.Format('/select,"%s"', [Path])], output) <> True then
raise EFileManagerError.Create('failed to launch explorer.exe /select');
end;
{$endif}
procedure ShowFile(Path: string);
begin
try
if Length(Path) = 0 then exit;
ShowFile_impl(Path);
except
on e: EFileManagerError do begin
DebugLn('error while trying to show %s : %s', [Path, e.Message]);
{ try to do _anything_ at this point }
OpenDocument(ExtractFileDir(Path));
end;
end;
end;
end.