aboutsummaryrefslogtreecommitdiff
path: root/Src/Plugins/Portable/pmp_wifi/post.cpp
blob: 3eb93dc2e648c66489f5f350d17ef65294d0d4e9 (plain) (blame)
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
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
#include "main.h"
#include "api.h"
#include "resource.h"
#include "../xml/obj_xml.h"
#include "nu/AutoChar.h"
#include "../nu/AutoUrl.h"
#include "../nu/AutoHeader.h"
#include "../../..\Components\wac_network\wac_network_http_receiver_api.h"
#include "../agave/albumart/svc_albumartprovider.h"
#include <api/service/waservicefactory.h>
#include <shlwapi.h>
#include <strsafe.h>


static const GUID internetConfigGroupGUID =
{
	0xc0a565dc, 0xcfe, 0x405a, { 0xa2, 0x7c, 0x46, 0x8b, 0xc, 0x8a, 0x3a, 0x5c }
};


#define USER_AGENT_SIZE (10 /*User-Agent*/ + 2 /*: */ + 6 /*Winamp*/ + 1 /*/*/ + 1 /*5*/ + 3/*.21*/ + 1 /*Null*/)
static void SetUserAgent(api_httpreceiver *http)
{

	char user_agent[USER_AGENT_SIZE] = {0};
	int bigVer = ((winampVersion & 0x0000FF00) >> 12);
	int smallVer = ((winampVersion & 0x000000FF));
	StringCchPrintfA(user_agent, USER_AGENT_SIZE, "User-Agent: Winamp/%01x.%02x", bigVer, smallVer);
	http->addheader(user_agent);
}


#define HTTP_BUFFER_SIZE 8192
#define POST_BUFFER_SIZE (128*1024)


int PostFile(const char *base_url, const wchar_t *filename, const itemRecordW *track, obj_xml *parser, int *killswitch,
						 void (*callback)(void *callbackContext, wchar_t *status), void *context, char *new_item_id, size_t new_item_id_len)
{
	//if (!parser)
//		return 1;
	bool first=true;
	char url[2048] = {0};
	char *p_url=url;
	size_t url_cch=sizeof(url)/sizeof(*url);
	FILE *f = _wfopen(filename, L"rb");
	if (!f)
		return 1;
	api_httpreceiver *http = 0;
	waServiceFactory *sf = plugin.service->service_getServiceByGuid(httpreceiverGUID);
	if (sf)
		http = (api_httpreceiver *)sf->getInterface();

	if (!http)
		return 1;

	int use_proxy = 1;
	bool proxy80 = AGAVE_API_CONFIG->GetBool(internetConfigGroupGUID, L"proxy80", false);
	if (proxy80 && strstr(url, ":") && (!strstr(url, ":80/") && strstr(url, ":80") != (url + strlen(url) - 3)))
		use_proxy = 0;

	const wchar_t *proxy = use_proxy?AGAVE_API_CONFIG->GetString(internetConfigGroupGUID, L"proxy", 0):0;

	fseek(f, 0, SEEK_END);
	
	size_t clen = ftell(f);
	size_t transferred=0;
	size_t total_clen = clen;
	fseek(f, 0, SEEK_SET);

	http->open(API_DNS_AUTODNS, HTTP_BUFFER_SIZE, (proxy && proxy[0]) ? (const char *)AutoChar(proxy) : NULL);
	http->set_sendbufsize(POST_BUFFER_SIZE);
 	SetUserAgent(http);

	char data[POST_BUFFER_SIZE] = {0};

	StringCbCopyExA(p_url, url_cch, base_url, &p_url, &url_cch, 0);
		
	StringCbPrintfA(data, sizeof(data), "Content-Length: %u", clen);
	http->addheader(data);
//	http->addheader("Content-Type: application/octet-stream");

	/* send metadata */
	if (track->artist && track->artist[0])
	{
		if (first)
			StringCbPrintfExA(p_url, url_cch, &p_url, &url_cch, 0, "?artist=%s", AutoUrl(track->artist));
		else
			StringCbPrintfExA(p_url, url_cch, &p_url, &url_cch, 0, "&artist=%s", AutoUrl(track->artist));
		first=false;
	}

	if (track->title && track->title[0])
	{
		if (first)
			StringCbPrintfExA(p_url, url_cch, &p_url, &url_cch, 0, "?title=%s", AutoUrl(track->title));
		else
			StringCbPrintfExA(p_url, url_cch, &p_url, &url_cch, 0, "&title=%s", AutoUrl(track->title));
		first=false;
	}

	if (track->album && track->album[0])
	{
		if (first)
			StringCbPrintfExA(p_url, url_cch, &p_url, &url_cch, 0, "?album=%s", AutoUrl(track->album));
		else
			StringCbPrintfExA(p_url, url_cch, &p_url, &url_cch, 0, "&album=%s", AutoUrl(track->album));
		first=false;
	}

	if (track->composer && track->composer[0])
	{
		if (first)
			StringCbPrintfExA(p_url, url_cch, &p_url, &url_cch, 0, "?composer=%s", AutoUrl(track->composer));
		else
			StringCbPrintfExA(p_url, url_cch, &p_url, &url_cch, 0, "&composer=%s", AutoUrl(track->composer));
		first=false;
	}

	if (track->albumartist && track->albumartist[0])
	{
		if (first)
			StringCbPrintfExA(p_url, url_cch, &p_url, &url_cch, 0, "?albumartist=%s", AutoUrl(track->albumartist));
		else
			StringCbPrintfExA(p_url, url_cch, &p_url, &url_cch, 0, "&albumartist=%s", AutoUrl(track->albumartist));
		first=false;
	}

	if (track->genre && track->genre[0])
	{
		if (first)
			StringCbPrintfExA(p_url, url_cch, &p_url, &url_cch, 0, "?genre=%s", AutoUrl(track->genre));
		else
			StringCbPrintfExA(p_url, url_cch, &p_url, &url_cch, 0, "&genre=%s", AutoUrl(track->genre));
		first=false;
	}

	if (track->track > 0)
	{
		if (first)
			StringCbPrintfExA(p_url, url_cch, &p_url, &url_cch, 0, "?track=%d", track->track);
		else
			StringCbPrintfExA(p_url, url_cch, &p_url, &url_cch, 0, "&track=%d", track->track);
		first=false;
	}

	const wchar_t *ext = PathFindExtension(filename);
	if (ext && ext[0])
	{
		if (ext[0] == '.') ext++;
		if (ext[0])
		{
					if (first)
			StringCbPrintfExA(p_url, url_cch, &p_url, &url_cch, 0, "?extension=%s", AutoUrl(ext));
		else
			StringCbPrintfExA(p_url, url_cch, &p_url, &url_cch, 0, "&extension=%s", AutoUrl(ext));
		first=false;
		}
	}


	wchar_t mime_type[128] = {0};
	if (AGAVE_API_METADATA->GetExtendedFileInfo(filename, L"mime", mime_type, 128) == 1 && mime_type[0])
	{
		http->AddHeaderValue("Content-Type", AutoHeader(mime_type));
	}

	http->AddHeaderValue("X-Winamp-ID", winamp_id_str);
	http->AddHeaderValue("X-Winamp-Name", winamp_name);

	 http->AddHeaderValue("Expect", "100-continue");
	/* connect */
	callback(context, WASABI_API_LNGSTRINGW(IDS_CONNECTING));
	http->connect(url, 0, "POST");

	// spin and wait for a 100 response
	for (;;)
	{
		Sleep(55);
		if (*killswitch)
			goto connection_failed;
		int ret = http->run();
		if (ret != HTTPRECEIVER_RUN_OK) // connection failed or closed
			goto connection_failed;

		int reply_code = http->getreplycode();
		if (reply_code == 100)
			break;
		else if (reply_code)
			goto connection_failed;
	}

	
	/* POST the data */
	api_connection *connection = http->GetConnection();
	if (connection)
	{
		if (http->run() == -1)
			goto connection_failed;

		while (clen)
		{
			int percent = MulDiv(100, (int)transferred, (int)total_clen);
			wchar_t msg[128] = {0};
			StringCbPrintfW(msg, sizeof(msg), WASABI_API_LNGSTRINGW(IDS_UPLOADING), percent);
			callback(context, msg);
			if (*killswitch)
				goto connection_failed;
			if (http->run() == -1)
				goto connection_failed;

			int connection_state = connection->get_state();
			if (connection_state == CONNECTION_STATE_CLOSED || connection_state == CONNECTION_STATE_ERROR)
				goto connection_failed;

			size_t lengthToSend = min(clen, connection->GetSendBytesAvailable());
			lengthToSend = min(lengthToSend, sizeof(data));

			if (lengthToSend)
			{
				int bytes_read = (int)fread(data, 1, lengthToSend, f);
				connection->send(data, bytes_read);
				clen-=bytes_read;
				transferred+=bytes_read;
			}
			else
			{
				Sleep(10);
			}
		}
		int x;
		while (x = (int)connection->GetSendBytesInQueue())
		{
			int connection_state = connection->get_state();
			if (connection_state == CONNECTION_STATE_CLOSED || connection_state == CONNECTION_STATE_ERROR)
			goto connection_failed;
			Sleep(10);
			if (*killswitch)
				goto connection_failed;
			if (http->run() == -1)
				goto connection_failed;

		}
	}
	fclose(f);
	f=0;

	/* retrieve reply */
	int ret;
	do
	{
		Sleep(55);
		ret = http->run();
		if (ret == -1) // connection failed
			break;

		// ---- check our reply code ----
		int status = http->get_status();
		switch (status)
		{
		case HTTPRECEIVER_STATUS_CONNECTING:
		case HTTPRECEIVER_STATUS_READING_HEADERS:
			break;

		case HTTPRECEIVER_STATUS_READING_CONTENT:
			{
				const char *location = http->getheader("Location");
				if (location)
					StringCchCopyA(new_item_id, new_item_id_len, location);
				else
					new_item_id[0]=0;

				sf->releaseInterface(http);
				return 0;
			}
			break;
		case HTTPRECEIVER_STATUS_ERROR:
		default:
			sf->releaseInterface(http);
			return 1;
		}
	}
	while (ret == HTTPRECEIVER_RUN_OK);


connection_failed:
	if (f)
		fclose(f);
	sf->releaseInterface(http);
	return 1;
}



int PostAlbumArt(const char *url, const itemRecordW *track, obj_xml *parser, int *killswitch, void (*callback)(void *callbackContext, wchar_t *status), void *context)
{

	void *artData=0;
	size_t datalen=0;
	wchar_t *mimeType=0;
	if (AGAVE_API_ALBUMART->GetAlbumArtData(track->filename, L"cover", &artData, &datalen, &mimeType) != ALBUMART_SUCCESS)
		return 1;

	api_httpreceiver *http = 0;
	waServiceFactory *sf = plugin.service->service_getServiceByGuid(httpreceiverGUID);
	if (sf)
		http = (api_httpreceiver *)sf->getInterface();

	if (!http)
		return 1;

	int use_proxy = 1;
	bool proxy80 = AGAVE_API_CONFIG->GetBool(internetConfigGroupGUID, L"proxy80", false);
	if (proxy80 && strstr(url, ":") && (!strstr(url, ":80/") && strstr(url, ":80") != (url + strlen(url) - 3)))
		use_proxy = 0;

	const wchar_t *proxy = use_proxy?AGAVE_API_CONFIG->GetString(internetConfigGroupGUID, L"proxy", 0):0;

	uint8_t *artDataPtr=(uint8_t *)artData;
	size_t clen = datalen;
	size_t transferred=0;
	size_t total_clen = datalen;

	http->open(API_DNS_AUTODNS, HTTP_BUFFER_SIZE, (proxy && proxy[0]) ? (const char *)AutoChar(proxy) : NULL);
	http->set_sendbufsize(POST_BUFFER_SIZE);
 	SetUserAgent(http);

	char data[POST_BUFFER_SIZE] = {0};
		
	StringCbPrintfA(data, sizeof(data), "Content-Length: %u", datalen);
	http->addheader(data);
	if (mimeType)
	{
		StringCbPrintfA(data, sizeof(data), "Content-Type: %s", AutoHeader(mimeType));
		http->addheader(data);
	}

	http->AddHeaderValue("X-Winamp-ID", winamp_id_str);
	http->AddHeaderValue("X-Winamp-Name", winamp_name);

	/* connect */
	http->AddHeaderValue("Expect", "100-continue");
	callback(context, WASABI_API_LNGSTRINGW(IDS_CONNECTING));
	http->connect(url, 0, "POST");
	
	// spin and wait for a 100 response
	for (;;)
	{
		Sleep(55);
		int ret = http->run();
		if (ret != HTTPRECEIVER_RUN_OK) // connection failed or closed
			goto connection_failed;

		if (*killswitch)
			goto connection_failed;
		int reply_code = http->getreplycode();
		if (reply_code == 100)
			break;
		else if (reply_code)
			goto connection_failed;
	}

	/* POST the data */
	api_connection *connection = http->GetConnection();
	if (connection)
	{
		if (http->run() == -1)
			goto connection_failed;

		while (clen)
		{
			int percent = MulDiv(100, (int)transferred, (int)total_clen);
			wchar_t msg[128] = {0};
			StringCbPrintfW(msg, sizeof(msg), L"Uploading Album Art (%d%%)", percent);
			callback(context, msg);
			if (*killswitch)
				goto connection_failed;
			if (http->run() == -1)
				goto connection_failed;

			int connection_state = connection->get_state();
			if (connection_state == CONNECTION_STATE_CLOSED || connection_state == CONNECTION_STATE_ERROR)
				goto connection_failed;

			size_t lengthToSend = min(clen, connection->GetSendBytesAvailable());

			if (lengthToSend)
			{
				connection->send(artDataPtr, (int)lengthToSend);
				artDataPtr += lengthToSend;
				clen-=lengthToSend;
				transferred+=lengthToSend;
			}
			else
			{
				Sleep(10);
			}
		}
		int x;
		while (x = (int)connection->GetSendBytesInQueue())
		{
			int connection_state = connection->get_state();
			if (connection_state == CONNECTION_STATE_CLOSED || connection_state == CONNECTION_STATE_ERROR)
			goto connection_failed;
			Sleep(10);
			if (*killswitch)
				goto connection_failed;
			if (http->run() == -1)
				goto connection_failed;

		}
	}

	/* retrieve reply */
	int ret;
	do
	{
		Sleep(55);
		ret = http->run();
		if (ret == -1) // connection failed
			break;

		// ---- check our reply code ----
		int status = http->get_status();
		switch (status)
		{
		case HTTPRECEIVER_STATUS_CONNECTING:
		case HTTPRECEIVER_STATUS_READING_HEADERS:
			break;

		case HTTPRECEIVER_STATUS_READING_CONTENT:
			{
				sf->releaseInterface(http);
							WASABI_API_MEMMGR->sysFree(artData);
			WASABI_API_MEMMGR->sysFree(mimeType);
				return 0;
			}
			break;
		case HTTPRECEIVER_STATUS_ERROR:
		default:
			sf->releaseInterface(http);
						WASABI_API_MEMMGR->sysFree(artData);
			WASABI_API_MEMMGR->sysFree(mimeType);
			return 1;
		}
	}
	while (ret == HTTPRECEIVER_RUN_OK);


connection_failed:
	WASABI_API_MEMMGR->sysFree(artData);
	WASABI_API_MEMMGR->sysFree(mimeType);
	sf->releaseInterface(http);
	return 1;
}


int HTTP_Delete(const char *url)
{
	api_httpreceiver *http = 0;
	waServiceFactory *sf = plugin.service->service_getServiceByGuid(httpreceiverGUID);
	if (sf)
		http = (api_httpreceiver *)sf->getInterface();

	if (!http)
		return 1;

	int use_proxy = 1;
	bool proxy80 = AGAVE_API_CONFIG->GetBool(internetConfigGroupGUID, L"proxy80", false);
	if (proxy80 && strstr(url, ":") && (!strstr(url, ":80/") && strstr(url, ":80") != (url + strlen(url) - 3)))
		use_proxy = 0;

	const wchar_t *proxy = use_proxy?AGAVE_API_CONFIG->GetString(internetConfigGroupGUID, L"proxy", 0):0;

	http->open(API_DNS_AUTODNS, HTTP_BUFFER_SIZE, (proxy && proxy[0]) ? (const char *)AutoChar(proxy) : NULL);
 	SetUserAgent(http);

	http->AddHeaderValue("X-Winamp-ID", winamp_id_str);
	http->AddHeaderValue("X-Winamp-Name", winamp_name);

	/* connect */
	http->connect(url, 0, "DELETE");
	
	/* retrieve reply */
	int ret;
	do
	{
		Sleep(55);
		ret = http->run();
		if (ret == -1) // connection failed
			break;

		// ---- check our reply code ----
		int status = http->get_status();
		switch (status)
		{
		case HTTPRECEIVER_STATUS_CONNECTING:
		case HTTPRECEIVER_STATUS_READING_HEADERS:
			break;

		case HTTPRECEIVER_STATUS_READING_CONTENT:
			{
				sf->releaseInterface(http);
				return 0;
			}
			break;
		case HTTPRECEIVER_STATUS_ERROR:
		default:
			sf->releaseInterface(http);
			return 1;
		}
	}
	while (ret == HTTPRECEIVER_RUN_OK);

	sf->releaseInterface(http);
	return 1;
}