-
Notifications
You must be signed in to change notification settings - Fork 1
/
browser.py
927 lines (744 loc) · 32.9 KB
/
browser.py
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
# Copyright (C) 2006, Red Hat, Inc.
# Copyright (C) 2007, One Laptop Per Child
# Copyright (C) 2009, Tomeu Vizoso, Simon Schampijer
#
# 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
import os
import time
import re
import logging
from gettext import gettext as _
from base64 import b64decode, b64encode
from gi.repository import GObject
from gi.repository import Gtk
from gi.repository import GLib
from gi.repository import Gdk
from gi.repository import Pango
from gi.repository import WebKit2
from gi.repository import Soup
from gi.repository import GConf
from sugar3.activity import activity
from sugar3.graphics import style
from sugar3.graphics.icon import Icon
from sugar3.graphics.alert import Alert, ConfirmationAlert
from widgets import BrowserNotebook
from palettes import ContentInvoker
from filepicker import FilePicker
import globalhistory
from pdfviewer import PDFTabPage
# Sugar is relative to 100x (XO), the web is relative to 72x (desktop) scale
ZOOM_ORIGINAL = style.zoom(100 * 100 / 72) / 100.0
_ZOOM_AMOUNT = 0.1
LIBRARY_PATH = '/usr/share/library-common/index.html'
_WEB_SCHEMES = ['http', 'https', 'ftp', 'file', 'javascript', 'data',
'about', 'gopher', 'mailto']
_NON_SEARCH_REGEX = re.compile('''
(^localhost(\\.[^\s]+)?(:\\d+)?(/.*)?$|
^[0-9]+\\.[0-9]+\\.[0-9]+\\.[0-9]$|
^::[0-9a-f:]*$| # IPv6 literals
^[0-9a-f:]+:[0-9a-f:]*$| # IPv6 literals
^[^\\.\s]+\\.[^\\.\s]+.*$| # foo.bar...
^https?://[^/\\.\s]+.*$|
^about:.*$|
^data:.*$|
^file:.*$)
''', re.VERBOSE)
_HOSTNAME_REGEX = re.compile('[a-z]+://([^/]+)/.*')
DEFAULT_ERROR_PAGE = os.path.join(activity.get_bundle_path(),
'data/error_page.tmpl')
HOME_PAGE_GCONF_KEY = '/desktop/sugar/scratch_browser/home_page'
TAB_BROWSER = 'browser'
TAB_PDF = 'pdf'
_sugar_version = None
def get_sugar_version():
global _sugar_version
if _sugar_version is None:
if 'SUGAR_VERSION' in os.environ:
version = os.environ['SUGAR_VERSION']
major, minor = version.split('.')[0:2]
# use the last stable version
_sugar_version = '%s.%s' % (major, int(minor) - int(minor) % 2)
else:
logging.error('SUGAR_VERSION env variable not found')
_sugar_version = '0.100'
return _sugar_version
class TabbedView(BrowserNotebook):
__gtype_name__ = 'TabbedView'
__gsignals__ = {
'focus-url-entry': (GObject.SignalFlags.RUN_FIRST,
None,
([])),
}
def __init__(self, activity):
self._activity = activity
BrowserNotebook.__init__(self)
self.props.show_border = False
self.props.scrollable = True
# Used to connect and disconnect functions when 'switch-page'
self._browser = None
self._load_status_changed_hid = None
self.connect('size-allocate', self.__size_allocate_cb)
self.connect('page-added', self.__page_added_cb)
self.connect('page-removed', self.__page_removed_cb)
self.connect_after('switch-page', self.__switch_page_cb)
self.add_tab()
self._update_closing_buttons()
self._update_tab_sizes()
def __switch_page_cb(self, tabbed_view, page, page_num):
if tabbed_view.get_n_pages():
self._connect_to_browser(tabbed_view.props.current_browser)
def _connect_to_browser(self, browser):
if self._browser is not None:
self._browser.disconnect(self._load_status_changed_hid)
self._browser = browser
self._load_status_changed_hid = self._browser.connect(
'load-changed', self.__load_changed_cb)
def normalize_or_autosearch_url(self, url):
"""Normalize the url input or return a url for search.
We use SoupURI as an indication of whether the value given in url
is not something we want to search; we only do that, though, if
the address has a web scheme, because SoupURI will consider any
string: as a valid scheme, and we will end up prepending http://
to it.
This code is borrowed from Epiphany.
url -- input string that can be normalized to an url or serve
as search
Return: a string containing a valid url
"""
def has_web_scheme(address):
if address == '':
return False
scheme, sep, after = address.partition(':')
if sep == '':
return False
return scheme in _WEB_SCHEMES
soup_uri = None
effective_url = None
if has_web_scheme(url):
try:
soup_uri = Soup.URI.new(url)
except TypeError:
pass
if soup_uri is None and not _NON_SEARCH_REGEX.match(url):
# Get the user's LANG to use as default language of
# the results
locale = os.environ.get('LANG', '')
language_location = locale.split('.', 1)[0].lower()
language = language_location.split('_')[0]
# If the string doesn't look like an URI, let's search it:
url_search = 'http://www.google.com/search?' \
'q=%(query)s&ie=UTF-8&oe=UTF-8&hl=%(language)s'
query_param = Soup.form_encode_hash({'q': url})
# [2:] here is getting rid of 'q=':
effective_url = url_search % {'query': query_param[2:],
'language': language}
else:
if has_web_scheme(url):
effective_url = url
else:
effective_url = 'http://' + url
return effective_url
def __size_allocate_cb(self, widget, allocation):
self._update_tab_sizes()
def __page_added_cb(self, notebook, child, pagenum):
self._update_closing_buttons()
self._update_tab_sizes()
def __page_removed_cb(self, notebook, child, pagenum):
if self.get_n_pages():
self._update_closing_buttons()
self._update_tab_sizes()
def __new_tab_cb(self, browser, url):
new_browser = self.add_tab(next_to_current=True)
new_browser.load_uri(url)
new_browser.grab_focus()
def __create_web_view_cb(self, web_view, frame):
new_web_view = Browser(self._activity)
new_web_view.connect('ready-to-show', self.__web_view_ready_cb)
return new_web_view
def __web_view_ready_cb(self, web_view):
"""
Handle new window requested and open it in a new tab.
This callback is called when the WebKit2.WebView request for a
new window to open (for example a call to the Javascript
function 'window.open()' or target="_blank")
web_view -- the new browser there the url of the
window.open() call will be loaded.
This object is created in the signal callback
'create-web-view'.
"""
web_view.connect('new-tab', self.__new_tab_cb)
web_view.connect('web-process-crashed', self.__crashed_cb)
web_view.connect('open-pdf', self.__open_pdf_in_new_tab_cb)
web_view.connect('create', self.__create_web_view_cb)
web_view.connect('enter-fullscreen', self.__enter_fullscreen_cb)
web_view.connect('leave-fullscreen', self.__leave_fullscreen_cb)
web_view.grab_focus()
self._insert_tab_next(web_view)
def __enter_fullscreen_cb(self, browser):
self.props.show_tabs = False
browser.get_toplevel().fullscreen()
def __leave_fullscreen_cb(self, browser):
# Tab showing done by toplevel
browser.get_toplevel().unfullscreen()
def __open_pdf_in_new_tab_cb(self, browser, url):
tab_page = PDFTabPage()
tab_page.browser.connect('new-tab', self.__new_tab_cb)
tab_page.browser.connect('tab-close', self.__tab_close_cb)
label = TabLabel(tab_page.browser)
label.connect('tab-close', self.__tab_close_cb, tab_page)
next_index = self.get_current_page() + 1
self.insert_page(tab_page, label, next_index)
tab_page.show()
label.show()
self.set_current_page(next_index)
tab_page.setup(url)
def __load_changed_cb(self, widget, status):
if self.get_window() is None:
return
if widget.props.estimated_load_progress < 1.0 and widget.props.uri:
self.get_window().set_cursor(Gdk.Cursor(Gdk.CursorType.WATCH))
else:
self.get_window().set_cursor(Gdk.Cursor(Gdk.CursorType.LEFT_PTR))
def __crashed_cb(self, browser):
self.get_window().set_cursor(Gdk.Cursor(Gdk.CursorType.LEFT_PTR))
uri = browser.cached_uri
logging.error('WebKit2 WebView at uri %r has crashed', uri)
self.close_tab(browser.get_parent())
alert = Alert(title=_('This tab has crashed Browse: %s') % uri,
msg=_('If you reopen the tab, it may just crash again'))
alert.add_button(Gtk.ResponseType.OK, _('Reopen'))
alert.add_button(Gtk.ResponseType.CANCEL, _('Disregard'))
alert.connect('response', self.__crashed_alert_cb, uri)
self._activity.add_alert(alert)
def __crashed_alert_cb(self, alert, response_id, uri):
self._activity.remove_alert(alert)
if response_id == Gtk.ResponseType.OK:
browser = self.add_tab()
browser.props.uri = uri
def add_tab(self, next_to_current=False):
browser = Browser(self._activity)
browser.connect('new-tab', self.__new_tab_cb)
browser.connect('web-process-crashed', self.__crashed_cb)
browser.connect('enter-fullscreen', self.__enter_fullscreen_cb)
browser.connect('leave-fullscreen', self.__leave_fullscreen_cb)
browser.connect('open-pdf', self.__open_pdf_in_new_tab_cb)
browser.connect('ready-to-show', self.__web_view_ready_cb)
browser.connect('create', self.__create_web_view_cb)
if next_to_current:
self._insert_tab_next(browser)
else:
self._append_tab(browser)
self.emit('focus-url-entry')
return browser
def _insert_tab_next(self, browser):
tab_page = TabPage(browser)
label = TabLabel(browser)
label.connect('tab-close', self.__tab_close_cb, tab_page)
next_index = self.get_current_page() + 1
self.insert_page(tab_page, label, next_index)
tab_page.show()
self.set_current_page(next_index)
def _append_tab(self, browser):
tab_page = TabPage(browser)
label = TabLabel(browser)
label.connect('tab-close', self.__tab_close_cb, tab_page)
self.append_page(tab_page, label)
tab_page.show()
self.set_current_page(-1)
def on_add_tab(self, gobject, uri):
browser = self.add_tab()
if uri is not None:
browser.load_uri(uri)
def close_tab(self, tab_page=None):
if self.get_n_pages() == 1:
return
if tab_page is None:
tab_page = self.get_nth_page(self.get_current_page())
if isinstance(tab_page, PDFTabPage):
tab_page.cancel_download()
# ensure that a tab opened because of click on
# <a href="something" target="name">this</a>
# can be closed and then opened again
# (WebKit is keeping the WebView object alive)
tab_page.props.browser.destroy()
# FIXME: above causes log warnings about signal handlers that
# were connected to the destroyed WebView object.
self.remove_page(self.page_num(tab_page))
current_page = self.get_nth_page(self.get_current_page())
current_page.props.browser.grab_focus()
def __tab_close_cb(self, label, tab_page):
self.close_tab(tab_page)
def _update_tab_sizes(self):
"""Update tab widths based in the amount of tabs."""
n_pages = self.get_n_pages()
canvas_size = self.get_allocation()
allowed_size = canvas_size.width
if n_pages == 1:
# use half of the whole space
tab_expand = False
tab_new_size = int(allowed_size / 2)
elif n_pages <= 8: # ensure eight tabs
tab_expand = True # use all the space available by tabs
tab_new_size = -1
else:
# scroll the tab toolbar if there are more than 8 tabs
tab_expand = False
tab_new_size = (allowed_size / 8)
for page_idx in range(n_pages):
page = self.get_nth_page(page_idx)
label = self.get_tab_label(page)
self.child_set_property(page, 'tab-expand', tab_expand)
label.update_size(tab_new_size)
def _update_closing_buttons(self):
"""Prevent closing the last non-PDF tab"""
pages_html = []
pages_pdf = []
for page_idx in range(self.get_n_pages()):
page = self.get_nth_page(page_idx)
if isinstance(page, PDFTabPage):
pages_pdf.append(page)
else:
pages_html.append(page)
if len(pages_html) == 1:
for page in pages_html:
self.get_tab_label(page).hide_close_button()
else:
for page in pages_pdf + pages_html:
self.get_tab_label(page).show_close_button()
def load_homepage(self, ignore_gconf=False):
browser = self.current_browser
uri_homepage = None
if not ignore_gconf:
client = GConf.Client.get_default()
uri_homepage = client.get_string(HOME_PAGE_GCONF_KEY)
if uri_homepage is not None:
browser.load_uri(uri_homepage)
elif os.path.isfile(LIBRARY_PATH):
browser.load_uri('file://' + LIBRARY_PATH)
else:
default_page = os.path.join(activity.get_bundle_path(),
"scratch/index.html")
browser.load_uri('file://' + default_page)
browser.grab_focus()
def set_homepage(self):
uri = self.current_browser.get_uri()
client = GConf.Client.get_default()
client.set_string(HOME_PAGE_GCONF_KEY, uri)
def reset_homepage(self):
client = GConf.Client.get_default()
client.unset(HOME_PAGE_GCONF_KEY)
def _get_current_browser(self):
if self.get_n_pages():
return self.get_nth_page(self.get_current_page()).browser
else:
return None
current_browser = GObject.property(type=object,
getter=_get_current_browser)
def get_legacy_history(self):
tab_histories = []
for index in xrange(0, self.get_n_pages()):
tab_page = self.get_nth_page(index)
tab_histories.append(tab_page.browser.get_legacy_history())
return tab_histories
def set_legacy_history(self, tab_histories, currents):
if tab_histories and isinstance(tab_histories[0], dict):
# Old format, no tabs
tab_histories = [tab_histories]
currents = [currents]
while self.get_n_pages():
self.remove_page(self.get_n_pages() - 1)
def is_pdf_history(tab_history):
return (len(tab_history) == 1 and
tab_history[0]['url'].lower().endswith('pdf'))
for tab_history, current in zip(tab_histories, currents):
if is_pdf_history(tab_history):
url = tab_history[0]['url']
tab_page = PDFTabPage()
tab_page.browser.connect('new-tab', self.__new_tab_cb)
tab_page.browser.connect('tab-close', self.__tab_close_cb)
label = TabLabel(tab_page.browser)
label.connect('tab-close', self.__tab_close_cb, tab_page)
self.append_page(tab_page, label)
tab_page.show()
label.show()
tab_page.setup(url, title=tab_history[0]['title'])
else:
browser = Browser(self._activity)
browser.connect('new-tab', self.__new_tab_cb)
browser.connect('enter-fullscreen', self.__enter_fullscreen_cb)
browser.connect('leave-fullscreen', self.__leave_fullscreen_cb)
browser.connect('open-pdf', self.__open_pdf_in_new_tab_cb)
browser.connect('ready-to-show', self.__web_view_ready_cb)
browser.connect('create', self.__create_web_view_cb)
self._append_tab(browser)
browser.set_legacy_history(tab_history, current)
def get_state(self):
state = []
for index in xrange(0, self.get_n_pages()):
tab_page = self.get_nth_page(index)
type_name = TAB_BROWSER
if isinstance(tab_page, PDFTabPage):
type_name = TAB_PDF
state.append({
'type': type_name,
'state': tab_page.browser.get_state()})
return state
def set_session_state(self, states):
while self.get_n_pages():
self.remove_page(self.get_n_pages() - 1)
for state in states:
if state['type'] == TAB_PDF:
tab_page = PDFTabPage(state=state['state'])
tab_page.browser.connect('new-tab', self.__new_tab_cb)
tab_page.browser.connect('tab-close', self.__tab_close_cb)
label = TabLabel(tab_page.browser)
label.connect('tab-close', self.__tab_close_cb, tab_page)
self.append_page(tab_page, label)
tab_page.show()
label.show()
elif state['type'] == TAB_BROWSER:
browser = Browser(self._activity, state=state['state'])
browser.connect('new-tab', self.__new_tab_cb)
browser.connect('enter-fullscreen', self.__enter_fullscreen_cb)
browser.connect('leave-fullscreen', self.__leave_fullscreen_cb)
browser.connect('open-pdf', self.__open_pdf_in_new_tab_cb)
browser.connect('ready-to-show', self.__web_view_ready_cb)
browser.connect('create', self.__create_web_view_cb)
browser.connect('web-process-crashed', self.__crashed_cb)
self._append_tab(browser)
else:
logging.error('Encountered unknown tab state %r', state)
def is_current_page_pdf(self):
index = self.get_current_page()
current_page = self.get_nth_page(index)
return isinstance(current_page, PDFTabPage)
class TabPage(Gtk.ScrolledWindow):
__gtype_name__ = 'BrowseTabPage'
def __init__(self, browser):
GObject.GObject.__init__(self)
self._browser = browser
self.add(browser)
browser.show()
def _get_browser(self):
return self._browser
browser = GObject.property(type=object,
getter=_get_browser)
class TabLabel(Gtk.HBox):
__gtype_name__ = 'BrowseTabLabel'
__gsignals__ = {
'tab-close': (GObject.SignalFlags.RUN_FIRST,
None,
([])),
}
def __init__(self, browser):
GObject.GObject.__init__(self)
browser.connect('notify::title', self.__title_changed_cb)
browser.connect('load-changed', self.__load_changed_cb)
self._title = _('Untitled')
self._label = Gtk.Label(label=self._title)
self._label.set_ellipsize(Pango.EllipsizeMode.END)
self._label.set_alignment(0, 0.5)
self.pack_start(self._label, True, True, 0)
self._label.show()
close_tab_icon = Icon(icon_name='browse-close-tab')
button = Gtk.Button()
button.props.relief = Gtk.ReliefStyle.NONE
button.props.focus_on_click = False
icon_box = Gtk.HBox()
icon_box.pack_start(close_tab_icon, True, False, 0)
button.add(icon_box)
button.connect('clicked', self.__button_clicked_cb)
button.set_name('browse-tab-close')
self.pack_start(button, False, True, 0)
close_tab_icon.show()
icon_box.show()
button.show()
self._close_button = button
def update_size(self, size):
self.set_size_request(size, -1)
def hide_close_button(self):
self._close_button.hide()
def show_close_button(self):
self._close_button.show()
def __button_clicked_cb(self, button):
self.emit('tab-close')
def __title_changed_cb(self, widget, param):
title = widget.props.title
if not title:
title = os.path.basename(widget.props.uri)
self._label.set_text(title)
self._title = title
def __load_changed_cb(self, widget, status):
if status == WebKit2.LoadEvent.FINISHED:
if widget.props.title is None:
self._label.set_text(_('Untitled'))
self._title = _('Untitled')
else:
self._label.set_text(_('Loading...'))
class Browser(WebKit2.WebView):
__gtype_name__ = 'Browser'
__gsignals__ = {
'new-tab': (GObject.SignalFlags.RUN_FIRST,
None,
([str])),
'open-pdf': (GObject.SignalFlags.RUN_FIRST,
None,
([str])),
'security-status-changed': (GObject.SignalFlags.RUN_FIRST,
None,
([])),
}
CURRENT_SUGAR_VERSION = get_sugar_version()
SECURITY_STATUS_SECURE = 1
SECURITY_STATUS_INSECURE = 2
def __init__(self, activity, state=None):
WebKit2.WebView.__init__(self)
self._activity = activity
web_settings = self.get_settings()
# "Experimental" features that Epiphany enabled by default
web_settings.props.enable_webgl = True
web_settings.props.enable_webaudio = True
# Add SugarLabs user agent:
identifier = ' SugarLabs/' + self.CURRENT_SUGAR_VERSION
web_settings.props.user_agent += identifier
self.set_settings(web_settings)
# This property is used to set the title immediatly the user
# presses Enter on the URL Entry
self.loading_uri = None
self.security_status = None
# Reference to the global history and callbacks to handle it:
self._global_history = globalhistory.get_global_history()
self.connect('load-changed', self.__load_changed_cb)
self.connect('notify::title', self.__title_changed_cb)
self.connect('decide-policy', self.__decide_policy_cb)
self.connect('permission-request', self.__permission_request_cb)
self.connect('run-file-chooser', self.__run_file_chooser)
self.connect('load-failed', self.__load_failed_cb)
self._inject_media_style = False
self.props.zoom_level = ZOOM_ORIGINAL
ContentInvoker(self)
if state is not None:
gbytes = GLib.Bytes(b64decode(state))
session_state = WebKit2.WebViewSessionState(gbytes)
self.restore_session_state(session_state)
# this is what epiphany does:
# https://github.com/GNOME/epiphany/blob/
# 04e7811c32ba8a2c980a77aac1316b77f0969057/src/ephy-session.c#L280
bf_list = self.get_back_forward_list()
item = bf_list.get_current_item()
if item is not None:
self.go_to_back_forward_list_item(item)
# we use this if the browser crashes
self.cached_uri = None
def get_state(self):
try:
state = self.get_session_state()
gbytes = state.serialize()
# JSON results in utf8-decoding, so it needs to be good data
return b64encode(gbytes.get_data())
except:
return "" # graceful degradation in case of old WebKit2
def get_legacy_history(self):
"""Return the browsing history of this browser."""
back_forward_list = self.get_back_forward_list()
items_list = self._items_history_as_list(back_forward_list)
# If this is an empty tab, return an empty history:
if len(items_list) == 1 and items_list[0] is None:
return []
history = []
for item in items_list:
history.append({'url': item.get_uri(),
'title': item.get_title()})
return history
def set_legacy_history(self, history, current):
"""
Restore the browsing history for this browser.
Since the legacy history format is not loadable by WebKit2,
this function is DEPRECATED
"""
current_item = current['history_index']
current_uri = history[current_item]['url']
self.load_uri(current_uri)
def get_history_index(self):
"""Return the index of the current item in the history."""
back_forward_list = self.get_back_forward_list()
history_list = self._items_history_as_list(back_forward_list)
current_item = back_forward_list.get_current_item()
return history_list.index(current_item)
def set_history_index(self, index):
"""Go to the item in the history specified by the index."""
back_forward_list = self.get_back_forward_list()
current_item = index - back_forward_list.get_length()
item = back_forward_list.get_nth_item(current_item)
if item is not None:
self.go_to_back_forward_list_item(item)
def _items_history_as_list(self, history):
"""Return a list with the items of a WebKit2.WebBackForwardList."""
all_items = []
for item in reversed(history.get_back_list()):
all_items.append(item)
all_items.append(history.get_current_item())
for item in history.get_forward_list():
all_items.append(item)
return all_items
def get_source(self, async_cb, async_err_cb):
data_source = self.get_main_frame().get_data_source()
data = data_source.get_data()
if data_source.is_loading() or data is None:
async_err_cb()
temp_path = os.path.join(activity.get_activity_root(), 'instance')
file_path = os.path.join(temp_path, '%i' % time.time())
file_handle = file(file_path, 'w')
file_handle.write(data.str)
file_handle.close()
async_cb(file_path)
def open_new_tab(self, url):
self.emit('new-tab', url)
def __run_file_chooser(self, browser, request):
picker = FilePicker(self)
chosen = picker.run()
picker.destroy()
if chosen:
request.select_files([chosen])
elif hasattr(request, 'cancel'):
# WebKit2 only
request.cancel()
return True
def __load_changed_cb(self, widget, status):
if status <= WebKit2.LoadEvent.COMMITTED:
# Add the url to the global history or update it.
uri = self.get_uri()
self._global_history.add_page(uri)
self.cached_uri = self.props.uri
if status == WebKit2.LoadEvent.COMMITTED:
# Update the security status.
bool_, cert, errors = widget.get_tls_info()
if cert:
if not errors:
self.security_status = self.SECURITY_STATUS_SECURE
else:
self.security_status = self.SECURITY_STATUS_INSECURE
else:
self.security_status = None
self.emit('security-status-changed')
def __title_changed_cb(self, widget, param):
"""Update title in global history."""
uri = self.get_uri()
if self.props.title is not None:
title = self.props.title
if not isinstance(title, unicode):
title = unicode(title, 'utf-8')
self._global_history.set_page_title(uri, title)
def __decide_policy_cb(self, webview, policy_decision, decision_type):
"""Handle downloads and PDF files."""
if decision_type != WebKit2.PolicyDecisionType.RESPONSE:
return False
response = WebKit2.ResponsePolicyDecision.get_response(policy_decision)
mimetype = WebKit2.URIResponse.get_mime_type(response)
if mimetype == 'application/pdf':
self.emit('open-pdf', response.get_uri())
policy_decision.ignore()
return True
elif mimetype == 'audio/x-vorbis+ogg' or mimetype == 'audio/mpeg':
self._inject_media_style = True
elif not self.can_show_mime_type(mimetype):
policy_decision.download()
return True
return False
def __load_failed_cb(self, web_view, event, uri, web_error):
if web_error.code == WebKit2.NetworkError.CANCELLED:
# User pressed the stop button - not a real error
return True
# Don't show error page if the load was interrupted by policy
# change or the request is going to be handled by a
# plugin. For example, if a file was requested for download or
# an .ogg file is going to be played.
if web_error.code in (
WebKit2.PolicyError.FRAME_LOAD_INTERRUPTED_BY_POLICY_CHANGE,
WebKit2.PluginError.WILL_HANDLE_LOAD):
if self._inject_media_style:
css_style_file = open(os.path.join(activity.get_bundle_path(),
"data/media-controls.css"))
css_style = css_style_file.read().replace('\n', '')
inject_style_script = \
"var style = document.createElement('style');" \
"style.innerHTML = '%s';" \
"document.body.appendChild(style);" % css_style
web_view.execute_script(inject_style_script)
return True
data = {
'raw_error': str(web_error),
'page_title': _('This web page could not be loaded'),
'title': _('This web page could not be loaded'),
'message': _('"%s" could not be loaded. Please check for '
'typing errors, and make sure you are connected '
'to the Internet.') % uri,
'btn_value': _('Try again'),
'url': uri,
}
html = open(DEFAULT_ERROR_PAGE, 'r').read() % data
web_view.load_alternate_html(html, uri, uri)
return True
def _get_permission_name(self, request):
if hasattr(WebKit2, 'GeolocationPermissionRequest') and \
isinstance(request, WebKit2.GeolocationPermissionRequest):
return _('access to your location')
if hasattr(WebKit2, 'NotificationPermissionRequest') and \
isinstance(request, WebKit2.NotificationPermissionRequest):
return _('to display notifications in the frame')
# Should never be reached
return type(request).__name__
def __permission_request_cb(self, webview, request):
description = self._get_permission_name(request)
site = webview.get_uri()
match = _HOSTNAME_REGEX.match(site)
if match:
site = match.group(1)
alert = ConfirmationAlert()
alert.props.title = _('Allow %s to %s?') % \
(site, description)
alert.props.msg = _(
'You can change your choice later by reloading the page')
alert.connect('response', self.__permission_request_alert_cb, request)
self._activity.add_alert(alert)
# Allow async handeling
return True
def __permission_request_alert_cb(self, alert, response_id, request):
self._activity.remove_alert(alert)
if response_id == Gtk.ResponseType.OK:
request.allow()
elif response_id == Gtk.ResponseType.CANCEL:
request.deny()
def can_query_editing_commands(self):
return True
def zoom_in(self):
self.props.zoom_level = self.props.zoom_level + _ZOOM_AMOUNT
def zoom_out(self):
self.props.zoom_level = self.props.zoom_level - _ZOOM_AMOUNT
class PopupDialog(Gtk.Window):
def __init__(self):
GObject.GObject.__init__(self)
self.set_type_hint(Gdk.WindowTypeHint.DIALOG)
border = style.GRID_CELL_SIZE
self.set_default_size(Gdk.Screen.width() - border * 2,
Gdk.Screen.height() - border * 2)
self.view = WebKit2.WebView()
self.view.connect('notify::visibility', self.__notify_visibility_cb)
self.add(self.view)
self.view.realize()
def __notify_visibility_cb(self, web_view, pspec):
if self.view.props.visibility:
self.view.show()
self.show()