123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362 |
- // InternetUpdate.cpp: implementation of the CInternetUpdate class.
- //
- //////////////////////////////////////////////////////////////////////
- #include "stdafx.h"
- #include "cp_main.h"
- #include "InternetUpdate.h"
- #include <afxinet.h>
- #include "ProgressWnd.h"
- #include "io.h"
- #ifdef _DEBUG
- #undef THIS_FILE
- static char THIS_FILE[]=__FILE__;
- #define new DEBUG_NEW
- #endif
- #define HTTPBUFLEN 512 // Size of HTTP Buffer...
- //////////////////////////////////////////////////////////////////////
- // Construction/Destruction
- //////////////////////////////////////////////////////////////////////
- CInternetUpdate::CInternetUpdate()
- {
- }
- CInternetUpdate::~CInternetUpdate()
- {
- }
- BOOL CInternetUpdate::CheckForUpdate(HWND hParent, BOOL bCheckForPrevUpdate, BOOL bShowNoUpdatesDlg)
- {
- m_bShowMessages = bShowNoUpdatesDlg;
- m_hParent = hParent;
-
- CTime Now = CTime::GetCurrentTime();
- tm tmNow = *(Now.GetLocalTm());
- long lCurrentDayOfYear = tmNow.tm_yday;
- RemoveOldUpdateFile();
-
- if(bCheckForPrevUpdate)
- {
- if(!CGetSetOptions::GetCheckForUpdates())
- return FALSE;
- long lLastUpdateDay = CGetSetOptions::GetLastUpdate();
- if(lCurrentDayOfYear - lLastUpdateDay < 10)
- return FALSE;
- //if the last time we check was today return
- if(lLastUpdateDay == lCurrentDayOfYear)
- return FALSE;
- }
- CGetSetOptions::SetLastUpdate(lCurrentDayOfYear);
-
- BOOL bRet = FALSE;
-
- m_lRunningVersion = GetRunningVersion();
- m_lUpdateVersion = GetUpdateVersion();
- if(m_lUpdateVersion > m_lRunningVersion)
- {
- CString csMessage;
- csMessage.Format( "%s, %s\n"
- "%s, %s\n\n"
- "%s",
- theApp.m_Language.GetString("Updates_Available", "Updates available for Ditto.\nVisit ditto-cp.sourceforge.net for details\n\nRunning Version"),
- GetVersionString(m_lRunningVersion),
- theApp.m_Language.GetString("Update_Version", "Update Version"),
- GetVersionString(m_lUpdateVersion),
- theApp.m_Language.GetString("Download_Update", "Download updated version?"));
- if(MessageBox(hParent, csMessage, "Ditto", MB_YESNO) == IDYES)
- {
- CString csFile = DownloadUpdate();
- if(!csFile.IsEmpty())
- {
- CloseHandle(theApp.m_hMutex);
- Sleep(100);
- ShellExecute(NULL, NULL, csFile, NULL, NULL, SW_SHOWNORMAL);
- }
- bRet = TRUE;
- }
- }
- else if(m_bShowMessages)
- {
- MessageBox(hParent, theApp.m_Language.GetString("No_Updates", "No updates available"), "Ditto", MB_OK);
- }
- return bRet;
- }
- BOOL CInternetUpdate::RemoveOldUpdateFile()
- {
- CString csFile = CGetSetOptions::GetExeFileName();
- csFile = GetFilePath(csFile);
- csFile += "DittoSetup.exe";
-
- BOOL bRet = TRUE;
- if(_access(csFile, 0) != -1)
- {
- bRet = ::DeleteFile(csFile);
- }
- return bRet;
- }
- CString CInternetUpdate::GetVersionString(long lVersion)
- {
- CString csLine;
- csLine.Format("%02i.%02i.%02i%02i",
- (lVersion >> 24) & 0x03f,
- (lVersion >> 16) & 0x03f,
- ((lVersion >> 8) & 0x07f),
- lVersion & 0x07f);
- return csLine;
- }
- long CInternetUpdate::GetRunningVersion()
- {
- CString csFileName = CGetSetOptions::GetExeFileName();
- DWORD dwSize, dwHandle;
- LPBYTE lpData;
- UINT iBuffSize;
- VS_FIXEDFILEINFO *lpFFI;
- long ver;
- dwSize = GetFileVersionInfoSize(csFileName.GetBuffer(csFileName.GetLength()), &dwHandle);
- if(dwSize != 0)
- {
- csFileName.ReleaseBuffer();
- if((lpData=(unsigned char *)malloc(dwSize)) != NULL)
- {
- if(GetFileVersionInfo(csFileName.GetBuffer(csFileName.GetLength()), dwHandle, dwSize, lpData) != 0)
- {
- if(VerQueryValue(lpData, "\\", (LPVOID*)&lpFFI, &iBuffSize) != 0)
- {
- if(iBuffSize > 0)
- {
- ver = (HIWORD(lpFFI->dwFileVersionMS) & 0x00ff) << 24;
- ver = ver + ((LOWORD(lpFFI->dwFileVersionMS) & 0x00ff) << 16);
- ver = ver + ((HIWORD(lpFFI->dwFileVersionLS) & 0x00ff) << 8);
- ver = ver + LOWORD(lpFFI->dwFileVersionLS);
- free(lpData);
- return(ver);
- }
- }
- }
- free(lpData);
- }
- }
- return(0);
- }
- long CInternetUpdate::GetUpdateVersion()
- {
- char httpbuff[HTTPBUFLEN];
-
- //Try to get a path from the regestry
- CString csPath = CGetSetOptions::GetUpdateFilePath();
- //if nothing there get the default
- if(csPath.IsEmpty())
- csPath = "ditto-cp.sourceforge.net/Update/DittoVersion.txt";
-
- CString csUrl = "http://" + csPath;
-
- CString csFile = CGetSetOptions::GetExeFileName();
- csFile = GetFilePath(csFile);
- csFile += "DittoVersion.txt";
- bool bError = false;
- CStdioFile *remotefile = NULL;
- long lReturn = -1;
- try
- {
- CInternetSession mysession;
- remotefile = mysession.OpenURL(csUrl,1,INTERNET_FLAG_TRANSFER_BINARY|INTERNET_FLAG_RELOAD);
- if(!remotefile)
- return 0;
-
- CFile myfile(csFile, CFile::modeCreate|CFile::modeWrite|CFile::typeBinary);
-
- UINT unBytesRead = 0;
- UINT unTotalBytes = 0;
-
- while (unBytesRead = remotefile->Read(httpbuff, HTTPBUFLEN))
- {
- unTotalBytes += unBytesRead;
- myfile.Write(httpbuff, unBytesRead);
- if(!remotefile)
- {
- unTotalBytes = 0;
- break;
- }
- }
-
- myfile.Close();
-
- if(unTotalBytes)
- {
- CStdioFile file;
- if(file.Open(csFile, CFile::modeRead|CFile::typeText))
- {
- CString csVersion;
- if(file.ReadString(csVersion))
- {
- file.Close();
- lReturn = atol(csVersion);
- }
- }
- }
- }
- catch(CInternetException *pEX)
- {
- bError = true;
- pEX->Delete();
- }
- catch(CFileException *e)
- {
- bError = true;
- e->Delete();
- }
- catch(...)
- {
- bError = true;
- csFile.Empty();
- }
- if(bError)
- {
- if(m_bShowMessages)
- {
- MessageBox(m_hParent, "Error Connecting.", "Ditto", MB_OK);
- m_bShowMessages = FALSE;
- }
- }
-
- if(remotefile)
- {
- remotefile->Close();
- delete remotefile;
- remotefile = NULL;
- }
- if(access(csFile, 0) != -1)
- CFile::Remove(csFile);
- return lReturn;
- }
- CString CInternetUpdate::DownloadUpdate()
- {
- char httpbuff[HTTPBUFLEN];
-
- //Try to get a path from the regestry
- CString csPath = CGetSetOptions::GetUpdateInstallPath();
- //if nothing there get the default
- if(csPath.IsEmpty())
- csPath = "ditto-cp.sourceforge.net/Update/DittoSetup.exe";
- CString csUrl = "http://" + csPath;
-
- CString csFile = CGetSetOptions::GetExeFileName();
- csFile = GetFilePath(csFile);
- csFile += "DittoSetup.exe";
- long lReturn = -1;
- CHttpFile *RemoteFile = NULL;
- try
- {
- CInternetSession mysession;
- RemoteFile = (CHttpFile*)mysession.OpenURL(csUrl,1,INTERNET_FLAG_TRANSFER_BINARY|INTERNET_FLAG_RELOAD);
- if(!RemoteFile)
- return "";
- //Get the file size
- DWORD dFileSize;
- RemoteFile->QueryInfo(HTTP_QUERY_CONTENT_LENGTH, dFileSize);
- //Set up the progress wnd
- CProgressWnd progress;
- progress.Create(CWnd::FromHandlePermanent(m_hParent), "Ditto Update");
- progress.SetRange(0, dFileSize, HTTPBUFLEN);
- progress.SetText("Downloading Ditto Update ...");
-
- //Create the file to put the info in
- CFile myfile(csFile, CFile::modeCreate|CFile::modeWrite|CFile::typeBinary);
-
- UINT unBytesRead = 0;
- UINT unTotalBytes = 0;
-
- //Read in the file
- while (unBytesRead = RemoteFile->Read(httpbuff, HTTPBUFLEN))
- {
- progress.StepIt();
- progress.PeekAndPump();
- if(progress.Cancelled())
- {
- csFile.Empty();
- break;
- }
-
- unTotalBytes += unBytesRead;
- myfile.Write(httpbuff, unBytesRead);
- if(!RemoteFile)
- {
- MessageBox(m_hParent, "Error Downloading update.", "Ditto", MB_OK);
- csFile = "";
- break;
- }
- }
-
- myfile.Close();
- }
- catch(CInternetException *pEX)
- {
- MessageBox(m_hParent, "Error Downloading update.", "Ditto", MB_OK);
- csFile.Empty();
- pEX->Delete();
- }
- catch(CFileException *e)
- {
- MessageBox(m_hParent, "Error Downloading update.", "Ditto", MB_OK);
- csFile.Empty();
- e->Delete();
- }
- catch(...)
- {
- MessageBox(m_hParent, "Error Downloading update.", "Ditto", MB_OK);
- csFile.Empty();
- }
- if(RemoteFile)
- {
- RemoteFile->Close();
- delete RemoteFile;
- RemoteFile = NULL;
- }
- return csFile;
- }
|