annotate sat_frontends/jp/cmd_identity.py @ 3028:ab2696e34d29

Python 3 port: /!\ this is a huge commit /!\ starting from this commit, SàT is needs Python 3.6+ /!\ SàT maybe be instable or some feature may not work anymore, this will improve with time This patch port backend, bridge and frontends to Python 3. Roughly this has been done this way: - 2to3 tools has been applied (with python 3.7) - all references to python2 have been replaced with python3 (notably shebangs) - fixed files not handled by 2to3 (notably the shell script) - several manual fixes - fixed issues reported by Python 3 that where not handled in Python 2 - replaced "async" with "async_" when needed (it's a reserved word from Python 3.7) - replaced zope's "implements" with @implementer decorator - temporary hack to handle data pickled in database, as str or bytes may be returned, to be checked later - fixed hash comparison for password - removed some code which is not needed anymore with Python 3 - deactivated some code which needs to be checked (notably certificate validation) - tested with jp, fixed reported issues until some basic commands worked - ported Primitivus (after porting dependencies like urwid satext) - more manual fixes
author Goffi <goffi@goffi.org>
date Tue, 13 Aug 2019 19:08:41 +0200
parents 003b8b4b56a7
children fee60f17ebac
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2254
6297817c3dc9 jp (identity): new identity command to handle the new plugin identity in backend, and maybe other plugins like vcard in the future
Goffi <goffi@goffi.org>
parents:
diff changeset
1 #!/usr/bin/env python2
6297817c3dc9 jp (identity): new identity command to handle the new plugin identity in backend, and maybe other plugins like vcard in the future
Goffi <goffi@goffi.org>
parents:
diff changeset
2 # -*- coding: utf-8 -*-
6297817c3dc9 jp (identity): new identity command to handle the new plugin identity in backend, and maybe other plugins like vcard in the future
Goffi <goffi@goffi.org>
parents:
diff changeset
3
6297817c3dc9 jp (identity): new identity command to handle the new plugin identity in backend, and maybe other plugins like vcard in the future
Goffi <goffi@goffi.org>
parents:
diff changeset
4 # jp: a SàT command line tool
2771
003b8b4b56a7 date update
Goffi <goffi@goffi.org>
parents: 2624
diff changeset
5 # Copyright (C) 2009-2019 Jérôme Poisson (goffi@goffi.org)
2254
6297817c3dc9 jp (identity): new identity command to handle the new plugin identity in backend, and maybe other plugins like vcard in the future
Goffi <goffi@goffi.org>
parents:
diff changeset
6
6297817c3dc9 jp (identity): new identity command to handle the new plugin identity in backend, and maybe other plugins like vcard in the future
Goffi <goffi@goffi.org>
parents:
diff changeset
7 # This program is free software: you can redistribute it and/or modify
6297817c3dc9 jp (identity): new identity command to handle the new plugin identity in backend, and maybe other plugins like vcard in the future
Goffi <goffi@goffi.org>
parents:
diff changeset
8 # it under the terms of the GNU Affero General Public License as published by
6297817c3dc9 jp (identity): new identity command to handle the new plugin identity in backend, and maybe other plugins like vcard in the future
Goffi <goffi@goffi.org>
parents:
diff changeset
9 # the Free Software Foundation, either version 3 of the License, or
6297817c3dc9 jp (identity): new identity command to handle the new plugin identity in backend, and maybe other plugins like vcard in the future
Goffi <goffi@goffi.org>
parents:
diff changeset
10 # (at your option) any later version.
6297817c3dc9 jp (identity): new identity command to handle the new plugin identity in backend, and maybe other plugins like vcard in the future
Goffi <goffi@goffi.org>
parents:
diff changeset
11
6297817c3dc9 jp (identity): new identity command to handle the new plugin identity in backend, and maybe other plugins like vcard in the future
Goffi <goffi@goffi.org>
parents:
diff changeset
12 # This program is distributed in the hope that it will be useful,
6297817c3dc9 jp (identity): new identity command to handle the new plugin identity in backend, and maybe other plugins like vcard in the future
Goffi <goffi@goffi.org>
parents:
diff changeset
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
6297817c3dc9 jp (identity): new identity command to handle the new plugin identity in backend, and maybe other plugins like vcard in the future
Goffi <goffi@goffi.org>
parents:
diff changeset
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
6297817c3dc9 jp (identity): new identity command to handle the new plugin identity in backend, and maybe other plugins like vcard in the future
Goffi <goffi@goffi.org>
parents:
diff changeset
15 # GNU Affero General Public License for more details.
6297817c3dc9 jp (identity): new identity command to handle the new plugin identity in backend, and maybe other plugins like vcard in the future
Goffi <goffi@goffi.org>
parents:
diff changeset
16
6297817c3dc9 jp (identity): new identity command to handle the new plugin identity in backend, and maybe other plugins like vcard in the future
Goffi <goffi@goffi.org>
parents:
diff changeset
17 # You should have received a copy of the GNU Affero General Public License
6297817c3dc9 jp (identity): new identity command to handle the new plugin identity in backend, and maybe other plugins like vcard in the future
Goffi <goffi@goffi.org>
parents:
diff changeset
18 # along with this program. If not, see <http://www.gnu.org/licenses/>.
6297817c3dc9 jp (identity): new identity command to handle the new plugin identity in backend, and maybe other plugins like vcard in the future
Goffi <goffi@goffi.org>
parents:
diff changeset
19
6297817c3dc9 jp (identity): new identity command to handle the new plugin identity in backend, and maybe other plugins like vcard in the future
Goffi <goffi@goffi.org>
parents:
diff changeset
20
3028
ab2696e34d29 Python 3 port:
Goffi <goffi@goffi.org>
parents: 2771
diff changeset
21 from . import base
2254
6297817c3dc9 jp (identity): new identity command to handle the new plugin identity in backend, and maybe other plugins like vcard in the future
Goffi <goffi@goffi.org>
parents:
diff changeset
22 from sat.core.i18n import _
6297817c3dc9 jp (identity): new identity command to handle the new plugin identity in backend, and maybe other plugins like vcard in the future
Goffi <goffi@goffi.org>
parents:
diff changeset
23 from sat_frontends.jp.constants import Const as C
6297817c3dc9 jp (identity): new identity command to handle the new plugin identity in backend, and maybe other plugins like vcard in the future
Goffi <goffi@goffi.org>
parents:
diff changeset
24 from functools import partial
6297817c3dc9 jp (identity): new identity command to handle the new plugin identity in backend, and maybe other plugins like vcard in the future
Goffi <goffi@goffi.org>
parents:
diff changeset
25
6297817c3dc9 jp (identity): new identity command to handle the new plugin identity in backend, and maybe other plugins like vcard in the future
Goffi <goffi@goffi.org>
parents:
diff changeset
26 __commands__ = ["Identity"]
6297817c3dc9 jp (identity): new identity command to handle the new plugin identity in backend, and maybe other plugins like vcard in the future
Goffi <goffi@goffi.org>
parents:
diff changeset
27
6297817c3dc9 jp (identity): new identity command to handle the new plugin identity in backend, and maybe other plugins like vcard in the future
Goffi <goffi@goffi.org>
parents:
diff changeset
28 # TODO: move date parsing to base, it may be useful for other commands
6297817c3dc9 jp (identity): new identity command to handle the new plugin identity in backend, and maybe other plugins like vcard in the future
Goffi <goffi@goffi.org>
parents:
diff changeset
29
6297817c3dc9 jp (identity): new identity command to handle the new plugin identity in backend, and maybe other plugins like vcard in the future
Goffi <goffi@goffi.org>
parents:
diff changeset
30
6297817c3dc9 jp (identity): new identity command to handle the new plugin identity in backend, and maybe other plugins like vcard in the future
Goffi <goffi@goffi.org>
parents:
diff changeset
31 class Get(base.CommandBase):
6297817c3dc9 jp (identity): new identity command to handle the new plugin identity in backend, and maybe other plugins like vcard in the future
Goffi <goffi@goffi.org>
parents:
diff changeset
32 def __init__(self, host):
2624
56f94936df1e code style reformatting using black
Goffi <goffi@goffi.org>
parents: 2562
diff changeset
33 base.CommandBase.__init__(
56f94936df1e code style reformatting using black
Goffi <goffi@goffi.org>
parents: 2562
diff changeset
34 self,
56f94936df1e code style reformatting using black
Goffi <goffi@goffi.org>
parents: 2562
diff changeset
35 host,
56f94936df1e code style reformatting using black
Goffi <goffi@goffi.org>
parents: 2562
diff changeset
36 "get",
56f94936df1e code style reformatting using black
Goffi <goffi@goffi.org>
parents: 2562
diff changeset
37 use_output=C.OUTPUT_DICT,
56f94936df1e code style reformatting using black
Goffi <goffi@goffi.org>
parents: 2562
diff changeset
38 use_verbose=True,
3028
ab2696e34d29 Python 3 port:
Goffi <goffi@goffi.org>
parents: 2771
diff changeset
39 help=_("get identity data"),
2624
56f94936df1e code style reformatting using black
Goffi <goffi@goffi.org>
parents: 2562
diff changeset
40 )
56f94936df1e code style reformatting using black
Goffi <goffi@goffi.org>
parents: 2562
diff changeset
41 self.need_loop = True
2254
6297817c3dc9 jp (identity): new identity command to handle the new plugin identity in backend, and maybe other plugins like vcard in the future
Goffi <goffi@goffi.org>
parents:
diff changeset
42
6297817c3dc9 jp (identity): new identity command to handle the new plugin identity in backend, and maybe other plugins like vcard in the future
Goffi <goffi@goffi.org>
parents:
diff changeset
43 def add_parser_options(self):
2624
56f94936df1e code style reformatting using black
Goffi <goffi@goffi.org>
parents: 2562
diff changeset
44 self.parser.add_argument(
3028
ab2696e34d29 Python 3 port:
Goffi <goffi@goffi.org>
parents: 2771
diff changeset
45 "jid", help=_("entity to check")
2624
56f94936df1e code style reformatting using black
Goffi <goffi@goffi.org>
parents: 2562
diff changeset
46 )
2254
6297817c3dc9 jp (identity): new identity command to handle the new plugin identity in backend, and maybe other plugins like vcard in the future
Goffi <goffi@goffi.org>
parents:
diff changeset
47
6297817c3dc9 jp (identity): new identity command to handle the new plugin identity in backend, and maybe other plugins like vcard in the future
Goffi <goffi@goffi.org>
parents:
diff changeset
48 def identityGetCb(self, data):
6297817c3dc9 jp (identity): new identity command to handle the new plugin identity in backend, and maybe other plugins like vcard in the future
Goffi <goffi@goffi.org>
parents:
diff changeset
49 self.output(data)
6297817c3dc9 jp (identity): new identity command to handle the new plugin identity in backend, and maybe other plugins like vcard in the future
Goffi <goffi@goffi.org>
parents:
diff changeset
50 self.host.quit()
6297817c3dc9 jp (identity): new identity command to handle the new plugin identity in backend, and maybe other plugins like vcard in the future
Goffi <goffi@goffi.org>
parents:
diff changeset
51
6297817c3dc9 jp (identity): new identity command to handle the new plugin identity in backend, and maybe other plugins like vcard in the future
Goffi <goffi@goffi.org>
parents:
diff changeset
52 def start(self):
6297817c3dc9 jp (identity): new identity command to handle the new plugin identity in backend, and maybe other plugins like vcard in the future
Goffi <goffi@goffi.org>
parents:
diff changeset
53 jid_ = self.host.check_jids([self.args.jid])[0]
6297817c3dc9 jp (identity): new identity command to handle the new plugin identity in backend, and maybe other plugins like vcard in the future
Goffi <goffi@goffi.org>
parents:
diff changeset
54 self.host.bridge.identityGet(
6297817c3dc9 jp (identity): new identity command to handle the new plugin identity in backend, and maybe other plugins like vcard in the future
Goffi <goffi@goffi.org>
parents:
diff changeset
55 jid_,
6297817c3dc9 jp (identity): new identity command to handle the new plugin identity in backend, and maybe other plugins like vcard in the future
Goffi <goffi@goffi.org>
parents:
diff changeset
56 self.profile,
6297817c3dc9 jp (identity): new identity command to handle the new plugin identity in backend, and maybe other plugins like vcard in the future
Goffi <goffi@goffi.org>
parents:
diff changeset
57 callback=self.identityGetCb,
2624
56f94936df1e code style reformatting using black
Goffi <goffi@goffi.org>
parents: 2562
diff changeset
58 errback=partial(
56f94936df1e code style reformatting using black
Goffi <goffi@goffi.org>
parents: 2562
diff changeset
59 self.errback,
3028
ab2696e34d29 Python 3 port:
Goffi <goffi@goffi.org>
parents: 2771
diff changeset
60 msg=_("can't get identity data: {}"),
2624
56f94936df1e code style reformatting using black
Goffi <goffi@goffi.org>
parents: 2562
diff changeset
61 exit_code=C.EXIT_BRIDGE_ERRBACK,
56f94936df1e code style reformatting using black
Goffi <goffi@goffi.org>
parents: 2562
diff changeset
62 ),
56f94936df1e code style reformatting using black
Goffi <goffi@goffi.org>
parents: 2562
diff changeset
63 )
2254
6297817c3dc9 jp (identity): new identity command to handle the new plugin identity in backend, and maybe other plugins like vcard in the future
Goffi <goffi@goffi.org>
parents:
diff changeset
64
6297817c3dc9 jp (identity): new identity command to handle the new plugin identity in backend, and maybe other plugins like vcard in the future
Goffi <goffi@goffi.org>
parents:
diff changeset
65
6297817c3dc9 jp (identity): new identity command to handle the new plugin identity in backend, and maybe other plugins like vcard in the future
Goffi <goffi@goffi.org>
parents:
diff changeset
66 class Set(base.CommandBase):
6297817c3dc9 jp (identity): new identity command to handle the new plugin identity in backend, and maybe other plugins like vcard in the future
Goffi <goffi@goffi.org>
parents:
diff changeset
67 def __init__(self, host):
2624
56f94936df1e code style reformatting using black
Goffi <goffi@goffi.org>
parents: 2562
diff changeset
68 super(Set, self).__init__(host, "set", help=_("modify an existing event"))
2254
6297817c3dc9 jp (identity): new identity command to handle the new plugin identity in backend, and maybe other plugins like vcard in the future
Goffi <goffi@goffi.org>
parents:
diff changeset
69
6297817c3dc9 jp (identity): new identity command to handle the new plugin identity in backend, and maybe other plugins like vcard in the future
Goffi <goffi@goffi.org>
parents:
diff changeset
70 def add_parser_options(self):
2624
56f94936df1e code style reformatting using black
Goffi <goffi@goffi.org>
parents: 2562
diff changeset
71 self.parser.add_argument(
56f94936df1e code style reformatting using black
Goffi <goffi@goffi.org>
parents: 2562
diff changeset
72 "-f",
56f94936df1e code style reformatting using black
Goffi <goffi@goffi.org>
parents: 2562
diff changeset
73 "--field",
56f94936df1e code style reformatting using black
Goffi <goffi@goffi.org>
parents: 2562
diff changeset
74 action="append",
56f94936df1e code style reformatting using black
Goffi <goffi@goffi.org>
parents: 2562
diff changeset
75 nargs=2,
56f94936df1e code style reformatting using black
Goffi <goffi@goffi.org>
parents: 2562
diff changeset
76 dest="fields",
3028
ab2696e34d29 Python 3 port:
Goffi <goffi@goffi.org>
parents: 2771
diff changeset
77 metavar=("KEY", "VALUE"),
2624
56f94936df1e code style reformatting using black
Goffi <goffi@goffi.org>
parents: 2562
diff changeset
78 required=True,
3028
ab2696e34d29 Python 3 port:
Goffi <goffi@goffi.org>
parents: 2771
diff changeset
79 help=_("identity field(s) to set"),
2624
56f94936df1e code style reformatting using black
Goffi <goffi@goffi.org>
parents: 2562
diff changeset
80 )
56f94936df1e code style reformatting using black
Goffi <goffi@goffi.org>
parents: 2562
diff changeset
81 self.need_loop = True
2254
6297817c3dc9 jp (identity): new identity command to handle the new plugin identity in backend, and maybe other plugins like vcard in the future
Goffi <goffi@goffi.org>
parents:
diff changeset
82
6297817c3dc9 jp (identity): new identity command to handle the new plugin identity in backend, and maybe other plugins like vcard in the future
Goffi <goffi@goffi.org>
parents:
diff changeset
83 def start(self):
6297817c3dc9 jp (identity): new identity command to handle the new plugin identity in backend, and maybe other plugins like vcard in the future
Goffi <goffi@goffi.org>
parents:
diff changeset
84 fields = dict(self.args.fields)
6297817c3dc9 jp (identity): new identity command to handle the new plugin identity in backend, and maybe other plugins like vcard in the future
Goffi <goffi@goffi.org>
parents:
diff changeset
85 self.host.bridge.identitySet(
6297817c3dc9 jp (identity): new identity command to handle the new plugin identity in backend, and maybe other plugins like vcard in the future
Goffi <goffi@goffi.org>
parents:
diff changeset
86 fields,
6297817c3dc9 jp (identity): new identity command to handle the new plugin identity in backend, and maybe other plugins like vcard in the future
Goffi <goffi@goffi.org>
parents:
diff changeset
87 self.profile,
6297817c3dc9 jp (identity): new identity command to handle the new plugin identity in backend, and maybe other plugins like vcard in the future
Goffi <goffi@goffi.org>
parents:
diff changeset
88 callback=self.host.quit,
2624
56f94936df1e code style reformatting using black
Goffi <goffi@goffi.org>
parents: 2562
diff changeset
89 errback=partial(
56f94936df1e code style reformatting using black
Goffi <goffi@goffi.org>
parents: 2562
diff changeset
90 self.errback,
3028
ab2696e34d29 Python 3 port:
Goffi <goffi@goffi.org>
parents: 2771
diff changeset
91 msg=_("can't set identity data data: {}"),
2624
56f94936df1e code style reformatting using black
Goffi <goffi@goffi.org>
parents: 2562
diff changeset
92 exit_code=C.EXIT_BRIDGE_ERRBACK,
56f94936df1e code style reformatting using black
Goffi <goffi@goffi.org>
parents: 2562
diff changeset
93 ),
56f94936df1e code style reformatting using black
Goffi <goffi@goffi.org>
parents: 2562
diff changeset
94 )
2254
6297817c3dc9 jp (identity): new identity command to handle the new plugin identity in backend, and maybe other plugins like vcard in the future
Goffi <goffi@goffi.org>
parents:
diff changeset
95
6297817c3dc9 jp (identity): new identity command to handle the new plugin identity in backend, and maybe other plugins like vcard in the future
Goffi <goffi@goffi.org>
parents:
diff changeset
96
6297817c3dc9 jp (identity): new identity command to handle the new plugin identity in backend, and maybe other plugins like vcard in the future
Goffi <goffi@goffi.org>
parents:
diff changeset
97 class Identity(base.CommandBase):
6297817c3dc9 jp (identity): new identity command to handle the new plugin identity in backend, and maybe other plugins like vcard in the future
Goffi <goffi@goffi.org>
parents:
diff changeset
98 subcommands = (Get, Set)
6297817c3dc9 jp (identity): new identity command to handle the new plugin identity in backend, and maybe other plugins like vcard in the future
Goffi <goffi@goffi.org>
parents:
diff changeset
99
6297817c3dc9 jp (identity): new identity command to handle the new plugin identity in backend, and maybe other plugins like vcard in the future
Goffi <goffi@goffi.org>
parents:
diff changeset
100 def __init__(self, host):
2624
56f94936df1e code style reformatting using black
Goffi <goffi@goffi.org>
parents: 2562
diff changeset
101 super(Identity, self).__init__(
56f94936df1e code style reformatting using black
Goffi <goffi@goffi.org>
parents: 2562
diff changeset
102 host, "identity", use_profile=False, help=_("identity management")
56f94936df1e code style reformatting using black
Goffi <goffi@goffi.org>
parents: 2562
diff changeset
103 )