summaryrefslogtreecommitdiff
path: root/plugins/PluginUpdater/src/stdafx.h
blob: 56ba6951ff6a05fc3d156e3acec5175f9e54e548 (plain)
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
/*
Copyright (C) 2010 Mataes

This is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.

This 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
Library General Public License for more details.

You should have received a copy of the GNU Library General Public
License along with this file; see the file license.txt.  If
not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA.
*/

#pragma once

// Windows Header Files:
#include <time.h>
#include <stddef.h>
#include <windows.h>
#include <Windowsx.h>
#include <Shlobj.h>
#include <string.h>

// Miranda header files
#include <newpluginapi.h>
#include <m_clist.h>
#include <m_skin.h>
#include <m_langpack.h>
#include <m_options.h>
#include <m_system.h>
#include <m_popup.h>
#include <m_hotkeys.h>
#include <m_netlib.h>
#include <m_icolib.h>
#include <m_assocmgr.h>
#include <m_gui.h>

#include <m_folders.h>

extern "C"
{
	#include "../../libs/zlib/src/unzip.h"

	void fill_fopen64_filefunc(zlib_filefunc64_def *pzlib_filefunc_def);
}

#include "version.h"
#include "resource.h"

#include <m_autobackups.h>

#define MS_PU_CHECK    "PluginUpdater/CheckUpdates"
#define MS_PU_SHOWLIST "PluginUpdater/ShowList"

#include "Notifications.h"

// Enable Visual Style
#if defined _M_IX86
#pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='x86' publicKeyToken='6595b64144ccf1df' language='*'\"")
#elif defined _M_IA64
#pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='ia64' publicKeyToken='6595b64144ccf1df' language='*'\"")
#elif defined _M_X64
#pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='amd64' publicKeyToken='6595b64144ccf1df' language='*'\"")
#else
#pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*'\"")
#endif

#define MODULENAME "PluginUpdater"
#define MODULEA "Plugin Updater"
#define MODULE L"Plugin Updater"
#define DEFAULT_UPDATES_FOLDER L"Plugin Updates"

typedef wchar_t TFileName[MAX_PATH];

struct FILEURL
{
	wchar_t wszDownloadURL[2048];
	TFileName wszDiskPath;
	int CRCsum;
};

struct FILEINFO
{
	TFileName wszOldName, wszNewName;
	FILEURL File;
	bool bEnabled, bDeleteOnly;

	bool IsFiltered(const CMStringW &wszFilter);
};

typedef OBJLIST<FILEINFO> FILELIST;

#define DEFAULT_UPDATE_URL                L"https://miranda-ng.org/distr/stable/x%d"
#define DEFAULT_UPDATE_URL_TRUNK          L"https://miranda-ng.org/distr/x%d"
#define DEFAULT_UPDATE_URL_TRUNK_SYMBOLS  L"https://miranda-ng.org/distr/pdb_x%d"
#define DEFAULT_UPDATE_URL_STABLE_SYMBOLS L"https://miranda-ng.org/distr/stable/pdb_x%d"

#define FILENAME_X64 L"miranda64.exe"
#define FILENAME_X32 L"miranda32.exe"

#ifdef _WIN64
	#define DEFAULT_BITS 64
	#define DEFAULT_OPP_BITS 32
	#define OLD_FILENAME FILENAME_X64
	#define NEW_FILENAME FILENAME_X32
#else
	#define DEFAULT_BITS 32
	#define DEFAULT_OPP_BITS 64
	#define OLD_FILENAME FILENAME_X32
	#define NEW_FILENAME FILENAME_X64
#endif

#define PLUGIN_INFO_URL	L"https://miranda-ng.org/p/%s"

#define DEFAULT_UPDATE_URL_OLD                "https://miranda-ng.org/distr/stable/x%platform%"
#define DEFAULT_UPDATE_URL_TRUNK_OLD          "https://miranda-ng.org/distr/x%platform%"
#define DEFAULT_UPDATE_URL_TRUNK_SYMBOLS_OLD  "https://miranda-ng.org/distr/pdb_x%platform%"

enum
{
	UPDATE_MODE_CUSTOM,
	UPDATE_MODE_STABLE,
	UPDATE_MODE_TRUNK,
	UPDATE_MODE_TRUNK_SYMBOLS,
	UPDATE_MODE_STABLE_SYMBOLS,
	UPDATE_MODE_MAX_VALUE // leave this variable last in the list
};

#define DB_SETTING_UPDATE_MODE           "UpdateMode"
#define DB_SETTING_UPDATE_URL            "UpdateURL"
#define DB_SETTING_DONT_SWITCH_TO_STABLE "DontSwitchToStable"

#define DB_MODULE_FILES     MODULENAME "Files"
#define DB_MODULE_NEW_FILES MODULENAME "NewFiles"

#define MAX_RETRIES   3

#define IDINFO        3
#define IDDOWNLOAD    4
#define IDDOWNLOADALL 5

using namespace std;

extern uint32_t g_mirandaVersion;
extern TFileName g_wszRoot, g_wszTempPath;
extern VARSW g_mirandaPath;
extern HNETLIBUSER g_hNetlibUser;

struct CMPlugin : public PLUGIN<CMPlugin>
{
	struct Impl
	{
		Impl() :
			m_timer(Miranda_GetSystemWindow(), LPARAM(this))
		{
			m_timer.OnEvent = Callback(this, &Impl::onTimer);
		}

		CTimer m_timer;
		void onTimer(CTimer *);
	}
	m_impl;

	CMPlugin();

	int Load() override;
	int Unload() override;

	void InitTimer(int mode);

	// variables
	time_t iNextCheck = 0;
	bool bForceRedownload = false, bSilent; // not a db options

	// common options
	CMOption<bool> bUpdateOnStartup, bUpdateOnPeriod, bOnlyOnceADay, bSilentMode, bBackup, bChangePlatform, bAutoRestart, bNeedRestart;
	CMOption<int>  iPeriod, iPeriodMeasure, iNumberBackups;
	CMOption<uint32_t> dwLastUpdate;

	// popup options
	CMOption<uint8_t> PopupDefColors, PopupLeftClickAction, PopupRightClickAction;
	CMOption<uint32_t> PopupTimeout;
};

void DoCheck(bool bSilent = true);
void UninitCheck(void);
void UninitListNew(void);

class ThreadWatch
{
	uint32_t &pId;

public:
	ThreadWatch(uint32_t &_1) :
		pId(_1)
	{
		pId = ::GetCurrentThreadId();
	}

	~ThreadWatch()
	{
		pId = 0;
	}
};

///////////////////////////////////////////////////////////////////////////////

struct ServListEntry
{
	ServListEntry(const char* _name, const char* _hash, int _crc) :
		m_name( mir_a2u(_name)),
		m_crc(_crc)
	{
		strncpy(m_szHash, _hash, sizeof(m_szHash));
	}

	~ServListEntry()
	{
		mir_free(m_name);
	}

	wchar_t *m_name;
	uint32_t  m_crc;
	char   m_szHash[32+1];
};

typedef OBJLIST<ServListEntry> SERVLIST;

///////////////////////////////////////////////////////////////////////////////

void  InitPopupList();
void  InitEvents();

void  InitListNew();
void  UnloadListNew();

void  DoRestart(void);

void  CALLBACK RestartPrompt(void *);
void  CALLBACK CheckUpdateOnStartup(void);

int   BackupFile(wchar_t *pwszSrcFileName, wchar_t *pwszBackFileName);

bool  ParseHashes(const wchar_t *pwszUrl, ptrW &baseUrl, SERVLIST &arHashes);
int   CompareHashes(const ServListEntry *p1, const ServListEntry *p2);

wchar_t* GetDefaultUrl();
int   DownloadFile(FILEURL *pFileURL, HNETLIBCONN &nlc);

void  ShowPopup(LPCTSTR Title, LPCTSTR Text, int Number);

int   unzip(const wchar_t *pwszZipFile, wchar_t *pwszDestPath, wchar_t *pwszBackPath, bool ch);

///////////////////////////////////////////////////////////////////////////////

int CalculateModuleHash(const wchar_t *pwszFileName, char *dest);

void CreateWorkFolders(TFileName &wszTempFolder, TFileName &wszBackupFolder);
void RemoveBackupFolders(void);
void RollbackChanges(TFileName &pwszBackupFolder);

char* StrToLower(char *str);

MFilePath InvertMirandaPlatform();