1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625
|
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
//
// copyright : (C) 2014 Eran Ifrah
// file name : sftp.cpp
//
// -------------------------------------------------------------------------
// A
// _____ _ _ _ _
// / __ \ | | | | (_) |
// | / \/ ___ __| | ___| | _| |_ ___
// | | / _ \ / _ |/ _ \ | | | __/ _ )
// | \__/\ (_) | (_| | __/ |___| | || __/
// \____/\___/ \__,_|\___\_____/_|\__\___|
//
// F i l e
//
// 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.
//
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
#include "JSON.h"
#include "SFTPBrowserDlg.h"
#include "SFTPSettingsDialog.h"
#include "SFTPStatusPage.h"
#include "SFTPTreeView.h"
#include "SSHAccountManagerDlg.h"
#include "clFilesCollector.h"
#include "cl_command_event.h"
#include "cl_standard_paths.h"
#include "detachedpanesinfo.h"
#include "dockablepane.h"
#include "event_notifier.h"
#include "file_logger.h"
#include "fileutils.h"
#include "globals.h"
#include "procutils.h"
#include "sftp.h"
#include "sftp_settings.h"
#include "sftp_worker_thread.h"
#include "sftp_workspace_settings.h"
#include <algorithm>
#include <wx/log.h>
#include <wx/menu.h>
#include <wx/msgdlg.h>
#include <wx/xrc/xmlres.h>
static SFTP* thePlugin = NULL;
const wxEventType wxEVT_SFTP_OPEN_SSH_ACCOUNT_MANAGER = ::wxNewEventType();
const wxEventType wxEVT_SFTP_SETTINGS = ::wxNewEventType();
const wxEventType wxEVT_SFTP_SETUP_WORKSPACE_MIRRORING = ::wxNewEventType();
const wxEventType wxEVT_SFTP_DISABLE_WORKSPACE_MIRRORING = ::wxNewEventType();
// Exposed API (via events)
// SFTP plugin provides SFTP functionality for codelite based on events
// It uses the event type clCommandEvent to accept requests from codelite's code
// the SFTP uses the event GetString() method to read a string in the form of JSON format
// For example, to instruct the plugin to connect over SSH to a remote server and save a remote file:
// the GetString() should retrun this JSON string:
// {
// account : "account-name-to-use",
// local_file : "/path/to/local/file",
// remote_file : "/path/to/remote/file",
// }
// Define the plugin entry point
CL_PLUGIN_API IPlugin* CreatePlugin(IManager* manager)
{
if(thePlugin == 0) {
thePlugin = new SFTP(manager);
}
return thePlugin;
}
CL_PLUGIN_API PluginInfo* GetPluginInfo()
{
static PluginInfo info;
info.SetAuthor(wxT("Eran Ifrah"));
info.SetName(wxT("SFTP"));
info.SetDescription(_("SFTP plugin for codelite IDE"));
info.SetVersion(wxT("v1.0"));
return &info;
}
CL_PLUGIN_API int GetPluginInterfaceVersion() { return PLUGIN_INTERFACE_VERSION; }
SFTP::SFTP(IManager* manager)
: IPlugin(manager)
{
m_longName = _("SFTP plugin for codelite IDE");
m_shortName = wxT("SFTP");
wxTheApp->Connect(wxEVT_SFTP_OPEN_SSH_ACCOUNT_MANAGER, wxEVT_MENU, wxCommandEventHandler(SFTP::OnAccountManager),
NULL, this);
wxTheApp->Connect(wxEVT_SFTP_SETTINGS, wxEVT_MENU, wxCommandEventHandler(SFTP::OnSettings), NULL, this);
wxTheApp->Connect(wxEVT_SFTP_SETUP_WORKSPACE_MIRRORING, wxEVT_MENU,
wxCommandEventHandler(SFTP::OnSetupWorkspaceMirroring), NULL, this);
wxTheApp->Connect(wxEVT_SFTP_DISABLE_WORKSPACE_MIRRORING, wxEVT_MENU,
wxCommandEventHandler(SFTP::OnDisableWorkspaceMirroring), NULL, this);
wxTheApp->Connect(wxEVT_SFTP_DISABLE_WORKSPACE_MIRRORING, wxEVT_UPDATE_UI,
wxUpdateUIEventHandler(SFTP::OnDisableWorkspaceMirroringUI), NULL, this);
EventNotifier::Get()->Bind(wxEVT_WORKSPACE_LOADED, &SFTP::OnWorkspaceOpened, this);
EventNotifier::Get()->Bind(wxEVT_WORKSPACE_CLOSED, &SFTP::OnWorkspaceClosed, this);
EventNotifier::Get()->Bind(wxEVT_FILE_SAVED, &SFTP::OnFileSaved, this);
EventNotifier::Get()->Bind(wxEVT_FILE_RENAMED, &SFTP::OnFileRenamed, this);
EventNotifier::Get()->Bind(wxEVT_FILE_DELETED, &SFTP::OnFileDeleted, this);
EventNotifier::Get()->Bind(wxEVT_FILES_MODIFIED_REPLACE_IN_FILES, &SFTP::OnReplaceInFiles, this);
EventNotifier::Get()->Bind(wxEVT_EDITOR_CLOSING, &SFTP::OnEditorClosed, this);
// API support
EventNotifier::Get()->Bind(wxEVT_SFTP_SAVE_FILE, &SFTP::OnSaveFile, this);
EventNotifier::Get()->Bind(wxEVT_SFTP_RENAME_FILE, &SFTP::OnRenameFile, this);
EventNotifier::Get()->Bind(wxEVT_SFTP_DELETE_FILE, &SFTP::OnDeleteFile, this);
EventNotifier::Get()->Bind(wxEVT_SFTP_OPEN_FILE, &SFTP::OnOpenFile, this);
// Add the "SFTP" page to the workspace pane
Notebook* book = m_mgr->GetWorkspacePaneNotebook();
if(IsPaneDetached(_("SFTP"))) {
// Make the window child of the main panel (which is the grand parent of the notebook)
DockablePane* cp =
new DockablePane(book->GetParent()->GetParent(), book, _("SFTP"), false, wxNOT_FOUND, wxSize(200, 200));
m_treeView = new SFTPTreeView(cp, this);
cp->SetChildNoReparent(m_treeView);
} else {
m_treeView = new SFTPTreeView(book, this);
book->AddPage(m_treeView, _("SFTP"), false);
}
// Add the "SFTP Log" page to the output pane
book = m_mgr->GetOutputPaneNotebook();
auto images = book->GetBitmaps();
int bmp_index = images->Add("upload");
if(IsPaneDetached(_("SFTP Log"))) {
// Make the window child of the main panel (which is the grand parent of the notebook)
DockablePane* cp =
new DockablePane(book->GetParent()->GetParent(), book, _("SFTP Log"), false, bmp_index, wxSize(200, 200));
m_outputPane = new SFTPStatusPage(cp, this);
cp->SetChildNoReparent(m_outputPane);
} else {
m_outputPane = new SFTPStatusPage(book, this);
book->AddPage(m_outputPane, _("SFTP Log"), false, bmp_index);
}
// Create the helper for adding our tabs in the "more" menu
m_tabToggler.reset(new clTabTogglerHelper(_("SFTP Log"), m_outputPane, _("SFTP"), m_treeView));
m_tabToggler->SetOutputTabBmp(bmp_index);
SFTPWorkerThread::Instance()->SetNotifyWindow(m_outputPane);
SFTPWorkerThread::Instance()->SetSftpPlugin(this);
SFTPWorkerThread::Instance()->Start();
EventNotifier::Get()->Bind(wxEVT_INIT_DONE, &SFTP::OnInitDone, this);
}
SFTP::~SFTP() {}
void SFTP::CreateToolBar(clToolBarGeneric* toolbar) { wxUnusedVar(toolbar); }
void SFTP::CreatePluginMenu(wxMenu* pluginsMenu)
{
wxMenu* menu = new wxMenu();
wxMenuItem* item(NULL);
item = new wxMenuItem(menu, wxEVT_SFTP_OPEN_SSH_ACCOUNT_MANAGER, _("Open SSH Account Manager"),
_("Open SSH Account Manager"), wxITEM_NORMAL);
menu->Append(item);
menu->AppendSeparator();
item = new wxMenuItem(menu, wxEVT_SFTP_SETTINGS, _("Settings..."), _("Settings..."), wxITEM_NORMAL);
menu->Append(item);
pluginsMenu->Append(wxID_ANY, _("SFTP"), menu);
}
void SFTP::HookPopupMenu(wxMenu* menu, MenuType type)
{
if(type == MenuTypeFileView_Workspace) {
// Create the popup menu for the virtual folders
wxMenuItem* item(NULL);
wxMenu* sftpMenu = new wxMenu();
item = new wxMenuItem(sftpMenu, wxEVT_SFTP_SETUP_WORKSPACE_MIRRORING, _("&Setup..."), wxEmptyString,
wxITEM_NORMAL);
sftpMenu->Append(item);
item = new wxMenuItem(sftpMenu, wxEVT_SFTP_DISABLE_WORKSPACE_MIRRORING, _("&Disable"), wxEmptyString,
wxITEM_NORMAL);
sftpMenu->Append(item);
item = new wxMenuItem(menu, wxID_SEPARATOR);
menu->Prepend(item);
menu->Prepend(wxID_ANY, _("Workspace Mirroring"), sftpMenu);
}
}
bool SFTP::IsPaneDetached(const wxString& name) const
{
DetachedPanesInfo dpi;
m_mgr->GetConfigTool()->ReadObject(wxT("DetachedPanesList"), &dpi);
const wxArrayString& detachedPanes = dpi.GetPanes();
return detachedPanes.Index(name) != wxNOT_FOUND;
}
void SFTP::UnPlug()
{
// Find our page and release it
// before this plugin is un-plugged we must remove the tab we added
for(size_t i = 0; i < m_mgr->GetOutputPaneNotebook()->GetPageCount(); ++i) {
if(m_outputPane == m_mgr->GetOutputPaneNotebook()->GetPage(i)) {
m_mgr->GetOutputPaneNotebook()->RemovePage(i);
break;
}
}
m_outputPane->Destroy();
for(size_t i = 0; i < m_mgr->GetWorkspacePaneNotebook()->GetPageCount(); ++i) {
if(m_treeView == m_mgr->GetWorkspacePaneNotebook()->GetPage(i)) {
m_mgr->GetWorkspacePaneNotebook()->RemovePage(i);
break;
}
}
m_treeView->Destroy();
SFTPWorkerThread::Release();
wxTheApp->Disconnect(wxEVT_SFTP_OPEN_SSH_ACCOUNT_MANAGER, wxEVT_MENU, wxCommandEventHandler(SFTP::OnAccountManager),
NULL, this);
wxTheApp->Disconnect(wxEVT_SFTP_SETTINGS, wxEVT_MENU, wxCommandEventHandler(SFTP::OnSettings), NULL, this);
wxTheApp->Disconnect(wxEVT_SFTP_SETUP_WORKSPACE_MIRRORING, wxEVT_MENU,
wxCommandEventHandler(SFTP::OnSetupWorkspaceMirroring), NULL, this);
wxTheApp->Disconnect(wxEVT_SFTP_DISABLE_WORKSPACE_MIRRORING, wxEVT_MENU,
wxCommandEventHandler(SFTP::OnDisableWorkspaceMirroring), NULL, this);
wxTheApp->Disconnect(wxEVT_SFTP_DISABLE_WORKSPACE_MIRRORING, wxEVT_UPDATE_UI,
wxUpdateUIEventHandler(SFTP::OnDisableWorkspaceMirroringUI), NULL, this);
EventNotifier::Get()->Unbind(wxEVT_WORKSPACE_LOADED, &SFTP::OnWorkspaceOpened, this);
EventNotifier::Get()->Unbind(wxEVT_WORKSPACE_CLOSED, &SFTP::OnWorkspaceClosed, this);
EventNotifier::Get()->Unbind(wxEVT_FILE_SAVED, &SFTP::OnFileSaved, this);
EventNotifier::Get()->Unbind(wxEVT_FILE_RENAMED, &SFTP::OnFileRenamed, this);
EventNotifier::Get()->Unbind(wxEVT_FILE_DELETED, &SFTP::OnFileDeleted, this);
EventNotifier::Get()->Unbind(wxEVT_FILES_MODIFIED_REPLACE_IN_FILES, &SFTP::OnReplaceInFiles, this);
EventNotifier::Get()->Unbind(wxEVT_EDITOR_CLOSING, &SFTP::OnEditorClosed, this);
EventNotifier::Get()->Unbind(wxEVT_SFTP_SAVE_FILE, &SFTP::OnSaveFile, this);
EventNotifier::Get()->Unbind(wxEVT_SFTP_RENAME_FILE, &SFTP::OnRenameFile, this);
EventNotifier::Get()->Unbind(wxEVT_SFTP_DELETE_FILE, &SFTP::OnDeleteFile, this);
EventNotifier::Get()->Unbind(wxEVT_SFTP_OPEN_FILE, &SFTP::OnOpenFile, this);
EventNotifier::Get()->Unbind(wxEVT_INIT_DONE, &SFTP::OnInitDone, this);
m_tabToggler.reset(NULL);
// Delete the temporary files
wxFileName::Rmdir(clSFTP::GetDefaultDownloadFolder({}), wxPATH_RMDIR_RECURSIVE);
}
void SFTP::OnAccountManager(wxCommandEvent& e)
{
wxUnusedVar(e);
SSHAccountManagerDlg dlg(wxTheApp->GetTopWindow());
dlg.ShowModal();
}
void SFTP::OnSetupWorkspaceMirroring(wxCommandEvent& e)
{
SFTPBrowserDlg dlg(wxTheApp->GetTopWindow(), _("Select the remote workspace"), "*.workspace");
dlg.Initialize(m_workspaceSettings.GetAccount(), m_workspaceSettings.GetRemoteWorkspacePath());
if(dlg.ShowModal() == wxID_OK) {
m_workspaceSettings.SetRemoteWorkspacePath(dlg.GetPath());
m_workspaceSettings.SetAccount(dlg.GetAccount());
SFTPWorkspaceSettings::Save(m_workspaceSettings, m_workspaceFile);
}
}
void SFTP::OnWorkspaceOpened(clWorkspaceEvent& e)
{
e.Skip();
if(e.IsRemote()) {
m_workspaceFile.Clear();
m_workspaceSettings.Clear();
} else {
m_workspaceFile = e.GetString();
SFTPWorkspaceSettings::Load(m_workspaceSettings, m_workspaceFile);
}
}
void SFTP::OnWorkspaceClosed(clWorkspaceEvent& e)
{
e.Skip();
m_workspaceFile.Clear();
m_workspaceSettings.Clear();
}
void SFTP::OnFileSaved(clCommandEvent& e)
{
e.Skip();
// --------------------------------------
// Sanity
// --------------------------------------
wxString local_file = e.GetString();
local_file.Trim().Trim(false);
DoFileSaved(local_file);
}
void SFTP::OnFileWriteOK(const wxString& message) { clLogMessage(message); }
void SFTP::OnFileWriteError(const wxString& errorMessage) { clLogMessage(errorMessage); }
void SFTP::OnDisableWorkspaceMirroring(wxCommandEvent& e)
{
m_workspaceSettings.Clear();
SFTPWorkspaceSettings::Save(m_workspaceSettings, m_workspaceFile);
}
void SFTP::OnDisableWorkspaceMirroringUI(wxUpdateUIEvent& e)
{
e.Enable(m_workspaceFile.IsOk() && m_workspaceSettings.IsOk());
}
void SFTP::OnSaveFile(clSFTPEvent& e)
{
SFTPSettings settings;
settings.Load();
wxString accName = e.GetAccount();
wxString localFile = e.GetLocalFile();
wxString remoteFile = e.GetRemoteFile();
SSHAccountInfo account;
if(settings.GetAccount(accName, account)) {
SFTPWorkerThread::Instance()->Add(new SFTPThreadRequet(account, remoteFile, localFile, 0));
} else {
wxString msg;
msg << _("Failed to synchronize file '") << localFile << "'\n"
<< _("with remote server\n") << _("Could not locate account: ") << accName;
::wxMessageBox(msg, _("SFTP"), wxOK | wxICON_ERROR);
}
}
void SFTP::DoSaveRemoteFile(const RemoteFileInfo& remoteFile)
{
SFTPWorkerThread::Instance()->Add(new SFTPThreadRequet(remoteFile.GetAccount(), remoteFile.GetRemoteFile(),
remoteFile.GetLocalFile(), remoteFile.GetPremissions()));
}
void SFTP::FileDownloadedSuccessfully(const SFTPClientData& cd)
{
wxString tooltip;
tooltip << "Local: " << cd.GetLocalPath() << "\n"
<< "Remote: " << cd.GetRemotePath();
IEditor* editor = m_mgr->OpenFile(cd.GetLocalPath(), "download", tooltip);
if(editor) {
// Tag this editor as a remote file
SFTPClientData* pcd = new SFTPClientData(cd);
editor->SetClientData("sftp", pcd);
// set the line number
if(cd.GetLineNumber() != wxNOT_FOUND) {
editor->GetCtrl()->GotoLine(cd.GetLineNumber());
}
}
// Now that the file was downloaded, update the file permissions
if(m_remoteFiles.count(cd.GetLocalPath())) {
RemoteFileInfo& info = m_remoteFiles[cd.GetLocalPath()];
info.SetPremissions(cd.GetPermissions());
}
}
void SFTP::OpenWithDefaultApp(const wxString& localFileName) { ::wxLaunchDefaultApplication(localFileName); }
void SFTP::AddRemoteFile(const RemoteFileInfo& remoteFile)
{
if(m_remoteFiles.count(remoteFile.GetLocalFile())) {
m_remoteFiles.erase(remoteFile.GetLocalFile());
}
m_remoteFiles.insert(std::make_pair(remoteFile.GetLocalFile(), remoteFile));
}
void SFTP::OnEditorClosed(wxCommandEvent& e)
{
e.Skip();
IEditor* editor = (IEditor*)e.GetClientData();
if(editor) {
wxString localFile = editor->GetFileName().GetFullPath();
if(m_remoteFiles.count(localFile)) {
wxLogNull noLog;
// Remove the file from our cache
clRemoveFile(localFile);
m_remoteFiles.erase(localFile);
}
}
}
void SFTP::MSWInitiateConnection()
{
#ifdef __WXMSW__
// Under Windows, there seems to be a small problem with the connection establishment
// only the first connection seems to be unstable (i.e. it takes up to 30 seconds to create it)
// to workaround this, we initiate a dummy connection to the first connection we can find
SFTPSettings settings;
settings.Load();
const SSHAccountInfo::Vect_t& accounts = settings.GetAccounts();
if(accounts.empty())
return;
const SSHAccountInfo& account = accounts.at(0);
SFTPWorkerThread::Instance()->Add(new SFTPThreadRequet(account));
#endif
}
void SFTP::OnSettings(wxCommandEvent& e)
{
// Show the SFTP settings dialog
SFTPSettingsDialog dlg(EventNotifier::Get()->TopFrame());
dlg.ShowModal();
}
void SFTP::DoFileSaved(const wxString& filename)
{
if(filename.IsEmpty())
return;
// Check to see if this file is part of a remote files managed by our plugin
if(m_remoteFiles.count(filename)) {
// ----------------------------------------------------------------------------------------------
// this file was opened by the SFTP explorer
// ----------------------------------------------------------------------------------------------
DoSaveRemoteFile(m_remoteFiles.find(filename)->second);
} else {
// ----------------------------------------------------------------------------------------------
// Not a remote file, see if have a sychronization setup between this workspace and a remote one
// ----------------------------------------------------------------------------------------------
wxString remoteFile = GetRemotePath(filename);
if(remoteFile.IsEmpty()) {
return;
}
SFTPSettings settings;
settings.Load();
SSHAccountInfo account;
if(settings.GetAccount(m_workspaceSettings.GetAccount(), account)) {
SFTPWorkerThread::Instance()->Add(new SFTPThreadRequet(account, remoteFile, filename, 0));
} else {
wxString msg;
msg << _("Failed to synchronize file '") << filename << "'\n"
<< _("with remote server\n") << _("Could not locate account: ") << m_workspaceSettings.GetAccount();
::wxMessageBox(msg, _("SFTP"), wxOK | wxICON_ERROR);
// Disable the workspace mirroring for this workspace
m_workspaceSettings.Clear();
SFTPWorkspaceSettings::Save(m_workspaceSettings, m_workspaceFile);
}
}
}
void SFTP::OnReplaceInFiles(clFileSystemEvent& e)
{
e.Skip();
const wxArrayString& files = e.GetStrings();
for(size_t i = 0; i < files.size(); ++i) {
DoFileSaved(files.Item(i));
}
}
void SFTP::OpenContainingFolder(const wxString& localFileName) { FileUtils::OpenFileExplorerAndSelect(localFileName); }
void SFTP::OnFileRenamed(clFileSystemEvent& e)
{
e.Skip();
// Convert local paths to remote paths
wxString remoteFile = GetRemotePath(e.GetPath());
wxString remoteNew = GetRemotePath(e.GetNewpath());
if(remoteFile.IsEmpty() || remoteNew.IsEmpty()) {
return;
}
SFTPSettings settings;
settings.Load();
SSHAccountInfo account;
if(settings.GetAccount(m_workspaceSettings.GetAccount(), account)) {
clDEBUG() << "SFTP: Renaming remote file:" << remoteFile << "->" << remoteNew;
SFTPWorkerThread::Instance()->Add(new SFTPThreadRequet(account, remoteFile, remoteNew));
} else {
wxString msg;
msg << _("Failed to rename file '") << e.GetPath() << "'\n"
<< _("with remote server\n") << _("Could not locate account: ") << m_workspaceSettings.GetAccount();
::wxMessageBox(msg, _("SFTP"), wxOK | wxICON_ERROR);
// Disable the workspace mirroring for this workspace
m_workspaceSettings.Clear();
SFTPWorkspaceSettings::Save(m_workspaceSettings, m_workspaceFile);
}
}
void SFTP::OnFileDeleted(clFileSystemEvent& e)
{
e.Skip();
const wxArrayString& files = e.GetPaths();
for(size_t i = 0; i < files.size(); ++i) {
DoFileDeleted(files.Item(i));
}
}
bool SFTP::IsCxxWorkspaceMirrorEnabled() const { return m_workspaceFile.IsOk() && m_workspaceSettings.IsOk(); }
void SFTP::OnRenameFile(clSFTPEvent& e)
{
SFTPSettings settings;
settings.Load();
wxString accName = e.GetAccount();
wxString remoteOld = e.GetRemoteFile();
wxString remoteNew = e.GetNewRemoteFile();
SSHAccountInfo account;
if(settings.GetAccount(accName, account)) {
SFTPWorkerThread::Instance()->Add(new SFTPThreadRequet(account, remoteOld, remoteNew));
} else {
wxString msg;
msg << _("Failed to rename file '") << remoteOld << "'\n"
<< _("with remote server\n") << _("Could not locate account: ") << accName;
::wxMessageBox(msg, _("SFTP"), wxOK | wxICON_ERROR);
}
}
void SFTP::OnDeleteFile(clSFTPEvent& e)
{
SFTPSettings settings;
settings.Load();
wxString accName = e.GetAccount();
wxString path = e.GetRemoteFile();
SSHAccountInfo account;
if(settings.GetAccount(accName, account)) {
SFTPWorkerThread::Instance()->Add(new SFTPThreadRequet(account, path));
} else {
wxString msg;
msg << _("Failed to delete remote file '") << path << _("'\nCould not locate account: ") << accName;
::wxMessageBox(msg, _("SFTP"), wxOK | wxICON_ERROR);
}
}
void SFTP::DoFileDeleted(const wxString& filepath)
{
wxString remoteFile = GetRemotePath(filepath);
if(remoteFile.IsEmpty()) {
return;
}
SFTPSettings settings;
settings.Load();
SSHAccountInfo account;
if(settings.GetAccount(m_workspaceSettings.GetAccount(), account)) {
SFTPWorkerThread::Instance()->Add(new SFTPThreadRequet(account, remoteFile));
} else {
wxString msg;
msg << _("Failed to delete remote file: ") << remoteFile << "'\n"
<< _("Could not locate account: ") << m_workspaceSettings.GetAccount();
::wxMessageBox(msg, _("SFTP"), wxOK | wxICON_ERROR);
// Disable the workspace mirroring for this workspace
m_workspaceSettings.Clear();
SFTPWorkspaceSettings::Save(m_workspaceSettings, m_workspaceFile);
}
}
wxString SFTP::GetRemotePath(const wxString& localpath) const
{
if(!IsCxxWorkspaceMirrorEnabled()) {
return "";
}
wxFileName file(localpath);
file.MakeRelativeTo(m_workspaceFile.GetPath());
file.MakeAbsolute(wxFileName(m_workspaceSettings.GetRemoteWorkspacePath(), wxPATH_UNIX).GetPath());
return file.GetFullPath(wxPATH_UNIX);
}
void SFTP::OpenFile(const wxString& remotePath, int lineNumber)
{
RemoteFileInfo::Map_t::iterator iter =
std::find_if(m_remoteFiles.begin(), m_remoteFiles.end(), [&](const RemoteFileInfo::Map_t::value_type& vt) {
return vt.second.GetRemoteFile() == remotePath;
});
if(iter != m_remoteFiles.end()) {
m_mgr->OpenFile(iter->second.GetLocalFile(), "", lineNumber);
} else {
RemoteFileInfo remoteFile;
remoteFile.SetAccount(GetTreeView()->GetAccount());
remoteFile.SetRemoteFile(remotePath);
remoteFile.SetLineNumber(lineNumber);
SFTPThreadRequet* req = new SFTPThreadRequet(remoteFile);
SFTPWorkerThread::Instance()->Add(req);
AddRemoteFile(remoteFile);
}
}
void SFTP::OnInitDone(wxCommandEvent& event) { event.Skip(); }
void SFTP::OnOpenFile(clSFTPEvent& e)
{
e.Skip();
OpenFile(e.GetRemoteFile(), e.GetLineNumber());
}
|