/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- * * Copyright (C) 2014 Fabien Bourigault * * Licensed under the GNU General Public License Version 2 * * 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. * * 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 copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #include #include #include #include #include #include #include "pk-alpm-environment.h" void pk_alpm_environment_initialize (PkBackendJob *job) { struct utsname un; const gchar *tmp; gchar *value; /* PATH might have been nuked by D-Bus */ g_setenv ("PATH", PK_BACKEND_DEFAULT_PATH, FALSE); uname (&un); value = g_strdup_printf ("%s/%s (%s %s) libalpm/%s", PROJECT_NAME, PROJECT_VERSION, un.sysname, un.machine, alpm_version ()); g_setenv ("HTTP_USER_AGENT", value, FALSE); g_free (value); tmp = pk_backend_job_get_locale (job); if (tmp != NULL) setlocale (LC_ALL, tmp); tmp = pk_backend_job_get_proxy_http (job); if (!pk_strzero (tmp)) { g_autofree gchar *uri = pk_backend_convert_uri (tmp); g_setenv ("http_proxy", uri, TRUE); } else { g_unsetenv ("http_proxy"); } tmp = pk_backend_job_get_proxy_https (job); if (!pk_strzero (tmp)) { g_autofree gchar *uri = pk_backend_convert_uri (tmp); g_setenv ("https_proxy", uri, TRUE); } else { g_unsetenv ("https_proxy"); } tmp = pk_backend_job_get_proxy_ftp (job); if (!pk_strzero (tmp)) { g_autofree gchar *uri = pk_backend_convert_uri (tmp); g_setenv ("ftp_proxy", uri, TRUE); } else { g_unsetenv ("ftp_proxy"); } tmp = pk_backend_job_get_proxy_socks (job); if (!pk_strzero (tmp)) { g_autofree gchar *uri = pk_backend_convert_uri_socks (tmp); g_setenv ("all_proxy", uri, TRUE); } else { g_unsetenv ("all_proxy"); } tmp = pk_backend_job_get_no_proxy (job); if (!pk_strzero (tmp)) { g_setenv ("no_proxy", tmp, TRUE); } else { g_unsetenv ("no_proxy"); } tmp = pk_backend_job_get_pac (job); if (!pk_strzero (tmp)) { g_autofree gchar *uri = pk_backend_convert_uri (tmp); g_setenv ("pac", uri, TRUE); } else { g_unsetenv ("pac"); } }