/var/lib/gnumed/server/pycommon/gmMimeLib.py is in gnumed-server 19.6-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | # -*- coding: utf-8 -*-
"""This module encapsulates mime operations.
"""
#=======================================================================================
__author__ = "Karsten Hilbert <Karsten.Hilbert@gmx.net>"
__license__ = "GPL"
# stdlib
import sys
import os
import mailcap
import mimetypes
import subprocess
import shutil
import logging
# GNUmed
if __name__ == '__main__':
sys.path.insert(0, '../../')
import gmShellAPI, gmTools, gmCfg2
_log = logging.getLogger('gm.docs')
#=======================================================================================
def guess_mimetype(aFileName = None):
"""Guess mime type of arbitrary file.
filenames are supposed to be in Unicode
"""
worst_case = "application/octet-stream"
# 1) use Python libextractor
try:
import extractor
xtract = extractor.Extractor()
props = xtract.extract(filename = aFileName)
for prop, val in props:
if (prop == 'mimetype') and (val != worst_case):
return val
except ImportError:
_log.exception('Python wrapper for libextractor not installed.')
ret_code = -1
# 2) use "file" system command
# -i get mime type
# -b don't display a header
mime_guesser_cmd = u'file -i -b "%s"' % aFileName
# this only works on POSIX with 'file' installed (which is standard, however)
# it might work on Cygwin installations
aPipe = os.popen(mime_guesser_cmd.encode(sys.getfilesystemencoding()), 'r')
if aPipe is None:
_log.debug("cannot open pipe to [%s]" % mime_guesser_cmd)
else:
pipe_output = aPipe.readline().replace('\n', '').strip()
ret_code = aPipe.close()
if ret_code is None:
_log.debug('[%s]: <%s>' % (mime_guesser_cmd, pipe_output))
if pipe_output not in [u'', worst_case]:
return pipe_output
else:
_log.error('[%s] on %s (%s): failed with exit(%s)' % (mime_guesser_cmd, os.name, sys.platform, ret_code))
# 3) use "extract" shell level libextractor wrapper
mime_guesser_cmd = 'extract -p mimetype "%s"' % aFileName
aPipe = os.popen(mime_guesser_cmd.encode(sys.getfilesystemencoding()), 'r')
if aPipe is None:
_log.debug("cannot open pipe to [%s]" % mime_guesser_cmd)
else:
pipe_output = aPipe.readline()[11:].replace('\n', '').strip()
ret_code = aPipe.close()
if ret_code is None:
_log.debug('[%s]: <%s>' % (mime_guesser_cmd, pipe_output))
if pipe_output not in [u'', worst_case]:
return pipe_output
else:
_log.error('[%s] on %s (%s): failed with exit(%s)' % (mime_guesser_cmd, os.name, sys.platform, ret_code))
# If we and up here we either have an insufficient systemwide
# magic number file or we suffer from a deficient operating system
# alltogether. It can't get much worse if we try ourselves.
_log.info("OS level mime detection failed, falling back to built-in magic")
import gmMimeMagic
mime_type = gmTools.coalesce(gmMimeMagic.file(aFileName), worst_case)
del gmMimeMagic
_log.debug('"%s" -> <%s>' % (aFileName, mime_type))
return mime_type
#-----------------------------------------------------------------------------------
def get_viewer_cmd(aMimeType = None, aFileName = None, aToken = None):
"""Return command for viewer for this mime type complete with this file"""
if aFileName is None:
_log.error("You should specify a file name for the replacement of %s.")
# last resort: if no file name given replace %s in original with literal '%s'
# and hope for the best - we certainly don't want the module default "/dev/null"
aFileName = """%s"""
mailcaps = mailcap.getcaps()
(viewer, junk) = mailcap.findmatch(mailcaps, aMimeType, key = 'view', filename = '%s' % aFileName)
# FIXME: we should check for "x-token" flags
_log.debug("<%s> viewer: [%s]" % (aMimeType, viewer))
return viewer
#-----------------------------------------------------------------------------------
def get_editor_cmd(mimetype=None, filename=None):
if filename is None:
_log.error("You should specify a file name for the replacement of %s.")
# last resort: if no file name given replace %s in original with literal '%s'
# and hope for the best - we certainly don't want the module default "/dev/null"
filename = """%s"""
mailcaps = mailcap.getcaps()
(editor, junk) = mailcap.findmatch(mailcaps, mimetype, key = 'edit', filename = '%s' % filename)
# FIXME: we should check for "x-token" flags
_log.debug("<%s> editor: [%s]" % (mimetype, editor))
return editor
#-----------------------------------------------------------------------------------
def guess_ext_by_mimetype(mimetype=''):
"""Return file extension based on what the OS thinks a file of this mimetype should end in."""
# ask system first
ext = mimetypes.guess_extension(mimetype)
if ext is not None:
_log.debug('<%s>: *.%s' % (mimetype, ext))
return ext
_log.error("<%s>: no suitable file extension known to the OS" % mimetype)
# try to help the OS a bit
cfg = gmCfg2.gmCfgData()
ext = cfg.get (
group = u'extensions',
option = mimetype,
source_order = [('user-mime', 'return'), ('system-mime', 'return')]
)
if ext is not None:
_log.debug('<%s>: *.%s (%s)' % (mimetype, ext, candidate))
return ext
_log.error("<%s>: no suitable file extension found in config files" % mimetype)
return ext
#-----------------------------------------------------------------------------------
def guess_ext_for_file(aFile=None):
if aFile is None:
return None
(path_name, f_ext) = os.path.splitext(aFile)
if f_ext != '':
return f_ext
# try to guess one
mime_type = guess_mimetype(aFile)
f_ext = guess_ext_by_mimetype(mime_type)
if f_ext is None:
_log.error('unable to guess file extension for mime type [%s]' % mime_type)
return None
return f_ext
#-----------------------------------------------------------------------------------
_system_startfile_cmd = None
open_cmds = {
'xdg-open': 'xdg-open "%s"', # nascent standard on Linux
'kfmclient': 'kfmclient exec "%s"', # KDE
'gnome-open': 'gnome-open "%s"', # GNOME
'exo-open': 'exo-open "%s"',
'op': 'op "%s"',
'open': 'open "%s"' # MacOSX: "open -a AppName file" (-a allows to override the default app for the file type)
#'run-mailcap'
#'explorer'
}
def _get_system_startfile_cmd(filename):
global _system_startfile_cmd
if _system_startfile_cmd == u'':
return False, None
if _system_startfile_cmd is not None:
return True, _system_startfile_cmd % filename
open_cmd_candidates = ['xdg-open', 'kfmclient', 'gnome-open', 'exo-open', 'op', 'open']
for candidate in open_cmd_candidates:
found, binary = gmShellAPI.detect_external_binary(binary = candidate)
if not found:
continue
_system_startfile_cmd = open_cmds[candidate]
_log.info('detected local startfile cmd: [%s]', _system_startfile_cmd)
return True, _system_startfile_cmd % filename
_system_startfile_cmd = u''
return False, None
#-----------------------------------------------------------------------------------
def convert_file(filename=None, target_mime=None, target_filename=None, target_extension=None):
"""Convert file from one format into another.
target_mime: a mime type
"""
if target_extension is None:
tmp, target_extension = os.path.splitext(target_filename)
base_name = u'gm-convert_file'
paths = gmTools.gmPaths()
local_script = os.path.join(paths.local_base_dir, '..', 'external-tools', base_name)
candidates = [ base_name, local_script ] #, base_name + u'.bat'
found, binary = gmShellAPI.find_first_binary(binaries = candidates)
if not found:
binary = base_name# + r'.bat'
cmd_line = [
binary,
filename,
target_mime,
target_extension.strip('.'),
target_filename
]
_log.debug('converting: %s', cmd_line)
try:
gm_convert = subprocess.Popen(cmd_line)
except OSError:
_log.debug('cannot run <%s(.bat)>', base_name)
return False
gm_convert.communicate()
if gm_convert.returncode != 0:
_log.error('<%s(.bat)> returned [%s], failed to convert', base_name, gm_convert.returncode)
return False
return True
#-----------------------------------------------------------------------------------
def call_viewer_on_file(aFile = None, block=None):
"""Try to find an appropriate viewer with all tricks and call it.
block: try to detach from viewer or not, None means to use mailcap default
"""
# does this file exist, actually ?
try:
open(aFile).close()
except:
_log.exception('cannot read [%s]', aFile)
msg = _('[%s] is not a readable file') % aFile
return False, msg
# try to detect any of the UNIX openers
found, startfile_cmd = _get_system_startfile_cmd(aFile)
if found:
if gmShellAPI.run_command_in_shell(command = startfile_cmd, blocking = block):
return True, ''
mime_type = guess_mimetype(aFile)
viewer_cmd = get_viewer_cmd(mime_type, aFile)
if viewer_cmd is not None:
if gmShellAPI.run_command_in_shell(command=viewer_cmd, blocking=block):
return True, ''
_log.warning("no viewer found via standard mailcap system")
if os.name == "posix":
_log.warning("you should add a viewer for this mime type to your mailcap file")
_log.info("let's see what the OS can do about that")
# does the file already have an extension ?
(path_name, f_ext) = os.path.splitext(aFile)
# no
if f_ext in ['', '.tmp']:
# try to guess one
f_ext = guess_ext_by_mimetype(mime_type)
if f_ext is None:
_log.warning("no suitable file extension found, trying anyway")
file_to_display = aFile
f_ext = '?unknown?'
else:
file_to_display = aFile + f_ext
shutil.copyfile(aFile, file_to_display)
# yes
else:
file_to_display = aFile
file_to_display = os.path.normpath(file_to_display)
_log.debug("file %s <type %s> (ext %s) -> file %s" % (aFile, mime_type, f_ext, file_to_display))
try:
os.startfile(file_to_display)
except:
_log.exception('os.startfile(%s) failed', file_to_display)
msg = _("Unable to display the file:\n\n"
" [%s]\n\n"
"Your system does not seem to have a (working)\n"
"viewer registered for the file type\n"
" [%s]"
) % (file_to_display, mime_type)
return False, msg
# don't kill the file from under the (possibly async) viewer
# if file_to_display != aFile:
# os.remove(file_to_display)
return True, ''
#=======================================================================================
if __name__ == "__main__":
if len(sys.argv) > 1 and sys.argv[1] == u'test':
filename = sys.argv[2]
_get_system_startfile_cmd(filename)
print _system_startfile_cmd
#print guess_mimetype(filename)
#print get_viewer_cmd(guess_mimetype(filename), filename)
#print guess_ext_by_mimetype(mimetype=filename)
|