SparkleShare/SparkleLib/Git/GitCommand.cs

70 lines
2.5 KiB
C#
Raw Normal View History

// SparkleShare, a collaboration and sharing tool.
// Copyright (C) 2010 Hylke Bons <hylkebons@gmail.com>
//
// This program is free software: you can redistribute it and/or modify
2013-10-11 15:13:46 +00:00
// it under the terms of the GNU Lesser 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 copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
namespace SparkleLib.Git {
2016-03-30 23:36:31 +00:00
public class GitCommand : Command {
public static string SSHPath;
2016-03-30 20:43:19 +00:00
public static string GitPath;
public static string ExecPath;
public static string GitVersion {
get {
2016-03-30 23:36:31 +00:00
string git_version = new Command (GitPath, "--version").StartAndReadStandardOutput ();
2016-03-30 20:43:19 +00:00
return git_version.Replace ("git version ", "");
}
}
2016-03-30 23:36:31 +00:00
public GitCommand (string path, string args) : base (path, args)
{
2016-03-30 20:43:19 +00:00
if (GitPath == null)
GitPath = LocateCommand ("git");
2016-03-30 20:43:19 +00:00
StartInfo.FileName = GitPath;
StartInfo.WorkingDirectory = path;
if (string.IsNullOrEmpty (SSHPath))
SSHPath = "ssh";
string GIT_SSH_COMMAND = SSHPath + " " +
2016-03-27 21:08:36 +00:00
"-i \"" + SSHAuthenticationInfo.DefaultAuthenticationInfo.PrivateKeyFilePath + "\" " +
"-o UserKnownHostsFile=\"" + SSHAuthenticationInfo.DefaultAuthenticationInfo.KnownHostsFilePath + "\" " +
"-o PasswordAuthentication=no " +
2016-03-27 21:08:36 +00:00
"-F /dev/null"; // Ignore the environment's SSH config file
2016-03-30 20:43:19 +00:00
if (ExecPath == null)
SetEnvironmentVariable ("GIT_EXEC_PATH", ExecPath);
2016-03-26 19:47:34 +00:00
SetEnvironmentVariable ("GIT_SSH_COMMAND", GIT_SSH_COMMAND);
SetEnvironmentVariable ("GIT_TERMINAL_PROMPT", "0");
SetEnvironmentVariable ("LANG", "en_US");
}
void SetEnvironmentVariable (string variable, string content)
{
if (StartInfo.EnvironmentVariables.ContainsKey (variable))
StartInfo.EnvironmentVariables [variable] = content;
else
StartInfo.EnvironmentVariables.Add (variable, content);
}
}
}