/usr/share/pyshared/remuco/remos.py is in remuco-base 0.9.6-2.
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 | # =============================================================================
#
# Remuco - A remote control system for media players.
# Copyright (C) 2006-2010 by the Remuco team, see AUTHORS.
#
# This file is part of Remuco.
#
# Remuco 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.
#
# Remuco 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 Remuco. If not, see <http://www.gnu.org/licenses/>.
#
# =============================================================================
"""Module to abstract platform specific code."""
from __future__ import with_statement
import os
from os.path import join as opj
import re
import sys
from remuco import log
# =============================================================================
# platform detection
# =============================================================================
linux = sys.platform.startswith("linux")
windows = sys.platform.startswith("win")
mac = sys.platform == "darwin"
# =============================================================================
# helpers
# =============================================================================
def _real_path(p):
"""Expand a path to a variable-free absolute path."""
return os.path.abspath(os.path.expanduser(os.path.expandvars(p)))
# =============================================================================
# locations
# =============================================================================
# media_dirs:
# Maps some mimetypes to a list of locations which typically contain files
# of a specific mimetype. For those mimetypes not mapped, `user_home` may
# be used as a fallback.
if linux:
import xdg.BaseDirectory
user_home = os.getenv("HOME")
user_config_dir = xdg.BaseDirectory.xdg_config_home
user_cache_dir = xdg.BaseDirectory.xdg_cache_home
media_dirs = {}
try:
with open(opj(user_config_dir, "user-dirs.dirs")) as fp:
_udc = fp.read()
except IOError, e:
log.warning("failed to load user dirs config (%s)" % e)
media_dirs["audio"] = ["~/Music"]
media_dirs["video"] = ["~/Videos"]
else:
m = re.search(r'XDG_MUSIC_DIR="([^"]+)', _udc)
media_dirs["audio"] = [m and m.groups()[0] or "~/Music"]
m = re.search(r'XDG_VIDEOS_DIR="([^"]+)', _udc)
media_dirs["video"] = [m and m.groups()[0] or "~/Video"]
elif windows:
from win32com.shell import shell, shellcon
user_home = shell.SHGetFolderPath(0, shellcon.CSIDL_PERSONAL, 0, 0)
user_config_dir = shell.SHGetFolderPath(0, shellcon.CSIDL_APPDATA,0, 0)
user_cache_dir = shell.SHGetFolderPath(0, shellcon.CSIDL_LOCAL_APPDATA, 0, 0)
media_dirs = {}
media_dirs["audio"] = [shell.SHGetFolderPath(0, shellcon.CSIDL_MYMUSIC, 0, 0),
shell.SHGetFolderPath(0, shellcon.CSIDL_COMMON_MUSIC, 0, 0)]
media_dirs["video"] = [shell.SHGetFolderPath(0, shellcon.CSIDL_MYVIDEO, 0, 0),
shell.SHGetFolderPath(0, shellcon.CSIDL_COMMON_VIDEO, 0, 0)]
elif mac:
raise NotImplementedError
else:
assert False
# sanitize locations:
for mime_type, dirs in list(media_dirs.items()): # list prevents iter/edit conflicts
media_dirs[mime_type] = [_real_path(p) for p in dirs]
media_dirs[mime_type] = [p for p in dirs if os.path.exists(p)]
# =============================================================================
# user notifications
# =============================================================================
if linux:
import dbus
from dbus.exceptions import DBusException
def notify(title, text):
"""Notify the user that a new device has been loggend."""
try:
bus = dbus.SessionBus()
except DBusException, e:
log.error("no dbus session bus (%s)" % e)
return
try:
proxy = bus.get_object("org.freedesktop.Notifications",
"/org/freedesktop/Notifications")
notid = dbus.Interface(proxy, "org.freedesktop.Notifications")
except DBusException, e:
log.error("failed to connect to notification daemon (%s)" % e)
return
try:
caps = notid.GetCapabilities()
except DBusException, e:
return
if not caps or "body-markup" not in caps:
text = text.replace("<b>", "")
text = text.replace("</b>", "")
try:
notid.Notify("Remuco", 0, "phone", title, text, [], {}, 15)
except DBusException, e:
log.warning("user notification failed (%s)" % e)
return
else:
def notify(title, text):
log.info("%s: %s" % (title, text))
# TODO: implementations for mac and win
# =============================================================================
# zeroconf
# =============================================================================
_ZC_TYPE = "_remuco._tcp"
if linux:
import dbus
from dbus.mainloop.glib import DBusGMainLoop
from dbus.exceptions import DBusException
import gobject
dbus.set_default_main_loop(DBusGMainLoop())
# Avahi DBus constants (defined here to prevent python-avahi dependency)
_DBA_NAME = "org.freedesktop.Avahi"
_DBA_INTERFACE_SERVER = _DBA_NAME + ".Server"
_DBA_PATH_SERVER = "/"
_DBA_INTERFACE_ENTRY_GROUP = _DBA_NAME + ".EntryGroup"
_zc_group = None
def zc_publish(player, port):
"""Publish a service for the given player at the given port."""
zc_unpublish()
log.debug("publishing zeroconf service")
try:
bus = dbus.SystemBus()
obj = bus.get_object(_DBA_NAME, _DBA_PATH_SERVER)
server = dbus.Interface(obj, _DBA_INTERFACE_SERVER)
obj = bus.get_object(_DBA_NAME, server.EntryGroupNew())
group = dbus.Interface(obj, _DBA_INTERFACE_ENTRY_GROUP)
group.AddService(-1, -1, 0, "Remuco %s" % player, _ZC_TYPE, "local",
"", port, "")
group.Commit()
except dbus.DBusException, e:
log.warning("failed to publish zeroconf service (%s)" % e)
group = None
else:
log.debug("published zeroconf service")
global _zc_group
_zc_group = group
def zc_unpublish():
"""Unpublish the previously published service."""
global _zc_group
if _zc_group:
try:
_zc_group.Reset()
except DBusException, e:
log.warning("failed to unpublish zeroconf service (%s)" % e)
_zc_group = None
else:
def zc_publish(player, port):
log.warning("publishing zeroconf services not implemented on this OS")
def zc_unpublish():
pass
|