pamac-classic/src/pamac_config.vala

99 lines
3.7 KiB
Vala
Raw Permalink Normal View History

2014-10-22 13:44:02 -03:00
/*
* pamac-vala
*
2017-10-10 16:29:22 -03:00
* Copyright (C) 2017 Chris Cromer <cromer@cromnix.org>
2017-01-03 05:43:19 -03:00
* Copyright (C) 2014-2017 Guillaume Benoit <guillaume@manjaro.org>
2014-10-22 13:44:02 -03:00
*
* 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 3 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a get of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
namespace Pamac {
2019-07-06 20:28:51 -04:00
public class Config {
2016-04-14 13:19:20 -03:00
HashTable<string,string> _environment_variables;
public bool recurse { get; private set; }
public uint64 refresh_period { get; private set; }
public bool no_update_hide_icon { get; private set; }
2017-10-10 16:29:22 -03:00
#if DISABLE_AUR
#else
2016-04-14 13:19:20 -03:00
public bool enable_aur { get; private set; }
2017-10-02 10:23:53 -03:00
public bool search_aur { get; private set; }
2017-10-04 20:52:47 -03:00
public string aur_build_dir { get; private set; }
2016-04-14 13:19:20 -03:00
public bool check_aur_updates { get; private set; }
2017-10-10 16:29:22 -03:00
#endif
public uint64 keep_num_pkgs { get; private set; }
public bool rm_only_uninstalled { get; private set; }
2017-10-16 21:37:26 -03:00
public string terminal_background { get; private set; }
public string terminal_foreground { get; private set; }
public string terminal_font { get; private set; }
public bool update_files_db { get; private set; }
2016-04-14 13:19:20 -03:00
public unowned HashTable<string,string> environment_variables {
get {
return _environment_variables;
}
}
2014-10-22 13:44:02 -03:00
2017-11-10 22:36:50 -03:00
public Config () {
2016-02-02 05:28:07 -03:00
//get environment variables
2016-04-14 13:19:20 -03:00
_environment_variables = new HashTable<string,string> (str_hash, str_equal);
2016-02-02 05:28:07 -03:00
var utsname = Posix.utsname();
2016-04-14 13:19:20 -03:00
_environment_variables.insert ("HTTP_USER_AGENT", "pamac (%s %s)".printf (utsname.sysname, utsname.machine));
2016-02-02 05:28:07 -03:00
unowned string? variable = Environment.get_variable ("http_proxy");
if (variable != null) {
2016-04-14 13:19:20 -03:00
_environment_variables.insert ("http_proxy", variable);
2016-02-02 05:28:07 -03:00
}
variable = Environment.get_variable ("https_proxy");
if (variable != null) {
2016-04-14 13:19:20 -03:00
_environment_variables.insert ("https_proxy", variable);
2016-02-02 05:28:07 -03:00
}
variable = Environment.get_variable ("ftp_proxy");
if (variable != null) {
2016-04-14 13:19:20 -03:00
_environment_variables.insert ("ftp_proxy", variable);
2016-02-02 05:28:07 -03:00
}
variable = Environment.get_variable ("socks_proxy");
if (variable != null) {
2016-04-14 13:19:20 -03:00
_environment_variables.insert ("socks_proxy", variable);
2016-02-02 05:28:07 -03:00
}
variable = Environment.get_variable ("no_proxy");
if (variable != null) {
2016-04-14 13:19:20 -03:00
_environment_variables.insert ("no_proxy", variable);
2016-02-02 05:28:07 -03:00
}
// set default option
2015-08-20 10:11:18 -03:00
refresh_period = 6;
reload ();
}
public void reload () {
2017-11-10 22:36:50 -03:00
var settings = new Settings ("org.pamac.main");
recurse = settings.get_boolean ("remove-unrequired-deps");
refresh_period = settings.get_uint64 ("refresh-period");
no_update_hide_icon = settings.get_boolean ("no-update-hide-icon");
keep_num_pkgs = settings.get_uint64 ("keep-num-packages");
rm_only_uninstalled = settings.get_boolean ("only-rm-uninstalled");
terminal_background = settings.get_string ("background-color");
terminal_foreground = settings.get_string ("foreground-color");
terminal_font = settings.get_string ("terminal-font");
update_files_db = settings.get_boolean ("update-files-db");
2017-10-16 21:37:26 -03:00
#if DISABLE_AUR
#else
2017-11-10 22:36:50 -03:00
settings = new Settings ("org.pamac.aur");
enable_aur = settings.get_boolean ("enable-aur");
search_aur = settings.get_boolean ("search-in-aur");
check_aur_updates = settings.get_boolean ("check-aur-updates");
aur_build_dir = settings.get_string ("build-directory");
2017-10-16 21:37:26 -03:00
#endif
}
2014-10-22 13:44:02 -03:00
}
}