comparison frontends/src/jp/cmd_profile.py @ 817:c39117d00f35

jp: refactoring: - imports from sat_frontends.jp instead of local imports - added __init__.py - commands now inherits from a base class: each base.CommandBase instance is a subcommand - new arguments are added in CommandBase.add_parser_options methods, starting point si CommandBase.run or CommandBase.connected if a profile connection is needed - commands are exported using a __commands__ variable at the top of the module - sub-subcommand are easily added by using an other CommandBase instance as parent instead of using a Jp instance. In this case, the parent subcommand must be the one exported, and have a subcommands iterable (see cmd_file or cmd_pipe for examples). - options which are often used (like --profile) are automatically added on demand (use_profile=True, use_progress=True) - commands are automatically loaded when there are in a module named cmd_XXX - restored --connect option - restored progress bar - restored getVersion bridge call on jp --version - fixed file and pipe commands - fixed forgotten translations - fixed non SàT compliant docstrings - better about/version dialog
author Goffi <goffi@goffi.org>
date Mon, 10 Feb 2014 13:44:09 +0100
parents frontends/src/jp/profile.py@f8d534ed1d1e
children 308a96bc7c1b
comparison
equal deleted inserted replaced
816:4429bd7d5efb 817:c39117d00f35
1 #! /usr/bin/python
2 # -*- coding: utf-8 -*-
3
4 # jp: a SAT command line tool
5 # Copyright (C) 2009, 2010, 2011, 2012, 2013, 2014 Jérôme Poisson (goffi@goffi.org)
6
7 # This program is free software: you can redistribute it and/or modify
8 # it under the terms of the GNU Affero General Public License as published by
9 # the Free Software Foundation, either version 3 of the License, or
10 # (at your option) any later version.
11
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU Affero General Public License for more details.
16
17 # You should have received a copy of the GNU Affero General Public License
18 # along with this program. If not, see <http://www.gnu.org/licenses/>.
19
20 """This module permits to manage profiles. It can list, create, delete
21 and retrieve informations about a profile."""
22
23 from logging import debug, info, error, warning
24 from sat.core.i18n import _
25 from sat_frontends.jp import base
26 from sat.tools.jid import JID
27
28 __commands__ = ["Profile"]
29
30 PROFILE_HELP = _('The name of the profile')
31
32
33 class ProfileDelete(base.CommandBase):
34 def __init__(self, host):
35 super(ProfileDelete, self).__init__(host, 'delete', use_profile=False, help=_('Delete a profile'))
36
37 def add_parser_options(self):
38 self.parser.add_argument('profile', type=str, help=PROFILE_HELP)
39
40 def run(self):
41 super(ProfileDelete, self).run()
42 if self.args.profile not in self.host.bridge.getProfilesList():
43 error("Profile %s doesn't exist." % self.args.profile)
44 self.host.quit(1)
45 self.host.bridge.deleteProfile(self.args.profile)
46
47
48 class ProfileInfo(base.CommandBase):
49 def __init__(self, host):
50 super(ProfileInfo, self).__init__(host, 'info', use_profile=False, help=_('Get informations about a profile'))
51
52 def add_parser_options(self):
53 self.parser.add_argument('profile', type=str, help=PROFILE_HELP)
54
55 def run(self):
56 super(ProfileInfo, self).run()
57 self.need_loop = True
58
59 def getPassword(password):
60 print "pwd: %s" % password
61 self.host.quit()
62
63 def getJID(jid):
64 print "jid: %s" % jid
65 self.host.bridge.asyncGetParamA("Password", "Connection", profile_key=self.args.profile, callback=getPassword)
66
67 if self.args.profile not in self.host.bridge.getProfilesList():
68 error("Profile %s doesn't exist." % self.args.profile)
69 self.host.quit(1)
70
71 self.host.bridge.asyncGetParamA("JabberID", "Connection", profile_key=self.args.profile, callback=getJID)
72
73
74 class ProfileList(base.CommandBase):
75 def __init__(self, host):
76 super(ProfileList, self).__init__(host, 'list', use_profile=False, help=_('List profiles'))
77
78 def add_parser_options(self):
79 pass
80
81 def run(self):
82 super(ProfileList, self).run()
83 for profile in self.host.bridge.getProfilesList():
84 print profile
85
86
87 class ProfileCreate(base.CommandBase):
88 def __init__(self, host):
89 super(ProfileCreate, self).__init__(host, 'create', use_profile=False, help=_('Create a new profile'))
90
91 def add_parser_options(self):
92 self.parser.add_argument('profile', type=str, help=_('the name of the profile'))
93 self.parser.add_argument('jid', type=str, help=_('the jid of the profile'))
94 self.parser.add_argument('password', type=str, help=_('the password of the profile'))
95
96 def _profile_created(self):
97 self.host.bridge.setParam("JabberID", self.args.jid, "Connection" ,profile_key=self.args.profile)
98 self.host.bridge.setParam("Server", JID(self.args.jid).domain, "Connection", profile_key=self.args.profile)
99 self.host.bridge.setParam("Password", self.args.password, "Connection", profile_key=self.args.profile)
100 self.host.quit()
101
102 def run(self):
103 """Create a new profile"""
104 self.need_loop = True
105 if self.args.profile in self.host.bridge.getProfilesList():
106 error("Profile %s already exists." % self.args.profile)
107 self.host.quit(1)
108 self.host.bridge.asyncCreateProfile(self.args.profile, self._profile_created, None)
109
110
111 class Profile(base.CommandBase):
112 subcommands = (ProfileDelete, ProfileInfo, ProfileList, ProfileCreate)
113
114 def __init__(self, host):
115 super(Profile, self).__init__(host, 'profile', use_profile=False, help=_('Profile commands'))