Mercurial > libervia-desktop-kivy
annotate src/cagou/plugins/plugin_transfer_android_photo.py @ 97:5d2289127bb7
menu (upload): better menu using dedicated widget:
upload menu now use a decicated widget instead of context menu.
The menu take half the size of the main window, and show each upload option as an icon. Use can select upload or P2P sending, and a short text message explains how the file will be transmitted.
author | Goffi <goffi@goffi.org> |
---|---|
date | Thu, 29 Dec 2016 23:47:07 +0100 |
parents | src/cagou/plugins/plugin_upload_android_photo.py@3e3c097b07b7 |
children |
rev | line source |
---|---|
93 | 1 #!/usr/bin/python |
2 # -*- coding: utf-8 -*- | |
3 | |
4 # Cagou: desktop/mobile frontend for Salut à Toi XMPP client | |
5 # Copyright (C) 2016 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 | |
21 from sat.core import log as logging | |
22 log = logging.getLogger(__name__) | |
23 from sat.core.i18n import _ | |
24 import sys | |
25 import os | |
26 import os.path | |
27 import time | |
28 if sys.platform == "android": | |
95
3e3c097b07b7
upload: added voice plugin (for Android)
Goffi <goffi@goffi.org>
parents:
93
diff
changeset
|
29 from plyer import camera |
93 | 30 from jnius import autoclass |
31 Environment = autoclass('android.os.Environment') | |
32 else: | |
33 import tempfile | |
34 | |
35 | |
36 PLUGIN_INFO = { | |
37 "name": _(u"take photo"), | |
38 "main": "AndroidPhoto", | |
39 "platforms": ('android',), | |
40 "external": True, | |
41 "description": _(u"upload a photo from photo application"), | |
97
5d2289127bb7
menu (upload): better menu using dedicated widget:
Goffi <goffi@goffi.org>
parents:
95
diff
changeset
|
42 "icon_medium": u"{media}/icons/muchoslava/png/camera_off_50.png", |
93 | 43 } |
44 | |
45 | |
46 class AndroidPhoto(object): | |
47 | |
48 def __init__(self, callback, cancel_cb): | |
49 self.callback = callback | |
50 self.cancel_cb = cancel_cb | |
51 filename = time.strftime("%Y-%m-%d_%H:%M:%S.jpg", time.gmtime()) | |
52 tmp_dir = self.getTmpDir() | |
53 tmp_file = os.path.join(tmp_dir, filename) | |
54 log.debug(u"Picture will be saved to {}".format(tmp_file)) | |
55 camera.take_picture(tmp_file, self.callback) | |
56 # we don't delete the file, as it is nice to keep it locally | |
57 | |
58 def getTmpDir(self): | |
59 if sys.platform == "android": | |
60 dcim_path = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DCIM).getAbsolutePath() | |
61 return dcim_path | |
62 else: | |
63 return tempfile.mkdtemp() |