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
|
/***************************************************************************
kdesudo.cpp - description
-------------------
begin : Sam Feb 15 15:42:12 CET 2003
copyright : (C) 2003 by Robert Gruber <[email protected]>
(C) 2007 by Martin Böhm <[email protected]>
Anthony Mercatante <[email protected]>
Canonical Ltd (Jonathan Riddell <[email protected]>)
***************************************************************************/
/***************************************************************************
* *
* This program 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. *
* *
***************************************************************************/
#include <kcmdlineargs.h>
#include <kaboutdata.h>
#include <klocale.h>
#include "kdesudo.h"
#include <kmessagebox.h>
#include <kdesktopfile.h>
#include <kiconloader.h>
#include <kicontheme.h>
#include <kglobal.h>
#include <kstandarddirs.h>
#include <kprocess.h>
#include <kdebug.h>
#include <qfile.h>
#include <qfileinfo.h>
static const char *description =
I18N_NOOP("KdeSudo");
// INSERT A DESCRIPTION FOR YOUR APPLICATION HERE
static KCmdLineOptions options[] =
{
{ "u <runas>", I18N_NOOP("sets a runas user"), 0 },
{ "c <command>", I18N_NOOP("The command to execute"), 0 },
{ "s", I18N_NOOP("Forget passwords"), 0 },
{ "i <icon name>", I18N_NOOP("Specify icon to use in the password dialog"), 0},
{ "d", I18N_NOOP("Do not show the command to be run in the dialog"), 0},
{ "p <priority>", I18N_NOOP("Process priority, between 0 and 100, 0 the lowest [50]"), 0},
{ "r", I18N_NOOP("Use realtime scheduling"), 0},
{ "f <file>", I18N_NOOP("Use target UID if <file> is not writeable"), 0},
{ "t", I18N_NOOP("Fake option for KDE's KdeSu compatibility"), 0 },
{ "n", I18N_NOOP("Do not keep password"), 0},
{ "nonewdcop", I18N_NOOP("Use existing DCOP server"), 0},
{ "comment <dialog text>", I18N_NOOP("The comment that should be displayed in the dialog"), 0},
{ "noignorebutton", I18N_NOOP("Do not display « ignore » button"), 0 },
{ "+command", I18N_NOOP("The command to execute"), 0 },
KCmdLineLastOption
};
int main(int argc, char **argv)
{
KAboutData aboutData("kdesudo", I18N_NOOP("KdeSudo"),
VERSION, description, KAboutData::License_GPL,
"(c) 2007-2008, Anthony Mercatante", 0, 0, "[email protected]");
aboutData.addAuthor("Robert Gruber",0, "[email protected]");
aboutData.addAuthor("Anthony Mercatante",0, "[email protected]");
KCmdLineArgs::init(argc, argv, &aboutData);
KCmdLineArgs::addCmdLineOptions(options); // Add our own options.
KCmdLineArgs *args = KCmdLineArgs::parsedArgs();
KApplication a;
QString executable;
QStringList executableList;
QString arg;
QString command;
QStringList commandlist;
QString icon;
bool withIgnoreButton = args->isSet("ignorebutton");
if (args->isSet("c"))
executable = args->getOption("c");
if (args->count())
{
if (executable.isEmpty())
{
command = args->arg(0);
commandlist = QStringList::split(QChar(' '), command);
executable = commandlist[0];
}
}
/* We have to make sure the executable is only the binary name */
executableList = QStringList::split(" ", executable);
executable = executableList[0];
executableList = QStringList::split("/", executable);
int i = executableList.count() - 1;
executable = executableList[i];
/* Kubuntu has a bug in it - this is a workaround for it */
KGlobal::dirs()->addResourceDir("apps","/usr/share/applications/kde");
KGlobal::dirs()->addResourceDir("apps","/usr/share/applications");
QString deskFilePath = KGlobal::dirs()->findResource("apps",executable + ".desktop");
KDesktopFile desktopFile(deskFilePath,true);
/* icon parsing */
if (args->isSet("i"))
icon = args->getOption("i");
else
{
QString iconName = desktopFile.readIcon();
icon = KGlobal::iconLoader()->iconPath(iconName, -1* KIcon::StdSizes(KIcon::SizeHuge), true);
}
/* generic name parsing */
QString name = desktopFile.readName();
QString genericName = desktopFile.readGenericName();
if (!name.isEmpty())
{
if (!genericName.isEmpty())
name += " - " + genericName;
}
else if (!genericName.isEmpty())
name = genericName;
else
name = executable;
KdeSudo *kdesudo = new KdeSudo(0,0,icon,name,withIgnoreButton);
a.setMainWidget(kdesudo);
args->clear();
return a.exec();
}
|