Skip to content

Commit 7110c83

Browse files
committed
Audio refactoring
1 parent 880fc6d commit 7110c83

File tree

1 file changed

+55
-14
lines changed

1 file changed

+55
-14
lines changed

app/assets/javascripts/backbone/plugins/music_player.js.coffee

+55-14
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,14 @@ class Kandan.Plugins.MusicPlayer
55
@widgetTitle: "Player"
66
@playRegex: /^/play .+/
77
@stopRegex: /^/stop/
8+
@resumeRegex: /^/resume/
89
@localSongData: false
910

1011

11-
@playTemplate: _.template('<strong><a class="audio-play">playing</a> <a target="_blank" href="<%- url %>"><%- url %></a></strong>')
12-
@songTemplate: _.template('<li><%= song.split("/").pop() %></li>')
12+
@playTemplate: _.template('<strong><a class="audio-play">playing</a> <a target="_blank" href="<%- url %>"><%- url %></a></strong>')
13+
@stopTemplate: _.template('<strong><a class="audio-play">stopping</a> the music.')
14+
@resumeTemplate: _.template('<strong><a class="audio-play">resuming</a> the music.')
15+
@songTemplate: _.template('<li><%= song.split("/").pop() %></li>')
1316

1417

1518
@setError: (errorMessage)->
@@ -45,25 +48,50 @@ class Kandan.Plugins.MusicPlayer
4548
@init: (pluginId)->
4649
@pluginId = pluginId
4750
Kandan.Data.Channels.registerCallback("change", $.proxy(@onChannelChange, this))
48-
@registerModifier()
49-
@registerWidget()
51+
@registerPlayModifier()
52+
@registerStopModifier()
53+
@registerResumeModifier()
54+
# Disabled for now
55+
#@registerWidget()
5056

5157

5258
@registerWidget: ()->
5359
Kandan.Widgets.register @pluginNamespace
5460

5561

56-
@registerModifier: ()->
62+
@registerPlayModifier: ()->
5763
Kandan.Modifiers.register @playRegex, (message, state) =>
5864
url = $.trim(message.content.substr(message.content.indexOf(" ") + 1));
5965
if true and Kandan.Data.Channels.activeChannelId()? # and state == Kandan.Helpers.Activities.ACTIVE_STATE commented out because state == undefined for some reason
60-
@playUrl(message.channel_id, Kandan.Helpers.Utils.unescape(url))
66+
rawInput = Kandan.Helpers.Utils.unescape(url)
67+
soundUrl = null
68+
soundUrl = @localSounds(rawInput)
69+
soundUrl ?= rawInput
70+
71+
@playUrl(message.channel_id, soundUrl)
6172
else
6273
console.log "Not playing stale song"
6374

6475
message.content = @playTemplate({url: url})
6576
return Kandan.Helpers.Activities.buildFromBaseTemplate message
6677

78+
@registerStopModifier: ()->
79+
Kandan.Modifiers.register @stopRegex, (message, state) =>
80+
url = $.trim(message.content.substr(message.content.indexOf(" ") + 1));
81+
if true and Kandan.Data.Channels.activeChannelId()?
82+
@stopSound(message.channel_id)
83+
84+
message.content = @stopTemplate()
85+
return Kandan.Helpers.Activities.buildFromBaseTemplate message
86+
87+
@registerResumeModifier: ()->
88+
Kandan.Modifiers.register @resumeRegex, (message, state) =>
89+
if true and Kandan.Data.Channels.activeChannelId()?
90+
@play(message.channel_id)
91+
92+
message.content = @resumeTemplate()
93+
return Kandan.Helpers.Activities.buildFromBaseTemplate message
94+
6795

6896
# TODO display error about song not being added by creating an activity locally
6997
@storeSong: (url)->
@@ -81,17 +109,18 @@ class Kandan.Plugins.MusicPlayer
81109
@getSongs: (callbacks)->
82110
Kandan.Store.get @pluginId, callbacks
83111

84-
@nicknameToUrl: (url) ->
112+
@localFileUrl: (fileName) ->
113+
"http://#{ window.location.hostname }:#{ window.location.port }/sounds/#{ fileName }"
114+
115+
@localSounds: (name) ->
85116
sounds = {
86-
'claps' : 'golfclap.mp3',
87-
'cheers' : 'cheers.mp3',
88-
'ding' : 'ding.wav',
89-
'gong' : 'gong.mp3'
117+
'claps' : @localFileUrl('golfclap.mp3')
118+
'cheers' : @localFileUrl('cheers.mp3')
119+
'ding' : @localFileUrl('ding.wav')
120+
'gong' : @localFileUrl('gong.mp3')
90121
}
91122

92-
fullUrl = null
93-
fullUrl = sounds[url]
94-
fullUrl ||= url
123+
sounds[name]
95124

96125
@audioChannels: ->
97126
Kandan.Helpers.Audio.audioChannels()
@@ -119,8 +148,14 @@ class Kandan.Plugins.MusicPlayer
119148

120149
@playUrl: (channelId, url) ->
121150
@setAudioUrl(channelId, url)
151+
@play(channelId)
152+
153+
@play: (channelId) ->
122154
@audioChannel(channelId).play()
123155

156+
@stopSound: (channelId) ->
157+
@audioChannel(channelId).pause()
158+
124159
@currentChannel: () ->
125160
Kandan.Data.Channels.activeChannelId()
126161

@@ -135,4 +170,10 @@ class Kandan.Plugins.MusicPlayer
135170
if @audioChannel(channelId)?
136171
@unmute(channelId)
137172

173+
@playAudioNotice: ->
174+
url = @localFileUrl('ding.wav')
175+
player = $('.audio_private')[0]
176+
player.setAttribute('src', url)
177+
player.play()
178+
138179
# Kandan.Plugins.register "Kandan.Plugins.MusicPlayer"

0 commit comments

Comments
 (0)