Mercurial > libervia-web
annotate src/browser/sat_browser/radiocol.py @ 467:97c72fe4a5f2
browser_side: import fixes:
- moved browser modules in a sat_browser packages, to avoid import conflicts with std lib (e.g. logging), and let pyjsbuild work normaly
- refactored bad import practices: classes are most of time not imported directly, module is imported instead.
author | Goffi <goffi@goffi.org> |
---|---|
date | Mon, 09 Jun 2014 22:15:26 +0200 |
parents | src/browser/radiocol.py@1a0cec9b0f1e |
children | bbdc5357dc00 |
rev | line source |
---|---|
127 | 1 #!/usr/bin/python |
2 # -*- coding: utf-8 -*- | |
3 | |
339
2067d6241927
fixed docstrings wrong usage for licence informations
Goffi <goffi@goffi.org>
parents:
301
diff
changeset
|
4 # Libervia: a Salut à Toi frontend |
340 | 5 # Copyright (C) 2011, 2012, 2013, 2014 Jérôme Poisson <goffi@goffi.org> |
127 | 6 |
339
2067d6241927
fixed docstrings wrong usage for licence informations
Goffi <goffi@goffi.org>
parents:
301
diff
changeset
|
7 # This program is free software: you can redistribute it and/or modify |
2067d6241927
fixed docstrings wrong usage for licence informations
Goffi <goffi@goffi.org>
parents:
301
diff
changeset
|
8 # it under the terms of the GNU Affero General Public License as published by |
2067d6241927
fixed docstrings wrong usage for licence informations
Goffi <goffi@goffi.org>
parents:
301
diff
changeset
|
9 # the Free Software Foundation, either version 3 of the License, or |
2067d6241927
fixed docstrings wrong usage for licence informations
Goffi <goffi@goffi.org>
parents:
301
diff
changeset
|
10 # (at your option) any later version. |
127 | 11 |
339
2067d6241927
fixed docstrings wrong usage for licence informations
Goffi <goffi@goffi.org>
parents:
301
diff
changeset
|
12 # This program is distributed in the hope that it will be useful, |
2067d6241927
fixed docstrings wrong usage for licence informations
Goffi <goffi@goffi.org>
parents:
301
diff
changeset
|
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of |
2067d6241927
fixed docstrings wrong usage for licence informations
Goffi <goffi@goffi.org>
parents:
301
diff
changeset
|
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
2067d6241927
fixed docstrings wrong usage for licence informations
Goffi <goffi@goffi.org>
parents:
301
diff
changeset
|
15 # GNU Affero General Public License for more details. |
127 | 16 |
339
2067d6241927
fixed docstrings wrong usage for licence informations
Goffi <goffi@goffi.org>
parents:
301
diff
changeset
|
17 # You should have received a copy of the GNU Affero General Public License |
2067d6241927
fixed docstrings wrong usage for licence informations
Goffi <goffi@goffi.org>
parents:
301
diff
changeset
|
18 # along with this program. If not, see <http://www.gnu.org/licenses/>. |
127 | 19 |
243
63e9b680d3e7
browser_side, blog: better PEP8 compliance
souliane <souliane@mailoo.org>
parents:
165
diff
changeset
|
20 import pyjd # this is dummy in pyjs |
439
d52f529a6d42
browser side: use of new log system (first draft):
Goffi <goffi@goffi.org>
parents:
422
diff
changeset
|
21 from sat.core.log import getLogger |
d52f529a6d42
browser side: use of new log system (first draft):
Goffi <goffi@goffi.org>
parents:
422
diff
changeset
|
22 log = getLogger(__name__) |
449
981ed669d3b3
/!\ reorganize all the file hierarchy, move the code and launching script to src:
souliane <souliane@mailoo.org>
parents:
439
diff
changeset
|
23 from sat_frontends.tools.misc import DEFAULT_MUC |
981ed669d3b3
/!\ reorganize all the file hierarchy, move the code and launching script to src:
souliane <souliane@mailoo.org>
parents:
439
diff
changeset
|
24 from sat.core.i18n import _ |
981ed669d3b3
/!\ reorganize all the file hierarchy, move the code and launching script to src:
souliane <souliane@mailoo.org>
parents:
439
diff
changeset
|
25 |
127 | 26 from pyjamas.ui.VerticalPanel import VerticalPanel |
27 from pyjamas.ui.HorizontalPanel import HorizontalPanel | |
129
dd0d39ae7d24
RadioCol: song preloading + fonctionnal players
Goffi <goffi@goffi.org>
parents:
128
diff
changeset
|
28 from pyjamas.ui.FlexTable import FlexTable |
127 | 29 from pyjamas.ui.FormPanel import FormPanel |
30 from pyjamas.ui.Label import Label | |
31 from pyjamas.ui.Button import Button | |
32 from pyjamas.ui.ClickListener import ClickHandler | |
128 | 33 from pyjamas.ui.Hidden import Hidden |
286
e76ec07be8e5
browser_side (plugin radiocol): the UI uses CaptionPanel
souliane <souliane@mailoo.org>
parents:
285
diff
changeset
|
34 from pyjamas.ui.CaptionPanel import CaptionPanel |
341
31c105017d6b
browser_side: radiocol current song playback will jump to time when a user joins a running session
souliane <souliane@mailoo.org>
parents:
340
diff
changeset
|
35 from pyjamas.media.Audio import Audio |
127 | 36 from pyjamas import Window |
129
dd0d39ae7d24
RadioCol: song preloading + fonctionnal players
Goffi <goffi@goffi.org>
parents:
128
diff
changeset
|
37 from pyjamas.Timer import Timer |
127 | 38 |
467 | 39 import html_tools |
40 import file_tools | |
127 | 41 |
42 | |
129
dd0d39ae7d24
RadioCol: song preloading + fonctionnal players
Goffi <goffi@goffi.org>
parents:
128
diff
changeset
|
43 class MetadataPanel(FlexTable): |
127 | 44 |
45 def __init__(self): | |
129
dd0d39ae7d24
RadioCol: song preloading + fonctionnal players
Goffi <goffi@goffi.org>
parents:
128
diff
changeset
|
46 FlexTable.__init__(self) |
243
63e9b680d3e7
browser_side, blog: better PEP8 compliance
souliane <souliane@mailoo.org>
parents:
165
diff
changeset
|
47 title_lbl = Label("title:") |
129
dd0d39ae7d24
RadioCol: song preloading + fonctionnal players
Goffi <goffi@goffi.org>
parents:
128
diff
changeset
|
48 title_lbl.setStyleName('radiocol_metadata_lbl') |
dd0d39ae7d24
RadioCol: song preloading + fonctionnal players
Goffi <goffi@goffi.org>
parents:
128
diff
changeset
|
49 artist_lbl = Label("artist:") |
dd0d39ae7d24
RadioCol: song preloading + fonctionnal players
Goffi <goffi@goffi.org>
parents:
128
diff
changeset
|
50 artist_lbl.setStyleName('radiocol_metadata_lbl') |
dd0d39ae7d24
RadioCol: song preloading + fonctionnal players
Goffi <goffi@goffi.org>
parents:
128
diff
changeset
|
51 album_lbl = Label("album:") |
dd0d39ae7d24
RadioCol: song preloading + fonctionnal players
Goffi <goffi@goffi.org>
parents:
128
diff
changeset
|
52 album_lbl.setStyleName('radiocol_metadata_lbl') |
243
63e9b680d3e7
browser_side, blog: better PEP8 compliance
souliane <souliane@mailoo.org>
parents:
165
diff
changeset
|
53 self.title = Label("") |
129
dd0d39ae7d24
RadioCol: song preloading + fonctionnal players
Goffi <goffi@goffi.org>
parents:
128
diff
changeset
|
54 self.title.setStyleName('radiocol_metadata') |
dd0d39ae7d24
RadioCol: song preloading + fonctionnal players
Goffi <goffi@goffi.org>
parents:
128
diff
changeset
|
55 self.artist = Label("") |
dd0d39ae7d24
RadioCol: song preloading + fonctionnal players
Goffi <goffi@goffi.org>
parents:
128
diff
changeset
|
56 self.artist.setStyleName('radiocol_metadata') |
dd0d39ae7d24
RadioCol: song preloading + fonctionnal players
Goffi <goffi@goffi.org>
parents:
128
diff
changeset
|
57 self.album = Label("") |
dd0d39ae7d24
RadioCol: song preloading + fonctionnal players
Goffi <goffi@goffi.org>
parents:
128
diff
changeset
|
58 self.album.setStyleName('radiocol_metadata') |
243
63e9b680d3e7
browser_side, blog: better PEP8 compliance
souliane <souliane@mailoo.org>
parents:
165
diff
changeset
|
59 self.setWidget(0, 0, title_lbl) |
63e9b680d3e7
browser_side, blog: better PEP8 compliance
souliane <souliane@mailoo.org>
parents:
165
diff
changeset
|
60 self.setWidget(1, 0, artist_lbl) |
63e9b680d3e7
browser_side, blog: better PEP8 compliance
souliane <souliane@mailoo.org>
parents:
165
diff
changeset
|
61 self.setWidget(2, 0, album_lbl) |
63e9b680d3e7
browser_side, blog: better PEP8 compliance
souliane <souliane@mailoo.org>
parents:
165
diff
changeset
|
62 self.setWidget(0, 1, self.title) |
63e9b680d3e7
browser_side, blog: better PEP8 compliance
souliane <souliane@mailoo.org>
parents:
165
diff
changeset
|
63 self.setWidget(1, 1, self.artist) |
63e9b680d3e7
browser_side, blog: better PEP8 compliance
souliane <souliane@mailoo.org>
parents:
165
diff
changeset
|
64 self.setWidget(2, 1, self.album) |
129
dd0d39ae7d24
RadioCol: song preloading + fonctionnal players
Goffi <goffi@goffi.org>
parents:
128
diff
changeset
|
65 self.setStyleName("radiocol_metadata_pnl") |
dd0d39ae7d24
RadioCol: song preloading + fonctionnal players
Goffi <goffi@goffi.org>
parents:
128
diff
changeset
|
66 |
dd0d39ae7d24
RadioCol: song preloading + fonctionnal players
Goffi <goffi@goffi.org>
parents:
128
diff
changeset
|
67 def setTitle(self, title): |
dd0d39ae7d24
RadioCol: song preloading + fonctionnal players
Goffi <goffi@goffi.org>
parents:
128
diff
changeset
|
68 self.title.setText(title) |
dd0d39ae7d24
RadioCol: song preloading + fonctionnal players
Goffi <goffi@goffi.org>
parents:
128
diff
changeset
|
69 |
dd0d39ae7d24
RadioCol: song preloading + fonctionnal players
Goffi <goffi@goffi.org>
parents:
128
diff
changeset
|
70 def setArtist(self, artist): |
dd0d39ae7d24
RadioCol: song preloading + fonctionnal players
Goffi <goffi@goffi.org>
parents:
128
diff
changeset
|
71 self.artist.setText(artist) |
dd0d39ae7d24
RadioCol: song preloading + fonctionnal players
Goffi <goffi@goffi.org>
parents:
128
diff
changeset
|
72 |
dd0d39ae7d24
RadioCol: song preloading + fonctionnal players
Goffi <goffi@goffi.org>
parents:
128
diff
changeset
|
73 def setAlbum(self, album): |
dd0d39ae7d24
RadioCol: song preloading + fonctionnal players
Goffi <goffi@goffi.org>
parents:
128
diff
changeset
|
74 self.album.setText(album) |
127 | 75 |
243
63e9b680d3e7
browser_side, blog: better PEP8 compliance
souliane <souliane@mailoo.org>
parents:
165
diff
changeset
|
76 |
127 | 77 class ControlPanel(FormPanel): |
78 """Panel used to show controls to add a song, or vote for the current one""" | |
79 | |
285
4f0c2fea358a
browser_side (plugin radiocol): use the status label to give more information
souliane <souliane@mailoo.org>
parents:
284
diff
changeset
|
80 def __init__(self, parent): |
127 | 81 FormPanel.__init__(self) |
82 self.setEncoding(FormPanel.ENCODING_MULTIPART) | |
83 self.setMethod(FormPanel.METHOD_POST) | |
151
a159cc29b556
server side: file upload is now more generic:
Goffi <goffi@goffi.org>
parents:
131
diff
changeset
|
84 self.setAction("upload_radiocol") |
300
4f221f34bdc7
browser_side (plugins radiocol, xep-0054): handle upload errors
souliane <souliane@mailoo.org>
parents:
287
diff
changeset
|
85 self.timer_on = False |
285
4f0c2fea358a
browser_side (plugin radiocol): use the status label to give more information
souliane <souliane@mailoo.org>
parents:
284
diff
changeset
|
86 self._parent = parent |
286
e76ec07be8e5
browser_side (plugin radiocol): the UI uses CaptionPanel
souliane <souliane@mailoo.org>
parents:
285
diff
changeset
|
87 vPanel = VerticalPanel() |
127 | 88 |
283
0eba1c4f9c6f
browser_side (plugins radiocol, xep-0054): check for file size or type before uploading
souliane <souliane@mailoo.org>
parents:
275
diff
changeset
|
89 types = [('audio/ogg', '*.ogg', 'Ogg Vorbis Audio'), |
0eba1c4f9c6f
browser_side (plugins radiocol, xep-0054): check for file size or type before uploading
souliane <souliane@mailoo.org>
parents:
275
diff
changeset
|
90 ('video/ogg', '*.ogv', 'Ogg Vorbis Video'), |
394
ee61b0765d6c
browser_side: radiocol supports MP3
souliane <souliane@mailoo.org>
parents:
370
diff
changeset
|
91 ('application/ogg', '*.ogx', 'Ogg Vorbis Multiplex'), |
398
462fc3359ee3
browser_side: radiocol accepts mime type audio/mp3 in addition to audio/mpeg
souliane <souliane@mailoo.org>
parents:
397
diff
changeset
|
92 ('audio/mpeg', '*.mp3', 'MPEG-Layer 3'), |
462fc3359ee3
browser_side: radiocol accepts mime type audio/mp3 in addition to audio/mpeg
souliane <souliane@mailoo.org>
parents:
397
diff
changeset
|
93 ('audio/mp3', '*.mp3', 'MPEG-Layer 3'), |
462fc3359ee3
browser_side: radiocol accepts mime type audio/mp3 in addition to audio/mpeg
souliane <souliane@mailoo.org>
parents:
397
diff
changeset
|
94 ] |
467 | 95 self.file_upload = file_tools.FilterFileUpload("song", 10, types) |
286
e76ec07be8e5
browser_side (plugin radiocol): the UI uses CaptionPanel
souliane <souliane@mailoo.org>
parents:
285
diff
changeset
|
96 vPanel.add(self.file_upload) |
127 | 97 |
286
e76ec07be8e5
browser_side (plugin radiocol): the UI uses CaptionPanel
souliane <souliane@mailoo.org>
parents:
285
diff
changeset
|
98 hPanel = HorizontalPanel() |
130 | 99 self.upload_btn = Button("Upload song", getattr(self, "onBtnClick")) |
100 hPanel.add(self.upload_btn) | |
129
dd0d39ae7d24
RadioCol: song preloading + fonctionnal players
Goffi <goffi@goffi.org>
parents:
128
diff
changeset
|
101 self.status = Label() |
285
4f0c2fea358a
browser_side (plugin radiocol): use the status label to give more information
souliane <souliane@mailoo.org>
parents:
284
diff
changeset
|
102 self.updateStatus() |
130 | 103 hPanel.add(self.status) |
394
ee61b0765d6c
browser_side: radiocol supports MP3
souliane <souliane@mailoo.org>
parents:
370
diff
changeset
|
104 #We need to know the filename and the referee |
ee61b0765d6c
browser_side: radiocol supports MP3
souliane <souliane@mailoo.org>
parents:
370
diff
changeset
|
105 self.filename_field = Hidden('filename', '') |
ee61b0765d6c
browser_side: radiocol supports MP3
souliane <souliane@mailoo.org>
parents:
370
diff
changeset
|
106 hPanel.add(self.filename_field) |
285
4f0c2fea358a
browser_side (plugin radiocol): use the status label to give more information
souliane <souliane@mailoo.org>
parents:
284
diff
changeset
|
107 referee_field = Hidden('referee', self._parent.referee) |
394
ee61b0765d6c
browser_side: radiocol supports MP3
souliane <souliane@mailoo.org>
parents:
370
diff
changeset
|
108 hPanel.add(self.filename_field) |
285
4f0c2fea358a
browser_side (plugin radiocol): use the status label to give more information
souliane <souliane@mailoo.org>
parents:
284
diff
changeset
|
109 hPanel.add(referee_field) |
286
e76ec07be8e5
browser_side (plugin radiocol): the UI uses CaptionPanel
souliane <souliane@mailoo.org>
parents:
285
diff
changeset
|
110 vPanel.add(hPanel) |
127 | 111 |
286
e76ec07be8e5
browser_side (plugin radiocol): the UI uses CaptionPanel
souliane <souliane@mailoo.org>
parents:
285
diff
changeset
|
112 self.add(vPanel) |
127 | 113 self.addFormHandler(self) |
243
63e9b680d3e7
browser_side, blog: better PEP8 compliance
souliane <souliane@mailoo.org>
parents:
165
diff
changeset
|
114 |
285
4f0c2fea358a
browser_side (plugin radiocol): use the status label to give more information
souliane <souliane@mailoo.org>
parents:
284
diff
changeset
|
115 def updateStatus(self): |
300
4f221f34bdc7
browser_side (plugins radiocol, xep-0054): handle upload errors
souliane <souliane@mailoo.org>
parents:
287
diff
changeset
|
116 if self.timer_on: |
4f221f34bdc7
browser_side (plugins radiocol, xep-0054): handle upload errors
souliane <souliane@mailoo.org>
parents:
287
diff
changeset
|
117 return |
285
4f0c2fea358a
browser_side (plugin radiocol): use the status label to give more information
souliane <souliane@mailoo.org>
parents:
284
diff
changeset
|
118 # TODO: the status should be different if a song is being played or not |
4f0c2fea358a
browser_side (plugin radiocol): use the status label to give more information
souliane <souliane@mailoo.org>
parents:
284
diff
changeset
|
119 queue = self._parent.getQueueSize() |
4f0c2fea358a
browser_side (plugin radiocol): use the status label to give more information
souliane <souliane@mailoo.org>
parents:
284
diff
changeset
|
120 queue_data = self._parent.queue_data |
4f0c2fea358a
browser_side (plugin radiocol): use the status label to give more information
souliane <souliane@mailoo.org>
parents:
284
diff
changeset
|
121 if queue < queue_data[0]: |
4f0c2fea358a
browser_side (plugin radiocol): use the status label to give more information
souliane <souliane@mailoo.org>
parents:
284
diff
changeset
|
122 left = queue_data[0] - queue |
4f0c2fea358a
browser_side (plugin radiocol): use the status label to give more information
souliane <souliane@mailoo.org>
parents:
284
diff
changeset
|
123 self.status.setText("[we need %d more song%s]" % (left, "s" if left > 1 else "")) |
4f0c2fea358a
browser_side (plugin radiocol): use the status label to give more information
souliane <souliane@mailoo.org>
parents:
284
diff
changeset
|
124 elif queue < queue_data[1]: |
4f0c2fea358a
browser_side (plugin radiocol): use the status label to give more information
souliane <souliane@mailoo.org>
parents:
284
diff
changeset
|
125 left = queue_data[1] - queue |
4f0c2fea358a
browser_side (plugin radiocol): use the status label to give more information
souliane <souliane@mailoo.org>
parents:
284
diff
changeset
|
126 self.status.setText("[%d available spot%s]" % (left, "s" if left > 1 else "")) |
4f0c2fea358a
browser_side (plugin radiocol): use the status label to give more information
souliane <souliane@mailoo.org>
parents:
284
diff
changeset
|
127 elif queue >= queue_data[1]: |
4f0c2fea358a
browser_side (plugin radiocol): use the status label to give more information
souliane <souliane@mailoo.org>
parents:
284
diff
changeset
|
128 self.status.setText("[The queue is currently full]") |
4f0c2fea358a
browser_side (plugin radiocol): use the status label to give more information
souliane <souliane@mailoo.org>
parents:
284
diff
changeset
|
129 self.status.setStyleName('radiocol_status') |
127 | 130 |
131 def onBtnClick(self): | |
283
0eba1c4f9c6f
browser_side (plugins radiocol, xep-0054): check for file size or type before uploading
souliane <souliane@mailoo.org>
parents:
275
diff
changeset
|
132 if self.file_upload.check(): |
394
ee61b0765d6c
browser_side: radiocol supports MP3
souliane <souliane@mailoo.org>
parents:
370
diff
changeset
|
133 self.status.setText('[Submitting, please wait...]') |
ee61b0765d6c
browser_side: radiocol supports MP3
souliane <souliane@mailoo.org>
parents:
370
diff
changeset
|
134 self.filename_field.setValue(self.file_upload.getFilename()) |
ee61b0765d6c
browser_side: radiocol supports MP3
souliane <souliane@mailoo.org>
parents:
370
diff
changeset
|
135 if self.file_upload.getFilename().lower().endswith('.mp3'): |
ee61b0765d6c
browser_side: radiocol supports MP3
souliane <souliane@mailoo.org>
parents:
370
diff
changeset
|
136 self._parent._parent.host.showWarning('STATUS', 'For a better support, it is recommended to submit Ogg Vorbis file instead of MP3. You can convert your files easily, ask for help if needed!', 5000) |
283
0eba1c4f9c6f
browser_side (plugins radiocol, xep-0054): check for file size or type before uploading
souliane <souliane@mailoo.org>
parents:
275
diff
changeset
|
137 self.submit() |
0eba1c4f9c6f
browser_side (plugins radiocol, xep-0054): check for file size or type before uploading
souliane <souliane@mailoo.org>
parents:
275
diff
changeset
|
138 self.file_upload.setFilename("") |
243
63e9b680d3e7
browser_side, blog: better PEP8 compliance
souliane <souliane@mailoo.org>
parents:
165
diff
changeset
|
139 |
127 | 140 def onSubmit(self, event): |
141 pass | |
142 | |
130 | 143 def blockUpload(self): |
144 self.file_upload.setVisible(False) | |
145 self.upload_btn.setEnabled(False) | |
146 | |
147 def unblockUpload(self): | |
148 self.file_upload.setVisible(True) | |
149 self.upload_btn.setEnabled(True) | |
150 | |
285
4f0c2fea358a
browser_side (plugin radiocol): use the status label to give more information
souliane <souliane@mailoo.org>
parents:
284
diff
changeset
|
151 def setTemporaryStatus(self, text, style): |
4f0c2fea358a
browser_side (plugin radiocol): use the status label to give more information
souliane <souliane@mailoo.org>
parents:
284
diff
changeset
|
152 self.status.setText(text) |
4f0c2fea358a
browser_side (plugin radiocol): use the status label to give more information
souliane <souliane@mailoo.org>
parents:
284
diff
changeset
|
153 self.status.setStyleName('radiocol_upload_status_%s' % style) |
300
4f221f34bdc7
browser_side (plugins radiocol, xep-0054): handle upload errors
souliane <souliane@mailoo.org>
parents:
287
diff
changeset
|
154 self.timer_on = True |
4f221f34bdc7
browser_side (plugins radiocol, xep-0054): handle upload errors
souliane <souliane@mailoo.org>
parents:
287
diff
changeset
|
155 |
422
20c508f9b32a
browser side: fixed bad use of Timer
Goffi <goffi@goffi.org>
parents:
398
diff
changeset
|
156 def cb(timer): |
300
4f221f34bdc7
browser_side (plugins radiocol, xep-0054): handle upload errors
souliane <souliane@mailoo.org>
parents:
287
diff
changeset
|
157 self.timer_on = False |
4f221f34bdc7
browser_side (plugins radiocol, xep-0054): handle upload errors
souliane <souliane@mailoo.org>
parents:
287
diff
changeset
|
158 self.updateStatus() |
4f221f34bdc7
browser_side (plugins radiocol, xep-0054): handle upload errors
souliane <souliane@mailoo.org>
parents:
287
diff
changeset
|
159 |
4f221f34bdc7
browser_side (plugins radiocol, xep-0054): handle upload errors
souliane <souliane@mailoo.org>
parents:
287
diff
changeset
|
160 Timer(5000, cb) |
285
4f0c2fea358a
browser_side (plugin radiocol): use the status label to give more information
souliane <souliane@mailoo.org>
parents:
284
diff
changeset
|
161 |
127 | 162 def onSubmitComplete(self, event): |
163 result = event.getResults() | |
164 if result == "OK": | |
287
7a1dc69112b8
browser_side (plugin radiocol): send the current queue to new players
souliane <souliane@mailoo.org>
parents:
286
diff
changeset
|
165 # the song can still be rejected (not readable, full queue...) |
7a1dc69112b8
browser_side (plugin radiocol): send the current queue to new players
souliane <souliane@mailoo.org>
parents:
286
diff
changeset
|
166 self.setTemporaryStatus('[Your song has been submitted to the radio]', "ok") |
127 | 167 elif result == "KO": |
285
4f0c2fea358a
browser_side (plugin radiocol): use the status label to give more information
souliane <souliane@mailoo.org>
parents:
284
diff
changeset
|
168 self.setTemporaryStatus('[Something went wrong during your song upload]', "ko") |
394
ee61b0765d6c
browser_side: radiocol supports MP3
souliane <souliane@mailoo.org>
parents:
370
diff
changeset
|
169 self._parent.radiocolSongRejected(_("The uploaded file has been rejected, only Ogg Vorbis and MP3 songs are accepted.")) |
300
4f221f34bdc7
browser_side (plugins radiocol, xep-0054): handle upload errors
souliane <souliane@mailoo.org>
parents:
287
diff
changeset
|
170 # TODO: would be great to re-use the original Exception class and message |
4f221f34bdc7
browser_side (plugins radiocol, xep-0054): handle upload errors
souliane <souliane@mailoo.org>
parents:
287
diff
changeset
|
171 # but it is lost in the middle of the traceback and encapsulated within |
4f221f34bdc7
browser_side (plugins radiocol, xep-0054): handle upload errors
souliane <souliane@mailoo.org>
parents:
287
diff
changeset
|
172 # a DBusException instance --> extract the data from the traceback? |
127 | 173 else: |
174 Window.alert('Submit error: %s' % result) | |
283
0eba1c4f9c6f
browser_side (plugins radiocol, xep-0054): check for file size or type before uploading
souliane <souliane@mailoo.org>
parents:
275
diff
changeset
|
175 self.status.setText('') |
127 | 176 |
243
63e9b680d3e7
browser_side, blog: better PEP8 compliance
souliane <souliane@mailoo.org>
parents:
165
diff
changeset
|
177 |
341
31c105017d6b
browser_side: radiocol current song playback will jump to time when a user joins a running session
souliane <souliane@mailoo.org>
parents:
340
diff
changeset
|
178 class Player(Audio): |
129
dd0d39ae7d24
RadioCol: song preloading + fonctionnal players
Goffi <goffi@goffi.org>
parents:
128
diff
changeset
|
179 |
dd0d39ae7d24
RadioCol: song preloading + fonctionnal players
Goffi <goffi@goffi.org>
parents:
128
diff
changeset
|
180 def __init__(self, player_id, metadata_panel): |
341
31c105017d6b
browser_side: radiocol current song playback will jump to time when a user joins a running session
souliane <souliane@mailoo.org>
parents:
340
diff
changeset
|
181 Audio.__init__(self) |
129
dd0d39ae7d24
RadioCol: song preloading + fonctionnal players
Goffi <goffi@goffi.org>
parents:
128
diff
changeset
|
182 self._id = player_id |
dd0d39ae7d24
RadioCol: song preloading + fonctionnal players
Goffi <goffi@goffi.org>
parents:
128
diff
changeset
|
183 self.metadata = metadata_panel |
287
7a1dc69112b8
browser_side (plugin radiocol): send the current queue to new players
souliane <souliane@mailoo.org>
parents:
286
diff
changeset
|
184 self.timestamp = "" |
243
63e9b680d3e7
browser_side, blog: better PEP8 compliance
souliane <souliane@mailoo.org>
parents:
165
diff
changeset
|
185 self.title = "" |
63e9b680d3e7
browser_side, blog: better PEP8 compliance
souliane <souliane@mailoo.org>
parents:
165
diff
changeset
|
186 self.artist = "" |
63e9b680d3e7
browser_side, blog: better PEP8 compliance
souliane <souliane@mailoo.org>
parents:
165
diff
changeset
|
187 self.album = "" |
129
dd0d39ae7d24
RadioCol: song preloading + fonctionnal players
Goffi <goffi@goffi.org>
parents:
128
diff
changeset
|
188 self.filename = None |
341
31c105017d6b
browser_side: radiocol current song playback will jump to time when a user joins a running session
souliane <souliane@mailoo.org>
parents:
340
diff
changeset
|
189 self.played = False # True when the song is playing/has played, becomes False on preload |
31c105017d6b
browser_side: radiocol current song playback will jump to time when a user joins a running session
souliane <souliane@mailoo.org>
parents:
340
diff
changeset
|
190 self.setAutobuffer(True) |
31c105017d6b
browser_side: radiocol current song playback will jump to time when a user joins a running session
souliane <souliane@mailoo.org>
parents:
340
diff
changeset
|
191 self.setAutoplay(False) |
31c105017d6b
browser_side: radiocol current song playback will jump to time when a user joins a running session
souliane <souliane@mailoo.org>
parents:
340
diff
changeset
|
192 self.setVisible(False) |
31c105017d6b
browser_side: radiocol current song playback will jump to time when a user joins a running session
souliane <souliane@mailoo.org>
parents:
340
diff
changeset
|
193 |
287
7a1dc69112b8
browser_side (plugin radiocol): send the current queue to new players
souliane <souliane@mailoo.org>
parents:
286
diff
changeset
|
194 def preload(self, timestamp, filename, title, artist, album): |
129
dd0d39ae7d24
RadioCol: song preloading + fonctionnal players
Goffi <goffi@goffi.org>
parents:
128
diff
changeset
|
195 """preload the song but doesn't play it""" |
287
7a1dc69112b8
browser_side (plugin radiocol): send the current queue to new players
souliane <souliane@mailoo.org>
parents:
286
diff
changeset
|
196 self.timestamp = timestamp |
129
dd0d39ae7d24
RadioCol: song preloading + fonctionnal players
Goffi <goffi@goffi.org>
parents:
128
diff
changeset
|
197 self.filename = filename |
dd0d39ae7d24
RadioCol: song preloading + fonctionnal players
Goffi <goffi@goffi.org>
parents:
128
diff
changeset
|
198 self.title = title |
dd0d39ae7d24
RadioCol: song preloading + fonctionnal players
Goffi <goffi@goffi.org>
parents:
128
diff
changeset
|
199 self.artist = artist |
dd0d39ae7d24
RadioCol: song preloading + fonctionnal players
Goffi <goffi@goffi.org>
parents:
128
diff
changeset
|
200 self.album = album |
dd0d39ae7d24
RadioCol: song preloading + fonctionnal players
Goffi <goffi@goffi.org>
parents:
128
diff
changeset
|
201 self.played = False |
467 | 202 self.setSrc("radiocol/%s" % html_tools.html_sanitize(filename)) |
439
d52f529a6d42
browser side: use of new log system (first draft):
Goffi <goffi@goffi.org>
parents:
422
diff
changeset
|
203 log.debug("preloading %s in %s" % (title, self._id)) |
243
63e9b680d3e7
browser_side, blog: better PEP8 compliance
souliane <souliane@mailoo.org>
parents:
165
diff
changeset
|
204 |
287
7a1dc69112b8
browser_side (plugin radiocol): send the current queue to new players
souliane <souliane@mailoo.org>
parents:
286
diff
changeset
|
205 def play(self, play=True): |
341
31c105017d6b
browser_side: radiocol current song playback will jump to time when a user joins a running session
souliane <souliane@mailoo.org>
parents:
340
diff
changeset
|
206 """Play or pause the song |
31c105017d6b
browser_side: radiocol current song playback will jump to time when a user joins a running session
souliane <souliane@mailoo.org>
parents:
340
diff
changeset
|
207 @param play: set to True to play or to False to pause |
31c105017d6b
browser_side: radiocol current song playback will jump to time when a user joins a running session
souliane <souliane@mailoo.org>
parents:
340
diff
changeset
|
208 """ |
287
7a1dc69112b8
browser_side (plugin radiocol): send the current queue to new players
souliane <souliane@mailoo.org>
parents:
286
diff
changeset
|
209 if play: |
7a1dc69112b8
browser_side (plugin radiocol): send the current queue to new players
souliane <souliane@mailoo.org>
parents:
286
diff
changeset
|
210 self.played = True |
7a1dc69112b8
browser_side (plugin radiocol): send the current queue to new players
souliane <souliane@mailoo.org>
parents:
286
diff
changeset
|
211 self.metadata.setTitle(self.title) |
7a1dc69112b8
browser_side (plugin radiocol): send the current queue to new players
souliane <souliane@mailoo.org>
parents:
286
diff
changeset
|
212 self.metadata.setArtist(self.artist) |
7a1dc69112b8
browser_side (plugin radiocol): send the current queue to new players
souliane <souliane@mailoo.org>
parents:
286
diff
changeset
|
213 self.metadata.setAlbum(self.album) |
341
31c105017d6b
browser_side: radiocol current song playback will jump to time when a user joins a running session
souliane <souliane@mailoo.org>
parents:
340
diff
changeset
|
214 Audio.play(self) |
287
7a1dc69112b8
browser_side (plugin radiocol): send the current queue to new players
souliane <souliane@mailoo.org>
parents:
286
diff
changeset
|
215 else: |
341
31c105017d6b
browser_side: radiocol current song playback will jump to time when a user joins a running session
souliane <souliane@mailoo.org>
parents:
340
diff
changeset
|
216 self.pause() |
129
dd0d39ae7d24
RadioCol: song preloading + fonctionnal players
Goffi <goffi@goffi.org>
parents:
128
diff
changeset
|
217 |
dd0d39ae7d24
RadioCol: song preloading + fonctionnal players
Goffi <goffi@goffi.org>
parents:
128
diff
changeset
|
218 |
127 | 219 class RadioColPanel(HorizontalPanel, ClickHandler): |
220 | |
285
4f0c2fea358a
browser_side (plugin radiocol): use the status label to give more information
souliane <souliane@mailoo.org>
parents:
284
diff
changeset
|
221 def __init__(self, parent, referee, player_nick, players, queue_data): |
397
6148e9063069
browser_side: radiocol displays who uploaded the file with ChatPanel.printInfo
souliane <souliane@mailoo.org>
parents:
394
diff
changeset
|
222 """ |
6148e9063069
browser_side: radiocol displays who uploaded the file with ChatPanel.printInfo
souliane <souliane@mailoo.org>
parents:
394
diff
changeset
|
223 @param parent |
6148e9063069
browser_side: radiocol displays who uploaded the file with ChatPanel.printInfo
souliane <souliane@mailoo.org>
parents:
394
diff
changeset
|
224 @param referee |
6148e9063069
browser_side: radiocol displays who uploaded the file with ChatPanel.printInfo
souliane <souliane@mailoo.org>
parents:
394
diff
changeset
|
225 @param player_nick |
6148e9063069
browser_side: radiocol displays who uploaded the file with ChatPanel.printInfo
souliane <souliane@mailoo.org>
parents:
394
diff
changeset
|
226 @param players |
6148e9063069
browser_side: radiocol displays who uploaded the file with ChatPanel.printInfo
souliane <souliane@mailoo.org>
parents:
394
diff
changeset
|
227 @param queue_data: list of integers (queue to start, queue limit) |
6148e9063069
browser_side: radiocol displays who uploaded the file with ChatPanel.printInfo
souliane <souliane@mailoo.org>
parents:
394
diff
changeset
|
228 """ |
286
e76ec07be8e5
browser_side (plugin radiocol): the UI uses CaptionPanel
souliane <souliane@mailoo.org>
parents:
285
diff
changeset
|
229 # We need to set it here and not in the CSS :( |
e76ec07be8e5
browser_side (plugin radiocol): the UI uses CaptionPanel
souliane <souliane@mailoo.org>
parents:
285
diff
changeset
|
230 HorizontalPanel.__init__(self, Height="90px") |
127 | 231 ClickHandler.__init__(self) |
232 self._parent = parent | |
233 self.referee = referee | |
285
4f0c2fea358a
browser_side (plugin radiocol): use the status label to give more information
souliane <souliane@mailoo.org>
parents:
284
diff
changeset
|
234 self.queue_data = queue_data |
127 | 235 self.setStyleName("radiocolPanel") |
243
63e9b680d3e7
browser_side, blog: better PEP8 compliance
souliane <souliane@mailoo.org>
parents:
165
diff
changeset
|
236 |
127 | 237 # Now we set up the layout |
238 self.metadata_panel = MetadataPanel() | |
286
e76ec07be8e5
browser_side (plugin radiocol): the UI uses CaptionPanel
souliane <souliane@mailoo.org>
parents:
285
diff
changeset
|
239 self.add(CaptionPanel("Now playing", self.metadata_panel)) |
e76ec07be8e5
browser_side (plugin radiocol): the UI uses CaptionPanel
souliane <souliane@mailoo.org>
parents:
285
diff
changeset
|
240 self.playlist_panel = VerticalPanel() |
e76ec07be8e5
browser_side (plugin radiocol): the UI uses CaptionPanel
souliane <souliane@mailoo.org>
parents:
285
diff
changeset
|
241 self.add(CaptionPanel("Songs queue", self.playlist_panel)) |
285
4f0c2fea358a
browser_side (plugin radiocol): use the status label to give more information
souliane <souliane@mailoo.org>
parents:
284
diff
changeset
|
242 self.control_panel = ControlPanel(self) |
286
e76ec07be8e5
browser_side (plugin radiocol): the UI uses CaptionPanel
souliane <souliane@mailoo.org>
parents:
285
diff
changeset
|
243 self.add(CaptionPanel("Controls", self.control_panel)) |
e76ec07be8e5
browser_side (plugin radiocol): the UI uses CaptionPanel
souliane <souliane@mailoo.org>
parents:
285
diff
changeset
|
244 |
130 | 245 self.next_songs = [] |
287
7a1dc69112b8
browser_side (plugin radiocol): send the current queue to new players
souliane <souliane@mailoo.org>
parents:
286
diff
changeset
|
246 self.players = [Player("player_%d" % i, self.metadata_panel) for i in xrange(queue_data[1] + 1)] |
129
dd0d39ae7d24
RadioCol: song preloading + fonctionnal players
Goffi <goffi@goffi.org>
parents:
128
diff
changeset
|
247 self.current_player = None |
dd0d39ae7d24
RadioCol: song preloading + fonctionnal players
Goffi <goffi@goffi.org>
parents:
128
diff
changeset
|
248 for player in self.players: |
286
e76ec07be8e5
browser_side (plugin radiocol): the UI uses CaptionPanel
souliane <souliane@mailoo.org>
parents:
285
diff
changeset
|
249 self.add(player) |
127 | 250 self.addClickListener(self) |
130 | 251 |
397
6148e9063069
browser_side: radiocol displays who uploaded the file with ChatPanel.printInfo
souliane <souliane@mailoo.org>
parents:
394
diff
changeset
|
252 help_msg = """Accepted file formats: Ogg Vorbis (recommended), MP3.<br /> |
394
ee61b0765d6c
browser_side: radiocol supports MP3
souliane <souliane@mailoo.org>
parents:
370
diff
changeset
|
253 Please do not submit files that are protected by copyright.<br /> |
397
6148e9063069
browser_side: radiocol displays who uploaded the file with ChatPanel.printInfo
souliane <souliane@mailoo.org>
parents:
394
diff
changeset
|
254 Click <a style="color: red;">here</a> if you need some support :)""" |
6148e9063069
browser_side: radiocol displays who uploaded the file with ChatPanel.printInfo
souliane <souliane@mailoo.org>
parents:
394
diff
changeset
|
255 link_cb = lambda: self._parent.host.bridge.call('joinMUC', None, DEFAULT_MUC, self._parent.nick) |
6148e9063069
browser_side: radiocol displays who uploaded the file with ChatPanel.printInfo
souliane <souliane@mailoo.org>
parents:
394
diff
changeset
|
256 self._parent.printInfo(help_msg, type_='link', link_cb=link_cb) |
284
bee4719af9b9
browser_side (plugin radiocol): info message when you start the radiocol
souliane <souliane@mailoo.org>
parents:
283
diff
changeset
|
257 |
130 | 258 def pushNextSong(self, title): |
259 """Add a song to the left panel's next songs queue""" | |
260 next_song = Label(title) | |
261 next_song.setStyleName("radiocol_next_song") | |
262 self.next_songs.append(next_song) | |
286
e76ec07be8e5
browser_side (plugin radiocol): the UI uses CaptionPanel
souliane <souliane@mailoo.org>
parents:
285
diff
changeset
|
263 self.playlist_panel.append(next_song) |
287
7a1dc69112b8
browser_side (plugin radiocol): send the current queue to new players
souliane <souliane@mailoo.org>
parents:
286
diff
changeset
|
264 self.control_panel.updateStatus() |
130 | 265 |
266 def popNextSong(self): | |
267 """Remove the first song of next songs list | |
268 should be called when the song is played""" | |
269 #FIXME: should check that the song we remove is the one we play | |
270 next_song = self.next_songs.pop(0) | |
286
e76ec07be8e5
browser_side (plugin radiocol): the UI uses CaptionPanel
souliane <souliane@mailoo.org>
parents:
285
diff
changeset
|
271 self.playlist_panel.remove(next_song) |
287
7a1dc69112b8
browser_side (plugin radiocol): send the current queue to new players
souliane <souliane@mailoo.org>
parents:
286
diff
changeset
|
272 self.control_panel.updateStatus() |
243
63e9b680d3e7
browser_side, blog: better PEP8 compliance
souliane <souliane@mailoo.org>
parents:
165
diff
changeset
|
273 |
285
4f0c2fea358a
browser_side (plugin radiocol): use the status label to give more information
souliane <souliane@mailoo.org>
parents:
284
diff
changeset
|
274 def getQueueSize(self): |
286
e76ec07be8e5
browser_side (plugin radiocol): the UI uses CaptionPanel
souliane <souliane@mailoo.org>
parents:
285
diff
changeset
|
275 return len(self.playlist_panel.getChildren()) |
285
4f0c2fea358a
browser_side (plugin radiocol): use the status label to give more information
souliane <souliane@mailoo.org>
parents:
284
diff
changeset
|
276 |
287
7a1dc69112b8
browser_side (plugin radiocol): send the current queue to new players
souliane <souliane@mailoo.org>
parents:
286
diff
changeset
|
277 def radiocolCheckPreload(self, timestamp): |
7a1dc69112b8
browser_side (plugin radiocol): send the current queue to new players
souliane <souliane@mailoo.org>
parents:
286
diff
changeset
|
278 for player in self.players: |
7a1dc69112b8
browser_side (plugin radiocol): send the current queue to new players
souliane <souliane@mailoo.org>
parents:
286
diff
changeset
|
279 if player.timestamp == timestamp: |
7a1dc69112b8
browser_side (plugin radiocol): send the current queue to new players
souliane <souliane@mailoo.org>
parents:
286
diff
changeset
|
280 return False |
7a1dc69112b8
browser_side (plugin radiocol): send the current queue to new players
souliane <souliane@mailoo.org>
parents:
286
diff
changeset
|
281 return True |
7a1dc69112b8
browser_side (plugin radiocol): send the current queue to new players
souliane <souliane@mailoo.org>
parents:
286
diff
changeset
|
282 |
397
6148e9063069
browser_side: radiocol displays who uploaded the file with ChatPanel.printInfo
souliane <souliane@mailoo.org>
parents:
394
diff
changeset
|
283 def radiocolPreload(self, timestamp, filename, title, artist, album, sender): |
287
7a1dc69112b8
browser_side (plugin radiocol): send the current queue to new players
souliane <souliane@mailoo.org>
parents:
286
diff
changeset
|
284 if not self.radiocolCheckPreload(timestamp): |
7a1dc69112b8
browser_side (plugin radiocol): send the current queue to new players
souliane <souliane@mailoo.org>
parents:
286
diff
changeset
|
285 return # song already preloaded |
129
dd0d39ae7d24
RadioCol: song preloading + fonctionnal players
Goffi <goffi@goffi.org>
parents:
128
diff
changeset
|
286 preloaded = False |
dd0d39ae7d24
RadioCol: song preloading + fonctionnal players
Goffi <goffi@goffi.org>
parents:
128
diff
changeset
|
287 for player in self.players: |
dd0d39ae7d24
RadioCol: song preloading + fonctionnal players
Goffi <goffi@goffi.org>
parents:
128
diff
changeset
|
288 if not player.filename or \ |
dd0d39ae7d24
RadioCol: song preloading + fonctionnal players
Goffi <goffi@goffi.org>
parents:
128
diff
changeset
|
289 (player.played and player != self.current_player): |
dd0d39ae7d24
RadioCol: song preloading + fonctionnal players
Goffi <goffi@goffi.org>
parents:
128
diff
changeset
|
290 #if player has no file loaded, or it has already played its song |
dd0d39ae7d24
RadioCol: song preloading + fonctionnal players
Goffi <goffi@goffi.org>
parents:
128
diff
changeset
|
291 #we use it to preload the next one |
287
7a1dc69112b8
browser_side (plugin radiocol): send the current queue to new players
souliane <souliane@mailoo.org>
parents:
286
diff
changeset
|
292 player.preload(timestamp, filename, title, artist, album) |
129
dd0d39ae7d24
RadioCol: song preloading + fonctionnal players
Goffi <goffi@goffi.org>
parents:
128
diff
changeset
|
293 preloaded = True |
dd0d39ae7d24
RadioCol: song preloading + fonctionnal players
Goffi <goffi@goffi.org>
parents:
128
diff
changeset
|
294 break |
dd0d39ae7d24
RadioCol: song preloading + fonctionnal players
Goffi <goffi@goffi.org>
parents:
128
diff
changeset
|
295 if not preloaded: |
439
d52f529a6d42
browser side: use of new log system (first draft):
Goffi <goffi@goffi.org>
parents:
422
diff
changeset
|
296 log.warning("Can't preload song, we are getting too many songs to preload, we shouldn't have more than %d at once" % self.queue_data[1]) |
130 | 297 else: |
298 self.pushNextSong(title) | |
397
6148e9063069
browser_side: radiocol displays who uploaded the file with ChatPanel.printInfo
souliane <souliane@mailoo.org>
parents:
394
diff
changeset
|
299 self._parent.printInfo(_('%(user)s uploaded %(artist)s - %(title)s') % {'user': sender, 'artist': artist, 'title': title}) |
243
63e9b680d3e7
browser_side, blog: better PEP8 compliance
souliane <souliane@mailoo.org>
parents:
165
diff
changeset
|
300 |
130 | 301 def radiocolPlay(self, filename): |
287
7a1dc69112b8
browser_side (plugin radiocol): send the current queue to new players
souliane <souliane@mailoo.org>
parents:
286
diff
changeset
|
302 found = False |
130 | 303 for player in self.players: |
287
7a1dc69112b8
browser_side (plugin radiocol): send the current queue to new players
souliane <souliane@mailoo.org>
parents:
286
diff
changeset
|
304 if not found and player.filename == filename: |
130 | 305 player.play() |
306 self.popNextSong() | |
307 self.current_player = player | |
287
7a1dc69112b8
browser_side (plugin radiocol): send the current queue to new players
souliane <souliane@mailoo.org>
parents:
286
diff
changeset
|
308 found = True |
7a1dc69112b8
browser_side (plugin radiocol): send the current queue to new players
souliane <souliane@mailoo.org>
parents:
286
diff
changeset
|
309 else: |
7a1dc69112b8
browser_side (plugin radiocol): send the current queue to new players
souliane <souliane@mailoo.org>
parents:
286
diff
changeset
|
310 player.play(False) # in case the previous player was not sync |
7a1dc69112b8
browser_side (plugin radiocol): send the current queue to new players
souliane <souliane@mailoo.org>
parents:
286
diff
changeset
|
311 if not found: |
439
d52f529a6d42
browser side: use of new log system (first draft):
Goffi <goffi@goffi.org>
parents:
422
diff
changeset
|
312 log.error("Song not found in queue, can't play it. This should not happen") |
127 | 313 |
130 | 314 def radiocolNoUpload(self): |
315 self.control_panel.blockUpload() | |
129
dd0d39ae7d24
RadioCol: song preloading + fonctionnal players
Goffi <goffi@goffi.org>
parents:
128
diff
changeset
|
316 |
130 | 317 def radiocolUploadOk(self): |
318 self.control_panel.unblockUpload() | |
319 | |
320 def radiocolSongRejected(self, reason): | |
321 Window.alert("Song rejected: %s" % reason) |