From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 8BDEF139085 for ; Fri, 23 Dec 2016 08:37:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C281CE0DE5; Fri, 23 Dec 2016 08:37:23 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 91609E0DE5 for ; Fri, 23 Dec 2016 08:37:18 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C1F0A3411B5 for ; Fri, 23 Dec 2016 08:37:17 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 203B624EC for ; Fri, 23 Dec 2016 08:37:14 +0000 (UTC) From: "Brian Dolbec" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Dolbec" Message-ID: <1482478947.62dddedd384f5251b36636ff12927784b7cdf5b3.dolsen@gentoo> Subject: [gentoo-commits] proj/gentoo-keys:gsoc-2016 commit in: gkeys/gkeys/ X-VCS-Repository: proj/gentoo-keys X-VCS-Files: gkeys/gkeys/action_map.py gkeys/gkeys/actions.py X-VCS-Directories: gkeys/gkeys/ X-VCS-Committer: dolsen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: 62dddedd384f5251b36636ff12927784b7cdf5b3 X-VCS-Branch: gsoc-2016 Date: Fri, 23 Dec 2016 08:37:14 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: ff30d2a2-8319-4a7a-8757-7f0d594bb22f X-Archives-Hash: 4fd9689443778c2d3df6164f00a95ddf commit: 62dddedd384f5251b36636ff12927784b7cdf5b3 Author: aeroniero33 gmail com> AuthorDate: Thu Jun 9 22:44:16 2016 +0000 Commit: Brian Dolbec gentoo org> CommitDate: Fri Dec 23 07:42:27 2016 +0000 URL: https://gitweb.gentoo.org/proj/gentoo-keys.git/commit/?id=62dddedd Created the update-seed function gkeys/gkeys/action_map.py | 19 ++++++++++++++++++- gkeys/gkeys/actions.py | 14 +++++++++++++- 2 files changed, 31 insertions(+), 2 deletions(-) diff --git a/gkeys/gkeys/action_map.py b/gkeys/gkeys/action_map.py index f372a5c..1bd0625 100644 --- a/gkeys/gkeys/action_map.py +++ b/gkeys/gkeys/action_map.py @@ -15,7 +15,8 @@ from collections import OrderedDict Seed_Actions = ['----seeds----', 'add-seed', 'fetch-seed', - 'list-seed', 'list-seedfiles', 'move-seed', 'remove-seed'] + 'update-seed', 'list-seed', 'list-seedfiles', 'move-seed', + 'remove-seed'] Key_Actions = ['----keys-----', 'check-key', 'installed', 'install-key', 'list-key', 'send-key', 'refresh-key', 'remove-key', @@ -380,6 +381,22 @@ Found Failures: Fetch operation completed ''', }), + ('update-seed', { + 'func': 'updateseed', + 'options': ['category', 'nick', '1file', 'dest', 'signature', + 'timestamp'], + 'desc': '''Update the selected seed file(s)''', + 'long_desc': '''Update the selected seed file(s)''', + 'example': '''$ gkeys update-seed -C gentoo-devs + + Gkey task results: + Verification succeeded.: /home/brian/gpg-test/seeds/gentoo-devs.seeds + Key info...............: Gentoo-Linux Gentoo-keys Project Signing Key , 0xA41DBBD9151C3FC7 + category, nick.....: gentoo gkeys + + Update operation completed +''', + }), ('list-seed', { 'func': 'listseed', 'options': ['category', 'nick', 'name', 'fingerprint', 'keys', diff --git a/gkeys/gkeys/actions.py b/gkeys/gkeys/actions.py index 6ce4199..0720079 100644 --- a/gkeys/gkeys/actions.py +++ b/gkeys/gkeys/actions.py @@ -95,7 +95,19 @@ class Actions(ActionBase): messages.append("") messages.append("Fetch operation completed") return (False not in success, messages) - + + def updateseed(self, args): + '''Updates seeds of a selected file''' + self.logger.debug(_unicode("ACTIONS: updateseed; args: %s") + % _unicode(args)) + fetch_success, fetch_messages = self.fetchseed(args) + if fetch_success is not True: + return (False, fetch_messages) + install_success, install_messages = self.installkey(args) + if install_success is not True: + return (False, install_messages) + messages = fetch_messages + [install_messages] + return (True, messages) def addseed(self, args): '''Add or replace a key in the selected seed file'''