Mercurial > libervia-backend
comparison sat_frontends/jp/cmd_avatar.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 | 7e8ca7c1429a |
children | fee60f17ebac |
comparison
equal
deleted
inserted
replaced
3027:ff5bcb12ae60 | 3028:ab2696e34d29 |
---|---|
16 | 16 |
17 # You should have received a copy of the GNU Affero General Public License | 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/>. | 18 # along with this program. If not, see <http://www.gnu.org/licenses/>. |
19 | 19 |
20 | 20 |
21 import base | 21 from . import base |
22 import os | 22 import os |
23 import os.path | 23 import os.path |
24 from sat.core.i18n import _ | 24 from sat.core.i18n import _ |
25 from sat_frontends.jp.constants import Const as C | 25 from sat_frontends.jp.constants import Const as C |
26 from sat.tools import config | 26 from sat.tools import config |
45 | 45 |
46 def start(self): | 46 def start(self): |
47 """Send files to jabber contact""" | 47 """Send files to jabber contact""" |
48 path = self.args.image_path | 48 path = self.args.image_path |
49 if not os.path.exists(path): | 49 if not os.path.exists(path): |
50 self.disp(_(u"file [{}] doesn't exist !").format(path), error=True) | 50 self.disp(_("file [{}] doesn't exist !").format(path), error=True) |
51 self.host.quit(1) | 51 self.host.quit(1) |
52 path = os.path.abspath(path) | 52 path = os.path.abspath(path) |
53 self.host.bridge.avatarSet( | 53 self.host.bridge.avatarSet( |
54 path, self.profile, callback=self._avatarCb, errback=self._avatarEb | 54 path, self.profile, callback=self._avatarCb, errback=self._avatarEb |
55 ) | 55 ) |
71 host, "get", use_verbose=True, help=_("retrieve avatar of an entity") | 71 host, "get", use_verbose=True, help=_("retrieve avatar of an entity") |
72 ) | 72 ) |
73 self.need_loop = True | 73 self.need_loop = True |
74 | 74 |
75 def add_parser_options(self): | 75 def add_parser_options(self): |
76 self.parser.add_argument("jid", type=base.unicode_decoder, help=_("entity")) | 76 self.parser.add_argument("jid", help=_("entity")) |
77 self.parser.add_argument( | 77 self.parser.add_argument( |
78 "-s", "--show", action="store_true", help=_(u"show avatar") | 78 "-s", "--show", action="store_true", help=_("show avatar") |
79 ) | 79 ) |
80 | 80 |
81 def showImage(self, path): | 81 def showImage(self, path): |
82 sat_conf = config.parseMainConf() | 82 sat_conf = config.parseMainConf() |
83 cmd = config.getConfig(sat_conf, "jp", "image_cmd") | 83 cmd = config.getConfig(sat_conf, "jp", "image_cmd") |
98 | 98 |
99 webbrowser.open(path) | 99 webbrowser.open(path) |
100 | 100 |
101 def _avatarGetCb(self, avatar_path): | 101 def _avatarGetCb(self, avatar_path): |
102 if not avatar_path: | 102 if not avatar_path: |
103 self.disp(_(u"No avatar found."), 1) | 103 self.disp(_("No avatar found."), 1) |
104 self.host.quit(C.EXIT_NOT_FOUND) | 104 self.host.quit(C.EXIT_NOT_FOUND) |
105 | 105 |
106 self.disp(avatar_path) | 106 self.disp(avatar_path) |
107 if self.args.show: | 107 if self.args.show: |
108 self.showImage(avatar_path) | 108 self.showImage(avatar_path) |