aboutsummaryrefslogtreecommitdiffstats
path: root/embed/mozilla/EphySingle.cpp
blob: 4bd1915ead6fca3436b77500f760adedf9161248 (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
/*
 *  Copyright (C) 2003 Christian Persch
 *  Copyright (C) 2003 Marco Pesenti Gritti
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU Lesser General Public License as published by
 *  the Free Software Foundation; either version 2.1, 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 Lesser 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 "EphySingle.h"

#include "ephy-debug.h"

#undef MOZILLA_INTERNAL_API
#include <nsEmbedString.h>
#define MOZILLA_INTERNAL_API 1
#include <nsIURI.h>
#include <nsIPermissionManager.h>
#include <nsICookieManager.h>
#include <nsIServiceManager.h>
#include <nsICookie2.h>
#include <nsIServiceManager.h>

#ifdef ALLOW_PRIVATE_API
#include <nsIIDNService.h>
#endif

NS_IMPL_ISUPPORTS1(EphySingle, nsIObserver)

EphySingle::EphySingle()
: mOwner(nsnull)
{
    LOG ("EphySingle ctor");
}

nsresult
EphySingle::Init (EphyEmbedSingle *aOwner)
{
    mObserverService = do_GetService ("@mozilla.org/observer-service;1");
    NS_ENSURE_TRUE (mObserverService, NS_ERROR_FAILURE);

    nsresult rv;
    rv = mObserverService->AddObserver (this, "cookie-changed", PR_FALSE);
    rv |= mObserverService->AddObserver (this, "cookie-rejected", PR_FALSE);
    rv |= mObserverService->AddObserver (this, "perm-changed", PR_FALSE);
    rv |= mObserverService->AddObserver (this, "network:offline-status-changed", PR_FALSE);
    rv |= mObserverService->AddObserver (this, "signonChanged", PR_FALSE);
    NS_ENSURE_SUCCESS (rv, NS_ERROR_FAILURE);

    mOwner = aOwner;

    LOG ("EphySingle::Init");

    return NS_OK;
}

nsresult
EphySingle::Detach ()
{
    LOG ("EphySingle::Detach");

    if (mObserverService)
    {
        mObserverService->RemoveObserver (this, "cookie-changed");
        mObserverService->RemoveObserver (this, "cookie-rejected");
        mObserverService->RemoveObserver (this, "perm-changed");
        mObserverService->RemoveObserver (this, "signonChanged");
        mObserverService->RemoveObserver (this, "network:offline-status-changed");
    }

    return NS_OK;
}

EphySingle::~EphySingle()
{
    LOG ("EphySingle dtor");

    mOwner = nsnull;
}

nsresult
EphySingle::EmitCookieNotification (const char *name,
                    nsISupports *aSubject)
{
    LOG ("EmitCookieNotification %s", name);

    nsCOMPtr<nsICookie> cookie = do_QueryInterface (aSubject);
    NS_ENSURE_TRUE (cookie, NS_ERROR_FAILURE);

    EphyCookie *info = mozilla_cookie_to_ephy_cookie (cookie);

    g_signal_emit_by_name (EPHY_COOKIE_MANAGER (mOwner), name, info);

    ephy_cookie_free (info);

    return NS_OK;
}

nsresult
EphySingle::EmitPermissionNotification (const char *name,
                    nsISupports *aSubject)
{
    LOG ("EmitPermissionNotification %s", name);

    nsCOMPtr<nsIPermission> perm = do_QueryInterface (aSubject);
    NS_ENSURE_TRUE (perm, NS_ERROR_FAILURE);

    EphyPermissionInfo *info =
        mozilla_permission_to_ephy_permission (perm);

    g_signal_emit_by_name (EPHY_PERMISSION_MANAGER (mOwner), name, info);

    ephy_permission_info_free (info);

    return NS_OK;
}

/* void observe (in nsISupports aSubject, in string aTopic, in wstring aData); */
NS_IMETHODIMP EphySingle::Observe(nsISupports *aSubject,
                  const char *aTopic,
                  const PRUnichar *aData)
{
    nsresult rv = NS_OK;

    LOG ("EphySingle::Observe topic %s", aTopic);

    if (strcmp (aTopic, "cookie-changed") == 0)
    {
        /* "added" */
        if (aData[0] == 'a')
        {
            rv = EmitCookieNotification ("cookie-added", aSubject);
        }
        /* "deleted" */
        else if (aData[0] == 'd')
        {
            rv = EmitCookieNotification ("cookie-deleted", aSubject);
        }
        /* "changed" */
        else if (aData[0] == 'c' && aData[1] == 'h')
        {
            rv = EmitCookieNotification ("cookie-changed", aSubject);
        }
        /* "cleared" */
        else if (aData[0] == 'c' && aData[1] == 'l')
        {
            LOG ("EphySingle::cookie-changed::cleared");

            g_signal_emit_by_name (EPHY_COOKIE_MANAGER (mOwner), "cookies-cleared");
        }
        else
        {
            g_warning ("EphySingle unexpected data!\n");
            rv = NS_ERROR_FAILURE;
        }
    }
    else if (strcmp (aTopic, "cookie-rejected") == 0)
    {
        LOG ("EphySingle::cookie-rejected");

        nsCOMPtr<nsIURI> uri = do_QueryInterface (aSubject);
        if (uri)
        {
            nsEmbedCString spec;
            uri->GetSpec (spec);

            g_signal_emit_by_name (EPHY_COOKIE_MANAGER (mOwner), "cookie-rejected", spec.get());
        }
        else
        {
            rv = NS_ERROR_FAILURE;
        }
    }
    else if (strcmp (aTopic, "perm-changed") == 0)
    {
        /* "added" */
        if (aData[0] == 'a')
        {
            rv = EmitPermissionNotification ("permission-added", aSubject);
        }
        /* "deleted" */
        else if (aData[0] == 'd')
        {
            rv = EmitPermissionNotification ("permission-deleted", aSubject);
        }
        /* "changed" */
        else if (aData[0] == 'c' && aData[1] == 'h')
        {
            rv = EmitPermissionNotification ("permission-changed", aSubject);
        }
        /* "cleared" */
        else if (aData[0] == 'c' && aData[1] == 'l')
        {
            LOG ("EphySingle::perm-changed::cleared");

            g_signal_emit_by_name (EPHY_PERMISSION_MANAGER (mOwner), "permissions-cleared");
        }
        else
        {
            g_warning ("EphySingle unexpected data!\n");
            rv = NS_ERROR_FAILURE;
        }
    }
    else if (strcmp (aTopic, "signonChanged") == 0)
    {
        /* aData can be PRUnichar[] "signons", "rejects", "nocaptures" and "nopreviews" */
        if (aData[0] == 's')
        {
            g_signal_emit_by_name (mOwner, "passwords-changed");
        }
    }
    else if (strcmp (aTopic, "network:offline-status-changed") == 0)
    {
        /* aData is either (PRUnichar[]) "offline" or "online" */
        gboolean offline;

        offline = (aData[1] == 'f');

        g_signal_emit_by_name (mOwner, "network-status", offline);
    }
    else
    {
        g_warning ("EphySingle observed unknown topic '%s'!\n", aTopic);
        rv = NS_ERROR_FAILURE;
    }

    LOG ("EphySingle::Observe %s", NS_SUCCEEDED (rv) ? "success" : "FAILURE");

    return rv;
}

EphyCookie *
mozilla_cookie_to_ephy_cookie (nsICookie *cookie)
{
    EphyCookie *info;

    nsEmbedCString transfer;

    cookie->GetHost (transfer);

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

    nsEmbedCString decoded;
    /* ToUTF8 never fails, no need to check return value */
    idnService->ConvertACEtoUTF8 (transfer, decoded);

    info = ephy_cookie_new ();
    info->domain = g_strdup (decoded.get());

    cookie->GetName (transfer);
    info->name = g_strdup (transfer.get());
    cookie->GetValue (transfer);
    info->value = g_strdup (transfer.get());
    cookie->GetPath (transfer);
    info->path = g_strdup (transfer.get());

    PRBool isSecure;
    cookie->GetIsSecure (&isSecure);
    info->is_secure = isSecure != PR_FALSE;

    PRUint64 dateTime;
    cookie->GetExpires (&dateTime);
    info->expires = dateTime;

    nsCOMPtr<nsICookie2> cookie2 = do_QueryInterface (cookie);
    NS_ENSURE_TRUE (cookie2, info);
        
    PRBool isSession;
    cookie2->GetIsSession (&isSession);
    info->is_session = isSession != PR_FALSE;
        
    if (!isSession)
    {
        PRInt64 expiry;
        cookie2->GetExpiry (&expiry);
        info->real_expires = expiry;
    }

    return info;
}

EphyPermissionInfo *
mozilla_permission_to_ephy_permission (nsIPermission *perm)
{
    nsresult rv;
    nsEmbedCString type;
    rv = perm->GetType(type);
    NS_ENSURE_SUCCESS (rv, NULL);

    PRUint32 cap;
    perm->GetCapability(&cap);
    EphyPermission permission;
    switch (cap)
    {
        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;
    }

    nsEmbedCString host;
    perm->GetHost(host);

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

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

    return ephy_permission_info_new (decodedHost.get(), type.get(), permission);
}