diff options
author | George Hazan <george.hazan@gmail.com> | 2012-10-08 09:51:41 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-10-08 09:51:41 +0000 |
commit | a2731a585b711e70cf40654925fd5bde760d5ba3 (patch) | |
tree | 179ef87ca47858e8705a62b77882aad14e3d159f /plugins/SecureIM | |
parent | 194923c172167eb3fc33807ec8009b255f86337e (diff) |
removed dirty hack in SecureIM
git-svn-id: http://svn.miranda-ng.org/main/trunk@1810 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/SecureIM')
-rw-r--r-- | plugins/SecureIM/src/crypt_lists.cpp | 259 |
1 files changed, 98 insertions, 161 deletions
diff --git a/plugins/SecureIM/src/crypt_lists.cpp b/plugins/SecureIM/src/crypt_lists.cpp index e34320c971..7b1225d2a2 100644 --- a/plugins/SecureIM/src/crypt_lists.cpp +++ b/plugins/SecureIM/src/crypt_lists.cpp @@ -6,55 +6,54 @@ int proto_cnt = 0; int clist_cnt = 0;
int clist_inc = 100;
-
void loadSupportedProtocols() {
- int numberOfProtocols;
- PROTOACCOUNT **protos;
- LPSTR szNames = myDBGetString(0,szModuleName,"protos");
- if ( szNames && strchr(szNames,':') == NULL ) {
- LPSTR tmp = (LPSTR) mir_alloc(2048); int j=0;
- for(int i=0; szNames[i]; i++) {
- if ( szNames[i] == ';' ) {
- memcpy((PVOID)(tmp+j),(PVOID)":1:0:0",6); j+=6;
- }
- tmp[j++] = szNames[i];
+ int numberOfProtocols;
+ PROTOACCOUNT **protos;
+ LPSTR szNames = myDBGetString(0,szModuleName,"protos");
+ if ( szNames && strchr(szNames,':') == NULL ) {
+ LPSTR tmp = (LPSTR) mir_alloc(2048); int j=0;
+ for(int i=0; szNames[i]; i++) {
+ if ( szNames[i] == ';' ) {
+ memcpy((PVOID)(tmp+j),(PVOID)":1:0:0",6); j+=6;
+ }
+ tmp[j++] = szNames[i];
+ }
+ tmp[j] = '\0';
+ SAFE_FREE(szNames); szNames = tmp;
+ DBWriteContactSettingString(0,szModuleName,"protos",szNames);
}
- tmp[j] = '\0';
- SAFE_FREE(szNames); szNames = tmp;
- DBWriteContactSettingString(0,szModuleName,"protos",szNames);
- }
- ProtoEnumAccounts(&numberOfProtocols, &protos);
+ ProtoEnumAccounts(&numberOfProtocols, &protos);
for (int i=0;i<numberOfProtocols;i++) {
if (protos[i]->szModuleName && CallProtoService(protos[i]->szModuleName,PS_GETCAPS,PFLAGNUM_2,0)) {
- int j = proto_cnt; proto_cnt++;
- proto = (pSupPro) mir_realloc(proto,sizeof(SupPro)*proto_cnt);
- memset(&proto[j],0,sizeof(SupPro));
- proto[j].name = mir_strdup(protos[i]->szModuleName);
- if ( szNames ) {
- if ( proto[j].name ) {
- char tmp[128]; strcpy(tmp,proto[j].name); strcat(tmp,":");
- LPSTR szName = strstr(szNames,tmp);
- if ( szName ) {
- szName = strchr(szName,':');
- if ( szName ) {
- proto[j].inspecting = (*++szName == '1');
- szName = strchr(szName,':');
- if ( szName ) {
- proto[j].split_on = atoi(++szName); proto[j].tsplit_on = proto[j].split_on;
- szName = strchr(szName,':');
+ int j = proto_cnt; proto_cnt++;
+ proto = (pSupPro) mir_realloc(proto,sizeof(SupPro)*proto_cnt);
+ memset(&proto[j],0,sizeof(SupPro));
+ proto[j].name = mir_strdup(protos[i]->szModuleName);
+ if ( szNames ) {
+ if ( proto[j].name ) {
+ char tmp[128]; strcpy(tmp,proto[j].name); strcat(tmp,":");
+ LPSTR szName = strstr(szNames,tmp);
if ( szName ) {
- proto[j].split_off = atoi(++szName); proto[j].tsplit_off = proto[j].split_off;
- }
- }
- }
- }
+ szName = strchr(szName,':');
+ if ( szName ) {
+ proto[j].inspecting = (*++szName == '1');
+ szName = strchr(szName,':');
+ if ( szName ) {
+ proto[j].split_on = atoi(++szName); proto[j].tsplit_on = proto[j].split_on;
+ szName = strchr(szName,':');
+ if ( szName ) {
+ proto[j].split_off = atoi(++szName); proto[j].tsplit_off = proto[j].split_off;
+ }
+ }
+ }
+ }
+ }
+ }
+ else {
+ proto[j].inspecting = true;
}
- }
- else {
- proto[j].inspecting = true;
- }
}
}
SAFE_FREE(szNames);
@@ -62,14 +61,13 @@ void loadSupportedProtocols() { void freeSupportedProtocols() {
- for (int j=0;j<proto_cnt;j++) {
- mir_free(proto[j].name);
- }
+ for (int j=0;j<proto_cnt;j++)
+ mir_free(proto[j].name);
+
SAFE_FREE(proto);
proto_cnt = 0;
}
-
pSupPro getSupPro(HANDLE hContact) {
int j;
for(j=0;j<proto_cnt && !CallService(MS_PROTO_ISPROTOONCONTACT, (WPARAM)hContact, (LPARAM)proto[j].name);j++);
@@ -77,64 +75,12 @@ pSupPro getSupPro(HANDLE hContact) { return &proto[j];
}
-
-void MoveToFirstInFilterList(HANDLE hContact) {
- int i;
- char str[10];
- DBVARIANT dbv;
-
- for(i=0;;i++) {
- mir_itoa(i,str,10);
- if ( DBGetContactSettingString(hContact,"_Filter",str,&dbv)) break;
- if ( !strcmp(szModuleName,dbv.pszVal)) { // нашли мой модуль
- if ( i==0 ) return;
- DBGetContactSettingString(hContact,"_Filter","0",&dbv);
- DBWriteContactSettingString(hContact,"_Filter","0",szModuleName);
- DBWriteContactSettingString(hContact,"_Filter",str,dbv.pszVal);
- mir_free(dbv.pszVal);
- return;
- }
- mir_free(dbv.pszVal);
- }
-}
-
-
-void MoveToLastInFilterList(HANDLE hContact) {
- int i,j;
- char str[10];
- char end[10];
- DBVARIANT dbv;
-
- for(i=0;;i++) {
- mir_itoa(i,str,10);
- if ( DBGetContactSettingString(hContact,"_Filter",str,&dbv)) break;
- if ( !strcmp(szModuleName,dbv.pszVal)) { // нашли мой модуль
- j=i;
- }
- mir_free(dbv.pszVal);
- }
- i--;
- if ( j==i ) return;
- mir_itoa(i,end,10);
- mir_itoa(j,str,10);
- DBGetContactSettingString(hContact,"_Filter",end,&dbv);
- DBWriteContactSettingString(hContact,"_Filter",str,dbv.pszVal);
- DBWriteContactSettingString(hContact,"_Filter",end,szModuleName);
- mir_free(dbv.pszVal);
- return;
-}
-
-
// add contact in the list of secureIM users
pUinKey addContact(HANDLE hContact) {
int j;
if (hContact) {
-// LPSTR szProto = (LPSTR) CallService(MS_PROTO_GETCONTACTBASEPROTO, (WPARAM)hContact, 0);
- pSupPro proto = getSupPro(hContact);
+ pSupPro proto = getSupPro(hContact);
if ( proto ) {
- if ( !CallService(MS_PROTO_ISPROTOONCONTACT, (WPARAM)hContact, (LPARAM)szModuleName))
- CallService(MS_PROTO_ADDTOCONTACT, (WPARAM)hContact, (LPARAM)szModuleName);
- MoveToLastInFilterList(hContact);
for(j=0;j<clist_cnt;j++) {
if ( !clist[j].hContact ) break;
}
@@ -153,9 +99,9 @@ pUinKey addContact(HANDLE hContact) { if ( clist[j].mode == 99 ) {
if ( isContactPGP(hContact)) clist[j].mode = MODE_PGP;
else
- if ( isContactGPG(hContact)) clist[j].mode = MODE_GPG;
- else
- clist[j].mode = MODE_RSAAES;
+ if ( isContactGPG(hContact)) clist[j].mode = MODE_GPG;
+ else
+ clist[j].mode = MODE_RSAAES;
DBWriteContactSettingByte(hContact, szModuleName, "mode", clist[j].mode);
}
clist[j].status = DBGetContactSettingByte(hContact, szModuleName, "StatusID", STATUS_ENABLED);
@@ -166,7 +112,6 @@ pUinKey addContact(HANDLE hContact) { return NULL;
}
-
// delete contact from the list of secureIM users
void delContact(HANDLE hContact) {
if (hContact) {
@@ -184,21 +129,19 @@ void delContact(HANDLE hContact) { }
}
-
// load contactlist in the list of secureIM users
void loadContactList() {
- freeContactList();
- loadSupportedProtocols();
+ freeContactList();
+ loadSupportedProtocols();
- HANDLE hContact = (HANDLE)CallService(MS_DB_CONTACT_FINDFIRST, 0, 0);
- while (hContact) {
- addContact(hContact);
- hContact = (HANDLE)CallService(MS_DB_CONTACT_FINDNEXT, (WPARAM)hContact, 0);
- }
+ HANDLE hContact = (HANDLE)CallService(MS_DB_CONTACT_FINDFIRST, 0, 0);
+ while (hContact) {
+ addContact(hContact);
+ hContact = (HANDLE)CallService(MS_DB_CONTACT_FINDNEXT, (WPARAM)hContact, 0);
+ }
}
-
// free list of secureIM users
void freeContactList() {
@@ -216,74 +159,72 @@ void freeContactList() { // find user in the list of secureIM users and add him, if unknow
pUinKey getUinKey(HANDLE hContact) {
- int j;
- for(j=0;j<clist_cnt && clist[j].hContact!=hContact;j++);
- if (j==clist_cnt) return addContact(hContact);
- return &clist[j];
+ int j;
+ for(j=0;j<clist_cnt && clist[j].hContact!=hContact;j++);
+ if (j==clist_cnt) return addContact(hContact);
+ return &clist[j];
}
-
pUinKey getUinCtx(HANDLE cntx) {
- int j;
- for(j=0;j<clist_cnt && clist[j].cntx!=cntx;j++);
- if (j==clist_cnt) return NULL;
- return &clist[j];
+ int j;
+ for(j=0;j<clist_cnt && clist[j].cntx!=cntx;j++);
+ if (j==clist_cnt) return NULL;
+ return &clist[j];
}
// add message to user queue for send later
void addMsg2Queue(pUinKey ptr,WPARAM wParam,LPSTR szMsg) {
-
+
#if defined(_DEBUG) || defined(NETLIB_LOG)
- Sent_NetLog("addMsg2Queue: msg: -----\n%s\n-----\n",szMsg);
+ Sent_NetLog("addMsg2Queue: msg: -----\n%s\n-----\n",szMsg);
#endif
- pWM ptrMessage;
+ pWM ptrMessage;
- EnterCriticalSection(&localQueueMutex);
+ EnterCriticalSection(&localQueueMutex);
- if(ptr->msgQueue==NULL){
- // create new
- ptr->msgQueue = (pWM) mir_alloc(sizeof(struct waitingMessage));
- ptrMessage = ptr->msgQueue;
- }
- else {
- // add to list
- ptrMessage = ptr->msgQueue;
- while (ptrMessage->nextMessage) {
- ptrMessage = ptrMessage->nextMessage;
- }
- ptrMessage->nextMessage = (pWM) mir_alloc(sizeof(struct waitingMessage));
+ if(ptr->msgQueue==NULL){
+ // create new
+ ptr->msgQueue = (pWM) mir_alloc(sizeof(struct waitingMessage));
+ ptrMessage = ptr->msgQueue;
+ }
+ else {
+ // add to list
+ ptrMessage = ptr->msgQueue;
+ while (ptrMessage->nextMessage) {
ptrMessage = ptrMessage->nextMessage;
}
+ ptrMessage->nextMessage = (pWM) mir_alloc(sizeof(struct waitingMessage));
+ ptrMessage = ptrMessage->nextMessage;
+ }
- ptrMessage->wParam = wParam;
- ptrMessage->nextMessage = NULL;
+ ptrMessage->wParam = wParam;
+ ptrMessage->nextMessage = NULL;
- if(wParam & PREF_UNICODE) {
- int slen = (int)strlen(szMsg)+1;
- int wlen = (int)wcslen((wchar_t *)(szMsg+slen))+1;
- ptrMessage->Message = (LPSTR) mir_alloc(slen+wlen*sizeof(WCHAR));
- memcpy(ptrMessage->Message,szMsg,slen+wlen*sizeof(WCHAR));
- }
- else{
- ptrMessage->Message = mir_strdup(szMsg);
- }
+ if(wParam & PREF_UNICODE) {
+ int slen = (int)strlen(szMsg)+1;
+ int wlen = (int)wcslen((wchar_t *)(szMsg+slen))+1;
+ ptrMessage->Message = (LPSTR) mir_alloc(slen+wlen*sizeof(WCHAR));
+ memcpy(ptrMessage->Message,szMsg,slen+wlen*sizeof(WCHAR));
+ }
+ else{
+ ptrMessage->Message = mir_strdup(szMsg);
+ }
- LeaveCriticalSection(&localQueueMutex);
+ LeaveCriticalSection(&localQueueMutex);
}
-
void getContactNameA(HANDLE hContact, LPSTR szName) {
strcpy(szName,(LPCSTR)CallService(MS_CLIST_GETCONTACTDISPLAYNAME,(WPARAM)hContact,0));
}
-
void getContactName(HANDLE hContact, LPSTR szName) {
- if ( bCoreUnicode ) wcscpy((LPWSTR)szName,(LPWSTR)CallService(MS_CLIST_GETCONTACTDISPLAYNAME,(WPARAM)hContact,GSMDF_UNICODE));
- else getContactNameA(hContact, szName);
+ if ( bCoreUnicode )
+ wcscpy((LPWSTR)szName,(LPWSTR)CallService(MS_CLIST_GETCONTACTDISPLAYNAME,(WPARAM)hContact,GSMDF_UNICODE));
+ else
+ getContactNameA(hContact, szName);
}
-
void getContactUinA(HANDLE hContact, LPSTR szUIN) {
*szUIN = 0;
@@ -297,22 +238,18 @@ void getContactUinA(HANDLE hContact, LPSTR szUIN) { if ( uID && DBGetContactSetting(hContact, ptr->name, uID, &dbv_uniqueid)==0 ) {
if (dbv_uniqueid.type == DBVT_WORD)
sprintf(szUIN, "%u [%s]", dbv_uniqueid.wVal, ptr->name);
- else
- if (dbv_uniqueid.type == DBVT_DWORD)
+ else if (dbv_uniqueid.type == DBVT_DWORD)
sprintf(szUIN, "%u [%s]", (UINT)dbv_uniqueid.dVal, ptr->name);
- else
- if (dbv_uniqueid.type == DBVT_BLOB)
+ else if (dbv_uniqueid.type == DBVT_BLOB)
sprintf(szUIN, "%s [%s]", dbv_uniqueid.pbVal, ptr->name);
else
sprintf(szUIN, "%s [%s]", dbv_uniqueid.pszVal, ptr->name);
}
- else {
- strcpy(szUIN, "=== unknown ===");
- }
+ else strcpy(szUIN, "=== unknown ===");
+
DBFreeVariant(&dbv_uniqueid);
}
-
void getContactUin(HANDLE hContact, LPSTR szUIN) {
getContactUinA(hContact, szUIN);
if ( bCoreUnicode && *szUIN ) {
|