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
|
/*
Weather Protocol plugin for Miranda IM
Copyright (C) 2002-2004 Calvin Che
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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
/* This file contain the source related to downloading weather info
from the web using netlib
*/
#include "stdafx.h"
char *szInfo;
char *szData;
HNETLIBUSER hNetlibUser;
// function to download webpage from the internet
// szUrl = URL of the webpage to be retrieved
// return value = 0 for success, 1 or HTTP error code for failure
// global var used: szData, szInfo = containing the retrieved data
int InternetDownloadFile(char *szUrl)
{
// initialize the netlib request
MHttpRequest nlhr(REQUEST_GET);
nlhr.flags = NLHRF_DUMPASTEXT;
nlhr.m_szUrl = szUrl;
// change the header so the plugin is pretended to be IE 6 + WinXP
nlhr.AddHeader("User-Agent", NETLIB_USER_AGENT);
// download the page
NLHR_PTR nlhrReply(Netlib_HttpTransaction(hNetlibUser, &nlhr));
if (nlhrReply == nullptr)
return 1; // if the data does not downloaded successfully (ie. disconnected), then return 1 as error code
// return error code if the recieved code is neither 200 OK or 302 Moved
if (nlhrReply->resultCode != 200 && nlhrReply->resultCode != 302)
return nlhrReply->resultCode;
// if the recieved code is 200 OK
else if (nlhrReply->resultCode == 200) {
// allocate memory and save the retrieved data
szData = (char *)malloc(nlhrReply->body.GetLength() + 2);
mir_strncpy(szData, nlhrReply->body, nlhrReply->body.GetLength());
}
// if the recieved code is 302 Moved, Found, etc
else if (nlhrReply->resultCode == 302) { // page moved
// get the url for the new location and save it to szInfo
// look for the reply header "Location"
if (auto *pszHdr = nlhrReply->FindHeader("Location")) {
szData = (char *)malloc(512);
// add "Moved/Location:" in front of the new URL for identification
mir_snprintf(szData, 512, "Moved/Location: %s\n", pszHdr);
}
// log the new url into netlib log
Netlib_Log(hNetlibUser, szData);
}
// make a copy of the retrieved data, then free the memory of the http reply
szInfo = szData;
// the recieved data is empty, data was not recieved, so return an error code of 1
if (!mir_strcmp(szInfo, "")) return 1;
return 0;
}
//============ NETLIB INITIALIZATION ============
void NetlibInit()
{
NETLIBUSER nlu = {};
nlu.flags = NUF_OUTGOING | NUF_HTTPCONNS | NUF_NOHTTPSOPTION | NUF_UNICODE;
nlu.szSettingsModule = MODNAME;
nlu.szDescriptiveName.w = TranslateT("Non-IM Contacts");
hNetlibUser = Netlib_RegisterUser(&nlu);
}
|