From 872957d378790f44ec8749bd05067695bb45d8ea Mon Sep 17 00:00:00 2001 From: Sergey Tatarinov Date: Sat, 2 Nov 2013 10:15:03 +0000 Subject: NewXstatusNotify: restored last seen implementation, now it's hidden option, disabled by default, no one hurt, not slow down the work. git-svn-id: http://svn.miranda-ng.org/main/trunk@6739 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/NewXstatusNotify/src/main.cpp | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'plugins/NewXstatusNotify/src/main.cpp') diff --git a/plugins/NewXstatusNotify/src/main.cpp b/plugins/NewXstatusNotify/src/main.cpp index 91689bf1c8..3c01e6802a 100644 --- a/plugins/NewXstatusNotify/src/main.cpp +++ b/plugins/NewXstatusNotify/src/main.cpp @@ -762,6 +762,20 @@ int ContactStatusChanged(WPARAM wParam, LPARAM lParam) strcpy(szProto, hlpProto); WORD myStatus = (WORD)CallProtoService(szProto, PS_GETSTATUS, 0, 0); + if (opt.EnableLastSeen && newStatus == ID_STATUS_OFFLINE && oldStatus > ID_STATUS_OFFLINE) { + // A simple implementation of Last Seen module, please don't touch this. + SYSTEMTIME systime; + GetLocalTime(&systime); + + db_set_w(hContact, "SeenModule", "Year", systime.wYear); + db_set_w(hContact, "SeenModule", "Month", systime.wMonth); + db_set_w(hContact, "SeenModule", "Day", systime.wDay); + db_set_w(hContact, "SeenModule", "Hours", systime.wHour); + db_set_w(hContact, "SeenModule", "Minutes", systime.wMinute); + db_set_w(hContact, "SeenModule", "Seconds", systime.wSecond); + db_set_w(hContact, "SeenModule", "Status", oldStatus); + } + if (strcmp(szProto, szMetaModuleName) == 0) { //this contact is Meta HANDLE hSubContact = (HANDLE)CallService(MS_MC_GETMOSTONLINECONTACT, (WPARAM)hContact, 0); hlpProto = GetContactProto(hSubContact); -- cgit v1.2.3