/usr/share/nautilus-python/extensions/nautilus-admin.py is in nautilus-admin 1.1.3-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 | # Nautilus Admin - Extension for Nautilus to do administrative operations
# Copyright (C) 2015-2017 Bruno Nova <brunomb.nova@gmail.com>
# 2016 frmdstryr <frmdstryr@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 3 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, see <http://www.gnu.org/licenses/>.
import os, subprocess
from gi import require_version
require_version('Gtk', '3.0')
require_version('Nautilus', '3.0')
from gi.repository import Nautilus, GObject
from gettext import gettext, locale, bindtextdomain, textdomain
ROOT_UID = 0
NAUTILUS_PATH="/usr/bin/nautilus"
GEDIT_PATH="/usr/bin/gedit"
class NautilusAdmin(Nautilus.MenuProvider, GObject.GObject):
"""Simple Nautilus extension that adds some administrative (root) actions to
the right-click menu, using GNOME's new admin backend."""
def __init__(self):
pass
def get_file_items(self, window, files):
"""Returns the menu items to display when one or more files/folders are
selected."""
# Don't show when already running as root, or when more than 1 file is selected
if os.geteuid() == ROOT_UID or len(files) != 1:
return
file = files[0]
# Add the menu items
items = []
self._setup_gettext();
self.window = window
if file.get_uri_scheme() == "file": # must be a local file/directory
if file.is_directory():
if os.path.exists(NAUTILUS_PATH):
items += [self._create_nautilus_item(file)]
else:
if os.path.exists(GEDIT_PATH):
items += [self._create_gedit_item(file)]
return items
def get_background_items(self, window, file):
"""Returns the menu items to display when no file/folder is selected
(i.e. when right-clicking the background)."""
# Don't show when already running as root
if os.geteuid() == ROOT_UID:
return
# Add the menu items
items = []
self._setup_gettext();
self.window = window
if file.is_directory() and file.get_uri_scheme() == "file":
if os.path.exists(NAUTILUS_PATH):
items += [self._create_nautilus_item(file)]
return items
def _setup_gettext(self):
"""Initializes gettext to localize strings."""
try: # prevent a possible exception
locale.setlocale(locale.LC_ALL, "")
except:
pass
bindtextdomain("nautilus-admin", "/usr/share/locale")
textdomain("nautilus-admin")
def _create_nautilus_item(self, file):
"""Creates the 'Open as Administrator' menu item."""
item = Nautilus.MenuItem(name="NautilusAdmin::Nautilus",
label=gettext("Open as A_dministrator"),
tip=gettext("Open this folder with root privileges"))
item.connect("activate", self._nautilus_run, file)
return item
def _create_gedit_item(self, file):
"""Creates the 'Edit as Administrator' menu item."""
item = Nautilus.MenuItem(name="NautilusAdmin::Gedit",
label=gettext("Edit as A_dministrator"),
tip=gettext("Open this file in the text editor with root privileges"))
item.connect("activate", self._gedit_run, file)
return item
def _nautilus_run(self, menu, file):
"""'Open as Administrator' menu item callback."""
uri = file.get_uri()
admin_uri = uri.replace("file://", "admin://")
subprocess.Popen([NAUTILUS_PATH, "--no-desktop", admin_uri])
def _gedit_run(self, menu, file):
"""'Edit as Administrator' menu item callback."""
uri = file.get_uri()
admin_uri = uri.replace("file://", "admin://")
subprocess.Popen([GEDIT_PATH, admin_uri])
|