aboutsummaryrefslogtreecommitdiffstats
path: root/embed/mozilla/EphyProtocolHandler.cpp
blob: ff98fdb53f56e5736f4442f9f6edb38541f2ef67 (plain) (blame)
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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
/*
 *  Copyright (C) 2001 Matt Aubury, Philip Langdale
 *  Copyright (C) 2004 Crispin Flowerday
 *  Copyright (C) 2005 Christian Persch
 *  Copyright (C) 2005 Adam Hooper
 *
 *  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, 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.
 *
 *  $Id$
 */

#include "mozilla-config.h"

#include "config.h"

#include <nsCOMPtr.h>
#include <nsIIOService.h>
#include <nsIServiceManager.h>
#include <nsIURI.h>
#include <nsIChannel.h>
#include <nsIOutputStream.h>
#include <nsIInputStream.h>
#include <nsIStorageStream.h>
#include <nsIInputStreamChannel.h>
#include <nsIScriptSecurityManager.h>
#include <nsNetCID.h>
#include <nsString.h>
#include <nsEscape.h>

#include <glib/gi18n.h>
#include <gtk/gtk.h>

#include "EphyProtocolHandler.h"
#include "EphyUtils.h"

#include "ephy-debug.h"

#include <string.h>

static NS_DEFINE_CID(kSimpleURICID, NS_SIMPLEURI_CID);
static NS_DEFINE_CID(kInputStreamChannelCID, NS_INPUTSTREAMCHANNEL_CID);

EphyProtocolHandler::EphyProtocolHandler()
{
    LOG ("EphyProtocolHandler ctor [%p]\n", this);
}

EphyProtocolHandler::~EphyProtocolHandler()
{
    LOG ("EphyProtocolHandler dtor [%p]\n", this);
}

NS_IMPL_ISUPPORTS2 (EphyProtocolHandler, nsIProtocolHandler, nsIAboutModule)

/* readonly attribute string scheme; */
NS_IMETHODIMP
EphyProtocolHandler::GetScheme(nsACString &aScheme)
{
    aScheme.Assign("epiphany");
    return NS_OK;
}

/* readonly attribute long defaultPort; */
NS_IMETHODIMP
EphyProtocolHandler::GetDefaultPort(PRInt32 *aDefaultPort)
{
    NS_ENSURE_ARG_POINTER (aDefaultPort);

    *aDefaultPort = -1;
    return NS_OK;
}

/* readonly attribute short protocolFlags; */
NS_IMETHODIMP
EphyProtocolHandler::GetProtocolFlags(PRUint32 *aProtocolFlags)
{
    NS_ENSURE_ARG_POINTER (aProtocolFlags);

    *aProtocolFlags = nsIProtocolHandler::URI_NORELATIVE | nsIProtocolHandler::URI_NOAUTH;
    return NS_OK;
} 

/* nsIURI newURI (in string aSpec, in nsIURI aBaseURI); */
NS_IMETHODIMP
EphyProtocolHandler::NewURI(const nsACString &aSpec,
                const char *aOriginCharset,
                nsIURI *aBaseURI,
                nsIURI **_retval)
{
    nsresult rv;
    nsCOMPtr<nsIURI> uri (do_CreateInstance(kSimpleURICID, &rv));
    NS_ENSURE_SUCCESS (rv, rv);

    rv = uri->SetSpec (aSpec);
    NS_ENSURE_SUCCESS (rv, rv);

    NS_ADDREF(*_retval = uri);
    return NS_OK;
}

/* nsIChannel newChannel (in nsIURI aURI); */
NS_IMETHODIMP
EphyProtocolHandler::NewChannel(nsIURI *aURI,
                nsIChannel **_retval)
{
    NS_ENSURE_ARG(aURI);

    PRBool isEpiphany = PR_FALSE;
    if (NS_SUCCEEDED (aURI->SchemeIs ("epiphany", &isEpiphany)) && isEpiphany)
    {
        return HandleEpiphany (aURI, _retval);
    }

    PRBool isAbout = PR_FALSE;
    if (NS_SUCCEEDED (aURI->SchemeIs ("about", &isAbout)) && isAbout)
    {
        return Redirect (nsDependentCString ("file://" SHARE_DIR "/epiphany.xhtml"), _retval);
    }

    return NS_ERROR_ILLEGAL_VALUE;
}

/* boolean allowPort (in long port, in string scheme); */
NS_IMETHODIMP 
EphyProtocolHandler::AllowPort(PRInt32 port,
                   const char *scheme,
                   PRBool *_retval)
{
    *_retval = PR_FALSE;
    return NS_OK;
}

/* private functions */

nsresult
EphyProtocolHandler::Redirect(const nsACString &aURL,
                  nsIChannel **_retval)
{
    nsresult rv;
    nsCOMPtr<nsIIOService> ioService;
    rv = EphyUtils::GetIOService (getter_AddRefs (ioService));
    NS_ENSURE_SUCCESS (rv, rv);

    nsCOMPtr<nsIChannel> tempChannel;
    rv = ioService->NewChannel(aURL, nsnull, nsnull, getter_AddRefs(tempChannel));
    NS_ENSURE_SUCCESS (rv, rv);

    nsCOMPtr<nsIURI> uri;
    rv = ioService->NewURI(aURL, nsnull, nsnull, getter_AddRefs(uri));
    NS_ENSURE_SUCCESS (rv, rv);

    tempChannel->SetOriginalURI (uri);

    nsCOMPtr<nsIScriptSecurityManager> securityManager = 
            do_GetService(NS_SCRIPTSECURITYMANAGER_CONTRACTID, &rv);
    NS_ENSURE_SUCCESS (rv, rv);

    nsCOMPtr<nsIPrincipal> principal;
    rv = securityManager->GetCodebasePrincipal(uri, getter_AddRefs(principal));
    NS_ENSURE_SUCCESS (rv, rv);

    rv = tempChannel->SetOwner(principal);
    NS_ENSURE_SUCCESS (rv, rv);

    NS_ADDREF(*_retval = tempChannel);
    return rv;
}

nsresult
EphyProtocolHandler::ParseErrorURL(const char *aURL,
                   nsACString &aError,
                   nsACString &aOriginURL,
                   nsACString &aOriginCharset)
{
    /* The error page URL is of the form "epiphany:error?e=<error>&u=<URL>&c=<charset>&d=<description>" */
    const char *query = strstr (aURL, "?");
    if (!query) return NS_ERROR_FAILURE;
    
    /* skip the '?' */
    ++query;
    
    char **params = g_strsplit (query, "&", -1);
    if (!params) return NS_ERROR_FAILURE;
    
    for (PRUint32 i = 0; params[i] != NULL; ++i)
    {
        char *param = params[i];
    
        if (strlen (param) <= 2) continue;
    
        switch (param[0])
        {
            case 'e':
                aError.Assign (nsUnescape (param + 2));
                break;
            case 'u':
                aOriginURL.Assign (nsUnescape (param + 2));
                break;
            case 'c':
                aOriginCharset.Assign (nsUnescape (param + 2));
                break;
            case 'd':
                /* we don't need mozilla's description parameter */
            default:
                break;
        }
    }

    g_strfreev (params);
    
    return NS_OK;
}

nsresult
EphyProtocolHandler::GetErrorMessage(nsIURI *aURI,
                     const char *aError,
                     char **aPrimary,
                     char **aSecondary)
{
    if (strcmp (aError, "protocolNotFound") == 0)
    {
        nsCAutoString scheme;
        aURI->GetScheme (scheme);

        *aPrimary = g_strdup (_("Unknown protocol"));
        /* FIXME: get the list of supported protocols from necko */
        *aSecondary = g_strdup_printf (_("The \"%s\" protocol could not be recognised. "
                         "Epiphany supports \"http\", \"https\", \"ftp\", "
                         "\"smb\" and \"sftp\"  protocols."),
                           scheme.get());
    }
    else if (strcmp (aError, "fileNotFound") == 0)
    {
        nsCAutoString path;
        aURI->GetPath (path);

        *aPrimary = g_strdup (_("File not found"));
        *aSecondary = g_strdup_printf (_("The file \"%s\" could not be found. "
                         "Check the location of the file and try again."),
                           path.get());
    }
    else if (strcmp (aError, "dnsNotFound") == 0)
    {
        nsCAutoString host;
        aURI->GetHost (host);

        *aPrimary = g_strdup (_("Address not found"));
        *aSecondary = g_strdup_printf (_("\"%s\" could not be found. "
                         "Check the address and try again."),
                           host.get());
    }
    else if (strcmp (aError, "connectionFailure") == 0)
    {
        nsCAutoString hostport;
        aURI->GetHostPort (hostport);

        *aPrimary = g_strdup_printf (_("Could not connect to \"%s\""), hostport.get());
        *aSecondary = g_strdup (_("The server refused the connection. "
                      "Check the address and port and try again."));
    }
    else if (strcmp (aError, "netInterrupt") == 0)
    {
        nsCAutoString hostport;
        aURI->GetHostPort (hostport);

        *aPrimary = g_strdup (_("Connection interrupted"));
        *aSecondary = g_strdup_printf (_(" The connection to \"%s\" was interrupted. "
                         "The server may be very busy or you may have a "
                         "network connection problem."),
                           hostport.get());
    }
    else if (strcmp (aError, "netTimeout") == 0)
    {
        nsCAutoString host;
        aURI->GetHost (host);

        *aPrimary = g_strdup (_("Connection timed out"));
        *aSecondary = g_strdup_printf (_("The connection to \"%s\" was lost because the "
                         "server took too long to respond. The server "
                         "may be very busy or you may have a network"),
                           host.get());
    }
    else if (strcmp (aError, "malformedURI") == 0)
    {
        *aPrimary = g_strdup (_("Invalid address"));
        *aSecondary = g_strdup (_("The address you entered is not valid."));
    }
    else if (strcmp (aError, "redirectLoop") == 0)
    {
        *aPrimary = g_strdup (_("Too many redirects"));
        *aSecondary = g_strdup_printf (_("The server redirected too many times. "
                         "The redirection has been stopped for "
                         "security reasons."));
    }
    else if (strcmp (aError, "unknownSocketType") == 0)
    {
        *aPrimary = g_strdup (_("The document could not be loaded"));
        *aSecondary = g_strdup (_("This document requires \"Personal "
                      "Security Manager\" to be installed."));
    }
    else if (strcmp (aError, "netReset") == 0)
    {
        *aPrimary = g_strdup (_("Connection dropped by server"));
        *aSecondary = g_strdup (_("Epiphany connected to the server, "
                      "but the server dropped the connection "
                      "before any data could be read."));
    }
    else if (strcmp (aError, "netOffline") == 0)
    {
        *aPrimary = g_strdup (_("Cannot load document in offline mode"));
        *aSecondary = g_strdup (_("This document cannot be viewed in offline "
                      "mode. Set Epiphany to \"online\" and try "
                      "again."));
    }
    else if (strcmp (aError, "deniedPortAccess") == 0)
    {
        *aPrimary = g_strdup (_("FIXME"));
        *aSecondary = g_strdup (_("FIXME"));
    }
    else if (strcmp (aError, "proxyResolveFailure") == 0 ||
         strcmp (aError, "proxyConnectFailure") == 0)
    {
        *aPrimary = g_strdup (_("Could not connect to proxy server"));
        *aSecondary = g_strdup (_("Check you system wide proxy server settings. "
                      "If the connection still fails, there may be "
                      "a problem with your proxy server or your "
                      "network connection."));
    }
    else
    {
        return NS_ERROR_ILLEGAL_VALUE;
    }

    return NS_OK;
}

nsresult
EphyProtocolHandler::HandleEpiphany(nsIURI *aErrorURI,
                     nsIChannel **_retval)
{
    NS_ENSURE_ARG (aErrorURI);

    nsCAutoString spec;
    aErrorURI->GetSpec (spec);

    if (g_str_has_prefix (spec.get(), "epiphany:error?"))
    {
        return CreateErrorPage (aErrorURI, _retval);
    }

    return NS_ERROR_ILLEGAL_VALUE;
}

nsresult
EphyProtocolHandler::CreateErrorPage(nsIURI *aErrorURI,
                     nsIChannel **_retval)
{
        /* First parse the arguments */
        nsresult rv = NS_ERROR_ILLEGAL_VALUE;
        nsCAutoString spec;
    rv = aErrorURI->GetSpec (spec);
    NS_ENSURE_TRUE (NS_SUCCEEDED (rv) && !spec.IsEmpty(), rv);

    nsCAutoString error, url, charset;
    rv = ParseErrorURL (spec.get (), error, url, charset);
    if (NS_FAILED (rv) || error.IsEmpty () || url.IsEmpty()) return rv;

    nsCOMPtr<nsIURI> uri;
    rv = EphyUtils::NewURI(getter_AddRefs (uri), url, charset.get());
    /* FIXME can uri be NULL if the original url was invalid? */
    NS_ENSURE_TRUE (NS_SUCCEEDED (rv) && uri, rv);

    char *primary = NULL, *secondary = NULL;
    rv = GetErrorMessage (uri, error.get(), &primary, &secondary);

    /* we don't know about this error code; forward to mozilla's impl */
    if (rv == NS_ERROR_ILLEGAL_VALUE)
    {
        nsCAutoString url(spec);

        /* remove "epiphany:error" part and insert mozilla's error page url */
        url.Cut(0, strlen ("epiphany:error"));
        url.Insert("chrome://global/content/netError.xhtml", 0);

        return Redirect (url, _retval);
    }

    NS_ENSURE_TRUE (primary && secondary, NS_ERROR_FAILURE);

    /* open the rendering stream */
    nsCOMPtr<nsIStorageStream> storageStream;
    rv = NS_NewStorageStream(16384, (PRUint32) -1, getter_AddRefs (storageStream));
    NS_ENSURE_SUCCESS (rv, rv);

    nsCOMPtr<nsIOutputStream> stream;
    rv = storageStream->GetOutputStream(0, getter_AddRefs (stream));
    NS_ENSURE_SUCCESS (rv, rv);

    char *language = g_strdup (pango_language_to_string (gtk_get_default_language ()));
    g_strdelimit (language, "_-@", '\0');

    Write (stream,
           "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n"
           "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" "
           "\"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\n"
           "<html xmlns=\"http://www.w3.org/1999/xhtml\" lang=\"");
    Write (stream, language);
    Write (stream,
           "\" xml:lang=\"");
    Write (stream, language);
    Write (stream,
           "\">\n"
           "<head>\n"
        "<title>");
    WriteHTMLEscape (stream, primary);
    /* no favicon for now, it would pollute the favicon cache */
    /* "<link rel=\"icon\" type=\"image/png\" href=\"moz-icon://stock/gtk-dialog-error?size=16\" />\n" */
    Write (stream,
        "</title>\n"
        "<style type=\"text/css\">\n"
        "div#body {\n"
            "position: absolute;\n"
            "top: 12px;\n"
            "right: 12px;\n"
            "bottom: 12px;\n"
            "left: 12px;\n"
            "overflow: auto;\n"

            "background: -moz-dialog url('moz-icon://stock/gtk-dialog-error?size=dialog') no-repeat 12px 12px;\n"
            "color: -moz-dialogtext;\n"
            "font: message-box;\n"
            "border: 1px solid -moz-dialogtext;\n"

            "padding: 12px 12px 12px 72px;\n"
        "}\n"

        "h1 {\n"
            "margin: 0;\n"
            "font-size: 1.2em;\n"
        "}\n"
        "</style>\n"
           "</head>\n"
           "<body dir=\"");
    Write (stream,
           gtk_widget_get_default_direction () == GTK_TEXT_DIR_RTL ? "rtl" : "ltr");
    Write (stream,
           "\">\n"
        "<div id=\"body\">"
        "<h1>");
    WriteHTMLEscape (stream, primary);
    Write (stream,
           "</h1>\n"
           "<p>");
    WriteHTMLEscape (stream, secondary);
    Write (stream,
        "</p>\n"
        "</div>\n"
           "</body>\n"
           "</html>\n");

    g_free (language);
    g_free (primary);
    g_free (secondary);
 
    /* finish the rendering */
    nsCOMPtr<nsIInputStream> inputStream;
    rv = storageStream->NewInputStream(0, getter_AddRefs (inputStream));
    NS_ENSURE_SUCCESS (rv, rv);

    nsCOMPtr<nsIInputStreamChannel> channel (do_CreateInstance (kInputStreamChannelCID, &rv));
    NS_ENSURE_SUCCESS (rv, rv);

    rv |= channel->SetURI (aErrorURI);
    rv |= channel->SetContentStream (inputStream);
    rv |= channel->SetContentType (NS_LITERAL_CSTRING ("application/xhtml+xml"));
    rv |= channel->SetContentCharset (NS_LITERAL_CSTRING ("utf-8"));
    NS_ENSURE_SUCCESS (rv, rv);

    nsCOMPtr<nsIScriptSecurityManager> securityManager 
        (do_GetService(NS_SCRIPTSECURITYMANAGER_CONTRACTID, &rv));
    NS_ENSURE_SUCCESS (rv, rv);

    nsCOMPtr<nsIPrincipal> principal;
    rv = securityManager->GetCodebasePrincipal (aErrorURI, getter_AddRefs (principal));
    NS_ENSURE_SUCCESS (rv, rv);

    rv = channel->SetOwner(principal);
    NS_ENSURE_SUCCESS (rv, rv);

    NS_ADDREF(*_retval = channel);
    return rv;
}

nsresult
EphyProtocolHandler::Write(nsIOutputStream *aStream,
               const char *aText)
{
    PRUint32 bytesWritten;
    return aStream->Write (aText, strlen (aText), &bytesWritten);
}

nsresult
EphyProtocolHandler::WriteHTMLEscape(nsIOutputStream *aStream,
                     const char *aText)
{
    char *text = g_markup_escape_text (aText, strlen (aText));
    nsresult rv = Write (aStream, text);
    g_free (text);

    return rv;
}