Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/globalhistory.py
blob: 1ec0a7210f08804b48333bc2aa08f14640014fd0 (plain)
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
# Copyright (C) 2008, Red Hat, Inc.
#
# 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 of the License, 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., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA

from datetime import datetime

from xpcom import components
from xpcom.components import interfaces
from xpcom.server.factory import Factory

import places


class GlobalHistory:
    _com_interfaces_ = interfaces.nsIGlobalHistory, \
                       interfaces.nsIGlobalHistory2, \
                       interfaces.nsIGlobalHistory3

    cid = '{2a53cf28-c48e-4a01-ba18-3d3fef3e2985}'
    description = 'Sugar Global History'

    def __init__(self):
        self._store = places.get_store()

    def addPage(self, url):
        self.addURI(url, False, True, None)

    def isVisited(self, uri):
        place = self._store.lookup_place(uri.spec)
        return place != None

    def addURI(self, uri, redirect, toplevel, referrer):
        place = self._store.lookup_place(uri.spec)
        if place:
            place.visits += 1
            place.last_visit = datetime.now()
            self._store.update_place(place)
        else:
            place = places.Place(uri.spec)
            self._store.add_place(place)

    def setPageTitle(self, uri, title):
        place = self._store.lookup_place(uri.spec)
        if place:
            place.title = title
            self._store.update_place(place)

    def addDocumentRedirect(self, old_channel, new_channel, flags, toplevel):
        pass

    def getURIGeckoFlags(self, uri):
        place = self._store.lookup_place(uri.spec)
        if place:
            return place.gecko_flags
        else:
            return 0

    def setURIGeckoFlags(self, uri, flags):
        place = self._store.lookup_place(uri.spec)
        if place:
            place.gecko_flags = flags
            self._store.update_place(place)


components.registrar.registerFactory(GlobalHistory.cid,
                                     GlobalHistory.description,
                                     '@mozilla.org/browser/global-history;2',
                                     Factory(GlobalHistory))