2 * IXMLHTTPRequest implementation
4 * Copyright 2008 Alistair Leslie-Hughes
5 * Copyright 2010-2012 Nikolay Sivov for CodeWeavers
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
23 #define NONAMELESSUNION
29 # include <libxml/parser.h>
30 # include <libxml/xmlerror.h>
31 # include <libxml/encoding.h>
47 #include "msxml_private.h"
49 #include "wine/debug.h"
50 #include "wine/list.h"
52 WINE_DEFAULT_DEBUG_CHANNEL(msxml);
56 static const WCHAR colspaceW[] = {':',' ',0};
57 static const WCHAR crlfW[] = {'\r','\n',0};
58 static const DWORD safety_supported_options =
59 INTERFACESAFE_FOR_UNTRUSTED_CALLER |
60 INTERFACESAFE_FOR_UNTRUSTED_DATA |
61 INTERFACE_USES_SECURITY_MANAGER;
63 typedef struct BindStatusCallback BindStatusCallback;
74 IXMLHTTPRequest IXMLHTTPRequest_iface;
75 IObjectWithSite IObjectWithSite_iface;
76 IObjectSafety IObjectSafety_iface;
88 struct list reqheaders;
89 /* cached resulting custom request headers string length in WCHARs */
91 /* use UTF-8 content type */
92 BOOL use_utf8_content;
94 /* response headers */
95 struct list respheaders;
103 BindStatusCallback *bsc;
117 IServerXMLHTTPRequest IServerXMLHTTPRequest_iface;
121 static inline httprequest *impl_from_IXMLHTTPRequest( IXMLHTTPRequest *iface )
123 return CONTAINING_RECORD(iface, httprequest, IXMLHTTPRequest_iface);
126 static inline httprequest *impl_from_IObjectWithSite(IObjectWithSite *iface)
128 return CONTAINING_RECORD(iface, httprequest, IObjectWithSite_iface);
131 static inline httprequest *impl_from_IObjectSafety(IObjectSafety *iface)
133 return CONTAINING_RECORD(iface, httprequest, IObjectSafety_iface);
136 static inline serverhttp *impl_from_IServerXMLHTTPRequest(IServerXMLHTTPRequest *iface)
138 return CONTAINING_RECORD(iface, serverhttp, IServerXMLHTTPRequest_iface);
141 static void httprequest_setreadystate(httprequest *This, READYSTATE state)
143 READYSTATE last = This->state;
144 static const char* readystates[] = {
145 "READYSTATE_UNINITIALIZED",
146 "READYSTATE_LOADING",
148 "READYSTATE_INTERACTIVE",
149 "READYSTATE_COMPLETE"};
153 TRACE("state %s\n", readystates[state]);
155 if (This->sink && last != state)
159 memset(¶ms, 0, sizeof(params));
160 IDispatch_Invoke(This->sink, 0, &IID_NULL, LOCALE_SYSTEM_DEFAULT, DISPATCH_METHOD, ¶ms, 0, 0, 0);
164 static void free_response_headers(httprequest *This)
166 struct httpheader *header, *header2;
168 LIST_FOR_EACH_ENTRY_SAFE(header, header2, &This->respheaders, struct httpheader, entry)
170 list_remove(&header->entry);
171 SysFreeString(header->header);
172 SysFreeString(header->value);
176 SysFreeString(This->raw_respheaders);
177 This->raw_respheaders = NULL;
180 struct BindStatusCallback
182 IBindStatusCallback IBindStatusCallback_iface;
183 IHttpNegotiate IHttpNegotiate_iface;
184 IAuthenticate IAuthenticate_iface;
188 httprequest *request;
193 /* request body data */
197 static inline BindStatusCallback *impl_from_IBindStatusCallback( IBindStatusCallback *iface )
199 return CONTAINING_RECORD(iface, BindStatusCallback, IBindStatusCallback_iface);
202 static inline BindStatusCallback *impl_from_IHttpNegotiate( IHttpNegotiate *iface )
204 return CONTAINING_RECORD(iface, BindStatusCallback, IHttpNegotiate_iface);
207 static inline BindStatusCallback *impl_from_IAuthenticate( IAuthenticate *iface )
209 return CONTAINING_RECORD(iface, BindStatusCallback, IAuthenticate_iface);
212 static void BindStatusCallback_Detach(BindStatusCallback *bsc)
216 if (bsc->binding) IBinding_Abort(bsc->binding);
217 bsc->request->bsc = NULL;
219 IBindStatusCallback_Release(&bsc->IBindStatusCallback_iface);
223 static HRESULT WINAPI BindStatusCallback_QueryInterface(IBindStatusCallback *iface,
224 REFIID riid, void **ppv)
226 BindStatusCallback *This = impl_from_IBindStatusCallback(iface);
230 TRACE("(%p)->(%s, %p)\n", This, debugstr_guid(riid), ppv);
232 if (IsEqualGUID(&IID_IUnknown, riid) ||
233 IsEqualGUID(&IID_IBindStatusCallback, riid))
235 *ppv = &This->IBindStatusCallback_iface;
237 else if (IsEqualGUID(&IID_IHttpNegotiate, riid))
239 *ppv = &This->IHttpNegotiate_iface;
241 else if (IsEqualGUID(&IID_IAuthenticate, riid))
243 *ppv = &This->IAuthenticate_iface;
245 else if (IsEqualGUID(&IID_IServiceProvider, riid) ||
246 IsEqualGUID(&IID_IBindStatusCallbackEx, riid) ||
247 IsEqualGUID(&IID_IInternetProtocol, riid) ||
248 IsEqualGUID(&IID_IHttpNegotiate2, riid))
250 return E_NOINTERFACE;
255 IBindStatusCallback_AddRef(iface);
259 FIXME("Unsupported riid = %s\n", debugstr_guid(riid));
261 return E_NOINTERFACE;
264 static ULONG WINAPI BindStatusCallback_AddRef(IBindStatusCallback *iface)
266 BindStatusCallback *This = impl_from_IBindStatusCallback(iface);
267 LONG ref = InterlockedIncrement(&This->ref);
269 TRACE("(%p) ref = %d\n", This, ref);
274 static ULONG WINAPI BindStatusCallback_Release(IBindStatusCallback *iface)
276 BindStatusCallback *This = impl_from_IBindStatusCallback(iface);
277 LONG ref = InterlockedDecrement(&This->ref);
279 TRACE("(%p) ref = %d\n", This, ref);
283 if (This->binding) IBinding_Release(This->binding);
284 if (This->stream) IStream_Release(This->stream);
285 if (This->body) GlobalFree(This->body);
292 static HRESULT WINAPI BindStatusCallback_OnStartBinding(IBindStatusCallback *iface,
293 DWORD reserved, IBinding *pbind)
295 BindStatusCallback *This = impl_from_IBindStatusCallback(iface);
297 TRACE("(%p)->(%d %p)\n", This, reserved, pbind);
299 if (!pbind) return E_INVALIDARG;
301 This->binding = pbind;
302 IBinding_AddRef(pbind);
304 httprequest_setreadystate(This->request, READYSTATE_LOADED);
306 return CreateStreamOnHGlobal(NULL, TRUE, &This->stream);
309 static HRESULT WINAPI BindStatusCallback_GetPriority(IBindStatusCallback *iface, LONG *pPriority)
311 BindStatusCallback *This = impl_from_IBindStatusCallback(iface);
313 TRACE("(%p)->(%p)\n", This, pPriority);
318 static HRESULT WINAPI BindStatusCallback_OnLowResource(IBindStatusCallback *iface, DWORD reserved)
320 BindStatusCallback *This = impl_from_IBindStatusCallback(iface);
322 TRACE("(%p)->(%d)\n", This, reserved);
327 static HRESULT WINAPI BindStatusCallback_OnProgress(IBindStatusCallback *iface, ULONG ulProgress,
328 ULONG ulProgressMax, ULONG ulStatusCode, LPCWSTR szStatusText)
330 BindStatusCallback *This = impl_from_IBindStatusCallback(iface);
332 TRACE("(%p)->(%u %u %u %s)\n", This, ulProgress, ulProgressMax, ulStatusCode,
333 debugstr_w(szStatusText));
338 static HRESULT WINAPI BindStatusCallback_OnStopBinding(IBindStatusCallback *iface,
339 HRESULT hr, LPCWSTR error)
341 BindStatusCallback *This = impl_from_IBindStatusCallback(iface);
343 TRACE("(%p)->(0x%08x %s)\n", This, hr, debugstr_w(error));
347 IBinding_Release(This->binding);
348 This->binding = NULL;
353 BindStatusCallback_Detach(This->request->bsc);
354 This->request->bsc = This;
355 httprequest_setreadystate(This->request, READYSTATE_COMPLETE);
361 static HRESULT WINAPI BindStatusCallback_GetBindInfo(IBindStatusCallback *iface,
362 DWORD *bind_flags, BINDINFO *pbindinfo)
364 BindStatusCallback *This = impl_from_IBindStatusCallback(iface);
366 TRACE("(%p)->(%p %p)\n", This, bind_flags, pbindinfo);
369 if (This->request->async) *bind_flags |= BINDF_ASYNCHRONOUS;
371 if (This->request->verb != BINDVERB_GET && This->body)
373 pbindinfo->stgmedData.tymed = TYMED_HGLOBAL;
374 pbindinfo->stgmedData.u.hGlobal = This->body;
375 pbindinfo->cbstgmedData = GlobalSize(This->body);
376 /* callback owns passed body pointer */
377 IBindStatusCallback_QueryInterface(iface, &IID_IUnknown, (void**)&pbindinfo->stgmedData.pUnkForRelease);
380 pbindinfo->dwBindVerb = This->request->verb;
381 if (This->request->verb == BINDVERB_CUSTOM)
383 pbindinfo->szCustomVerb = CoTaskMemAlloc(SysStringByteLen(This->request->custom));
384 strcpyW(pbindinfo->szCustomVerb, This->request->custom);
390 static HRESULT WINAPI BindStatusCallback_OnDataAvailable(IBindStatusCallback *iface,
391 DWORD flags, DWORD size, FORMATETC *format, STGMEDIUM *stgmed)
393 BindStatusCallback *This = impl_from_IBindStatusCallback(iface);
398 TRACE("(%p)->(%08x %d %p %p)\n", This, flags, size, format, stgmed);
402 hr = IStream_Read(stgmed->u.pstm, buf, sizeof(buf), &read);
403 if (hr != S_OK) break;
405 hr = IStream_Write(This->stream, buf, read, &written);
406 } while((hr == S_OK) && written != 0 && read != 0);
408 httprequest_setreadystate(This->request, READYSTATE_INTERACTIVE);
413 static HRESULT WINAPI BindStatusCallback_OnObjectAvailable(IBindStatusCallback *iface,
414 REFIID riid, IUnknown *punk)
416 BindStatusCallback *This = impl_from_IBindStatusCallback(iface);
418 FIXME("(%p)->(%s %p): stub\n", This, debugstr_guid(riid), punk);
423 static const IBindStatusCallbackVtbl BindStatusCallbackVtbl = {
424 BindStatusCallback_QueryInterface,
425 BindStatusCallback_AddRef,
426 BindStatusCallback_Release,
427 BindStatusCallback_OnStartBinding,
428 BindStatusCallback_GetPriority,
429 BindStatusCallback_OnLowResource,
430 BindStatusCallback_OnProgress,
431 BindStatusCallback_OnStopBinding,
432 BindStatusCallback_GetBindInfo,
433 BindStatusCallback_OnDataAvailable,
434 BindStatusCallback_OnObjectAvailable
437 static HRESULT WINAPI BSCHttpNegotiate_QueryInterface(IHttpNegotiate *iface,
438 REFIID riid, void **ppv)
440 BindStatusCallback *This = impl_from_IHttpNegotiate(iface);
441 return IBindStatusCallback_QueryInterface(&This->IBindStatusCallback_iface, riid, ppv);
444 static ULONG WINAPI BSCHttpNegotiate_AddRef(IHttpNegotiate *iface)
446 BindStatusCallback *This = impl_from_IHttpNegotiate(iface);
447 return IBindStatusCallback_AddRef(&This->IBindStatusCallback_iface);
450 static ULONG WINAPI BSCHttpNegotiate_Release(IHttpNegotiate *iface)
452 BindStatusCallback *This = impl_from_IHttpNegotiate(iface);
453 return IBindStatusCallback_Release(&This->IBindStatusCallback_iface);
456 static HRESULT WINAPI BSCHttpNegotiate_BeginningTransaction(IHttpNegotiate *iface,
457 LPCWSTR url, LPCWSTR headers, DWORD reserved, LPWSTR *add_headers)
459 static const WCHAR content_type_utf8W[] = {'C','o','n','t','e','n','t','-','T','y','p','e',':',' ',
460 't','e','x','t','/','p','l','a','i','n',';','c','h','a','r','s','e','t','=','u','t','f','-','8','\r','\n',0};
462 BindStatusCallback *This = impl_from_IHttpNegotiate(iface);
463 const struct httpheader *entry;
467 TRACE("(%p)->(%s %s %d %p)\n", This, debugstr_w(url), debugstr_w(headers), reserved, add_headers);
471 if (This->request->use_utf8_content)
472 size = sizeof(content_type_utf8W);
474 if (!list_empty(&This->request->reqheaders))
475 size += This->request->reqheader_size*sizeof(WCHAR);
477 if (!size) return S_OK;
479 buff = CoTaskMemAlloc(size);
480 if (!buff) return E_OUTOFMEMORY;
483 if (This->request->use_utf8_content)
485 lstrcpyW(ptr, content_type_utf8W);
486 ptr += sizeof(content_type_utf8W)/sizeof(WCHAR)-1;
490 LIST_FOR_EACH_ENTRY(entry, &This->request->reqheaders, struct httpheader, entry)
492 lstrcpyW(ptr, entry->header);
493 ptr += SysStringLen(entry->header);
495 lstrcpyW(ptr, colspaceW);
496 ptr += sizeof(colspaceW)/sizeof(WCHAR)-1;
498 lstrcpyW(ptr, entry->value);
499 ptr += SysStringLen(entry->value);
501 lstrcpyW(ptr, crlfW);
502 ptr += sizeof(crlfW)/sizeof(WCHAR)-1;
510 static void add_response_header(httprequest *This, const WCHAR *data, int len)
512 struct httpheader *entry;
513 const WCHAR *ptr = data;
520 header = SysAllocStringLen(data, ptr-data);
521 /* skip leading spaces for a value */
522 while (*++ptr == ' ')
524 value = SysAllocStringLen(ptr, len-(ptr-data));
533 TRACE("got header %s:%s\n", debugstr_w(header), debugstr_w(value));
535 entry = heap_alloc(sizeof(*entry));
536 entry->header = header;
537 entry->value = value;
538 list_add_head(&This->respheaders, &entry->entry);
541 static HRESULT WINAPI BSCHttpNegotiate_OnResponse(IHttpNegotiate *iface, DWORD code,
542 LPCWSTR resp_headers, LPCWSTR req_headers, LPWSTR *add_reqheaders)
544 BindStatusCallback *This = impl_from_IHttpNegotiate(iface);
546 TRACE("(%p)->(%d %s %s %p)\n", This, code, debugstr_w(resp_headers),
547 debugstr_w(req_headers), add_reqheaders);
549 This->request->status = code;
550 /* store headers and status text */
551 free_response_headers(This->request);
552 SysFreeString(This->request->status_text);
553 This->request->status_text = NULL;
556 const WCHAR *ptr, *line, *status_text;
558 ptr = line = resp_headers;
560 /* skip HTTP-Version */
561 ptr = strchrW(ptr, ' ');
564 /* skip Status-Code */
565 ptr = strchrW(++ptr, ' ');
569 /* now it supposed to end with CRLF */
572 if (*ptr == '\r' && *(ptr+1) == '\n')
575 This->request->status_text = SysAllocStringLen(status_text, ptr-status_text);
576 TRACE("status text %s\n", debugstr_w(This->request->status_text));
584 /* store as unparsed string for now */
585 This->request->raw_respheaders = SysAllocString(line);
591 static const IHttpNegotiateVtbl BSCHttpNegotiateVtbl = {
592 BSCHttpNegotiate_QueryInterface,
593 BSCHttpNegotiate_AddRef,
594 BSCHttpNegotiate_Release,
595 BSCHttpNegotiate_BeginningTransaction,
596 BSCHttpNegotiate_OnResponse
599 static HRESULT WINAPI Authenticate_QueryInterface(IAuthenticate *iface,
600 REFIID riid, void **ppv)
602 BindStatusCallback *This = impl_from_IAuthenticate(iface);
603 return IBindStatusCallback_QueryInterface(&This->IBindStatusCallback_iface, riid, ppv);
606 static ULONG WINAPI Authenticate_AddRef(IAuthenticate *iface)
608 BindStatusCallback *This = impl_from_IAuthenticate(iface);
609 return IBindStatusCallback_AddRef(&This->IBindStatusCallback_iface);
612 static ULONG WINAPI Authenticate_Release(IAuthenticate *iface)
614 BindStatusCallback *This = impl_from_IAuthenticate(iface);
615 return IBindStatusCallback_Release(&This->IBindStatusCallback_iface);
618 static HRESULT WINAPI Authenticate_Authenticate(IAuthenticate *iface,
619 HWND *hwnd, LPWSTR *username, LPWSTR *password)
621 BindStatusCallback *This = impl_from_IAuthenticate(iface);
622 httprequest *request = This->request;
624 TRACE("(%p)->(%p %p %p)\n", This, hwnd, username, password);
626 if (request->user && *request->user)
628 if (hwnd) *hwnd = NULL;
629 *username = CoTaskMemAlloc(SysStringByteLen(request->user)+sizeof(WCHAR));
630 *password = CoTaskMemAlloc(SysStringByteLen(request->password)+sizeof(WCHAR));
631 if (!*username || !*password)
633 CoTaskMemFree(*username);
634 CoTaskMemFree(*password);
635 return E_OUTOFMEMORY;
638 memcpy(*username, request->user, SysStringByteLen(request->user)+sizeof(WCHAR));
639 memcpy(*password, request->password, SysStringByteLen(request->password)+sizeof(WCHAR));
645 static const IAuthenticateVtbl AuthenticateVtbl = {
646 Authenticate_QueryInterface,
648 Authenticate_Release,
649 Authenticate_Authenticate
652 static HRESULT BindStatusCallback_create(httprequest* This, BindStatusCallback **obj, const VARIANT *body)
654 BindStatusCallback *bsc;
659 hr = CreateBindCtx(0, &pbc);
660 if (hr != S_OK) return hr;
662 bsc = heap_alloc(sizeof(*bsc));
665 IBindCtx_Release(pbc);
666 return E_OUTOFMEMORY;
669 bsc->IBindStatusCallback_iface.lpVtbl = &BindStatusCallbackVtbl;
670 bsc->IHttpNegotiate_iface.lpVtbl = &BSCHttpNegotiateVtbl;
671 bsc->IAuthenticate_iface.lpVtbl = &AuthenticateVtbl;
678 TRACE("(%p)->(%p)\n", This, bsc);
680 This->use_utf8_content = FALSE;
682 if (This->verb != BINDVERB_GET)
684 void *send_data, *ptr;
685 SAFEARRAY *sa = NULL;
687 if (V_VT(body) == (VT_VARIANT|VT_BYREF))
688 body = V_VARIANTREF(body);
694 int len = SysStringLen(V_BSTR(body));
695 const WCHAR *str = V_BSTR(body);
698 for (i = 0; i < len; i++)
707 size = WideCharToMultiByte(cp, 0, str, len, NULL, 0, NULL, NULL);
708 if (!(ptr = heap_alloc(size)))
711 return E_OUTOFMEMORY;
713 WideCharToMultiByte(cp, 0, str, len, ptr, size, NULL, NULL);
714 if (cp == CP_UTF8) This->use_utf8_content = TRUE;
717 case VT_ARRAY|VT_UI1:
720 if ((hr = SafeArrayAccessData(sa, (void **)&ptr)) != S_OK)
725 if ((hr = SafeArrayGetUBound(sa, 1, &size)) != S_OK)
727 SafeArrayUnaccessData(sa);
735 FIXME("unsupported body data type %d\n", V_VT(body));
744 bsc->body = GlobalAlloc(GMEM_FIXED, size);
747 if (V_VT(body) == VT_BSTR)
749 else if (V_VT(body) == (VT_ARRAY|VT_UI1))
750 SafeArrayUnaccessData(sa);
753 return E_OUTOFMEMORY;
756 send_data = GlobalLock(bsc->body);
757 memcpy(send_data, ptr, size);
758 GlobalUnlock(bsc->body);
760 if (V_VT(body) == VT_BSTR)
762 else if (V_VT(body) == (VT_ARRAY|VT_UI1))
763 SafeArrayUnaccessData(sa);
766 hr = RegisterBindStatusCallback(pbc, &bsc->IBindStatusCallback_iface, NULL, 0);
771 hr = CreateURLMonikerEx2(NULL, This->uri, &moniker, URL_MK_UNIFORM);
776 hr = IMoniker_BindToStorage(moniker, pbc, NULL, &IID_IStream, (void**)&stream);
777 IMoniker_Release(moniker);
778 if (stream) IStream_Release(stream);
780 IBindCtx_Release(pbc);
785 IBindStatusCallback_Release(&bsc->IBindStatusCallback_iface);
793 static HRESULT verify_uri(httprequest *This, IUri *uri)
795 DWORD scheme, base_scheme;
796 BSTR host, base_host;
799 if(!(This->safeopt & INTERFACESAFE_FOR_UNTRUSTED_DATA))
803 return E_ACCESSDENIED;
805 hr = IUri_GetScheme(uri, &scheme);
809 hr = IUri_GetScheme(This->base_uri, &base_scheme);
813 if(scheme != base_scheme) {
814 WARN("Schemes don't match\n");
815 return E_ACCESSDENIED;
818 if(scheme == INTERNET_SCHEME_UNKNOWN) {
819 FIXME("Unknown scheme\n");
820 return E_ACCESSDENIED;
823 hr = IUri_GetHost(uri, &host);
827 hr = IUri_GetHost(This->base_uri, &base_host);
829 if(strcmpiW(host, base_host)) {
830 WARN("Hosts don't match\n");
833 SysFreeString(base_host);
840 static HRESULT httprequest_open(httprequest *This, BSTR method, BSTR url,
841 VARIANT async, VARIANT user, VARIANT password)
843 static const WCHAR MethodGetW[] = {'G','E','T',0};
844 static const WCHAR MethodPutW[] = {'P','U','T',0};
845 static const WCHAR MethodPostW[] = {'P','O','S','T',0};
846 static const WCHAR MethodDeleteW[] = {'D','E','L','E','T','E',0};
847 static const WCHAR MethodPropFindW[] = {'P','R','O','P','F','I','N','D',0};
848 VARIANT str, is_async;
852 if (!method || !url) return E_INVALIDARG;
854 /* free previously set data */
856 IUri_Release(This->uri);
860 SysFreeString(This->user);
861 SysFreeString(This->password);
862 This->user = This->password = NULL;
864 if (!strcmpiW(method, MethodGetW))
866 This->verb = BINDVERB_GET;
868 else if (!strcmpiW(method, MethodPutW))
870 This->verb = BINDVERB_PUT;
872 else if (!strcmpiW(method, MethodPostW))
874 This->verb = BINDVERB_POST;
876 else if (!strcmpiW(method, MethodDeleteW) ||
877 !strcmpiW(method, MethodPropFindW))
879 This->verb = BINDVERB_CUSTOM;
880 SysReAllocString(&This->custom, method);
884 FIXME("unsupported request type %s\n", debugstr_w(method));
890 hr = CoInternetCombineUrlEx(This->base_uri, url, 0, &uri, 0);
892 hr = CreateUri(url, 0, 0, &uri);
894 WARN("Could not create IUri object: %08x\n", hr);
898 hr = verify_uri(This, uri);
905 hr = VariantChangeType(&str, &user, 0, VT_BSTR);
907 This->user = V_BSTR(&str);
910 hr = VariantChangeType(&str, &password, 0, VT_BSTR);
912 This->password = V_BSTR(&str);
914 /* add authentication info */
915 if (This->user && *This->user)
917 IUriBuilder *builder;
919 hr = CreateIUriBuilder(uri, 0, 0, &builder);
924 IUriBuilder_SetUserName(builder, This->user);
925 IUriBuilder_SetPassword(builder, This->password);
926 hr = IUriBuilder_CreateUri(builder, -1, 0, 0, &full_uri);
933 WARN("failed to create modified uri, 0x%08x\n", hr);
934 IUriBuilder_Release(builder);
937 WARN("IUriBuilder creation failed, 0x%08x\n", hr);
942 VariantInit(&is_async);
943 hr = VariantChangeType(&is_async, &async, 0, VT_BOOL);
944 This->async = hr == S_OK && V_BOOL(&is_async);
946 httprequest_setreadystate(This, READYSTATE_LOADING);
951 static HRESULT httprequest_setRequestHeader(httprequest *This, BSTR header, BSTR value)
953 struct httpheader *entry;
955 if (!header || !*header) return E_INVALIDARG;
956 if (This->state != READYSTATE_LOADING) return E_FAIL;
957 if (!value) return E_INVALIDARG;
959 /* replace existing header value if already added */
960 LIST_FOR_EACH_ENTRY(entry, &This->reqheaders, struct httpheader, entry)
962 if (lstrcmpW(entry->header, header) == 0)
964 LONG length = SysStringLen(entry->value);
967 hr = SysReAllocString(&entry->value, value) ? S_OK : E_OUTOFMEMORY;
970 This->reqheader_size += (SysStringLen(entry->value) - length);
976 entry = heap_alloc(sizeof(*entry));
977 if (!entry) return E_OUTOFMEMORY;
980 entry->header = SysAllocString(header);
981 entry->value = SysAllocString(value);
983 /* header length including null terminator */
984 This->reqheader_size += SysStringLen(entry->header) + sizeof(colspaceW)/sizeof(WCHAR) +
985 SysStringLen(entry->value) + sizeof(crlfW)/sizeof(WCHAR) - 1;
987 list_add_head(&This->reqheaders, &entry->entry);
992 static HRESULT httprequest_getResponseHeader(httprequest *This, BSTR header, BSTR *value)
994 struct httpheader *entry;
996 if (!header) return E_INVALIDARG;
997 if (!value) return E_POINTER;
999 if (This->raw_respheaders && list_empty(&This->respheaders))
1003 ptr = line = This->raw_respheaders;
1006 if (*ptr == '\r' && *(ptr+1) == '\n')
1008 add_response_header(This, line, ptr-line);
1009 ptr++; line = ++ptr;
1016 LIST_FOR_EACH_ENTRY(entry, &This->respheaders, struct httpheader, entry)
1018 if (!strcmpiW(entry->header, header))
1020 *value = SysAllocString(entry->value);
1021 TRACE("header value %s\n", debugstr_w(*value));
1029 static HRESULT httprequest_getAllResponseHeaders(httprequest *This, BSTR *respheaders)
1031 if (!respheaders) return E_POINTER;
1033 *respheaders = SysAllocString(This->raw_respheaders);
1038 static HRESULT httprequest_send(httprequest *This, VARIANT body)
1040 BindStatusCallback *bsc = NULL;
1043 if (This->state != READYSTATE_LOADING) return E_FAIL;
1045 hr = BindStatusCallback_create(This, &bsc, &body);
1047 /* success path to detach it is OnStopBinding call */
1048 BindStatusCallback_Detach(bsc);
1053 static HRESULT httprequest_abort(httprequest *This)
1055 BindStatusCallback_Detach(This->bsc);
1057 httprequest_setreadystate(This, READYSTATE_UNINITIALIZED);
1062 static HRESULT httprequest_get_status(httprequest *This, LONG *status)
1064 if (!status) return E_POINTER;
1066 *status = This->status;
1068 return This->state == READYSTATE_COMPLETE ? S_OK : E_FAIL;
1071 static HRESULT httprequest_get_statusText(httprequest *This, BSTR *status)
1073 if (!status) return E_POINTER;
1074 if (This->state != READYSTATE_COMPLETE) return E_FAIL;
1076 *status = SysAllocString(This->status_text);
1081 static HRESULT httprequest_get_responseText(httprequest *This, BSTR *body)
1086 if (!body) return E_POINTER;
1087 if (This->state != READYSTATE_COMPLETE) return E_FAIL;
1089 hr = GetHGlobalFromStream(This->bsc->stream, &hglobal);
1092 xmlChar *ptr = GlobalLock(hglobal);
1093 DWORD size = GlobalSize(hglobal);
1094 xmlCharEncoding encoding = XML_CHAR_ENCODING_UTF8;
1096 /* try to determine data encoding */
1099 encoding = xmlDetectCharEncoding(ptr, 4);
1100 TRACE("detected encoding: %s\n", debugstr_a(xmlGetCharEncodingName(encoding)));
1101 if ( encoding != XML_CHAR_ENCODING_UTF8 &&
1102 encoding != XML_CHAR_ENCODING_UTF16LE &&
1103 encoding != XML_CHAR_ENCODING_NONE )
1105 FIXME("unsupported encoding: %s\n", debugstr_a(xmlGetCharEncodingName(encoding)));
1106 GlobalUnlock(hglobal);
1111 /* without BOM assume UTF-8 */
1112 if (encoding == XML_CHAR_ENCODING_UTF8 ||
1113 encoding == XML_CHAR_ENCODING_NONE )
1115 DWORD length = MultiByteToWideChar(CP_UTF8, 0, (LPCSTR)ptr, size, NULL, 0);
1117 *body = SysAllocStringLen(NULL, length);
1119 MultiByteToWideChar( CP_UTF8, 0, (LPCSTR)ptr, size, *body, length);
1122 *body = SysAllocStringByteLen((LPCSTR)ptr, size);
1124 if (!*body) hr = E_OUTOFMEMORY;
1125 GlobalUnlock(hglobal);
1131 static HRESULT httprequest_get_responseXML(httprequest *This, IDispatch **body)
1133 IXMLDOMDocument3 *doc;
1137 if (!body) return E_INVALIDARG;
1138 if (This->state != READYSTATE_COMPLETE) return E_FAIL;
1140 hr = DOMDocument_create(MSXML_DEFAULT, NULL, (void**)&doc);
1141 if (hr != S_OK) return hr;
1143 hr = httprequest_get_responseText(This, &str);
1148 hr = IXMLDOMDocument3_loadXML(doc, str, &ok);
1152 IXMLDOMDocument3_QueryInterface(doc, &IID_IDispatch, (void**)body);
1153 IXMLDOMDocument3_Release(doc);
1158 static HRESULT httprequest_get_responseBody(httprequest *This, VARIANT *body)
1163 if (!body) return E_INVALIDARG;
1164 V_VT(body) = VT_EMPTY;
1166 if (This->state != READYSTATE_COMPLETE) return E_PENDING;
1168 hr = GetHGlobalFromStream(This->bsc->stream, &hglobal);
1171 void *ptr = GlobalLock(hglobal);
1172 DWORD size = GlobalSize(hglobal);
1174 SAFEARRAYBOUND bound;
1178 bound.cElements = size;
1179 array = SafeArrayCreate(VT_UI1, 1, &bound);
1185 V_VT(body) = VT_ARRAY | VT_UI1;
1186 V_ARRAY(body) = array;
1188 hr = SafeArrayAccessData(array, &dest);
1191 memcpy(dest, ptr, size);
1192 SafeArrayUnaccessData(array);
1202 GlobalUnlock(hglobal);
1208 static HRESULT httprequest_get_responseStream(httprequest *This, VARIANT *body)
1214 if (!body) return E_INVALIDARG;
1215 V_VT(body) = VT_EMPTY;
1217 if (This->state != READYSTATE_COMPLETE) return E_PENDING;
1219 hr = IStream_Clone(This->bsc->stream, &stream);
1222 IStream_Seek(stream, move, STREAM_SEEK_SET, NULL);
1224 V_VT(body) = VT_UNKNOWN;
1225 V_UNKNOWN(body) = (IUnknown*)stream;
1230 static HRESULT httprequest_get_readyState(httprequest *This, LONG *state)
1232 if (!state) return E_POINTER;
1234 *state = This->state;
1238 static HRESULT httprequest_put_onreadystatechange(httprequest *This, IDispatch *sink)
1240 if (This->sink) IDispatch_Release(This->sink);
1241 if ((This->sink = sink)) IDispatch_AddRef(This->sink);
1246 static void httprequest_release(httprequest *This)
1248 struct httpheader *header, *header2;
1251 IUnknown_Release( This->site );
1253 IUri_Release(This->uri);
1255 IUri_Release(This->base_uri);
1257 SysFreeString(This->custom);
1258 SysFreeString(This->user);
1259 SysFreeString(This->password);
1261 /* request headers */
1262 LIST_FOR_EACH_ENTRY_SAFE(header, header2, &This->reqheaders, struct httpheader, entry)
1264 list_remove(&header->entry);
1265 SysFreeString(header->header);
1266 SysFreeString(header->value);
1269 /* response headers */
1270 free_response_headers(This);
1271 SysFreeString(This->status_text);
1273 /* detach callback object */
1274 BindStatusCallback_Detach(This->bsc);
1276 if (This->sink) IDispatch_Release(This->sink);
1279 static HRESULT WINAPI XMLHTTPRequest_QueryInterface(IXMLHTTPRequest *iface, REFIID riid, void **ppvObject)
1281 httprequest *This = impl_from_IXMLHTTPRequest( iface );
1282 TRACE("(%p)->(%s %p)\n", This, debugstr_guid(riid), ppvObject);
1284 if ( IsEqualGUID( riid, &IID_IXMLHTTPRequest) ||
1285 IsEqualGUID( riid, &IID_IDispatch) ||
1286 IsEqualGUID( riid, &IID_IUnknown) )
1290 else if (IsEqualGUID(&IID_IObjectWithSite, riid))
1292 *ppvObject = &This->IObjectWithSite_iface;
1294 else if (IsEqualGUID(&IID_IObjectSafety, riid))
1296 *ppvObject = &This->IObjectSafety_iface;
1300 TRACE("Unsupported interface %s\n", debugstr_guid(riid));
1302 return E_NOINTERFACE;
1305 IXMLHTTPRequest_AddRef( iface );
1310 static ULONG WINAPI XMLHTTPRequest_AddRef(IXMLHTTPRequest *iface)
1312 httprequest *This = impl_from_IXMLHTTPRequest( iface );
1313 ULONG ref = InterlockedIncrement( &This->ref );
1314 TRACE("(%p)->(%u)\n", This, ref );
1318 static ULONG WINAPI XMLHTTPRequest_Release(IXMLHTTPRequest *iface)
1320 httprequest *This = impl_from_IXMLHTTPRequest( iface );
1321 ULONG ref = InterlockedDecrement( &This->ref );
1323 TRACE("(%p)->(%u)\n", This, ref );
1327 httprequest_release( This );
1334 static HRESULT WINAPI XMLHTTPRequest_GetTypeInfoCount(IXMLHTTPRequest *iface, UINT *pctinfo)
1336 httprequest *This = impl_from_IXMLHTTPRequest( iface );
1338 TRACE("(%p)->(%p)\n", This, pctinfo);
1345 static HRESULT WINAPI XMLHTTPRequest_GetTypeInfo(IXMLHTTPRequest *iface, UINT iTInfo,
1346 LCID lcid, ITypeInfo **ppTInfo)
1348 httprequest *This = impl_from_IXMLHTTPRequest( iface );
1350 TRACE("(%p)->(%u %u %p)\n", This, iTInfo, lcid, ppTInfo);
1352 return get_typeinfo(IXMLHTTPRequest_tid, ppTInfo);
1355 static HRESULT WINAPI XMLHTTPRequest_GetIDsOfNames(IXMLHTTPRequest *iface, REFIID riid,
1356 LPOLESTR *rgszNames, UINT cNames, LCID lcid, DISPID *rgDispId)
1358 httprequest *This = impl_from_IXMLHTTPRequest( iface );
1359 ITypeInfo *typeinfo;
1362 TRACE("(%p)->(%s %p %u %u %p)\n", This, debugstr_guid(riid), rgszNames, cNames,
1365 if(!rgszNames || cNames == 0 || !rgDispId)
1366 return E_INVALIDARG;
1368 hr = get_typeinfo(IXMLHTTPRequest_tid, &typeinfo);
1371 hr = ITypeInfo_GetIDsOfNames(typeinfo, rgszNames, cNames, rgDispId);
1372 ITypeInfo_Release(typeinfo);
1378 static HRESULT WINAPI XMLHTTPRequest_Invoke(IXMLHTTPRequest *iface, DISPID dispIdMember, REFIID riid,
1379 LCID lcid, WORD wFlags, DISPPARAMS *pDispParams, VARIANT *pVarResult,
1380 EXCEPINFO *pExcepInfo, UINT *puArgErr)
1382 httprequest *This = impl_from_IXMLHTTPRequest( iface );
1383 ITypeInfo *typeinfo;
1386 TRACE("(%p)->(%d %s %d %d %p %p %p %p)\n", This, dispIdMember, debugstr_guid(riid),
1387 lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr);
1389 hr = get_typeinfo(IXMLHTTPRequest_tid, &typeinfo);
1392 hr = ITypeInfo_Invoke(typeinfo, &This->IXMLHTTPRequest_iface, dispIdMember, wFlags,
1393 pDispParams, pVarResult, pExcepInfo, puArgErr);
1394 ITypeInfo_Release(typeinfo);
1400 static HRESULT WINAPI XMLHTTPRequest_open(IXMLHTTPRequest *iface, BSTR method, BSTR url,
1401 VARIANT async, VARIANT user, VARIANT password)
1403 httprequest *This = impl_from_IXMLHTTPRequest( iface );
1404 TRACE("(%p)->(%s %s %s)\n", This, debugstr_w(method), debugstr_w(url),
1405 debugstr_variant(&async));
1406 return httprequest_open(This, method, url, async, user, password);
1409 static HRESULT WINAPI XMLHTTPRequest_setRequestHeader(IXMLHTTPRequest *iface, BSTR header, BSTR value)
1411 httprequest *This = impl_from_IXMLHTTPRequest( iface );
1412 TRACE("(%p)->(%s %s)\n", This, debugstr_w(header), debugstr_w(value));
1413 return httprequest_setRequestHeader(This, header, value);
1416 static HRESULT WINAPI XMLHTTPRequest_getResponseHeader(IXMLHTTPRequest *iface, BSTR header, BSTR *value)
1418 httprequest *This = impl_from_IXMLHTTPRequest( iface );
1419 TRACE("(%p)->(%s %p)\n", This, debugstr_w(header), value);
1420 return httprequest_getResponseHeader(This, header, value);
1423 static HRESULT WINAPI XMLHTTPRequest_getAllResponseHeaders(IXMLHTTPRequest *iface, BSTR *respheaders)
1425 httprequest *This = impl_from_IXMLHTTPRequest( iface );
1426 TRACE("(%p)->(%p)\n", This, respheaders);
1427 return httprequest_getAllResponseHeaders(This, respheaders);
1430 static HRESULT WINAPI XMLHTTPRequest_send(IXMLHTTPRequest *iface, VARIANT body)
1432 httprequest *This = impl_from_IXMLHTTPRequest( iface );
1433 TRACE("(%p)->(%s)\n", This, debugstr_variant(&body));
1434 return httprequest_send(This, body);
1437 static HRESULT WINAPI XMLHTTPRequest_abort(IXMLHTTPRequest *iface)
1439 httprequest *This = impl_from_IXMLHTTPRequest( iface );
1440 TRACE("(%p)\n", This);
1441 return httprequest_abort(This);
1444 static HRESULT WINAPI XMLHTTPRequest_get_status(IXMLHTTPRequest *iface, LONG *status)
1446 httprequest *This = impl_from_IXMLHTTPRequest( iface );
1447 TRACE("(%p)->(%p)\n", This, status);
1448 return httprequest_get_status(This, status);
1451 static HRESULT WINAPI XMLHTTPRequest_get_statusText(IXMLHTTPRequest *iface, BSTR *status)
1453 httprequest *This = impl_from_IXMLHTTPRequest( iface );
1454 TRACE("(%p)->(%p)\n", This, status);
1455 return httprequest_get_statusText(This, status);
1458 static HRESULT WINAPI XMLHTTPRequest_get_responseXML(IXMLHTTPRequest *iface, IDispatch **body)
1460 httprequest *This = impl_from_IXMLHTTPRequest( iface );
1461 TRACE("(%p)->(%p)\n", This, body);
1462 return httprequest_get_responseXML(This, body);
1465 static HRESULT WINAPI XMLHTTPRequest_get_responseText(IXMLHTTPRequest *iface, BSTR *body)
1467 httprequest *This = impl_from_IXMLHTTPRequest( iface );
1468 TRACE("(%p)->(%p)\n", This, body);
1469 return httprequest_get_responseText(This, body);
1472 static HRESULT WINAPI XMLHTTPRequest_get_responseBody(IXMLHTTPRequest *iface, VARIANT *body)
1474 httprequest *This = impl_from_IXMLHTTPRequest( iface );
1475 TRACE("(%p)->(%p)\n", This, body);
1476 return httprequest_get_responseBody(This, body);
1479 static HRESULT WINAPI XMLHTTPRequest_get_responseStream(IXMLHTTPRequest *iface, VARIANT *body)
1481 httprequest *This = impl_from_IXMLHTTPRequest( iface );
1482 TRACE("(%p)->(%p)\n", This, body);
1483 return httprequest_get_responseStream(This, body);
1486 static HRESULT WINAPI XMLHTTPRequest_get_readyState(IXMLHTTPRequest *iface, LONG *state)
1488 httprequest *This = impl_from_IXMLHTTPRequest( iface );
1489 TRACE("(%p)->(%p)\n", This, state);
1490 return httprequest_get_readyState(This, state);
1493 static HRESULT WINAPI XMLHTTPRequest_put_onreadystatechange(IXMLHTTPRequest *iface, IDispatch *sink)
1495 httprequest *This = impl_from_IXMLHTTPRequest( iface );
1496 TRACE("(%p)->(%p)\n", This, sink);
1497 return httprequest_put_onreadystatechange(This, sink);
1500 static const struct IXMLHTTPRequestVtbl XMLHTTPRequestVtbl =
1502 XMLHTTPRequest_QueryInterface,
1503 XMLHTTPRequest_AddRef,
1504 XMLHTTPRequest_Release,
1505 XMLHTTPRequest_GetTypeInfoCount,
1506 XMLHTTPRequest_GetTypeInfo,
1507 XMLHTTPRequest_GetIDsOfNames,
1508 XMLHTTPRequest_Invoke,
1509 XMLHTTPRequest_open,
1510 XMLHTTPRequest_setRequestHeader,
1511 XMLHTTPRequest_getResponseHeader,
1512 XMLHTTPRequest_getAllResponseHeaders,
1513 XMLHTTPRequest_send,
1514 XMLHTTPRequest_abort,
1515 XMLHTTPRequest_get_status,
1516 XMLHTTPRequest_get_statusText,
1517 XMLHTTPRequest_get_responseXML,
1518 XMLHTTPRequest_get_responseText,
1519 XMLHTTPRequest_get_responseBody,
1520 XMLHTTPRequest_get_responseStream,
1521 XMLHTTPRequest_get_readyState,
1522 XMLHTTPRequest_put_onreadystatechange
1525 /* IObjectWithSite */
1526 static HRESULT WINAPI
1527 httprequest_ObjectWithSite_QueryInterface( IObjectWithSite* iface, REFIID riid, void** ppvObject )
1529 httprequest *This = impl_from_IObjectWithSite(iface);
1530 return IXMLHTTPRequest_QueryInterface( (IXMLHTTPRequest *)This, riid, ppvObject );
1533 static ULONG WINAPI httprequest_ObjectWithSite_AddRef( IObjectWithSite* iface )
1535 httprequest *This = impl_from_IObjectWithSite(iface);
1536 return IXMLHTTPRequest_AddRef((IXMLHTTPRequest *)This);
1539 static ULONG WINAPI httprequest_ObjectWithSite_Release( IObjectWithSite* iface )
1541 httprequest *This = impl_from_IObjectWithSite(iface);
1542 return IXMLHTTPRequest_Release((IXMLHTTPRequest *)This);
1545 static HRESULT WINAPI httprequest_ObjectWithSite_GetSite( IObjectWithSite *iface, REFIID iid, void **ppvSite )
1547 httprequest *This = impl_from_IObjectWithSite(iface);
1549 TRACE("(%p)->(%s %p)\n", This, debugstr_guid( iid ), ppvSite );
1554 return IUnknown_QueryInterface( This->site, iid, ppvSite );
1557 static void get_base_uri(httprequest *This)
1559 IServiceProvider *provider;
1560 IHTMLDocument2 *doc;
1565 hr = IUnknown_QueryInterface(This->site, &IID_IServiceProvider, (void**)&provider);
1569 hr = IServiceProvider_QueryService(provider, &SID_SContainerDispatch, &IID_IHTMLDocument2, (void**)&doc);
1570 IServiceProvider_Release(provider);
1574 hr = IHTMLDocument2_get_URL(doc, &url);
1575 IHTMLDocument2_Release(doc);
1576 if(FAILED(hr) || !url || !*url)
1579 TRACE("host url %s\n", debugstr_w(url));
1581 hr = CreateUri(url, 0, 0, &uri);
1586 This->base_uri = uri;
1589 static HRESULT WINAPI httprequest_ObjectWithSite_SetSite( IObjectWithSite *iface, IUnknown *punk )
1591 httprequest *This = impl_from_IObjectWithSite(iface);
1593 TRACE("(%p)->(%p)\n", This, punk);
1596 IUnknown_Release( This->site );
1598 IUri_Release(This->base_uri);
1604 IUnknown_AddRef( punk );
1611 static const IObjectWithSiteVtbl ObjectWithSiteVtbl =
1613 httprequest_ObjectWithSite_QueryInterface,
1614 httprequest_ObjectWithSite_AddRef,
1615 httprequest_ObjectWithSite_Release,
1616 httprequest_ObjectWithSite_SetSite,
1617 httprequest_ObjectWithSite_GetSite
1621 static HRESULT WINAPI httprequest_Safety_QueryInterface(IObjectSafety *iface, REFIID riid, void **ppv)
1623 httprequest *This = impl_from_IObjectSafety(iface);
1624 return IXMLHTTPRequest_QueryInterface( (IXMLHTTPRequest *)This, riid, ppv );
1627 static ULONG WINAPI httprequest_Safety_AddRef(IObjectSafety *iface)
1629 httprequest *This = impl_from_IObjectSafety(iface);
1630 return IXMLHTTPRequest_AddRef((IXMLHTTPRequest *)This);
1633 static ULONG WINAPI httprequest_Safety_Release(IObjectSafety *iface)
1635 httprequest *This = impl_from_IObjectSafety(iface);
1636 return IXMLHTTPRequest_Release((IXMLHTTPRequest *)This);
1639 static HRESULT WINAPI httprequest_Safety_GetInterfaceSafetyOptions(IObjectSafety *iface, REFIID riid,
1640 DWORD *supported, DWORD *enabled)
1642 httprequest *This = impl_from_IObjectSafety(iface);
1644 TRACE("(%p)->(%s %p %p)\n", This, debugstr_guid(riid), supported, enabled);
1646 if(!supported || !enabled) return E_POINTER;
1648 *supported = safety_supported_options;
1649 *enabled = This->safeopt;
1654 static HRESULT WINAPI httprequest_Safety_SetInterfaceSafetyOptions(IObjectSafety *iface, REFIID riid,
1655 DWORD mask, DWORD enabled)
1657 httprequest *This = impl_from_IObjectSafety(iface);
1658 TRACE("(%p)->(%s %x %x)\n", This, debugstr_guid(riid), mask, enabled);
1660 if ((mask & ~safety_supported_options))
1663 This->safeopt = (This->safeopt & ~mask) | (mask & enabled);
1668 static const IObjectSafetyVtbl ObjectSafetyVtbl = {
1669 httprequest_Safety_QueryInterface,
1670 httprequest_Safety_AddRef,
1671 httprequest_Safety_Release,
1672 httprequest_Safety_GetInterfaceSafetyOptions,
1673 httprequest_Safety_SetInterfaceSafetyOptions
1676 /* IServerXMLHTTPRequest */
1677 static HRESULT WINAPI ServerXMLHTTPRequest_QueryInterface(IServerXMLHTTPRequest *iface, REFIID riid, void **obj)
1679 serverhttp *This = impl_from_IServerXMLHTTPRequest( iface );
1681 TRACE("(%p)->(%s %p)\n", This, debugstr_guid(riid), obj);
1683 if ( IsEqualGUID( riid, &IID_IServerXMLHTTPRequest) ||
1684 IsEqualGUID( riid, &IID_IXMLHTTPRequest) ||
1685 IsEqualGUID( riid, &IID_IDispatch) ||
1686 IsEqualGUID( riid, &IID_IUnknown) )
1692 TRACE("Unsupported interface %s\n", debugstr_guid(riid));
1694 return E_NOINTERFACE;
1697 IServerXMLHTTPRequest_AddRef( iface );
1702 static ULONG WINAPI ServerXMLHTTPRequest_AddRef(IServerXMLHTTPRequest *iface)
1704 serverhttp *This = impl_from_IServerXMLHTTPRequest( iface );
1705 ULONG ref = InterlockedIncrement( &This->ref );
1706 TRACE("(%p)->(%u)\n", This, ref );
1710 static ULONG WINAPI ServerXMLHTTPRequest_Release(IServerXMLHTTPRequest *iface)
1712 serverhttp *This = impl_from_IServerXMLHTTPRequest( iface );
1713 ULONG ref = InterlockedDecrement( &This->ref );
1715 TRACE("(%p)->(%u)\n", This, ref );
1719 httprequest_release( &This->req );
1726 static HRESULT WINAPI ServerXMLHTTPRequest_GetTypeInfoCount(IServerXMLHTTPRequest *iface, UINT *pctinfo)
1728 serverhttp *This = impl_from_IServerXMLHTTPRequest( iface );
1730 TRACE("(%p)->(%p)\n", This, pctinfo);
1736 static HRESULT WINAPI ServerXMLHTTPRequest_GetTypeInfo(IServerXMLHTTPRequest *iface, UINT iTInfo,
1737 LCID lcid, ITypeInfo **ppTInfo)
1739 serverhttp *This = impl_from_IServerXMLHTTPRequest( iface );
1741 TRACE("(%p)->(%u %u %p)\n", This, iTInfo, lcid, ppTInfo);
1743 return get_typeinfo(IServerXMLHTTPRequest_tid, ppTInfo);
1746 static HRESULT WINAPI ServerXMLHTTPRequest_GetIDsOfNames(IServerXMLHTTPRequest *iface, REFIID riid,
1747 LPOLESTR *rgszNames, UINT cNames, LCID lcid, DISPID *rgDispId)
1749 serverhttp *This = impl_from_IServerXMLHTTPRequest( iface );
1750 ITypeInfo *typeinfo;
1753 TRACE("(%p)->(%s %p %u %u %p)\n", This, debugstr_guid(riid), rgszNames, cNames,
1756 if(!rgszNames || cNames == 0 || !rgDispId)
1757 return E_INVALIDARG;
1759 hr = get_typeinfo(IServerXMLHTTPRequest_tid, &typeinfo);
1762 hr = ITypeInfo_GetIDsOfNames(typeinfo, rgszNames, cNames, rgDispId);
1763 ITypeInfo_Release(typeinfo);
1769 static HRESULT WINAPI ServerXMLHTTPRequest_Invoke(IServerXMLHTTPRequest *iface, DISPID dispIdMember, REFIID riid,
1770 LCID lcid, WORD wFlags, DISPPARAMS *pDispParams, VARIANT *pVarResult,
1771 EXCEPINFO *pExcepInfo, UINT *puArgErr)
1773 serverhttp *This = impl_from_IServerXMLHTTPRequest( iface );
1774 ITypeInfo *typeinfo;
1777 TRACE("(%p)->(%d %s %d %d %p %p %p %p)\n", This, dispIdMember, debugstr_guid(riid),
1778 lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr);
1780 hr = get_typeinfo(IServerXMLHTTPRequest_tid, &typeinfo);
1783 hr = ITypeInfo_Invoke(typeinfo, &This->IServerXMLHTTPRequest_iface, dispIdMember, wFlags,
1784 pDispParams, pVarResult, pExcepInfo, puArgErr);
1785 ITypeInfo_Release(typeinfo);
1791 static HRESULT WINAPI ServerXMLHTTPRequest_open(IServerXMLHTTPRequest *iface, BSTR method, BSTR url,
1792 VARIANT async, VARIANT user, VARIANT password)
1794 serverhttp *This = impl_from_IServerXMLHTTPRequest( iface );
1795 TRACE("(%p)->(%s %s %s)\n", This, debugstr_w(method), debugstr_w(url),
1796 debugstr_variant(&async));
1797 return httprequest_open(&This->req, method, url, async, user, password);
1800 static HRESULT WINAPI ServerXMLHTTPRequest_setRequestHeader(IServerXMLHTTPRequest *iface, BSTR header, BSTR value)
1802 serverhttp *This = impl_from_IServerXMLHTTPRequest( iface );
1803 TRACE("(%p)->(%s %s)\n", This, debugstr_w(header), debugstr_w(value));
1804 return httprequest_setRequestHeader(&This->req, header, value);
1807 static HRESULT WINAPI ServerXMLHTTPRequest_getResponseHeader(IServerXMLHTTPRequest *iface, BSTR header, BSTR *value)
1809 serverhttp *This = impl_from_IServerXMLHTTPRequest( iface );
1810 TRACE("(%p)->(%s %p)\n", This, debugstr_w(header), value);
1811 return httprequest_getResponseHeader(&This->req, header, value);
1814 static HRESULT WINAPI ServerXMLHTTPRequest_getAllResponseHeaders(IServerXMLHTTPRequest *iface, BSTR *respheaders)
1816 serverhttp *This = impl_from_IServerXMLHTTPRequest( iface );
1817 TRACE("(%p)->(%p)\n", This, respheaders);
1818 return httprequest_getAllResponseHeaders(&This->req, respheaders);
1821 static HRESULT WINAPI ServerXMLHTTPRequest_send(IServerXMLHTTPRequest *iface, VARIANT body)
1823 serverhttp *This = impl_from_IServerXMLHTTPRequest( iface );
1824 TRACE("(%p)->(%s)\n", This, debugstr_variant(&body));
1825 return httprequest_send(&This->req, body);
1828 static HRESULT WINAPI ServerXMLHTTPRequest_abort(IServerXMLHTTPRequest *iface)
1830 serverhttp *This = impl_from_IServerXMLHTTPRequest( iface );
1831 TRACE("(%p)\n", This);
1832 return httprequest_abort(&This->req);
1835 static HRESULT WINAPI ServerXMLHTTPRequest_get_status(IServerXMLHTTPRequest *iface, LONG *status)
1837 serverhttp *This = impl_from_IServerXMLHTTPRequest( iface );
1838 TRACE("(%p)->(%p)\n", This, status);
1839 return httprequest_get_status(&This->req, status);
1842 static HRESULT WINAPI ServerXMLHTTPRequest_get_statusText(IServerXMLHTTPRequest *iface, BSTR *status)
1844 serverhttp *This = impl_from_IServerXMLHTTPRequest( iface );
1845 TRACE("(%p)->(%p)\n", This, status);
1846 return httprequest_get_statusText(&This->req, status);
1849 static HRESULT WINAPI ServerXMLHTTPRequest_get_responseXML(IServerXMLHTTPRequest *iface, IDispatch **body)
1851 serverhttp *This = impl_from_IServerXMLHTTPRequest( iface );
1852 TRACE("(%p)->(%p)\n", This, body);
1853 return httprequest_get_responseXML(&This->req, body);
1856 static HRESULT WINAPI ServerXMLHTTPRequest_get_responseText(IServerXMLHTTPRequest *iface, BSTR *body)
1858 serverhttp *This = impl_from_IServerXMLHTTPRequest( iface );
1859 TRACE("(%p)->(%p)\n", This, body);
1860 return httprequest_get_responseText(&This->req, body);
1863 static HRESULT WINAPI ServerXMLHTTPRequest_get_responseBody(IServerXMLHTTPRequest *iface, VARIANT *body)
1865 serverhttp *This = impl_from_IServerXMLHTTPRequest( iface );
1866 TRACE("(%p)->(%p)\n", This, body);
1867 return httprequest_get_responseBody(&This->req, body);
1870 static HRESULT WINAPI ServerXMLHTTPRequest_get_responseStream(IServerXMLHTTPRequest *iface, VARIANT *body)
1872 serverhttp *This = impl_from_IServerXMLHTTPRequest( iface );
1873 TRACE("(%p)->(%p)\n", This, body);
1874 return httprequest_get_responseStream(&This->req, body);
1877 static HRESULT WINAPI ServerXMLHTTPRequest_get_readyState(IServerXMLHTTPRequest *iface, LONG *state)
1879 serverhttp *This = impl_from_IServerXMLHTTPRequest( iface );
1880 TRACE("(%p)->(%p)\n", This, state);
1881 return httprequest_get_readyState(&This->req, state);
1884 static HRESULT WINAPI ServerXMLHTTPRequest_put_onreadystatechange(IServerXMLHTTPRequest *iface, IDispatch *sink)
1886 serverhttp *This = impl_from_IServerXMLHTTPRequest( iface );
1887 TRACE("(%p)->(%p)\n", This, sink);
1888 return httprequest_put_onreadystatechange(&This->req, sink);
1891 static HRESULT WINAPI ServerXMLHTTPRequest_setTimeouts(IServerXMLHTTPRequest *iface, LONG resolveTimeout, LONG connectTimeout,
1892 LONG sendTimeout, LONG receiveTimeout)
1894 serverhttp *This = impl_from_IServerXMLHTTPRequest( iface );
1895 FIXME("(%p)->(%d %d %d %d): stub\n", This, resolveTimeout, connectTimeout, sendTimeout, receiveTimeout);
1899 static HRESULT WINAPI ServerXMLHTTPRequest_waitForResponse(IServerXMLHTTPRequest *iface, VARIANT timeout, VARIANT_BOOL *isSuccessful)
1901 serverhttp *This = impl_from_IServerXMLHTTPRequest( iface );
1902 FIXME("(%p)->(%s %p): stub\n", This, debugstr_variant(&timeout), isSuccessful);
1906 static HRESULT WINAPI ServerXMLHTTPRequest_getOption(IServerXMLHTTPRequest *iface, SERVERXMLHTTP_OPTION option, VARIANT *value)
1908 serverhttp *This = impl_from_IServerXMLHTTPRequest( iface );
1909 FIXME("(%p)->(%d %p): stub\n", This, option, value);
1913 static HRESULT WINAPI ServerXMLHTTPRequest_setOption(IServerXMLHTTPRequest *iface, SERVERXMLHTTP_OPTION option, VARIANT value)
1915 serverhttp *This = impl_from_IServerXMLHTTPRequest( iface );
1916 FIXME("(%p)->(%d %s): stub\n", This, option, debugstr_variant(&value));
1920 static const struct IServerXMLHTTPRequestVtbl ServerXMLHTTPRequestVtbl =
1922 ServerXMLHTTPRequest_QueryInterface,
1923 ServerXMLHTTPRequest_AddRef,
1924 ServerXMLHTTPRequest_Release,
1925 ServerXMLHTTPRequest_GetTypeInfoCount,
1926 ServerXMLHTTPRequest_GetTypeInfo,
1927 ServerXMLHTTPRequest_GetIDsOfNames,
1928 ServerXMLHTTPRequest_Invoke,
1929 ServerXMLHTTPRequest_open,
1930 ServerXMLHTTPRequest_setRequestHeader,
1931 ServerXMLHTTPRequest_getResponseHeader,
1932 ServerXMLHTTPRequest_getAllResponseHeaders,
1933 ServerXMLHTTPRequest_send,
1934 ServerXMLHTTPRequest_abort,
1935 ServerXMLHTTPRequest_get_status,
1936 ServerXMLHTTPRequest_get_statusText,
1937 ServerXMLHTTPRequest_get_responseXML,
1938 ServerXMLHTTPRequest_get_responseText,
1939 ServerXMLHTTPRequest_get_responseBody,
1940 ServerXMLHTTPRequest_get_responseStream,
1941 ServerXMLHTTPRequest_get_readyState,
1942 ServerXMLHTTPRequest_put_onreadystatechange,
1943 ServerXMLHTTPRequest_setTimeouts,
1944 ServerXMLHTTPRequest_waitForResponse,
1945 ServerXMLHTTPRequest_getOption,
1946 ServerXMLHTTPRequest_setOption
1949 static void init_httprequest(httprequest *req)
1951 req->IXMLHTTPRequest_iface.lpVtbl = &XMLHTTPRequestVtbl;
1952 req->IObjectWithSite_iface.lpVtbl = &ObjectWithSiteVtbl;
1953 req->IObjectSafety_iface.lpVtbl = &ObjectSafetyVtbl;
1959 req->uri = req->base_uri = NULL;
1960 req->user = req->password = NULL;
1962 req->state = READYSTATE_UNINITIALIZED;
1967 req->status_text = NULL;
1968 req->reqheader_size = 0;
1969 req->raw_respheaders = NULL;
1970 req->use_utf8_content = FALSE;
1972 list_init(&req->reqheaders);
1973 list_init(&req->respheaders);
1979 HRESULT XMLHTTPRequest_create(IUnknown *outer, void **obj)
1983 TRACE("(%p, %p)\n", outer, obj);
1985 req = heap_alloc( sizeof (*req) );
1987 return E_OUTOFMEMORY;
1989 init_httprequest(req);
1990 *obj = &req->IXMLHTTPRequest_iface;
1992 TRACE("returning iface %p\n", *obj);
1997 HRESULT ServerXMLHTTP_create(IUnknown *outer, void **obj)
2001 TRACE("(%p, %p)\n", outer, obj);
2003 req = heap_alloc( sizeof (*req) );
2005 return E_OUTOFMEMORY;
2007 init_httprequest(&req->req);
2008 req->IServerXMLHTTPRequest_iface.lpVtbl = &ServerXMLHTTPRequestVtbl;
2011 *obj = &req->IServerXMLHTTPRequest_iface;
2013 TRACE("returning iface %p\n", *obj);
2020 HRESULT XMLHTTPRequest_create(IUnknown *pUnkOuter, void **ppObj)
2022 MESSAGE("This program tried to use a XMLHTTPRequest object, but\n"
2023 "libxml2 support was not present at compile time.\n");
2027 HRESULT ServerXMLHTTP_create(IUnknown *outer, void **obj)
2029 MESSAGE("This program tried to use a ServerXMLHTTP object, but\n"
2030 "libxml2 support was not present at compile time.\n");