@@ -5,11 +5,14 @@ class Kandan.Plugins.MusicPlayer
5
5
@widgetTitle : " Player"
6
6
@playRegex : / ^ /play . + /
7
7
@stopRegex : / ^ /stop/
8
+ @resumeRegex : / ^ /resume/
8
9
@localSongData : false
9
10
10
11
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>' )
13
16
14
17
15
18
@ setError: (errorMessage )->
@@ -45,25 +48,50 @@ class Kandan.Plugins.MusicPlayer
45
48
@ init: (pluginId )->
46
49
@pluginId = pluginId
47
50
Kandan .Data .Channels .registerCallback (" change" , $ .proxy (@onChannelChange , this ))
48
- @ registerModifier ()
49
- @ registerWidget ()
51
+ @ registerPlayModifier ()
52
+ @ registerStopModifier ()
53
+ @ registerResumeModifier ()
54
+ # Disabled for now
55
+ # @registerWidget()
50
56
51
57
52
58
@ registerWidget: ()->
53
59
Kandan .Widgets .register @pluginNamespace
54
60
55
61
56
- @ registerModifier : ()->
62
+ @ registerPlayModifier : ()->
57
63
Kandan .Modifiers .register @playRegex , (message , state ) =>
58
64
url = $ .trim (message .content .substr (message .content .indexOf (" " ) + 1 ));
59
65
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)
61
72
else
62
73
console .log " Not playing stale song"
63
74
64
75
message .content = @ playTemplate ({url : url})
65
76
return Kandan .Helpers .Activities .buildFromBaseTemplate message
66
77
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
+
67
95
68
96
# TODO display error about song not being added by creating an activity locally
69
97
@ storeSong: (url )->
@@ -81,17 +109,18 @@ class Kandan.Plugins.MusicPlayer
81
109
@ getSongs: (callbacks )->
82
110
Kandan .Store .get @pluginId , callbacks
83
111
84
- @ nicknameToUrl: (url ) ->
112
+ @ localFileUrl: (fileName ) ->
113
+ " http://#{ window .location .hostname } :#{ window .location .port } /sounds/#{ fileName } "
114
+
115
+ @ localSounds: (name ) ->
85
116
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' )
90
121
}
91
122
92
- fullUrl = null
93
- fullUrl = sounds[url]
94
- fullUrl ||= url
123
+ sounds[name]
95
124
96
125
@ audioChannels: ->
97
126
Kandan .Helpers .Audio .audioChannels ()
@@ -119,8 +148,14 @@ class Kandan.Plugins.MusicPlayer
119
148
120
149
@ playUrl: (channelId , url ) ->
121
150
@ setAudioUrl (channelId, url)
151
+ @ play (channelId)
152
+
153
+ @ play: (channelId ) ->
122
154
@ audioChannel (channelId).play ()
123
155
156
+ @ stopSound: (channelId ) ->
157
+ @ audioChannel (channelId).pause ()
158
+
124
159
@ currentChannel: () ->
125
160
Kandan .Data .Channels .activeChannelId ()
126
161
@@ -135,4 +170,10 @@ class Kandan.Plugins.MusicPlayer
135
170
if @ audioChannel (channelId)?
136
171
@ unmute (channelId)
137
172
173
+ @ playAudioNotice: ->
174
+ url = @ localFileUrl (' ding.wav' )
175
+ player = $ (' .audio_private' )[0 ]
176
+ player .setAttribute (' src' , url)
177
+ player .play ()
178
+
138
179
# Kandan.Plugins.register "Kandan.Plugins.MusicPlayer"
0 commit comments