aboutsummaryrefslogtreecommitdiffstats
path: root/embed/mozilla/mozilla-embed-single.cpp
blob: e6af1189032b2777fa6cc48ce831e09c172e7c23 (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
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
/*  vim:set ts=8 noet sw=8:
 *  Copyright (C) 2000-2004 Marco Pesenti Gritti
 *  Copyright (C) 2003, 2004 Christian Persch
 *
 *  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"

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#include "mozilla-embed-single.h"

#include "ephy-cookie-manager.h"
#include "ephy-password-manager.h"
#include "ephy-permission-manager.h"

#include "glib.h"
#include "ephy-debug.h"
#include "gtkmozembed.h"
#include "mozilla-embed.h"
#include "ephy-file-helpers.h"
#include "mozilla-notifiers.h"
#include "ephy-langs.h"
#include "eel-gconf-extensions.h"
#include "ephy-embed-prefs.h"
#include "MozRegisterComponents.h"
#include "EphySingle.h"
#include "EphyBrowser.h"
#include "EphyUtils.h"
#include "MozillaPrivate.h"

#include <glib/gi18n.h>
#include <libgnomevfs/gnome-vfs-utils.h>

#include <nsCOMPtr.h>
#include <nsMemory.h>
#include <nsEmbedString.h>
#include <nsIPrefService.h>
#include <nsIServiceManager.h>
#include <nsIWindowWatcher.h>
#include <nsIIOService.h>
#include <nsISupportsPrimitives.h>
#include <nsICookieManager.h>
#include <nsICookie2.h>
#include <nsICookieManager.h>
#include <nsIPasswordManager.h>
#include <nsCPasswordManager.h>
#include <nsIPermission.h>
#include <nsIPermissionManager.h>
#include <nsILocalFile.h>
#include <nsIURI.h>

#ifdef HAVE_NSIPASSWORD_H
#include <nsIPassword.h>
#endif

#if defined (HAVE_CHROME_NSICHROMEREGISTRYSEA_H)
#include <chrome/nsIChromeRegistrySea.h>
#elif defined(MOZ_NSIXULCHROMEREGISTRY_SELECTSKIN)
#include <nsIChromeRegistry.h>
#endif

#ifdef ALLOW_PRIVATE_API
// FIXME: For setting the locale. hopefully gtkmozembed will do itself soon
#include <nsILocaleService.h>
#include <nsIHttpAuthManager.h>
#include <nsICacheService.h>
#include <nsIFontEnumerator.h>
#include <nsNetCID.h>
#include <nsIIDNService.h>
#endif

#define MOZILLA_PROFILE_DIR  "/mozilla"
#define MOZILLA_PROFILE_NAME "epiphany"
#define MOZILLA_PROFILE_FILE "prefs.js"
#define DEFAULT_PROFILE_FILE SHARE_DIR"/default-prefs.js"

#define MOZILLA_EMBED_SINGLE_GET_PRIVATE(object)(G_TYPE_INSTANCE_GET_PRIVATE ((object), MOZILLA_TYPE_EMBED_SINGLE, MozillaEmbedSinglePrivate))

struct MozillaEmbedSinglePrivate
{
    char *user_prefs;
    
    /* monitor this widget for theme changes*/
    GtkWidget *theme_window;

    EphySingle *mSingleObserver;
};

static void mozilla_embed_single_class_init (MozillaEmbedSingleClass *klass);
static void ephy_embed_single_iface_init    (EphyEmbedSingleIface *iface);
static void ephy_cookie_manager_iface_init  (EphyCookieManagerIface *iface);
static void ephy_password_manager_iface_init    (EphyPasswordManagerIface *iface);
static void ephy_permission_manager_iface_init  (EphyPermissionManagerIface *iface);
static void mozilla_embed_single_init       (MozillaEmbedSingle *ges);
static gboolean have_gnome_url_handler      (const gchar *protocol);

static GObjectClass *parent_class = NULL;

GType
mozilla_embed_single_get_type (void)
{
       static GType type = 0;

        if (type == 0)
        {
                static const GTypeInfo our_info =
                {
                        sizeof (MozillaEmbedSingleClass),
                        NULL, /* base_init */
                        NULL, /* base_finalize */
                        (GClassInitFunc) mozilla_embed_single_class_init,
                        NULL, /* class_finalize */
                        NULL, /* class_data */
                        sizeof (MozillaEmbedSingle),
                        0,    /* n_preallocs */
                        (GInstanceInitFunc) mozilla_embed_single_init
                };

        static const GInterfaceInfo embed_single_info =
        {
            (GInterfaceInitFunc) ephy_embed_single_iface_init,
            NULL,
            NULL
        };

        static const GInterfaceInfo cookie_manager_info =
        {
            (GInterfaceInitFunc) ephy_cookie_manager_iface_init,
            NULL,
            NULL
        };

        static const GInterfaceInfo password_manager_info =
        {
            (GInterfaceInitFunc) ephy_password_manager_iface_init,
            NULL,
            NULL
        };

        static const GInterfaceInfo permission_manager_info =
        {
            (GInterfaceInitFunc) ephy_permission_manager_iface_init,
            NULL,
            NULL
        };

        type = g_type_register_static (G_TYPE_OBJECT,
                           "MozillaEmbedSingle",
                           &our_info,
                           (GTypeFlags)0);

        g_type_add_interface_static (type,
                         EPHY_TYPE_EMBED_SINGLE,
                         &embed_single_info);

        g_type_add_interface_static (type,
                         EPHY_TYPE_COOKIE_MANAGER,
                         &cookie_manager_info);

        g_type_add_interface_static (type,
                         EPHY_TYPE_PASSWORD_MANAGER,
                         &password_manager_info);

        g_type_add_interface_static (type,
                         EPHY_TYPE_PERMISSION_MANAGER,
                         &permission_manager_info);
    }

        return type;
}

static gboolean
mozilla_set_default_prefs (MozillaEmbedSingle *mes)
{
    nsCOMPtr<nsIPrefService> prefService;

        prefService = do_GetService (NS_PREFSERVICE_CONTRACTID);
    NS_ENSURE_TRUE (prefService, FALSE);

        /* read our predefined default prefs */
        nsresult rv;
        nsCOMPtr<nsILocalFile> file;
        NS_NewNativeLocalFile(nsEmbedCString(DEFAULT_PROFILE_FILE),
                  PR_TRUE, getter_AddRefs(file));
    if (!file) return FALSE;

        rv = prefService->ReadUserPrefs (file);                                                                              
        if (NS_FAILED(rv))
        {
                g_warning ("failed to read default preferences, error: %x", rv);
        return FALSE;
        }
                                                                                                                             
    nsCOMPtr<nsIPrefBranch> pref;
    prefService->GetBranch ("", getter_AddRefs(pref));
    NS_ENSURE_TRUE (pref, FALSE);

    /* We do this before reading the user pref file so that the user
     * still can overwrite this pref.
     * We don't use the default-prefs.js file since that cannot be
     * localised (see bug #144909).
     */
    /* translators: this is the URL that searches from the location
     * entry get directed to. The search terms will be _appended_ to it,
     * in url-escaped UTF-8; that means that if you're choosing google,
     * the 'q=' part needs to come last.
     */
    pref->SetCharPref ("keyword.URL", _("http://www.google.com/search?ie=UTF-8&oe=UTF-8&q="));

        /* Load the default user preferences as well.  This also makes the
           prefs to be saved in the user's prefs.js file, instead of messing up
           our global defaults file. */
        rv = prefService->ReadUserPrefs (nsnull);
        if (NS_FAILED(rv))
        {
                g_warning ("failed to read user preferences, error: %x", rv);
        }

    /* FIXME We need to do this because mozilla doesnt set product
    sub for embedding apps */
    pref->SetCharPref ("general.useragent.vendor", "Epiphany");
    pref->SetCharPref ("general.useragent.vendorSub", VERSION);

    /* Open ftp uris with an external handler if one is setup */
    pref->SetBoolPref("network.protocol-handler.external.ftp",
              have_gnome_url_handler ("ftp"));

    return TRUE;
}

static char *
color_to_string (GdkColor color)
{
    return g_strdup_printf ("#%.2x%.2x%.2x",
                color.red >> 8,
                color.green >> 8,
                color.blue >> 8);
}

static void
mozilla_update_colors (GtkWidget *window,
                       GtkStyle *previous_style,
                       MozillaEmbedSingle *mes)
{
    nsCOMPtr<nsIPrefService> prefService;
    GdkColor color;
    char *str;

        prefService = do_GetService (NS_PREFSERVICE_CONTRACTID);
    if (!prefService) return;

        nsCOMPtr<nsIPrefBranch> pref;
        prefService->GetBranch ("", getter_AddRefs(pref));
    if (!pref) return;

    /* Set the bg color to the text bg color*/
    color = window->style->base[GTK_STATE_NORMAL];
    str = color_to_string (color);
    pref->SetCharPref ("browser.display.background_color", str);        
    g_free (str);

    /* Set the text color */
    color = window->style->text[GTK_STATE_NORMAL];
    str = color_to_string (color);  
    pref->SetCharPref ("browser.display.foreground_color", str);    
    g_free (str);

    /* FIXME: We should probably monitor and set link color here too,
     * but i'm not really sure what to do about that yet
     */
}

static void
mozilla_setup_colors (MozillaEmbedSingle *mes)
{
    GtkWidget *window;

    /* Create a random window to monitor for theme changes */
    window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
    mes->priv->theme_window = window;
    gtk_widget_realize (window);
    gtk_widget_ensure_style (window);

    /* monitor theme changes*/
    g_signal_connect (G_OBJECT (window), "style-set",
              G_CALLBACK (mozilla_update_colors), mes);
    
    /* Initialize the colors */
    mozilla_update_colors (window, NULL, mes);

    mes->priv->theme_window = window;
}           

static void 
mozilla_embed_single_new_window_orphan_cb (GtkMozEmbedSingle *embed,
                       GtkMozEmbed **retval, 
                       guint chrome_mask,
                       EphyEmbedSingle *shell)
{
    g_assert (chrome_mask & GTK_MOZ_EMBED_FLAG_OPENASCHROME);

    *retval = _mozilla_embed_new_xul_dialog ();
}

static void
mozilla_init_plugin_path ()
{
    const char *user_path;
    char *new_path;

    user_path = g_getenv ("MOZ_PLUGIN_PATH");
    new_path = g_strconcat (user_path ? user_path : "",
                user_path ? ":" : "",
                MOZILLA_PREFIX "/lib/mozilla/plugins:"
                MOZILLA_HOME "/plugins",
                NULL);

    g_setenv ("MOZ_PLUGIN_PATH", new_path, TRUE);
    g_free (new_path);
}

static void
mozilla_init_single (MozillaEmbedSingle *mes)
{   
    GtkMozEmbedSingle *single;
    
    /* get single */
        single = gtk_moz_embed_single_get ();
        if (single == NULL)
        {
                g_warning ("Failed to get singleton embed object!\n");
        }

        /* allow creation of orphan windows */
        g_signal_connect (G_OBJECT (single), "new_window_orphan",
                          G_CALLBACK (mozilla_embed_single_new_window_orphan_cb),
              mes);
}

static void
mozilla_init_home (void)
{
    char *mozilla_five_home;
        mozilla_five_home = g_strdup (g_getenv ("MOZILLA_FIVE_HOME"));
        gtk_moz_embed_set_comp_path (mozilla_five_home);
        g_free (mozilla_five_home);
}

void
mozilla_init_profile (void)
{
    char *profile_path;
    profile_path = g_build_filename (ephy_dot_dir (), 
                     MOZILLA_PROFILE_DIR, 
                     NULL);
        gtk_moz_embed_set_profile_path (profile_path, MOZILLA_PROFILE_NAME);
        g_free (profile_path);
}

static gboolean
have_gnome_url_handler (const gchar *protocol)
{
    gchar *key, *cmd;
    gboolean rv;

    key = g_strdup_printf ("/desktop/gnome/url-handlers/%s/command", 
                   protocol);
    cmd = eel_gconf_get_string (key);
    g_free (key);

    rv = (cmd != NULL && strstr (cmd, "epiphany") == NULL);
    g_free (cmd);

    if (!rv) return rv;

    key = g_strdup_printf ("/desktop/gnome/url-handlers/%s/enabled", 
                   protocol);
    rv = eel_gconf_get_boolean (key);
    g_free (key);

    return rv;
}

static nsresult
getUILang (nsAString& aUILang)
{
    nsresult rv;

    nsCOMPtr<nsILocaleService> localeService = do_GetService (NS_LOCALESERVICE_CONTRACTID);
    if (!localeService)
    {
        g_warning ("Could not get locale service!\n");
        return NS_ERROR_FAILURE;
    }

    rv = localeService->GetLocaleComponentForUserAgent (aUILang);

    if (NS_FAILED (rv))
    {
        g_warning ("Could not determine locale!\n");
        return NS_ERROR_FAILURE;
    }

    return NS_OK;
}

static nsresult
mozilla_init_chrome (void)
{
/* FIXME: can we just omit this on new-toolkit ? */
#if defined(MOZ_NSIXULCHROMEREGISTRY_SELECTSKIN) || defined(HAVE_CHROME_NSICHROMEREGISTRYSEA_H)
    nsresult rv;
    nsEmbedString uiLang;

#ifdef HAVE_CHROME_NSICHROMEREGISTRYSEA_H
    nsCOMPtr<nsIChromeRegistrySea> chromeRegistry = do_GetService (NS_CHROMEREGISTRY_CONTRACTID);
#else
    nsCOMPtr<nsIXULChromeRegistry> chromeRegistry = do_GetService (NS_CHROMEREGISTRY_CONTRACTID);
#endif
    NS_ENSURE_TRUE (chromeRegistry, NS_ERROR_FAILURE);

    // Set skin to 'classic' so we get native scrollbars.
    rv = chromeRegistry->SelectSkin (nsEmbedCString("classic/1.0"), PR_FALSE);
    NS_ENSURE_SUCCESS (rv, NS_ERROR_FAILURE);

    // set locale
    rv = chromeRegistry->SetRuntimeProvider(PR_TRUE);
    NS_ENSURE_SUCCESS (rv, NS_ERROR_FAILURE);

    rv = getUILang(uiLang);
    NS_ENSURE_SUCCESS (rv, NS_ERROR_FAILURE);

    nsEmbedCString cUILang;
    NS_UTF16ToCString (uiLang, NS_CSTRING_ENCODING_UTF8, cUILang);

    return chromeRegistry->SelectLocale (cUILang, PR_FALSE);
#else
    return NS_OK;
#endif
}

static void
mozilla_init_observer (MozillaEmbedSingle *single)
{
    EphySingle *es;

    es = new EphySingle ();
    NS_ADDREF (single->priv->mSingleObserver = es);

    nsresult rv;
    rv = es->Init (EPHY_EMBED_SINGLE (single));
    if (NS_FAILED (rv))
    {
        g_warning ("Failed to initialise EphySingle!\n");
        return;
    }
}

static gboolean
init_services (MozillaEmbedSingle *single)
{
    /* Pre initialization */
    mozilla_init_plugin_path ();
    mozilla_init_home ();
    mozilla_init_profile ();

    /* Set mozilla binary path */
    gtk_moz_embed_set_comp_path (MOZILLA_HOME);

    /* Fire up the beast */
    gtk_moz_embed_push_startup ();

    /* Until gtkmozembed does this itself */
    mozilla_init_chrome ();

    mozilla_init_single (single);

    if (!mozilla_set_default_prefs (single))
    {
        return FALSE;
    }

    /* FIXME: This should be removed when mozilla
     * bugs 207000 and 207001 are fixed.
     */
    mozilla_setup_colors (single);

    START_PROFILER ("Mozilla prefs notifiers")
    mozilla_notifiers_init (EPHY_EMBED_SINGLE (single));
    STOP_PROFILER ("Mozilla prefs notifiers")

    mozilla_register_components ();

    mozilla_init_observer (single);

    return TRUE;
}

static void
mozilla_embed_single_init (MozillaEmbedSingle *mes)
{
    mes->priv = MOZILLA_EMBED_SINGLE_GET_PRIVATE (mes);

    mes->priv->theme_window = NULL;
    mes->priv->user_prefs =
        g_build_filename (ephy_dot_dir (), 
                  MOZILLA_PROFILE_DIR,
                  MOZILLA_PROFILE_NAME,
                  MOZILLA_PROFILE_FILE,
                  NULL);

    mes->priv->mSingleObserver = nsnull;

    if (!init_services (mes))
    {
        GtkWidget *dialog;

        /* FIXME Kill references to MOZILLA_FIVE_HOME
           when string freeze is over */
        dialog = gtk_message_dialog_new
            (NULL,
                         GTK_DIALOG_MODAL,
                         GTK_MESSAGE_ERROR,
                         GTK_BUTTONS_CLOSE,
                         _("Epiphany can't be used now. "
                         "Mozilla initialization failed. Check your "
                         "MOZILLA_FIVE_HOME environmental variable."));
        gtk_dialog_run (GTK_DIALOG (dialog));

        exit (0);
    }
}

static void
mozilla_embed_single_dispose (GObject *object)
{
    MozillaEmbedSingle *single = MOZILLA_EMBED_SINGLE (object);

    if (single->priv->mSingleObserver)
    {
        single->priv->mSingleObserver->Detach ();
        NS_RELEASE (single->priv->mSingleObserver);
        single->priv->mSingleObserver = nsnull;
    }
}

static void
mozilla_embed_single_finalize (GObject *object)
{
    MozillaEmbedSingle *mes = MOZILLA_EMBED_SINGLE (object);

    /* Destroy EphyEmbedSingle before because some
     * services depend on xpcom */
    G_OBJECT_CLASS (parent_class)->finalize (object);

    mozilla_notifiers_free ();

    gtk_moz_embed_pop_startup ();

    g_free (mes->priv->user_prefs);

    if (mes->priv->theme_window)
    {
        gtk_widget_destroy (mes->priv->theme_window);
    }
}

static void
impl_clear_cache (EphyEmbedSingle *shell)
{
    nsCOMPtr<nsICacheService> cacheService =
                        do_GetService (NS_CACHESERVICE_CONTRACTID);
    if (!cacheService) return;

    cacheService->EvictEntries (nsICache::STORE_ANYWHERE);
}

static void
impl_clear_auth_cache (EphyEmbedSingle *shell)
{
    nsCOMPtr<nsIHttpAuthManager> authManager =
            do_GetService (NS_HTTPAUTHMANAGER_CONTRACTID);
    if (!authManager) return;

    authManager->ClearAll();
}

static void
impl_set_offline_mode (EphyEmbedSingle *shell,
               gboolean offline)
{
    nsCOMPtr<nsIIOService> io = do_GetService(NS_IOSERVICE_CONTRACTID);
    if (!io) return;

    io->SetOffline(offline);
}

static gboolean
impl_get_offline_mode (EphyEmbedSingle *shell)
{
    nsCOMPtr<nsIIOService> io = do_GetService(NS_IOSERVICE_CONTRACTID);
    if (!io) return FALSE; /* no way to check the state, assume offline */

    PRBool isOffline;
    nsresult rv;
    rv = io->GetOffline(&isOffline);
    NS_ENSURE_SUCCESS (rv, FALSE);

    return isOffline;
}

static GList *
impl_get_font_list (EphyEmbedSingle *shell,
            const char *langGroup)
{
    nsresult rv;
    PRUint32 fontCount;
    PRUnichar **fontArray;
    GList *l = NULL;

    nsCOMPtr<nsIFontEnumerator> mozFontEnumerator;
    mozFontEnumerator = do_CreateInstance("@mozilla.org/gfx/fontenumerator;1");
    NS_ENSURE_TRUE (mozFontEnumerator, NULL);

    rv = mozFontEnumerator->EnumerateFonts (langGroup, nsnull,
                            &fontCount, &fontArray);
    NS_ENSURE_SUCCESS (rv, NULL);

    for (PRUint32 i = 0; i < fontCount; i++)
    {
        char *gFontString;

        nsEmbedCString tmp;
        NS_UTF16ToCString (nsEmbedString(fontArray[i]),
                   NS_CSTRING_ENCODING_UTF8, tmp);
        gFontString = g_strdup (tmp.get());
        l = g_list_prepend (l, gFontString);
        nsMemory::Free (fontArray[i]);
    }

    nsMemory::Free (fontArray);

    return g_list_reverse (l);
}

static GList *
impl_list_cookies (EphyCookieManager *manager)
{
    nsresult rv;
    GList *cookies = NULL;
    
    nsCOMPtr<nsICookieManager> cookieManager = 
            do_GetService (NS_COOKIEMANAGER_CONTRACTID);
    if (!cookieManager) return NULL;

    nsCOMPtr<nsISimpleEnumerator> cookieEnumerator;
    cookieManager->GetEnumerator (getter_AddRefs(cookieEnumerator));
    NS_ENSURE_TRUE (cookieEnumerator, NULL);

    PRBool enumResult;
    for (cookieEnumerator->HasMoreElements(&enumResult) ;
         enumResult == PR_TRUE ;
         cookieEnumerator->HasMoreElements(&enumResult))
    {
        nsCOMPtr<nsICookie> keks;
        rv = cookieEnumerator->GetNext (getter_AddRefs(keks));
        if (NS_FAILED (rv) || !keks) continue;

        EphyCookie *cookie = mozilla_cookie_to_ephy_cookie (keks);
        if (!cookie) continue;

        cookies = g_list_prepend (cookies, cookie);
    }       

    return cookies;
}

static void
impl_remove_cookie (EphyCookieManager *manager,
            const EphyCookie *cookie)
{
    nsCOMPtr<nsICookieManager> cookieManager =
        do_GetService (NS_COOKIEMANAGER_CONTRACTID);
    if (!cookieManager) return;

    nsCOMPtr<nsIIDNService> idnService
        (do_GetService ("@mozilla.org/network/idn-service;1"));
    NS_ENSURE_TRUE (idnService, );

    nsresult rv;
    nsEmbedCString host;
    rv = idnService->ConvertUTF8toACE (nsEmbedCString(cookie->domain), host);
    NS_ENSURE_SUCCESS (rv, );

    cookieManager->Remove (host,
                   nsEmbedCString(cookie->name),
                   nsEmbedCString(cookie->path),
                   PR_FALSE /* block */);
}

static void
impl_clear_cookies (EphyCookieManager *manager)
{
    nsCOMPtr<nsICookieManager> cookieManager =
        do_GetService (NS_COOKIEMANAGER_CONTRACTID);
    if (!cookieManager) return;

    cookieManager->RemoveAll ();
}
    
static GList *
impl_list_passwords (EphyPasswordManager *manager)
{
    GList *passwords = NULL;

#ifdef HAVE_NSIPASSWORD_H
    nsresult rv;

    nsCOMPtr<nsIPasswordManager> passwordManager =
            do_GetService (NS_PASSWORDMANAGER_CONTRACTID);
    if (!passwordManager) return NULL;

    nsCOMPtr<nsIIDNService> idnService
        (do_GetService ("@mozilla.org/network/idn-service;1"));
    NS_ENSURE_TRUE (idnService, NULL);

    nsCOMPtr<nsISimpleEnumerator> passwordEnumerator;
    passwordManager->GetEnumerator (getter_AddRefs(passwordEnumerator));
    NS_ENSURE_TRUE (passwordEnumerator, NULL);

    PRBool enumResult;
    for (passwordEnumerator->HasMoreElements(&enumResult) ;
         enumResult == PR_TRUE ;
         passwordEnumerator->HasMoreElements(&enumResult))
    {
        nsCOMPtr<nsIPassword> nsPassword;
        passwordEnumerator->GetNext (getter_AddRefs(nsPassword));
        if (!nsPassword) continue;

        nsEmbedCString transfer;
        rv = nsPassword->GetHost (transfer);
        if (NS_FAILED (rv)) continue;

        nsEmbedCString host;
        idnService->ConvertACEtoUTF8 (transfer, host);

        nsEmbedString unicodeName;
        rv = nsPassword->GetUser (unicodeName);
        if (NS_FAILED (rv)) continue;

        nsEmbedCString userName;
        NS_UTF16ToCString (unicodeName,
                   NS_CSTRING_ENCODING_UTF8, userName);

        EphyPasswordInfo *p = g_new0 (EphyPasswordInfo, 1);

        p->host = g_strdup (host.get());
        p->username = g_strdup (userName.get());
        p->password = NULL;

        passwords = g_list_prepend (passwords, p);
    }
#endif

    return passwords;
}

static void
impl_remove_password (EphyPasswordManager *manager,
              EphyPasswordInfo *info)
{
        nsCOMPtr<nsIPasswordManager> pm =
                        do_GetService (NS_PASSWORDMANAGER_CONTRACTID);
    if (!pm) return;

    nsCOMPtr<nsIIDNService> idnService
        (do_GetService ("@mozilla.org/network/idn-service;1"));
    NS_ENSURE_TRUE (idnService, );

    nsresult rv;
    nsEmbedCString host;
    rv = idnService->ConvertUTF8toACE (nsEmbedCString(info->host), host);
    NS_ENSURE_SUCCESS (rv, );

    nsEmbedString userName;
    NS_CStringToUTF16 (nsEmbedCString(info->username),
               NS_CSTRING_ENCODING_UTF8, userName);
    pm->RemoveUser (host, userName);
}

static void
impl_permission_manager_add (EphyPermissionManager *manager,
                 const char *host,
                 const char *type,
                 EphyPermission permission)
{
    /* can only set allow or deny */
    g_return_if_fail (permission != EPHY_PERMISSION_DEFAULT);
    g_return_if_fail (type != NULL && type[0] != '\0');

        nsCOMPtr<nsIPermissionManager> pm
        (do_GetService (NS_PERMISSIONMANAGER_CONTRACTID));
    if (!pm) return;

    nsCOMPtr<nsIURI> uri;
        EphyUtils::NewURI(getter_AddRefs(uri), nsEmbedCString(host));
    if (!uri) return;

    gboolean allow = (permission == EPHY_PERMISSION_ALLOWED);

    pm->Add (uri, type,
         allow ? (PRUint32) nsIPermissionManager::ALLOW_ACTION :
             (PRUint32) nsIPermissionManager::DENY_ACTION);
}

static void
impl_permission_manager_remove (EphyPermissionManager *manager,
                const char *host,
                const char *type)
{
        nsCOMPtr<nsIPermissionManager> pm
        (do_GetService (NS_PERMISSIONMANAGER_CONTRACTID));
    if (!pm) return;

    pm->Remove (nsEmbedCString (host), type);
}

static void
impl_permission_manager_clear (EphyPermissionManager *manager)
{
        nsCOMPtr<nsIPermissionManager> pm
        (do_GetService (NS_PERMISSIONMANAGER_CONTRACTID));
    if (!pm) return;

    pm->RemoveAll ();
}

EphyPermission
impl_permission_manager_test (EphyPermissionManager *manager,
                  const char *host,
                  const char *type)
{
    g_return_val_if_fail (type != NULL && type[0] != '\0', EPHY_PERMISSION_DEFAULT);

        nsCOMPtr<nsIPermissionManager> pm
        (do_GetService (NS_PERMISSIONMANAGER_CONTRACTID));
    if (!pm) return EPHY_PERMISSION_DEFAULT;

    nsCOMPtr<nsIURI> uri;
        EphyUtils::NewURI(getter_AddRefs(uri), nsEmbedCString (host));
        if (!uri) return EPHY_PERMISSION_DEFAULT;

    nsresult rv;
    PRUint32 action;
    rv = pm->TestPermission (uri, type, &action);
    NS_ENSURE_SUCCESS (rv, EPHY_PERMISSION_DEFAULT);

    EphyPermission permission;

    switch (action)
    {
        case nsIPermissionManager::ALLOW_ACTION:
            permission = EPHY_PERMISSION_ALLOWED;
            break;
        case nsIPermissionManager::DENY_ACTION:
            permission = EPHY_PERMISSION_DENIED;
            break;
        case nsIPermissionManager::UNKNOWN_ACTION:
        default:
            permission = EPHY_PERMISSION_DEFAULT;
            break;
    }

    return permission;
}

GList *
impl_permission_manager_list (EphyPermissionManager *manager,
                  const char *type)
{
    GList *list = NULL;

        nsCOMPtr<nsIPermissionManager> pm
        (do_GetService (NS_PERMISSIONMANAGER_CONTRACTID));
    if (!pm) return NULL;

    nsCOMPtr<nsISimpleEnumerator> pe;
    pm->GetEnumerator(getter_AddRefs(pe));
    NS_ENSURE_TRUE (pe, NULL);
    
    PRBool hasMore;
    while (NS_SUCCEEDED (pe->HasMoreElements (&hasMore)) && hasMore)
    {
        nsCOMPtr<nsISupports> element;
        pe->GetNext (getter_AddRefs (element));
        
        nsCOMPtr<nsIPermission> perm (do_QueryInterface (element));
        if (!perm) continue;

        nsresult rv;
        nsEmbedCString str;
        rv = perm->GetType(str);
        if (NS_FAILED (rv)) continue;

        if (strcmp (str.get(), type) == 0)
        {
            EphyPermissionInfo *info = 
                mozilla_permission_to_ephy_permission (perm);

            if (info != NULL)
            {
                list = g_list_prepend (list, info);
            }
        }
    }

    return list;
}

static GtkWidget * 
impl_open_window (EphyEmbedSingle *single,
          EphyEmbed *parent,
          const char *address,
          const char *name,
          const char *features)
{
    nsCOMPtr<nsIDOMWindow> domWindow;

    if (parent)
    {
        EphyBrowser *browser;

        browser = (EphyBrowser *) _mozilla_embed_get_ephy_browser (MOZILLA_EMBED(parent));
        g_return_val_if_fail (browser != NULL, NULL);

        browser->GetDOMWindow (getter_AddRefs (domWindow));
    }

    nsCOMPtr<nsIWindowWatcher> wWatch(do_GetService ("@mozilla.org/embedcomp/window-watcher;1"));
    nsCOMPtr<nsIDOMWindow> newWindow;
    wWatch->OpenWindow (domWindow, address, name, features, nsnull,
                getter_AddRefs (newWindow));

    return MozillaFindEmbed (newWindow);
}

static void
mozilla_embed_single_class_init (MozillaEmbedSingleClass *klass)
{
    GObjectClass *object_class = G_OBJECT_CLASS (klass);

    parent_class = (GObjectClass *) g_type_class_peek_parent (klass);

    object_class->dispose = mozilla_embed_single_dispose;
    object_class->finalize = mozilla_embed_single_finalize;

    g_type_class_add_private (object_class, sizeof (MozillaEmbedSinglePrivate));
}

static void
ephy_embed_single_iface_init (EphyEmbedSingleIface *iface)
{
    iface->clear_cache = impl_clear_cache;
    iface->clear_auth_cache = impl_clear_auth_cache;
    iface->set_offline_mode = impl_set_offline_mode;
    iface->get_offline_mode = impl_get_offline_mode;
    iface->get_font_list = impl_get_font_list;
    iface->open_window = impl_open_window;
}

static void
ephy_cookie_manager_iface_init (EphyCookieManagerIface *iface)
{
    iface->list = impl_list_cookies;
    iface->remove = impl_remove_cookie;
    iface->clear = impl_clear_cookies;
}

static void
ephy_password_manager_iface_init (EphyPasswordManagerIface *iface)
{
    iface->add = NULL; /* not implemented yet */
    iface->remove = impl_remove_password;
    iface->list = impl_list_passwords;
}

static void
ephy_permission_manager_iface_init (EphyPermissionManagerIface *iface)
{
    iface->add = impl_permission_manager_add;
    iface->remove = impl_permission_manager_remove;
    iface->clear = impl_permission_manager_clear;
    iface->test = impl_permission_manager_test;
    iface->list = impl_permission_manager_list;
}