summaryrefslogtreecommitdiff
path: root/protocols/SkypeWeb/src/skype_events.cpp
blob: acd520827783159ce2a8da5bda6983b80767c569 (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
/*
Copyright (c) 2015-24 Miranda NG team (https://miranda-ng.org)

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 version 2
of the License.

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, see <http://www.gnu.org/licenses/>.
*/

#include "stdafx.h"

INT_PTR CSkypeProto::SvcGetEventText(WPARAM pEvent, LPARAM datatype)
{
	DBEVENTINFO *dbei = (DBEVENTINFO*)pEvent;

	CMStringA szText = Translate("SkypeWeb error: Invalid data!");

	switch (dbei->eventType) {
	case SKYPE_DB_EVENT_TYPE_CALL_INFO:
		{
			TiXmlDocument doc;
			if (0 != doc.Parse((char*)dbei->pBlob))
				break;

			if (auto *pRoot = doc.FirstChildElement("partlist")) {
				bool bType = pRoot->IntAttribute("started") ? 1 : 0;

				time_t callDuration = 0;
				for (auto *it : TiXmlFilter(pRoot, "part")) {
					auto *xmlDuration = it->FirstChildElement("duration");
					if (xmlDuration != nullptr) {
						callDuration = atoi(xmlDuration->GetText());
						break;
					}
				}

				if (bType)
					szText = Translate("Call");
				else if (callDuration == 0)
					szText = Translate("Call missed");
				else {
					char szTime[100];
					strftime(szTime, sizeof(szTime), "%X", gmtime(&callDuration));
					szText.Format(Translate("Call ended (%s)"), szTime);
				}
			}
		}
		break;

	case SKYPE_DB_EVENT_TYPE_FILETRANSFER_INFO:
		{
			TiXmlDocument doc;
			if (0 != doc.Parse((char*)dbei->pBlob))
				break;

			if (auto *pRoot = doc.FirstChildElement("files")) {
				for (auto *it : TiXmlFilter(pRoot, "file")) {
					LONGLONG fileSize = it->Int64Attribute("size");
					const char *fileName = it->GetText();
					if (fileName != nullptr)
						szText.AppendFormat(Translate("File transfer:\n\tFile name: %s \n\tSize: %lld bytes \n"), fileName, fileSize);
				}
			}
		}
		break;

	case SKYPE_DB_EVENT_TYPE_MOJI:
		{
			TiXmlDocument doc;
			if (0 != doc.Parse((char*)dbei->pBlob))
				break;

			szText.Empty();
			if (auto *pRoot = doc.FirstChildElement("URIObject")) {
				if (auto *xmlA = pRoot->FirstChildElement("a"))
					szText += xmlA->Attribute("href");
				if (auto *xmlThumb = pRoot->Attribute("url_thumbnail")) {
					szText.AppendFormat("\r\n%s: %s", TranslateU("Preview"), xmlThumb);
					
					CMStringA szUrl(xmlThumb);
					int iCount = szUrl.Replace("/views/imgt1_anim", "/views/imgpsh_fullsize_anim");
					if (!iCount)
						iCount = szUrl.Replace("/views/imgt1", "/views/imgpsh_fullsize_anim");
					if (iCount)
						szText.AppendFormat("\r\n%s: %s", TranslateU("Full image"), szUrl.c_str());
				}
			}
		}
		break;

	case SKYPE_DB_EVENT_TYPE_INCOMING_CALL:
		szText = Translate("Incoming call");
		break;

	case SKYPE_DB_EVENT_TYPE_UNKNOWN:
		szText.Format(Translate("Unknown event, please send this text for developer: \"%s\""), mir_utf8decodeA((char*)dbei->pBlob));
		break;

	default:
		szText = ptrA(mir_utf8decodeA((char*)dbei->pBlob));
	}

	return (datatype == DBVT_WCHAR) ? (INT_PTR)mir_a2u(szText) : (INT_PTR)szText.Detach();
}

INT_PTR CSkypeProto::SvcEventGetIcon(WPARAM flags, LPARAM pEvent)
{
	DBEVENTINFO *dbei = (DBEVENTINFO*)pEvent;
	HICON icon = nullptr;

	switch (dbei->eventType) {
	case SKYPE_DB_EVENT_TYPE_CALL_INFO:
	case SKYPE_DB_EVENT_TYPE_INCOMING_CALL:
		icon = g_plugin.getIcon(IDI_CALL);
		break;

	case SKYPE_DB_EVENT_TYPE_ACTION:
		icon = g_plugin.getIcon(IDI_ACTION_ME);
		break;

	case SKYPE_DB_EVENT_TYPE_FILETRANSFER_INFO:
		icon = Skin_LoadIcon(SKINICON_EVENT_FILE);
		break;

	case SKYPE_DB_EVENT_TYPE_UNKNOWN:
		icon = Skin_LoadIcon(SKINICON_WARNING);
		break;

	default:
		icon = Skin_LoadIcon(SKINICON_EVENT_MESSAGE);
		break;
	}

	return (INT_PTR)((flags & LR_SHARED) ? icon : CopyIcon(icon));
}