summaryrefslogtreecommitdiff
path: root/protocols/Steam/src/http_request.h
blob: 8016f2cf1d22f40cc983382bd039ca2f3908727b (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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
#ifndef _HTTP_REQUEST_H_
#define _HTTP_REQUEST_H_

class HttpResponse : public NETLIBHTTPREQUEST, public MZeroedObject
{
private:
	bool isEmptyResponse;

public:
	const NETLIBHTTPREQUEST* request;

	HttpResponse(const NETLIBHTTPREQUEST* response, const NETLIBHTTPREQUEST* request = NULL)
	{
		this->request = request;
		isEmptyResponse = (response == NULL);
		if (response)
		{
			cbSize = response->cbSize;
			requestType = response->requestType;
			flags = response->flags;
			szUrl = mir_strdup(response->szUrl);
			headers = (NETLIBHTTPHEADER*)mir_alloc(sizeof(NETLIBHTTPHEADER) * response->headersCount);
			headersCount = response->headersCount;
			for (int i = 0; i < headersCount; i++)
			{
				headers[i].szName = mir_strdup(response->headers[i].szName);
				headers[i].szValue = mir_strdup(response->headers[i].szValue);
			}
			pData = (char*)mir_alloc(response->dataLength);
			dataLength = response->dataLength;
			memcpy(pData, response->pData, dataLength);
			resultCode = response->resultCode;
			szResultDescr = mir_strdup(response->szResultDescr);
			nlc = response->nlc;
			timeout = response->timeout;
		}
		else if (request != NULL)
		{
			// when response is null, we must get resultCode from the request object
			resultCode = request->resultCode;
		}
	}

	bool const operator !() const
	{
		return isEmptyResponse;
	}

	~HttpResponse()
	{
		for (int i = 0; i < headersCount; i++)
		{
			mir_free(headers[i].szName);
			mir_free(headers[i].szValue);
		}
		mir_free(szUrl);
		mir_free(headers);
		mir_free(pData);
		mir_free(szResultDescr);
	}
};

class HttpRequest : public NETLIBHTTPREQUEST, public MZeroedObject
{
private:
	CMStringA m_url;

protected:
	enum HttpRequestUrlFormat { FORMAT };

	void Init(int type)
	{
		cbSize = sizeof(NETLIBHTTPREQUEST);
		requestType = type;
		flags = NLHRF_HTTP11 | NLHRF_SSL | NLHRF_NODUMPSEND | NLHRF_DUMPASTEXT;
		AddHeader("user-agent", "Steam 1.2.0 / iPhone");
	}

	void AddHeader(LPCSTR szName, LPCSTR szValue)
	{
		headers = (NETLIBHTTPHEADER*)mir_realloc(headers, sizeof(NETLIBHTTPHEADER)*(headersCount + 1));
		headers[headersCount].szName = mir_strdup(szName);
		headers[headersCount].szValue = mir_strdup(szValue);
		headersCount++;
	}

	void AddParameter(const char *fmt, ...)
	{
		va_list args;
		va_start(args, fmt);
		m_url += m_url.Find('?') == -1 ? '?' : '&';
		m_url.AppendFormatV(fmt, args);
		va_end(args);
	}

	void AddParameter(LPCSTR name, LPCSTR value)
	{
		AddParameter("%s=%s", name, value);
	}

	void SetData(const char *data, size_t size)
	{
		if (pData != NULL)
			mir_free(pData);

		dataLength = (int)size;
		pData = (char*)mir_alloc(size + 1);
		memcpy(pData, data, size);
		pData[size] = 0;
	}

public:
	HttpRequest(int type, LPCSTR url)
	{
		Init(type);

		m_url = url;
	}

	HttpRequest(int type, HttpRequestUrlFormat, LPCSTR urlFormat, ...)
	{
		Init(type);

		va_list formatArgs;
		va_start(formatArgs, urlFormat);
		m_url.AppendFormatV(urlFormat, formatArgs);
		va_end(formatArgs);
	}

	~HttpRequest()
	{
		for (int i = 0; i < headersCount; i++)
		{
			mir_free(headers[i].szName);
			mir_free(headers[i].szValue);
		}
		mir_free(headers);
		
		if (pData != NULL)
			mir_free(pData);
	}

	HttpResponse* Send(HNETLIBUSER nlu)
	{
		szUrl = m_url.GetBuffer();

		Netlib_Logf(nlu, "Send request to %s", szUrl);

		NETLIBHTTPREQUEST* response = Netlib_HttpTransaction(nlu, this);
		HttpResponse* result = new HttpResponse(response, this);
		Netlib_FreeHttpRequest(response);

		return result;
	}
};


bool __forceinline ResponseHttpOk(const HttpResponse *response) {
	return (response && response->pData && (response->resultCode == HTTP_CODE_OK));
}

bool __forceinline CheckResponse(const HttpResponse *response) {
	return (response && response->pData);
}

#endif //_HTTP_REQUEST_H_