SparkleShare/Sparkles/Git/GitCommand.cs

108 lines
3.6 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/>.
using System;
2016-03-31 08:35:26 +00:00
namespace Sparkles.Git {
2016-03-30 23:36:31 +00:00
public class GitCommand : Command {
2016-06-20 20:19:20 +00:00
public static string SSHPath = "ssh";
2016-03-30 20:43:19 +00:00
public static string ExecPath;
static string git_path;
public static string GitPath {
get {
if (git_path == null)
git_path = LocateCommand ("git");
return git_path;
}
set {
git_path = value;
}
}
2016-03-30 20:43:19 +00:00
public static string GitVersion {
get {
2016-03-31 14:46:17 +00:00
if (GitPath == null)
GitPath = LocateCommand ("git");
2016-06-18 00:03:40 +00:00
string git_version = new Command (GitPath, "--version", false).StartAndReadStandardOutput ();
2016-03-30 20:43:19 +00:00
return git_version.Replace ("git version ", "");
}
}
2016-05-30 03:12:20 +00:00
public static string GitLFSVersion {
get {
if (GitPath == null)
GitPath = LocateCommand ("git");
2016-05-30 03:12:20 +00:00
2016-06-18 00:03:40 +00:00
string git_lfs_version = new Command (GitPath, "lfs version", false).StartAndReadStandardOutput ();
2016-05-30 03:12:20 +00:00
return git_lfs_version.Replace ("git-lfs/", "").Split (' ') [0];
}
}
public GitCommand (string working_dir, string args) : this (working_dir, args, null)
{
}
public GitCommand (string working_dir, string args, SSHAuthenticationInfo auth_info) : base (GitPath, args)
{
StartInfo.WorkingDirectory = working_dir;
string GIT_SSH_COMMAND = SSHPath;
2016-05-30 03:12:20 +00:00
if (auth_info != null)
GIT_SSH_COMMAND = FormatGitSSHCommand (auth_info);
if (ExecPath != null)
SetEnvironmentVariable ("GIT_EXEC_PATH", ExecPath);
2016-03-26 19:47:34 +00:00
SetEnvironmentVariable ("GIT_SSH_COMMAND", GIT_SSH_COMMAND);
2016-03-26 19:47:34 +00:00
SetEnvironmentVariable ("GIT_TERMINAL_PROMPT", "0");
SetEnvironmentVariable ("LANG", "en_US");
}
2016-05-30 03:12:20 +00:00
public static string FormatGitSSHCommand (SSHAuthenticationInfo auth_info)
{
return SSHPath + " " +
"-i " + auth_info.PrivateKeyFilePath.Replace (" ", "\\ ") + " " +
"-o UserKnownHostsFile=" + auth_info.KnownHostsFilePath.Replace (" ", "\\ ") + " " +
"-o IdentitiesOnly=yes" + " " + // Don't fall back to other keys on the system
"-o PasswordAuthentication=no" + " " + // Don't hang on possible password prompts
"-F /dev/null"; // Ignore the system's SSH config file
2016-05-30 03:12:20 +00:00
}
void SetEnvironmentVariable (string variable, string content)
{
if (StartInfo.EnvironmentVariables.ContainsKey (variable))
StartInfo.EnvironmentVariables [variable] = content;
else
StartInfo.EnvironmentVariables.Add (variable, content);
}
}
}