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
|
# -*- coding: utf-8 -*-
#
# Copyright (C) 2011 Tiger Soldier
#
# This file is part of OSD Lyrics.
#
# OSD Lyrics 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.
#
# OSD Lyrics 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 OSD Lyrics. If not, see <https://www.gnu.org/licenses/>.
#
import io
import os
import os.path
import stat
import sys
import urllib.parse
import urllib.request
import pycurl
__all__ = (
'cmd_exists',
'ensure_path',
'get_config_path',
'http_download',
'path2uri',
)
pycurl.global_init(pycurl.GLOBAL_DEFAULT)
class ProxySettings:
"""
"""
def __init__(self, protocol, host='', port=0, username=None, password=None):
"""
"""
self.protocol = protocol
self.host = host
self.port = port
self.username = username
self.password = password
def get_config_path(filename='', expanduser=True):
"""
Gets the path to save config files
Arguments:
- `filename`: (optional string) The filename of config file.
- `expanduser`: (optional bool) If the leading "~" should be expanded as user's
home directory
>>> get_config_path(expanduser=False)
'~/.config/osdlyrics/'
>>> get_config_path('osdlyrics.conf', False)
'~/.config/osdlyrics/osdlyrics.conf'
"""
path = os.path.join('~/.config/osdlyrics/', filename)
if expanduser:
path = os.path.expanduser(path)
return path
def path2uri(path):
# type: (Text) -> Text
r"""
Converts a path to URI with file sheme.
If a path does not start with a slash (/), it is considered to be an invalid
path and returned directly.
>>> path2uri('/path/to/file')
'file:///path/to/file'
>>> path2uri('file:///path/to/file')
'file:///path/to/file'
>>> path2uri(u'/path/to/file')
'file:///path/to/file'
>>> path2uri('invalid/path')
'invalid/path'
>>> path2uri('/\u8def\u5f84/\u6587\u4ef6')
'file:///%E8%B7%AF%E5%BE%84/%E6%96%87%E4%BB%B6'
"""
path = os.path.expanduser(path)
if not os.path.isabs(path):
return path
return 'file://' + urllib.request.pathname2url(path)
def get_proxy_settings(config=None, conn=None):
r"""
Return proxy settings as a ProxySettings object
The caller must specify either config or conn.
Arguments:
- `config`: A osdlyrics.config.Config object, this object is used to retrive
proxy settings. If it is not set, the caller MUST set conn to a
valid D-Bus connection to create a Config object
- `conn`: A D-Bus connection object, this is used when `config` is not
specified.
"""
if config is None and conn is None:
raise ValueError('Either config or conn must be specified')
if config is None:
config = config.Config(conn)
proxy_type = config.get_string('Download/proxy').lower()
if proxy_type == 'no':
return ProxySettings(protocol='no')
if proxy_type == 'manual':
protocol = config.get_string('Download/proxy-type')
host = config.get_string('Download/proxy-host')
port = config.get_int('Download/proxy-port')
username = config.get_string('Download/proxy-username')
passwd = config.get_string('Download/proxy-password')
return ProxySettings(protocol=protocol, host=host, port=port,
username=username, password=passwd)
if proxy_type == 'system':
return detect_system_proxy()
def detect_system_proxy():
r"""
Detects and return system proxy settings.
Support following proxy settings:
- Environment variables
- GNOME 2 (TODO)
- GNOME 3
- KDE
"""
desktop = detect_desktop_shell()
if desktop == 'gnome' or desktop == 'unity':
proxy = get_gsettings_proxy()
if proxy is not None:
return proxy
elif desktop == 'kde':
proxy = get_kde_proxy()
if proxy is not None:
return proxy
return get_envar_proxy()
def get_envar_proxy():
r"""
Return proxy settings from environment variable `http_proxy`
"""
envars = ['http_proxy', 'HTTP_PROXY']
proxies = [os.environ.get(v) for v in envars]
for proxy in proxies:
if proxy:
if '://' not in proxy:
proxy = 'http://' + proxy
parts = urllib.parse.urlparse(proxy)
if parts.scheme not in ('http', 'socks4', 'socks5', ''):
continue
return ProxySettings(protocol=parts.scheme or 'http',
host=parts.hostname,
port=parts.port or 8080,
username=parts.username,
password=parts.password)
return ProxySettings(protocol='no')
def detect_desktop_shell():
r"""
Detect the currently running destop shell.
Returns: 'gnome', 'unity', 'kde', or 'unknown'
"""
envar = os.environ.get('DESKTOP_SESSION')
if envar.startswith('gnome'):
return 'gnome'
if envar.startswith('kde'):
return 'kde'
if envar.startswith('ubuntu') or envar.startswith('unity'):
return 'unity'
return 'unknown'
def get_gsettings_proxy():
r"""
Return proxy settings from gsetting, this is used in GNOME 3
"""
try:
from gi.repository import Gio
except ImportError:
return None
if not hasattr(Gio, 'Settings'):
return None
if 'org.gnome.system.proxy' not in Gio.Settings.list_schemas():
return None
settings = Gio.Settings('org.gnome.system.proxy')
if settings.get_string('mode') != 'manual':
return ProxySettings(protocol='no')
protocol_map = {'http': 'http', 'socks5': 'socks'}
for protocol, key in protocol_map.items():
settings = Gio.Settings('org.gnome.system.proxy.' + key)
host = settings.get_string('host').strip()
port = settings.get_int('port')
if host == '' or port <= 0:
continue
username = ''
password = ''
if key == 'http' and settings.get_boolean('use-authentication'):
username = settings.get_string('authentication-user')
password = settings.get_string('authentication-password')
return ProxySettings(protocol=protocol,
host=host,
port=port,
username=username,
password=password)
return ProxySettings(protocol='no')
def get_kde_proxy():
r"""
Detect KDE4 proxy settings
"""
try:
import PyKDE4.kdecore as kdecore
except ImportError:
return None
config = kdecore.KConfig('kioslaverc', kdecore.KConfig.NoGlobals)
if not config.hasGroup('Proxy Settings'):
return None
group = config.group('Proxy Settings')
proxy_type, _ = group.readEntry('ProxyType', 0).toInt()
if proxy_type in [0, 2, 3]:
# no proxy, PAC or auto detect in KDE settings. We don't support
# PAC proxy, so treat them as no proxy
return ProxySettings('no')
elif proxy_type in [1, 4]:
for key in ['httpProxy', 'socksProxy']:
value = str(group.readEntry(key))
if value.strip():
# KDE 4.8 uses whitespace to seperate port and hostname
value = value.replace(' ', ':')
if '://' not in value:
value = 'http://' + value
parts = urllib.parse.urlparse(value)
host = parts.hostname
port = parts.port
if host is not None and host.strip() != '' and \
port is not None and 0 < port < 65536:
protocolmap = {'httpProxy': 'http',
'socksProxy': 'socks5'}
return ProxySettings(protocolmap[key],
host=host,
port=port)
return ProxySettings('no')
def http_download(url, port=0, method='GET', params={}, headers={}, timeout=15, proxy=None):
# type: (Text, int, Text, Union[bytes, Dict[Text, Any]], Dict[Text, Any], int, Any) -> Tuple[int, bytes]
r"""
Helper function to download files from website
This function will apply proxy settings and deal redirections automatically.
To apply proxy settings, pass an ProxySettings object as the `proxy` parameter.
If `'User-Agent'` is not set in `headers`, it will be set to `'OSD Lyrics'`.
Arguments:
- `url`: The url of the content. Must be a bytes or an ascii-encodable unicode.
- `port`: (optional) The port.
- `method`: (optional) The HTTP method to download contents. Available values
are `'POST'` or `'GET'`. The default value is `'GET'`.
- `params`: (optional) The parameters of the request. It is either a dict or bytes.
If it is a dict, it will be utf8-urlencoded. If `method` is `'GET'`,
`params` will be append to the url as the param part. If `method` is
`'POST'`, `params` will be added to request body as post data.
- `headers`: (optional) A dict of HTTP headers.
- `proxy`: (optional) A ProxySettings object to sepcify the proxy to use.
>>> code, content = http_download('http://www.python.org/')
>>> code
200
>>> b'Python' in content
True
"""
c = pycurl.Curl()
buf = io.BytesIO()
c.setopt(pycurl.NOSIGNAL, 1)
c.setopt(pycurl.DNS_USE_GLOBAL_CACHE, 0)
c.setopt(pycurl.FOLLOWLOCATION, 1)
c.setopt(pycurl.MAXREDIRS, 5)
c.setopt(pycurl.WRITEFUNCTION, buf.write)
if isinstance(params, dict):
params = urllib.parse.urlencode(params)
if method == 'GET' and params:
url = url + ('/' if '/' not in url else '') + ('?' if '?' not in url else '&') + params
elif method == 'POST':
c.setopt(pycurl.POST, 1)
if params:
c.setopt(pycurl.POSTFIELDS, params)
c.setopt(pycurl.POSTFIELDSIZE, len(params))
c.setopt(pycurl.URL, url)
if 0 < port < 65536:
c.setopt(pycurl.PORT, port)
real_headers = {'User-Agent': 'OSD Lyrics'}
real_headers.update(headers)
curl_headers = ['%s:%s' % (k, v) for k, v in real_headers.items()]
c.setopt(pycurl.HTTPHEADER, curl_headers)
if proxy is not None and proxy.protocol != 'no':
if proxy.username != '' and proxy.username is not None:
proxyvalue = '%s://%s:%s@%s:%d' % (proxy.protocol,
proxy.username,
proxy.password,
proxy.host,
proxy.port)
else:
proxyvalue = '%s://%s:%d' % (proxy.protocol,
proxy.host,
proxy.port)
c.setopt(pycurl.PROXY, proxyvalue)
else:
c.setopt(pycurl.PROXY, '')
c.perform()
return c.getinfo(pycurl.HTTP_CODE), buf.getvalue()
def ensure_path(path, ignore_file_name=True):
""" Create directories if necessary.
This function tries to create directories for `path`. Unlike `os.makedirs`,
no error will be raised if the leaf directory exists.
Arguments:
- `path`: The path.
- `ignore_file_name`: (optional) If set to `True`, the path to be create will be
the directory part of `path` which is get from `os.path.dirname(path)`.
Otherwise `path` is considered to be path to a directory rather than a file.
The default value is `True`.
"""
if ignore_file_name:
path = os.path.dirname(path)
if os.path.isdir(path):
return
os.makedirs(path)
def find_file_in_dirs(filename, dirs, filter_func=None):
"""
Find file in specified directories. Return a list of full path of found
files
Arguments:
- `filename`: the filename to find
- `dirs`: a list of directory paths
- `filter_func`: a filter function that takes the full path of a file
and returns a boolean value. If `False` is returned by the
function, the path will not be in the returned list.
Default value is None
"""
ret = []
for dir in dirs:
path = os.path.join(dir, filename)
if os.path.isfile(path) and \
(not callable(filter_func) or filter_func(path)):
ret.append(path)
return ret
def cmd_exists(cmd):
"""
Check if a command exists.
>>> cmd_exists('ls')
True
>>> cmd_exists('cmd_not_likely_exists')
False
"""
cmdfiles = find_file_in_dirs(cmd,
os.environ['PATH'].split(':'),
is_exec_file)
return len(cmdfiles) > 0
def is_exec_file(filepath):
"""
Check if a file is executable by current user
"""
try:
st = os.stat(filepath)
except Exception:
return False
uid = os.getuid()
gid = os.getgroups()
if st.st_uid == uid:
return (st.st_mode & stat.S_IXUSR) != 0
if st.st_gid in gid:
return (st.st_mode & stat.S_IXGRP) != 0
return (st.st_mode & stat.S_IXOTH) != 0
if __name__ == '__main__':
import doctest
doctest.testmod()
|