/usr/share/rapid-photo-downloader/rapid/device.py is in rapid-photo-downloader 0.4.11-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 | #!/usr/bin/python
# -*- coding: latin1 -*-
### Copyright (C) 2011-2012 Damon Lynch <damonlynch@gmail.com>
### 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 Street, Fifth Floor, Boston, MA 02110-1301
### USA
import os
import gtk, gio
import multiprocessing
import logging
logger = multiprocessing.get_logger()
import paths
import utilities
from gettext import gettext as _
class Device:
def __init__(self, mount=None, path=None):
self.mount = mount
self.path = path
def get_path(self):
if self.mount:
return self.mount.get_root().get_path()
else:
return self.path
def get_name(self):
if self.mount:
return self.mount.get_name()
else:
return self.path
def get_icon(self, size=16):
if self.mount:
icon = self.mount.get_icon()
else:
folder = gio.File(self.path)
file_info = folder.query_info(gio.FILE_ATTRIBUTE_STANDARD_ICON)
icon = file_info.get_icon()
icontheme = gtk.icon_theme_get_default()
icon_file = None
if isinstance(icon, gio.ThemedIcon):
try:
# on some user's systems, themes do not have icons associated with them
iconinfo = icontheme.choose_icon(icon.get_names(), size, gtk.ICON_LOOKUP_USE_BUILTIN)
icon_file = iconinfo.get_filename()
return gtk.gdk.pixbuf_new_from_file_at_size(icon_file, size, size)
except:
pass
if not icon_file:
return icontheme.load_icon('folder', size, gtk.ICON_LOOKUP_USE_BUILTIN)
class UseDeviceDialog(gtk.Dialog):
"""
Simple dialog window that prompt's the user whether to use a certain
device or not
"""
def __init__(self, parent_window, device, post_choice_callback):
gtk.Dialog.__init__(self, _('Device Detected'), None,
gtk.DIALOG_MODAL | gtk.DIALOG_DESTROY_WITH_PARENT,
(gtk.STOCK_NO, gtk.RESPONSE_CANCEL,
gtk.STOCK_YES, gtk.RESPONSE_OK))
self.post_choice_callback = post_choice_callback
self.set_icon_from_file(paths.share_dir('glade3/rapid-photo-downloader.svg'))
# Translators: for an explanation of what this means, see http://damonlynch.net/rapid/documentation/index.html#usedeviceprompt
prompt_label = gtk.Label(_('Should this device or partition be used to download photos or videos from?'))
prompt_label.set_line_wrap(True)
prompt_hbox = gtk.HBox()
prompt_hbox.pack_start(prompt_label, False, False, padding=6)
device_label = gtk.Label()
device_label.set_markup("<b>%s</b>" % device.get_name())
device_hbox = gtk.HBox()
device_hbox.pack_start(device_label, False, False)
path_label = gtk.Label()
path_label.set_markup("<i>%s</i>" % device.get_path())
path_hbox = gtk.HBox()
path_hbox.pack_start(path_label, False, False)
icon = device.get_icon(size=36)
if icon:
image = gtk.Image()
image.set_from_pixbuf(icon)
# Translators: for an explanation of what this means, see http://damonlynch.net/rapid/documentation/index.html#usedeviceprompt
self.always_checkbutton = gtk.CheckButton(_('_Remember this choice'), True)
if icon:
device_hbox_icon = gtk.HBox(homogeneous=False, spacing=6)
device_hbox_icon.pack_start(image, False, False, padding = 6)
device_vbox = gtk.VBox(homogeneous=True, spacing=6)
device_vbox.pack_start(device_hbox, False, False)
device_vbox.pack_start(path_hbox, False, False)
device_hbox_icon.pack_start(device_vbox, False, False)
self.vbox.pack_start(device_hbox_icon, padding = 6)
else:
self.vbox.pack_start(device_hbox, padding=6)
self.vbox.pack_start(path_hbox, padding = 6)
self.vbox.pack_start(prompt_hbox, padding=6)
self.vbox.pack_start(self.always_checkbutton, padding=6)
self.set_border_width(6)
self.set_has_separator(False)
self.set_default_response(gtk.RESPONSE_OK)
self.set_transient_for(parent_window)
self.show_all()
self.device = device
self.connect('response', self.on_response)
def on_response(self, device_dialog, response):
user_selected = False
permanent_choice = self.always_checkbutton.get_active()
if response == gtk.RESPONSE_OK:
user_selected = True
logger.info("%s selected for downloading from", self.device.get_name())
if permanent_choice:
logger.info("This device or partition will always be used to download from")
else:
logger.info("%s rejected as a download device", self.device.get_name())
if permanent_choice:
logger.info("This device or partition will never be used to download from")
self.post_choice_callback(self, user_selected, permanent_choice,
self.device)
def is_DCIM_device(path):
""" Returns true if directory specifies media with photos on it"""
test_path = os.path.join(path, "DCIM")
return utilities.is_directory(test_path)
|