appmenus: add qvm-sync-appmenus --regenerate-only
This is especially useful when something goes wrong (like accidentally removing entries).
This commit is contained in:
parent
ef47bda417
commit
90b18a1ec1
@ -462,3 +462,23 @@ class AppmenusExtension(qubes.ext.Extension):
|
|||||||
'netvm-' + AppmenusSubdirs.whitelist):
|
'netvm-' + AppmenusSubdirs.whitelist):
|
||||||
if os.path.exists(os.path.join(vm.dir_path, whitelist)):
|
if os.path.exists(os.path.join(vm.dir_path, whitelist)):
|
||||||
yield os.path.join(vm.dir_path, whitelist)
|
yield os.path.join(vm.dir_path, whitelist)
|
||||||
|
|
||||||
|
def appmenus_update(self, vm):
|
||||||
|
'''Update (regenerate) desktop files and icons for this VM and (in
|
||||||
|
case of template) child VMs'''
|
||||||
|
self.appicons_create(vm)
|
||||||
|
self.appmenus_create(vm)
|
||||||
|
if hasattr(vm, 'appvms'):
|
||||||
|
for child_vm in vm.appvms:
|
||||||
|
try:
|
||||||
|
self.appicons_create(child_vm)
|
||||||
|
self.appmenus_create(child_vm, refresh_cache=False)
|
||||||
|
except Exception as e:
|
||||||
|
child_vm.log.error("Failed to recreate appmenus for "
|
||||||
|
"'{0}': {1}".format(child_vm.name,
|
||||||
|
str(e)))
|
||||||
|
subprocess.call(['xdg-desktop-menu', 'forceupdate'])
|
||||||
|
if 'KDE_SESSION_UID' in os.environ:
|
||||||
|
subprocess.call([
|
||||||
|
'kbuildsycoca' + os.environ.get('KDE_SESSION_VERSION',
|
||||||
|
'4')])
|
||||||
|
@ -45,6 +45,11 @@ parser.add_argument('--force-rpc',
|
|||||||
action='store_true', default=False,
|
action='store_true', default=False,
|
||||||
help="Force to start a new RPC call, even if called from existing one")
|
help="Force to start a new RPC call, even if called from existing one")
|
||||||
|
|
||||||
|
parser.add_argument('--regenerate-only',
|
||||||
|
action='store_true', default=False,
|
||||||
|
help='Only regenerate appmenus entries, do not synchronize with system '
|
||||||
|
'in template')
|
||||||
|
|
||||||
# TODO offline mode
|
# TODO offline mode
|
||||||
|
|
||||||
# fields required to be present (and verified) in retrieved desktop file
|
# fields required to be present (and verified) in retrieved desktop file
|
||||||
@ -237,6 +242,7 @@ def create_template(path, values):
|
|||||||
desktop_file.write(desktop_entry)
|
desktop_file.write(desktop_entry)
|
||||||
desktop_file.close()
|
desktop_file.close()
|
||||||
|
|
||||||
|
|
||||||
def process_appmenus_templates(appmenusext, vm, appmenus):
|
def process_appmenus_templates(appmenusext, vm, appmenus):
|
||||||
old_umask = os.umask(002)
|
old_umask = os.umask(002)
|
||||||
|
|
||||||
@ -305,6 +311,28 @@ def process_appmenus_templates(appmenusext, vm, appmenus):
|
|||||||
os.umask(old_umask)
|
os.umask(old_umask)
|
||||||
|
|
||||||
|
|
||||||
|
def retrieve_appmenus_templates(vm, use_stdin=True):
|
||||||
|
'''Retrieve appmenus from the VM. If not running in offline mode,
|
||||||
|
additionally retrieve application icons and store them into
|
||||||
|
:py:metch:`template_icons_dir`.
|
||||||
|
|
||||||
|
Returns: dict of desktop entries, each being dict itself.
|
||||||
|
'''
|
||||||
|
if hasattr(vm, 'template'):
|
||||||
|
raise qubes.exc.QubesException(
|
||||||
|
"To sync appmenus for template based VM, do it on template instead")
|
||||||
|
|
||||||
|
if not vm.is_running():
|
||||||
|
raise qubes.exc.QubesVMNotRunningError(vm,
|
||||||
|
"Appmenus can be retrieved only from running VM")
|
||||||
|
|
||||||
|
new_appmenus = get_appmenus(vm if not use_stdin else None)
|
||||||
|
|
||||||
|
if len(new_appmenus) == 0:
|
||||||
|
raise qubes.exc.QubesException("No appmenus received, terminating")
|
||||||
|
return new_appmenus
|
||||||
|
|
||||||
|
|
||||||
def main(args=None):
|
def main(args=None):
|
||||||
env_vmname = os.environ.get("QREXEC_REMOTE_DOMAIN")
|
env_vmname = os.environ.get("QREXEC_REMOTE_DOMAIN")
|
||||||
|
|
||||||
@ -318,39 +346,12 @@ def main(args=None):
|
|||||||
if vm is None:
|
if vm is None:
|
||||||
parser.error("You must specify at least the VM name!")
|
parser.error("You must specify at least the VM name!")
|
||||||
|
|
||||||
if hasattr(vm, 'template'):
|
|
||||||
raise qubes.exc.QubesException(
|
|
||||||
"To sync appmenus for template based VM, do it on template instead")
|
|
||||||
|
|
||||||
#TODO if not options.offline_mode and not vm.is_running():
|
|
||||||
if not vm.is_running():
|
|
||||||
raise qubes.exc.QubesVMNotRunningError(vm,
|
|
||||||
"Appmenus can be retrieved only from running VM")
|
|
||||||
|
|
||||||
# TODO if not options.offline_mode and env_vmname is None or
|
|
||||||
# options.force_rpc:
|
|
||||||
if env_vmname is None or args.force_rpc:
|
if env_vmname is None or args.force_rpc:
|
||||||
new_appmenus = get_appmenus(vm)
|
use_stdin = False
|
||||||
else:
|
else:
|
||||||
new_appmenus = get_appmenus(None)
|
use_stdin = True
|
||||||
|
|
||||||
if len(new_appmenus) == 0:
|
|
||||||
raise qubes.exc.QubesException("No appmenus received, terminating")
|
|
||||||
|
|
||||||
appmenusext = qubesappmenus.AppmenusExtension()
|
appmenusext = qubesappmenus.AppmenusExtension()
|
||||||
|
if not args.regenerate_only:
|
||||||
process_appmenus_templates(appmenusext, vm, new_appmenus)
|
new_appmenus = retrieve_appmenus_templates(vm, use_stdin=use_stdin)
|
||||||
|
process_appmenus_templates(appmenusext, vm, new_appmenus)
|
||||||
appmenusext.appicons_create(vm)
|
appmenusext.appmenus_update(vm)
|
||||||
appmenusext.appmenus_create(vm)
|
|
||||||
if hasattr(vm, 'appvms'):
|
|
||||||
for child_vm in vm.appvms:
|
|
||||||
try:
|
|
||||||
appmenusext.appicons_create(child_vm)
|
|
||||||
appmenusext.appmenus_create(child_vm, refresh_cache=False)
|
|
||||||
except Exception as e:
|
|
||||||
child_vm.log.error("Failed to recreate appmenus for "
|
|
||||||
"'{0}': {1}".format(child_vm.name, str(e)))
|
|
||||||
subprocess.call(['xdg-desktop-menu', 'forceupdate'])
|
|
||||||
if 'KDE_SESSION_UID' in os.environ:
|
|
||||||
subprocess.call(['kbuildsycoca' + os.environ.get('KDE_SESSION_VERSION', '4')])
|
|
||||||
|
Loading…
Reference in New Issue
Block a user