2018-09-06 13:48:01 +00:00
/*
This file is part of Telegram Desktop ,
the official desktop application for the Telegram messaging service .
For license and copyright information please follow this link :
https : //github.com/telegramdesktop/tdesktop/blob/master/LEGAL
*/
# include "settings/settings_codes.h"
# include "platform/platform_specific.h"
# include "ui/toast/toast.h"
# include "mainwidget.h"
2020-03-26 10:29:27 +00:00
# include "mainwindow.h"
2018-09-06 13:48:01 +00:00
# include "data/data_session.h"
2020-06-09 16:57:05 +00:00
# include "main/main_session.h"
2018-09-06 13:48:01 +00:00
# include "boxes/confirm_box.h"
# include "lang/lang_cloud_manager.h"
2018-11-13 09:14:22 +00:00
# include "lang/lang_instance.h"
2019-01-21 13:42:21 +00:00
# include "core/application.h"
2018-09-06 13:48:01 +00:00
# include "mtproto/mtp_instance.h"
# include "mtproto/dc_options.h"
# include "core/file_utilities.h"
# include "core/update_checker.h"
# include "window/themes/window_theme.h"
# include "window/themes/window_theme_editor.h"
2020-03-26 10:29:27 +00:00
# include "window/window_session_controller.h"
2019-02-13 12:36:59 +00:00
# include "media/audio/media_audio_track.h"
2020-03-26 10:29:27 +00:00
# include "settings/settings_common.h"
2019-09-13 06:06:02 +00:00
# include "facades.h"
2018-09-06 13:48:01 +00:00
namespace Settings {
2020-03-26 10:29:27 +00:00
namespace {
using SessionController = Window : : SessionController ;
2018-09-06 13:48:01 +00:00
auto GenerateCodes ( ) {
2020-03-26 10:29:27 +00:00
auto codes = std : : map < QString , Fn < void ( SessionController * ) > > ( ) ;
codes . emplace ( qsl ( " debugmode " ) , [ ] ( SessionController * window ) {
2018-09-06 13:48:01 +00:00
QString text = Logs : : DebugEnabled ( )
? qsl ( " Do you want to disable DEBUG logs? " )
: qsl ( " Do you want to enable DEBUG logs? \n \n "
" All network events will be logged. " ) ;
Ui : : show ( Box < ConfirmBox > ( text , [ ] {
2019-01-21 13:42:21 +00:00
Core : : App ( ) . switchDebugMode ( ) ;
2018-09-06 13:48:01 +00:00
} ) ) ;
} ) ;
2020-03-26 10:29:27 +00:00
codes . emplace ( qsl ( " viewlogs " ) , [ ] ( SessionController * window ) {
2018-09-06 13:48:01 +00:00
File : : ShowInFolder ( cWorkingDir ( ) + " log.txt " ) ;
} ) ;
2020-03-26 10:29:27 +00:00
codes . emplace ( qsl ( " testmode " ) , [ ] ( SessionController * window ) {
2018-09-06 13:48:01 +00:00
auto text = cTestMode ( ) ? qsl ( " Do you want to disable TEST mode? " ) : qsl ( " Do you want to enable TEST mode? \n \n You will be switched to test cloud. " ) ;
Ui : : show ( Box < ConfirmBox > ( text , [ ] {
2019-01-21 13:42:21 +00:00
Core : : App ( ) . switchTestMode ( ) ;
2018-09-06 13:48:01 +00:00
} ) ) ;
} ) ;
if ( ! Core : : UpdaterDisabled ( ) ) {
2020-03-26 10:29:27 +00:00
codes . emplace ( qsl ( " testupdate " ) , [ ] ( SessionController * window ) {
2018-09-06 13:48:01 +00:00
Core : : UpdateChecker ( ) . test ( ) ;
} ) ;
}
2020-03-26 10:29:27 +00:00
codes . emplace ( qsl ( " loadlang " ) , [ ] ( SessionController * window ) {
2018-11-13 09:14:22 +00:00
Lang : : CurrentCloudManager ( ) . switchToLanguage ( { qsl ( " #custom " ) } ) ;
2018-09-06 13:48:01 +00:00
} ) ;
2020-03-26 10:29:27 +00:00
codes . emplace ( qsl ( " debugfiles " ) , [ ] ( SessionController * window ) {
2018-09-06 13:48:01 +00:00
if ( ! Logs : : DebugEnabled ( ) ) {
return ;
}
if ( DebugLogging : : FileLoader ( ) ) {
Global : : RefDebugLoggingFlags ( ) & = ~ DebugLogging : : FileLoaderFlag ;
} else {
Global : : RefDebugLoggingFlags ( ) | = DebugLogging : : FileLoaderFlag ;
}
Ui : : show ( Box < InformBox > ( DebugLogging : : FileLoader ( ) ? qsl ( " Enabled file download logging " ) : qsl ( " Disabled file download logging " ) ) ) ;
} ) ;
2020-03-26 10:29:27 +00:00
codes . emplace ( qsl ( " crashplease " ) , [ ] ( SessionController * window ) {
2018-09-06 13:48:01 +00:00
Unexpected ( " Crashed in Settings! " ) ;
} ) ;
2020-03-26 10:29:27 +00:00
codes . emplace ( qsl ( " moderate " ) , [ ] ( SessionController * window ) {
2020-06-09 16:57:05 +00:00
if ( ! window ) {
return ;
}
2018-09-06 13:48:01 +00:00
auto text = Global : : ModerateModeEnabled ( ) ? qsl ( " Disable moderate mode? " ) : qsl ( " Enable moderate mode? " ) ;
2020-06-09 16:57:05 +00:00
Ui : : show ( Box < ConfirmBox > ( text , [ = ] {
2018-09-06 13:48:01 +00:00
Global : : SetModerateModeEnabled ( ! Global : : ModerateModeEnabled ( ) ) ;
2020-06-09 16:57:05 +00:00
window - > session ( ) . saveSettingsDelayed ( ) ;
2018-09-06 13:48:01 +00:00
Ui : : hideLayer ( ) ;
} ) ) ;
} ) ;
2020-03-26 10:29:27 +00:00
codes . emplace ( qsl ( " getdifference " ) , [ ] ( SessionController * window ) {
2018-09-06 13:48:01 +00:00
if ( auto main = App : : main ( ) ) {
main - > getDifference ( ) ;
}
} ) ;
2020-03-26 10:29:27 +00:00
codes . emplace ( qsl ( " loadcolors " ) , [ ] ( SessionController * window ) {
2019-01-21 13:42:21 +00:00
FileDialog : : GetOpenPath ( Core : : App ( ) . getFileDialogParent ( ) , " Open palette file " , " Palette (*.tdesktop-palette) " , [ ] ( const FileDialog : : OpenResult & result ) {
2018-09-06 13:48:01 +00:00
if ( ! result . paths . isEmpty ( ) ) {
Window : : Theme : : Apply ( result . paths . front ( ) ) ;
}
} ) ;
} ) ;
2020-03-26 10:29:27 +00:00
codes . emplace ( qsl ( " videoplayer " ) , [ ] ( SessionController * window ) {
2020-06-09 16:57:05 +00:00
if ( ! window ) {
return ;
}
2018-09-06 13:48:01 +00:00
auto text = cUseExternalVideoPlayer ( ) ? qsl ( " Use internal video player? " ) : qsl ( " Use external video player? " ) ;
2020-06-09 16:57:05 +00:00
Ui : : show ( Box < ConfirmBox > ( text , [ = ] {
2018-09-06 13:48:01 +00:00
cSetUseExternalVideoPlayer ( ! cUseExternalVideoPlayer ( ) ) ;
2020-06-09 16:57:05 +00:00
window - > session ( ) . saveSettingsDelayed ( ) ;
2018-09-06 13:48:01 +00:00
Ui : : hideLayer ( ) ;
} ) ) ;
} ) ;
2020-03-26 10:29:27 +00:00
codes . emplace ( qsl ( " endpoints " ) , [ ] ( SessionController * window ) {
2019-01-21 13:42:21 +00:00
FileDialog : : GetOpenPath ( Core : : App ( ) . getFileDialogParent ( ) , " Open DC endpoints " , " DC Endpoints (*.tdesktop-endpoints) " , [ ] ( const FileDialog : : OpenResult & result ) {
2018-09-06 13:48:01 +00:00
if ( ! result . paths . isEmpty ( ) ) {
2019-07-24 08:46:23 +00:00
if ( ! Core : : App ( ) . dcOptions ( ) - > loadFromFile ( result . paths . front ( ) ) ) {
2018-09-06 13:48:01 +00:00
Ui : : show ( Box < InformBox > ( " Could not load endpoints :( Errors in 'log.txt'. " ) ) ;
}
}
} ) ;
} ) ;
2020-03-26 10:29:27 +00:00
codes . emplace ( qsl ( " folders " ) , [ ] ( SessionController * window ) {
if ( window ) {
window - > showSettings ( Settings : : Type : : Folders ) ;
}
} ) ;
2020-02-25 02:39:14 +00:00
# ifndef TDESKTOP_DISABLE_REGISTER_CUSTOM_SCHEME
2020-03-26 10:29:27 +00:00
codes . emplace ( qsl ( " registertg " ) , [ ] ( SessionController * window ) {
2020-02-25 02:39:14 +00:00
Platform : : RegisterCustomScheme ( true ) ;
2018-09-06 13:48:01 +00:00
Ui : : Toast : : Show ( " Forced custom scheme register. " ) ;
} ) ;
2020-02-25 02:39:14 +00:00
# endif // !TDESKTOP_DISABLE_REGISTER_CUSTOM_SCHEME
2020-03-26 10:29:27 +00:00
codes . emplace ( qsl ( " export " ) , [ ] ( SessionController * window ) {
window - > session ( ) . data ( ) . startExport ( ) ;
2018-09-06 13:48:01 +00:00
} ) ;
2020-05-08 22:37:43 +00:00
# if defined Q_OS_WIN || defined Q_OS_MAC
codes . emplace ( qsl ( " freetype " ) , [ ] ( SessionController * window ) {
auto text = cUseFreeType ( )
# ifdef Q_OS_WIN
? qsl ( " Switch font engine to GDI? " )
# else // Q_OS_WIN
? qsl ( " Switch font engine to Cocoa? " )
# endif // !Q_OS_WIN
: qsl ( " Switch font engine to FreeType? " ) ;
Ui : : show ( Box < ConfirmBox > ( text , [ ] {
Core : : App ( ) . switchFreeType ( ) ;
} ) ) ;
} ) ;
# endif // Q_OS_WIN || Q_OS_MAC
2018-09-06 13:48:01 +00:00
auto audioFilters = qsl ( " Audio files (*.wav *.mp3);; " ) + FileDialog : : AllFilesFilter ( ) ;
auto audioKeys = {
qsl ( " msg_incoming " ) ,
qsl ( " call_incoming " ) ,
qsl ( " call_outgoing " ) ,
qsl ( " call_busy " ) ,
qsl ( " call_connect " ) ,
qsl ( " call_end " ) ,
} ;
for ( auto & key : audioKeys ) {
2020-03-26 10:29:27 +00:00
codes . emplace ( key , [ = ] ( SessionController * window ) {
if ( ! window ) {
2018-09-06 13:48:01 +00:00
return ;
}
2020-03-26 10:29:27 +00:00
FileDialog : : GetOpenPath ( Core : : App ( ) . getFileDialogParent ( ) , " Open audio file " , audioFilters , crl : : guard ( & window - > session ( ) , [ = ] ( const FileDialog : : OpenResult & result ) {
2019-07-24 11:45:24 +00:00
if ( Main : : Session : : Exists ( ) & & ! result . paths . isEmpty ( ) ) {
2018-09-06 13:48:01 +00:00
auto track = Media : : Audio : : Current ( ) . createTrack ( ) ;
track - > fillFromFile ( result . paths . front ( ) ) ;
if ( track - > failed ( ) ) {
2020-03-26 10:29:27 +00:00
Ui : : show ( Box < InformBox > (
" Could not audio :( Errors in 'log.txt'. " ) ) ;
2018-09-06 13:48:01 +00:00
} else {
2020-03-26 10:29:27 +00:00
window - > session ( ) . settings ( ) . setSoundOverride (
key ,
result . paths . front ( ) ) ;
2020-06-09 16:57:05 +00:00
window - > session ( ) . saveSettingsDelayed ( ) ;
2018-09-06 13:48:01 +00:00
}
}
2019-07-24 14:00:30 +00:00
} ) ) ;
2018-09-06 13:48:01 +00:00
} ) ;
}
2020-03-26 10:29:27 +00:00
codes . emplace ( qsl ( " sounds_reset " ) , [ ] ( SessionController * window ) {
if ( window ) {
window - > session ( ) . settings ( ) . clearSoundOverrides ( ) ;
2020-06-09 16:57:05 +00:00
window - > session ( ) . saveSettingsDelayed ( ) ;
2018-09-06 13:48:01 +00:00
Ui : : show ( Box < InformBox > ( " All sound overrides were reset. " ) ) ;
}
} ) ;
2019-09-26 14:26:36 +00:00
2018-09-06 13:48:01 +00:00
return codes ;
}
2020-03-26 10:29:27 +00:00
} // namespace
void CodesFeedString ( SessionController * window , const QString & text ) {
2018-09-06 13:48:01 +00:00
static const auto codes = GenerateCodes ( ) ;
static auto secret = QString ( ) ;
secret + = text . toLower ( ) ;
int size = secret . size ( ) , from = 0 ;
while ( size > from ) {
auto piece = secret . midRef ( from ) ;
auto found = false ;
for ( const auto & [ key , method ] : codes ) {
if ( piece = = key ) {
2020-03-26 10:29:27 +00:00
method ( window ) ;
2018-09-06 13:48:01 +00:00
from = size ;
found = true ;
break ;
}
}
if ( found ) break ;
found = ranges : : find_if ( codes , [ & ] ( const auto & pair ) {
return pair . first . startsWith ( piece ) ;
} ) ! = end ( codes ) ;
if ( found ) break ;
+ + from ;
}
secret = ( size > from ) ? secret . mid ( from ) : QString ( ) ;
}
} // namespace Settings