identd: Implement --ident-port option
[quassel.git] / src / common / main.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-2018 by the Quassel Project                        *
3  *   devel@quassel-irc.org                                                 *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) version 3.                                           *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
19  ***************************************************************************/
20
21 #include <cstdlib>
22 #include <memory>
23
24 #ifdef HAVE_UMASK
25 #  include <sys/types.h>
26 #  include <sys/stat.h>
27 #endif /* HAVE_UMASK */
28
29 #include <QCoreApplication>
30 #include <QTextCodec>
31
32 #ifdef BUILD_CORE
33 #  include "coreapplication.h"
34 #elif defined BUILD_QTUI
35 #  include "aboutdata.h"
36 #  include "qtuiapplication.h"
37 #elif defined BUILD_MONO
38 #  include "aboutdata.h"
39 #  include "monoapplication.h"
40
41 #else
42 #error "Something is wrong - you need to #define a build mode!"
43 #endif
44
45 // We don't want quasselcore to depend on KDE
46 #if defined HAVE_KDE4 && defined BUILD_CORE
47 #  undef HAVE_KDE4
48 #endif
49 // We don't want quasselcore to depend on KDE
50 #if defined HAVE_KF5 && defined BUILD_CORE
51 #  undef HAVE_KF5
52 #endif
53
54 #ifdef HAVE_KDE4
55 #  include <KAboutData>
56 #  include "kcmdlinewrapper.h"
57 #elif defined HAVE_KF5
58 #  include <KCoreAddons/KAboutData>
59 #  include <KCoreAddons/Kdelibs4ConfigMigrator>
60 #  include "qt5cliparser.h"
61 #elif defined HAVE_QT5
62 #  include "qt5cliparser.h"
63 #else
64 #  include "cliparser.h"
65 #endif
66
67 #if !defined(BUILD_CORE) && defined(STATIC)
68 #include <QtPlugin>
69 Q_IMPORT_PLUGIN(qjpeg)
70 Q_IMPORT_PLUGIN(qgif)
71 #endif
72
73 #include "quassel.h"
74
75 int main(int argc, char **argv)
76 {
77 #ifdef HAVE_UMASK
78     umask(S_IRWXG | S_IRWXO);
79 #endif
80
81 #if QT_VERSION < 0x050000
82     // All our source files are in UTF-8, and Qt5 even requires that
83     QTextCodec::setCodecForCStrings(QTextCodec::codecForName("UTF-8"));
84     QTextCodec::setCodecForTr(QTextCodec::codecForName("UTF-8"));
85 #endif
86
87     Quassel::setupBuildInfo();
88     QCoreApplication::setApplicationName(Quassel::buildInfo().applicationName);
89     QCoreApplication::setApplicationVersion(Quassel::buildInfo().plainVersionString);
90     QCoreApplication::setOrganizationName(Quassel::buildInfo().organizationName);
91     QCoreApplication::setOrganizationDomain(Quassel::buildInfo().organizationDomain);
92
93     // on OSX with Qt4, raster seems to fix performance issues
94 #if QT_VERSION < 0x050000 && defined Q_OS_MAC && !defined BUILD_CORE
95     QApplication::setGraphicsSystem("raster");
96 #endif
97 //Setup the High-DPI settings
98 # if QT_VERSION >= 0x050600 && defined(Q_OS_WIN)
99     QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling); //Added in Qt 5.6
100 #endif
101 # if QT_VERSION >= 0x050400
102    //Added in the early Qt5 versions (5.0?)- use 5.4 as the cutoff since lots of high-DPI work was added then
103     QCoreApplication::setAttribute(Qt::AA_UseHighDpiPixmaps);
104 # endif
105     // We need to explicitly initialize the required resources when linking statically
106 #ifndef BUILD_QTUI
107     Q_INIT_RESOURCE(sql);
108 #endif
109 #ifndef BUILD_CORE
110     Q_INIT_RESOURCE(pics);
111     Q_INIT_RESOURCE(hicolor_icons);
112 #endif
113
114 #ifdef EMBED_DATA
115     Q_INIT_RESOURCE(i18n);
116 # ifndef BUILD_CORE
117     Q_INIT_RESOURCE(data);
118     Q_INIT_RESOURCE(breeze_icons);
119     Q_INIT_RESOURCE(breeze_dark_icons);
120 #  ifdef WITH_OXYGEN_ICONS
121     Q_INIT_RESOURCE(oxygen_icons);
122 #  endif
123 #  ifdef WITH_BUNDLED_ICONS
124       Q_INIT_RESOURCE(breeze_icon_theme);
125       Q_INIT_RESOURCE(breeze_dark_icon_theme);
126 #   ifdef WITH_OXYGEN_ICONS
127       Q_INIT_RESOURCE(oxygen_icon_theme);
128 #   endif
129 #  endif
130 # endif
131 #endif
132
133     std::shared_ptr<AbstractCliParser> cliParser;
134
135 #ifdef HAVE_KDE4
136     // We need to init KCmdLineArgs first
137     KAboutData aboutData("quassel", "kdelibs4", ki18n("Quassel IRC"), Quassel::buildInfo().plainVersionString.toUtf8(),
138         ki18n("A modern, distributed IRC client"));
139     aboutData.addLicense(KAboutData::License_GPL_V2);
140     aboutData.addLicense(KAboutData::License_GPL_V3);
141     aboutData.setBugAddress("https://bugs.quassel-irc.org/projects/quassel-irc/issues/new");
142     aboutData.setOrganizationDomain(Quassel::buildInfo().organizationDomain.toUtf8());
143     KCmdLineArgs::init(argc, argv, &aboutData);
144
145     cliParser = std::make_shared<KCmdLineWrapper>();
146 #elif defined HAVE_QT5
147     cliParser = std::make_shared<Qt5CliParser>();
148 #else
149     cliParser = std::make_shared<CliParser>();
150 #endif
151     Quassel::setCliParser(cliParser);
152
153     // Initialize CLI arguments
154     // NOTE: We can't use tr() at this point, since app is not yet created
155     // TODO: Change this once we get rid of KDE4 and can initialize the parser after creating the app
156
157     // put shared client&core arguments here
158     cliParser->addSwitch("debug", 'd', "Enable debug output");
159     cliParser->addSwitch("help", 'h', "Display this help and exit");
160     cliParser->addSwitch("version", 'v', "Display version information");
161 #ifdef BUILD_QTUI
162     cliParser->addOption("configdir", 'c', "Specify the directory holding the client configuration", "path");
163 #else
164     cliParser->addOption("configdir", 'c', "Specify the directory holding configuration files, the SQlite database and the SSL certificate", "path");
165 #endif
166     cliParser->addOption("datadir", 0, "DEPRECATED - Use --configdir instead", "path");
167     cliParser->addOption("loglevel", 'L', "Loglevel Debug|Info|Warning|Error", "level", "Info");
168 #ifdef HAVE_SYSLOG
169     cliParser->addSwitch("syslog", 0, "Log to syslog");
170 #endif
171     cliParser->addOption("logfile", 'l', "Log to a file", "path");
172
173 #ifndef BUILD_CORE
174     // put client-only arguments here
175     cliParser->addOption("icontheme", 0, "Override the system icon theme ('breeze' is recommended)", "theme");
176     cliParser->addOption("qss", 0, "Load a custom application stylesheet", "file.qss");
177     cliParser->addSwitch("debugbufferswitches", 0, "Enables debugging for bufferswitches");
178     cliParser->addSwitch("debugmodel", 0, "Enables debugging for models");
179     cliParser->addSwitch("hidewindow", 0, "Start the client minimized to the system tray");
180 #endif
181 #ifndef BUILD_QTUI
182     // put core-only arguments here
183     cliParser->addOption("listen", 0, "The address(es) quasselcore will listen on", "<address>[,<address>[,...]]", "::,0.0.0.0");
184     cliParser->addOption("port", 'p', "The port quasselcore will listen at", "port", "4242");
185     cliParser->addSwitch("norestore", 'n', "Don't restore last core's state");
186     cliParser->addSwitch("config-from-environment", 0, "Load configuration from environment variables");
187     cliParser->addOption("select-backend", 0, "Switch storage backend (migrating data if possible)", "backendidentifier");
188     cliParser->addOption("select-authenticator", 0, "Select authentication backend", "authidentifier");
189     cliParser->addSwitch("add-user", 0, "Starts an interactive session to add a new core user");
190     cliParser->addOption("change-userpass", 0, "Starts an interactive session to change the password of the user identified by <username>", "username");
191     cliParser->addSwitch("oidentd", 0, "Enable oidentd integration.  In most cases you should also enable --strict-ident");
192     cliParser->addOption("oidentd-conffile", 0, "Set path to oidentd configuration file", "file");
193     cliParser->addSwitch("strict-ident", 0, "Use users' quasselcore username as ident reply. Ignores each user's configured ident setting.");
194     cliParser->addSwitch("ident-daemon", 0, "Enable internal ident daemon");
195     cliParser->addOption("ident-port", 0, "The port quasselcore will listen at for ident requests. Only meaningful with --ident-daemon", "10113");
196 #ifdef HAVE_SSL
197     cliParser->addSwitch("require-ssl", 0, "Require SSL for remote (non-loopback) client connections");
198     cliParser->addOption("ssl-cert", 0, "Specify the path to the SSL Certificate", "path", "configdir/quasselCert.pem");
199     cliParser->addOption("ssl-key", 0, "Specify the path to the SSL key", "path", "ssl-cert-path");
200 #endif
201     cliParser->addSwitch("enable-experimental-dcc", 0, "Enable highly experimental and unfinished support for CTCP DCC (DANGEROUS)");
202 #endif
203
204 #ifdef HAVE_KDE4
205     // the KDE version needs this extra call to parse argc/argv before app is instantiated
206     if (!cliParser->init()) {
207         cliParser->usage();
208         return EXIT_FAILURE;
209     }
210 #endif
211
212 #if defined BUILD_CORE
213     CoreApplication app(argc, argv);
214 #elif defined BUILD_QTUI
215     QtUiApplication app(argc, argv);
216 #elif defined BUILD_MONO
217     MonolithicApplication app(argc, argv);
218 #endif
219
220 #ifndef HAVE_KDE4
221     // the non-KDE version parses after app has been instantiated
222     if (!cliParser->init(app.arguments())) {
223         cliParser->usage();
224         return EXIT_FAILURE;
225     }
226 #endif
227
228 // Migrate settings from KDE4 to KF5 if appropriate
229 #ifdef HAVE_KF5
230     Kdelibs4ConfigMigrator migrator(QCoreApplication::applicationName());
231     migrator.setConfigFiles(QStringList() << "quasselrc" << "quassel.notifyrc");
232     migrator.migrate();
233 #endif
234
235 #ifdef HAVE_KF5
236     // FIXME: This should be done after loading the translation catalogue, but still in main()
237     AboutData aboutData;
238     AboutData::setQuasselPersons(&aboutData);
239     KAboutData::setApplicationData(aboutData.kAboutData());
240 #endif
241     if (!app.init())
242         return EXIT_FAILURE;
243
244     return app.exec();
245 }