123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998 |
- // FileZilla - a Windows ftp client
- // Copyright (C) 2002-2004 - Tim Kosse <[email protected]>
- // 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- // FileZillaApi.cpp: Implementierung der Klasse CFileZillaApi.
- //
- //////////////////////////////////////////////////////////////////////
- #include "stdafx.h"
- #include "FileZillaApi.h"
- #include "mainthread.h"
- #ifndef MPEXT_NO_CACHE
- #include "directorycache.h"
- #endif
- #ifdef _DEBUG
- #undef THIS_FILE
- static char THIS_FILE[]=__FILE__;
- #define new DEBUG_NEW
- #endif
- //////////////////////////////////////////////////////////////////////
- // Konstruktion/Destruktion
- //////////////////////////////////////////////////////////////////////
- CFileZillaApi::CFileZillaApi()
- {
- m_hOwnerWnd=0;
- #ifndef MPEXT
- //Create Message IDs
- m_nReplyMessageID=RegisterWindowMessage( _T("FileZillaApiReplyMessage{8EF2E328-685E-4815-A9B9-823512F8381D}") );
- #else
- m_nReplyMessageID=0;
- #endif
- m_nInternalMessageID=0;
- m_pMainThread=0;
- m_bInitialized=FALSE;
- }
- CFileZillaApi::~CFileZillaApi()
- {
- Destroy();
- }
- #ifndef MPEXT
- int CFileZillaApi::Init(HWND hOwnerWnd, int nReplyMessageID /*=0*/)
- #else
- int CFileZillaApi::Init(CApiLog * pParent, CFileZillaTools * pTools)
- #endif
- {
- //Check parameters
- //-> No check needed, if hOwnerWnd is NULL, use blocking mode and don't send status messages
- //Check if call allowed
- if (m_bInitialized)
- return FZ_REPLY_ALREADYINIZIALIZED;
- //Initialize variables
- #ifndef MPEXT
- if (nReplyMessageID)
- m_nReplyMessageID=nReplyMessageID;
- m_hOwnerWnd=hOwnerWnd;
- #endif
- m_nInternalMessageID=RegisterWindowMessage( _T("FileZillaInternalApiMessage{F958620E-040C-4b33-A091-7E04E10AA660}") );
- if (!m_nInternalMessageID)
- return FZ_REPLY_NOTINITIALIZED;
-
- //Create thread object
- m_pMainThread = CMainThread::Create(THREAD_PRIORITY_BELOW_NORMAL, CREATE_SUSPENDED);
- //Initialize Thread variables
- m_pMainThread->m_nInternalMessageID=m_nInternalMessageID;
- m_pMainThread->m_nReplyMessageID=m_nReplyMessageID;
- m_pMainThread->m_hOwnerWnd=m_hOwnerWnd;
- m_pMainThread->m_pTools=pTools;
- #ifndef MPEXT
- m_pMainThread->InitLog(m_hOwnerWnd, m_nReplyMessageID);
- #else
- m_pMainThread->InitLog(pParent);
- #endif
-
- //Resume Thread
- m_pMainThread->ResumeThread();
- //Initialization OK
- m_bInitialized=TRUE;
- return FZ_REPLY_OK;
- }
- unsigned int CFileZillaApi::GetMessageID()
- {
- return m_nReplyMessageID;
- }
- int CFileZillaApi::IsConnected()
- {
- if (!m_bInitialized)
- return FZ_REPLY_NOTINITIALIZED;
- return m_pMainThread->IsConnected()?FZ_REPLY_OK:FZ_REPLY_NOTCONNECTED;
- }
- int CFileZillaApi::IsBusy()
- {
- if (!m_bInitialized)
- return FZ_REPLY_NOTINITIALIZED;
- return m_pMainThread->IsBusy()?FZ_REPLY_BUSY:FZ_REPLY_IDLE;
- }
- int CFileZillaApi::Connect(const t_server &server)
- {
- //Check parameters
- if (server.host==_MPT("") || server.port<1 || server.port>65535)
- return FZ_REPLY_INVALIDPARAM;
- #ifndef MPEXT_NO_GSS
- BOOL bUseGSS = FALSE;
- if (COptions::GetOptionVal(OPTION_USEGSS))
- {
- USES_CONVERSION;
- CString GssServers = COptions::GetOption(OPTION_GSSSERVERS);
- hostent *fullname = gethostbyname(T2CA(server.host));
- CString host;
- if (fullname)
- host = fullname->h_name;
- else
- host = server.host;
- host.MakeLower();
- int i;
- while ((i=GssServers.Find( _T(";") ))!=-1)
- {
- if ((_MPT(".")+GssServers.Left(i))==host.Right(GssServers.Left(i).GetLength()+1) || GssServers.Left(i)==host)
- {
- bUseGSS = TRUE;
- break;
- }
- GssServers = GssServers.Mid(i+1);
- }
- }
- if (!bUseGSS && server.user == _MPT(""))
- return FZ_REPLY_INVALIDPARAM;
- #endif
- if (!(server.nServerType&FZ_SERVERTYPE_HIGHMASK))
- return FZ_REPLY_INVALIDPARAM;
- //Check if call allowed
- if (!m_bInitialized)
- return FZ_REPLY_NOTINITIALIZED;
- if (m_pMainThread->IsBusy())
- return FZ_REPLY_BUSY;
- t_command command;
- command.id=FZ_COMMAND_CONNECT;
- command.server=server;
- m_pMainThread->Command(command);
- if (m_hOwnerWnd)
- return FZ_REPLY_WOULDBLOCK;
- else
- return m_pMainThread->LastOperationSuccessful()?FZ_REPLY_OK:FZ_REPLY_ERROR;
- }
- int CFileZillaApi::List(int nListMode /*=FZ_LIST_USECACHE*/)
- {
- //Check if call allowed
- if (!m_bInitialized)
- return FZ_REPLY_NOTINITIALIZED;
- if (IsConnected()==FZ_REPLY_NOTCONNECTED)
- return FZ_REPLY_NOTCONNECTED;
- if (nListMode&FZ_LIST_REALCHANGE)
- return FZ_REPLY_INVALIDPARAM;
- #ifndef MPEXT_NO_CACHE
- if (nListMode&FZ_LIST_FORCECACHE)
- nListMode|=FZ_LIST_USECACHE;
- //Check if current dir is cached
- CServerPath path;
- if (nListMode&FZ_LIST_USECACHE)
- {
- if (!m_pMainThread->GetWorkingDirPath(path) || path.IsEmpty())
- m_pMainThread->GetCurrentPath(path);
- if (!path.IsEmpty())
- {
- t_server server;
- BOOL res=m_pMainThread->GetCurrentServer(server);
- if (res)
- {
- t_directory *directory=new t_directory;
- CDirectoryCache cache;
- res=cache.Lookup(path,server,*directory);
- if (res)
- {
- BOOL bExact=TRUE;
- if (nListMode & FZ_LIST_EXACT)
- for (int i=0;i<directory->num;i++)
- if (directory->direntry[i].bUnsure || (directory->direntry[i].size==-1 && !directory->direntry[i].dir))
- {
- bExact=FALSE;
- break;
- }
- if (bExact)
- {
- m_pMainThread->SetWorkingDir(directory);
- delete directory;
- return FZ_REPLY_OK;
- }
- }
- delete directory;
- }
- }
- }
- #else
- CServerPath path;
- // seems to be incorrectly skipped when cache is not required
- if (!m_pMainThread->GetWorkingDirPath(path) || path.IsEmpty())
- m_pMainThread->GetCurrentPath(path);
- #endif
- if (m_pMainThread->IsBusy())
- return FZ_REPLY_BUSY;
- #ifndef MPEXT_NO_CACHE
- if (nListMode&FZ_LIST_FORCECACHE)
- return FZ_REPLY_ERROR;
- #endif
- t_command command;
- command.id=FZ_COMMAND_LIST;
- command.path = path;
- command.param4=nListMode;
- m_pMainThread->Command(command);
- if (m_hOwnerWnd)
- return FZ_REPLY_WOULDBLOCK;
- else
- return m_pMainThread->LastOperationSuccessful()?FZ_REPLY_OK:FZ_REPLY_ERROR;
- }
- int CFileZillaApi::Cancel()
- {
- //Check if call allowed
- if (!m_bInitialized)
- return FZ_REPLY_NOTINITIALIZED;
- if (IsBusy()!=FZ_REPLY_BUSY)
- return FZ_REPLY_NOTBUSY;
- m_pMainThread->PostThreadMessage(m_nInternalMessageID, FZAPI_THREADMSG_CANCEL, 0);
- return FZ_REPLY_WOULDBLOCK;
- }
- void CFileZillaApi::Destroy()
- {
- if (!m_bInitialized)
- return;
- ASSERT(m_pMainThread);
- HANDLE tmp=m_pMainThread->m_hThread;
- m_pMainThread->Quit();
- //Wait for the main thread to quit
- WaitForSingleObject(tmp, 10000);
- #ifndef MPEXT
- PostMessage(m_hOwnerWnd, m_nReplyMessageID, FZ_MSG_MAKEMSG(FZ_MSG_QUITCOMPLETE, 0), 0);
- #endif
-
- m_pMainThread=0;
- m_bInitialized=FALSE;
- }
- int CFileZillaApi::Disconnect()
- {
- //Check if call allowed
- if (!m_bInitialized)
- return FZ_REPLY_NOTINITIALIZED;
- if (IsConnected()==FZ_REPLY_NOTCONNECTED)
- return FZ_REPLY_NOTCONNECTED;
- if (IsBusy()==FZ_REPLY_BUSY)
- return FZ_REPLY_BUSY;
-
- m_pMainThread->PostThreadMessage(m_nInternalMessageID,FZAPI_THREADMSG_DISCONNECT,0);
- return FZ_REPLY_WOULDBLOCK;
- }
- int CFileZillaApi::Command(t_command *pCommand)
- {
- //Check if call allowed
- if (!m_bInitialized)
- return FZ_REPLY_NOTINITIALIZED;
- //Dispatch command to command specific functions
- switch(pCommand->id)
- {
- case FZ_COMMAND_LIST:
- if (pCommand->param1!=_MPT(""))
- return List(pCommand->path,pCommand->param1,pCommand->param4);
- else if (!pCommand->path.IsEmpty())
- return List(pCommand->path,pCommand->param4);
- else
- return List(pCommand->param4);
- break;
- case FZ_COMMAND_CONNECT:
- return Connect(pCommand->server);
- break;
- case FZ_COMMAND_DISCONNECT:
- return Disconnect();
- break;
- case FZ_COMMAND_FILETRANSFER:
- return FileTransfer(pCommand->transferfile);
- break;
- case FZ_COMMAND_DELETE:
- return Delete(pCommand->param1, pCommand->path);
- break;
- case FZ_COMMAND_REMOVEDIR:
- return RemoveDir(pCommand->param1, pCommand->path);
- break;
- case FZ_COMMAND_MAKEDIR:
- return MakeDir(pCommand->path);
- break;
- case FZ_COMMAND_RENAME:
- return Rename(pCommand->param1, pCommand->param2, pCommand->path, pCommand->newPath);
- break;
- case FZ_COMMAND_CUSTOMCOMMAND:
- return CustomCommand(pCommand->param1);
- break;
- case FZ_COMMAND_CHMOD:
- return Chmod(pCommand->param4, pCommand->param1, pCommand->path);
- break;
- }
- return FZ_REPLY_INVALIDPARAM;
- }
- int CFileZillaApi::List(const CServerPath& path, int nListMode /*=FZ_LIST_USECACHE*/)
- {
- //Check if call allowed
- if (!m_bInitialized)
- return FZ_REPLY_NOTINITIALIZED;
- if (IsConnected()==FZ_REPLY_NOTCONNECTED)
- return FZ_REPLY_NOTCONNECTED;
- #ifndef MPEXT_NO_CACHE
- if ( (nListMode&(FZ_LIST_FORCECACHE|FZ_LIST_REALCHANGE))==(FZ_LIST_FORCECACHE|FZ_LIST_REALCHANGE) )
- return FZ_REPLY_INVALIDPARAM;
- if (nListMode&FZ_LIST_FORCECACHE)
- nListMode|=FZ_LIST_USECACHE;
- #endif
- if (path.IsEmpty())
- return FZ_REPLY_INVALIDPARAM;
-
- #ifndef MPEXT_NO_CACHE
- //Check if current dir is cached
- if (nListMode&FZ_LIST_USECACHE && !(nListMode&FZ_LIST_REALCHANGE))
- {
- t_server server;
- BOOL res=m_pMainThread->GetCurrentServer(server);
- if (res)
- {
- t_directory *directory=new t_directory;
- CDirectoryCache cache;
- res=cache.Lookup(path,server,*directory);
- if (res)
- {
- BOOL bExact=TRUE;
- if (nListMode & FZ_LIST_EXACT)
- for (int i=0;i<directory->num;i++)
- if (directory->direntry[i].bUnsure || (directory->direntry[i].size==-1 && !directory->direntry[i].dir))
- {
- bExact=FALSE;
- break;
- }
- if (bExact)
- {
- m_pMainThread->SetWorkingDir(directory);
- delete directory;
- return FZ_REPLY_OK;
- }
- }
- delete directory;
- }
- }
- #endif
- if (m_pMainThread->IsBusy())
- return FZ_REPLY_BUSY;
- #ifndef MPEXT_NO_CACHE
- if (nListMode&FZ_LIST_FORCECACHE)
- return FZ_REPLY_ERROR;
- #endif
- t_command command;
- command.id=FZ_COMMAND_LIST;
- command.path=path;
- command.param4=nListMode;
- m_pMainThread->Command(command);
- if (m_hOwnerWnd)
- return FZ_REPLY_WOULDBLOCK;
- else
- return m_pMainThread->LastOperationSuccessful()?FZ_REPLY_OK:FZ_REPLY_ERROR;
- }
- int CFileZillaApi::List(const CServerPath& parent, CString dirname, int nListMode /*=FZ_LIST_USECACHE*/)
- {
- //Check if call allowed
- if (!m_bInitialized)
- return FZ_REPLY_NOTINITIALIZED;
- if (IsConnected()==FZ_REPLY_NOTCONNECTED)
- return FZ_REPLY_NOTCONNECTED;
- #ifndef MPEXT_NO_CACHE
- if ( (nListMode&(FZ_LIST_FORCECACHE|FZ_LIST_REALCHANGE))==(FZ_LIST_FORCECACHE|FZ_LIST_REALCHANGE) )
- return FZ_REPLY_INVALIDPARAM;
- if (nListMode&FZ_LIST_FORCECACHE)
- nListMode|=FZ_LIST_USECACHE;
- #endif
- if (dirname==_MPT("") || parent.IsEmpty())
- return FZ_REPLY_INVALIDPARAM;
- #ifndef MPEXT_NO_CACHE
- //Check if current dir is cached
- if (nListMode&FZ_LIST_USECACHE && !(nListMode&FZ_LIST_REALCHANGE))
- {
- t_server server;
- BOOL res=m_pMainThread->GetCurrentServer(server);
- if (res)
- {
- t_directory *directory=new t_directory;
- CDirectoryCache cache;
- res=cache.Lookup(parent,dirname,server,*directory);
- if (res)
- {
- BOOL bExact=TRUE;
- if (nListMode & FZ_LIST_EXACT)
- for (int i=0;i<directory->num;i++)
- if (directory->direntry[i].bUnsure || (directory->direntry[i].size==-1 && !directory->direntry[i].dir))
- {
- bExact=FALSE;
- break;
- }
- if (bExact)
- {
- m_pMainThread->SetWorkingDir(directory);
- delete directory;
- return FZ_REPLY_OK;
- }
- }
- delete directory;
- }
- }
- #endif
- if (m_pMainThread->IsBusy())
- return FZ_REPLY_BUSY;
- #ifndef MPEXT_NO_CACHE
- if (nListMode&FZ_LIST_FORCECACHE)
- return FZ_REPLY_ERROR;
- #endif
- t_command command;
- command.id=FZ_COMMAND_LIST;
- command.path=parent;
- command.param1=dirname;
- command.param4=nListMode;
- m_pMainThread->Command(command);
- if (m_hOwnerWnd)
- return FZ_REPLY_WOULDBLOCK;
- else
- return m_pMainThread->LastOperationSuccessful()?FZ_REPLY_OK:FZ_REPLY_ERROR;
- }
- #ifdef MPEXT
- int CFileZillaApi::ListFile(const CServerPath& path, const CString& fileName)
- {
- //Check if call allowed
- if (!m_bInitialized)
- return FZ_REPLY_NOTINITIALIZED;
- if (IsConnected()==FZ_REPLY_NOTCONNECTED)
- return FZ_REPLY_NOTCONNECTED;
- if (fileName.IsEmpty())
- return FZ_REPLY_INVALIDPARAM;
-
- if (m_pMainThread->IsBusy())
- return FZ_REPLY_BUSY;
- t_command command;
- command.id=FZ_COMMAND_LISTFILE;
- command.path=path;
- command.param1=fileName;
- m_pMainThread->Command(command);
- if (m_hOwnerWnd)
- return FZ_REPLY_WOULDBLOCK;
- else
- return m_pMainThread->LastOperationSuccessful()?FZ_REPLY_OK:FZ_REPLY_ERROR;
- }
- #endif
- int CFileZillaApi::FileTransfer(const t_transferfile &TransferFile)
- {
- //Check if call allowed
- if (!m_bInitialized)
- return FZ_REPLY_NOTINITIALIZED;
- if (IsConnected()==FZ_REPLY_NOTCONNECTED)
- return FZ_REPLY_NOTCONNECTED;
- if (TransferFile.remotefile==_MPT("") || TransferFile.localfile==_MPT("") || TransferFile.remotepath.IsEmpty())
- return FZ_REPLY_INVALIDPARAM;
- if (IsBusy()==FZ_REPLY_BUSY)
- return FZ_REPLY_BUSY;
- t_command command;
- command.id=FZ_COMMAND_FILETRANSFER;
- command.transferfile=TransferFile;
- m_pMainThread->Command(command);
- if (m_hOwnerWnd)
- return FZ_REPLY_WOULDBLOCK;
- else
- return m_pMainThread->LastOperationSuccessful()?FZ_REPLY_OK:FZ_REPLY_ERROR;
- }
- int CFileZillaApi::GetCurrentServer(t_server &server)
- {
- //Check if call allowed
- if (!m_bInitialized)
- return FZ_REPLY_NOTINITIALIZED;
- if (IsConnected()==FZ_REPLY_NOTCONNECTED)
- return FZ_REPLY_NOTCONNECTED;
- if (m_pMainThread->GetCurrentServer(server))
- return FZ_REPLY_OK;
- else
- return FZ_REPLY_NOTCONNECTED;
- }
- #ifdef MPEXT
- int CFileZillaApi::SetCurrentPath(CServerPath path)
- {
- //Check if call allowed
- if (!m_bInitialized)
- return FZ_REPLY_NOTINITIALIZED;
- if (IsConnected()==FZ_REPLY_NOTCONNECTED)
- return FZ_REPLY_NOTCONNECTED;
- m_pMainThread->SetCurrentPath(path);
- return FZ_REPLY_OK;
- }
- int CFileZillaApi::GetCurrentPath(CServerPath & path)
- {
- //Check if call allowed
- if (!m_bInitialized)
- return FZ_REPLY_NOTINITIALIZED;
- if (IsConnected()==FZ_REPLY_NOTCONNECTED)
- return FZ_REPLY_NOTCONNECTED;
- return (m_pMainThread->GetCurrentPath(path) ? FZ_REPLY_OK : FZ_REPLY_NOTCONNECTED);
- }
- bool CFileZillaApi::UsingMlsd()
- {
- //Check if call allowed
- if (!m_bInitialized)
- return false;
- if (IsConnected()==FZ_REPLY_NOTCONNECTED)
- return false;
- return m_pMainThread->UsingMlsd();
- }
- bool CFileZillaApi::UsingUtf8()
- {
- //Check if call allowed
- if (!m_bInitialized)
- return false;
- if (IsConnected()==FZ_REPLY_NOTCONNECTED)
- return false;
- return m_pMainThread->UsingUtf8();
- }
- std::string CFileZillaApi::GetTlsVersionStr()
- {
- //Check if call allowed
- if (!m_bInitialized)
- return std::string();
- if (IsConnected()==FZ_REPLY_NOTCONNECTED)
- return std::string();
- return m_pMainThread->GetTlsVersionStr();
- }
- std::string CFileZillaApi::GetCipherName()
- {
- //Check if call allowed
- if (!m_bInitialized)
- return std::string();
- if (IsConnected()==FZ_REPLY_NOTCONNECTED)
- return std::string();
- return m_pMainThread->GetCipherName();
- }
- #endif
- int CFileZillaApi::CustomCommand(CString CustomCommand)
- {
- //Check if call allowed
- if (!m_bInitialized)
- return FZ_REPLY_NOTINITIALIZED;
- if (IsConnected()==FZ_REPLY_NOTCONNECTED)
- return FZ_REPLY_NOTCONNECTED;
- if (IsBusy()==FZ_REPLY_BUSY)
- return FZ_REPLY_BUSY;
- t_server server;
- int res=GetCurrentServer(server);
- if (res!=FZ_REPLY_OK)
- return res;
- #ifndef MPEXT_NO_SFTP
- if (server.nServerType&FZ_SERVERTYPE_SUB_FTP_SFTP)
- return FZ_REPLY_NOTSUPPORTED;
- #endif
- if (CustomCommand==_MPT(""))
- return FZ_REPLY_INVALIDPARAM;
- t_command command;
- command.id=FZ_COMMAND_CUSTOMCOMMAND;
- command.param1=CustomCommand;
- m_pMainThread->Command(command);
- if (m_hOwnerWnd)
- return FZ_REPLY_WOULDBLOCK;
- else
- return m_pMainThread->LastOperationSuccessful()?FZ_REPLY_OK:FZ_REPLY_ERROR;
- }
- int CFileZillaApi::Delete(CString FileName, const CServerPath &path /*=CServerPath()*/)
- {
- //Check if call allowed
- if (!m_bInitialized)
- return FZ_REPLY_NOTINITIALIZED;
- if (IsConnected()==FZ_REPLY_NOTCONNECTED)
- return FZ_REPLY_NOTCONNECTED;
- if (IsBusy()==FZ_REPLY_BUSY)
- return FZ_REPLY_BUSY;
- if (FileName=="")
- return FZ_REPLY_INVALIDPARAM;
- CServerPath path2=path;
- if (path2.IsEmpty())
- {
- m_pMainThread->GetCurrentPath(path2);
- if (path2.IsEmpty())
- return FZ_REPLY_INVALIDPARAM;
- }
- t_command command;
- command.id=FZ_COMMAND_DELETE;
- command.param1=FileName;
- command.path=path2;
- m_pMainThread->Command(command);
- if (m_hOwnerWnd)
- return FZ_REPLY_WOULDBLOCK;
- else
- return m_pMainThread->LastOperationSuccessful()?FZ_REPLY_OK:FZ_REPLY_ERROR;
- }
- int CFileZillaApi::RemoveDir(CString DirName, const CServerPath &path /*=CServerPath()*/)
- {
- //Check if call allowed
- if (!m_bInitialized)
- return FZ_REPLY_NOTINITIALIZED;
- if (IsConnected()==FZ_REPLY_NOTCONNECTED)
- return FZ_REPLY_NOTCONNECTED;
- if (IsBusy()==FZ_REPLY_BUSY)
- return FZ_REPLY_BUSY;
- if (DirName==_MPT(""))
- return FZ_REPLY_INVALIDPARAM;
- CServerPath path2=path;
- if (path2.IsEmpty())
- {
- m_pMainThread->GetCurrentPath(path2);
- if (path2.IsEmpty())
- return FZ_REPLY_INVALIDPARAM;
- }
- t_command command;
- command.id=FZ_COMMAND_REMOVEDIR;
- command.param1=DirName;
- command.path=path2;
- m_pMainThread->Command(command);
- if (m_hOwnerWnd)
- return FZ_REPLY_WOULDBLOCK;
- else
- return m_pMainThread->LastOperationSuccessful()?FZ_REPLY_OK:FZ_REPLY_ERROR;
- return FZ_REPLY_ERROR;
- }
- int CFileZillaApi::MakeDir(const CServerPath &path)
- {
- //Check if call allowed
- if (!m_bInitialized)
- return FZ_REPLY_NOTINITIALIZED;
- if (IsConnected()==FZ_REPLY_NOTCONNECTED)
- return FZ_REPLY_NOTCONNECTED;
- if (IsBusy()==FZ_REPLY_BUSY)
- return FZ_REPLY_BUSY;
- if (path.IsEmpty() || !path.HasParent())
- return FZ_REPLY_INVALIDPARAM;
- t_command command;
- command.id=FZ_COMMAND_MAKEDIR;
- command.path=path;
- m_pMainThread->Command(command);
- if (m_hOwnerWnd)
- return FZ_REPLY_WOULDBLOCK;
- else
- return m_pMainThread->LastOperationSuccessful()?FZ_REPLY_OK:FZ_REPLY_ERROR;
-
- return FZ_REPLY_ERROR;
- }
- int CFileZillaApi::Rename(CString oldName, CString newName, const CServerPath &path /*=CServerPath()*/, const CServerPath &newPath /*=CServerPath()*/)
- {
- //Check if call allowed
- if (!m_bInitialized)
- return FZ_REPLY_NOTINITIALIZED;
- if (IsConnected()==FZ_REPLY_NOTCONNECTED)
- return FZ_REPLY_NOTCONNECTED;
- if (IsBusy()==FZ_REPLY_BUSY)
- return FZ_REPLY_BUSY;
- if (oldName==_MPT("") || newName==_MPT(""))
- return FZ_REPLY_INVALIDPARAM;
- CServerPath path2 = path;
- if (path2.IsEmpty())
- {
- m_pMainThread->GetCurrentPath(path2);
- if (path2.IsEmpty())
- return FZ_REPLY_INVALIDPARAM;
- }
- t_command command;
- command.id = FZ_COMMAND_RENAME;
- command.param1 = oldName;
- command.param2 = newName;
- command.path = path2;
- command.newPath = newPath;
- m_pMainThread->Command(command);
- if (m_hOwnerWnd)
- return FZ_REPLY_WOULDBLOCK;
- else
- return m_pMainThread->LastOperationSuccessful()?FZ_REPLY_OK:FZ_REPLY_ERROR;
-
- return FZ_REPLY_ERROR;
- }
- int CFileZillaApi::SetAsyncRequestResult(int nAction, CAsyncRequestData *pData)
- {
- if (!this || !pData)
- return FZ_REPLY_CRITICALERROR | FZ_REPLY_INVALIDPARAM;
- if (IsBadWritePtr(pData, sizeof(CAsyncRequestData)))
- return FZ_REPLY_CRITICALERROR;
-
- if (!m_bInitialized)
- {
- delete pData;
- return FZ_REPLY_NOTINITIALIZED;
- }
- if (IsConnected()==FZ_REPLY_NOTCONNECTED)
- {
- delete pData;
- return FZ_REPLY_NOTCONNECTED;
- }
- switch(pData->nRequestType)
- {
- case FZ_ASYNCREQUEST_OVERWRITE:
- break;
- #ifndef MPEXT_NO_SSL
- case FZ_ASYNCREQUEST_VERIFYCERT:
- if (!((CVerifyCertRequestData *)pData)->pCertData)
- {
- delete pData;
- return FZ_REPLY_INVALIDPARAM;
- }
- break;
- #endif
- case FZ_ASYNCREQUEST_NEEDPASS:
- break;
- #ifndef MPEXT_NO_GSS
- case FZ_ASYNCREQUEST_GSS_AUTHFAILED:
- case FZ_ASYNCREQUEST_GSS_NEEDUSER:
- case FZ_ASYNCREQUEST_GSS_NEEDPASS:
- #ifdef MPEXT
- break;
- #endif
- #endif
- #ifndef MPEXT_NO_SFTP
- case FZ_ASYNCREQUEST_NEWHOSTKEY:
- case FZ_ASYNCREQUEST_CHANGEDHOSTKEY:
- break;
- #endif
- default:
- delete pData;
- return FZ_REPLY_INVALIDPARAM;
- }
- pData->nRequestResult = nAction;
- if (!m_pMainThread)
- {
- delete pData;
- return FZ_REPLY_NOTINITIALIZED;
- }
- m_pMainThread->PostThreadMessage(m_nInternalMessageID, FZAPI_THREADMSG_ASYNCREQUESTREPLY, (LPARAM)pData);
-
- return FZ_REPLY_OK;
- }
- #ifndef MPEXT
- int CFileZillaApi::SetOption(int nOption, int value)
- {
- if (!m_bInitialized)
- return FZ_REPLY_NOTINITIALIZED;
- switch (nOption)
- {
- case FZAPI_OPTION_SHOWHIDDEN:
- m_pMainThread->SetOption(nOption, value);
- break;
- default:
- return FZ_REPLY_INVALIDPARAM;
- }
- return FZ_REPLY_OK;
- }
- int CFileZillaApi::GetOption(int nOption, int &value)
- {
- if (!m_bInitialized)
- return FZ_REPLY_NOTINITIALIZED;
- switch (nOption)
- {
- case FZAPI_OPTION_SHOWHIDDEN:
- value = m_pMainThread->GetOption(nOption);
- break;
- default:
- return FZ_REPLY_INVALIDPARAM;
- }
- return FZ_REPLY_OK;
- }
- #endif
- int CFileZillaApi::Chmod(int nValue, CString FileName, const CServerPath &path /*=CServerPath()*/ )
- {
- //Check if call allowed
- if (!m_bInitialized)
- return FZ_REPLY_NOTINITIALIZED;
- if (IsConnected()==FZ_REPLY_NOTCONNECTED)
- return FZ_REPLY_NOTCONNECTED;
- if (IsBusy()==FZ_REPLY_BUSY)
- return FZ_REPLY_BUSY;
- if (FileName==_MPT(""))
- return FZ_REPLY_INVALIDPARAM;
- t_command command;
- command.id=FZ_COMMAND_CHMOD;
- command.param1=FileName;
- command.param4=nValue;
- command.path=path;
- m_pMainThread->Command(command);
- if (m_hOwnerWnd)
- return FZ_REPLY_WOULDBLOCK;
- else
- return m_pMainThread->LastOperationSuccessful()?FZ_REPLY_OK:FZ_REPLY_ERROR;
- }
- int CFileZillaApi::SetDebugLevel(int nDebugLevel)
- {
- //Check if call allowed
- if (!m_bInitialized)
- return FZ_REPLY_NOTINITIALIZED;
- if (!m_pMainThread->SetDebugLevel(nDebugLevel))
- return FZ_REPLY_ERROR;
- return FZ_REPLY_OK;
- }
- #ifndef MPEXT_NO_CACHE
- BOOL CFileZillaApi::DumpDirectoryCache(LPCTSTR pFileName)
- {
- CDirectoryCache cache;
- return cache.Dump(pFileName);
- }
- #endif
- //CAsyncRequestData derived classes
- CAsyncRequestData::CAsyncRequestData()
- {
- nRequestType = 0;
- nRequestID = 0;
- nRequestResult = 0;
- }
- CAsyncRequestData::~CAsyncRequestData()
- {
- }
- COverwriteRequestData::COverwriteRequestData()
- {
- size1 = 0;
- size2 = 0;
- nRequestType=FZ_ASYNCREQUEST_OVERWRITE;
- localtime=0;
- remotetime.hasdate = false;
- pTransferFile=0;
- }
- COverwriteRequestData::~COverwriteRequestData()
- {
- delete pTransferFile;
- delete localtime;
- }
- #ifndef MPEXT_NO_SSL
- CVerifyCertRequestData::CVerifyCertRequestData()
- {
- nRequestType=FZ_ASYNCREQUEST_VERIFYCERT;
- pCertData=0;
- }
- CVerifyCertRequestData::~CVerifyCertRequestData()
- {
- delete pCertData;
- }
- #endif
- CNeedPassRequestData::CNeedPassRequestData()
- {
- nRequestType=FZ_ASYNCREQUEST_NEEDPASS;
- nOldOpState=0;
- }
- CNeedPassRequestData::~CNeedPassRequestData()
- {
- }
- #ifndef MPEXT_NO_GSS
- CGssNeedPassRequestData::CGssNeedPassRequestData()
- {
- nRequestType=FZ_ASYNCREQUEST_GSS_NEEDPASS;
- }
- CGssNeedPassRequestData::~CGssNeedPassRequestData()
- {
- }
- CGssNeedUserRequestData::CGssNeedUserRequestData()
- {
- nRequestType = FZ_ASYNCREQUEST_GSS_NEEDUSER;
- }
- CGssNeedUserRequestData::~CGssNeedUserRequestData()
- {
- }
- #endif
- #ifndef MPEXT_NO_SFTP
- CNewHostKeyRequestData::CNewHostKeyRequestData()
- {
- nRequestType=FZ_ASYNCREQUEST_NEWHOSTKEY;
- }
- CNewHostKeyRequestData::~CNewHostKeyRequestData()
- {
- }
- CChangedHostKeyRequestData::CChangedHostKeyRequestData()
- {
- nRequestType=FZ_ASYNCREQUEST_CHANGEDHOSTKEY;
- }
- CChangedHostKeyRequestData::~CChangedHostKeyRequestData()
- {
- }
- #endif
- BOOL CFileZillaApi::IsValid() const
- {
- if (!this)
- return FALSE;
- if (IsBadWritePtr((VOID *)this, sizeof(CFileZillaApi)) )
- return FALSE;
- if (IsBadWritePtr((VOID *)&m_bInitialized, sizeof(BOOL)) ||
- IsBadWritePtr((VOID *)&m_hOwnerWnd, sizeof(HWND)) ||
- IsBadWritePtr((VOID *)&m_nInternalMessageID, sizeof(unsigned int)) ||
- IsBadWritePtr((VOID *)&m_nReplyMessageID, sizeof(unsigned int)) ||
- IsBadWritePtr(m_pMainThread, sizeof(CMainThread)) )
- return FALSE;
- if (!m_pMainThread->IsValid())
- return FALSE;
- return TRUE;
- }
|