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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
|
/*******************************************************************************
XDG desktop portal implementation for TDE
Copyright © 2024 Mavridis Philippe <mavridisf@gmail.com>
Avatar detection code is based on code from the Redmond KSplash theme
Copyright © 2001-2003 Brian Ledbetter 2001-2003 <brian@shadowcom.net>
Copyright © 2003 Ravikiran Rajagopal 2003 <ravi@kde.org>
This program or library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public License as
published by the Free Software Foundation; either version 2.1 of the License,
or (at your option) any later version.
This library 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 Lesser General Public License for more
details.
You should have received a copy of the GNU Lesser General Public License
along with this library; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
Improvements and feedback are welcome!
*******************************************************************************/
// TQt
#include <tqfile.h>
#include <tqhbox.h>
#include <tqlabel.h>
#include <tqdbusdata.h>
// TDE
#include <kstandarddirs.h>
#include <ksimpleconfig.h>
#include <tdelocale.h>
#include <twin.h>
#include <kuser.h>
#include <kdebug.h>
// Portal
#include "permission_dialog.h"
#include "account_portal.h"
#include "account_portal.moc"
#define TQSTRING_TO_DBUS_VARIANT(x) \
TQT_DBusData::fromString(x).getAsVariantData().toVariant()
TDEAccountPortal::TDEAccountPortal(TQT_DBusConnection &connection)
: m_connection(connection)
{
}
TDEAccountPortal::~TDEAccountPortal()
{
}
void TDEAccountPortal::handleMethodReply(const TQT_DBusMessage &reply)
{
m_connection.send(reply);
}
bool TDEAccountPortal::handleSignalSend(const TQT_DBusMessage& reply) {
handleMethodReply(reply);
return true;
}
bool TDEAccountPortal::GetUserInformation(const TQT_DBusObjectPath& handle,
const TQString& app_id,
const TQString& window,
const TQT_DBusVariantMap& options,
TQ_UINT32& response,
TQT_DBusVariantMap& results,
TQT_DBusError& error)
{
Dictionary details;
if (OPTION_VALID("reason", "s"))
{
TQString reason(options["reason"].value.toString());
if (!reason.isEmpty())
{
details[i18n("Reason")] = reason;
}
}
// Try to detect which application requested the permission
WId wid = parse_window_id(window);
ApplicationInfo app = application_info_from_wid(wid);
if (!app.path.isEmpty())
details[i18n("Path")] = app.path;
// Run the dialog
TDEPermissionDialog *dialog = new TDEPermissionDialog(
app.name,
i18n("Account information"),
"user-info",
details
);
AccountInfo info = getAccountInfo();
appendDataPreview(dialog, info);
if (wid > 0) KWin::setMainWindow(dialog, wid);
if (dialog->exec() == KDialogBase::Yes)
{
response = 0;
results.insert("id", TQSTRING_TO_DBUS_VARIANT(info.userId));
results.insert("name", TQSTRING_TO_DBUS_VARIANT(info.realName));
results.insert("image", TQSTRING_TO_DBUS_VARIANT(info.avatarPath));
}
else response = 1;
delete dialog;
return true;
}
AccountInfo TDEAccountPortal::getAccountInfo()
{
AccountInfo info;
KUser user;
info.userId = TQString::number(user.uid());
info.loginName = user.loginName();
info.realName = user.fullName();
info.homeDirectory = user.homeDir();
findUserAvatar(info);
return info;
}
void TDEAccountPortal::findUserAvatar(AccountInfo &info)
{
// Parse tdmrc settings to determine face source and system location
const int fAdminOnly = 1;
const int fAdminFirst = fAdminOnly + 1;
const int fUserFirst = fAdminFirst + 1;
const int fUserOnly = fUserFirst + 1;
int faceSource = fAdminOnly;
TDEConfig *tdmconfig = new TDEConfig("tdm/tdmrc", true);
tdmconfig->setGroup("X-*-Greeter");
TQString fs = tdmconfig->readEntry("FaceSource");
if (fs == TQString::fromLatin1("UserOnly"))
faceSource = fUserOnly;
else if (fs == TQString::fromLatin1("PreferUser"))
faceSource = fUserFirst;
else if (fs == TQString::fromLatin1("PreferAdmin"))
faceSource = fAdminFirst;
else
faceSource = fAdminOnly;
TQString userPicsDir = tdmconfig->readEntry("FaceDir",
TDEGlobal::dirs()->resourceDirs("data").last() + "tdm/faces") + '/';
delete tdmconfig;
// Faces provided by administrator (default and per user)
const TQString systemDefault(userPicsDir + ".default.face.icon");
const TQString systemUser(userPicsDir + info.loginName + ".face.icon");
TQString avatar;
if (faceSource == fAdminFirst)
{
avatar = systemUser;
if (!TQFile::exists(avatar))
faceSource = fUserOnly;
}
if (faceSource >= fUserFirst)
{
avatar = info.homeDirectory + "/.face.icon";
if (!TQFile::exists(avatar) && faceSource == fUserFirst)
avatar = systemUser;
if (!TQFile::exists(avatar))
avatar = systemDefault;
}
if (faceSource <= fAdminOnly)
{
avatar = systemUser;
if (!TQFile::exists(avatar))
avatar = systemDefault;
}
info.avatarPath = avatar;
}
void TDEAccountPortal::appendDataPreview(TDEPermissionDialog *dlg, AccountInfo info)
{
TQHBox *frame = new TQHBox(dlg);
frame->setFrameStyle(TQFrame::StyledPanel | TQFrame::Sunken);
TQLabel *avatar = new TQLabel(frame);
avatar->setPixmap(TQPixmap(info.avatarPath));
TQString userDataStr = "<qt><h1>%1</h1><hr>ID: %2</qt>";
userDataStr = userDataStr.arg(info.realName, info.userId);
TQLabel *userData = new TQLabel(userDataStr, frame);
avatar->setMargin(TDEPermissionDialog::spacingHint());
userData->setMargin(TDEPermissionDialog::spacingHint());
frame->setSizePolicy(TQSizePolicy::MinimumExpanding, TQSizePolicy::Fixed);
dlg->appendWidget(frame);
}
// kate: replace-tabs true; tab-width 4; indent-width 4;
|