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
|
/* -*- Mode: C; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/*
* Copyright © 2011, 2012 Igalia S.L.
*
* 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.
*
* Some parts of this file based on the previous 'adblock' extension,
* licensed with the GNU General Public License 2 and later versions,
* Copyright (C) 2003 Marco Pesenti Gritti, Christian Persch.
*
* 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.
*/
#include "config.h"
#include "ephy-adblock.h"
#include "ephy-adblock-manager.h"
#include "ephy-debug.h"
#include "ephy-embed-shell.h"
#include "ephy-file-helpers.h"
#include "uri-tester.h"
#include <glib/gi18n-lib.h>
#include <gtk/gtk.h>
#define EPHY_ADBLOCK_GET_PRIVATE(object) (G_TYPE_INSTANCE_GET_PRIVATE ((object), EPHY_TYPE_ADBLOCK, EphyAdBlockPrivate))
struct EphyAdBlockPrivate
{
UriTester *tester;
};
G_DEFINE_TYPE (EphyAdBlock, ephy_adblock, G_TYPE_OBJECT)
/* Private functions. */
static void
ephy_adblock_init (EphyAdBlock *adblock)
{
LOG ("EphyAdblock initialising");
adblock->priv = EPHY_ADBLOCK_GET_PRIVATE (adblock);
adblock->priv->tester = uri_tester_new ();
}
static void
ephy_adblock_dispose (GObject *object)
{
EphyAdBlock *adblock = NULL;
LOG ("EphyAdblock disposing");
adblock = EPHY_ADBLOCK (object);
g_clear_object (&adblock->priv->tester);
G_OBJECT_CLASS (ephy_adblock_parent_class)->dispose (object);
}
static void
ephy_adblock_class_init (EphyAdBlockClass *klass)
{
GObjectClass *object_class = G_OBJECT_CLASS (klass);
object_class->dispose = ephy_adblock_dispose;
g_type_class_add_private (object_class, sizeof (EphyAdBlockPrivate));
}
gboolean
ephy_adblock_should_load (EphyAdBlock *adblock,
EphyEmbed *embed,
const char *url,
AdUriCheckType type)
{
EphyWebView* web_view = NULL;
const char *address = NULL;
g_return_val_if_fail (adblock != NULL, TRUE);
g_return_val_if_fail (embed != NULL, TRUE);
g_return_val_if_fail (url, TRUE);
web_view = ephy_embed_get_web_view (embed);
address = ephy_web_view_get_address (web_view);
return !uri_tester_test_uri (adblock->priv->tester, url, address, type);
}
|