Mercurial > libervia-web
comparison src/browser/file_tools.py @ 449:981ed669d3b3
/!\ reorganize all the file hierarchy, move the code and launching script to src:
- browser_side --> src/browser
- public --> src/browser_side/public
- libervia.py --> src/browser/libervia_main.py
- libervia_server --> src/server
- libervia_server/libervia.sh --> src/libervia.sh
- twisted --> src/twisted
- new module src/common
- split constants.py in 3 files:
- src/common/constants.py
- src/browser/constants.py
- src/server/constants.py
- output --> html (generated by pyjsbuild during the installation)
- new option/parameter "data_dir" (-d) to indicates the directory containing html and server_css
- setup.py installs libervia to the following paths:
- src/common --> <LIB>/libervia/common
- src/server --> <LIB>/libervia/server
- src/twisted --> <LIB>/twisted
- html --> <SHARE>/libervia/html
- server_side --> <SHARE>libervia/server_side
- LIBERVIA_INSTALL environment variable takes 2 new options with prompt confirmation:
- clean: remove previous installation directories
- purge: remove building and previous installation directories
You may need to update your sat.conf and/or launching script to update the following options/parameters:
- ssl_certificate
- data_dir
author | souliane <souliane@mailoo.org> |
---|---|
date | Tue, 20 May 2014 06:41:16 +0200 |
parents | browser_side/file_tools.py@d52f529a6d42 |
children |
comparison
equal
deleted
inserted
replaced
448:14c35f7f1ef5 | 449:981ed669d3b3 |
---|---|
1 #!/usr/bin/python | |
2 # -*- coding: utf-8 -*- | |
3 | |
4 # Libervia: a Salut à Toi frontend | |
5 # Copyright (C) 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 from sat.core.log import getLogger | |
21 log = getLogger(__name__) | |
22 from pyjamas.ui.FileUpload import FileUpload | |
23 from pyjamas.ui.FormPanel import FormPanel | |
24 from pyjamas import Window | |
25 from pyjamas import DOM | |
26 from pyjamas.ui.VerticalPanel import VerticalPanel | |
27 from pyjamas.ui.HTML import HTML | |
28 from pyjamas.ui.HorizontalPanel import HorizontalPanel | |
29 from pyjamas.ui.Button import Button | |
30 from pyjamas.ui.Label import Label | |
31 | |
32 | |
33 class FilterFileUpload(FileUpload): | |
34 | |
35 def __init__(self, name, max_size, types=None): | |
36 """ | |
37 @param name: the input element name and id | |
38 @param max_size: maximum file size in MB | |
39 @param types: allowed types as a list of couples (x, y, z): | |
40 - x: MIME content type e.g. "audio/ogg" | |
41 - y: file extension e.g. "*.ogg" | |
42 - z: description for the user e.g. "Ogg Vorbis Audio" | |
43 If types is None, all file format are accepted | |
44 """ | |
45 FileUpload.__init__(self) | |
46 self.setName(name) | |
47 while DOM.getElementById(name): | |
48 name = "%s_" % name | |
49 self.setID(name) | |
50 self._id = name | |
51 self.max_size = max_size | |
52 self.types = types | |
53 | |
54 def getFileInfo(self): | |
55 from __pyjamas__ import JS | |
56 JS("var file = top.document.getElementById(this._id).files[0]; return [file.size, file.type]") | |
57 | |
58 def check(self): | |
59 if self.getFilename() == "": | |
60 return False | |
61 (size, filetype) = self.getFileInfo() | |
62 if self.types and filetype not in [x for (x, y, z) in self.types]: | |
63 types = [] | |
64 for type_ in ["- %s (%s)" % (z, y) for (x, y, z) in self.types]: | |
65 if type_ not in types: | |
66 types.append(type_) | |
67 Window.alert('This file type is not accepted.\nAccepted file types are:\n\n%s' % "\n".join(types)) | |
68 return False | |
69 if size > self.max_size * pow(2, 20): | |
70 Window.alert('This file is too big!\nMaximum file size: %d MB.' % self.max_size) | |
71 return False | |
72 return True | |
73 | |
74 | |
75 class FileUploadPanel(FormPanel): | |
76 | |
77 def __init__(self, action_url, input_id, max_size, texts=None, close_cb=None): | |
78 """Build a form panel to upload a file. | |
79 @param action_url: the form action URL | |
80 @param input_id: the input element name and id | |
81 @param max_size: maximum file size in MB | |
82 @param texts: a dict to ovewrite the default textual values | |
83 @param close_cb: the close button callback method | |
84 """ | |
85 FormPanel.__init__(self) | |
86 self.texts = {'ok_button': 'Upload file', | |
87 'cancel_button': 'Cancel', | |
88 'body': 'Please select a file.', | |
89 'submitting': '<strong>Submitting, please wait...</strong>', | |
90 'errback': "Your file has been rejected...", | |
91 'body_errback': 'Please select another file.', | |
92 'callback': "Your file has been accepted!"} | |
93 if isinstance(texts, dict): | |
94 self.texts.update(texts) | |
95 self.close_cb = close_cb | |
96 self.setEncoding(FormPanel.ENCODING_MULTIPART) | |
97 self.setMethod(FormPanel.METHOD_POST) | |
98 self.setAction(action_url) | |
99 self.vPanel = VerticalPanel() | |
100 self.message = HTML(self.texts['body']) | |
101 self.vPanel.add(self.message) | |
102 | |
103 hPanel = HorizontalPanel() | |
104 hPanel.setSpacing(5) | |
105 hPanel.setStyleName('marginAuto') | |
106 self.file_upload = FilterFileUpload(input_id, max_size) | |
107 self.vPanel.add(self.file_upload) | |
108 | |
109 self.upload_btn = Button(self.texts['ok_button'], getattr(self, "onSubmitBtnClick")) | |
110 hPanel.add(self.upload_btn) | |
111 hPanel.add(Button(self.texts['cancel_button'], getattr(self, "onCloseBtnClick"))) | |
112 | |
113 self.status = Label() | |
114 hPanel.add(self.status) | |
115 | |
116 self.vPanel.add(hPanel) | |
117 | |
118 self.add(self.vPanel) | |
119 self.addFormHandler(self) | |
120 | |
121 def setCloseCb(self, close_cb): | |
122 self.close_cb = close_cb | |
123 | |
124 def onCloseBtnClick(self): | |
125 if self.close_cb: | |
126 self.close_cb() | |
127 else: | |
128 log.warning("no close method defined") | |
129 | |
130 def onSubmitBtnClick(self): | |
131 if not self.file_upload.check(): | |
132 return | |
133 self.message.setHTML(self.texts['submitting']) | |
134 self.upload_btn.setEnabled(False) | |
135 self.submit() | |
136 | |
137 def onSubmit(self, event): | |
138 pass | |
139 | |
140 def onSubmitComplete(self, event): | |
141 result = event.getResults() | |
142 if result != "OK": | |
143 Window.alert(self.texts['errback']) | |
144 self.message.setHTML(self.texts['body_errback']) | |
145 self.upload_btn.setEnabled(True) | |
146 else: | |
147 Window.alert(self.texts['callback']) | |
148 self.close_cb() |