diff options
author | portix <none@none> | 2012-12-06 02:06:13 +0100 |
---|---|---|
committer | portix <none@none> | 2012-12-06 02:06:13 +0100 |
commit | 2dda9eb0e6e10f7baa2b0a7280e6be5992d44ae8 (patch) | |
tree | 2ffa358d34bd7cbc024f44a8026212cfa58b73fd /src | |
parent | 007e4f7a1a0918c7728f98fa501e8313cf0826da (diff) | |
download | dwb-2dda9eb0e6e10f7baa2b0a7280e6be5992d44ae8.zip |
Use get_soup_uri for both, message.uri and message.firstParty, remove soup_uri_to_js_object
Diffstat (limited to 'src')
-rw-r--r-- | src/scripts.c | 35 |
1 files changed, 13 insertions, 22 deletions
diff --git a/src/scripts.c b/src/scripts.c index d7362790..c1e65ef7 100644 --- a/src/scripts.c +++ b/src/scripts.c @@ -780,10 +780,17 @@ scripts_scratchpad_send(JSContextRef ctx, JSValueRef val) } /* SOUP_MESSAGE {{{*/ -/* soup_uri_to_js_object {{{*/ -static JSObjectRef -soup_uri_to_js_object(JSContextRef ctx, SoupURI *uri, JSValueRef *exception) +static JSValueRef +get_soup_uri(JSContextRef ctx, JSObjectRef object, SoupURI * (*func)(SoupMessage *), JSValueRef *exception) { + SoupMessage *msg = JSObjectGetPrivate(object); + if (msg == NULL) + return NIL; + + SoupURI *uri = func(msg); + if (uri == NULL) + return NIL; + JSObjectRef o = JSObjectMake(ctx, NULL, NULL); js_set_object_property(ctx, o, "scheme", uri->scheme, exception); js_set_object_property(ctx, o, "user", uri->user, exception); @@ -794,36 +801,20 @@ soup_uri_to_js_object(JSContextRef ctx, SoupURI *uri, JSValueRef *exception) js_set_object_property(ctx, o, "query", uri->query, exception); js_set_object_property(ctx, o, "fragment", uri->fragment, exception); return o; -}/*}}}*/ +} /* message_get_uri {{{*/ static JSValueRef message_get_uri(JSContextRef ctx, JSObjectRef object, JSStringRef js_name, JSValueRef* exception) { - SoupMessage *msg = JSObjectGetPrivate(object); - if (msg == NULL) - return NIL; - - SoupURI *uri = soup_message_get_uri(msg); - if (uri == NULL) - return NIL; - - return soup_uri_to_js_object(ctx, uri, exception); + return get_soup_uri(ctx, object, soup_message_get_uri, exception); }/*}}}*/ /* message_get_first_party {{{*/ static JSValueRef message_get_first_party(JSContextRef ctx, JSObjectRef object, JSStringRef js_name, JSValueRef* exception) { - SoupMessage *msg = JSObjectGetPrivate(object); - if (msg == NULL) - return NIL; - - SoupURI *uri = soup_message_get_first_party(msg); - if (uri == NULL) - return NIL; - - return soup_uri_to_js_object(ctx, uri, exception); + return get_soup_uri(ctx, object, soup_message_get_first_party, exception); }/*}}}*/ /*}}}*/ |