Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

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

# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: 

 

# Copyright 2016-2018 Florian Bruhin (The Compiler) <mail@qutebrowser.org> 

# 

# This file is part of qutebrowser. 

# 

# qutebrowser 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 3 of the License, or 

# (at your option) any later version. 

# 

# qutebrowser 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 qutebrowser. If not, see <http://www.gnu.org/licenses/>. 

 

"""Various utilities shared between webpage/webview subclasses.""" 

 

import os 

import html 

import netrc 

 

from PyQt5.QtCore import QUrl 

 

from qutebrowser.config import config 

from qutebrowser.utils import usertypes, message, log, objreg, jinja, utils 

from qutebrowser.mainwindow import mainwindow 

 

 

class CallSuper(Exception): 

"""Raised when the caller should call the superclass instead.""" 

 

 

def custom_headers(): 

"""Get the combined custom headers.""" 

headers = {} 

 

dnt_config = config.val.content.headers.do_not_track 

if dnt_config is not None: 

dnt = b'1' if dnt_config else b'0' 

headers[b'DNT'] = dnt 

headers[b'X-Do-Not-Track'] = dnt 

 

conf_headers = config.val.content.headers.custom 

for header, value in conf_headers.items(): 

headers[header.encode('ascii')] = value.encode('ascii') 

 

accept_language = config.val.content.headers.accept_language 

if accept_language is not None: 

headers[b'Accept-Language'] = accept_language.encode('ascii') 

 

return sorted(headers.items()) 

 

 

def authentication_required(url, authenticator, abort_on): 

"""Ask a prompt for an authentication question.""" 

realm = authenticator.realm() 

if realm: 

msg = '<b>{}</b> says:<br/>{}'.format( 

html.escape(url.toDisplayString()), html.escape(realm)) 

else: 

msg = '<b>{}</b> needs authentication'.format( 

html.escape(url.toDisplayString())) 

urlstr = url.toString(QUrl.RemovePassword | QUrl.FullyEncoded) 

answer = message.ask(title="Authentication required", text=msg, 

mode=usertypes.PromptMode.user_pwd, 

abort_on=abort_on, url=urlstr) 

if answer is not None: 

authenticator.setUser(answer.user) 

authenticator.setPassword(answer.password) 

return answer 

 

 

def javascript_confirm(url, js_msg, abort_on): 

"""Display a javascript confirm prompt.""" 

log.js.debug("confirm: {}".format(js_msg)) 

if config.val.content.javascript.modal_dialog: 

raise CallSuper 

 

msg = 'From <b>{}</b>:<br/>{}'.format(html.escape(url.toDisplayString()), 

html.escape(js_msg)) 

urlstr = url.toString(QUrl.RemovePassword | QUrl.FullyEncoded) 

ans = message.ask('Javascript confirm', msg, 

mode=usertypes.PromptMode.yesno, 

abort_on=abort_on, url=urlstr) 

return bool(ans) 

 

 

def javascript_prompt(url, js_msg, default, abort_on): 

"""Display a javascript prompt.""" 

log.js.debug("prompt: {}".format(js_msg)) 

if config.val.content.javascript.modal_dialog: 

raise CallSuper 

if not config.val.content.javascript.prompt: 

return (False, "") 

 

msg = '<b>{}</b> asks:<br/>{}'.format(html.escape(url.toDisplayString()), 

html.escape(js_msg)) 

urlstr = url.toString(QUrl.RemovePassword | QUrl.FullyEncoded) 

answer = message.ask('Javascript prompt', msg, 

mode=usertypes.PromptMode.text, 

default=default, 

abort_on=abort_on, url=urlstr) 

 

if answer is None: 

return (False, "") 

else: 

return (True, answer) 

 

 

def javascript_alert(url, js_msg, abort_on): 

"""Display a javascript alert.""" 

log.js.debug("alert: {}".format(js_msg)) 

if config.val.content.javascript.modal_dialog: 

raise CallSuper 

 

if not config.val.content.javascript.alert: 

return 

 

msg = 'From <b>{}</b>:<br/>{}'.format(html.escape(url.toDisplayString()), 

html.escape(js_msg)) 

urlstr = url.toString(QUrl.RemovePassword | QUrl.FullyEncoded) 

message.ask('Javascript alert', msg, mode=usertypes.PromptMode.alert, 

abort_on=abort_on, url=urlstr) 

 

 

def javascript_log_message(level, source, line, msg): 

"""Display a JavaScript log message.""" 

logstring = "[{}:{}] {}".format(source, line, msg) 

# Needs to line up with the values allowed for the 

# content.javascript.log setting. 

logmap = { 

'none': lambda arg: None, 

'debug': log.js.debug, 

'info': log.js.info, 

'warning': log.js.warning, 

'error': log.js.error, 

} 

logger = logmap[config.val.content.javascript.log[level.name]] 

logger(logstring) 

 

 

def ignore_certificate_errors(url, errors, abort_on): 

"""Display a certificate error question. 

 

Args: 

url: The URL the errors happened in 

errors: A list of QSslErrors or QWebEngineCertificateErrors 

 

Return: 

True if the error should be ignored, False otherwise. 

""" 

ssl_strict = config.val.content.ssl_strict 

log.webview.debug("Certificate errors {!r}, strict {}".format( 

errors, ssl_strict)) 

 

for error in errors: 

assert error.is_overridable(), repr(error) 

 

if ssl_strict == 'ask': 

err_template = jinja.environment.from_string(""" 

Errors while loading <b>{{url.toDisplayString()}}</b>:<br/> 

<ul> 

{% for err in errors %} 

<li>{{err}}</li> 

{% endfor %} 

</ul> 

""".strip()) 

msg = err_template.render(url=url, errors=errors) 

 

urlstr = url.toString(QUrl.RemovePassword | QUrl.FullyEncoded) 

ignore = message.ask(title="Certificate errors - continue?", text=msg, 

mode=usertypes.PromptMode.yesno, default=False, 

abort_on=abort_on, url=urlstr) 

if ignore is None: 

# prompt aborted 

ignore = False 

return ignore 

elif ssl_strict is False: 

log.webview.debug("ssl_strict is False, only warning about errors") 

for err in errors: 

# FIXME we might want to use warn here (non-fatal error) 

# https://github.com/qutebrowser/qutebrowser/issues/114 

message.error('Certificate error: {}'.format(err)) 

return True 

elif ssl_strict is True: 

return False 

else: 

raise ValueError("Invalid ssl_strict value {!r}".format(ssl_strict)) 

raise utils.Unreachable 

 

 

def feature_permission(url, option, msg, yes_action, no_action, abort_on): 

"""Handle a feature permission request. 

 

Args: 

url: The URL the request was done for. 

option: An option name to check. 

msg: A string like "show notifications" 

yes_action: A callable to call if the request was approved 

no_action: A callable to call if the request was denied 

abort_on: A list of signals which interrupt the question. 

 

Return: 

The Question object if a question was asked, None otherwise. 

""" 

config_val = config.instance.get(option) 

if config_val == 'ask': 

if url.isValid(): 

urlstr = url.toString(QUrl.RemovePassword | QUrl.FullyEncoded) 

text = "Allow the website at <b>{}</b> to {}?".format( 

html.escape(url.toDisplayString()), msg) 

else: 

urlstr = None 

text = "Allow the website to {}?".format(msg) 

 

return message.confirm_async( 

yes_action=yes_action, no_action=no_action, 

cancel_action=no_action, abort_on=abort_on, 

title='Permission request', text=text, url=urlstr) 

elif config_val: 

yes_action() 

return None 

else: 

no_action() 

return None 

 

 

def get_tab(win_id, target): 

"""Get a tab widget for the given usertypes.ClickTarget. 

 

Args: 

win_id: The window ID to open new tabs in 

target: A usertypes.ClickTarget 

""" 

if target == usertypes.ClickTarget.tab: 

win_id = win_id 

bg_tab = False 

elif target == usertypes.ClickTarget.tab_bg: 

win_id = win_id 

bg_tab = True 

elif target == usertypes.ClickTarget.window: 

tabbed_browser = objreg.get('tabbed-browser', scope='window', 

window=win_id) 

window = mainwindow.MainWindow(private=tabbed_browser.private) 

window.show() 

win_id = window.win_id 

bg_tab = False 

else: 

raise ValueError("Invalid ClickTarget {}".format(target)) 

 

tabbed_browser = objreg.get('tabbed-browser', scope='window', 

window=win_id) 

return tabbed_browser.tabopen(url=None, background=bg_tab) 

 

 

def get_user_stylesheet(): 

"""Get the combined user-stylesheet.""" 

css = '' 

stylesheets = config.val.content.user_stylesheets 

 

for filename in stylesheets: 

with open(filename, 'r', encoding='utf-8') as f: 

css += f.read() 

 

if not config.val.scrolling.bar: 

css += '\nhtml > ::-webkit-scrollbar { width: 0px; height: 0px; }' 

 

return css 

 

 

def netrc_authentication(url, authenticator): 

"""Perform authorization using netrc. 

 

Args: 

url: The URL the request was done for. 

authenticator: QAuthenticator object used to set credentials provided. 

 

Return: 

True if netrc found credentials for the URL. 

False otherwise. 

""" 

if 'HOME' not in os.environ: 

# We'll get an OSError by netrc if 'HOME' isn't available in 

# os.environ. We don't want to log that, so we prevent it 

# altogether. 

return False 

user, password = None, None 

try: 

net = netrc.netrc(config.val.content.netrc_file) 

authenticators = net.authenticators(url.host()) 

if authenticators is not None: 

(user, _account, password) = authenticators 

except FileNotFoundError: 

log.misc.debug("No .netrc file found") 

except OSError: 

log.misc.exception("Unable to read the netrc file") 

except netrc.NetrcParseError: 

log.misc.exception("Error when parsing the netrc file") 

 

if user is None: 

return False 

 

authenticator.setUser(user) 

authenticator.setPassword(password) 

 

return True