/* Avatar History Plugin --------- This plugin uses the event provided by Avatar Service to automatically back up contacts' avatars when they change. Copyright (C) 2006 Matthew Wild - Email: mwild1@gmail.com 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. */ #include "AvatarHistory.h" // #define DBGPOPUPS HINSTANCE hInst; PLUGINLINK *pluginLink; DWORD mirVer; HANDLE hHooks[6] = {0}; HANDLE hServices[3] = {0}; HANDLE hFolder = NULL; char *metacontacts_proto = NULL; char profilePath[MAX_PATH]; // database profile path (read at startup only) TCHAR basedir[MAX_PATH]; MM_INTERFACE mmi; int hLangpack = 0; static int ModulesLoaded(WPARAM wParam, LPARAM lParam); static int PreShutdown(WPARAM wParam, LPARAM lParam); static int AvatarChanged(WPARAM wParam, LPARAM lParam); int OptInit(WPARAM wParam,LPARAM lParam); TCHAR * GetHistoryFolder(TCHAR *fn); TCHAR * GetProtocolFolder(TCHAR *fn, char *proto); TCHAR * GetContactFolder(TCHAR *fn, HANDLE hContact); TCHAR * GetOldStyleAvatarName(TCHAR *fn, HANDLE hContact); void InitFolders(); void InitMenuItem(); void * GetHistoryEventText(HANDLE hContact, HANDLE hDbEvent, DBEVENTINFO *dbe, int format); // Services static INT_PTR IsEnabled(WPARAM wParam, LPARAM lParam); static INT_PTR GetCachedAvatar(WPARAM wParam, LPARAM lParam); TCHAR * GetCachedAvatar(char *proto, char *hash); BOOL CreateShortcut(TCHAR *file, TCHAR *shortcut); #ifdef DBGPOPUPS #define ShowDebugPopup ShowPopup #else #define ShowDebugPopup #endif PLUGININFOEX pluginInfo={ sizeof(PLUGININFOEX), #ifdef WIN64 "Avatar History (x64)", #elif UNICODE "Avatar History (Unicode)", #else "Avatar History (Ansi)", #endif PLUGIN_MAKE_VERSION(0,0,2,10), "This plugin keeps backups of all your contacts' avatar changes and/or shows popups", "Matthew Wild (MattJ), Ricardo Pescuma Domenecci", "mwild1@gmail.com", "© 2006-2007 Matthew Wild, Ricardo Pescuma Domenecci", "http://pescuma.mirandaim.ru/miranda/avatarhist", UNICODE_AWARE, 0, //doesn't replace anything built-in #ifdef WIN64 { 0xe04702a2, 0x379, 0x4c69, { 0xbf, 0x8a, 0x84, 0xd5, 0xd0, 0xc9, 0x19, 0xcc } } // {E04702A2-0379-4C69-BF8A-84D5D0C919CC} #elif UNICODE { 0xdbe8c990, 0x7aa0, 0x458d, { 0xba, 0xb7, 0x33, 0xeb, 0x7, 0x23, 0x8e, 0x71 } } // {DBE8C990-7AA0-458d-BAB7-33EB07238E71} #else { 0x4079923c, 0x8aa1, 0x4a2e, { 0x95, 0x8b, 0x9d, 0xc, 0xd0, 0xe8, 0x2e, 0xb2 } } // {4079923C-8AA1-4a2e-958B-9D0CD0E82EB2} #endif }; extern "C" BOOL WINAPI DllMain(HINSTANCE hinstDLL,DWORD fdwReason,LPVOID lpvReserved) { hInst = hinstDLL; return TRUE; } extern "C" __declspec(dllexport) PLUGININFOEX* MirandaPluginInfoEx(DWORD mirandaVersion) { mirVer = mirandaVersion; return &pluginInfo; } static const MUUID interfaces[] = { MIID_AVATAR_CHANGE_LOGGER, MIID_AVATAR_CHANGE_NOTIFIER, MIID_LAST }; extern "C" __declspec(dllexport) const MUUID* MirandaPluginInterfaces(void) { return interfaces; } static INT_PTR CALLBACK FirstRunDlgProc(HWND hwnd,UINT uMsg,WPARAM wParam,LPARAM lParam) { switch(uMsg) { case WM_INITDIALOG: { SendMessage(hwnd, WM_SETICON, ICON_BIG, (LPARAM) createDefaultOverlayedIcon(TRUE)); SendMessage(hwnd, WM_SETICON, ICON_SMALL, (LPARAM) createDefaultOverlayedIcon(FALSE)); TranslateDialogDefault(hwnd); CheckDlgButton(hwnd, IDC_MIR_PROTO, BST_CHECKED); break; } case WM_COMMAND: { switch(LOWORD(wParam)) { case IDOK: { int ret = 0; if (IsDlgButtonChecked(hwnd, IDC_MIR_SAME)) ret = IDC_MIR_SAME; else if (IsDlgButtonChecked(hwnd, IDC_MIR_PROTO)) ret = IDC_MIR_PROTO; else if (IsDlgButtonChecked(hwnd, IDC_MIR_SHORT)) ret = IDC_MIR_SHORT; else if (IsDlgButtonChecked(hwnd, IDC_SHORT)) ret = IDC_SHORT; else if (IsDlgButtonChecked(hwnd, IDC_DUP)) ret = IDC_DUP; EndDialog(hwnd, ret); return TRUE; } } break; } case WM_CLOSE: { EndDialog(hwnd, 0); return TRUE; } } return FALSE; } extern "C" int __declspec(dllexport) Load(PLUGINLINK *link) { pluginLink=link; mir_getMMI(&mmi); mir_getLP(&pluginInfo); // Is first run? if (DBGetContactSettingByte(NULL, MODULE_NAME, "FirstRun", 1)) { // Show dialog int ret = DialogBoxParam(hInst, MAKEINTRESOURCE(IDD_FIRST_RUN), NULL, FirstRunDlgProc, 0); if (ret == 0) return -1; // Write settings DBWriteContactSettingByte(NULL, MODULE_NAME, "LogToDisk", 1); if (ret == IDC_MIR_SAME) DBWriteContactSettingByte(NULL, MODULE_NAME, "LogKeepSameFolder", 1); else DBWriteContactSettingByte(NULL, MODULE_NAME, "LogKeepSameFolder", 0); if (ret == IDC_MIR_SHORT || ret == IDC_SHORT || ret == IDC_DUP) DBWriteContactSettingByte(NULL, MODULE_NAME, "LogPerContactFolders", 1); else DBWriteContactSettingByte(NULL, MODULE_NAME, "LogPerContactFolders", 0); if (ret == IDC_DUP) DBWriteContactSettingByte(NULL, MODULE_NAME, "StoreAsHash", 0); else DBWriteContactSettingByte(NULL, MODULE_NAME, "StoreAsHash", 1); if (ret == IDC_MIR_SAME || ret == IDC_MIR_PROTO || ret == IDC_MIR_SHORT) DBWriteContactSettingByte(NULL, MODULE_NAME, "LogToHistory", 1); else DBWriteContactSettingByte(NULL, MODULE_NAME, "LogToHistory", 0); DBWriteContactSettingByte(NULL, MODULE_NAME, "FirstRun", 0); } LoadOptions(); hHooks[0] = HookEvent(ME_SYSTEM_MODULESLOADED,ModulesLoaded); hHooks[1] = HookEvent(ME_SYSTEM_PRESHUTDOWN, PreShutdown); hServices[0] = CreateServiceFunction(MS_AVATARHISTORY_ENABLED, IsEnabled); hServices[1] = CreateServiceFunction(MS_AVATARHISTORY_GET_CACHED_AVATAR, GetCachedAvatar); if(CallService(MS_DB_GETPROFILEPATH, MAX_PATH, (LPARAM)profilePath) != 0) strcpy(profilePath, "."); // Failed, use current dir _strlwr(profilePath); return 0; } static int ModulesLoaded(WPARAM wParam, LPARAM lParam) { #ifdef UNICODE mir_sntprintf(basedir, MAX_REGS(basedir), _T("%S\\Avatars History"), profilePath); #else mir_sntprintf(basedir, MAX_REGS(basedir), _T("%s\\Avatars History"), profilePath); #endif hFolder = (HANDLE)FoldersRegisterCustomPathT(LPGEN("Avatars"), LPGEN("Avatar History"), PROFILE_PATHT _T("\\") CURRENT_PROFILET _T("\\Avatars History")); hHooks[2] = HookEvent(ME_AV_CONTACTAVATARCHANGED, AvatarChanged); hHooks[3] = HookEvent(ME_OPT_INITIALISE, OptInit); SetupIcoLib(); InitMenuItem(); InitPopups(); if (ServiceExists(MS_MC_GETPROTOCOLNAME)) metacontacts_proto = (char *) CallService(MS_MC_GETPROTOCOLNAME, 0, 0); // updater plugin support if(ServiceExists(MS_UPDATE_REGISTER)) { Update upd = {0}; char szCurrentVersion[30]; upd.cbSize = sizeof(upd); upd.szComponentName = pluginInfo.shortName; upd.szUpdateURL = UPDATER_AUTOREGISTER; upd.szBetaVersionURL = "http://pescuma.mirandaim.ru/miranda/avatarhist_version.txt"; upd.szBetaChangelogURL = "http://pescuma.mirandaim.ru/miranda/avatarhist#Changelog"; upd.pbBetaVersionPrefix = (BYTE *)"Avatar History "; upd.cpbBetaVersionPrefix = strlen((char *)upd.pbBetaVersionPrefix); #ifdef UNICODE upd.szBetaUpdateURL = "http://pescuma.mirandaim.ru/miranda/avatarhistW.zip"; #else upd.szBetaUpdateURL = "http://pescuma.mirandaim.ru/miranda/avatarhist.zip"; #endif upd.pbVersion = (BYTE *)CreateVersionStringPluginEx(&pluginInfo, szCurrentVersion); upd.cpbVersion = strlen((char *)upd.pbVersion); CallService(MS_UPDATE_REGISTER, 0, (LPARAM)&upd); } if (DBGetContactSettingByte(NULL, MODULE_NAME, "LogToHistory", AVH_DEF_LOGTOHISTORY)) { char *templates[] = { "Avatar change\nchanged his/her avatar", "Avatar removal\nremoved his/her avatar" }; HICON hIcon = createDefaultOverlayedIcon(FALSE); HistoryEvents_RegisterWithTemplates(MODULE_NAME, "avatarchange", "Avatar change", EVENTTYPE_AVATAR_CHANGE, hIcon, HISTORYEVENTS_FORMAT_CHAR | HISTORYEVENTS_FORMAT_WCHAR | HISTORYEVENTS_FORMAT_RICH_TEXT, HISTORYEVENTS_FLAG_SHOW_IM_SRMM | HISTORYEVENTS_FLAG_EXPECT_CONTACT_NAME_BEFORE, GetHistoryEventText, templates, MAX_REGS(templates)); DestroyIcon(hIcon); } return 0; } static int PreShutdown(WPARAM wParam, LPARAM lParam) { int i; for (i = 0; i < MAX_REGS(hHooks); i++) UnhookEvent(hHooks[i]); for (i = 0; i < MAX_REGS(hServices); i++) DestroyServiceFunction(hServices[i]); return 0; } BOOL ProtocolEnabled(const char *proto) { if (proto == NULL) return FALSE; char setting[256]; mir_snprintf(setting, sizeof(setting), "%sEnabled", proto); return (BOOL) DBGetContactSettingByte(NULL, MODULE_NAME, setting, TRUE); } BOOL ContactEnabled(HANDLE hContact, char *setting, int def) { if (hContact == NULL) return FALSE; char *proto = (char *) CallService(MS_PROTO_GETCONTACTBASEPROTO, (WPARAM) hContact, 0); if (!ProtocolEnabled(proto)) return FALSE; BYTE globpref = db_byte_get(NULL, MODULE_NAME, setting, def); BYTE userpref = db_byte_get(hContact, MODULE_NAME, setting, BST_INDETERMINATE); return (globpref && userpref == BST_INDETERMINATE) || userpref == BST_CHECKED; } // Returns true if the unicode buffer only contains 7-bit characters. BOOL IsUnicodeAscii(const WCHAR * pBuffer, int nSize) { BOOL bResult = TRUE; int nIndex; for (nIndex = 0; nIndex < nSize; nIndex++) { if (pBuffer[nIndex] > 0x7F) { bResult = FALSE; break; } } return bResult; } int PathIsAbsolute(const char *path) { if (!path || !(strlen(path) > 2)) return 0; if ((path[1]==':'&&path[2]=='\\')||(path[0]=='\\'&&path[1]=='\\')) return 1; return 0; } int PathToRelative(const char *pSrc, char *pOut) { if (!pSrc||!strlen(pSrc)||strlen(pSrc)>MAX_PATH) return 0; if (!PathIsAbsolute(pSrc)) { mir_snprintf(pOut, MAX_PATH, "%s", pSrc); return strlen(pOut); } else { char szTmp[MAX_PATH]; mir_snprintf(szTmp, MAX_REGS(szTmp), "%s", pSrc); _strlwr(szTmp); if (strstr(szTmp, profilePath)) { mir_snprintf(pOut, MAX_PATH, "%s", pSrc + strlen(profilePath) + 1); return strlen(pOut); } else { mir_snprintf(pOut, MAX_PATH, "%s", pSrc); return strlen(pOut); } } return 0; } int PathToAbsolute(char *pSrc, char *pOut) { if (!pSrc||!strlen(pSrc)||strlen(pSrc)>MAX_PATH) return 0; if (PathIsAbsolute(pSrc)||!isalnum(pSrc[0])) { mir_snprintf(pOut, MAX_PATH, "%s", pSrc); return 1; } else { mir_snprintf(pOut, MAX_PATH, "%s\\%s", profilePath, pSrc); return 1; } } void ConvertToFilename(char *str, size_t size) { for(size_t i = 0; i < size && str[i] != '\0'; i++) { switch(str[i]) { case '/': case '\\': case ':': case '*': case '?': case '"': case '<': case '>': case '|': case '.': str[i] = '_'; } } } #ifdef UNICODE #define CS "%S" #else #define CS "%s" #endif TCHAR * GetExtension(TCHAR *file) { TCHAR *ext = _tcsrchr(file, _T('.')); if (ext != NULL) ext++; else ext = _T(""); return ext; } void CreateOldStyleShortcut(HANDLE hContact, TCHAR *history_filename) { TCHAR shortcut[MAX_PATH] = _T(""); GetOldStyleAvatarName(shortcut, hContact); mir_sntprintf(shortcut, MAX_REGS(shortcut), _T("%s.%s.lnk"), shortcut, GetExtension(history_filename)); if (!CreateShortcut(history_filename, shortcut)) { ShowPopup(hContact, _T("Avatar History"), _T("Unable to create shortcut")); } else { ShowDebugPopup(hContact, _T("AVH Debug"), _T("Shortcut created successfully")); } } int CopyImageFile(TCHAR *old_file, TCHAR *new_file) { TCHAR *ext = GetExtension(old_file); if (lstrcmpi(ext, _T("bmp")) == 0 && ServiceExists(MS_IMG_SAVE)) { // Store as PNG mir_sntprintf(new_file, MAX_PATH, _T("%s.png"), new_file); IMGSRVC_INFO ii = {0}; ii.cbSize = sizeof(ii); #ifdef UNICODE ii.wszName = new_file; #else ii.szName = new_file; #endif ii.hbm = (HBITMAP) CallService(MS_IMG_LOAD, (WPARAM) old_file, IMGL_TCHAR); ii.dwMask = IMGI_HBITMAP; ii.fif = FIF_UNKNOWN; return CallService(MS_IMG_SAVE, (WPARAM) &ii, IMGL_TCHAR) != 1; } else { mir_sntprintf(new_file, MAX_PATH, _T("%s.%s"), new_file, ext); return !CopyFile(old_file, new_file, TRUE); } } // fired when the contacts avatar changes // wParam = hContact // lParam = struct avatarCacheEntry *cacheEntry // the event CAN pass a NULL pointer in lParam which means that the avatar has changed, // but is no longer valid (happens, when a contact removes his avatar, for example). // DONT DESTROY the bitmap handle passed in the struct avatarCacheEntry * // // It is also possible that this event passes 0 as wParam (hContact), in which case, // a protocol picture (pseudo - avatar) has been changed. static int AvatarChanged(WPARAM wParam, LPARAM lParam) { HANDLE hContact = (HANDLE)wParam; CONTACTAVATARCHANGEDNOTIFICATION* avatar = (CONTACTAVATARCHANGEDNOTIFICATION*)lParam; if (hContact == NULL) { ShowDebugPopup(NULL, _T("AVH Debug"), _T("Invalid contact/avatar... skipping")); return 0; } char *proto = (char *) CallService(MS_PROTO_GETCONTACTBASEPROTO, (WPARAM) hContact, 0); if (proto == NULL) { ShowDebugPopup(NULL, _T("AVH Debug"), _T("Invalid protocol... skipping")); return 0; } else if (metacontacts_proto != NULL && strcmp(metacontacts_proto, proto) == 0) { ShowDebugPopup(NULL, _T("AVH Debug"), _T("Ignoring metacontacts notification")); return 0; } BOOL removed = (avatar == NULL && DBGetContactSettingWord(hContact, "ContactPhoto", "Format", 0) == 0); char oldhash[1024] = ""; char * ret = MyDBGetString(hContact, "AvatarHistory", "AvatarHash", oldhash, sizeof(oldhash)); BOOL first_time = (ret == NULL); if( (avatar != NULL && !strcmp(oldhash, avatar->hash)) // Changed it || (avatar == NULL && oldhash[0] == '\0') // Removed it ) { ShowDebugPopup(NULL, "AVH Debug", "Hashes are the same... skipping"); return 0; } if (removed) { db_string_set(hContact, "AvatarHistory", "AvatarHash", ""); if (!first_time && ContactEnabled(hContact, "AvatarPopups", AVH_DEF_AVPOPUPS) && opts.popup_show_removed) ShowPopup(hContact, NULL, opts.popup_removed); if (ContactEnabled(hContact, "LogToHistory", AVH_DEF_LOGTOHISTORY)) HistoryEvents_AddToHistorySimple(hContact, EVENTTYPE_AVATAR_CHANGE, 1, DBEF_READ); } else if (avatar == NULL) { if (!strcmp(oldhash, "-")) { ShowDebugPopup(NULL, "AVH Debug", "Changed from a flash avatar to a flash avatar... skipping"); return 0; } // Is a flash avatar or avs could not load it db_string_set(hContact, "AvatarHistory", "AvatarHash", "-"); if (!first_time && ContactEnabled(hContact, "AvatarPopups", AVH_DEF_AVPOPUPS) && opts.popup_show_changed) ShowPopup(hContact, NULL, opts.popup_changed); if (ContactEnabled(hContact, "LogToHistory", AVH_DEF_LOGTOHISTORY)) HistoryEvents_AddToHistorySimple(hContact, EVENTTYPE_AVATAR_CHANGE, 0, DBEF_READ); } else { db_string_set(hContact, "AvatarHistory", "AvatarHash", avatar->hash); TCHAR history_filename[MAX_PATH] = _T(""); if (ContactEnabled(hContact, "LogToDisk", AVH_DEF_LOGTODISK)) { if (!opts.log_store_as_hash) { if (opts.log_per_contact_folders) { INPLACE_CHAR_TO_TCHAR(file, 1024, avatar->filename); GetOldStyleAvatarName(history_filename, hContact); if (CopyImageFile(file, history_filename)) ShowPopup(hContact, _T("Avatar History"), _T("Unable to save avatar")); else ShowDebugPopup(hContact, _T("AVH Debug"), _T("File copied successfully")); if (ServiceExists(MS_MC_GETMETACONTACT)) { HANDLE hMetaContact = (HANDLE) CallService(MS_MC_GETMETACONTACT, (WPARAM)hContact, 0); if (hMetaContact != NULL && ContactEnabled(hMetaContact, "LogToDisk", AVH_DEF_LOGTOHISTORY)) { TCHAR filename[MAX_PATH] = _T(""); GetOldStyleAvatarName(filename, hMetaContact); if (CopyImageFile(file, filename)) ShowPopup(hContact, _T("Avatar History"), _T("Unable to save avatar")); else ShowDebugPopup(hContact, _T("AVH Debug"), _T("File copied successfully")); } } } } else { // See if we already have the avatar char hash[128]; lstrcpynA(hash, avatar->hash, sizeof(hash)); ConvertToFilename(hash, sizeof(hash)); TCHAR *file = GetCachedAvatar(proto, hash); if (file != NULL) { lstrcpyn(history_filename, file, MAX_REGS(history_filename)); mir_free(file); } else { // Needed because path in event is char* INPLACE_CHAR_TO_TCHAR(file, MAX_PATH, avatar->filename); TCHAR *ext = GetExtension(file); if (opts.log_keep_same_folder) GetHistoryFolder(history_filename); else GetProtocolFolder(history_filename, proto); mir_sntprintf(history_filename, MAX_REGS(history_filename), _T("%s\\") _T(CS), history_filename, hash); if (CopyImageFile(file, history_filename)) ShowPopup(hContact, _T("Avatar History"), _T("Unable to save avatar")); else ShowDebugPopup(hContact, _T("AVH Debug"), _T("File copied successfully")); } if (opts.log_per_contact_folders) { CreateOldStyleShortcut(hContact, history_filename); if (ServiceExists(MS_MC_GETMETACONTACT)) { HANDLE hMetaContact = (HANDLE) CallService(MS_MC_GETMETACONTACT, (WPARAM)hContact, 0); if (hMetaContact != NULL && ContactEnabled(hMetaContact, "LogToDisk", AVH_DEF_LOGTOHISTORY)) CreateOldStyleShortcut(hMetaContact, history_filename); } } } } if (!first_time && ContactEnabled(hContact, "AvatarPopups", AVH_DEF_AVPOPUPS) && opts.popup_show_changed) ShowPopup(hContact, NULL, opts.popup_changed); if (ContactEnabled(hContact, "LogToHistory", AVH_DEF_LOGTOHISTORY)) { char rel_path[MAX_PATH] = ""; INPLACE_TCHAR_TO_CHAR(tmp, MAX_PATH, history_filename); PathToRelative(tmp, rel_path); HistoryEvents_AddToHistoryEx(hContact, EVENTTYPE_AVATAR_CHANGE, 0, NULL, 0, (PBYTE) rel_path, strlen(rel_path) + 1, DBEF_READ); } } return 0; } extern "C" int __declspec(dllexport) Unload(void) { return 0; } static INT_PTR IsEnabled(WPARAM wParam, LPARAM lParam) { HANDLE hContact = (HANDLE) wParam; return ContactEnabled(hContact, "LogToDisk", AVH_DEF_LOGTODISK) || ContactEnabled(hContact, "AvatarPopups", AVH_DEF_AVPOPUPS) || ContactEnabled(hContact, "LogToHistory", AVH_DEF_LOGTOHISTORY); } /* Get cached avatar wParam: (char *) protocol name lParam: (char *) hash return: (TCHAR *) NULL if none is found or the path to the avatar. You need to free this string with mir_free. */ static INT_PTR GetCachedAvatar(WPARAM wParam, LPARAM lParam) { char hash[128]; lstrcpynA(hash, (char *) lParam, sizeof(hash)); ConvertToFilename(hash, sizeof(hash)); return (int) GetCachedAvatar((char *) wParam, hash); } TCHAR * GetCachedAvatar(char *proto, char *hash) { TCHAR *ret = NULL; TCHAR file[1024] = _T(""); TCHAR search[1024] = _T(""); if (opts.log_keep_same_folder) GetHistoryFolder(file); else GetProtocolFolder(file, proto); mir_sntprintf(search, MAX_REGS(search), _T("%s\\") _T(CS) _T(".*"), file, hash); WIN32_FIND_DATA finddata; HANDLE hFind = FindFirstFile(search, &finddata); if (hFind == INVALID_HANDLE_VALUE) return NULL; do { size_t len = lstrlen(finddata.cFileName); if (len > 4 && (!lstrcmpi(&finddata.cFileName[len-4], _T(".png")) || !lstrcmpi(&finddata.cFileName[len-4], _T(".bmp")) || !lstrcmpi(&finddata.cFileName[len-4], _T(".gif")) || !lstrcmpi(&finddata.cFileName[len-4], _T(".jpg")) || !lstrcmpi(&finddata.cFileName[len-5], _T(".jpeg")))) { mir_sntprintf(file, MAX_REGS(file), _T("%s\\%s"), file, finddata.cFileName); ret = mir_tstrdup(file); break; } } while(FindNextFile(hFind, &finddata)); FindClose(hFind); return ret; } int GetUIDFromHContact(HANDLE contact, TCHAR* uinout, size_t uinout_len) { CONTACTINFO cinfo; ZeroMemory(&cinfo,sizeof(CONTACTINFO)); cinfo.cbSize = sizeof(CONTACTINFO); cinfo.hContact = contact; cinfo.dwFlag = CNF_UNIQUEID | CNF_TCHAR; bool found = true; if(CallService(MS_CONTACT_GETCONTACTINFO,0,(LPARAM)&cinfo)==0) { if(cinfo.type == CNFT_ASCIIZ) { lstrcpyn(uinout, cinfo.pszVal, uinout_len); // It is up to us to free the string // The catch? We need to use Miranda's free(), not our CRT's :) mir_free(cinfo.pszVal); } else if(cinfo.type == CNFT_DWORD) { _itot(cinfo.dVal,uinout,10); } else if(cinfo.type == CNFT_WORD) { _itot(cinfo.wVal,uinout,10); } else found = false; } else found = false; if (!found) { lstrcpyn(uinout, TranslateT("Unknown UIN"),uinout_len); } return 0; } TCHAR * GetHistoryFolder(TCHAR *fn) { FoldersGetCustomPathT(hFolder, fn, MAX_PATH, basedir); CreateDirectory(fn, NULL); return fn; } TCHAR * GetProtocolFolder(TCHAR *fn, char *proto) { GetHistoryFolder(fn); if (proto == NULL) proto = Translate("Unknown Protocol"); mir_sntprintf(fn, MAX_PATH, _T("%s\\") _T(CS), fn, proto); CreateDirectory(fn, NULL); return fn; } TCHAR * GetContactFolder(TCHAR *fn, HANDLE hContact) { TCHAR uin[MAX_PATH]; char *proto = (char *) CallService(MS_PROTO_GETCONTACTBASEPROTO,(WPARAM) hContact, 0); GetProtocolFolder(fn, proto); GetUIDFromHContact(hContact, uin, MAX_REGS(uin)); mir_sntprintf(fn, MAX_PATH, _T("%s\\%s"), fn, uin); CreateDirectory(fn, NULL); #ifdef DBGPOPUPS char log[1024]; mir_snprintf(log, MAX_REGS(log), "Path: " CS "\nProto: %s\nUIN: " CS, fn, proto, uin); ShowPopup(NULL, "AVH Debug: GetContactFolder", log); #endif return fn; } TCHAR * GetOldStyleAvatarName(TCHAR *fn, HANDLE hContact) { GetContactFolder(fn, hContact); SYSTEMTIME curtime; GetLocalTime(&curtime); mir_sntprintf(fn, MAX_PATH, _T("%s\\%04d-%02d-%02d %02dh%02dm%02ds"), fn, curtime.wYear, curtime.wMonth, curtime.wDay, curtime.wHour, curtime.wMinute, curtime.wSecond); return fn; } #include #include BOOL CreateShortcut(TCHAR *file, TCHAR *shortcut) { CoInitialize(NULL); IShellLink* psl = NULL; HRESULT hr = CoCreateInstance(CLSID_ShellLink, NULL, CLSCTX_INPROC_SERVER, IID_IShellLink, (void **) &psl); if (SUCCEEDED(hr)) { psl->SetPath(file); IPersistFile* ppf = NULL; hr = psl->QueryInterface(IID_IPersistFile, (void **) &ppf); if (SUCCEEDED(hr)) { #ifdef UNICODE hr = ppf->Save(shortcut, TRUE); #else WCHAR tmp[MAX_PATH]; MultiByteToWideChar(CP_ACP, 0, shortcut, -1, tmp, MAX_PATH); hr = ppf->Save(tmp, TRUE); #endif ppf->Release(); } psl->Release(); } return SUCCEEDED(hr); } BOOL ResolveShortcut(TCHAR *shortcut, TCHAR *file) { CoInitialize(NULL); IShellLink* psl = NULL; HRESULT hr = CoCreateInstance(CLSID_ShellLink, NULL, CLSCTX_INPROC_SERVER, IID_IShellLink, (void **) &psl); if (SUCCEEDED(hr)) { IPersistFile* ppf = NULL; hr = psl->QueryInterface(IID_IPersistFile, (void **) &ppf); if (SUCCEEDED(hr)) { #ifdef UNICODE hr = ppf->Load(shortcut, STGM_READ); #else WCHAR tmp[MAX_PATH]; MultiByteToWideChar(CP_ACP, 0, shortcut, -1, tmp, MAX_PATH); hr = ppf->Load(tmp, STGM_READ); #endif if (SUCCEEDED(hr)) { hr = psl->Resolve(NULL, SLR_UPDATE); if (SUCCEEDED(hr)) { WIN32_FIND_DATA wfd; hr = psl->GetPath(file, MAX_PATH, &wfd, SLGP_RAWPATH); } } ppf->Release(); } psl->Release(); } return SUCCEEDED(hr); } template void ConvertToRTF(Buffer *buffer, T *line) { buffer->append("{\\uc1 ", 6); for (; *line; line++) { if (*line == (T)'\r' && line[1] == (T)'\n') { buffer->append("\\line ", 6); line++; } else if (*line == (T)'\n') { buffer->append("\\line ", 6); } else if (*line == (T)'\t') { buffer->append("\\tab ", 5); } else if (*line == (T)'\\' || *line == (T)'{' || *line == (T)'}') { buffer->append('\\'); buffer->append((char) *line); } else if (*line < 128) { buffer->append((char) *line); } else buffer->appendPrintf("\\u%d ?", *line); } buffer->append('}'); } void GetRTFFor(Buffer *buffer, HBITMAP hBitmap) { BITMAP bmp; GetObject(hBitmap, sizeof(bmp), &bmp); DWORD dwLen = bmp.bmWidth * bmp.bmHeight * (bmp.bmBitsPixel / 8); BYTE *p = (BYTE *) malloc(dwLen); if (p == NULL) return; dwLen = GetBitmapBits(hBitmap, dwLen, p); buffer->appendPrintf("{\\pict\\wbitmap0\\wbmbitspixel%u\\wbmplanes%u\\wbmwidthbytes%u\\picw%u\\pich%u ", bmp.bmBitsPixel, bmp.bmPlanes, bmp.bmWidthBytes, bmp.bmWidth, bmp.bmHeight); for (DWORD i = 0; i < dwLen; i++) buffer->appendPrintf("%02X", p[i]); buffer->append('}'); /* BITMAPINFOHEADER bih = { 0 }; HDC hdc = GetDC(NULL); GetDIBits(hdc, hBitmap, 0, bmp.bmHeight, p, (BITMAPINFO *) & bih, DIB_RGB_COLORS); buffer->appendPrintf("{\\pict\\wbitmap0\\wbmbitspixel%u\\wbmplanes%u\\wbmwidthbytes%u\\picw%u\\pich%u ", bmp.bmBitsPixel, bmp.bmPlanes, bmp.bmWidthBytes, bmp.bmWidth, bmp.bmHeight); DWORD i; for (i = 0; i < sizeof(BITMAPINFOHEADER); i++) buffer->appendPrintf("%02X", ((PBYTE) & bih)[i]); for (i = 0; i < dwLen; i++) buffer->appendPrintf("%02X", p[i]); buffer->append('}'); */ free(p); } void * GetHistoryEventText(HANDLE hContact, HANDLE hDbEvent, DBEVENTINFO *dbe, int format) { void *ret; if (format & HISTORYEVENTS_FORMAT_CHAR) { ret = DbGetEventTextA(dbe, CP_ACP); } else if (format & HISTORYEVENTS_FORMAT_WCHAR) { ret = DbGetEventTextW(dbe, CP_ACP); } else if (format & HISTORYEVENTS_FORMAT_RICH_TEXT) { Buffer buffer; TCHAR *tmp = DbGetEventTextT(dbe, CP_ACP); ConvertToRTF(&buffer, tmp); mir_free(tmp); // Load the image size_t i; for(i = dbe->cbBlob-2; i > 0 && dbe->pBlob[i] != 0; i--) ; i++; if (dbe->pBlob[i] != 0) { char absFile[MAX_PATH] = ""; PathToAbsolute((char *) & dbe->pBlob[i], absFile); HBITMAP hBmp = (HBITMAP) CallService(MS_IMG_LOAD, (WPARAM) absFile, 0); if (hBmp != NULL) { buffer.append("\\line ", 7); GetRTFFor(&buffer, hBmp); DeleteObject(hBmp); } } buffer.append(' '); buffer.pack(); ret = buffer.detach(); } return ret; }