#region License Information (GPL v3) /* ShareX - A program that allows you to take screenshots and share any file type Copyright (C) 2007-2014 ShareX Developers 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. Optionally you can also view the license at . */ #endregion License Information (GPL v3) using HelpersLib; using Renci.SshNet; using Renci.SshNet.Common; using Renci.SshNet.Sftp; using System; using System.Collections.Generic; using System.IO; using System.Linq; namespace UploadersLib.FileUploaders { public sealed class SFTP : FileUploader, IDisposable { public FTPAccount Account { get; private set; } public bool IsValidAccount { get { return (!string.IsNullOrEmpty(Account.Keypath) && File.Exists(Account.Keypath)) || !string.IsNullOrEmpty(Account.Password); } } public bool IsConnected { get { return client != null && client.IsConnected; } } private SftpClient client; public SFTP(FTPAccount account) { Account = account; } public bool Connect() { if (client == null) { if (!string.IsNullOrEmpty(Account.Keypath) && File.Exists(Account.Keypath)) { PrivateKeyFile keyFile; if (string.IsNullOrEmpty(Account.Passphrase)) { keyFile = new PrivateKeyFile(Account.Keypath); } else { keyFile = new PrivateKeyFile(Account.Keypath, Account.Passphrase); } client = new SftpClient(Account.Host, Account.Port, Account.Username, keyFile); } else if (!string.IsNullOrEmpty(Account.Password)) { client = new SftpClient(Account.Host, Account.Port, Account.Username, Account.Password); } if (client != null) { client.BufferSize = (uint)BufferSize; } } if (client != null && !client.IsConnected) { client.Connect(); } return IsConnected; } public void Disconnect() { if (client != null && client.IsConnected) { client.Disconnect(); } } public void ChangeDirectory(string path) { if (Connect()) { try { client.ChangeDirectory(path); } catch (SftpPathNotFoundException) { CreateDirectory(path); ChangeDirectory(path); } } } public void CreateDirectory(string path) { if (Connect()) { try { client.CreateDirectory(path); } catch (SftpPathNotFoundException) { CreateMultiDirectory(path); } catch (SftpPermissionDeniedException) { } } } public bool DirectoryExists(string path) { if (Connect()) { try { string workingDirectory = client.WorkingDirectory; client.ChangeDirectory(path); client.ChangeDirectory(workingDirectory); return true; } catch (SftpPathNotFoundException) { } } return false; } public List CreateMultiDirectory(string path) { List directoryList = new List(); IEnumerable paths = URLHelpers.GetPaths(path).Select(x => x.TrimStart('/')); foreach (string directory in paths) { if (!DirectoryExists(directory)) { CreateDirectory(directory); directoryList.Add(directory); } } return directoryList; } public override UploadResult Upload(Stream stream, string fileName) { UploadResult result = new UploadResult(); if (Connect()) { fileName = Helpers.GetValidURL(fileName); string folderPath = Account.GetSubFolderPath(); string filePath = Helpers.CombineURL(folderPath, fileName); try { IsUploading = true; UploadStream(stream, filePath); } catch (SftpPathNotFoundException) { CreateDirectory(folderPath); UploadStream(stream, filePath); } finally { IsUploading = false; } Disconnect(); if (!stopUpload && Errors.Count == 0) { result.URL = Account.GetUriPath(fileName); } } return result; } private void UploadStream(Stream stream, string path) { using (SftpFileStream sftpStream = client.OpenWrite(path)) { TransferData(stream, sftpStream); } } public void Dispose() { if (client != null) { Disconnect(); client.Dispose(); } } } }