Home | History | Annotate | Download | only in soup
      1 /*
      2  *  Copyright (C) 20010 Igalia S.L.
      3  *
      4  *  This library is free software; you can redistribute it and/or
      5  *  modify it under the terms of the GNU Lesser General Public
      6  *  License as published by the Free Software Foundation; either
      7  *  version 2 of the License, or (at your option) any later version.
      8  *
      9  *  This library is distributed in the hope that it will be useful,
     10  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
     11  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
     12  *  Lesser General Public License for more details.
     13  *
     14  *  You should have received a copy of the GNU Lesser General Public
     15  *  License along with this library; if not, write to the Free Software
     16  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
     17  */
     18 
     19 #include "config.h"
     20 #include "SoupURIUtils.h"
     21 
     22 #include "GOwnPtr.h"
     23 #include <libsoup/soup.h>
     24 
     25 namespace WebCore {
     26 
     27 // Motivated by https://bugs.webkit.org/show_bug.cgi?id=38956. libsoup
     28 // does not add the password to the URL when calling
     29 // soup_uri_to_string, and thus the requests are not properly
     30 // built. Fixing soup_uri_to_string is a no-no as the maintainer does
     31 // not want to break compatibility with previous implementations
     32 KURL soupURIToKURL(SoupURI* soupURI)
     33 {
     34     GOwnPtr<gchar> urlString(soup_uri_to_string(soupURI, FALSE));
     35     KURL url(KURL(), String::fromUTF8(urlString.get()));
     36 
     37     if (!soupURI->password)
     38         return url;
     39 
     40     url.setPass(String::fromUTF8(soupURI->password));
     41     return url;
     42 }
     43 
     44 }
     45