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"
2020-06-17 09:36:25 +00:00
# include "main/main_account.h"
2020-06-18 18:04:16 +00:00
# include "main/main_domain.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"
2020-06-17 09:36:25 +00:00
# include "mtproto/mtproto_dc_options.h"
2018-09-06 13:48:01 +00:00
# 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"
2020-06-11 09:41:03 +00:00
# include "api/api_updates.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 " ) ;
} ) ;
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 ( " 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-18 18:04:16 +00:00
auto text = Core : : App ( ) . settings ( ) . moderateModeEnabled ( ) ? qsl ( " Disable moderate mode? " ) : qsl ( " Enable moderate mode? " ) ;
2020-06-09 16:57:05 +00:00
Ui : : show ( Box < ConfirmBox > ( text , [ = ] {
2020-06-18 18:04:16 +00:00
Core : : App ( ) . settings ( ) . setModerateModeEnabled ( ! Core : : App ( ) . settings ( ) . moderateModeEnabled ( ) ) ;
Core : : App ( ) . 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 ) {
2020-06-11 09:41:03 +00:00
if ( window ) {
window - > session ( ) . updates ( ) . getDifference ( ) ;
2018-09-06 13:48:01 +00:00
}
} ) ;
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 ) {
2020-06-18 18:04:16 +00:00
if ( ! Core : : App ( ) . domain ( ) . started ( ) ) {
2020-06-17 09:36:25 +00:00
return ;
}
const auto weak = window
? base : : make_weak ( & window - > session ( ) . account ( ) )
: nullptr ;
FileDialog : : GetOpenPath ( Core : : App ( ) . getFileDialogParent ( ) , " Open DC endpoints " , " DC Endpoints (*.tdesktop-endpoints) " , [ weak ] ( const FileDialog : : OpenResult & result ) {
2018-09-06 13:48:01 +00:00
if ( ! result . paths . isEmpty ( ) ) {
2020-06-17 09:36:25 +00:00
const auto loadFor = [ & ] ( not_null < Main : : Account * > account ) {
if ( ! account - > mtp ( ) . dcOptions ( ) . loadFromFile ( result . paths . front ( ) ) ) {
Ui : : show ( Box < InformBox > ( " Could not load endpoints :( Errors in 'log.txt'. " ) ) ;
}
} ;
if ( const auto strong = weak . get ( ) ) {
loadFor ( strong ) ;
} else {
2020-06-18 18:04:16 +00:00
for ( const auto & [ index , account ] : Core : : App ( ) . domain ( ) . accounts ( ) ) {
2020-06-17 09:36:25 +00:00
loadFor ( account . get ( ) ) ;
}
2018-09-06 13:48:01 +00:00
}
}
} ) ;
} ) ;
2020-03-26 10:29:27 +00:00
codes . emplace ( qsl ( " folders " ) , [ ] ( SessionController * window ) {
if ( window ) {
window - > showSettings ( Settings : : Type : : Folders ) ;
}
} ) ;
2020-07-14 16:36:55 +00:00
codes . emplace ( qsl ( " autodark " ) , [ ] ( SessionController * window ) {
auto text = Core : : App ( ) . settings ( ) . systemDarkModeEnabled ( ) ? qsl ( " Disable system dark mode? " ) : qsl ( " Enable system dark mode? " ) ;
Ui : : show ( Box < ConfirmBox > ( text , [ = ] {
Core : : App ( ) . settings ( ) . setSystemDarkModeEnabled ( ! Core : : App ( ) . settings ( ) . systemDarkModeEnabled ( ) ) ;
Core : : App ( ) . saveSettingsDelayed ( ) ;
Ui : : hideLayer ( ) ;
} ) ) ;
} ) ;
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-06-25 07:14:05 +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 ) {
2020-06-18 18:04:16 +00:00
FileDialog : : GetOpenPath ( Core : : App ( ) . getFileDialogParent ( ) , " Open audio file " , audioFilters , [ = ] ( const FileDialog : : OpenResult & result ) {
if ( ! 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-06-18 18:04:16 +00:00
Core : : App ( ) . settings ( ) . setSoundOverride (
2020-03-26 10:29:27 +00:00
key ,
result . paths . front ( ) ) ;
2020-06-18 18:04:16 +00:00
Core : : App ( ) . saveSettingsDelayed ( ) ;
2018-09-06 13:48:01 +00:00
}
}
2020-06-18 18:04:16 +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 ) {
2020-06-18 18:04:16 +00:00
Core : : App ( ) . settings ( ) . clearSoundOverrides ( ) ;
Core : : App ( ) . saveSettingsDelayed ( ) ;
Ui : : show ( Box < InformBox > ( " All sound overrides were reset. " ) ) ;
2018-09-06 13:48:01 +00:00
} ) ;
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 ;
2020-05-18 19:33:14 +00:00
found = ranges : : any_of ( codes , [ & ] ( const auto & pair ) {
2018-09-06 13:48:01 +00:00
return pair . first . startsWith ( piece ) ;
2020-05-18 19:33:14 +00:00
} ) ;
2018-09-06 13:48:01 +00:00
if ( found ) break ;
+ + from ;
}
secret = ( size > from ) ? secret . mid ( from ) : QString ( ) ;
}
} // namespace Settings